Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- 👁️ Grow a Garden - ESP Fruit + Auto Buy Script (2025)
- -- Shows fruit locations & auto buys selected items
- local rs = game:GetService("ReplicatedStorage")
- local workspaceFruits = workspace:WaitForChild("FruitSpawns")
- local player = game.Players.LocalPlayer
- -- 🌈 ESP Function
- for _, fruit in ipairs(workspaceFruits:GetChildren()) do
- if fruit:IsA("BasePart") then
- local billboard = Instance.new("BillboardGui", fruit)
- billboard.Size = UDim2.new(0, 100, 0, 30)
- billboard.AlwaysOnTop = true
- local label = Instance.new("TextLabel", billboard)
- label.Size = UDim2.new(1, 0, 1, 0)
- label.Text = "🍎 Fruit Here"
- label.BackgroundTransparency = 1
- label.TextColor3 = Color3.fromRGB(255, 0, 0)
- label.TextStrokeTransparency = 0
- end
- end
- -- 🛒 Auto Buy Example
- local function autoBuyItem(itemName)
- rs:FireServer("BuyItem", itemName)
- print("🛒 Bought:", itemName)
- end
- autoBuyItem("SpeedFertilizer") -- 💡 Replace with your desired item name
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement