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

Can anyone help with my Sword Animation?

Asked by 8 years ago

My sword animation doesnt work because the hand that the sword is in doesnt move here's my script ~~~~~~~~~~~~~~~~~ local tool = script.Parent local player = game.Players.LocalPlayer local hum = player.Character.Humanoid script.Parent.CanBeDropped = false

local anim = script.Parent.Overhead

script.Parent.Activated:connect(function()
    print("Clicked")
    local anima=hum:LoadAnimation(script.Parent.Overhead)
            anima:Play()
end)

~~~~~~~~~~~~~~~~~

Answer this question