How to do this in a script?

So I was playing Michael’s Zombies on Roblox and I saw there menu. I was wondering how they made YOUR avatar sit in the little bench. And I would like to know how they did that

My approach would be looping animation.

how would i get the person that plays the game avatar on there tho. because i know how to play the animation.

I think that maybe Clone() will work best in this situation.

You can create a dummy and put them wherever you want. You can then get the Humanoid Description or appearance of the player and apply the Humanoid Description onto the dummy.

1 Like

do you think you can give me an example script on how I would do that? I am kind of confused.

-- We will assume that the script will be placed inside the dummy
local Figure = script.Parent -- The dummy
local OtherCharacter = game:GetService("Players").ExamplePlayer.Character or game:GetService("Players").ExamplePlayer.CharacterAdded:Wait() -- Refrence the player
local HumanoidDescription = OtherCharacter:WaitForChild("Humanoid"):GetAppliedDescription()
Figure.Humanoid:ApplyDescription(HumanoidDescription)

This script will not work but it should give you a good idea of how to use Humanoid Descriptions

1 Like