gues1116
|
  |
| Joined: 25 Feb 2012 |
| Total Posts: 850 |
|
|
| 12 Aug 2015 08:26 AM |
It won't work:
Instance.new("Part", game.Workspace) wait(3) game.Workspace.Part.Transparency = .5 wait(3) game.Workspace.Part:Destroy()
|
|
|
| Report Abuse |
|
Eauz
|
  |
| Joined: 23 Jul 2013 |
| Total Posts: 2942 |
|
|
| 12 Aug 2015 08:38 AM |
I really hate when people ork with Instances like that.. do this insead:
local part = Instance.new("Part", game.Workspace) part.CFrame = CFrame.new(0,0,0) -- Add your own coordinates wait(3) part.Transparency = 0.5 wait(3) part:Destroy() |
|
|
| Report Abuse |
|
gues1116
|
  |
| Joined: 25 Feb 2012 |
| Total Posts: 850 |
|
| |