Help with GUI Status Messages

In every Multiplayer FPS i have Played they always have that dynamic message system that appears in the corners of the screen that state who killed who.

I have it set up so that it happens on one line but I can not seem to get it to read out multiple lines.

Attached is the code for the one line. how and where do I go from here to make sure I can get multiple Lines to appear on the HUD

330397–11631–$toppiece_666.js (2.01 KB)

You can use the \n escape with GUI.Label, etc, to create multiple lines:-

GUI.Label(labelRect, "We\nwill\nrock\nyou");
/* Gives:-
We
will
rock
you
*/