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 :
game.Players.ChildAdded:connect(function(Player) game.ServerStorage.YourGui:clone().Parent = Player:WaitForChild("PlayerGui") end)
CoreGui