Roblox Field Goal Simulator Script (AutoKick, AutoFarm, Chose Any Yard)

 Roblox Field Goal Simulator Script (AutoKick, AutoFarm, Chose Any Yard)

Created by shade


Roblox Field Goal Simulator Script (AutoKick, AutoFarm, Chose Any Yard) Features:

                • Auto Kick
                • Auto Farm
                • Chose Any Yard
Code Here:

getgenv().Settings = {
    Farm = true,
    Yard = "40",
    Notification = true
}

local Character = game:GetService("Players").LocalPlayer.Character
local TotalKicks = 0
local Yards = {
    ["5"] = -215,
    ["10"] = -200,
    ["15"] = -185,
    ["20"] = -170,
    ["25"] = -155,
    ["30"] = -140,
    ["35"] = -125,
    ["40"] = -110,
    ["45"] = -95,
    ["50"] = -80,
    ["55"] = -65,
    ["60"] = -50,
    ["65"] = -35,
    ["70"] = -20,
    ["75"] = -5,
    ["80"] = 10,
    ["85"] = 25,
    ["90"] = 40,
    ["95"] = 55,
    ["100"] = 70,
}

Character.HumanoidRootPart.CFrame = CFrame.new(Yards[getgenv().Settings.Yard], -6, -470)

while wait(3) do
    if getgenv().Settings.Farm then
        Character.Ball.ServerEvent:FireServer("Start")
        Character.Ball.ServerEvent:FireServer("Accuracy", 0.9999999999999999999)
        TotalKicks = TotalKicks + 1
        if getgenv().Settings.Notification then
            game:GetService("StarterGui"):SetCore("SendNotification", {
                Title = "🏈 Field Goal Simulator", Text = TotalKicks .. " kick/s made.", Duration = 2
            })
        end
    else break
    end
end
Script Showcase here: Youtube