I have a 3D tower defense project. I wanted to make a button or just a thing that you can click with mouse and it will send you to another scene like a sandbox level for start. I already have a text object called PLAY and it says Play. And i putted it to the scene, the problem is i do not know how i could click it and it would send me to the other scene. i DO NOT have any scripts right now, help would be appreciated.
To clarify i am a starter so pelase not complicated stuff
Thanks!
You can create a Canvas (GameObject → UI → Canvas). With this, you will create a 2D “screen” that can be viewed at all times. This is what is used to make the life indicators, put the mini-map, texts on screen…
Inside this object you can create a “Button” (GameObject → UI → Button). These objects are already programmed to detect when they are clicked with the mouse among other things.
All you have to do is go to the part that says Button – On Click() and click on the +.
Now you will be able to select one of your scripts so that when the button is clicked the action is performed. You have to have a public function so that the button can access this function.

Thank you, i will try this later!