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)
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)