Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- 🛡️ Grow a Garden - Mercenaries Auto Farm GUI (2025)
- -- User-friendly interface for plant, water, harvest automation
- local rs = game:GetService("ReplicatedStorage")
- local garden = workspace:WaitForChild("GardenPlots")
- local player = game.Players.LocalPlayer
- -- GUI Setup
- local gui = Instance.new("ScreenGui", player.PlayerGui)
- local frame = Instance.new("Frame", gui)
- frame.Size = UDim2.new(0, 220, 0, 180)
- frame.Position = UDim2.new(0, 30, 0, 100)
- frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- frame.BorderSizePixel = 0
- -- Button Generator
- local function makeBtn(name, posY, func)
- local btn = Instance.new("TextButton", frame)
- btn.Size = UDim2.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement