[R6]: Run + Walk Animations

I haven’t found many run/walk animations on the toolbox that look nice (no offense) so I decided to publicly share my animations for everyone to use!

Walk’s animation priority is core and the run’s animation priority is idle

You may get them on the toolbox or download: movementanims.rbxm (36.7 KB)

Credit isn’t required but I would appreciate it! :smile:

These are what the animations look like (gifs may be laggy, I apologize):
Walk
Run

106 Likes

Looks really smooth, so thanks for sharing this!

6 Likes

I’ll recommend these to some beginner developers since the animations are so good lookin’. Nice work!

3 Likes

Most definitely going to use this. Thanks! Are credits needed?

4 Likes

Credits are optional, but would appreciate it!

3 Likes

better read the post next time

credits aren’t required

4 Likes

I am blind and visually impaired on both eyes and didn’t read that. Sorry!

3 Likes

I have a question mines only show the sprint but not walk how do i see walk animation

2 Likes

the walk animation’s priority uses core, and the run uses idle. I think the solution your looking for is setting the run’s animation priority to core

1 Like

Might be a dumb question but how do I * use * the animations? Do I put the keyframe things under my character or?

It’s a keyframe packed in KeyframeSequences and not animations that is uploaded publicly, right click on it and “Save to Roblox”

also designed to be used for “Animate” script which is what roblox uses to play animations in every state.

1 Like

Select dummy, Open animation editor and then publish the animation you want, Now you will copy the ID of the animation and use it in a script, for example:

-- Script in ServerScriptService
game.Players.PlayerAdded:Connect(function(Player)
	Player.CharacterAdded:Connect(function(Character)
		Character.Animate.walk.WalkAnim.AnimationId = "rbxassetid://theanimationidhere"
	end)
end)

Now you have a different walking animation.

Thank you! Seems to work now. [char]

1 Like

Have i seen these animations before?(i remember seeing these in a roblox game)

My animations are usable for everyone so its just possible they used my animations or have animations that look similar to mine :person_shrugging:

3 Likes

Will definitely be using this, thanks!

1 Like

Looks good, thank you for giving to the community.

2 Likes

How would you do the running one?

You’d need the sprinting script first then just play the animation

These animations are INSANELY good!

Good work on them.

2 Likes