Here's a neat project I was working on a while ago, never finished it, not even close, so I reckon I should just post it. Essentially its my own basic coding language, so basic that it doesn't even contain operators, loops or conditionals. To add a new line click add then type what you want. To replace, click replace, type the number of the line you wanna replace then what you wanna replace it with. To delete, press delete, type the number of the line you wanna delete. Also, you can type "all" to clear everything. To insert, click insert, then type the number of the line you wanna insert on, then what you want to insert.
== SYNTAX AND COMMANDS == To do a blank line, type "." To comment, type > (the script will ignore anything past this, this is to add actual words that can break up your code) To print, do Print("Hello world!") - you will need the quotes unless your doing a variable. To wait, do wait(1), will wait that amount of seconds, DECIMALS DO NOT WORK -- VARIABLES To create a variable, type newVar(variableName) To assign a variable, type setVar(variableName:value) Values can be strings, ints, floats, instances, booleans whatever, and can be printed like this: Print(VariableName) NO QUOTES