# yieldBreak

```lua
return function
    local x = 0;
    while x < 5000 do
    
        yield(); --yield works in combination with deltaTime
        
        if x > 30 then
            yieldBreak(); --causes this coroutine to close out immediately
        end
        
        --without yield, the application would freeze & be stuck in a loop.
        --until x is equal to 5000
        x = x + 1;
    end
    
    log('this will never be reached.');
end
```

{% hint style="success" %}
Find details on deltaTime at this link:\
[API Reference & Tips](/lua-scripting-api/api-reference-and-tips.md#pre-data)&#x20;
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.streamavatars.com/lua-scripting-api/api-reference-and-tips/global-functions/yieldbreak.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
