local player = game:GetService("Players") player.PlayerAdded:connect(function(plr) print("Welcome!"..plr) end)~~~~~~~~~~~~~~~~~ **
~~~~~~~~~~~~~~~~~ there is a eror that pops out
Player is the player object inside players. You can see it yourself in the explorer when you hit play.
You're going to want to print out the players name, not the object.
print(plr.Name)