I want to make this GUI appear only when the player enters the game. I don't want it to show up every time to die and respawn.
(I need the WELCOME Frame to appear when a player enters)
Image: https://gyazo.com/da31c185d424e72740cefc76df300618
EDIT: So I was able to make it pop up when the player enters the game, but I can't make it so it doesn't show up after death respawn.
EDIT 2: So I figured it out now, but thanks anyways for the help!
Try using PlayerAdded which fires when a player enters the game.
Example
game.Players.PlayerAdded:connect(function(player) print("A player has entered: " .. player.Name) end)
Try making the screen gui visible then having a close screen gui script which will hide the gui.