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

# getGearPieces

```lua
return function()
    local avatar = getAvatar('block_man');
    if avatar == nil then
        log('the avatar was not found');
        return;
    end
    
    local gearPieces = avatar.getGearPieces('hats'); 
    --returns a list of gear items that's from the gear set
    
    local str = '';
    for key, value in pairs(gearPieces) do
        str = str + value + ', ';
    end
    log(avatar.name .. ' has these gear pieces available:');
    log(str);
end
```
