I have made my contents of the pastebin into a json format but nothing prints out
local success, response = pcall(function()
local data = httpService:GetAsync("https://pastebin.com/RL7RcM2C")
local codesArray = httpService:JSONDecode(data)
print(codesArray)
end)
local pastebinId = ""; -- The paste bin's id, in this case: RL7RcM2C
local success, respone = pcall(function()
local url = string.format("https://pastebin.com/raw%s", "/" .. pastebinId);
local data = httpService:GetAsync(url);
local codesArray = httpService:JSONDecode(data);
print(codesArray);
end);