Page cover

πŸ’‘Hints

This page contains some useful guides

Disable coroutines when exiting Fluent window

circle-info

You can check if Fluent is unloaded and break coroutines loops

function Test()
    while task.wait() do
        print("something")
        if Fluent.Unloaded then break end
    end
end

coroutine.resume(coroutine.create(Test))

Last updated