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:
for _, descendant in pairs(workspace:GetDescendants())do if descendant:IsA("Animation") then descendant:Stop() end end)