i wanna make a holding animation but all the tutorials are crap
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)