Weird behavior with Rthro

I have been trying to use a custom character for my game, it did work out in another place but when I tried to use it in a place on its own, it did not work.
So far I have tried changing the hip hieght, using Rthro instead and using changing collisions.
https://gyazo.com/0f782c7eda4061993fc0395073c384d0

Are you manually changing its cframe every tick? Thats what this behaviour reminds me of.

No indeed, that place is empty only with it and a script that welds armor to it. Here is a GIF with the HipHeight changed
https://gyazo.com/621a4c2f05817a7be19e82b9994fd0bf

If it’s your place it is only working weirdly on, check the game configuration. Is it set to Rthro?

1 Like

Still, and this rig is in StarterPlayer and named StarterCharacter so it is a custom character not made out of welds

Think this happens if the CollisionGroupId property of the character parts are set to a non-existent collision group.

Try setting CollisionGroupId to 0 on all parts.

4 Likes

I feel so ashamed right now… I copied the model from the main game without thinking of that… Thanks for your help!

2 Likes

That behavior can also happen if the HipHeight is set too small. You might want to try turning off automatic scaling if you are not using any of the scaling features.

2 Likes

And for this?
https://gyazo.com/95734f1eee25881ffac0845cff90b872
All parts are massless and CanCollide = false except humanoidrootparts not massless.
Problem: They keep knock-backing each others.

First guess would be that since the character has little mass, the forces moving the characters around are causing more bounce than normal. If you try increasing the density of the HumanoidRootPart, that may help.

1 Like

Worked out great, thanks.
I did try that before but it made the player accelerate when moving, I guess it was a bug.