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 = "Lunar Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- --[[
- Name = <string> - The name of the UI.
- HidePremium = <bool> - Whether or not the user details shows Premium status or not.
- SaveConfig = <bool> - Toggles the config saving in the UI.
- ConfigFolder = <string> - The name of the folder where the configs are saved.
- IntroEnabled = <bool> - Whether or not to show the intro animation.
- IntroText = <string> - Text to show in the intro animation.
- IntroIcon = <string> - URL to the image you want to use in the intro animation.
- Icon = <string> - URL to the image you want displayed on the window.
- CloseCallback = <function> - Function to execute when the window is closed.
- ]]
- local Tab = Window:MakeTab({
- Name = "Main",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --[[
- Name = <string> - The name of the tab.
- Icon = <string> - The icon of the tab.
- PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
- ]]
- local Section = Tab:AddSection({
- Name = "Main Area"
- })
- --[[
- Name = <string> - The name of the section.
- ]]
- OrionLib:MakeNotification({
- Name = "Welcome To Lunar!",
- Content = "a Blade Ball Script",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- Tab:AddToggle({
- Name = "Auto Parry",
- Default = false,
- Callback = function()
- loadstring(game:HttpGet(“https://paste.gg/p/anonymous/1734a4ee207844b994df2f36157afacd/files/1e79ac12fc8a47ef8263d5e9d43b7137/raw”))()
- print(Value)
- end
- })
- Tab:AddToggle({
- Name = "Close combat",
- Default = false,
- Callback = function()
- loadstring(game:HttpGet(“https://raw.githubusercontent.com/kidshop4/scriptbladeballk/main/bladeball.lua”))()
- print(Value)
- end
- })
- Tab:AddToggle({
- Name = "Disable AC",
- Default = false,
- Callback = function()
- loadstring(game:HttpGet(‘https://angxlzz.dev/azure.lua’))()
- print(Value)
- end
- })
- Tab:AddToggle({
- Name = "Auto Block ",
- Default = false,
- Callback = function()
- — Auto-Block With Red Circle: loadstring(game:HttpGet(“https://raw.githubusercontent.com/1f0yt/community/main/Circle”))() — Click “X” To Hit (for close battles)
- print(Value)
- end
- })
- Tab:AddToggle({
- Name = "Player esp",
- Default = false,
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/UESP'))()
- print(Value)
- end
- })
- Tab:AddToggle({
- Name = "Auto Open Crate",
- Default = false,
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/KidichiHB/Kidachi/main/Scripts/BladeBall"))()
- print(Value)
- end
- })
- Tab:AddButton({
- Name = "Increase walk speed",
- Callback = function()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
- print("button pressed")
- end
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement