Originally Posted By: Neo
That's awesome! Works great I appreciate it. One other question though, if I only wanted the script to randomly choose from a list of specific hex codes such as (#000000, #FF00FF, #00FFFF, #FFFF00, and #FFFFFF) how would I accomplish this? Thanks!

Just change/add the six character hex codes in the VAR.

Code:
ON *:TEXT:*:#: {
  IF ($nick == $me) {
    VAR %hex 000000 FF00FF 00FFFF FFFF00 FFFFFF
    MSG $chan .color $chr(35) $+ $gettok(%hex,$rand(1,$numtok(%hex,32)),32)
  }
}