Removing Roblox's jump animation

I want for the jumping, falling and climbing animation to be completely gone. And I want to keep idle and walking animations. For example, when I jump while walking, the walking animation just keeps playing.

1 Like

You can just replace all these animation’s ids to the walking id in the animate script

That means the jumping animation will be replaced with walking animation, not removed.

ohh so you want to to not play entirely? then just set the id to 0.

If you spawned yer character, there will be local script named “Animate” inside it.

You can copy it, and place it in StarterPlayer → StarterCharacterScripts. It will override the the old animate script.

Since you want to remove the jump, fall, and climb animation, set the animationId to 0 like @Dankinations said :
image

1 Like

It overrides walking and idle animations.

Do you setup it correctly? It supposed to not play fall,climb and jump anim if you set the animationId to 0

It does not, it just doesn’t play any animation at all.

I think you would have to go inside and edit the script. Or since you are making a very simple system, it would probably be easier to make a new animate script.

1 Like

Editing the script did infact help. Thanks.
To do this, go to line 528 of the default Animate script and comment out .Jumping:Connect(...), .FreeFalling:Connect(...), and .FallingDown:Connect(...).

edit: also comment out .Climbing:Connect(...)

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.