Advertisement
ski1lzhub

hoopslife

Jun 29th, 2022
2,673
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. --[[
  2. Script Name: Hoops Life Auto Time (Semi-Aimbot)
  3. Game Link: https://www.roblox.com/games/7540727946/Basketball-park-Hoops-Life-Pre-Alpha
  4. Last Update: 6/26/2022
  5. --]]
  6.  
  7. _G.Keybind = Enum.KeyCode.E
  8.  
  9. local UIS = game:GetService("UserInputService")
  10. local RUN = game:GetService("RunService")
  11. local Storage = game:GetService("ReplicatedStorage")
  12. local Path = Storage:WaitForChild("Remotes").Shoot
  13. local Player = game.Players.LocalPlayer
  14. local Character = Player.Character or Player.CharacterAdded:Wait()
  15. local Cheat
  16.  
  17. local Cheat_AutoTime = function()
  18. Character.Meter.SurfaceGui.ImageLabel.Shoot.Size = UDim2.new(1, 0, 1, 0)
  19. end
  20.  
  21. UIS.InputBegan:Connect(function(input, gpe)
  22. if input.KeyCode == _G.Keybind and not gpe then
  23. Cheat = RUN.Stepped:Connect(Cheat_AutoTime)
  24. end
  25. end)
  26.  
  27. UIS.InputEnded:Connect(function(input, gpe)
  28. if input.KeyCode == _G.Keybind and not gpe then
  29. wait(3)
  30. Cheat:Disconnect()
  31. Character.Meter.SurfaceGui.ImageLabel.Shoot.Size = UDim2.new(1, 0, 0, 0)
  32. end
  33. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement