I have this huge script but it doesn't fit on here, the error is on line 5.
-- services local httpService = game:GetService("HttpService"); -- execution return httpService:JSONDecode([[ [ { "AssetId" : 689381514, "Name" : "Celtic Necklace of Mystery", "AveragePrice" : 475 }, { "AssetId" : 721555148, "Name" : "Dominus Argentum", "AveragePrice" : 5666666 },
Here is the full script, over 9k lines. https://pastebin.com/fsaSxaYc
A JSON table is a string. You are trying to decode a table in Lua, which is not JSON. Therefore, you cannot decode the Lua table, as it is not a string, nor a JSON table.