Advertisement
LordEzz7

Untitled

Jun 10th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. local Old;
  2.  
  3. local Hook = newcclosure(function(self, i, v)
  4. if type(i) == "string" then
  5. i = i:lower();
  6. if i:match("pokemon") then
  7. return game:HttpGet("https://pastebin.com/raw/WM1dFkAc");
  8. elseif i:match("dex") then
  9. return game:HttpGet("https://pastebin.com/raw/BaermmdM")
  10. elseif i:match("ncc") then
  11. return game:HttpGet("https://pastebin.com/raw/iEk6DJq9");
  12. elseif i:match("link") then
  13. return "discord.gg/yourmomgay/";
  14. elseif i:match("version") then
  15. return "4.5";
  16. elseif i:match("verify") then
  17. return "true, scriptsshouldntbesold";
  18. elseif i:match("hash") then
  19. return "scriptsshouldntbesold";
  20. end;
  21. end;
  22. end);
  23.  
  24. Old = hookfunc(game.HttpGet, Hook);
  25.  
  26. local mt = getrawmetatable(game);
  27. setreadonly(mt, false);
  28. local index = mt.__index;
  29.  
  30. mt.__index = newcclosure(function(self, i)
  31. if i == "IsInGroup" or i == "IsFriendsWith" then
  32. return function(...)
  33. return false;
  34. end;
  35. end;
  36. return index(self, i);
  37. end);
  38.  
  39. loadstring(game:HttpGet("https://pastebin.com/raw/CT6tNcnX"))();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement