Games often need to store some amount of persistent data between sessions like a player's level, experience points, inventory items, gold/cash, and more.
This tutorial will show you how to create a basic data store, save sample data, and read the data back into a game session.
Enabling Studio Access
By default, games tested in Studio cannot access data stores, so you must first enable them.
Make sure your game is published (File > Publish to Roblox) to enable Studio access.
From the Home tab, open the Game Settings window.
In the Security section, turn on Enable Studio Access to API Services.
Click Save to register your changes.
Creating a Data Store
Data stores are identified by a unique name. In this example, a data store named PlayerGold will save each player's gold to persistent storage.
Create a new Script within ServerScriptService called GoldManager.
Data stores are managed by DataStoreService, so get the service on the first line.
local DataStoreService = game:GetService("DataStoreService")Call DataStoreService:GetDataStore() with the string "PlayerGold". This will access the PlayerGold data store if it already exists, or create it otherwise.
local DataStoreService = game:GetService("DataStoreService")local goldStore = DataStoreService:GetDataStore("PlayerGold")
Saving the Data
A data store is essentially a dictionary, like a Lua table. Each value in the data store is indexed by a unique key, for instance the player's unique UserId or simply a named string for a game promo.
Player Data Example
Key | Value |
---|---|
31250608 | 50 |
351675979 | 20 |
505306092 | 78000 |
Promo Examples
Key | Value |
---|---|
ActiveSpecialEvent | SummerParty2 |
ActivePromoCode | BONUS123 |
CanAccessPartyPlace | true |
To save player data in the data store:
Create a variable named playerUserID for the data store key. Then, use playerGold to store a player's starting gold amount.
local DataStoreService = game:GetService("DataStoreService")local goldStore = DataStoreService:GetDataStore("PlayerGold")-- Data store key and valuelocal playerUserID = 505306092local playerGold = 250To save data into the PlayerGold data store, call SetAsync within a protected call, passing the key and value variables previously created.
local DataStoreService = game:GetService("DataStoreService")local goldStore = DataStoreService:GetDataStore("PlayerGold")-- Data store key and valuelocal playerUserID = 505306092local playerGold = 250-- Set data store keylocal setSuccess, errorMessage = pcall(function()goldStore:SetAsync(playerUserID, playerGold)end)if not setSuccess thenwarn(errorMessage)end
Functions like SetAsync() are network calls that may occasionally fail. As shown above, pcall() is used to detect and handle when such failures occur.
In its most basic form, pcall() accepts a function and returns two values:
- The status (boolean); this will be true if the function executed without errors, or false otherwise.
- The return value of the function or an error message.
In the sample above, the status (setSuccess) is tested on line 12 and, if SetAsync() failed for any reason, errorMessage is displayed in the Output window.
Reading Data
To read data from a data store, call GetAsync() with the desired key name.
local setSuccess, errorMessage = pcall(function()goldStore:SetAsync(playerUserID, playerGold)end)if not setSuccess thenwarn(errorMessage)end-- Read data store keylocal getSuccess, currentGold = pcall(function()return goldStore:GetAsync(playerUserID)end)if getSuccess thenprint(currentGold)endTo test the script, click Run and notice the currentGold value printed to the Output window. Note that it may take a couple seconds, as the functions must connect to data store servers.
Sample Project
Now that you understand basic data store usage, test it out in a sample game.
Gold Rush
Gather as many gold chunks as you can to set a personal record that will persist between game sessions.
You can also edit the game in Studio and explore the enhanced GoldManager script which includes data auto-saving and more.