#What way is the best when create (script) games to organise scripts?
1 messages · Page 1 of 1 (latest)
Most important thing to follow: Naming conventions.
Your future self would greatly appreciate it if you organize your scripts with names suitable to their functions and for better clarity. For example, server scripts that handles specific things can be suffixed with "Handler" or "Manager" or "Service".
Currently, I use init/start modules for scripts that are duplicated to multiple instances, like the localscript of a tool. You could also follow that way as it makes debugging and modifying their code a lot easier.