Goal Kicking Simulator Autokick

Uploaded On
Script Credit :- timmypablo#3824
Features

Autokick

Script
--BROUGHT TO YOU BY RobloxScripter.com!--

getgenv().AutoKick = true getgenv().AutoPack = true local Remote = game:GetService("ReplicatedStorage").Remote.RemoteFunction local BasicCard = game:GetService("Workspace").Cards.Basic while task.wait() do if AutoKick then local RandomKickPower = Random.new():NextNumber(0.8, 1) -- Random kick power between 0.8 & 1, to avoid detections! Remote:InvokeServer("Throw", RandomKickPower) end if AutoPack then Remote:InvokeServer("PromptPurchasePack", BasicCard) end end