Problem with animation

I made an animation so that she leans forward, but she leans back, why is this happening?

Can you mind sending me the link to the animation and the script so I can help you with it.

Sure. mysor - Roblox

local tools = script.Parent.Parent.Tools:GetChildren()

script.Parent.Triggered:Connect(function(Player) 
	script.Parent.Enabled = false
	local hum = Player.Character.Humanoid
	local animtrack = hum:LoadAnimation(script.Animation)
	animtrack.Priority = Enum.AnimationPriority.Action4
	animtrack:Play()
	task.wait(8.5)
	local selected = tools[math.random(#tools)]:Clone()
	selected.Parent = Player.Backpack
	hum.WalkSpeed = 16
	hum.JumpPower = 50
	script.Parent.Enabled = true
end)