Advertisement
SumitScripts

Untitled

Mar 10th, 2024
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.04 KB | None | 0 0
  1. wait(1.2)
  2.  
  3. game.StarterGui:SetCore("SendNotification", {
  4.  
  5. Title = "Welcome"; -- the title (ofc)
  6.  
  7. Text = "Script Made By SumitScripts"; -- what the text says (ofc)
  8.  
  9. Icon = ""; -- the image if u want.
  10.  
  11. Duration = 5; -- how long the notification should in secounds
  12.  
  13. })
  14.  
  15.  
  16. local lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/acsu123/HOHO_H/main/hoho_lib.lua", true))()
  17. local win = lib:Window("Script Made by SumitScripts","Blade Ball (OP)",Color3.new(0.333333, 0.666667, 1))
  18. local tab = win:Tab("Main")
  19. local label = tab:Label("Label", properties) --properties: {["Visible"] = flase}
  20. label:NewLabel("OP Win Every Game easily", properties)
  21.  
  22. tab:Line()
  23. tab:Button("Auto OP Parry", function()
  24. getgenv().config = getgenv().config or {
  25. hit_time = 0.5, -- // recommended 0.25 to 0.75 \ --
  26.  
  27. mode = 'Always', -- // Hold , Toggle , Always \ --
  28. deflect_type = 'Remote', -- // Key Press , Remote \ --
  29. notifications = true,
  30. keybind = Enum.KeyCode.V
  31. }
  32.  
  33. loadstring(game:HttpGet("https://raw.githubusercontent.com/Hosvile/Refinement/main/MC%3ABlade%20Ball%20Parry%20V4.0.0",true))()
  34. print("clicked")
  35. end)
  36.  
  37. tab:Line()
  38. tab:Button("Hold to Parry", function()
  39. getgenv().SpamSpeed = 1
  40. loadstring(game:HttpGet("https://raw.githubusercontent.com/Hosvile/Refinement/main/MC%3ABlade%20Ball%20Spam",true))()
  41. print("clicked")
  42. end)
  43.  
  44. tab:Line()
  45. tab:Button("Auto Clicker", function()
  46. loadstring(game:HttpGet("https://shz.al/~Fujibladeball"))()
  47. print("clicked")
  48. end)
  49.  
  50. tab:Line()
  51. tab:Button("Auto Fram", function()
  52. loadstring(game:HttpGet("https://raw.githubusercontent.com/kmmwhocare/Crazzy-Hub/main/Blade%20Ball"))()
  53. print("clicked")
  54. end)
  55.  
  56. local tab = win:Tab("Movement")
  57. local label = tab:Label("Label", properties) --properties: {["Visible"] = flase}
  58. label:NewLabel("OP SPRED", properties)
  59.  
  60. tab:Line()
  61. tab:Button("Speed", function()
  62. -- Variables
  63. local speedValue = 16 -- Default speed value
  64.  
  65. -- Create GUI
  66. local gui = Instance.new("ScreenGui")
  67. gui.Name = "JN HH Gaming"
  68. gui.Parent = game.Players.LocalPlayer.PlayerGui
  69.  
  70. local frame = Instance.new("Frame")
  71. frame.Name = "SpeedFrame"
  72. frame.Size = UDim2.new(0, 200, 0, 100)
  73. frame.Position = UDim2.new(0, 10, 0, 10)
  74. frame.BackgroundColor3 = Color3.new(0, 0, 0)
  75. frame.BackgroundTransparency = 0.5
  76. frame.Parent = gui
  77.  
  78. local speedLabel = Instance.new("TextLabel")
  79. speedLabel.Name = "SpeedLabel"
  80. speedLabel.Size = UDim2.new(0, 180, 0, 30)
  81. speedLabel.Position = UDim2.new(0, 10, 0, 10)
  82. speedLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  83. speedLabel.TextColor3 = Color3.new(1, 1, 1)
  84. speedLabel.TextSize = 18
  85. speedLabel.Text = "Speed: " .. speedValue
  86. speedLabel.Parent = frame
  87.  
  88. local decreaseButton = Instance.new("TextButton")
  89. decreaseButton.Name = "DecreaseButton"
  90. decreaseButton.Size = UDim2.new(0, 50, 0, 30)
  91. decreaseButton.Position = UDim2.new(0, 10, 0, 50)
  92. decreaseButton.BackgroundColor3 = Color3.new(0, 1, 0)
  93. decreaseButton.TextColor3 = Color3.new(1, 1, 1)
  94. decreaseButton.TextSize = 14
  95. decreaseButton.Text = "-"
  96. decreaseButton.Parent = frame
  97.  
  98. local increaseButton = Instance.new("TextButton")
  99. increaseButton.Name = "IncreaseButton"
  100. increaseButton.Size = UDim2.new(0, 50, 0, 30)
  101. increaseButton.Position = UDim2.new(0, 140, 0, 50)
  102. increaseButton.BackgroundColor3 = Color3.new(0, 1, 0)
  103. increaseButton.TextColor3 = Color3.new(1, 1, 1)
  104. increaseButton.TextSize = 14
  105. increaseButton.Text = "+"
  106. increaseButton.Parent = frame
  107.  
  108. -- Functions
  109. local function updateSpeedLabel()
  110. speedLabel.Text = "Speed: " .. speedValue
  111. end
  112.  
  113. local function decreaseSpeed()
  114. if speedValue > 1 then
  115. speedValue = speedValue - 1
  116. updateSpeedLabel()
  117. end
  118. end
  119.  
  120. local function increaseSpeed()
  121. speedValue = speedValue + 1
  122. updateSpeedLabel()
  123. end
  124.  
  125. local function onDecreaseButtonClicked()
  126. decreaseSpeed()
  127. end
  128.  
  129. local function onIncreaseButtonClicked()
  130. increaseSpeed()
  131. end
  132.  
  133. -- Event connections
  134. decreaseButton.MouseButton1Click:Connect(onDecreaseButtonClicked)
  135. increaseButton.MouseButton1Click:Connect(onIncreaseButtonClicked)
  136.  
  137. -- Main loop
  138. while true do
  139. -- Modify the speed of the character (you need to replace this with the appropriate code for your specific game)
  140. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speedValue
  141. wait(0.1) -- Adjust the wait time as desired
  142. end
  143. print("clicked")
  144. end)
  145.  
  146. tab:Line()
  147. tab:Button("infjump", function()
  148. --script made by Youtube: MrGabbe. Discord: Mr_G_Curry #6982
  149. local infjmp = true
  150. game:GetService("UserInputService").jumpRequest:Connect(function()
  151. if infjmp then
  152. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass"Humanoid":ChangeState("Jumping")
  153. end
  154. end)
  155. print("clicked")
  156. end)
  157.  
  158. tab:Line()
  159. tab:Button("fly v3", function()
  160. loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))()
  161. print("clicked")
  162. end)
  163.  
  164. tab:Line()
  165. tab:Button("fps booster", function()
  166. -- Made by RIP#6666
  167. _G.Settings = {
  168. Players = {
  169. ["Ignore Me"] = true, -- Ignore your Character
  170. ["Ignore Others"] = true -- Ignore other Characters
  171. },
  172. Meshes = {
  173. Destroy = false, -- Destroy Meshes
  174. LowDetail = true -- Low detail meshes (NOT SURE IT DOES ANYTHING)
  175. },
  176. Images = {
  177. Invisible = true, -- Invisible Images
  178. LowDetail = false, -- Low detail images (NOT SURE IT DOES ANYTHING)
  179. Destroy = false, -- Destroy Images
  180. },
  181. ["No Particles"] = true, -- Disables all ParticleEmitter, Trail, Smoke, Fire and Sparkles
  182. ["No Camera Effects"] = true, -- Disables all PostEffect's (Camera/Lighting Effects)
  183. ["No Explosions"] = true, -- Makes Explosion's invisible
  184. ["No Clothes"] = true, -- Removes Clothing from the game
  185. ["Low Water Graphics"] = true, -- Removes Water Quality
  186. ["No Shadows"] = true, -- Remove Shadows
  187. ["Low Rendering"] = true, -- Lower Rendering
  188. ["Low Quality Parts"] = true -- Lower quality parts
  189. }
  190. loadstring(game:HttpGet("https://raw.githubusercontent.com/CasperFlyModz/discord.gg-rips/main/FPSBooster.lua"))()
  191. print("clicked")
  192. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement