Ragdolling character glitching

Hello! I’ve built on Tom_atoes’ initial module that was broken and achieved something, but depending on how the character falls, it glitches really bad.

Here’s a gif of doing it 3 times - 2 of which are glitchy:

Limits are enabled and I’ve tried changing all angles, torque friction and such, but none seemed to help. I think the problem is the client ragdolling state.

RagdollRemote.OnClientEvent:Connect(function(recover)
	if not Hum then print("no hum"); return end
	
	if recover then
		Camera.CameraSubject = Char.Head
		Hum:ChangeState("Physics")
	else
		Camera.CameraSubject = Hum
		Hum:ChangeState("Ragdoll")
	end
end)

I’ve tried states other than Ragdoll and there’s also “Seated” which gives basically the same outcome.

I’m using BallSocketConstrains and I’ve lowered the ends of limbs’ angles (hands/feet) while the other parts have higher angles, but still - the angles are way lower now than before.
Making them higher glitches them even more.

PS: All limits are enabled.

If you have any ideas on how to fix it, don’t hesitate to tell me :smiley:
Thank you!

1 Like

I found the solution!
For anyone having this problem: Make the HumanoidRootPart Uncollidable while being ragdolled, then enabled it back when the player gets up!

3 Likes