So today I started to get this error. Possible for HttpService to be down?
Code:
spawn(function()
while task.wait(1) do
local INFO = nil
local success, errorr = pcall(function()
INFO = Pastebin.RequestPermission()
end)
if success then
if INFO ~= nil then
_G.Permissions = INFO
end
elseif not success then
warn("❌ [Main]: Failed to get permissions from pastebin.", errorr)
end
end
end)
Module:
function Pastebin.RequestPermission()
return HttpService:JSONDecode(game:GetService("HttpService"):GetAsync(URL))
end
It’s not on Roblox’s end. From what I gathered online, getting an HTTP 403 from pastebin means either the IP the request was sent from was blocked, or the link itself is private