Demonstrating programming style and efficiency
Writing code with good style not only improves the quality of your work, but it also prepares you to pursue programming in more professional environments or when working with other people. The rules you are about to cover are categorized by whether they exist universally in programming or if they pertain primarily to Roblox.
General style rules
Readability is an important aspect of maintaining good style. Not only do others who may read your code need to understand what is happening, but being able to easily follow your own code will greatly increase your workflow. Having a clean coding style will also enable you to be more conscious of other style factors you should be implementing. The two ways you can make your code the most readable are to use proper indentation and observe appropriate line length. For line length, most college programming courses will likely suggest that you limit your lines of code to eighty to one hundred...