So im trying to hook up my tool with motor6d, but its not working, it makes the motors and everything, but it keeps moving the parts and positioning them the wrong way, any help?
script.Parent.Equipped:Connect(function() local character = script.Parent.Parent local Motorr = Instance.new("Motor6D") Motorr.Part0 = character.RightHand Motorr.Part1 = script.Parent.Handle Motorr.Parent = character.RightHand Motorr.Name = "RightHand" for i,v in pairs(script.Parent.Model:GetChildren()) do local Motor = Instance.new("Motor6D") Motor.Part0 = script.Parent.Handle Motor.Part1 = v Motor.Parent = script.Parent.Handle Motor.Name = v.Name end end)