Im trying to make a GET request to something like pastebin called paste.ee
its not pastebin but exactly like it.
I kept getting 403 Forbidden when doing so…
local HttpService = game:GetService("HttpService")
local listurl = "https://api.paste.ee/v1/pastes?key=MyKeyHere"
local GetList = HttpService:GetAsync(listurl)
local PasteID = HttpService:JSONDecode(GetList)
print(PasteID)
This is a serverscript and i also have HTTP Requests enabled.