Advertisement
kodiakexploits

Dash

Nov 16th, 2024
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "Dash External", HidePremium = false, SaveConfig = true, ConfigFolder = "DashCE"})
  3.  
  4. local Aimbot = Window:MakeTab({
  5. Name = "Aimbot",
  6. Icon = "rbxassetid://4483345998",
  7. PremiumOnly = false
  8. })
  9.  
  10. local ASection = Aimbot:AddSection({
  11. Name = "Aimbot Settings"
  12. })
  13.  
  14. Aimbot:AddToggle({
  15. Name = "Enable Aimbot",
  16. Default = false,
  17. Callback = function(Value)
  18. print(Value)
  19. end
  20. })
  21.  
  22. Aimbot:AddToggle({
  23. Name = "Enable Aimlock",
  24. Default = false,
  25. Callback = function(Value)
  26. print(Value)
  27. end
  28. })
  29.  
  30. Aimbot:AddSlider({
  31. Name = "Smoothness",
  32. Min = 0,
  33. Max = 100,
  34. Default = 5,
  35. Color = Color3.fromRGB(255,255,255),
  36. Increment = 1,
  37. ValueName = "Aimbot Smoothness",
  38. Callback = function(Value)
  39. print(Value)
  40. end
  41. })
  42.  
  43. local ESP = Window:MakeTab({
  44. Name = "ESP",
  45. Icon = "rbxassetid://4483345998",
  46. PremiumOnly = false
  47. })
  48.  
  49. local ESection = ESP:AddSection({
  50. Name = "ESP Settings"
  51. })
  52.  
  53. ESP:AddButton({
  54. Name = "Box ESP",
  55. Callback = function()
  56. print("button pressed")
  57. end
  58. })
  59.  
  60. ESP:AddButton({
  61. Name = "Tracers",
  62. Callback = function()
  63. print("button pressed")
  64. end
  65. })
  66.  
  67. ESP:AddButton({
  68. Name = "Skeleton ESP",
  69. Callback = function()
  70. print("button pressed")
  71. end
  72. })
  73.  
  74. ESP:AddButton({
  75. Name = "Skull Tracers",
  76. Callback = function()
  77. print("button pressed")
  78. end
  79. })
  80.  
  81. ESP:AddButton({
  82. Name = "BestESP v2",
  83. Callback = function()
  84. print("button pressed")
  85. end
  86. })
  87.  
  88. local Mods = Window:MakeTab({
  89. Name = "Fun",
  90. Icon = "rbxassetid://4483345998",
  91. PremiumOnly = false
  92. })
  93.  
  94. local MSection = Mods:AddSection({
  95. Name = "Fun Settings"
  96. })
  97.  
  98. Mods:AddToggle({
  99. Name = "Wallbang",
  100. Default = false,
  101. Callback = function(Value)
  102. print(Value)
  103. end
  104. })
  105.  
  106. Mods:AddToggle({
  107. Name = "Rapid Fire (ARSENAL)",
  108. Default = false,
  109. Callback = function(Value)
  110. print(Value)
  111. end
  112. })
  113.  
  114. Mods:AddToggle({
  115. Name = "Infinite Ammo (Arsenal, Dahood)",
  116. Default = false,
  117. Callback = function(Value)
  118. print(Value)
  119. end
  120. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement