*sigh* I'm back again. Same program. Different problem.
private void executeToolStripMenuItem_Click(object sender, EventArgs e)
{
string aaa = String.Format(richTextBoxEditor.ToString()); /*<-- Guessing that this is redundant */
lua.DoString(aaa); //<-- problem code
}
When I attempt to execute the Lua code in the textbox, it crashes the program. Wat do?