Hello, I would like to know how you can add value (or a player's name) to a module.
I have tried this,
1 | table.insert(module, value) |
2 | table.insert(module, #module, value) |
I am not the best at modules, as you can tell. Thanks :D
FYI, Module requires are synced across the same context level, so if a client requires a module, it will be different from the server version, just in case that's what you're trying to do.
But if your module returns a table it is as simple as just adding an entry to the module.
1 | module [ key ] = value; |
2 |
3 | print (module.key) |