> 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/avatar/getactions.md).

# getActions

```lua
return function()
    local avatar = getAvatar('block_man');
    if avatar == nil then
        log('the avatar was not found');
        return;
    end
    
    local actions = avatar.getActions(); 
    --returns a list of actions/animations that's attached to the avatar
    
    local str = '';
    for key, value in pairs(actions) do
        str = str + value + ', ';
    end
    log(avatar.name .. ' has these actions available:');
    log(str);
end
```
