For some reason, whenever I use my animation, it doesn’t move any of my right arm, I’ve tried other animations and it works with every other limb except the limbs I used to animate, can anybody help me?
Script:
local tool = script.Parent
local anim = tool:WaitForChild("Hit")
local plr = game.Players.LocalPlayer
local char = plr.Character or plr.CharacterAdded:Wait()
local hum = char:WaitForChild("Humanoid")
local load = hum:LoadAnimation(anim)
print("vars")
tool.Activated:Connect(function()
load:Play()
print("playing")
end)
Tool properties;
Nothing is anchored, everything is welded to the handle.