So, I am using ‘GetUserIdFromNameAsync’ to try and get the user ID, however, whenever I print this out it gives me a completely different Id leading to the account of ‘Instance’; account Id = 73502
counter.OnServerInvoke = function(playerName)
print(playerName)
local playerId = Players:GetUserIdFromNameAsync(playerName)
print(playerId)
The first print works as normal, printing the player name, but when attempting to print ‘playerId’ it prints the wrong Id.
Also, if I try printing the name from the UserId it also prints out the player account ‘Instance’
print(Players:GetNameFromUserIdAsync(playerId))