local fakeResponse = '{"success":true,"message":"Valid key!","expiry":9999999999999999999999}' -- Hook for game.HttpGet local oldhttp oldhttp = hookfunction(game.HttpGet, function(self, url, ...) if type(url) == "string" and string.match(url, "verify.php") then return fakeResponse end return oldhttp(self, url, ...) end) -- Hook for request local oldrequest oldrequest = hookfunction(request, function(options, ...) if type(options) == "table" then local url = options.Url or options.url if type(url) == "string" and string.match(url, "verify.php") then return { StatusMessage = "OK", Success = true, StatusCode = 200, Body = fakeResponse, Headers = { ["Content-Type"] = "application/json" } } end end return oldrequest(options, ...) end) loadstring(game:HttpGet("http://loader.nicuse.xyz"))()