No, I'm not asking for youtube videos or roblox wiki links. I want a very simple explanation on how it works. An example was when someone told me how to use remote events: set what happens when the event fires, and fire the event.
Roblox doesn't save tables in Datastore. It only saves numbers and strings(text)
.. however, you can encode tables into strings to save in datastore, and then decode them back to a table when you read them from Datastore..
you can make your own encoder/decoder, but the HttpService
has functions that encode tables into JSON formatted strings
, and from JSON formatted strings into Lua tables..
the 2 functions are HttpService:JSONEncode()
and HttpService:JSONDecode()
so here is a basic example:
01 | local HttpService = game:GetService( "HttpService" ); |
02 | local DataStoreService = game:GetService( "DataStoreService" ); |
03 | local DataStore = DataStoreService:GetDataStore( "name of data" ) |
04 |
05 | local data = { |
06 | coins = 200 , |
07 | swords = { |
08 | "Katana" , |
09 | "Galactic Saber" , |
10 | "Special sword" |
11 | } , |
12 |
13 | guns = { |
14 | "MP3" , |
15 | ".5 Caliber Sniper" , |
The above should save everything in that table to datastore, the following should read the data and turn it back into a table;
1 | local stringData = DataStore:GetAsync( "key goes here" ) or "{}" |
2 | local data = HttpService:JSONDecode(stringData); --back into a table |
3 |
4 | print (data.guns [ 1 ] ) -- will print "MP3" |
make sure tables are not mixed when using
JSONEncode and JSONDecode
which means table shouldn't look like this:
local t = {name = "jack", 1,2,3,4};
instead it should look like this:
local t = {name = "jack", numbers = {1,2,3,4}}
First of all create a server script in serverscriptservice Then turn API services on. So the server knows where to store the data via.
You need to store the data as two variables like this Datastore does not fully function in ROBLOX studio, so do it on ROBLOX itself
01 | local DataStoreService = game:GetService( "DataStoreService" ) |
02 | local myDataStore = DataStoreService:GetDataStore( "myDataStore" ) |
03 |
04 |
05 | game.Players.PlayerAdded:Connect( function (player) |
06 | local leaderstats = Instance.new( "Folder" ) |
07 | leaderstats.Name = "leaderstats" |
08 | leaderstats.Parent = player |
09 |
10 | local Deaths = Instance.new( "IntValue" ) |
11 | Deaths.Name = "Deaths" |
12 | Deaths.Parent = leaderstats |
13 |
14 | local Wins = Instance.new( "IntValue" ) |
15 | Wins.Name = "Wins" |
Please comment if there are any errors