ID:2034584
 
Code:
N/A


Problem description:
I've looked a little into this and still a little bit confused. What I want to do is just for like .5 of a second flash the screen a tint of white. Is this possible?
animate(src.client, color = "white", time = 5, loop = 1)


Try just using animate.
So it looks like the screen is white by default, any way to make it so you can change the brightness or something?
In response to DevDuelist
You'll want to set your client.color to a color matrix that turns everything white.
// lose the red, green, and blue
// add solid white to everything
client.color = list(0,0,0, 0,0,0, 0,0,0, 1,1,1)

Read about "color var (client)" and "Color matrix" in the DM reference.