-
Book Overview & Buying
-
Table Of Contents
Coding Roblox Games Made Easy, Second Edition - Second Edition
By :
Now we get to the most important part of developing an obby: designing your stages! While building and designing your stages is up to you, this section will guide you on how to program various mechanics that can be implemented into your stages to make your experience engaging and profitable.
By the end of this section, you should be able to design stages like the one seen in Figure 5.3:

Figure 5.3: An example of a complete obby stage
Let’s begin by creating part behaviors.
Once again, the modularization of this system will be critical. Many new programmers who do not take advantage of modules attempt to use individual scripts to manipulate what is sometimes hundreds of parts. This almost immediately leads to headaches if any changes to these scripts need to be made as the code will need to be changed everywhere.
By using a module, the code affecting these parts is isolated to a single location and can...