local font = love.graphics.getFont() local text = love.graphics.newText(font) local function print_good(lines,x,y) for _,line in ipairs(lines) do text:set(line) local w,h = text:getDimensions() love.graphics.setColor(0,0,0,0.6) love.graphics.rectangle("fill",x,y,w,h) love.graphics.setColor(1,1,1) love.graphics.draw(text,x,y) y = y + h end end return { print_good=print_good }