Help with cloning arm with cloth in r15

For r6 arm with humanoid and cloth it shows the cloth but r15 isn’t showing anything
image
left is r6 right is r15
image
the explorer

Check if the humanoid rig type is r15
image
Also if it doesn’t work try deleting the arm then undo. It’s a bug in the roblox studio.

It’s in r15 but it’s not showing.

What happens when you delete and undo.
Deleting.


When I undo.

thx for the help didn’t thought about humanoid type

1 Like

wait but when cloning from script the cloth dosen’t work

local Hum = Instance.new("Humanoid")
		Hum.Parent = Chand
		Hum.MaxHealth = 0
		Hum.Health = 0
		Hum.RigType = "R15"
		local shirt = script.Parent.Shirt:Clone()
		shirt.Parent = Chand

the script where it clones shirt and create hum

does the arm disappear? try adding the humanoid on the arm before starting instead of creating a new instance.

while true do
	wait(.24)
	spawn(function()
		local Chand = Instance.new("Model")
		Chand.Parent = workspace
		Chand.Name = "Handssssss"
		local Arm
		local Lower
		local Hand
		local p1
		local LeftOrRight = math.random(1,2)
		local p0 = script.Parent.HumanoidRootPart.Position
		if LeftOrRight == 1 then
			Arm = script.Parent.LeftUpperArm:Clone()
			Arm.Parent = Chand
			CleanPart(Arm)
			Lower = script.Parent.LeftLowerArm:Clone()
			Lower.Parent = Chand
			CleanPart(Lower)
			Hand = script.Parent.LeftHand:Clone()
			Hand.Parent = Chand
			CleanPart(Hand)
			Arm.Name = "Arm"
			Lower.Name = "Lower"
			Hand.Name = "Hand"

			p1 = script.Parent.HumanoidRootPart.Left.WorldPosition + Vector3.new(0,math.random(-3,3),0)
		else
			Arm = script.Parent.RightUpperArm:Clone()
			Arm.Parent = Chand
			CleanPart(Arm)
			Lower = script.Parent.RightLowerArm:Clone()
			Lower.Parent = Chand
			CleanPart(Lower)
			Hand = script.Parent.RightHand:Clone()
			Hand.Parent = Chand
			CleanPart(Hand)
			Arm.Name = "Arm"
			Lower.Name = "Lower"
			Hand.Name = "Hand"
			
			p1 = script.Parent.HumanoidRootPart.Right.WorldPosition + Vector3.new(0,math.random(-3,3),0)
		end
		for i,v in pairs(Chand:GetDescendants()) do
			if v:IsA("Part") or v:IsA("MeshPart") or v:IsA("UnionOperation") then
				v.Transparency = .2
				game.TweenService:Create(v,TweenInfo.new(.3),{Transparency = .75 }):Play()
			end
		end	
		local wedl = Instance.new("WeldConstraint")
		wedl.Part0 = Arm
		wedl.Part1 = Lower
		wedl.Parent = Arm
		wedl.Enabled = true
		local Weld = Instance.new("WeldConstraint")
		Weld.Part0 = Hand
		Weld.Part1 = Lower
		Weld.Parent = Hand
		Weld.Enabled = true
		local Hum = Instance.new("Humanoid")
		Hum.Parent = Chand
		Hum.MaxHealth = 0
		Hum.Health = 0
		Hum.RigType = "R15"
		local shirt = script.Parent.Shirt:Clone()
		shirt.Parent = Chand
		Chand.PrimaryPart = Arm
		Chand.PrimaryPart.Anchored = true
		Chand.Hand.Anchored = false
		Chand.Lower.Anchored = false
		Chand.PrimaryPart.CanCollide = false
		Chand.Hand.CanCollide = false
		Chand.Lower.CanCollide = false
	local p2 = script.Parent.HumanoidRootPart.End.WorldPosition
	local TweenDelay = wait()
	game.Debris:AddItem(Chand,1)
	game.TweenService:Create(Chand.PrimaryPart,TweenInfo.new(1),{Transparency = 1}):Play()
	game.TweenService:Create(Chand.Arm,TweenInfo.new(1),{Transparency = 1}):Play()
	game.TweenService:Create(Chand.Hand,TweenInfo.new(1),{Transparency = 1}):Play()
	for i = 1, 5 do
		local t = i/5
		local pos = quadBezier(t, p0, p1, p2)
		local Direction = quadBezier(t + 0.005, p0,p1, p2)
		--hand.CFrame = CFrame.new(pos,Direction)
			game.TweenService:Create(Chand.PrimaryPart,TweenInfo.new(TweenDelay),{CFrame = CFrame.new(pos, Direction) * CFrame.Angles(math.rad(90),0,0)}):Play()
			--game.TweenService:Create(Chand.Hand,TweenInfo.new(TweenDelay),{CFrame = CFrame.new(pos, Direction) * CFrame.Angles(math.rad(90),0,0)}):Play()
			--game.TweenService:Create(Chand.Lower,TweenInfo.new(TweenDelay),{CFrame = CFrame.new(pos, Direction) * CFrame.Angles(math.rad(90),0,0)}):Play()
			wait()		
		end
	end)	
end

idk how to add humanoid on them cuz its cloned from body part not model

I meant add the humanoid on the studio. You don’t need to create a new instance for humanoid.

u mean clone the humanoid from studio to the arm?

Don’t create a new instance just add the humanoid to the model in studio.
image
You don’t need to create a code that creates for a new humanoid. Only clone the shirt.

oh so i can’t rename the part or it wont work also thx for helping me out

1 Like