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?
Clone your gui into the player's PlayerGui from a script in the workspace only when the player has joined the game, like this :
1 | game.Players.ChildAdded:connect( function (Player) |
2 | game.ServerStorage.YourGui:clone().Parent = Player:WaitForChild( "PlayerGui" ) |
3 | end ) |
CoreGui