|
| 24 Jan 2016 10:47 PM |
local tool = script.Parent local animation = script.Animation local player = game.Players.LocalPlayer
tool.Equipped:connect(function() local character = player.Character local humanoid = character:WaitForChild("Humanoid") animationtrack = humanoid:LoadAnimation(animation) animationtrack:Play() end)
tool.Unequipped:connect(function() animationtrack:Stop() end)
I'm srry for posting so frequently but I'm having problems.... Everything is working fine, except if the tool is equipped while my character is walking, my legs dont move at all. Help? |
|
|
| Report Abuse |
|
|
|
| 24 Jan 2016 10:48 PM |
| Did you uncheck the little boxes besides your leg joints when making the animation? |
|
|
| Report Abuse |
|
|
|
| 24 Jan 2016 10:50 PM |
^ do what he said, that way this disables your character's legs from, being effected by the animation
#code while true do game.Workspace.AnarchyOfAngels.Torso.CFrame = YourGirlsDMs.CFrame end |
|
|
| Report Abuse |
|
|