LoopAsync

Starts a loop that sleeps for the supplied number of milliseconds and stops when the callback returns true.

Parameters

#TypeInformation
1integerThe number of milliseconds to sleep
2functionThe callback function

Example

LoopAsync(1000, function()
    print("Hello World!")
    return false -- Loops forever
end)