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

Http:JSONDecode: Argument 1 is missing or nil?

Asked by 4 years ago

Http:JSONDecode error: Argument 1 is missing or nil

I've been trying to do a script where you can save a table to a datastore. Here is my current script:

01game.Players.PlayerAdded:Connect(function(player)
02    if ds:GetAsync(player.UserId) ~= nil then
03        local toLoad = Http:JSONDecode(ds:GetAsync(player.UserId))
04 
05        local statStats = toLoad.stats
06        local cashCash = toLoad.cash
07 
08        if statStats == nil then
09            local stats = Instance.new("Folder")
10            stats.Name = "leaderstats"
11            stats.Parent = player
12 
13            local cash = Instance.new("IntValue")
14            cash.Name = "Cash"
15            cash.Parent = stats
View all 92 lines...

Everytime i try to get the table, it returns nil. Someone know why?

0
The issue is you are trying to Decode the Datastore and not the Encoded Table BestCreativeBoy 1395 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

Well, instead of using JSON in table, you can save it simply.

01-- DS is assumable as your Datastore is not mentioned
02local DS = game;GetService("DataStoreService"):GetDataStore("BLAHBLAHBLAH")
03 
04local save = {}
05table.insert(save, 1, cashCash)
06table.insert(save, 2, statStats)
07 
08DS:SetAsync(plr.UserId, save)
09 
10-- And to get your data, you can do:
11local toLoad = DS:GetAsync(player.UserId)

Lemme know if it helps!

0
but what about the utf-8 error? (datastore only saves utf-8 characters) krowten024nabrU 463 — 4y
0
Well, if you are getting utf-8 error, it might be bcz you are trying to store instances. Just, try saving the value of Cash and Stat. When the player joins, just put that value in the leaderstats folder BestCreativeBoy 1395 — 4y
Ad

Answer this question