Loading/Saving from Roblox Studio
Loading the Module
local returnedDB = require(game.ServerStorage:WaitForChild("returnedDB_Module")local DB = returnedDB.create("YOUR TOKEN GOES HERE")local example = DB:Read("KEY NAME") -- This will return it's value or nil if it doesnt exist
print(example)DB:Write("KEY NAME", "VALUE EXAMPLE")local returnedDB = require(game.ServerStorage:WaitForChild("returnedDB_Module")
local DB = returnedDB.create("XGUFYGSUDYFGAWYEGIAYUGROE")
DB:Write("pro user", "returnedmath") -- store the value
local pro user = DB:Read("pro user") -- This will return it's value or nil if it doesnt exist
print(example) -- prints "returnedmath"Last updated