float R; float G; float B; default { state_entry() { llSay(0, "touch for a new color"); } touch_start(integer total_number) { R=llFrand(1.0); G=llFrand(1.0); B=llFrand(1.0); { llSay(0,"color = <" + (string)(R) + "," + (string)(G) + "," + (string)(B) + ">");; llSetColor(,ALL_SIDES); } } }