Narutozo
|
  |
| Joined: 28 Jul 2013 |
| Total Posts: 1314 |
|
|
| 27 Jun 2015 12:08 PM |
but i cant find out what it means? x = workspace.Narutozo.Head for i = 1,20 do x.Transparency = .05 end im trying to make the transparency go smoothly but it doesnt work |
|
|
| Report Abuse |
|
|
Narutozo
|
  |
| Joined: 28 Jul 2013 |
| Total Posts: 1314 |
|
| |
|
|
| 27 Jun 2015 12:08 PM |
| You're issue is that the Transparency is always 0.05 do "i" as the transparency divided by 100? or something like that. You can transition it. |
|
|
| Report Abuse |
|
|
|
| 27 Jun 2015 12:16 PM |
x = workspace.Narutozo.Head repeat x.Transparency = x.Transparency-0.05 wiat() until x.Transparency<=0
|
|
|
| Report Abuse |
|
|
|
| 27 Jun 2015 12:16 PM |
for i = 0,1,0.05 do x.Transparency = i wait() end |
|
|
| Report Abuse |
|
|