When i put the tool in StarterPack, the RightGrip gets destroyed and replaced with a Motor6D when equipped.
But when the tool is picked up and equipped, the RightGrip doesnt get destroyed and there is no Motor6D.
script.Parent.Equipped:Connect(function()
character[“Right Arm”]:WaitForChild(“RightGrip”):Destroy()
local Motor6D = Instance.new(“Motor6D”,character[“Left Arm”])
Motor6D.Name = “Handle”
Motor6D.Part0 = character[“Left Arm”]
Motor6D.Part1 = script.Parent.Handle
Motor6D.C0 = CFrame.new(0,-1,0)
Motor6D.C0 = Motor6D.C0 * CFrame.Angles(math.rad(-90),0,0)
end)
script.Parent.Unequipped:Connect(function()
character[“Left Arm”]:WaitForChild(“Handle”):Destroy()
end)