Thank you for that, but can you guys tell me a way to draw this on the actual game screen ? local myInventory = {food = 10,sword = 4,coin = 50,axe = 2,shield = 1,armor = 40} local function drawItem(item,itemWidth,itemHeight) if (item == "food") then love.graphics.setColor(0,128,0,255) els...