#why torso locks and dont plays the animation when tool is equipped

1 messages · Page 1 of 1 (latest)

autumn belfry
#

heres the script for the tool

local char = plr.Character or plr.CharacterAdded:Wait()
local hum = char:WaitForChild("Humanoid")

local tool = script.Parent
local idle = hum.Animator:LoadAnimation(tool.Hold)


tool.Equipped:Connect(function()
    idle:Play()
end)

tool.Unequipped:Connect(function()
    idle:Stop()
end)

normal briar
#

Try setting animation priority

#

Or default animation is overriding it

autumn belfry
normal briar
#

Ye

autumn belfry
#

like lower or higher?

normal briar
#

Higher