what I’m trying to do:
- Joint my Tool’s Handle to my Right Arm upon equipping.
My Issue:
- Yes, the joint adds Part0 (Right Arm) , but the Active value in the Motor6D remains False, while the Enabled value remains True. (P.S. The Part1 is already set to Handle)
Here’s my Server Script inside my Tool:
local tool = script.Parent
local Handle = script.Parent.Handle
tool.Equipped:Connect(function()
Handle.HandJoint.Part0 = script.Parent.Parent["Right Arm"]
end)
tool.Unequipped:Connect(function()
end)
Please help, Thanks.