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

How do you upload your own "animation" onto player movement?

Asked by
2Busy 10
10 years ago

It would be nice if you'd answer. ;)

0
You must upload it to ROBLOX before using it in-game. It costs R$100, then you have to use the animations AssetID for use in your game. I'm not sure if it is possible to override the process of paying R$. OniiCh_n 410 — 10y
0
I've made some already, but how do I code the asset to replace the players walking one? 2Busy 10 — 10y

3 answers

Log in to vote
1
Answered by 10 years ago

You obviously seem to have made a animation already. One way I did it was to copy the animation script in my player in Edit -solo mode. Change the ID's and then make a script that: - On spawn, deletes the players current one and replaces it with yours.

Hope that helped.

0
I'd like to see the actual script, to see of how I can do this in the near future. 2Busy 10 — 10y
0
We dont make scripts for you. We are here to help, not be your Lua slaves. ConnorVIII 448 — 10y
Ad
Log in to vote
0
Answered by
hiccup111 231 Moderation Voter
10 years ago

If you want to swap one animation for another, can you not take the animation you want, and put it in the animation ID of the one that's already in your character?...

char = game.Players.LocalPlayer.Character -- local script =p

YourAnimationId = "blarghhhhhhhhhhhhhhhhhhhhhhhhhhhhh-0512525125"

walkAnim = char.Animate.walk.WalkAnim

walkAnim.AnimationId = YourAnimationId -- replace old anim with yours.


char.Animate.Disabled = true -- resetting
char.Animate.Disabled = false

I don't know if this would work, but it's worth a try if you're only replacing the animation

These may be useful:

http://wiki.roblox.com/index.php?title=LoadAnimation_(Method)

http://wiki.roblox.com/index.php?title=Animation

Log in to vote
-1
Answered by
Reverge -1
10 years ago

You have to first create an animation using the ROBLOX plugin animation. Once you've made one.. You can replace it using a replacement script, I can't do it now because I'm in school.

0
Replacement script? How would it look like? 2Busy 10 — 10y

Answer this question