Auto farm bla bla
Description
ensurePlot()
farmThread=task.spawn(farmLoop)
else stopFarm() end
end)
hatchBtn.MouseButton1Click:Connect(function()
autoHatch=not autoHatch
if autoHatch then
hatchBtn.BackgroundColor3=GREEN;hatchBtn.Text="STOP HATCH"
ensurePlot()
hatchThread=task.spawn(hatchLoop)
else
hatchBtn.BackgroundColor3=RED;hatchBtn.Text="AUTO HATCH EGG"
if hatchThread then task.cancel(hatchThread);hatchThread=nil end
end
end)
digBtn.MouseButton1Click:Connect(function()
autoDig=not autoDig
if autoDig then
digBtn.BackgroundColor3=GREEN;digBtn.Text="STOP DIG"
ensurePlot()
digThread=task.spawn(digLoop)
else
digBtn.BackgroundColor3=RED;digBtn.Text="AUTO DIG"
if digThread then task.cancel(digThread);digThread=nil end
gs.SelectedObject=nil
end
end)
speedInput.FocusLost:Connect(function()
local val=tonumber(speedInput.Text)
if val then
val=math.clamp(val,1,500)
speedInput.Text=tostring(val)
startLoopSpeed(val)
else
speedInput.Text="32"
stopLoopSpeed()
end
end)
afkBtn.MouseButton1Click:Connect(function()
antiAfk=not antiAfk
if antiAfk then
afkBtn.BackgroundColor3=BLUE_ON;afkBtn.Text="AFK: ON"
startAntiAfk()
else
afkBtn.BackgroundColor3=BLUE;afkBtn.Text="ANTI-AFK"
stopAntiAfk()
end
end)




Comments
No comments yet
Be the first to share your thoughts!