How to play an animation when a tool is activated

How do I play an animation on a play that activates a tool?

1 Like
Tool.Activated:Connect(function()
    local animation = reference the animation here
    animation:Play()
end

Have you done some research beforehand? Use the Tool.Activated event and combine that with Animator:LoadAnimation, ideally within a function.

Ok thank you I will test it :grinning: :grinning: