Não consigo verificar onde errei no código para colocar a caixa laranja nos pontos do oponente.
Segue o código da área do placar:
function incluiPlacar (){
stroke (255);
textAlign(CENTER);
textSize(20);
fill (color(255, 140, 0));
rect (130, 10, 40, 20);
fill (255);
text (meusPontos, 150, 26);
fill (color(255, 140, 0));
rect (pontosOponente, 430, 10, 40, 20);
fill (255);
text (pontosOponente, 450,26);
}