Advertisement
Joey6555

Blade balls

Apr 10th, 2024
174
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 = "Lunar Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  4.  
  5. --[[
  6. Name = <string> - The name of the UI.
  7. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  8. SaveConfig = <bool> - Toggles the config saving in the UI.
  9. ConfigFolder = <string> - The name of the folder where the configs are saved.
  10. IntroEnabled = <bool> - Whether or not to show the intro animation.
  11. IntroText = <string> - Text to show in the intro animation.
  12. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  13. Icon = <string> - URL to the image you want displayed on the window.
  14. CloseCallback = <function> - Function to execute when the window is closed.
  15. ]]
  16.  
  17. local Tab = Window:MakeTab({
  18. Name = "Main",
  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.  
  29. local Section = Tab:AddSection({
  30. Name = "Main Area"
  31. })
  32.  
  33. --[[
  34. Name = <string> - The name of the section.
  35. ]]
  36.  
  37. OrionLib:MakeNotification({
  38. Name = "Welcome To Lunar!",
  39. Content = "a Blade Ball Script",
  40. Image = "rbxassetid://4483345998",
  41. Time = 5
  42. })
  43.  
  44. Tab:AddToggle({
  45. Name = "Auto Parry",
  46. Default = false,
  47. Callback = function()
  48. loadstring(game:HttpGet(“https://paste.gg/p/anonymous/1734a4ee207844b994df2f36157afacd/files/1e79ac12fc8a47ef8263d5e9d43b7137/raw”))()
  49. print(Value)
  50. end
  51. })
  52.  
  53. Tab:AddToggle({
  54. Name = "Close combat",
  55. Default = false,
  56. Callback = function()
  57. loadstring(game:HttpGet(“https://raw.githubusercontent.com/kidshop4/scriptbladeballk/main/bladeball.lua”))()
  58. print(Value)
  59. end
  60. })
  61. Tab:AddToggle({
  62. Name = "Disable AC",
  63. Default = false,
  64. Callback = function()
  65. loadstring(game:HttpGet(‘https://angxlzz.dev/azure.lua’))()
  66. print(Value)
  67. end
  68. })
  69. Tab:AddToggle({
  70. Name = "Auto Block ",
  71. Default = false,
  72. Callback = function()
  73. — Auto-Block With Red Circle: loadstring(game:HttpGet(“https://raw.githubusercontent.com/1f0yt/community/main/Circle”))() — Click “X” To Hit (for close battles)
  74. print(Value)
  75. end
  76. })
  77. Tab:AddToggle({
  78. Name = "Player esp",
  79. Default = false,
  80. Callback = function()
  81. loadstring(game:HttpGet('https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/UESP'))()
  82. print(Value)
  83. end
  84. })
  85. Tab:AddToggle({
  86. Name = "Auto Open Crate",
  87. Default = false,
  88. Callback = function()
  89. loadstring(game:HttpGet("https://raw.githubusercontent.com/KidichiHB/Kidachi/main/Scripts/BladeBall"))()
  90. print(Value)
  91. end
  92. })
  93. Tab:AddButton({
  94. Name = "Increase walk speed",
  95. Callback = function()
  96. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
  97. print("button pressed")
  98. end
  99. })
  100.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement