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)
~~~~~~~~~~~~~~~~~