I have finished the script!
It is fully-functional. I give anybody permission to use it in their projects. Please post any useful edits you make to it.
Thanks
//This script was originally made by MythStrott
//I give anyone permission to use it
//Please share any useful edits you make to the script
var textField = new Array ("Type your message message here.", "", "", "", "", "");
var chatboxWidth = 300;
var chatboxHeight = 20;
function OnGUI () {
textField[0] = GUI.TextArea (Rect (0, Screen.height - chatboxHeight, chatboxWidth, chatboxHeight), textField[0]);
GUI.Label (Rect (0, Screen.height - chatboxHeight * 2, chatboxWidth, chatboxHeight), textField[1]);
GUI.Label (Rect (0, Screen.height - chatboxHeight * 3, chatboxWidth, chatboxHeight), textField[2]);
GUI.Label (Rect (0, Screen.height - chatboxHeight * 4, chatboxWidth, chatboxHeight), textField[3]);
GUI.Label (Rect (0, Screen.height - chatboxHeight * 5, chatboxWidth, chatboxHeight), textField[4]);
GUI.Label (Rect (0, Screen.height - chatboxHeight * 6, chatboxWidth, chatboxHeight), textField[5]);
}
function Update () {
if (Input.GetKeyDown ("return")){
textField.Unshift("");
}
}
