Please help! why isn't this animation working?

without using motor6d, an animation was made like this
https://i.gyazo.com/5be7ff213a4a6055583dbec4c078ec6a.mp4
although when i went to test it , with the animation being in the part that’s meant to swing, it ends up sticking to the righthand and not moving off. it’s an action priority, it would really help

if you need more details i’ll give them to you, just ask in the replies

Pictures? Videos? Give me some specifics!

ok, so a animation was imported into roblox from blender, it looks like the video link i sent, but during a short test, i noticed it just sticks to the hand, and doesn’t play the contiuation to the animation. here is an example:
https://gyazo.com/e4ea09bd57c46ba80388c054b01ff969
instead of this:
https://i.gyazo.com/5be7ff213a4a6055583dbec4c078ec6a.mp4
and the animation is placed inside the part that’s meant to move, the priority is action, and here is the animation script:


script.Parent.Activated:Connect(function()
	Swing = script.Parent.Parent.Humanoid:WaitForChild("Animator"):LoadAnimation(script.Parent.Handle.Swing)

	Swing:Play()
end)
script.Parent.Unequipped:Connect(function()
	Swing:Stop()
end)