ADVERTISEMENTREMOVE ADS
Game icon

- open-src inf money

Script preview thumbnail
Script Preview

Description

Features:
  • Auto Money Boost: Continuously triggers the money boost event.

  • Optimized Execution: Ensures smooth performance with structured loops.

  • No Excessive Load: Task scheduling prevents unnecessary strain on the game.

Tested with

ADVERTISEMENTREMOVE ADS
20 Lines • 521 Bytes
Raw
_G.MoneyBoostEnabled = true
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local generateBoostEvent = ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("generateBoost")
local function generateMoneyBoost()
while _G.MoneyBoostEnabled do
generateBoostEvent:FireServer("Coins", 480, 3000000)
task.wait(0)
end
end
task.spawn(function()
while task.wait(0.1) do
if _G.MoneyBoostEnabled then
generateMoneyBoost()
end
end
end)
ADVERTISEMENTREMOVE ADS

Comments

3 comments
to add a comment
Fl

I tried this I think it works

0
0
Ir

Xeno Script work

0
0
Ja

This script works on delta

0
0
ADVERTISEMENTREMOVE ADS