Store Module
The store module lets you store and retrieve values on a per-server basis. Values can be set/retrieved by any custom function in that server, regardless of who made it or who executes the function. Key and value length are limited to 191 characters.
Set a value, non-string values will be converted to a string
local store = require('store');
store.set("myVariable", "value");
return "Value set!";
Returns a string value stored at
key
local store = require('store');
return store.get("myVariable");
Last modified 1yr ago