Animation Glitching

Hello, I was experimenting with an idle and walk animation script for a fighting game I am planning on making later on but the torso keeps trying to face the same direction as the head and it makes the animation weirder than it already is, here’s a video and code for both idle and walk

Idle:

game.Players.PlayerAdded:connect(function(player)
		player.CharacterAdded:connect(function(character)
		player.Character.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=10084668562"
		end)
end)

Walk:

game.Players.PlayerAdded:connect(function(player)
		player.CharacterAdded:connect(function(character)
		player.Character.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=10084645214"
		end)
end)

Video: Fighting Game UnPolished - Roblox Studio 2022-07-01 12-12-04 GIF | Gfycat

Check the animation editor, maybe you just accidentally rotated the torso lol

Just checked it, it’s the way I wanted it, no things are wrong.

Strange.
Can I see how the animation looks in the animation editor?
Also, does there happen to be any other animations playing? (Like overlapping)