#Difference Between ModuleScripts LocalScripts and Scripts.
1 messages · Page 1 of 1 (latest)
modules are modular because they are reusable
Combat systems are pretty easy to make by yourself by the way
server scripts run on the server, if you were on the client you cant access them at all or change them. localscripts run on the client which means they are possible to run on the client and you can fully change or rewrite them on the client. exploits are similar to localscripts with a bit more power so stronger systems should always be on the server. Module scripts are modular which means they are either called from the server or from the client, a common misconception is that you shouldn't use modules outside the server since hackers can modify them. This is partially true, but hackers can only modify module calls that get sent to the client, not ones that get sent to the server. Module scripts are simply reusable functions and global storage of objects at their core.