Killing object with 3 shots

Hi guys,

I want to make asteroid get destroyed when it’s hit 3 times, currently it’s being destroyed after one shot only, how could i implement it? Thank you so much in advance!

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class DestroyByContact : MonoBehaviour
{
    public GameObject explosion;
    public GameObject playerExplosion;
    public int scoreValue;
    private GameController gameController;

    void Start ()
    {
        GameObject gameControllerObject = GameObject.FindGameObjectWithTag ("GameController");
        if (gameControllerObject != null)
        {
            gameController = gameControllerObject.GetComponent <GameController>();
        }
        if (gameController == null)
        {
            Debug.Log ("Cannot find 'GameController' script");
        }
    }


    void OnTriggerEnter(Collider other) {
        if (other.tag =="Boundary")
        {

        return;
    }
     if (other.tag == "Asteroid")
        {
            return;
        }
        Instantiate(explosion, transform.position, transform.rotation);
        if (other.tag == "Player")
        {
            Instantiate(playerExplosion, other.transform.position, other.transform.rotation);
        }
    gameController.AddScore (scoreValue);
    Destroy(other.gameObject);
    Destroy(gameObject);
    }
}

I would attach an script to your asteroid(s) which gives them a health pool set to a variable and a public class that removes one health each time the class is called. Have this called by your DestroyByContact class on trigger and have it destroy the Asteroid when the asteroids health is equal to 0.