Easy Question - Need a quick answer

Ok, I am almost getting used to this java script, but one thing:

I tried printing something from a GuiText game object:
TextPrint.text=“Test”;

The question is, do I have to add a new GuiText object for each different thing I want to print?

My project might look somewhat like this:

You don’t have to, you can break it onto multiple lines with \n

TextPrint.text=“Test\nLine2\nLine3\nLine4\nLine5”;

Perfect! That’s exactly what I needed. :smile:

Thank you very much.