How do I save multiple things in a OrderedDataStore?
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:
01 | local DSS = game:GetService( "DataStoreService" ) |
02 | local DS = DSS:GetOrderedDataStore( 'plrData' ) |
04 | game.Players.PlayerAdded:Connect( function (plr) |
08 | data = DS:GetAsync(key) |
10 | local folder = Instance.new( "Folder" ) |
12 | folder.Name = 'leaderstats' |
13 | local Steps = Instance.new( "IntValue" ) |
16 | local Total = Instance.new( "IntValue" ) |
18 | Total.Name = 'TotalSteps' |
19 | local Wins = Instance.new( "IntValue" ) |
21 | Wins.Name = 'RaceWins' |
23 | Steps.Value = data.idk [ 'Steps' ] |
24 | Total.Value = data.idk [ 'Total' ] |
25 | Wins.Value = data.idk [ 'Wins' ] |
33 | game.Players.PlayerRemoving:Connect( function (plr) |
36 | idk [ 'Steps' ] = plr.leaderstats.Steps.Value |
37 | idk [ 'Total' ] = plr.leaderstats.TotalSteps.Value |
38 | idk [ 'Wins' ] = plr.leaderstats.RaceWins.Value |
reminder: no rude or toxic stuff about the simulator part.