My game is to get to the goal before your opponent. when you reach the goal first you get one point. every time you get a point everyone respawns where they started. I'm using:
to relocate this player, but the other player still stays.
HELP.
public void score()
{
if(isTouching(Goal.class))
{
points = points + 1;
setLocation(1083,20);
}
}
