# How to Change the Mobile Interaction Button

You can customize the mobile interaction button by using `App.loadSpriteSheet`.

> Note: The size of the mobile button image is 180 x 180 px.

```
// let button_image = App.loadSpritesheet("button_image.png");
let button;
App.onStart.Add(function () {
        // add button
        button = App.addMobileButton(8, 145, 75, function (player) {
        App.sayToAll(`${player.name}, has tapped the button.`)
	});
	
	button.image = button_image;
	button.sendUpdated();
});
```

<figure><img src="https://3059601135-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MkvEvcz_LX5eDyvl13E%2Fuploads%2FDtkWh7r6ajXpZ8rZvLYT%2Fimage.png?alt=media&#x26;token=31bb6f68-8296-4880-b6a3-22df2cd66eef" alt=""><figcaption><p>Example of the Updated Mobile Button</p></figcaption></figure>
