Im using HTTP Service, and Im using an API. If this is returned from the API {"status":"success","value":"467106064022896661"}
, how would I get for example the value of status which is success.?
1 Like
Here:
local HttpService = game:GetService("HttpService")
local ReturnedValue = HttpService:JSONDecode(ReturnValue) --> In this case is that string you got from that API.
print(ReturnedValue.status)