ADVERTISEMENTREMOVE ADS
Beat Game Semi-Instantly
47,749 views

Script Preview
Description
Features
Auto Finish Race
Auto Boost
Auto Upgrade Ramp & Car
ADVERTISEMENTREMOVE ADS
38 Lines β’ 1015 Bytes
local replicatedStorage = game:GetService("ReplicatedStorage")
local signal = replicatedStorage:WaitForChild("Signal")
_G.Toggles = {
AutoComplete = true,
UpgradeRamp = true,
Boost = true,
FirstBoost = true,
UpgradeCar = true
}
local function triggerEvent(eventName, arg1, arg2)
local event = signal:WaitForChild(eventName)
event:FireServer(arg1, arg2)
end
local function startLoop(toggleName, eventName, arg1, arg2)
task.spawn(function()
while _G.Toggles[toggleName] do
triggerEvent(eventName, arg1, arg2)
task.wait(0)
end
end)
end
startLoop("AutoComplete", "Car", "Done", 1)
startLoop("UpgradeRamp", "Place", "Upgrade", "Ramp")
startLoop("Boost", "Car", "Boost")
startLoop("FirstBoost", "Car", "FirstBoost", 0.4773718249915717)
startLoop("UpgradeCar", "Place", "Upgrade", "Car")
task.spawn(function()
for i = 1, 85 do
triggerEvent("Car", "Done", 1)
task.wait(0)
end
end)
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS






Comments