i did a button that take u too another scene, but when the other scene load is without scripts, idk why .-., but if u load manually that scene is all right
UPDATED
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class GoMenu : MonoBehaviour {
public void Gomenu()
{
SceneManager.LoadScene("menu");
}
}
Makes no sense to me at first glance. Which one isn’t loading ? The one that lets you start the game, or the one that lets you fly … both are obviously working?