stage = new Stage(width, height, true);
stage.clear();
Gdx.input.setInputProcessor(stage);
TextButtonStyle style = new TextButtonStyle();
style.up = skin.getDrawable("buttonnormal");
style.down = skin.getDrawable("buttonpressed");
style.font = black;
button = new TextButton("Play!", style);