game.Players.PlayerAdded:Connect(function(player)
print("a new player has joined the game")
print(player)
end)
game.Players.PlayerAdded:Connect(function(player)
print("a new player has joined the game"..player)
end)
``` Is this not the same exact code why am I getting an error on one and the other is perfectly fine??????