local http = game:GetService("HttpService")
local function printDictionary(dict)
local success, result = pcall(function()
return http:JSONEncode(dict)
end)
if success then
if result then
print(result)
end
else
warn(result)
end
end
printDictionary({["a"] = 1, ["b"] = 2, ["c"] = 3})
That’d be the purpose of JSONEncode()
.