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

How do i make a gui only appear once?

Asked by 10 years ago

I want to make an intro gui on my game but i don't want it to appear every time the player respawns i want it to only appear once and that's it! Any ideas?

0
Very simple. Click on your ScreenGui's properties and scroll down until you find 'ResetOnSpawn'. Press the box. After that, it should work. PeculiarTea 0 — 3y

2 answers

Log in to vote
2
Answered by
Asleum 135
10 years ago

Clone your gui into the player's PlayerGui from a script in the workspace only when the player has joined the game, like this :

game.Players.ChildAdded:connect(function(Player)
game.ServerStorage.YourGui:clone().Parent = Player:WaitForChild("PlayerGui")
end)
Ad
Log in to vote
-1
Answered by 10 years ago

CoreGui

0
I've been having this problem too, if you figure it out tell me please! ? Milllins -23 — 5y

Answer this question