adding a disclaimer/software license/legal stuff screen before app start

Hi everyone!
I’m trying to add a simple disclaimer screen with legal stuff about coyright/copyleft etc. before my app starts, with “accept” and “do not accept” buttons. Does anybody know an easy way to achieve this, or alternatively can address me to another post with a similar purpose?
Thanks!

It’s probably easiest to handle this with a separate scene for the disclaimer. You can then go on to the actual game or quit depending on which button the user chooses:-

if (GUI.Button(agreeRect, "Agree")) {
  Application.LoadLevel("Start");
} else {
  Application.Quit();
}

thanks