Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "Dash External", HidePremium = false, SaveConfig = true, ConfigFolder = "DashCE"})
- local Aimbot = Window:MakeTab({
- Name = "Aimbot",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local ASection = Aimbot:AddSection({
- Name = "Aimbot Settings"
- })
- Aimbot:AddToggle({
- Name = "Enable Aimbot",
- Default = false,
- Callback = function(Value)
- print(Value)
- end
- })
- Aimbot:AddToggle({
- Name = "Enable Aimlock",
- Default = false,
- Callback = function(Value)
- print(Value)
- end
- })
- Aimbot:AddSlider({
- Name = "Smoothness",
- Min = 0,
- Max = 100,
- Default = 5,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "Aimbot Smoothness",
- Callback = function(Value)
- print(Value)
- end
- })
- local ESP = Window:MakeTab({
- Name = "ESP",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local ESection = ESP:AddSection({
- Name = "ESP Settings"
- })
- ESP:AddButton({
- Name = "Box ESP",
- Callback = function()
- print("button pressed")
- end
- })
- ESP:AddButton({
- Name = "Tracers",
- Callback = function()
- print("button pressed")
- end
- })
- ESP:AddButton({
- Name = "Skeleton ESP",
- Callback = function()
- print("button pressed")
- end
- })
- ESP:AddButton({
- Name = "Skull Tracers",
- Callback = function()
- print("button pressed")
- end
- })
- ESP:AddButton({
- Name = "BestESP v2",
- Callback = function()
- print("button pressed")
- end
- })
- local Mods = Window:MakeTab({
- Name = "Fun",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local MSection = Mods:AddSection({
- Name = "Fun Settings"
- })
- Mods:AddToggle({
- Name = "Wallbang",
- Default = false,
- Callback = function(Value)
- print(Value)
- end
- })
- Mods:AddToggle({
- Name = "Rapid Fire (ARSENAL)",
- Default = false,
- Callback = function(Value)
- print(Value)
- end
- })
- Mods:AddToggle({
- Name = "Infinite Ammo (Arsenal, Dahood)",
- Default = false,
- Callback = function(Value)
- print(Value)
- end
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement