Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why isn't this "Player Joined" working? (SOLVED)

Asked by 9 years ago

Why won't this script work? It looks fine to me...

game.Players.PlayerAdded:connect(function(plr)
   print(plr.Name.." Has Joined the game"
end)

1 answer

Log in to vote
0
Answered by 9 years ago

Simple. You forgot a ) at the end of line 2. Everything else seems correct.

game.Players.PlayerAdded:connect(function(plr)
   print(plr.Name.." Has Joined the game")
end)

0
Awesome, thanks :) Seeker5123 15 — 9y
Ad

Answer this question