local CollectionService = game:GetService("CollectionService")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local WheatStage = "5"
_G.AutoHarvest = true
_G.AutoRollTier = true
_G.AutoRollRunes = true
local RuneSettings = {
["Basic"] = true,
["Super"] = false,
["Advanced"] = false,
["Cosmic Prism"] = false,
["Hacker"] = false
}
local MainRemote = ReplicatedStorage:WaitForChild("__Net"):WaitForChild("MainRemote")
task.spawn(function()
while _G.AutoHarvest do
for _, slot in ipairs(CollectionService:GetTagged("WheatSlot")) do
local clickDetector = slot:FindFirstChildOfClass("ClickDetector")
local Stage = slot:FindFirstChild(WheatStage)
if clickDetector and Stage then
fireclickdetector(clickDetector)
task.wait(0.05)
end
end
task.wait(1.0)
end
end)
task.spawn(function()
while _G.AutoRollRunes or _G.AutoRollTier do
if _G.AutoRollRunes then
for runeType, isEnabled in pairs(RuneSettings) do
if isEnabled then
MainRemote:FireServer("RollRune", runeType)
task.wait(0.05)
end
end
end
if _G.AutoRollTier then
MainRemote:FireServer("RollTier")
end
task.wait(0.1)
end
end)
Comments
bro ts ass
just spamming.