effects2
|
  |
| Joined: 24 Oct 2013 |
| Total Posts: 180 |
|
|
| 29 Sep 2016 01:07 PM |
Does anyone know why this isn't working? I'm quite nooby at for loops. Here is the code:
for i = 1, 0, .1 do script.Parent.Frame.Spinner.ImageLabel.ImageTransparency = i script.Parent.Frame.Spinner.LittleMessage.ImageTransparency = i script.Parent.Frame.Spinner.ItemName.ImageTransparency = i wait(0.1) end
ty |
|
|
| Report Abuse |
|
|
| |
|
|
| 29 Sep 2016 01:11 PM |
that's a fade in, and perhaps that step ought to be -.1
Try:
for i = 0, 1, .1 do script.Parent.Frame.Spinner.ImageLabel.ImageTransparency = i script.Parent.Frame.Spinner.LittleMessage.ImageTransparency = i script.Parent.Frame.Spinner.ItemName.ImageTransparency = i wait(0.1) end
|
|
|
| Report Abuse |
|
|