Tool anims doesnt work well

  1. I making a spear and anims doesnt work well

  2. idle anim dont works well its works but it dont work right hand that holding spear


    left hand works but right hand static

  3. **I tried Idle.Priority = Enum.AnimationPriority.Idle for idle but it breaks swing anim

local tool = script.Parent
local plr = game.Players.LocalPlayer
local char = plr.Character or plr.CharacterAdded:Wait()
local hum = char:WaitForChild("Humanoid")

--animasyonlar
local Idle = script:WaitForChild("Idle")     local LoadedIdle =  hum.Animator:LoadAnimation(Idle)
local attack1 = script:WaitForChild("Attack1") local Loadedattack1 =  hum.Animator:LoadAnimation(attack1)

tool.Equipped:Connect(function()
	LoadedIdle:Play()

end)

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

tool.Activated:Connect(function()
	Loadedattack1.Priority = Enum.AnimationPriority.Action
	Loadedattack1:Play()
end)