Hello, as apart of my game I have a death menu which appears when the player dies. The death menu presents itself with both a "Restart" and "Exit" button. However, upon clicking the Restart button the game freezes. This is urgent so fast replies would be much appreciated
Game Freezing Upon Reload
Code (CSharp):
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using UnityEngine.SceneManagement;
- public class DeathMenu : MonoBehaviour
- {
- public GameObject deathMenuUI;
- public void...