Hand out animation still out when Tool is not equipped

I have an issue with pretty much every parachute i make. Sometimes when unequipping the a tool the ‘Hand Out’ animation is still playing meaning that the player’s hand is out even when the tool is not equipped how can i fix this?

I would suggest saving the animation track to a variable
something like this

local animationTrack 

-- Equip Code here

Tool.Unequipped:Connect(function()
   if animationTrack ~= nil then
      animationTrack:Stop()
      animationTrack = nil
   end
end)