get_items() Get all items registered within the hub. Call Example Edit core.get_items() params: none. return: an array of items (table) or nil in a case of an error. Edit require "core" local items = core.get_items() if items then for _, item in ipairs( items ) do print( "item name:" .. item.name ) end end