Is there any way to get a players name via their userId by using MarketPlaceService? I need this so when the player isn't in the server, I can still access their name using their ID.
Thanks.
Just for reference there was a method of Players created specifically for this recently. game.Players:GetNameFromUserIdAsync(userId)
will return a player's name given their userId. There is also a counterpart method :GetUserIdFromNameAsync(username)
that will return a person's userId given their username.