Created by houjk2
Features:
- AUTOFARM
- OPEN SOURCE
local UsId = game.Players.LocalPlayer.UserId
local Car
local Sped = game:GetService("Players").LocalPlayer.PlayerGui["A-Chassis Interface"]["New_ACLR8_Gauges"].Cluster.Speed
function startswith(startswith, thestring)
if string.sub(thestring, 1, string.len(startswith)) == startswith then
return true
else
return false
end
end
for i, v in pairs(game:GetService("Workspace").Cars:GetChildren()) do
if startswith(tostring(UsId), v.Name) == true then
Car = v
end
end
local Part = Car.PrimaryPart
function SetPos(position)
Car:SetPrimaryPartCFrame(position)
end
local Ok = Instance.new("BodyVelocity", Part)
Ok.Name = "Farm"
SetPos(CFrame.new(-2587, 285, -3683))
while true do
wait(0.5)
SetPos(CFrame.new(-2587, 285, -3683))
if tonumber(Sped.Text) <= 180 then
Ok.Velocity = Vector3.new(0, 0, -9999999)
else
Ok.Velocity = Vector3.new(0, 0, 0)
end
end
ENJOY!