of     1   

aubxrn
#163591669Tuesday, June 02, 2015 10:49 PM GMT

I've been into creating animations with ROBLOX's plugin, and I can't figure out how to make it into a command; ex. /e dance. Does anyone have a good tutorial online or can someone explain how? (*I have no experience in scripting)
championbuilder
#163594882Tuesday, June 02, 2015 11:25 PM GMT

First, thank you for this idea, i'm gonna add it to my game. I also made this script after some research, since I have never did an animation script before, or made one on ROBLOX. All you need to do is change "boop" to the animation command for it to play, and change what it equals to, to the AnimationID. These animations will play once you say "/e boop","/e test","/e hello". You can easily add more if you want to. anim = script.Animation animations = { boop = "http://www.roblox.com/asset/?id=30704021", test = "http://www.roblox.com/asset/?id=30704021", hello = "http://www.roblox.com/asset/?id=30704021", } game.Players.PlayerAdded:connect(function(player) player.Chatted:connect(function(msg) for i,v in pairs(animations) do if msg == "/e "..i then anim.AnimationId = v player.Character.Humanoid:LoadAnimation(anim):Play() end end end) end)
BringMeTacos
#165106745Saturday, June 20, 2015 10:15 PM GMT

The script is now broken. Any more help? Trust me, I'm a doctor
BringMeTacos
#165107306Saturday, June 20, 2015 10:23 PM GMT

Trust me, I'm a doctor
BringMeTacos
#165111004Saturday, June 20, 2015 11:09 PM GMT

Trust me, I'm a doctor

    of     1