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...
for i = 1, 20 do coolText.TextTransparency = coolText.TextTransparency- 0.05 wait() end --[[ Change coolText to what you want to change Change TextTransparency to BackgroundTransparency etc Makes the GUI "fade in" ]] for i = 1, 20 do coolText.TextTransparency = coolText.TextTransparency + 0.05 wait() end --[[ Change coolText to what you want to change Change TextTransparency to BackgroundTransparency etc Makes the GUI "fade out" ]]