Advertisement
SumitScripts

Untitled

Apr 27th, 2024
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.29 KB | None | 0 0
  1. This For SkireScripts I'm Sorry Your GitHub is gone but i have your 2 Scripts
  2. -- Gun Ball
  3. --[[
  4. its fully open source and no im not sorry for my trash luau skills
  5. also for people this was made by Skire (x6x_0)
  6.  
  7. OUXIE DISCORD SERVER: https://discord.gg/6a3rAf9r8k
  8.  
  9.  
  10.  
  11. .d88888b. d8b 888
  12. d88P" "Y88b Y8P 888
  13. 888 888 888
  14. 888 888 888 888 888 888 888 .d88b. 888
  15. 888 888 888 888 `Y8bd8P' 888 d8P Y8b 888
  16. 888 888 888 888 X88K 888 88888888 Y8P
  17. Y88b. .d88P Y88b 888 .d8""8b. 888 Y8b. "
  18. "Y88888P" "Y88888 888 888 888 "Y8888 888
  19.  
  20.  
  21.  
  22. 888 888 8888888 d888 .d8888b. .d8888b. 8888888
  23. 888 888 888 d8888 d88P Y88b d88P Y88b 888
  24. 888 888 888 888 888 888 888 888 888
  25. 888 .d88b. 8888b. .d88888 .d88b. 888d888 888 888 888 888 888 888 888 888 888
  26. 888 d88""88b "88b d88" 888 d8P Y8b 888P" 888 888 888 888 888 888 888 888 888
  27. 888 888 888 .d888888 888 888 88888888 888 888 Y88 88P 888 888 888 888 888 888
  28. 888 Y88..88P 888 888 Y88b 888 Y8b. 888 888 Y8bd8P 888 d8b Y88b d88P d8b Y88b d88P 888
  29. 88888888 "Y88P" "Y888888 "Y88888 "Y8888 888 8888888 Y88P 8888888 Y8P "Y8888P" Y8P "Y8888P" 8888888
  30.  
  31.  
  32.  
  33. 888 888
  34. 888 888
  35. 888 888
  36. 88888b.d88b. 8888b. .d88888 .d88b. 88888b. 888 888 d8b
  37. 888 "888 "88b "88b d88" 888 d8P Y8b 888 "88b 888 888 Y8P
  38. 888 888 888 .d888888 888 888 88888888 888 888 888 888
  39. 888 888 888 888 888 Y88b 888 Y8b. 888 d88P Y88b 888 d8b
  40. 888 888 888 "Y888888 "Y88888 "Y8888 88888P" "Y88888 Y8P
  41. 888
  42. Y8b d88P
  43. "Y88P"
  44. 888 d8b
  45. 888 Y8P
  46. 888
  47. .d8888b 888 888 888 888d888 .d88b.
  48. 88K 888 .88P 888 888P" d8P Y8b
  49. "Y8888b. 888888K 888 888 88888888 888888
  50. X88 888 "88b 888 888 Y8b.
  51. 88888P' 888 888 888 888 "Y8888
  52.  
  53.  
  54.  
  55. .d88 .d8888b. .d8888b. 88b. 888
  56. d88P" d88P Y88b d88P Y88b "Y88b 888
  57. d88P 888 888 888 Y88b 888
  58. 888 888 888 888d888b. 888 888 888 888 888 888
  59. 888 `Y8bd8P' 888P "Y88b `Y8bd8P' 888 888 888 888
  60. Y88b X88K 888 888 X88K 888 888 d88P Y8P
  61. Y88b. .d8""8b. Y88b d88P .d8""8b. Y88b d88P .d88P "
  62. "Y88 888 888 "Y8888P" 888 888 88888888 "Y8888P" 88P" 888
  63.  
  64. ]]
  65.  
  66. local ouxie = loadstring(game:HttpGet("https://raw.githubusercontent.com/SkireScripts/Ouxie/main/Ouxie%20UI%20v2.lua"))()
  67. ouxie:Window("Ouxie / Gun Ball")
  68. local tab1 = ouxie:NewTab({
  69. TabName = "Main";
  70. IconId = "rbxassetid://7072706318";
  71. })
  72. tab1:Toggle({
  73. Name = "Auto Block (100%)";
  74. Callback = function(bool)
  75. getgenv().auto_block = bool
  76. local function auto()
  77. while true do
  78. if auto_block then
  79. game:GetService("ReplicatedStorage").RemoteEvent:FireServer({
  80. ["name"] = "defense",
  81. ["origin"] = "balltargets"
  82. },{})
  83. else break
  84. end
  85. wait()
  86. end
  87. end
  88. auto()
  89. end;
  90. })
  91. tab1:Input({
  92. Name = "Quest (needs to be completed)";
  93. Defualt = "1/2/3";
  94. Callback = function(raw)
  95. getgenv().quest = tonumber(raw)
  96. print(quest)
  97. end
  98. })
  99. tab1:Toggle({
  100. Name = "INF Gems";
  101. Callback = function(bool)
  102. getgenv().inf_gems = bool
  103. local function auto()
  104. while true do
  105. if inf_gems then
  106. local ohTable1 = {
  107. ["name"] = "redeem",
  108. ["origin"] = "quests"
  109. }
  110. local ohTable2 = {
  111. [1] = getgenv().quest
  112. }
  113.  
  114. game:GetService("ReplicatedStorage").RemoteEvent:FireServer(ohTable1, ohTable2)
  115. game:GetService("ReplicatedStorage").RemoteEvent:FireServer(ohTable1, ohTable2)
  116. game:GetService("ReplicatedStorage").RemoteEvent:FireServer(ohTable1, ohTable2)
  117. else break
  118. end
  119. wait()
  120. end
  121. end
  122. auto()
  123. end;
  124. })
  125.  
  126. -- Blade Soccer don't mind i change your ui lib maybe put it back
  127. -- Fractions
  128.  
  129. getgenv().auto = false
  130. getgenv().ability_spam = false
  131. function set()
  132. while true do
  133. if auto then
  134. local ball = game.Workspace:WaitForChild("Ball")
  135. game:GetService("ReplicatedStorage").Remotes.BlockEvent:FireServer(ball, ball.CFrame)
  136. else break
  137. end
  138. wait()
  139. end
  140. end
  141. function ability()
  142. while true do
  143. if ability_spam then
  144. game:GetService("ReplicatedStorage").Remotes.AbilityEvent:FireServer()
  145. else break
  146. end
  147. wait()
  148. end
  149. end
  150.  
  151. -- Start , Ui
  152. local Library = loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
  153.  
  154. local Window = Library:NewWindow("Blade Soccer ⚽")
  155.  
  156. local Section = Window:NewSection("main")
  157. Section:CreateToggle("Spam Ability but (NoCD)", function(value)
  158. getgenv().ability_spam = bool
  159. ability()
  160. print(value)
  161. end)
  162.  
  163. Section:CreateToggle("inf Block range", function(value)
  164. getgenv().auto = bool
  165. set()
  166. print(value)
  167. end)
  168.  
  169. Section:CreateButton("Speed", function()
  170. 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
  171. print("Clicked")
  172. end)
  173.  
  174. Section:CreateButton("inf jump", function()
  175. --script made by Youtube: MrGabbe. Discord: Mr_G_Curry #6982
  176. local infjmp = true
  177. game:GetService("UserInputService").jumpRequest:Connect(function()
  178. if infjmp then
  179. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass"Humanoid":ChangeState("Jumping")
  180. end
  181. end)
  182. print("Clicked")
  183. end)
  184.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement