get name from user id roblox
--Name => UserId:
name = Players:GetNameFromUserIdAsync(userId)
--UserId => Name:
id = Players:GetUserIdFromNameAsync(name)get name from user id roblox
--Name => UserId:
name = Players:GetNameFromUserIdAsync(userId)
--UserId => Name:
id = Players:GetUserIdFromNameAsync(name)get player id from character roblox
local Players = game:GetService("Players")
local function getPlayerByUserId(userId)
	for _, player in pairs(Players:GetPlayers()) do
		if player.UserId == userId then
			return player
		end
	end
endCopyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us
