LynXS_

Untitled

Jun 27th, 2024
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1.  
  2. local plr = game:GetService("Players").LocalPlayer
  3. local old;
  4. old = hookfunction(request, newcclosure(function(newreq)
  5. if newreq.Url:find("discord") or newreq.Url:find("webhook") then
  6. print(newreq.Url)
  7. rconsoleprint("\n")
  8. rconsoleprint(newreq.Url)
  9. setclipboard(newreq.Url)
  10. warn("Blocked webhook!")
  11. return
  12. end
  13. return old(newreq)
  14. end))
  15.  
  16.  
  17. local old;
  18. old = hookfunction(game.HttpGet, newcclosure(function(olgame, url)
  19. if url:find("pastebin") then
  20. url = url:gsub("pastebin","pastebinp")
  21. elseif url:find("process") then
  22. rconsolewarn(url)
  23. end
  24. print(url)
  25. setclipboard(url)
  26. rconsoleprint(url)
  27. rconsoleprint("\n")
  28. return old(olgame, url)
  29. end))
  30.  
  31. setreadonly(getrawmetatable(game), false)
  32.  
  33. local mt = getrawmetatable(game) or getmetatable(game)
  34. local __oldnamecall = mt.__namecall
  35.  
  36. mt.__namecall = newcclosure(function(self, ...)
  37. local args = {...}
  38. local namecallmethod = getnamecallmethod()
  39.  
  40. if self == plr and string.lower(namecallmethod) == "kick" then
  41. warn("bitchass tried to kick you")
  42. wait(9e9)
  43. return nil
  44. end
  45. return __oldnamecall(self, unpack(args))
  46. end)
  47.  
  48. setreadonly(getrawmetatable(game), true)
  49.  
Advertisement
Add Comment
Please, Sign In to add comment