local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "🌾 Simples Farm", LoadingTitle = "Carregando...", LoadingSubtitle = "Auto Farm", ConfigurationSaving = { Enabled = true, FileName = "SimplesFarm" } }) local Tab = Window:CreateTab("Main", 4483362458) -- VARIÁVEIS getgenv().AutoFarm = false getgenv().AutoBoost = false -------------------------------------------------- -- 🌾 AUTO FARM (PARADO) -------------------------------------------------- Tab:CreateToggle({ Name = "🌾 Auto Farm (Parado)", CurrentValue = false, Callback = function(Value) getgenv().AutoFarm = Value task.spawn(function() while getgenv().AutoFarm do task.wait(0.2) game:GetService("ReplicatedStorage") :WaitForChild("remoteFunctions") :WaitForChild("toolClick") :InvokeServer() end end) end }) -------------------------------------------------- -- ⚡ AUTO BOOST (GLUE + PURPLE + GLITTER) -------------------------------------------------- Tab:CreateToggle({ Name = "⚡ Auto Boost", CurrentValue = false, Callback = function(Value) getgenv().AutoBoost = Value task.spawn(function() while getgenv().AutoBoost do -- SPRINKLER game:GetService("ReplicatedStorage") :WaitForChild("remoteFunctions") :WaitForChild("PlayerActivesCommand") :InvokeServer(unpack({{["Name"] = "Sprinkler Builder"}})) task.wait(1) -- OIL game:GetService("ReplicatedStorage") :WaitForChild("remoteFunctions") :WaitForChild("PlayerActivesCommand") :InvokeServer(unpack({{["Name"] = "Oil"}})) task.wait(1) -- GLUE local glueArgs = { [1] = { ["Name"] = "Glue" } } game:GetService("ReplicatedStorage") :WaitForChild("remoteFunctions") :WaitForChild("PlayerActivesCommand") :InvokeServer(unpack(glueArgs)) task.wait(1) -- PURPLE local purpleArgs = { [1] = { ["Name"] = "Purple Potion" } } game:GetService("ReplicatedStorage") :WaitForChild("remoteFunctions") :WaitForChild("PlayerActivesCommand") :InvokeServer(unpack(purpleArgs)) task.wait(1) -- GLITTER local glitterArgs = { [1] = { ["Name"] = "Glitter" } } game:GetService("ReplicatedStorage") :WaitForChild("remoteFunctions") :WaitForChild("PlayerActivesCommand") :InvokeServer(unpack(glitterArgs)) -- 15 MINUTOS task.wait(900) end end) end })