Player falls through destroy collider

The player is supposed to be destroyed when falling into the green slime and then the game resets. But instead the player just falls through forever. What is wrong? (I’m new at unity)
Pic attached of the box collider.
And this is the destroy script for the box collider in the slime:

using UnityEngine;
using System.Collections;
using UnityEngine.SceneManagement;

public class KillBox : MonoBehaviour {

// Use this for initialization
void Start () {

}

// Update is called once per frame
void Update () {

}

void OnTriggerEnter(Collider other)
{
    if(other.gameObject.tag == "Player")
    {
        SceneManager.LoadScene(SceneManager.GetActiveScene().name);
    }
}

}

  1. Make sure both objects have colliders on them
  2. Make sure you have a rigidbody attached on either one of the colliders
  3. Make sure the colliders are marked as “Triggers”
  4. If all requirements above are met, it could be the speed which the player falls into the slime collider. In this case set the Rigidbody on KillBox to “Continuous dynamic” collision detection to check for collisions more frequently