here is the code that im curently using. im trying to go from the first scene, to the second, to the third then back to the first with just one button.
using UnityEngine;
using UnityEngine.SceneManagement;
public class ButtonManager : MonoBehaviour
{
public void NextScene()
{
SceneManager.LoadScene(“fire”);
}
}