So I had something more complicated made up, but nothing was showing up so I made this real quick just to check and it doesn't show up when I start the script... What am I doing wrong?
public void onPaint(Graphics g1) {
Graphics2D g = (Graphics2D)g1;
g.drawString("GP/HR:", 364, 376);
g.setColor(Color.WHITE);
g.setFont(new Font("Ariel", Font.PLAIN,14));
g.drawString("Gold made: ", 25, 50);
}