Module:OwlStart()

Server & Client

Fires in parallel across all modules once the internal initialization phase resolves. Safe for multi-threaded setups, loop structures and running external game actions.

function EconomyService:OwlStart()
    task.spawn(function()
        while true do
            task.wait(60)
            self:ProcessInterestRates()
        end
    end)
end