Advertisement
satyajitsrichandan

👁️ ESP Fruit & Auto Buy Script

Jun 25th, 2025
4
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. -- 👁️ Grow a Garden - ESP Fruit + Auto Buy Script (2025)
  2. -- Shows fruit locations & auto buys selected items
  3.  
  4. local rs = game:GetService("ReplicatedStorage")
  5. local workspaceFruits = workspace:WaitForChild("FruitSpawns")
  6. local player = game.Players.LocalPlayer
  7.  
  8. -- 🌈 ESP Function
  9. for _, fruit in ipairs(workspaceFruits:GetChildren()) do
  10. if fruit:IsA("BasePart") then
  11. local billboard = Instance.new("BillboardGui", fruit)
  12. billboard.Size = UDim2.new(0, 100, 0, 30)
  13. billboard.AlwaysOnTop = true
  14.  
  15. local label = Instance.new("TextLabel", billboard)
  16. label.Size = UDim2.new(1, 0, 1, 0)
  17. label.Text = "🍎 Fruit Here"
  18. label.BackgroundTransparency = 1
  19. label.TextColor3 = Color3.fromRGB(255, 0, 0)
  20. label.TextStrokeTransparency = 0
  21. end
  22. end
  23.  
  24. -- 🛒 Auto Buy Example
  25. local function autoBuyItem(itemName)
  26. rs:FireServer("BuyItem", itemName)
  27. print("🛒 Bought:", itemName)
  28. end
  29.  
  30. autoBuyItem("SpeedFertilizer") -- 💡 Replace with your desired item name
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement