Im working on a game and wanted to make a loading screen gimmick where you are in the lobby and as the game is loading stuff starts to "Load" by becoming nontransparent. What kind of script would I uses for this?
At least make an attempt but, here you go...
01 | for i = 1 , 20 do |
02 | coolText.TextTransparency = coolText.TextTransparency- 0.05 |
03 | wait() |
04 | end |
05 |
06 | --[[ |
07 | Change coolText to what you want to change |
08 | Change TextTransparency to BackgroundTransparency etc |
09 |
10 | Makes the GUI "fade in" |
11 | ]] |
12 |
13 | for i = 1 , 20 do |
14 | coolText.TextTransparency = coolText.TextTransparency + 0.05 |
15 | wait() |