DEFLECT Script | AUTO DEFLECT

Created by brickmane

Features:

  • AUTO DEFLECT
local camera = workspace.CurrentCamera
local ball = nil

workspace.ChildAdded:Connect(function(v)
    if tostring(v) == "Ball" then
        ball = v
    end
end)

while true do game:GetService("RunService").Heartbeat:Wait()
    if ball and ball:FindFirstChild("Main") then
        if (ball.Touch.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 18 then
            game:GetService("Players").LocalPlayer.Character.Deflection.Remote:FireServer("Deflect", camera.CFrame.LookVector)
        end
    end
end

ENJOY!

Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!

More Scripts!

TOP 10 TRENDING SCRIPTS