Advertisement
Stravides

colTextAPI

Nov 30th, 2014
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.97 KB | None | 0 0
  1.  function white()
  2.         m.setTextColor(colors.white)
  3. end
  4.  
  5. function orange()
  6.         m.setTextColor(colors.orange)
  7. end
  8.  
  9. function magenta()
  10.         m.setTextColor(colors.magenta)
  11. end
  12.  
  13. function lightblue()
  14.         m.setTextColor(colors.lightBlue)
  15. end
  16. function yellow()
  17.         m.setTextColor(colors.yellow)
  18. end
  19. function lime()
  20.         m.setTextColor(colors.lime)
  21. end
  22. function pink()
  23.         m.setTextColor(colors.pink)
  24. end
  25. function gray()
  26.         m.setTextColor(colors.gray)
  27. end
  28. function lightgray()
  29.         m.setTextColor(colors.lightGray)
  30. end
  31. function cyan()
  32.         m.setTextColor(colors.cyan)
  33. end
  34. function purple()
  35.         m.setTextColor(colors.purple)
  36. end
  37. function blue()
  38.         m.setTextColor(colors.blue)
  39. end
  40. function brown()
  41.         m.setTextColor(colors.brown)
  42. end
  43. function green()
  44.         m.setTextColor(colors.green)
  45. end
  46. function red()
  47.         m.setTextColor(colors.red)
  48. end
  49. function black()
  50.         m.setTextColor(colors.black)
  51. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement