How to get a Players model just from the User Id

Hey there, is their anyway to get a players character through their user id? I’ve looked slightly into it regarding the function getcharacterappearencrinfoasync but i’m not sure how that works and i’m pretty sure it dosent return a model.

1 Like

You can utilize this method:

local players = game:GetService("Players") -- The 'Players' service
local userId = 1 -- The userid of the player you want to create

local model = players:CreateHumanoidModelFromUserId(userId) -- Generate a model from the userId
model.Parent = workspace -- Parent the model to workspace (default nil)
4 Likes