--- title: keyboardButtonGame description: Button to start a game image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: keyboardButtonGame [Back to constructors index](index.md) Button to start a game ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |text|[string](../types/string.md) | Yes|Button text| ### Type: [KeyboardButton](../types/KeyboardButton.md) ### Example: ```php $keyboardButtonGame = ['_' => 'keyboardButtonGame', 'text' => 'string']; ``` Or, if you're into Lua: ```lua keyboardButtonGame={_='keyboardButtonGame', text='string'} ```