Does anyone know how to make the healthbar stop at zero? (it currently goes below zero) Thank you. using UnityEngine;using System.Collections;using UnityEngine.UI;public class HealthBar : MonoBehaviour{ #region FIELDS // The player's current health public int currentHealth; // The player's max health public int maxHealth;…