Why is this part not welding?

HI all I am trying to weld a part to the right hand of my character, however it doesnt work, the code works if i replace RightHand with HumanoidRootPart, and it will attach to that, however i can’t get it to attach to the right hand

local Cloned_model = Equipped_model:Clone()
Cloned_model.PrimaryPart.CFrame = Character.RightHand.CFrame
Cloned_model.PrimaryPart.CanCollide = false
Cloned_model.Parent = Character
local Weld = Instance.new("WeldConstraint")
Weld.Parent = Character.RightHand
Weld.Part0 = Cloned_model.PrimaryPart
Weld.Part1 = Character.RightHand
1 Like

I think part0 is suppose to be the character hand while part1 is that model.
Cuz part0 is what part1 suppose to weld to. (Idk if this work)

i fixed it by adding a task.wait() even though i used waitforchild() for the righthand, it still needed a wait, thanks for helping though.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.