I've copy and pasted code that people swear works to no avail.
I'm just trying to draw a rectangle in MyWorld class.
public void drawScoreboard(){
GreenfootImage img = new GreenfootImage(200,200);
img.drawRect(0,0,100,100);
}
I put this method in act() and in the constructor and nothing happens. I've tried fill, drawline and the rest of them.

