void HandlePlayerDeath()
    {
        if (playerScript.GetPlayerAlive())
        {
            return;
        }

        // If the player is dead we move him to the start point
        MovePlayerToStart();
    }