Hi, so here’s the settings for my two objects:


And my code, very simply, attached to the first object, Player:
void OnTriggerEnter(Collider col) {
Destroy(col.gameObject);
}
Why on earth is this not working? (Note, OnCollisionEnter isn’t working either).
Thanks!