Well here you go!
local word = "Insert your word here " --Leave one space so the cursor doesnt obscure the word local firstCol = colours.red local secondCol = colours.blue for len = 1,#word do if bit.band(len,1) == 0 then --This line will detect if the current char is on an odd or even column. Odd will be red and Even will be blue in this case term.setTextColour(firstCol) else term.setTextColour(secondCol) end term.write(string.sub(word,len,len)) --Sub the string to the current character end
This is a very simple script but I thought some users might benefit from this.












