Tool I made to easily test fonts.
//Cycles through fonts so you can test which one works best for your text
testFont = function()
for f in fonts
screen.loadFont(f)
end
if keyboard.press.LEFT then
if fontpos <= 0 then
fontpos = 46
else
fontpos -= 1
end
print(fonts[fontpos])
end
if keyboard.press.RIGHT then
if fontpos >= 46 then
fontpos = 0
else
fontpos += 1
end
print(fonts[fontpos])
end
screen.setFont(fonts[fontpos])
end
idk if anyone else has done this A tool i made so that you can easily test fonts easily for whatever text you have
testFont()
screen.drawText("title",0,0,20)
then just use the arrow keys