Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

do you know a way to make it so when you hold an item an animation plays?

Asked by 3 years ago

i wanna make a holding animation but all the tutorials are crap

1 answer

Log in to vote
0
Answered by 3 years ago
Edited 3 years ago

Hello, You could use an Equipped event like :

Tool.Equipped:connect(function()
anim1:Play() -- or whatever anims you have.

end)


-- And to stop the anim when you unequip it do the following : 

Tool.Unequipped:Connect(function()
    anim1:Stop()
end)
Ad

Answer this question