-
What do you want to achieve?
I want the animation I made to work properly and not behave so strangely -
What is the issue?
As you can see in the attached videos
local humanoid = character:WaitForChild("Humanoid")
local anim = Instance.new("Animation")
anim.AnimationId = "rbxassetid://130348689160816"
local track
toolPickaxe.Equipped:Connect(function()
track = humanoid:LoadAnimation(anim)
track.Priority = Enum.AnimationPriority.Idle
track.Looped = true
track:Play()
end)
toolPickaxe.Unequipped:Connect(function()
track:Stop()
end)
-
What solutions have you tried so far?
I haven’t found any content that solves my problem