c# add/move lines of text in GUI box

i have a gui box i make it big but i can only add one line of text at the top of box how am i to add more lines of text to this.

GUI.Box (new Rect (445,65,300,230),“Menu”);

if theirs no way should i just do this a bunch of time over a box

GUI.Label(new Rect (450,110,290,25),“text”); (1 per line is the only way it’ll be a lot of guis )

You can separate each line in the string by a newline:

GUI.Box (new Rect (445,65,300,230),"Menu

One
Two
Three");