Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to disable defualt roblox animation?

Asked by 5 years ago

I tried deleting the animation script, deleting the idle animations, and changing my character to a new type.

Picture of problem: https://i.gyazo.com/f8670658c9a5b4b43fd88d3d2f88bf84.png

1 answer

Log in to vote
0
Answered by 5 years ago

If you just wanted to stop any sort of animations running in your character, the only thing you'd need to do is put an empty/disabled LocalScript named "Animate" in StarterCharacterScripts.

Though, if you wanted to replace the animations instead, you'd have to:

  1. Get a copy of the Animate script for the RigType (R6 or R15) you're using in your game.
  2. Edit the contents of the script, particularly the table with the assetIDs, replacing them with the assetIDs of your own animations.
  3. Place that localscript inside StarterCharacterScripts, and you're done.

If you're letting the players pick what rig they're using, then I suggest creating a Server script to handle which Animate script you're going to insert in the player characters, while having an empty Animate script inside StarterCharacterScripts.

Hope that helps!

Ad

Answer this question