I have been working hard on my game that ive been working on, and I was thinking of ways to make revenue.
I decided on animations, since I love animating and I thought it would be cool.
So I was wondering if there was a way you could change the characters animations on the spot, like if they were to click a GUI there walk animation would change or there jump animation would change.
For just more info the character is the default R15 Robloxian so nothing special. I am just a little lost on how this is possible or if it even is possible. I know its possible because you can buy taunts on other games on Roblox so it must be possible.
Thank you for your time.
Hello Gotta!
This is very much possible. For more on changing default animations: http://wiki.roblox.com/index.php?title=Changing_default_character_animations
LocalScript in the button:
button = script.Parent player = game.Players.LocalPlayer function Click() local character = player.Character local animateScript = character.Animate animateScript.walk.WalkAnim.AnimationId = 'http://www.roblox.com/asset/?id=IDHERE' end button.MouseButton1Click:connect(Click)
At IDHERE, put your animation ID. Example here, is a link of the walk animation https://www.roblox.com/library/180426354/WalkLoopAnimation "180426354" is the ID. If you need further help, feel free to ask.
Yes, it's possible.