How do i Kill Enemy with Vehicle??

Hello,

i am using realistic car controller and Advanced AI pro.
How do i fix that the enemy dies after i hit him with the car?
I can shoot it but cant drive him dead.

@username
Give tag to the enemy and use OnCollisionEnter Method to detect that car hit enemy tag , When collision detected Set Some Status of enemy

You’d put the script below on the Enemy, and tag your car as “MyCar”. More documentation about OnCollisionEnter can be found here.

    public class Enemy
    {
        void OnCollisionEnter(Collision c)
        {
            if (c.transform.CompareTag("MyCar"))
            {
                Destroy(gameObject);  // Destroy this enemy
            }
        }
    }