GUI text area help!

Hi I am having some trouble with my GUI script. I created the text area where the player can edit and add text but how would I make it so when the player types a specific sentence it loads a level? Any help would be appreciated thanks!

Hello,

Assuming you have knowledge of when to be able to load the level, you can simply check if the contents equal some specific value:

if (textBoxInput == "The name of the level or whatever can go here") {
    Application.LoadLevel("some level to load");
}

Hope this helps,
Benproductions1