Aimbot
Aimbot
This script will output the number of hoops it finds once it's ready for use.
Press Q while holding E to shoot or just after to activate it.
range_min, range_max is the value you want your aimbot to change the shot
range to. If you change this to 100, 100 you will shoot all perfects.
local rec do
rec = function(o)
for __, child in next, (o 'GetChildren') do
if string.lower(child['Name']):match('hoop') and
child:FindFirstChild('Goal') then
table.insert(hs, child)
elseif #child('GetChildren') > 0 then
rec(child)
end
end
end
end
rec(workspace)
return hs
end)()
if goal then
local dist = (hrp.Position-goal.Position).magnitude
if dist < last then
last = dist
closest = hoop
end
end
end
return closest
end
mouse.KeyDown:connect(function(key)
if key == "q" then
local shoot = getShoot()
local hoop = getHoop()
court = hoop.Parent
local data = court:FindFirstChild('GameData')
local teamball = data and data:FindFirstChild('TeamBall')
local h1 = court:FindFirstChild('_Hoop1')
local h2 = court:FindFirstChild('_Hoop2')
Attack(shoot,hoop)
end
end)
warn('Morse: ... -.-. .-. .. .--. - . .-. | -..-. -..-. | .--. .-. --- --. .-. .-
-- -- . .-.')
warn('Located',#hoops,'hoops.')