wait(30) script.Parent.TextLabel.TextTransparency = 0.99 script.Parent.TextLabel.TextTransparency = 0.98 script.Parent.TextLabel.TextTransparency = 0.97
I want this script to go from 1 transparency to 0 without using the 0.99 all the way down to 0.01, is there a way to do it?
The for i loop is what you're looking for, here's the general idea.
wait(30) for i = 1, 0, -0.01 do -- 1; start number, 0; end number, -0.01; increment(increase/decrease by) script.Parent.TextLabel.TextTransparency = i end