ADVERTISEMENTREMOVE ADS
Game icon

Infinite Money

Script preview thumbnail
Script Preview

Description

What This Does:
Fires PayIncome 15 times per loop for efficiency
Uses task.wait(0.1) to maintain performance
Prevents duplicate requests clogging up execution

Tested with

ADVERTISEMENTREMOVE ADS
24 Lines • 666 Bytes
Raw
_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)
ADVERTISEMENTREMOVE ADS

Comments

3 comments
to add a comment
Iz

works, confirmed awp.gg compatibility.

0
0
Ir

Xeno Script work

0
0
co

Script works on solara

0
0
ADVERTISEMENTREMOVE ADS