Not to be a dick, but this is for people who need help with their scripts, not ones that want scripts made for them, nonetheless, it is simple...
simply use SetPlayerColor in a list dialog, and OnDialogResponse like this:
pawn Код:
//say the first option is red
if(listitem == 0)
{
SetPlayerColor(playerid, 0xFF0000AA);
return 1;
}
etc