SplashExploits

HOOPZ DEMO SCRIPT (MADE BY SplashExploits(AKA ME) and TactBaon#1724)

Sep 30th, 2021 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.88 KB | None | 0 0
  1. --//Made by TactBaon#1724
  2. --//Sources are impossible to get if you got it
  3. --//:clap:
  4.  
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local MainFrame = Instance.new("Frame")
  7. local Frame = Instance.new("Frame")
  8. local ExitButton = Instance.new("TextButton")
  9. local MiniMaze = Instance.new("TextButton")
  10. local TextButton = Instance.new("TextButton")
  11. local TextButton_2 = Instance.new("TextButton")
  12. local TextLabel = Instance.new("TextLabel")
  13. local TextButton_3 = Instance.new("TextButton")
  14. local Login = Instance.new("Frame")
  15. local TextLabel_2 = Instance.new("TextLabel")
  16. local Frame_2 = Instance.new("Frame")
  17. local YesButton = Instance.new("TextButton")
  18. local NoButton = Instance.new("TextButton")
  19. local OpenButton = Instance.new("TextButton")
  20.  
  21. -- Settings
  22.  
  23. ScreenGui.Parent = game.CoreGui
  24.  
  25. MainFrame.Name = "MainFrame"
  26. MainFrame.Parent = ScreenGui
  27. MainFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  28. MainFrame.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  29. MainFrame.Position = UDim2.new(0.170381308, 0, 0.164451838, 0)
  30. MainFrame.Size = UDim2.new(0, 586, 0, 348)
  31. MainFrame.Visible = false
  32. MainFrame.Draggable = true
  33.  
  34. Frame.Parent = MainFrame
  35. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  36. Frame.BorderColor3 = Color3.new(0, 0, 0)
  37. Frame.Size = UDim2.new(0, 586, 0, 38)
  38.  
  39. ExitButton.Name = "ExitButton"
  40. ExitButton.Parent = MainFrame
  41. ExitButton.BackgroundColor3 = Color3.new(0, 0, 0)
  42. ExitButton.BorderColor3 = Color3.new(0, 0, 0)
  43. ExitButton.Position = UDim2.new(0.924914658, 0, 0, 0)
  44. ExitButton.Size = UDim2.new(0, 44, 0, 38)
  45. ExitButton.Font = Enum.Font.SourceSans
  46. ExitButton.Text = "X"
  47. ExitButton.TextColor3 = Color3.new(1, 1, 1)
  48. ExitButton.TextScaled = true
  49. ExitButton.TextSize = 14
  50. ExitButton.TextWrapped = true
  51. ExitButton.MouseButton1Click:connect(function()
  52. MainFrame.Visible = false
  53. end)
  54.  
  55. MiniMaze.Name = "MiniMaze"
  56. MiniMaze.Parent = MainFrame
  57. MiniMaze.BackgroundColor3 = Color3.new(0, 0, 0)
  58. MiniMaze.BorderColor3 = Color3.new(0, 0, 0)
  59. MiniMaze.Position = UDim2.new(0.849829316, 0, 0, 0)
  60. MiniMaze.Size = UDim2.new(0, 44, 0, 38)
  61. MiniMaze.AutoButtonColor = false
  62. MiniMaze.Font = Enum.Font.SourceSans
  63. MiniMaze.Text = "-"
  64. MiniMaze.TextColor3 = Color3.new(1, 1, 1)
  65. MiniMaze.TextScaled = true
  66. MiniMaze.TextSize = 14
  67. MiniMaze.TextWrapped = true
  68. MiniMaze.MouseButton1Click:connect(function()
  69. MainFrame.Visible = false
  70. OpenButton.Visible = true
  71. end)
  72.  
  73. TextButton.Parent = MainFrame
  74. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  75. TextButton.BorderColor3 = Color3.new(0, 0, 0)
  76. TextButton.Position = UDim2.new(0.0238907821, 0, 0.508620679, 0)
  77. TextButton.Size = UDim2.new(0, 200, 0, 50)
  78. TextButton.Font = Enum.Font.SourceSans
  79. TextButton.Text = "Infinite Stamina"
  80. TextButton.TextColor3 = Color3.new(1, 1, 1)
  81. TextButton.TextScaled = true
  82. TextButton.TextSize = 14
  83. TextButton.TextStrokeColor3 = Color3.new(1, 1, 1)
  84. TextButton.TextWrapped = true
  85. TextButton.MouseButton1Click:connect(function()
  86. while true do
  87. game.Players.LocalPlayer.PlayerScripts.Events.Player.Stamina.Stamina.Value = 9001
  88. wait()
  89. end
  90. end)
  91.  
  92. TextButton_2.Parent = MainFrame
  93. TextButton_2.BackgroundColor3 = Color3.new(0, 0, 0)
  94. TextButton_2.BorderColor3 = Color3.new(0, 0, 0)
  95. TextButton_2.Position = UDim2.new(0.62627995, 0, 0.508620679, 0)
  96. TextButton_2.Size = UDim2.new(0, 200, 0, 50)
  97. TextButton_2.Font = Enum.Font.SourceSans
  98. TextButton_2.Text = "Aimbot"
  99. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  100. TextButton_2.TextScaled = true
  101. TextButton_2.TextSize = 14
  102. TextButton_2.TextStrokeColor3 = Color3.new(1, 1, 1)
  103. TextButton_2.TextWrapped = true
  104. TextButton_2.MouseButton1Click:connect(function()
  105. function onKeyPress(inputObject, gameProcessedEvent)
  106. if inputObject.KeyCode == Enum.KeyCode.R then
  107. game.ReplicatedStorage.Ball.StartShooting:FireServer()
  108. wait(0.5)
  109. game.ReplicatedStorage.Ball.EndShooting:InvokeServer(true,"Perfect")
  110. end
  111. end
  112.  
  113. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  114. end)
  115.  
  116. TextLabel.Parent = MainFrame
  117. TextLabel.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  118. TextLabel.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  119. TextLabel.Position = UDim2.new(0.0238907859, 0, 0.195402294, 0)
  120. TextLabel.Size = UDim2.new(0, 300, 0, 81)
  121. TextLabel.Font = Enum.Font.SourceSans
  122. TextLabel.Text = "Hoops GUI"
  123. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  124. TextLabel.TextSize = 72
  125.  
  126. TextButton_3.Parent = MainFrame
  127. TextButton_3.BackgroundColor3 = Color3.new(0, 0, 0)
  128. TextButton_3.BorderColor3 = Color3.new(0, 0, 0)
  129. TextButton_3.Position = UDim2.new(0.424914718, 0, 0.537356317, 0)
  130. TextButton_3.Size = UDim2.new(0, 88, 0, 30)
  131. TextButton_3.Font = Enum.Font.SourceSans
  132. TextButton_3.Text = "Press \"E\" TP"
  133. TextButton_3.TextColor3 = Color3.new(1, 1, 1)
  134. TextButton_3.TextScaled = true
  135. TextButton_3.TextSize = 14
  136. TextButton_3.TextStrokeColor3 = Color3.new(1, 1, 1)
  137. TextButton_3.TextWrapped = true
  138. TextButton_3.MouseButton1Click:connect(function()
  139. plr = game.Players.LocalPlayer
  140. hum = plr.Character.HumanoidRootPart
  141. mouse = plr:GetMouse()
  142.  
  143. mouse.KeyDown:connect(function(key)
  144. if key == "e" then
  145. if mouse.Target then
  146. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  147. end
  148. end
  149. end)
  150. end)
  151.  
  152. Login.Name = "Login"
  153. Login.Parent = ScreenGui
  154. Login.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  155. Login.Position = UDim2.new(0.345971584, 0, 0.23172757, 0)
  156. Login.Selectable = true
  157. Login.Size = UDim2.new(0, 343, 0, 209)
  158.  
  159. TextLabel_2.Parent = Login
  160. TextLabel_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  161. TextLabel_2.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  162. TextLabel_2.Position = UDim2.new(0, 0, 0.205741629, 0)
  163. TextLabel_2.Size = UDim2.new(0, 343, 0, 50)
  164. TextLabel_2.Font = Enum.Font.SourceSans
  165. TextLabel_2.Text = "Are you sure to launch this gui?"
  166. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  167. TextLabel_2.TextScaled = true
  168. TextLabel_2.TextSize = 14
  169. TextLabel_2.TextWrapped = true
  170.  
  171. Frame_2.Parent = Login
  172. Frame_2.BackgroundColor3 = Color3.new(0, 0, 0)
  173. Frame_2.BorderColor3 = Color3.new(0, 0, 0)
  174. Frame_2.Size = UDim2.new(0, 343, 0, 35)
  175.  
  176. YesButton.Name = "YesButton"
  177. YesButton.Parent = Login
  178. YesButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  179. YesButton.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  180. YesButton.Position = UDim2.new(0, 0, 0.535885155, 0)
  181. YesButton.Size = UDim2.new(0, 161, 0, 55)
  182. YesButton.Font = Enum.Font.SourceSans
  183. YesButton.Text = "Yes"
  184. YesButton.TextColor3 = Color3.new(1, 1, 1)
  185. YesButton.TextScaled = true
  186. YesButton.TextSize = 14
  187. YesButton.TextWrapped = true
  188. YesButton.MouseButton1Click:connect(function()
  189. MainFrame.Visible = true
  190. Login.Visible = false
  191. end)
  192.  
  193. NoButton.Name = "NoButton"
  194. NoButton.Parent = Login
  195. NoButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  196. NoButton.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  197. NoButton.Position = UDim2.new(0.53061223, 0, 0.535885155, 0)
  198. NoButton.Size = UDim2.new(0, 161, 0, 55)
  199. NoButton.Font = Enum.Font.SourceSans
  200. NoButton.Text = "No"
  201. NoButton.TextColor3 = Color3.new(1, 1, 1)
  202. NoButton.TextScaled = true
  203. NoButton.TextSize = 14
  204. NoButton.TextWrapped = true
  205. NoButton.MouseButton1Click:connect(function()
  206. Login.Visible = false
  207. end)
  208.  
  209. OpenButton.Name = "OpenButton"
  210. OpenButton.Parent = ScreenGui
  211. OpenButton.BackgroundColor3 = Color3.new(1, 1, 1)
  212. OpenButton.Position = UDim2.new(0.650868893, 0, 0.852159441, 0)
  213. OpenButton.Size = UDim2.new(0, 200, 0, 50)
  214. OpenButton.Visible = false
  215. OpenButton.Style = Enum.ButtonStyle.RobloxButton
  216. OpenButton.Font = Enum.Font.SciFi
  217. OpenButton.Text = "OPEN"
  218. OpenButton.TextColor3 = Color3.new(1, 1, 1)
  219. OpenButton.TextScaled = true
  220. OpenButton.TextSize = 14
  221. OpenButton.TextWrapped = true
  222. OpenButton.MouseButton1Click:connect(function()
  223. MainFrame.Visible = true
  224. OpenButton.Visible = false
  225. end)
  226.  
  227. -- Scripts
  228.  
  229. don't copy this part, ------------credits to SplashExploits(AKA ME) + TactBaon#1724 (I was the guest)
Add Comment
Please, Sign In to add comment