Categories > Exploiting > Scripts >

Fruit Juice Tycoon: Refreshed | Auto collect

Posts: 4

Threads: 3

Joined: Dec, 2021

Reputation: 0

Posted

-- gamelink: https://www.roblox.com/games/6755746130
-- toggle
getgenv().Collect = true;
local delay = 1


-- script
local plr = game:GetService("Players")
local lp = plr.LocalPlayer
local collection = game:GetService("CollectionService")
local event = game:GetService("ReplicatedStorage").CollectFruit

function getTycoon()
    for i,v in ipairs(workspace.Tycoons:GetDescendants()) do
        if v:IsA("Model") and v:FindFirstChild("Owner") and string.match(tostring(v.Owner.Value), lp.Name) then
            print("Found Own Tycoon!")
            return v
        end
    end
    return nil
end

local ownTycoon = getTycoon()

spawn(function()
    while true do
        if ownTycoon ~= nil then
            if getgenv().Collect == true then
                for _, value in ipairs(ownTycoon:GetChildren()) do
                    if value:IsA("Folder") and value.Name == "Drops" then
                        for i,z in ipairs(value:GetChildren()) do
                            if z:IsA("Part") and z:FindFirstChild("Owner") and string.match(tostring(z.Owner.Value), lp.Name) and collection:HasTag(z, "Fruit") and not collection:HasTag(z, "Collected") then
                                collection:AddTag(z, "Collected")
                                event:FireServer(z)
                            end
                        end
                    end
                end
            end

            -- instant sell
            for _,value in ipairs(ownTycoon.Essentials:GetDescendants()) do
                if value.Name == "JuiceMaker" and value:IsA("Model") then
                    if value:FindFirstChild("CollectorPart") and value["CollectorPart"]:IsA("Part") and value:FindFirstChild("DropperPart") and value["DropperPart"]:IsA("Part") then
                        local drop = value["DropperPart"]
                        local collect_part = value["CollectorPart"]
                        local pos = Vector3.new(drop.Position.X, 6.6, drop.Position.Z)
                        collect_part.Position = pos
                    end
                end
            end
        end
        wait(delay) -- too fast will crash/freeze ur game or fps drop
    end
end)

-- setup
repeat
    ownTycoon = getTycoon()
    wait(0.05)
until ownTycoon ~= nil
  • 0

Exploit I Own:

Synapse X

Script-Ware

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )