Features:
- Auto Farm All
- Dupe Item
- Dupe Pet
- Dupe Seed
Roblox Script Community
local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))()<br />
<br />
local Window = Rayfield:CreateWindow({<br />
Name = "Uro's Grow A Garden Hub",<br />
LoadingTitle = "Grow a Garden – Uro Edition",<br />
ConfigurationSaving = {<br />
Enabled = true,<br />
FolderName = "UroGAG"<br />
}<br />
})<br />
<br />
local Main = Window:CreateTab("Main Hub", 13014515132)<br />
<br />
-- Auto Farm<br />
Main:CreateToggle({<br />
Name = "Auto Farm All",<br />
CurrentValue = false,<br />
Callback = function(val)<br />
if val then<br />
task.spawn(function()<br />
while val do<br />
for _, plot in pairs(workspace.GardenPlots:GetChildren()) do<br />
game.ReplicatedStorage:FireServer("HarvestPlant", plot)<br />
wait(0.1)<br />
game.ReplicatedStorage:FireServer("PlantSeed", plot, "TomatoSeed")<br />
wait(0.1)<br />
game.ReplicatedStorage:FireServer("WaterPlant", plot)<br />
wait(0.1)<br />
end<br />
wait(3)<br />
end<br />
end)<br />
end<br />
end<br />
})<br />
<br />
-- Duplication<br />
Main:CreateInput({<br />
Name = "Dupe Item",<br />
PlaceholderText = "Enter Item Name",<br />
RemoveTextAfterFocusLost = false,<br />
Callback = function(itemName)<br />
for i = 1, 10 do<br />
game.ReplicatedStorage:FireServer("DuplicateItem", itemName)<br />
wait(0.2)<br />
end<br />
end<br />
})<br />
<br />
-- Pet Spawner<br />
Main:CreateInput({<br />
Name = "Spawn Pet",<br />
PlaceholderText = "Enter Pet Name",<br />
RemoveTextAfterFocusLost = false,<br />
Callback = function(pet)<br />
game.ReplicatedStorage:FireServer("SpawnPet", pet)<br />
end<br />
})<br />
<br />
-- Seed Spawner<br />
Main:CreateInput({<br />
Name = "Spawn Seed",<br />
PlaceholderText = "Enter Seed Name",<br />
RemoveTextAfterFocusLost = false,<br />
Callback = function(seed)<br />
game.ReplicatedStorage:FireServer("SpawnSeed", seed)<br />
end<br />
})