jonesj627
|
  |
| Joined: 06 Oct 2010 |
| Total Posts: 1496 |
|
|
| 12 May 2013 10:35 AM |
so this is supposed to change the text transparency of a text label to 0 smoothly, but it doesn't work
tranparencycus = script.Parent.Parent.customizetitle.TextTransparency for i = 1,#transparencycus do transparencycus = 0 end |
|
|
| Report Abuse |
|
getkoed2
|
  |
| Joined: 11 Apr 2010 |
| Total Posts: 1144 |
|
|
| 12 May 2013 10:45 AM |
Not sure if you actually tried to do that, or that you want us to do it :d
Anyway
local c = script.Parent.Parent.customizetitle
for i = 1, 50 do c.TextTransparency = c.TextTransparency + .02 wait() end
Assuming that the TextTransparency is 0. |
|
|
| Report Abuse |
|