MaxproGlitcher

esp Max

Oct 2nd, 2022
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3. local Window = OrionLib:MakeWindow({Name = tostring("Semi-Catholic ESP"), HidePremium = false, SaveConfig = false})
  4.  
  5. local Tab = Window:MakeTab({
  6. Name = "Main",
  7. Icon = "rbxassetid://4483345998",
  8. PremiumOnly = false
  9. })
  10.  
  11. getgenv().cham = false
  12. getgenv().nameESP = false
  13. getgenv().boxESP = false
  14.  
  15.  
  16. getgenv().esp_loaded = false
  17. getgenv().Visibility = false
  18.  
  19.  
  20. Tab:AddToggle({
  21. Name = "Visual",
  22. Default = getgenv().Visibility,
  23. Callback = function(Value)
  24. if getgenv().esp_loaded == false and Value == true then
  25. getgenv().esp_loaded = true
  26. loadstring(game:HttpGet("https://raw.githubusercontent.com/skatbr/Roblox-Releases/main/A_simple_esp.lua", true))()
  27. end
  28. getgenv().Visibility = Value
  29. end
  30. })
  31.  
  32. Tab:AddToggle({
  33. Name = "Box ESP",
  34. Default = getgenv().Visibility,
  35. Callback = function(Value)
  36. if getgenv().esp_loaded == false and Value == true then
  37. getgenv().esp_loaded = true
  38. loadstring(game:HttpGet("https://raw.githubusercontent.com/skatbr/Roblox-Releases/main/A_simple_esp.lua", true))()
  39. end
  40. getgenv().boxESP = Value
  41. end
  42. })
  43.  
  44.  
  45. Tab:AddToggle({
  46. Name = "Name",
  47. Default = getgenv().Visibility,
  48. Callback = function(Value)
  49. if getgenv().esp_loaded == false and Value == true then
  50. getgenv().esp_loaded = true
  51. loadstring(game:HttpGet("https://raw.githubusercontent.com/skatbr/Roblox-Releases/main/A_simple_esp.lua", true))()
  52. end
  53. getgenv().nameESP = Value
  54. end
  55. })
  56.  
  57.  
  58. Tab:AddToggle({
  59. Name = "Chams",
  60. Default = getgenv().Visibility,
  61. Callback = function(Value)
  62. if getgenv().esp_loaded == false and Value == true then
  63. getgenv().esp_loaded = true
  64. loadstring(game:HttpGet("https://raw.githubusercontent.com/skatbr/Roblox-Releases/main/A_simple_esp.lua", true))()
  65. end
  66. getgenv().cham = Value
  67. end
  68. })
  69.  
  70.  
  71. function SendNote(message : string, time)
  72. OrionLib:MakeNotification({
  73. Name = "Title!",
  74. Content = message,
  75. Image = "rbxassetid://4483345998",
  76. Time = time or 3
  77. })
  78. end
  79.  
  80.  
  81.  
  82. Tab:AddToggle({
  83. Name = "Use Team-Color",
  84. Default = false,
  85. Callback = function(Value)
  86. getgenv().useTeamColor = Value
  87. end
  88. })
  89.  
  90.  
  91.  
  92. local orionion = game:GetService("CoreGui"):FindFirstChild("Orion")
  93.  
  94. local destroygui = Tab:AddButton({
  95. Name = "Destroy GUI",
  96. Callback = function()
  97. orionion:Destroy()
  98. OrionLib:Destroy()
  99.  
  100. wait(1)
  101.  
  102. OrionLib:MakeNotification({
  103. Name = "Removing GUI...",
  104. Content = "GUI is removed!",
  105. Time = 3
  106. })
  107. end
  108. })
  109.  
  110.  
  111.  
  112. OrionLib:Init()
Add Comment
Please, Sign In to add comment