How to make a rig character look like you

I dont know how to make this. Basically Its like a rig look that dresses up like your character not any other character its not a specific character its the character you are dressed up right now

1 Like

i dressed up like jotaro so thats how the rig will look like but if i go on my alt and i look like superman the rig will look like superman not jotaro.

by the way not asking for the script im asking for the name and what type of tutorial i will need to watch.

1 Like

bro cmon if you’re gonna comment help him, don’t just tell him where this post is supposed to be. honestly hate it when all people care about is “wrong topic >:(((”

1 Like

can you chill?
this is the forum

I’m chill, it’s just annoying when people don’t want to help, they want to tell people where the topic belongs. The forum is for helping people/feedback, not telling people where their posts belong.

but this is in the wrong topic

I think it is fine that BlockyHead told the original poster about the topic

2 Likes

I just wish he was like “oh actually this is how you do it! :slight_smile: btw your post is in the wrong topic, make sure to fix that!”

4 Likes

Sorry, I really wasn’t trying to be rude. I actually didn’t know how to help with the scripting part, but realized it was in the wrong topic, so I decided to tell him. I did get a message from the developer engagement team saying that instead of replying, I should flag the post as off-topic and they will fix it. Sorry if I sounded rude.

2 Likes

I use this to clone player characters:

local function cloneFriend(playerID,)
	local clonePlayer = Players:CreateHumanoidModelFromUserId(playerID)
	clonePlayer.Name = playerName
	local newPosX = clonePlayer.PrimaryPart.Position.X + spawnPos
	clonePlayer.PrimaryPart.Position = Vector3.new(0, 6, 0) 
	clonePlayer.Parent = workspace
end

Just pass the playerID to the function and it will create it for you.

1 Like

You could use Players | Roblox Creator Documentation , and apply the returned HumanoidDescription to the dummy using this Humanoid | Roblox Creator Documentation. If its a multiplayer game and you want all the players to see themselves on the tree you would have to do it in the client-side.

2 Likes

“if its a multiplayer game and you want all the players to see themselves on the tree you would have to do it in the client-side.”
yeah thats what i want