Fazendo Scripts 02.lua
Fazendo Scripts 02.lua
AutoDetectSpam = true
--///////////////////////////////////////////////////////////////////--
--///////////////////////////////////////////////////////////////////--
task.spawn(function()
while task.wait() do
if getgenv().SpamClickA and getgenv().AutoDetectSpam then
SuperClick()
end
end
end)
local ParryCounter = 0
local DetectSpamDistance = 0
ball:GetPropertyChangedSignal("Position"):Connect(function()
local PlayerPP = Player and Player.Character and Player.Character.PrimaryPart
local NearestPlayer = get_ProxyPlayer()
if NearestPlayer then
if Target == NearestPlayer.Name or Target == Player.Name then
ParryCounter = ParryCounter + 1
else
ParryCounter = 0
end
end
end)
end
GetBall(ball)
end
Balls.ChildAdded:Connect(function(ball)
if not getgenv().AutoDetectSpam then
return
elseif ball and not ball:GetAttribute("realBall") then
return
end
getgenv().SpamClickA = false
ParryCounter = 0
GetBall(ball)
end)