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