I need to make sure that the ID is written instead of the player’s name.
game.Players.PlayerAdded:Connect(function(player)
print("This is a specific Client : "..player.Name
)
end)
I need to make sure that the ID is written instead of the player’s name.
game.Players.PlayerAdded:Connect(function(player)
print("This is a specific Client : "..player.Name
)
end)
I believe what you want is:
player.UserId
Thanks! The solution was elementary, but I couldn’t find it anywhere.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.