> For the complete documentation index, see [llms.txt](https://docs.airship.gg/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.airship.gg/publishing/create-dashboard-game-cms/game-loading-screens.md).

# Game Loading Screens

You can customize what users see while your game is downloading and loading. These also show up when users transport to different servers within your game.&#x20;

The image marked default will be the image shown unless you specify a different image via TS Code.

<figure><img src="/files/U8V47T2y7iOCNSS7VMPa" alt=""><figcaption></figcaption></figure>

Use the Image ID to set an image during server transports:

```typescript
const config: AirshipGameTransferConfig = {
    loadingScreenImageId: "123123123123",
}
Platform.Server.Transfer.TransferToServer(player, serverId, config);
```

For more information on server transfers see the [Platform Server Transfers](/platform-services/server-transfers.md) page
