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

Anyway to move my torso while using a tool animated?

Asked by 5 years ago

Is there anyway to move my torso while using a tool that animated a character/player to play that animation? Ingame: https://cdn.discordapp.com/attachments/180763895592386560/572587673122766868/RobloxScreenShot20190429_175805164.png

What I wanted when you use the tool: https://cdn.discordapp.com/attachments/180763895592386560/572588009967452193/RobloxScreenShot20190429_180002048.png

The script code is in a tool, in a local script. There's no errors about it.

Code: ```lua script.Parent.Equipped:connect(function(equipped)

if equipped then

game.Players.LocalPlayer.Character.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=3127953643"

game.Players.LocalPlayer.Character.Animate.idle.Animation1.AnimationId= "http://www.roblox.com/asset/?id=3127962774"

game.Players.LocalPlayer.Character.Animate.idle.Animation2.AnimationId= "http://www.roblox.com/asset/?id=3127962774"

game.Players.LocalPlayer.Character.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=3127957751" end equipped() end)

1 answer

Log in to vote
0
Answered by 5 years ago

try set the priority of the animation as Action

0
Someone helped me with it today and I had to add in the toolnone code in the script. TheBuliderMC 84 — 5y
Ad

Answer this question