đź’¸ Welcome To Money Tycoon, bought to you by the developer of Millionaire Empire Tycoon! You know the drill, build up your base and make trillions of cash in the process. Build houses, mine diamonds, unlock the underground vault, there’s so much to buy!
Money Tycoon Scripts:
Script Name
Script
Auto Farm – 06/08/2022
_G.autoButton = true; -- auto buys tycoon buttons
_G.autoColl = true; -- auto collects your money
_G.autoRebirth = true; -- auto rebirths when possible
-- calls
local pRoot = game.Players.LocalPlayer.Character.HumanoidRootPart
local lPlayer = game.Players.LocalPlayer
-- auto buy buttons
spawn(function()
if _G.autoButton then
autoBuy = true
while autoBuy == true do
for i, v in pairs(game:GetService("Workspace").Tycoons[lPlayer.Team.Name].ButtonsFolder:GetDescendants()) do
if v.Name == "Gamepass" then
local p2w = v.Parent
p2w:Destroy()
end
end
wait(0.5)
for i, v in pairs(game:GetService("Workspace").Tycoons[lPlayer.Team.Name].ButtonsFolder:GetDescendants()) do
if v:IsA("TouchTransmitter") then
firetouchinterest(pRoot, v.Parent, 0)
firetouchinterest(pRoot, v.Parent, 1)
end
end
wait(1)
end
else
autoBuy = false
end
end)
-- auto collect money
spawn(function()
if _G.autoColl then
autoCollect = true
while autoCollect == true do
for i, v in pairs(game:GetService("Workspace").Tycoons[lPlayer.Team.Name].StarterParts.Collector:GetDescendants()) do
if v:IsA("TouchTransmitter") then
firetouchinterest(pRoot, v.Parent, 0)
wait()
firetouchinterest(pRoot, v.Parent, 1)
end
end
wait()
end
else
autoCollect = false
end
end)
-- auto rebirth
spawn(function()
while _G.autoRebirth and wait(0.1) do
game:GetService("ReplicatedStorage").Events.Rebirth:FireServer()
end
end)