color r = color(150,250,250); //random color boolean tri = false; boolean elip = false; void setup() { size(500,500); background(255); printArray("Press_Key"); } void draw(){ println("elip: " + elip); if (keyPressed) { fill(0,255,0); triangle(0, height/2, 250, 0, width, height/2); tri = true; } if (elip == true); { if (tri == true){ printArray("ILLUMINATI COOOONNNFFFIIRRRMMMMEEDDD!!!!!!"); color(random(256), random(256), random(256)); } } } void mouseClicked() { fill(10000,10000,10000); ellipse(width/2,height/2.9,width/4,height/4); fill(0,0,0); ellipse(width/2,height/2.9,width/5.5,height/5.5); elip = true; }