How to make my dash animation not bug out like this

I am trying to make a dash script and everything is working but the animation loads very weirdly. Does anyone have an explanation?

local anim1 = Character.Humanoid.Animator:LoadAnimation(RS.Fx.Dash.Animation.Dash1)
anim1.Priority = Enum.AnimationPriority.Action
        
        
anim1:Play()
         
delay(ability.Length, function()
    anim1:Stop()
end)

https://gyazo.com/9f885f64bf95bea4fd9da1ae3f5420ca

1 Like

Action4 has the highest priority so try that?

anim1.Priority = Enum.AnimationPriority.Action4
1 Like