Answered by
4 years ago Edited 4 years ago
I would normally close this question, since it's more of a request, but I had a lot of issues finding a simple tutorial on data stores, as well, when I was learning. Some of the tutorials on the Wiki are really drawn out and, although the more complex examples lead to more effective data stores, it's neither necessary nor helpful for someone trying to learn.
The basics of a datastore are as follow. Through the DataStoreService
, we use the :GetAsync()
method to retrieve any existing data for the given key (unique or otherwise). When you want to save or overwrite pre-existing data, you use the :SetAsync()
method. One of this method's arguments is the key that I mentioned. You could, for example, have a unique key for each player (ie Player.UserId .. "_Key"
).
Tying this all together, we can create a simple data store. In the example below, I'll create a data store for leaderstats.
Run through a ServerScript...
01 | local DataStoreService = game:GetService( "DataStoreService" ) |
02 | local Players = game:GetService( "Players" ) |
03 | local LeaderboardData = DataStoreService:GetDataStore( "LeaderboardData" ) |
05 | Players.PlayerAdded:Connect( function (Player) |
06 | local SavedData = LeaderboardData:GetAsync(Player.UserId .. "_Key" ) |
07 | local leaderstats = Instance.new( "Model" ) |
08 | leaderstats.Name = "leaderstats" |
09 | leaderstats.Parent = Player |
10 | local Kills = Instance.new( "IntValue" ) |
12 | Kills.Parent = leaderstats |
13 | local Deaths = Instance.new( "IntValue" ) |
14 | Deaths.Name = "Deaths" |
15 | Deaths.Parent = leaderstats |
17 | Kills.Value = SavedData [ 1 ] or 0 |
18 | Deaths.Value = SavedData [ 2 ] or 0 |
22 | Players.PlayerRemoving:Connect( function (Player) |
23 | local leaderstats = Player:FindFirstChild( "leaderstats" ) |
25 | local Kills = leaderstats.Kills |
26 | local Deaths = leaderstats.Deaths |
27 | local DataToSave = { Kills.Value,Deaths.Value } |
28 | LeaderboardData:SetAsync(Player.UserId .. "_Key" ,DataToSave) |
Of course, you can create more complex, more secure data stores, which you would definitely want to look into if you were handling a popular game. You can find a simple tutorial to data stores here, and a more complex tutorial here
Good luck!
Note: be sure to enable "Studio Access to API Services" through your game settings before setting data stores!
Closed as Not Constructive by JesseSong
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?