01 | local HTTP = { } |
03 | local http = game:GetService( "HttpService" ) |
04 | function 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 ; |