Make a player teleport through brick

Hey there, I have a car that does collide, but after the player uses the ProximityPrompt to get in, they cannot jump out because they just get stuck in the car. Does anyone know how I could either make the player go through the part with it still being Can Collide or make the player teleport to the other side?

Iā€™m not a programmer in Lua but why not just make the car can collide off in the first place? Or have it temporarily become can collide off while they want to jump.

1 Like

If you would like to make the player able to go through the car but still have the car collide with other objects, consider using collision groups:

If you would like the player to teleport outside of the car, you could simply detect when the player leaves the drivers seat and then set the CFrame of the player to a position outside of the car relative to the CFrame of the drivers seat. Although, this could cause issues. Depending on where the car is, it could cause the player to become stuck in an object. Your safest option is likely the first one.