xxxxxxxxxx
local HttpService = game:GetService("HttpService")
-- Example JSON string
local jsonString = '{"name":"John","age":30,"city":"New York"}'
-- Decode the JSON string into a Lua table
local decodedData = HttpService:JSONDecode(jsonString)
-- Access the data in the Lua table
print("Name:", decodedData.name)
print("Age:", decodedData.age)
print("City:", decodedData.city)