City Life Tycoon Au...
 
Notifications
Clear all

Advertisements

City Life Tycoon Auto farm & Cash

1 Posts
1 Users
0 Likes
3,835 Views
Scrip] Mater
Admin
Joined: 4 years ago
Posts: 128
Topic starter  

City Life Tycoon scripts simplify the farming process, making it automatic and quite thoughtful, you will find the files in the spoilers

Features:

  • Farm Cash
  • Auto Farm

 

Spoiler
Auto Farm

_G.Toggle = true

local function getTycoon()
for _, v in pairs(game:GetService("Workspace").Tycoons.Tycoon.Tycoons:GetChildren()) do
if v.TycoonInfo.Owner.Value == game.Players.LocalPlayer then
return v
end
end
end

while _G.Toggle do
if getTycoon() then
-- Collect Money
firetouchinterest(game.Players.LocalPlayer.Character.PrimaryPart, getTycoon().Essentials.CashGiver, 0)
firetouchinterest(game.Players.LocalPlayer.Character.PrimaryPart, getTycoon().Essentials.CashGiver, 1)

-- Loop through all Buttons and attempt to buy them
for _, v in pairs(getTycoon().Buttons:GetChildren()) do
-- Makes sure what you are buying isn't a gamepass or a dev product
if not v:FindFirstChild("Gamepass") and not v:FindFirstChild("Product") then
firetouchinterest(game.Players.LocalPlayer.Character.PrimaryPart, v.Head, 0)
firetouchinterest(game.Players.LocalPlayer.Character.PrimaryPart, v.Head, 1)
end
end
end
wait(1)
end

Spoiler
Cash Farm

-- Variables
local player = game.Players.LocalPlayer
local rs = game:GetService("RunService")
local stuff = {}

-- Grab Collectibles
local shit = workspace:GetDescendants()
for i = 1, #shit do local v = shit[i]
if v.Name == "Base" and v:FindFirstChildOfClass("TouchTransmitter") then
table.insert(stuff,v)
end
end

-- STOP BLINDING ME
player.PlayerGui.ChildAdded:Connect(function(v)
rs.RenderStepped:wait()
if v.Name == "ScreenGui" then
v:Destroy()
end
end)

-- Collect
while true do
for i = 1, #stuff do local v = stuff[i]
if v.Transparency == 0 then
pcall(function()
firetouchinterest(player.Character.HumanoidRootPart,v,0)
firetouchinterest(player.Character.HumanoidRootPart,v,1)
end)
end
end
wait()
end


   
Quote
Topic Tags