— // Feature \\ —
[+] You can Buy Seeds without Money needed
[+]Fern
[+]Bamboo
[+]Cyca Palm
[+]Small Acacia
[+]Rain Tree
[+]Kapok
[+] Acacia
[+]HUGE Kapok
[+]Jungle Tree
[+]Void Tree
[+]Venus FlyTrap
[+]Mushrooms
[+]Toxic Acacia

Aux hub Get all Seeds Open Source
[✨] Grow a Garden 🌶️
•
6 days ago
5 views
Description
Compatible Executors
Script
--[[
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/GCxF-Pjk/For-Gui-Maker-Aux-Hub/refs/heads/main/For%20Liblary/Source.lua"))()
local Main = Library:CreateWindow("Made by VantaXock")
local Seeds = {
"Fern", "Bamboo", "Cyca Palm", "Small Acacia", "Rain Tree",
"Kapok", "Acacia", "HUGE Kapok", "Jungle Tree",
"Void Tree", "Venus FlyTrap", "Mushrooms", "Toxic Acacia"
}
for _, seed in ipairs(Seeds) do
Main:Button("Get " .. seed .. " Seed", function()
game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Buy_Seed"):FireServer(seed, 0)
end)
end