I want words to appear on the screen, via fading. Like, I want a blank background, and then words fade into view. It's for an upcoming game,and I'm not a great scripter.
Thanks to anyone who answers!
First off, this is NOT a request site. Please refer to the guidelines before creating a question. Secondly, I would suggest having a frame as your backdrop with the size of {1,0},(1,0} using a "for" loop to have text fade in.
for i =1,10 do wait(.05) a = 10-i b - a*.01 text.TextTransparency = b end
It iteraes thru and subtraces 10-the number the iteration is on then divides it by .01 to get a 1/10 which is basic transparency.