So I am trying to make my game multiplayer. I have a lobby scene that works and a scene that I want people to load into after the lobby. But it will not accept the scene I am trying to use. Whenever I try to drag the scene to the field “Play Scene” it just has “None (Object)” in the box where “StartingScene” should be. I am not sure why this is not working. If anyone has any help to give it would be very appreciated.
Use this method instead:
var Scene : string = "Whatever your scene is called";
function yourfunction() {
Application.LoadLevel(Scene);
}
Hope this helps!![]()