Advertisement
SumitScripts

SumitScripts Hub

Mar 16th, 2024 (edited)
10,088
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.86 KB | None | 0 0
  1. game.StarterGui:SetCore("SendNotification", {
  2.  
  3. Title = "Thanks for using"; -- the title (ofc)
  4.  
  5. Text = "Auto Parry 100% Mobile/PC,"; -- what the text says (ofc)
  6.  
  7. Icon = ""; -- the image if u want.
  8.  
  9. Duration = 5; -- how long the notification should in secounds
  10.  
  11. })
  12.  
  13. wait(1.2)
  14.  
  15. game.StarterGui:SetCore("SendNotification", {
  16.  
  17. Title = "SumitScripts Hub"; -- the title (ofc)
  18.  
  19. Text = "You Can Think My Script Is Better Than Bedol Hub"; -- what the text says (ofc)
  20.  
  21. Icon = ""; -- the image if u want.
  22.  
  23. Duration = 5; -- how long the notification should in secounds
  24.  
  25. })
  26.  
  27.  
  28. local Library = loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
  29.  
  30. local Window = Library:NewWindow("🌠SumitScripts Hub⚔️")
  31. local Section = Window:NewSection("⚔️ Main")
  32.  
  33. Section:CreateToggle("Auto Parry(GOD)", function(value)
  34. getgenv().config = getgenv().config or {
  35. hit_time = 0.5, -- // recommended 0.25 to 0.75 \ --
  36.  
  37. mode = 'Always', -- // Hold , Toggle , Always \ --
  38. deflect_type = 'Remote', -- // Key Press , Remote \ --
  39. notifications = true,
  40. keybind = Enum.KeyCode.V
  41. }
  42.  
  43. loadstring(game:HttpGet("https://raw.githubusercontent.com/Hosvile/Refinement/main/MC%3ABlade%20Ball%20Parry%20V4.0.0",true))()
  44. print(value)
  45. end)
  46.  
  47. Section:CreateToggle("Auto Clash(GOD)", function(value)
  48. loadstring(game:HttpGet(('https://scriptblox.com/raw/Blade-Ball-Opensource-autoparry-8123'),true))()
  49. print(value)
  50. end)
  51.  
  52. Section:CreateToggle("Circle X7", function(value)
  53. loadstring(game:HttpGet("https://raw.githubusercontent.com/Code4Zaaa/X7Project/main/Game/AutoParryOnly"))()
  54. print(value)
  55. end)
  56.  
  57. Section:CreateButton("OP Manual Spam", function()
  58. local gui, frame, button = Instance.new("ScreenGui", game.CoreGui), Instance.new("Frame"), Instance.new("TextButton")
  59. gui.ResetOnSpawn = false
  60. frame.Size, frame.Position, frame.BackgroundColor3, frame.BorderSizePixel, frame.Active, frame.Draggable, frame.Parent = UDim2.new(0, 150, 0, 75), UDim2.new(0, 10, 0, 10), Color3.new(0, 0, 0), 0, true, true, gui
  61. button.Text, button.Size, button.Position, button.BackgroundColor3, button.BorderColor3, button.BorderSizePixel, button.Font, button.TextColor3, button.TextSize, button.Parent = "Manual spam", UDim2.new(1, -20, 1, -20), UDim2.new(0, 10, 0, 10), Color3.new(0, 0, 0), Color3.new(), 2, Enum.Font.SourceSans, Color3.new(1, 1, 1), 16, frame
  62.  
  63. local activated = false
  64.  
  65. local function toggle()
  66. activated, button.Text = not activated, activated and "Off" or "On"
  67.  
  68. while activated do
  69. local args = {1.5, CFrame.new(-254.29, 112.14, -119.27) * CFrame.Angles(-2.03, 0.57, 2.31), {["2617721424"] = Vector3.new(-273.40, -724.80, -20.92)}, {910, 154}}
  70. game:GetService("ReplicatedStorage").Remotes.ParryAttempt:FireServer(unpack(args))
  71. game:GetService("RunService").Heartbeat:Wait()
  72. button.BorderColor3 = Color3.new(math.random(), math.random(), math.random())
  73. end
  74. end
  75.  
  76. local function showNotification()
  77. game.StarterGui:SetCore("SendNotification", {Title = "Manual Spam", Text = "Made By SumitScripts", Duration = 5})
  78. end
  79.  
  80. button.MouseButton1Click:Connect(function()
  81. toggle()
  82. showNotification()
  83. end)
  84. print("Clicked")
  85. end)
  86.  
  87. Section:CreateButton("Hold to Parry", function()
  88. getgenv().SpamSpeed = 1
  89. loadstring(game:HttpGet("https://raw.githubusercontent.com/Hosvile/Refinement/main/MC%3ABlade%20Ball%20Spam",true))()
  90. print("Clicked")
  91. end)
  92.  
  93. Section:CreateToggle("Player Esp", function(value)
  94. local Players = game:GetService("Players")
  95. local RunService = game:GetService("RunService")
  96.  
  97. local function createBox()
  98. local box = Instance.new("BoxHandleAdornment")
  99. box.Size = Vector3.new(4, 7, 2)
  100. box.Color3 = Color3.new(1, 0, 0)
  101. box.Transparency = 0.5
  102. box.ZIndex = 5
  103. return box
  104. end
  105.  
  106. local function updateEsp(player, box)
  107. local character = player.Character
  108. if character and character:FindFirstChild("HumanoidRootPart") then
  109. box.Visible = true
  110. box.Adornee = character.HumanoidRootPart
  111. box.Parent = character.HumanoidRootPart
  112. else
  113. box.Visible = false
  114. box.Adornee = nil
  115. box.Parent = nil
  116. end
  117. end
  118.  
  119. local function onPlayerAdded(player)
  120. local box = createBox()
  121. updateEsp(player, box)
  122. player.CharacterAdded:Connect(function()
  123. updateEsp(player, box)
  124. end)
  125. player.CharacterRemoving:Connect(function()
  126. updateEsp(player, box)
  127. end)
  128. end
  129.  
  130. for _, player in ipairs(Players:GetPlayers()) do
  131. onPlayerAdded(player)
  132. end
  133.  
  134. Players.PlayerAdded:Connect(function(player)
  135. onPlayerAdded(player)
  136. end)
  137.  
  138. RunService.RenderStepped:Connect(function()
  139. for _, player in ipairs(Players:GetPlayers()) do
  140. updateEsp(player)
  141. end
  142. end)
  143. print(value)
  144. end)
  145.  
  146. local Section = Window:NewSection("⏩ Movement")
  147.  
  148. Section:CreateButton("Speed up", function()
  149. game.StarterGui:SetCore("SendNotification", { Title = "Strongest Battleground Script Loaded"; Text = "Made by JN HH Gaming. Subscribe him on youtube"; Icon = ""; Duration = 20; }) function isNumber(str) if tonumber(str) ~= nil or str == 'inf' then return true end end local tspeed = 1 local hb = game:GetService("RunService").Heartbeat local tpwalking = true local player = game:GetService("Players") local lplr = player.LocalPlayer local chr = lplr.Character local hum = chr and chr:FindFirstChildWhichIsA("Humanoid") while tpwalking and hb:Wait() and chr and hum and hum.Parent do if hum.MoveDirection.Magnitude > 0 then if tspeed and isNumber(tspeed) then chr:TranslateBy(hum.MoveDirection * tonumber(tspeed)) else chr:TranslateBy(hum.MoveDirection) end end end
  150. print("Clicked")
  151. end)
  152.  
  153. Section:CreateButton("inf jump", function()
  154. --script made by Youtube: MrGabbe. Discord: Mr_G_Curry #6982
  155. local infjmp = true
  156. game:GetService("UserInputService").jumpRequest:Connect(function()
  157. if infjmp then
  158. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass"Humanoid":ChangeState("Jumping")
  159. end
  160. end)
  161. print("Clicked")
  162. end)
  163.  
  164. Section:CreateButton("fly v3", function()
  165. loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))()
  166. print("Clicked")
  167. end)
  168.  
  169. local Section = Window:NewSection("⚙️ Settings")
  170.  
  171. Section:CreateButton("Fps booster", function()
  172. -- Made by RIP#6666
  173. _G.Settings = {
  174. Players = {
  175. ["Ignore Me"] = true, -- Ignore your Character
  176. ["Ignore Others"] = true -- Ignore other Characters
  177. },
  178. Meshes = {
  179. Destroy = false, -- Destroy Meshes
  180. LowDetail = true -- Low detail meshes (NOT SURE IT DOES ANYTHING)
  181. },
  182. Images = {
  183. Invisible = true, -- Invisible Images
  184. LowDetail = false, -- Low detail images (NOT SURE IT DOES ANYTHING)
  185. Destroy = false, -- Destroy Images
  186. },
  187. ["No Particles"] = true, -- Disables all ParticleEmitter, Trail, Smoke, Fire and Sparkles
  188. ["No Camera Effects"] = true, -- Disables all PostEffect's (Camera/Lighting Effects)
  189. ["No Explosions"] = true, -- Makes Explosion's invisible
  190. ["No Clothes"] = true, -- Removes Clothing from the game
  191. ["Low Water Graphics"] = true, -- Removes Water Quality
  192. ["No Shadows"] = true, -- Remove Shadows
  193. ["Low Rendering"] = true, -- Lower Rendering
  194. ["Low Quality Parts"] = true -- Lower quality parts
  195. }
  196. loadstring(game:HttpGet("https://raw.githubusercontent.com/CasperFlyModz/discord.gg-rips/main/FPSBooster.lua"))()
  197. print("Clicked")
  198. end)
  199.  
  200. Section:CreateButton("infinity Yield", function()
  201. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  202. print("Clicked")
  203. end)
  204.  
  205. local Section = Window:NewSection("Credits")
  206.  
  207. Section:CreateButton("By SumitScripts", function()
  208. print("Clicked")
  209. end)
  210.  
  211. Section:CreateButton("YT: SumitScripts", function()
  212. print("Clicked")
  213. end)
  214.  
  215. Section:CreateButton("ScriptBlox: SumitScripts", function()
  216. print("Clicked")
  217. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement