Qamyz

Untitled

May 21st, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. local check = game:GetService("ReplicatedStorage").gameplay.ball:WaitForChild("check")
  2. function check.OnClientInvoke()
  3. return true
  4. end
  5. -- Anti-Break (You can't have your ankles snatched)
  6. -- Block Spam (You can jump as soon as you land)
  7. -- Stamina (You don't run out of stamina)
  8. -- Dribble Chaining (Chaining should have less delay)
  9.  
  10. --[[
  11. --> Execute this in your gym.
  12. --> Execute this on any court in a server and you're set
  13.  
  14. --> Change _G.Min, _G.Max to change what the aimbot
  15. -- randomizes between
  16.  
  17. --> Press Q to turn off aimbot. If you leave it as it is...
  18. -- it isn't noticable. Just note that it will say great
  19. -- accuracy when u shoot and its on.
  20. ]]--
  21.  
  22. local Run = game:GetService('RunService');
  23. local UIS = game:GetService('UserInputService');
  24. local Players = game:GetService('Players');
  25. local Player = Players['LocalPlayer'];
  26. local Mouse = Player:GetMouse()
  27.  
  28. local Event = Instance.new('RemoteEvent')
  29. local FireServer = Event.FireServer
  30. local GetRange = Random.new()
  31. _G.Max, _G.Min = 75, 100;
  32. local Aim = true
  33.  
  34.  
  35. local IStam;
  36. local IReach;
  37. local NoCross;
  38. local NoDunkOn;
  39.  
  40. local Meta = getrawmetatable(game);
  41. local MetaIndex = Meta.__index;
  42. local MetaCall = Meta.__namecall;
  43. setreadonly(Meta, false)
  44.  
  45. rawset(Meta, '__namecall', function(Obj, ...)
  46. local Args = {...};
  47. local Method = tostring(table.remove(Args));
  48. local Func = MetaIndex(Obj, Method)
  49.  
  50. if (Func == FireServer) then
  51. if (tostring(Obj) == 'shoot') and Aim then
  52. return FireServer(Obj, Args[1], GetRange:NextInteger(_G.Min, _G.Max) or 100, true)
  53. elseif (tostring(Obj) == 'value') or (tostring(Obj) == 'velocity') or (tostring(Obj) == 'steal') then
  54. local Ups = debug.getupvalues(2)
  55.  
  56. if not NoCross and Ups.Crossed_Up then
  57. NoCross = true
  58. debug.setupvalue(2, 'Crossed_Up', function() end)
  59. end
  60.  
  61. if not IStam and Ups.stamina then
  62. IStam = true
  63. while Run.Heartbeat:wait() do
  64. debug.setupvalue(2, 'crossed', false)
  65. debug.setupvalue(2, 'stamina', 100)
  66. end
  67. end
  68. if not IReach and Ups.stealdebounce then
  69. IReach = true
  70. while Run.Heartbeat:wait() do
  71. debug.setupvalue(2, 'stealdebounce', true)
  72. end
  73. end
  74.  
  75.  
  76. end
  77. end
  78.  
  79.  
  80.  
  81. return MetaCall(Obj, ...)
  82. end)
Add Comment
Please, Sign In to add comment