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 appear for a player on the first spawn only?

Asked by 10 years ago

This is what I can do thus far.

game.Players.PlayerAdded:connect(function(player)
for _, player in pairs(game.Players:GetPlayers()) do
PlayerAdded(player)
if (player ~= nil) then
ScreenGui.Starterpop. Background.Visible  = true
end
end)

Answer this question