Animation interacting with ground and not moving down fully

Hello, my animation is not going down fully (it’s supposed to crawl) but it tilts me over and breaks both of my arms practically. I have no clue what is happening but any help is appreciated!

In-game:
image

Animation Editor:
image

Code:

UserInputService.InputBegan:Connect(function(input, gameProcess)
	if table.find(allowedKeybinds, input.KeyCode) ~= nil and not gameProcess then
		crouchAnim:Play()
		humanoid.WalkSpeed = 6
		humanoid.JumpPower = 0
	end
end)
2 Likes

fixed: changed type to movement

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.