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

How to make a start GUI?

Asked by 10 years ago

Like so, when you enter the game you just click the screen with the start button to begin with a picture on the screen?

3 answers

Log in to vote
0
Answered by
ultrabug 306 Moderation Voter
10 years ago

You can use the PlayerAdded event in Players to tell when a player was added and then make a gui visible for that player. For example:

game.Players.PlayerAdded:connect(function(np)
    np.PlayerGui.ScreenGui.Gui.Visible=true
end)
Ad
Log in to vote
0
Answered by 10 years ago

Search up start GUI in free models then customize it

Log in to vote
0
Answered by
Cizox 80
10 years ago

Add a GUI into the StarterGui so when a player enters, the GUI appears on their screen. Put this script inside the enter/begin/etc button to remove the GUI:

script.Parent.MouseButton1Click:connect(function(mouse)
if mouse then
script.Parent.Parent.Visible = false
end
end)

The hierarchies should look like this:

ScreenGui -Frame -TextButton -Script

Hope this helps.

0
Thanks! ThePowerEmporer 0 — 10y

Answer this question