Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

Fading intro GUI?

Asked by 9 years ago

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!

2 answers

Log in to vote
1
Answered by
Xduel 211 Moderation Voter
9 years ago

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.

Ad
Log in to vote
-3
Answered by 9 years ago

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.

Answer this question