Help with AI car physics

I’m making a game with AI cars chasing the player. Sort of like “smashy road” if anyone played that. I have this script below on my AI cars and it works fine but its rather boring. The cars just rotate towards the player and move toward it. Is there any way to spice it up with some drag on the cars or more realistic turning. I would do it myself but I am just learning to code. Thanks in advance.

public Transform Player;
int MoveSpeed = 15;
int MaxDist = 10;
int MinDist = 5;

void Start()
{

}

void Update()
{
    transform.LookAt(Player);

    if (Vector3.Distance(transform.position, Player.position) >= MinDist)
    {

        transform.position += transform.forward * MoveSpeed * Time.deltaTime;

        if (Vector3.Distance(transform.position, Player.position) <= MaxDist)
        {
            //Here Call any function U want Like Shoot at here or something
        }

    }
}

Look at this

I think its perfect for moving ai cars with curves and easy to setup paths. And free.