HttpService is a class which is used to make http requests.
HttpService
Instance.new()
Request(string url, Http.Methods type, float timeout = 0.0)
local HttpService = Game:GetService("HttpService") HttpService.Request("url", Http.Methods.Get) HttpService:Connect("OnRequestCompleted", __SCRIPT__, "FunctionToCall") function FunctionToCall(responseCode, headers, body) printl(responseCode) end
OnRequestCompleted
OnRequestTimedOut