Button click then new scene

Hey, I’m very new to Unity and coding and need some help with something I know is very simple.

Essentially I’m creating a game menu for my game when you click on my 3d text “Play” it goes into my level scene. Not sure how to do that!

Any help much appreciated, thank you!

Use the built in Button event to send fire a method on some script that uses LoadScene.

Just watch that video and I think you can set up a simple button :wink:

Short: Create your canvas, place a new button in it, create a script with a method and attach it to your object, after that select it on the event list. It should now run that method when the button is pressed.