//Jimmy Vegas Unity Tutorial //These scripts are for respawning using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; public class Respawning : MonoBehaviour { void Start () { HealthMonitor.healthPoints = 300; SceneManager.LoadScene(1); } } using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; public class GameOverOption : MonoBehaviour { public void RespawnPlayer() { SceneManager.LoadScene(2); } }