Mr_3242

HttpGet Monitor

Jun 3rd, 2026
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | Gaming | 0 0
  1. local old
  2. old = hookmetamethod(game, "__namecall", function(self, ...)
  3.     local method = getnamecallmethod()
  4.     local args = {...}
  5.  
  6.     if method == "HttpGet" or method == "HttpGetAsync" then
  7.         local url = args[1]
  8.         local response = old(self, ...)
  9.  
  10.         local output = "--" .. tostring(url) .. "\n" .. tostring(response)
  11.  
  12.         print(output)
  13.         pcall(setclipboard, output)
  14.  
  15.         return response
  16.     end
  17.  
  18.     return old(self, ...)
  19. end)
Tags: delta
Advertisement
Add Comment
Please, Sign In to add comment