Here is my script
1. Wait(23) 2. For I = 0.1,3,+0.1 3. Script.parent:waitforchild(“textlabel”) 4. Script.parent.textlabel.texttransparency = I 5. Wait(0.1) 6. End
This script won’t work any ideas how to fix it
You don't need the + in the loop:
Wait(23) for i = 0.1, 3, 0.1 do Script.parent:WaitForChild(“textlabel”) Script.parent.textlabel.TextTransparency = i Wait(0.1) end
And I corrected a few capital letters. Also, the i in the loop doesn't need to be capitalized. You need a "do" at the end of the loop line.
You are Missing a few Capitals like Parent,Transparency ect