Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why is added to queue DataStoreService not working?

Asked by 4 years ago

code:

01local DSS = game:GetService("DataStoreService")
02local DS = DSS:GetDataStore("Coins")
03 
04game.Players.PlayerAdded:Connect(function(player)
05    local ls = Instance.new("Folder")
06    ls.Name = ("leaderstats")
07    ls.Parent = player
08    wait(.1)
09    local pts = Instance.new("IntValue")
10    pts.Name = ("Rebirths")
11    pts.Parent = ls
12    pts.Value = 0
13 
14    local Coins = Instance.new("IntValue")
15    Coins.Name = ("Coins")
View all 24 lines...

error: DataStore request was added to queue. If request queue fills, further requests will be dropped. Try sending fewer requests.Key

Answer this question