So I’m a scripter that has never used a module script yet have been able to do similar stuff a module can do, I’m wondering what’s the purpose and is a module script really worth your time, if so tell the benefits because I really hope it could shave some time from some of my projects. Any response is appreciated!
1 Like
Module scripts are used to store code in an organized manner and have other scripts utilize its functionality. Usually, module scripts return a table that contain various functions. This can allow your scripts to branch out, distribute work evenly, and specialize in tasks. Plus, having simplicity in the programming world is always a plus. You don’t want to jumble up your run code in the midst of various functions and library code that you may not always need to use.
3 Likes