in Assets/Scripts/GameController.cs [18:25]
private void Start()
{
gameOverLabel.SetActive(false);
playerHealthController = player.GetComponent<HealthController>();
healthSlider.maxValue = playerHealthController.health;
healthSlider.value = playerHealthController.health;
}