What I'd do is have a clientr flag like
clientr.colors = {r,g,b,a};
And then a script like this:
PHP Code:
//#CLIENTSIDE
function onCreated() {
onTimeOut();
}
function onTimeOut() {
//I forget if it should be players[] or allplayers[]
for (pl: players) {
pl.red = pl.clientr.colors[0];
pl.blue = pl.clientr.colors[1];
pl.green = pl.clientr.colors[2];
pl.alpha = pl.clientr.colors[2];
}
setTimer(.5);
}
function onPlayerEnters() {
onTimeOut();
}
Using that has worked for me in the past, but I guess a gani would work as well, assuming he used player.attr[]'s for the rgb.