Advertisement
su_my_dck_nga

Untitled

Aug 7th, 2023
256
-1
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.01 KB | None | 0 1
  1. --E-xploits
  2. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  3. local Window = OrionLib:MakeWindow({Name = "E-xploits", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  4.  
  5. IntroText= "Welcome"
  6. --[[
  7. Name = <string> - The name of the UI.
  8. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  9. SaveConfig = <bool> - Toggles the config saving in the UI.
  10. ConfigFolder = <string> - The name of the folder where the configs are saved.
  11. IntroEnabled = <bool> - Whether or not to show the intro animation.
  12. IntroText = <string> - Text to show in the intro animation.
  13. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  14. Icon = <string> - URL to the image you want displayed on the window.
  15. CloseCallback = <function> - Function to execute when the window is closed.
  16. ]]
  17. local Tab = Window:MakeTab({
  18. Name = "LocalPlayer",
  19. Icon = "rbxassetid://4483345998",
  20. PremiumOnly = false
  21. })
  22.  
  23. --[[
  24. Name = <string> - The name of the tab.
  25. Icon = <string> - The icon of the tab.
  26. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  27. ]]
  28. Tab:AddTextbox({
  29. Name = "Walkspeed",
  30. Default = "16",
  31. TextDisappear = true,
  32. Callback = function(Value)
  33. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
  34. print(Value)
  35. end
  36. })
  37.  
  38. --[[
  39. Name = <string> - The name of the textbox.
  40. Default = <string> - The default value of the textbox.
  41. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  42. Callback = <function> - The function of the textbox.
  43. ]]
  44. Tab:AddTextbox({
  45. Name = "JumpPower",
  46. Default = "50",
  47. TextDisappear = true,
  48. Callback = function(Value)
  49. game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
  50. print(Value)
  51. end
  52. })
  53.  
  54. --[[
  55. Name = <string> - The name of the textbox.
  56. Default = <string> - The default value of the textbox.
  57. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  58. Callback = <function> - The function of the textbox.
  59. ]]
  60. local Tab = Window:MakeTab({
  61. Name = "Da hood",
  62. Icon = "rbxassetid://4483345998",
  63. PremiumOnly = false
  64. })
  65.  
  66. --[[
  67. Name = <string> - The name of the tab.
  68. Icon = <string> - The icon of the tab.
  69. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  70. ]]
  71. local Section = Tab:AddSection({
  72. Name = "Scripts"
  73. })
  74.  
  75. --[[
  76. Name = <string> - The name of the section.
  77. ]]
  78. OrionLib:MakeNotification({
  79. Name = "E-xploits executed",
  80. Content = "Son them",
  81. Image = "rbxassetid://4483345998",
  82. Time = 5
  83. })
  84.  
  85. --[[
  86. Title = <string> - The title of the notification.
  87. Content = <string> - The content of the notification.
  88. Image = <string> - The icon of the notification.
  89. Time = <number> - The duration of the notfication.
  90. ]]
  91. Tab:AddButton({
  92. Name = "Arctic",
  93. Callback = function()
  94. loadstring(game:HttpGet("https://polarsblade.xyz/Arctic/Arctic.txt"))()
  95. print("Arctic Executed!")
  96. end
  97. })
  98.  
  99. --[[
  100. Name = <string> - The name of the button.
  101. Callback = <function> - The function of the button.
  102. ]]
  103. Tab:AddButton({
  104. Name = "Pluto",
  105. Callback = function()
  106. loadstring(game:HttpGet('https://raw.githubusercontent.com/Scrvpter/Pluto/Lua/Loader.Lua', true))()
  107. print("Pluto Executed!")
  108. end
  109. })
  110.  
  111. --[[
  112. Name = <string> - The name of the button.
  113. Callback = <function> - The function of the button.
  114. ]]
  115. Tab:AddButton({
  116. Name = "SwagMode",
  117. Callback = function()
  118. loadstring(game:HttpGet('https://raw.githubusercontent.com/lerkermer/lua-projects/master/SwagModeV002'))()
  119. print("SwagMode Executed!")
  120. end
  121. })
  122.  
  123. --[[
  124. Name = <string> - The name of the button.
  125. Callback = <function> - The function of the button.
  126. ]]
  127. Tab:AddButton({
  128. Name = "Zinc Hub",
  129. Callback = function()
  130. loadstring(game:HttpGet("https://raw.githubusercontent.com/Zinzs/luascripting/main/canyoutellitsadahoodscriptornot.lua"))()
  131. print("Zinc Hub Executed!")
  132. end
  133. })
  134.  
  135. --[[
  136. Name = <string> - The name of the button.
  137. Callback = <function> - The function of the button.
  138. ]]
  139. Tab:AddButton({
  140. Name = "RayCodex",
  141. Callback = function()
  142. loadstring(game:GetObjects("rbxassetid://5812737894")[1].Source)()
  143. print("RayCodex Executed!")
  144. end
  145. })
  146.  
  147. --[[
  148. Name = <string> - The name of the button.
  149. Callback = <function> - The function of the button.
  150. ]]
  151. Tab:AddButton({
  152. Name = "Faded",
  153. Callback = function()
  154. loadstring(game:HttpGet("https://raw.githubusercontent.com/NighterEpic/Faded/main/YesEpic", true))()
  155. print("Faded Executed!")
  156. end
  157. })
  158.  
  159. --[[
  160. Name = <string> - The name of the button.
  161. Callback = <function> - The function of the button.
  162. ]]
  163. Tab:AddButton({
  164. Name = "VinGui",
  165. Callback = function()
  166. loadstring(game:HttpGet("https://pastebin.com/raw/CYHWCgUj"))()
  167. print("VinGui Executed!")
  168. end
  169. })
  170.  
  171. --[[
  172. Name = <string> - The name of the button.
  173. Callback = <function> - The function of the button.
  174. ]]
  175. Tab:AddButton({
  176. Name = "Kals Lock",
  177. Callback = function()
  178. loadstring(game:HttpGet("https://pastebin.com/raw/pRnBkKjz"))()
  179. print("Kim skidded Executed!")
  180. end
  181. })
  182.  
  183. --[[
  184. Name = <string> - The name of the button.
  185. Callback = <function> - The function of the button.
  186. ]]
  187. Tab:AddButton({
  188. Name = "MoonGod v2",
  189. Callback = function()
  190. loadstring(game:HttpGet("https://raw.githubusercontent.com/Ryzzchips/MOON-GOD-SCRIPTS/main/Ryzzchips%20tool"))()
  191. print("moongodv2 Executed!")
  192. end
  193. })
  194.  
  195. --[[
  196. Name = <string> - The name of the button.
  197. Callback = <function> - The function of the button.
  198. ]]
  199. Tab:AddButton({
  200. Name = "Rage trace lock",
  201. Callback = function()
  202. loadstring(game:HttpGet("https://raw.githubusercontent.com/Ryzzchips/SubtoRyzzchips/6942334039b725b3ea380aaa7959949f938c2dc9/obf_swVYM0h5h3Rk75C9yprMgKc2ER64968pH0zAy2E30o3H3smBe01xnvZNwrm6oDYo.lua.txt", true))()
  203. print("RyzzChipz Executed!")
  204. end
  205. })
  206.  
  207. --[[
  208. Name = <string> - The name of the button.
  209. Callback = <function> - The function of the button.
  210. ]]
  211. Tab:AddButton({
  212. Name = "Dx9",
  213. Callback = function()
  214. loadstring(game:HttpGet('https://raw.githubusercontent.com/DX9user-renpy/DX9WARE/main/Private/UI/Lib/script.lua'))()
  215. print("Dx9 Executed!")
  216. end
  217. })
  218.  
  219. --[[
  220. Name = <string> - The name of the button.
  221. Callback = <function> - The function of the button.
  222. ]]
  223. Tab:AddButton({
  224. Name = "Anti lock (Z to enable)",
  225. Callback = function()
  226. loadstring(game:HttpGet(('https://raw.githubusercontent.com/AvianProjects/Dahood/main/AntilockerV2'),true))()
  227. print("Anti Executed!")
  228. end
  229. })
  230.  
  231. --[[
  232. Name = <string> - The name of the button.
  233. Callback = <function> - The function of the button.
  234. ]]
  235. Tab:AddButton({
  236. Name = "Speed",
  237. Callback = function()
  238. getgenv().Speed = true
  239. getgenv().FakeMacro = false
  240. loadstring(game:HttpGet("https://raw.githubusercontent.com/Allvideo/nukermode/main/Kit%20tools.txt"))()
  241. print("Speed Executed!")
  242. end
  243. })
  244.  
  245. --[[
  246. Name = <string> - The name of the button.
  247. Callback = <function> - The function of the button.
  248. ]]
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement