Roblox Database Logo
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Roblox Guides
  • Roblox Tools
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Roblox Guides
  • Roblox Tools
Home - Scripts - Poo Tycoon Script

Poo Tycoon Script

Is your facility powerful enough to process mountains of poop resources and convert them into cash? Well, by using the latest Poo Tycoon Script, create a factory that will lead you to success. This script or code will boost your machineries and multipliers to earn huge amounts of cash by selling expensive poops. It also increases your walking speed and teleportation skills to obtain mystery boxes around the map to maximize your cash earnings throughout the game.

Poo Tycoon Script

Poo Tycoon Script Auto Farm, GUI Build, Anti-AFK, Teleport, Walkspeed

Copy the script below to level up your tycoon facility in the game. Make sure to use the most effective executor/exploit to make your daily poop production fun and abundant. We have a list of available executors here.

if game:GetService("CoreGui"):FindFirstChild(kVars.WindowName) then
    game:GetService("CoreGui"):FindFirstChild(kVars.WindowName):Destroy()
    wait(2)
end

Poo Tycoon Anti-AFK Script:

kVars.connectAntiAfk = game:GetService('Players').LocalPlayer.Idled:connect(function()
    kVars.vu:CaptureController()
    kVars.vu:ClickButton2(Vector2.new())
 end)

Poo Tycoon Teleport to Player Script:

kVars.SelectedTPToPlayer = kVars.lp.name
sectionTPToPlayer:Create("TextBox", "Enter Users Name", function(value)
    kVars.SelectedTPToPlayer = value
end,{text = "Enter Users Name"})

sectionTPToPlayer:Create("Button", "Teleport To Player", function()
    for i,v in pairs(game.Players:GetPlayers()) do
        if kVars.SelectedTPToPlayer ~= nil and kVars.SelectedTPToPlayer ~= kVars.lp.name then
            if string.lower(v.DisplayName) == string.lower(kVars.SelectedTPToPlayer) then
                kVars.hrp.CFrame = v.Character.HumanoidRootPart.CFrame                
            end
        end
    end
end,{animated = true})

Poo Tycoon Script Pastebin

kVars = {}
kVars.WindowName = "Poo Tycoon GUI"
kVars.lp = game:GetService('Players').LocalPlayer
kVars.vu = game:GetService('VirtualUser')
kVars.uis = game:GetService('UserInputService')
kVars.rs = game:GetService('ReplicatedStorage')
kVars.humanoid = kVars.lp.Character:WaitForChild('Humanoid')
kVars.hrp = kVars.lp.Character:WaitForChild('HumanoidRootPart')
local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/teppyboy/RbxScripts/master/Misc/UI_Libraries/Zypher/Library.lua"))()
local Window = library:CreateMain({
    projName = kVars.WindowName,
    Resizable = true,
    MinSize = UDim2.new(0,300,0,300),
    MaxSize = UDim2.new(0,800,0,800),
})

local pageMain = Window:CreateCategory("Main")
local sectionFarm = pageMain:CreateSection("Farm")

local pageTeleport = Window:CreateCategory("Teleport")
local sectionTPToPlayer = pageTeleport:CreateSection("Teleport To Player")

local pageCharacter = Window:CreateCategory("Character")
local sectionCharacter = pageCharacter:CreateSection("Options")

local pageMisc = Window:CreateCategory("Misc")
local sectionKeybinds = pageMisc:CreateSection("KeyBinds")
local sectionWorld = pageMisc:CreateSection("World Options")
local sectionMisc = pageMisc:CreateSection("Options")

local pageCredits = Window:CreateCategory("Credits")
local sectionCreditsKeath = pageCredits:CreateSection("Coded by : Keathunsar")
local sectionCreditsAlex = pageCredits:CreateSection("UI-Lib by : xTheAlex14")
kVars.boolMoney = false
sectionFarm:Create("Toggle", "Collect Money",function(bool)
    kVars.boolMoney = bool
    if bool then
        fMoney()
    end
end,{default = kVars.boolMoney})

function fMoney()
    spawn(function()
        while kVars.boolMoney do
            firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace")["keathunsar's Tycoon"].Bank.Pad, 0)
            wait()
            firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace")["keathunsar's Tycoon"].Bank.Pad, 1)
        end
    end)
end

kVars.boolBuyButtons = false
sectionFarm:Create("Toggle", "Buy all buttons",function(bool)
    kVars.boolBuyButtons = bool
    if bool then
        fBuyButtons()
    end
end,{default = kVars.boolBuyButtons})

function fBuyButtons()
    spawn(function()
        while kVars.boolBuyButtons do
            wait()
            for i,v in pairs(game:GetService("Workspace")[game.Players.LocalPlayer.name .. "'s Tycoon"]:GetChildren()) do
                if kVars.boolBuyButtons == false then return end
                if v:FindFirstChild("TouchInterest") then
                    firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v, 0)
                    wait()
                    firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v, 1)
                end
            end
        end
    end)
end

kVars.boolTPToBoxes = false
sectionFarm:Create("Toggle", "TP to boxes",function(bool)
    kVars.boolTPToBoxes = bool
    if bool then
        fTPToBoxes()
    end
end,{default = kVars.boolTPToBoxes})

function fTPToBoxes()
    spawn(function()
        while kVars.boolTPToBoxes do
            wait()
            pcall(function()
                for i,v in pairs(game:GetService("Workspace").BoxDump:GetChildren()) do
                    if kVars.boolTPToBoxes == false then return end
                    if (v.Position - kVars.hrp.Position).magnitude > 4 then
                        game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
                        wait(.3)
                        fireproximityprompt(v.ProximityPrompt, 2)
                    end
                end
            end)
        end
    end)
end

sectionFarm:Create("Button", "Collect all hidden Poo's", function()
    for i,v in pairs(game:GetService("Workspace").FindThePoop:GetChildren()) do
        firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v, 0)
        wait()
        firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v, 1)
    end
end,{animated = true})

How To Use Poo Tycoon Script

Follow these simple steps on how to use the Poo Tycoon Script:

See also  Zombie Merge Tycoon Script

1. Choose an effective executor/exploit from the list (Free & Paid)

2. Download the executor you prefer. We have our list here.

3. Launch the Roblox game first, then the executor

4. When both the Roblox game and executor are open, press Inject or Attach (it depends on what executor you are using)

5. Paste the script you want to use

6. Press the Execute or Play button (again it depends on what executor you are using)

7. That’s all, enjoy using the Poo Tycoon script GUI

About The Poo Tycoon Script

The Roblox Poo Tycoon Script is a set of unique codes that allows the user to have auto-farm features to generate millions of processed poops and sell them for instant cash. With its efficient algorithms and instinctive interface, it is very easy to use, even if you are a newcomer or an experienced player.

A truly impressive tool for success in every Roblox game you will be part of.

By using the best script of the game, you now have an advantage over other players in terms of poop generators and machine conveyors to produce high-quality poops instantaneously. You may also purchase several poop weapons and fight the gigantic Toilet King to receive more exciting rewards ahead.

If you are looking for the latest Poo Tycoon Codes to receive more cash and poop boosts in the game, you can collect them here.

Poo Tycoon Script

Always remember that all game scripts are illegal and may violate the Roblox Terms of Service, resulting in an account ban or other punishments. Be careful when using the script to avoid game trouble while playing Roblox.

See also  Arsenal Script

So what are you waiting for? Download the appropriate script of the game and establish the highest tower that can easily produce tons of poop resources in Poo Tycoon today.

Another Similar Game :

Anime Power Tycoon ScriptAnime Power Tycoon Script Space Tycoon ScriptSpace Tycoon Script War Tycoon ScriptWar Tycoon Script Ninja Tycoon ScriptNinja Tycoon Script War Age Tycoon ScriptWar Age Tycoon Script Zombie Battle Tycoon ScriptZombie Battle Tycoon Script

Leave a Comment Cancel reply

Promo Codes

Get your hands on exclusive cosmetics, in-game currency, and special bonuses! Redeem our extensive list of Roblox promo codes and stay ahead of the game.

FREE ITEMS
PROMO CODES
STAR CODES

Game Codes

Unlock exclusive in-game perks, boost your stats, and get an edge in your favorite Roblox games with our collection of verified and non expired game codes.

VIEW ALL
GENRES
POPULAR CODES

Items Codes

Customize your Roblox avatar to the max! Browse our thousands of collection of item codes to unlock unique hats, accessories, gear, and many more.

VIEW ALL
CATEGORY
POPULAR ITEMS

Music Codes

Jam out to your favorite tunes in Roblox! Discover music codes for the latest hits and timeless classics to personalize your in-game experience.

VIEW ALL
STYLE
ARTIST

Best Games

Looking for the hottest Roblox games? Explore our curated recommendations, discover hidden gems, and find your next gaming obsession.

BEST GAMES
THEMES
POPULAR GAMES

Roblox Guides

Level up your Roblox knowledge! Access in-depth guides, powerful tools, and valuable resources to enhance your gameplay and creation skills.

VIEW ALL
GAMES WIKI
ERRORS

Tools

Tap into the Roblox community! Find player-created tools, expert guides, and collaborative resources to elevate your Roblox journey.

VIEW ALL
USERNAME GENERATOR
EXECUTOR

Roblox Scripts

Unlock hidden potential, customize your gameplay, and push the limits of your favorite Roblox game with our powerful script collection.

VIEW ALL
GENRE
POPULAR SCRIPTS
Roblox Database Logo

Roblox Database is your all-in-one source for anything and everything related to Roblox.

Whether you’re looking for the latest game codes, item codes, or promo codes or need some scripting guidance, we’ve got you covered.

Facebook-f Twitter Youtube Instagram Pinterest
Quick Links
  • About
  • Contact
  • Tools
  • Privacy Policy
  • Terms of Service
  • Copyright Policy
Menu
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Roblox Guides
  • Roblox Tools
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Roblox Guides
  • Roblox Tools
Download
chrome logo
  • Email: robloxdatabase23@gmail.com
  • Android : Coming Soon
  • IOS : Coming Soon

© 2025 All Rights Reserved.