Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

why does my script get the error of Can't Parse JSON when using the HTTP service?

Asked by
1lO_Ql1 -1
5 years ago
01local HTTP = {}
03local http = game:GetService("HttpService")
04function HTTP:HTTPGET(url)
05    local success, res = pcall(http.RequestAsync, http, {
06        Url = url;
07        Method = "GET";
08    })
09    if (not success) then
10        res = {
11            Success = false;
12            StatusCode = -1;
13            StatusMessage = res;
14            Headers = nil;
15            Body = nil;
View all 59 lines...
0
Put the full error message, the result of you trying to debug it, which part you think might be the cause, what the script is supposed to do, LITERALLY ANY INFO, don't just make a post and slap a 60 lines of code and hope people will just help you Azure_Kite 885 — 5y

Answer this question