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

How do make a screen gui like this one?

Asked by 10 years ago

Can you help me with this,how do make a screen gui so when you join it has title then by player and then dissapears after 10-20 seconds?

2 answers

Log in to vote
0
Answered by 10 years ago

Step 1: Make the GUI Make the GUI Exactly how you want it and put it into Lighting

Step 2: Define the player

Make a playerentered script

game.Players.PlayerAdded:connect(function(plr)
--code here
end)

Step 3: Clone the GUI

Once you found the player you simply clone the GUI into the player. Here is a wiki link for cloning

ROBLOX Wiki: Clone

Step 4: Destroy the GUI

Once it has been cloned, add a wait, and then when it is done waiting have it destroy with the :Destroy() method

These are the steps to making an intro GUI

0
How do you exacelly do that? like steps. CoolSparks10 0 — 10y
0
It didn't work. CoolSparks10 0 — 10y
0
Edited with steps Tempestatem 884 — 10y
0
How,do you do that that is far to complicated for my standards.I really can't do that. CoolSparks10 0 — 10y
Ad
Log in to vote
0
Answered by 10 years ago
game.Players.PlayerAdded:connect(function(ply) --when a player enters
    modelcopy = game.Lighting.Gui:Clone()   --copy a preexisting GUI that's in lighting.
    modelcopy.Parent = plr.Playergui --make the copy's parent the player's PlayerGui.
    wait(15)--How long until it disappears
    modelcopy:Destroy()
end)
0
Won't work.... CoolSparks10 0 — 10y

Answer this question