_G.AutoPayIncome = true local ReplicatedStorage = game:GetService("ReplicatedStorage") local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local TycoonService = ReplicatedStorage:WaitForChild("Knit"):WaitForChild("Services"):WaitForChild("TycoonService"):WaitForChild("RF"):WaitForChild("PayIncome") local function payIncome() while _G.AutoPayIncome do for _ = 1, 15 do TycoonService:InvokeServer(LocalPlayer) end task.wait(0.1) end end spawn(function() while task.wait(0.1) do if _G.AutoPayIncome then payIncome() end end end)