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 or script that if a player joins it says there guys/girls names?

Asked by 10 years ago

like a lobby or a minigame

1 answer

Log in to vote
0
Answered by
Shawnyg 4330 Trusted Badge of Merit Snack Break Moderation Voter Community Moderator
10 years ago
game.Players.PlayerAdded:connect(function(plr)
    a = Instance.new("Hint", Workspace)
    a.Text = plr.Name.." has joined the server!"
    wait(5)
    a:Destroy()
end)
Ad

Answer this question