I have a collider and when an object passes through I want to destroy the object that passes through. PLEASE HELP
Colliders don’t collide on their own. Only a Rigidbody can collide with other colliders and other Rigidbodies. You need to add a rigidbody component to the object that need’s to be destroyed then add a script to it in which should be written “void OnCollisionEnter(){ Destroy(gameobject); }”