> For the complete documentation index, see [llms.txt](https://docs.streamavatars.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.streamavatars.com/lua-scripting-api/api-reference-and-tips/classes/user/look.md).

# look

```lua
return function()
    local user = getUser('clonzeh');
    if user == nil then
        log('user does not exist!');
        return;
    end

    user.look(1); --changes avatar's facing direction to be right
    user.look(-1); -- ... changes ... left
end
```

{% hint style="warning" %}
For emotes on twitch to display, they must first be read from chat before they can be used in chat bubble. For example 'kappa' will use the kappa emote only if someone has previously types Kappa into chat.
{% endhint %}
