Help with collision groups

So did you move the Player.PlayerAdded:Connect up like I did in the version I sent?
where you have it placed is currently yielding far too long

it waits for all the code above it to execute before it attaches in this situation

Ah I see, it have works and I’ll go deal with the broken remote events now.

1 Like

I’d definitely look into the PhysicsService logic @DasKairo mentioned prior, and then adjust your code accordingly.
If you want the players not to collide with eachother then you’d do something like

local PhysicsService = game:GetService("PhysicsService")
PhysicsService:RegisterCollisionGroup("Player");
PhysicsService:CollisionGroupSetCollidable("Player", "Player", false);
1 Like

Yea but I already have it turned off in the menu.

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