can someone give me an example of a script that works that makes a gui visible after a second or so when the player joins? im not requesting, i just need an example so i can apply the knowledge to what i have
game.Players.PlayerAdded:connect(function(plr) wait(2) plr:WaitForChild("PlayerGui").ScreenGui.Frame.Visible = false -- Change the names if necessary. end)
Tada, use this as a example
+1 if this helped.
game.Players.PlayerAdded:connect(function(player) wait(1) GUIX.visible = true end GUIX = game.StarterGui.NameofGui