π‘Text
--Position (x, y)
position = {500., 500.}
--Font size
size = 30.
--Text color (r, g, b, a(opacity))
color = {255, 0, 0, 255}
--The actual text we are going to display
text = "Hello world!"
--Draw text on draw
function OnDraw()
draw_text(position, size, text, color)
end