Answered by
5 years ago Edited 5 years ago
First do not use :GetAsync() when updated or overwrite the values it make the server thinks that you use the Data Store more complicated. You need a limit. So for the limit of the :GetAsync() is
60+ number of players * 10 requests per minute.
So if you have 10 players, so 60+10*10 = 700 request per minute so for this if you have more than 700 request per minute it maybe some bugs happen maybe if you have 100 coins makes 10 coins or if you have 20 coins makes 100 coins and so on. And tip, do not make server complicated in data store.
So copy this script.
01 | local datastore = game:GetService( "DataStoreService" ) |
02 | local data 1 = datastore:GetDataStore( "Data1" ) |
03 | game.Players.PlayerAdded:Connect( function (player) |
04 | local Data = Instance.new( "Folder" ,player) |
05 | Data.Name = "leaderstats" |
06 | local cash = Instance.new( "IntValue" , Data) |
08 | cash.Value = data 1 :GetAsync(player.UserId) or 10 |
10 | game.Players.PlayerRemoving:Connect( function () |
11 | data 1 :GetAsync(player.UserId, cash.Value) |
16 | data 1 :GetAsync(player.UserId, cash.Value) |
If not worked open the output. To open the output, click View on top the window, then click Output.