Advertisement
satyajitsrichandan

🛡️ Mercenaries Auto Farm GUI

Jun 24th, 2025
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. -- 🛡️ Grow a Garden - Mercenaries Auto Farm GUI (2025)
  2. -- User-friendly interface for plant, water, harvest automation
  3.  
  4. local rs = game:GetService("ReplicatedStorage")
  5. local garden = workspace:WaitForChild("GardenPlots")
  6. local player = game.Players.LocalPlayer
  7.  
  8. -- GUI Setup
  9. local gui = Instance.new("ScreenGui", player.PlayerGui)
  10. local frame = Instance.new("Frame", gui)
  11. frame.Size = UDim2.new(0, 220, 0, 180)
  12. frame.Position = UDim2.new(0, 30, 0, 100)
  13. frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  14. frame.BorderSizePixel = 0
  15.  
  16. -- Button Generator
  17. local function makeBtn(name, posY, func)
  18. local btn = Instance.new("TextButton", frame)
  19. btn.Size = UDim2.
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement