👨‍🏫 Tutorial [PATCHED] Grow a Garden 2 | AUTO DUPLICATE ANY MULTIHARVEST FRUIT TUTORIAL!

image-19.webp
IMG_8766.webp


Status:
PATCHED
You must be on version 64 below

Execute this script:
Code:
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Networking = require(ReplicatedStorage:WaitForChild("SharedModules"):WaitForChild("Networking"))
local mouse = game.Players.LocalPlayer:GetMouse()
local currentPlantId = nil
local currentFruitId = nil

mouse.Button1Down:Connect(function()
    local target = mouse.Target
    if target and target.Parent then
        local plantId = target.Parent:GetAttribute("PlantId")
        local fruitId = target.Parent:GetAttribute("FruitId")
        if plantId and fruitId then
            currentPlantId = plantId
            currentFruitId = fruitId
        end
    end
end)

while task.wait() do
    if currentPlantId and currentFruitId then
        Networking.Garden.CollectFruit:Fire(currentPlantId, currentFruitId)
      
        Networking.NPCS.SellAll:Fire()
    end
end
click on the desired fruit,

after dont click on plant or crop



1: not working on xeno/solara

2: must be on v64 and below

 

About this Thread

  • 20
    Replies
  • 939
    Views
  • 16
    Participants
Last reply from:
Landszxc

Online now

Members online
519
Guests online
2,250
Total visitors
2,769

Forum statistics

Threads
2,317,067
Posts
29,189,327
Members
1,182,229
Latest member
unknownsalabas
Back
Top