How would I clone body parts with clothes on

Whenever I clone an arm there is no clothes on it is there a way to prevent this?

2 Likes

Hi there. You would need to also clone the Shirt and Pants objects in order to achieve this.

Although, the clothes require a full body and a humanoid in order to load onto parts. If this does not work, I have another idea in store.

1 Like

Didn’t work here is my script

local arm = plr.Character:FindFirstChild("Right Arm"):Clone()
		arm.Parent = workspace
		arm.Transparency = 0
		arm.Anchored = true
		local shirt = plr.Character:FindFirstChildOfClass("Shirt"):Clone()
			if shirt then
				shirt.Parent = arm
			end

I’ve figured it out.

You need to parent the cloned arm to a model. Inside that model you need a Humanoid and the clothing object. Here is an example:

image

Result:

image

If you are trying to achieve this via a script, here is an example using the context you provided above:

local arm = plr.Character:FindFirstChild("Right Arm"):Clone()
local model = Instance.new("Model")
local humanoid = Instance.new("Humanoid")
local shirt = plr.Character:FindFirstChildOfClass("Shirt"):Clone()
model.Parent = workspace
arm.Parent = model
humanoid.Parent = model
shirt.Parent = model
arm.Transparency = 0
arm.Anchored = true
5 Likes