Сontent continues after AD

Script – Mega luxury jet tycoon

Thank you for using our website
Your script:

				
					local ReplicatedStorage = game:GetService("ReplicatedStorage")
local AddMoney = ReplicatedStorage.Remotes:WaitForChild("AddMoney")

local playerKey = "ywreuijfoweuy7823478'daikaw3052"
local amount = 10000
local interval = 1

local running = false
local taskHandle = nil

local function startAutoSend()
    if running then return end
    running = true
    taskHandle = coroutine.create(function()
        while running do
            AddMoney:FireServer(playerKey, amount)
            wait(interval)
        end
    end)
    coroutine.resume(taskHandle)
end

local function stopAutoSend()
    running = false
end

startAutoSend() 

-- For Stop 👇
-- stopAutoSend()
				
			

if the script does not work, try other scripts on our website