Running Glitch [Wide Hip Movement]

My issue is that my character is running as if they have wide hips or something attached to them? I have no idea why, as this is something that only happens when I play it on new accounts. If I test it with my old account the same issue does not persist.

2 Likes

Do you have different default animations on your new account?
Look in your avatar settings where your body parts are shown with icons. You may have an animation in there as well.

1 Like

They are different, I have tested it, but I’ll go ahead and say this is the solution for now

1 Like

Sadly this wasn’t the problem, I have no idea it only occurs on these new accounts

1 Like

What solved the issue was switching the orders between applying humanoid description and setting the collisiongroup property to what I needed

Humanoid:ApplyDescription(clone_description)

for i,v in pairs(Character:GetDescendants()) do
	if v:IsA('BasePart') then
		v.Massless = true
		v.CollisionGroup = "Players"
	end
end

set the collision group property after you apply the humanoid description

1 Like

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