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

How do I animate this tool correctly?

Asked by 6 years ago

So I've been looking around for a while, but I can't find a tutorial that explains this well enough. Here is my code I have put inside my tool:

script.Parent.Activated:connect(function()
    local clone = script.Parent.Animation:Clone()
    local anim = script.Parent.Parent.Humanoid:LoadAnimation(clone)
    anim:Play()
end)

The animation moves the character's right arm to make it look like a sword slash. But, when the sword is equipped, the right arm doesn't move at all. I want the sword to move with the character's right arm while it's moving. Thanks to anyone who can help.

0
This is because of the Tool's weld to the Right Arm. Goulstem 8144 — 6y

Answer this question