local fakeauth = [[ local hello = {} hello.script_id = hello.script_id or "" function hello.check_key(...) return { code = setmetatable({ auth_expire = 0, note = "hello im 08v3", total_executions = 67 },{ __index = function(self, v) return "KEY_VALID" end }) } end function hello.load_script() loadstring(game:HttpGet("https://api.luarmor.net/files/v3/loaders/"..hello.script_id..".lua")() end function hello.purge_cache() end return hello ]] local mt = getrawmetatable(game) setreadonly(mt, false) local old_namecall = mt.__namecall mt.__namecall = newcclosure(function(self, ...) local method = getnamecallmethod() local args = {...} if method == "HttpGet" and typeof(args[1]) == "string" then local url = args[1] if url:find("public.luarmor.net") then print("ok detected") return fakeauth end end return old_namecall(self, ...) end)