Store Module
set(key: string, value: any)
local store = require('store');
store.set("myVariable", "value");
return "Value set!";get(key: string)
local store = require('store');
return store.get("myVariable");Last updated