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

How do I Make a Starter Screen GUI?

Asked by 10 years ago

I would greatly appreciate it if someone could inform me on how to create a starter screen GUI, that has words that fade in. This GUI that I am trying to make will automatically appear on the screen once you join the game.

1 answer

Log in to vote
0
Answered by 10 years ago

You could use this to fade in a text label in a gui:

for i = 1, 0, -1 / 30 do -- -1 / 30 is used to make the transparency go down to 0 in 1 second.
    someTextLabel.BackgroundTransparency = i
    wait()
end

To make a gui appear on the screen when you join, just stick a ScreenGui into game.StarterGui, and put things such as frames and text labels into the screen gui.

Gui creating can get tricky at times when you are trying to alter the exact size, but as far as scripting wise when you want to fade something, use a for statement.

0
Alright, thank you very much PsychoWaffle. joshua1153212 0 — 10y
Ad

Answer this question