How would I make a tool unequip animation?

What I mean by this is by playing a unequip animation when you unequip a tool, but I don’t know a way to do this since the tool is automatically removed from your character when you unequip it, and I have a feeling that when you play the unequip animation it will just play the actual animation and the tool wont be on your hand, so is there any way to do this?

1 Like

You’d have to weld the weapon to your hand when you equip and when you unequip unweld it after the unequip animation is done. The weapons basically has to be separate from the tool since as u said the instant u unequip the weapon will disappear if its part of to tool.

1 Like

You can attach the Unequipped event of a tool to a function.

tool.Unequipped:Connect(function()
    --load animation and play it here
end)
1 Like