Example...
When the Owner of a game joins I want a G.U.I to come on everyone's screens saying:
"Say Hello To The Owner!"
you could do an onplayerenterd script.. for example:
function onPlayerEntered(newPlayer) if newPlayer.Name == "Owner" then local plr = game.Players:GetPlayers() local gui = game.Lighting["Name here"]:Clone() for i, v in pairs(plr) do gui.Parent = v.PlayerGui gui.Enabled = true wait() end end end game.Players.ChildAdded:connect(onPlayerEntered)
Marked as Duplicate by Goulstem
This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.
Why was this question closed?