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

How do I save multiple things in a OrderedDataStore?

Asked by
DollorLua 235 Moderation Voter
5 years ago

So I have been trying to get this ordered datastore to save 3 different player datas. I have tried saving them separately, but I get the orange error that says theres too many inputs for the key. It said it didn't allow Dictionaries either. Then a JSON encoded it but it doesn't accept strings. I need help. I Know that Ordered datastores only accept numbers. Heres the code:

01local DSS = game:GetService("DataStoreService")
02local DS = DSS:GetOrderedDataStore('plrData')
03 
04game.Players.PlayerAdded:Connect(function(plr)
05    local data
06    local key = plr.Name
07    pcall(function()
08        data = DS:GetAsync(key)
09    end)
10    local folder = Instance.new("Folder")
11    folder.Parent = plr
12    folder.Name = 'leaderstats'
13    local Steps = Instance.new("IntValue")
14    Steps.Parent = folder
15    Steps.Name = 'Steps'
View all 40 lines...

reminder: no rude or toxic stuff about the simulator part.

1 answer

Log in to vote
5
Answered by
megukoo 877 Moderation Voter
5 years ago

Sorry, but OrderedDataStores are used for saving an integer to a key. They cannot be used with other values.. etc.

If you want to sort singular stats like wins or points, save the individual values to different OrderedDataStores.

0
I know im late and thank you for taking time to answer. I always leave this sight for a while but ill try to stay on it this time. I accept this thank you. DollorLua 235 — 5y
Ad

Answer this question