When I replace the URL with "http://google.com" or "http://example.com" it works normally.
When running the code locally (from a file on the PC) it still does not work.
I even restarted my physical laptop to be sure it is not an issue with the laptop.
Thanks for the help in advance.
PS: For those to lazy to click on the link, here is the code:
--[[
Updater Script
]]--
local path = ...
print(path)
print("lelz")
local handle = http.get("https://raw.githubusercontent.com/Creator/Tunnel/master/Releases/latest.lua")
local f = loadstring(handle.readAll())
print(handle.readAll())
setfenv(f,_G)
f(path)
And make sure to make me feel like an idiot when you discover the issue.











