SumitScripts

(No Key) Blade Ball hub

Jan 5th, 2024
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.79 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://pastebin.com/raw/vff1bQ9F"))()
  2. local Window = Library.CreateLib("Blade ball - SumitScripts's Hub", "DarkTheme")
  3.  
  4. local Tab = Window:NewTab("| Main |")
  5. local Section = Tab:NewSection("Player")
  6. Section:NewButton("Inf Jump", "It's Make you fly", function()
  7. loadstring(game:HttpGet("https://pastebin.com/raw/2wgbZ6Xd"))()
  8. print("Clicked")
  9. end)
  10.  
  11. Section:NewButton("Abmin Script Hub", "idk why I add but use ", function()
  12. loadstring("\108\111\97\100\115\116\114\105\110\103\40\103\97\109\101\58\72\116\116\112\71\101\116\40\34\104\116\116\112\115\58\47\47\114\97\119\46\103\105\116\104\117\98\117\115\101\114\99\111\110\116\101\110\116\46\99\111\109\47\103\48\48\108\88\112\108\111\105\116\101\114\47\103\48\48\108\88\112\108\111\105\116\101\114\47\109\97\105\110\47\70\101\37\50\48\98\121\112\97\115\115\34\44\32\116\114\117\101\41\41\40\41\10")()
  13. print("Clicked")
  14. end)
  15.  
  16. Section:NewSlider("WalkSpeed", "It's Makes U Faster", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  17. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  18. end)
  19.  
  20. Section:NewSlider("JumpPower", "It's Makes u Jumpy", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  21. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  22. end)
  23.  
  24. local Tab = Window:NewTab("Main Mods")
  25. local Section = Tab:NewSection("Scripts")
  26.  
  27. Section:NewButton("Farm Socks", "ButtonInfo", function()
  28. _G.socks = true -- true/false
  29. loadstring(game:HttpGet("https://shz.al/~farm_socks"))()
  30. print("Clicked")
  31. end)
  32.  
  33. Section:NewButton("X7 PARRY", "ButtonInfo", function()
  34. loadstring(game:HttpGet("https://raw.githubusercontent.com/Code4Zaaa/X7Project/main/Game/AutoParryOnly"))()
  35. print("Clicked")
  36. end)
  37.  
  38. Section:NewButton("Opensource autoparry", "ButtonInfo", function()
  39. local Debug = false -- Set this to true if you want my debug output.
  40. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  41. local Players = game:GetService("Players")
  42.  
  43. local Player = Players.LocalPlayer or Players.PlayerAdded:Wait()
  44. local Remotes = ReplicatedStorage:WaitForChild("Remotes", 9e9) -- A second argument in waitforchild what could it mean?
  45. local Balls = workspace:WaitForChild("Balls", 9e9)
  46.  
  47. -- Functions
  48.  
  49. local function print(...) -- Debug print.
  50. if Debug then
  51. warn(...)
  52. end
  53. end
  54.  
  55. local function VerifyBall(Ball) -- Returns nil if the ball isn't a valid projectile; true if it's the right ball.
  56. if typeof(Ball) == "Instance" and Ball:IsA("BasePart") and Ball:IsDescendantOf(Balls) and Ball:GetAttribute("realBall") == true then
  57. return true
  58. end
  59. end
  60.  
  61. local function IsTarget() -- Returns true if we are the current target.
  62. return (Player.Character and Player.Character:FindFirstChild("Highlight"))
  63. end
  64.  
  65. local function Parry() -- Parries.
  66. Remotes:WaitForChild("ParryButtonPress"):Fire()
  67. end
  68.  
  69. -- The actual code
  70.  
  71. Balls.ChildAdded:Connect(function(Ball)
  72. if not VerifyBall(Ball) then
  73. return
  74. end
  75.  
  76. print(`Ball Spawned: {Ball}`)
  77.  
  78. local OldPosition = Ball.Position
  79. local OldTick = tick()
  80.  
  81. Ball:GetPropertyChangedSignal("Position"):Connect(function()
  82. if IsTarget() then -- No need to do the math if we're not being attacked.
  83. local Distance = (Ball.Position - workspace.CurrentCamera.Focus.Position).Magnitude
  84. local Velocity = (OldPosition - Ball.Position).Magnitude -- Fix for .Velocity not working. Yes I got the lowest possible grade in accuplacer math.
  85.  
  86. print(`Distance: {Distance}\nVelocity: {Velocity}\nTime: {Distance / Velocity}`)
  87.  
  88. if (Distance / Velocity) <= 10 then -- Sorry for the magic number. This just works. No, you don't get a slider for this because it's 2am.
  89. Parry()
  90. end
  91. end
  92.  
  93. if (tick() - OldTick >= 1/60) then -- Don't want it to update too quickly because my velocity implementation is aids. Yes, I tried Ball.Velocity. No, it didn't work.
  94. OldTick = tick()
  95. OldPosition = Ball.Position
  96. end
  97. end)
  98. end)
  99. print("Clicked")
  100. end)
  101.  
  102. Section:NewButton("FFJ Hub", "ButtonInfo", function()
  103. --[[
  104. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  105. ]]
  106. loadstring(game:HttpGet("https://raw.githubusercontent.com/FFJ1/Roblox-Exploits/main/scripts/autoparry.lua"))()
  107. print("Clicked")
  108. end)
  109.  
  110. Section:NewButton("Sirius Remastered", "ButtonInfo", function()
  111. --[[
  112. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  113. ]]
  114. loadstring(game:HttpGet("https://raw.githubusercontent.com/xdevslasher/Siriusisbetter/main/gotchaturtle",true))()
  115. print("Clicked")
  116. end)
  117.  
  118. Section:NewButton("Auto Parry No Gui", "ButtonInfo", function()
  119. --[[
  120. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  121. ]]
  122. loadstring(game:HttpGet("https://raw.githubusercontent.com/ForYourHead/AutoParry/main/AutoParryNoGui"))()
  123. print("Clicked")
  124. end)
  125.  
  126. Section:NewButton("CludeHub", "ButtonInfo", function()
  127. --[[
  128. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  129. ]]
  130. loadstring(game:HttpGet("https://raw.githubusercontent.com/CludeHub/AllGame/main/Local-Id-081726986551865381872552"))()
  131. print("Clicked")
  132. end)
  133.  
  134. Section:NewButton("NEXA HUB", "ButtonInfo", function()
  135. --[[
  136. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  137. ]]
  138. loadstring(game:HttpGet("https://raw.githubusercontent.com/ZzzScript/SpectacularHubScript/main/BladeBall"))()
  139. print("Clicked")
  140. end)
  141.  
  142. local Tab = Window:NewTab("Credits")
  143. local Section = Tab:NewSection("Made by SumitScripts")
  144. local Section = Tab:NewSection("Scripter by SumitScripts")
  145. local Section = Tab:NewSection("All Credits Owners In Scripts")
Add Comment
Please, Sign In to add comment