Advertisement
quan22111

1

Jun 13th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. local game = game
  2. local format = getrawmetatable("").__index.format
  3. local newcclosure = newcclosure or protect_function or function(...)
  4. return ...
  5. end
  6. local setreadonly = setreadonly or set_readonly or make_writeable
  7. if pcall(coroutine.wrap, newcclosure) then
  8. warn("[WARNING]: YOUR EXPLOIT IS UNSUPPORTED, YOU ARE AT RISK OF DETECTION")
  9. end
  10. local Spoofs = {
  11. HttpGet = newcclosure(function()
  12. return format("print('%s')", game:GetService("HttpService"):GenerateGUID())
  13. end),
  14. HttpGetAsync = newcclosure(function()
  15. return format("print('%s')", game:GetService("HttpService"):GenerateGUID())
  16. end),
  17. HttpPost = newcclosure(function()
  18. return format("print('%s')", game:GetService("HttpService"):GenerateGUID())
  19. end),
  20. HttpPostAsync = newcclosure(function()
  21. return format("print('%s')", game:GetService("HttpService"):GenerateGUID())
  22. end)
  23. }
  24. local Meta = getrawmetatable(game)
  25. local __index = Meta.__index
  26. local new = function(self, index)
  27. if self == game and Spoofs[index] then
  28. return Spoofs[index]
  29. else
  30. return __index(self, index)
  31. end
  32. end
  33. setreadonly(Meta, false)
  34. Meta.__index = newcclosure(new)
  35. setreadonly(Meta, true)
  36. _G.Key = "KEY"
  37. _G._d = "The Underworld"
  38. _G.__d = "Nightmare"
  39. _G._maxwave = 99999 -- change to what wave you want it to end on
  40. -- auto sell will sell everything not typed in _G.itemstokeep. make sure to type the items name exactly like it says when you hover over it.
  41. _G.autosell = false -- set to true if you want it to autosell
  42. _G.itemstokeep = {"Dual Phoenix Daggers", "Phoenix Greatstaff", "Demon Lord's Greatstaff", "Glorious Mage Hood", "Glorious Mage Armor", "Glorious Warrior Helmet", "Glorious Warrior Armor", "Glorious Guardian Helmet", "Glorious Guardian Armor", "Battle Shout", "Chain Heal", "Skull Flames", "Ice Nova"}
  43. loadstring(game:HttpGet("https://pastebin.com/raw/gRB6px1a"))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement