I made an animation for the arms, I made it looped so that the animation always plays. But when I try to walk the walk animation wont play.
```lua
local defaultAnimate = character:WaitForChild("Animate", 5)
if defaultAnimate then
defaultAnimate.Disabled = true
defaultAnimate:Destroy()
else
end
for _, track in pairs(animator:GetPlayingAnimationTracks()) do
track:Stop()
end
local anim = Instance.new("Animation")
anim.AnimationId = "rbxassetid://116171525977909"
local track = animator:LoadAnimation(anim)
track.Priority = Enum.AnimationPriority.Action4
track.Looped = true
track:Play()
** You are now Level 11! **