public void act(){
gerak();
}
// gerakannya
public void gerak(){
String tombol=Greenfoot.getKey();
if (tombol=="right")
setLocation(getX()+1,getY());
if (tombol=="left")
setLocation(getX()-1,getY());
if (tombol=="up")
setLocation(getX(),getY()-1);
if (tombol=="down")
setLocation(getX(),getY()+1);
}