Answered by
8 years ago Edited 8 years ago
There are two ways of require()
ing a Module script.
The first one is by passing the module script as argument:
require(game.ServerScriptService.MyModuleScript)
The second is by passing it the assetID of a Module script that has been published to Roblox as argument: require(3858375)
A module script must return at least one value. The type of this value and its usage is up to the user, however. require
returns that value, which can then be used by the require()
ing script. Usually you would return a table, formatted as a dictionnary, which contains functions and optionally variables.
For example:
08 | module.foo = function () |
09 | print ( "Hello from 'bar'!" ) |
15 | print ( "Hello from 'bar '!" ) |
And then from a normal script:
3 | local myMod = require(game.ServerScriptService.MyModule) |
Since you are able to return anything you want from a module script, you could also return a function, which is what allows for crazy code such as:
So the require(475858285)(script)
part you mentioned is really just sending a reference to the current script as argument to the function returned by require
.
Hope that helps. If it did, please make sure to mark my answer as accepted and optionally upvote, it helps us both. :)
If you have any further questions, feel free to ask.