How to load a player's character using their user id

A simple question, I want to load a player’s character using their user ID.
I can’t find any relevant docs on the documentation related to this. Suppose let an ID be 150.
How do I load that character of that player?

I think this should help:
Players:CreateHumanoidModelFromUserId() | Documentation - Roblox Creator Hub

local userId = 1

local rig = game:GetService("Players"):CreateHumanoidModelFromUserId(userId)
rig.Parent = workspace
rig.Name = "CreatedRig"
1 Like

Like load it onto a player? Or a rig?

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.