How I can combine the text properties in a variable for using globally? Thanks you in advance for helping ! var text = game.add.text(game.world.centerX, game.world.centerY + 50, 'Challenge your friends!'); text.font = 'Arial'; // here it is the property of phaser text.fontSize = '12px'; // here it is the property of phaser text.align = 'center'; // here it is the property of phaser text.fontWeight = 'bold'; // here it is the property of phaser