Roblox Collision Groups

Tricky question about collision groups, but wondering if it’s possible.

I create a collision group named Group A. All parts that have Collision Group A cannot collide with other Collision Group A parts.

I create two models and set all their respective parts to Collision Group A. Which means the models won’t collide.

Is it still possible to have the same effect, but all parts within a model can still collide with each other respectively?

2 Likes

Only way I can think of is if you make a separate collision group for each model. I’m not sure how efficient this would be at a larger scale but it sounds like it could work.

1 Like

Your question is very poorly worded (Not necessarily your fault since its hard to discuss the outcome you want when talking about collision groups) but ima have a shot of answering what I think your asking, which is how to make parts in a collision group only collide with each other and nothing else.

Two ways, both untested. Option A is preferable but may not work, Option B will definitely work but less efficient.

  1. Set the parts to CanCollide false then add the parts to a collision group and set the collisions to true (This should in theory work but as I said untested.)

  2. Add every part to a different collision group and set the collisions with group a to false.

2 Likes

1 Like

I just noticed that there’s a RemoveCollisionGroup and CreateCollisionGroup method. I could probably work something out with that. Thanks!