Advertisement
Cra-Z-Gaming

BladeBall Script (visual)

Sep 17th, 2024 (edited)
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.33 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2.  
  3. -- Loading the library
  4. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Robojini/Tuturial_UI_Library/main/UI_Template_1"))()
  5.  
  6. -- Creating the main window
  7. local Window = Library.CreateLib("NoScope", "RJTheme8")
  8.  
  9. -- AutoParry Tab
  10. local AutoParryTab = Window:NewTab("AutoParry")
  11. local AutoParrySection = AutoParryTab:NewSection("AutoParry")
  12.  
  13. AutoParrySection:NewDropdown("AutoParry Mods", "insert description here", {"AutoBlock 1", "AutoBlock 2", "AutoBlock 3"}, function(currentOption)
  14.     if currentOption == "AutoBlock 1" then
  15.         loadstring(game:HttpGet("https://raw.githubusercontent.com/1f0yt/community/main/AutoBlock"))()
  16.     elseif currentOption == "Autoblock 2" then
  17.         loadstring(game:HttpGet("https://raw.githubusercontent.com/1f0yt/community/main/autoparrybest"))()
  18.     elseif currentOption == "AutoBlock 3" then
  19.         loadstring(game:HttpGet("https://api.luarmor.net/files/v3/loaders/b964c4456aeff691784ffaaa181ab423.lua"))()
  20.     end
  21. end)
  22.  
  23. -- Random Scripts Tab
  24. local RandomScriptsTab = Window:NewTab("Random Scripts")
  25. local RandomScriptsSection = RandomScriptsTab:NewSection("Random Scripts")
  26.  
  27. RandomScriptsSection:NewButton("Universal Fly", "Universal Fly Maybe not work", function()
  28.     loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))()
  29. end)
  30.  
  31. RandomScriptsSection:NewSlider("SpeedHack", "Speed hack for any game", 500, 0, function(s)
  32.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  33. end)
  34.  
  35. RandomScriptsSection:NewSlider("JumpPower", "Jump hack for any game", 500, 0, function(s)
  36.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  37. end)
  38.  
  39. RandomScriptsSection:NewSlider("Gravity", "Gravity Hack for any game", 500, 0, function(s)
  40.     game.workspace.Gravity = s
  41. end)
  42.  
  43. RandomScriptsSection:NewButton("Teleport", "Teleporter for any game", function()
  44.     loadstring(game:HttpGet("https://pastebin.com/raw/AbDM2er1"))()
  45. end)
  46.  
  47. RandomScriptsSection:NewButton("Kat", "Aimbot", function()
  48.     loadstring(game:HttpGet("https://raw.githubusercontent.com/MrPectable/MrPectableSource/main/v1.lua"))()
  49. end)
  50.  
  51. -- Donation Tab
  52. local DonationTab = Window:NewTab("Donation")
  53. local DonationSection = DonationTab:NewSection("Support Us")
  54.  
  55. DonationSection:NewLabel("Cash App Name: $vlad118")
  56.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement