ukhoppa Posted July 29, 2018 Share Posted July 29, 2018 Heres an outline text i made for paint. void hoppsoutline(Graphics2D gfx, String text,int x, int y,Color colout, Color coltxt) { gfx.setColor(colout); gfx.drawString(text, x - 1, y); gfx.drawString(text, x + 1, y); gfx.drawString(text, x , y - 1); gfx.drawString(text, x , y + 1); gfx.setColor(coltxt); gfx.drawString(text, x , y); } public void onPaint(Graphics2D gfx) { hoppsoutline(gfx, "Auto Walker" , 10, 60, Color.RED, Color.WHITE); } https://imgur.com/a/v15V6Y4 Quote Link to comment Share on other sites More sharing options...