Load character onto a rig?

Not too sure what to call it. But it’s like when you load a character on-to a blocky rig, like in Beat Up Simulator
https://www.roblox.com/games/5133040469/Goku-Drip-Beat-up-simulator

I’m a beginner scripter so you’ll have to baby-step me on how to do this. Thank you so much!

1 Like

Update: I figured it out

local dummy = workspace.R15

game.Players.PlayerAdded:Connect(function(player)
	local id = player.UserId
	local newHumanoidDescription = game.Players:GetHumanoidDescriptionFromUserId(id)

	dummy.Humanoid:ApplyDescription(newHumanoidDescription)
end)
6 Likes