Http:JSONDecode: Argument 1 is missing or nil?
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:
01 | game.Players.PlayerAdded:Connect( function (player) |
02 | if ds:GetAsync(player.UserId) ~ = nil then |
03 | local toLoad = Http:JSONDecode(ds:GetAsync(player.UserId)) |
05 | local statStats = toLoad.stats |
06 | local cashCash = toLoad.cash |
08 | if statStats = = nil then |
09 | local stats = Instance.new( "Folder" ) |
10 | stats.Name = "leaderstats" |
13 | local cash = Instance.new( "IntValue" ) |
19 | cash.Value = math.random( 1 , 9999999 ) |
24 | cash.Value = math.random( 1 , 9999999 ) |
25 | be:Fire(cash.Value, player.Name) |
27 | until player.Parent = = nil |
29 | game.Players.PlayerRemoving:Connect( function (plr) |
31 | table.insert(save, 1 , cash) |
32 | table.insert(save, 2 , stats) |
34 | ds:SetAsync(plr.UserId, save) |
36 | elseif (statStats ~ = nil and statStats:IsA( "Folder" )) or statStats ~ = nil then |
37 | statStats.Name = "leaderstats" |
38 | statStats.Parent = player |
40 | cashCash.Name = "Cash" |
41 | cashCash.Parent = statStats |
47 | cashCash.Value = math.random( 1 , 9999999 ) |
48 | be:Fire(cashCash.Value, player.Name) |
49 | until player.Parent = = nil |
51 | game.Players.PlayerRemoving:Connect( function (plr) |
53 | table.insert(save, 1 , cashCash) |
54 | table.insert(save, 2 , statStats) |
56 | ds:SetAsync(plr.UserId, Http:JSONEncode(save)) |
58 | warn(ds:GetAsync(plr.UserId)) |
62 | warn( "Datastore is " , nil , "!" ) |
64 | local stats = Instance.new( "Folder" ) |
65 | stats.Name = "leaderstats" |
68 | local cash = Instance.new( "IntValue" ) |
74 | cash.Value = math.random( 1 , 9999999 ) |
79 | cash.Value = math.random( 1 , 9999999 ) |
80 | be:Fire(cash.Value, player.Name) |
82 | until player.Parent = = nil |
84 | game.Players.PlayerRemoving:Connect( function (plr) |
86 | table.insert(save, 1 , cash) |
87 | table.insert(save, 2 , stats) |
89 | ds:SetAsync(plr.UserId, save) |
Everytime i try to get the table, it returns nil. Someone know why?