Im making custom animations for my character, and I want it so that when i press "S" instead of playing the forwards walking animation while moving backwards, there is a custom backwards walking animation and so on. So how can I remove all animations?
if you want to disable all animations in your game, use this:
1 | for _, descendant in pairs (workspace:GetDescendants()) do |
2 | if descendant:IsA( "Animation" ) then |
3 | descendant:Stop() |
4 | end |
5 | end ) |