Help With Collisions

Hello!
I need Help on making a Part Not collide with Players but collide with everything else.
Its for a touch soccer game project
I have tried all my tricks in my head but it wont work

so help would be Appreciated! :slightly_smiling_face:

Use Collision Groups to make them only collide with certain things, and not others.

1 Like

But I cant do a Collision group with players, can I?

You can with players’ characters.

1 Like

Hello! The Collision Group with Players is set as Default " 0 ", You can add a new Collision Group and disable the collisions of it with the Default Collision Group, or make a script that changes CollisionGroup on every part of the player’s Character

ok let me try that option, but I am kinda clueless of how to get the character. :melting_face:

Simply use Player.Character.

sure ok ill use that, i have a script stating that

how would i get the whole Character?

Same thing, you use Player.Character. It gets the character model for you.

Would I Go `char = game.Players.LocalPlayer.Character

char.RightFoot.CollisionGroupId = 2
char.LeftFoot.CollisionGroupId = 2
char.RightLowerLeg.CollisionGroupId = 2
char.LeftLowerLeg.CollisionGroupId = 2
char.RightUpperLeg.CollisionGroupId = 2
char.LeftUpperLeg.CollisionGroupId = 2
char.LowerTorso.CollisionGroupId = 2
char.UpperTorso.CollisionGroupId = 2`

I cant seem to solve this