# How to Create a GSLT for Your Unturned Server (/docs/unturned/gslt-setup)



import { Step, Steps } from 'fumadocs-ui/components/steps';

A **GSLT (Game Server Login Token)** is required for your Unturned server to appear reliably in the in-game server browser. Without one, players may not be able to find your server.

Create a GSLT [#create-a-gslt]

<Steps>
  <Step>
    Open the Steam GSLT page [#open-the-steam-gslt-page]

    Go to [Steam Game Server Account Management](https://steamcommunity.com/dev/managegameservers). Log in with the Steam account that owns the server.
  </Step>

  <Step>
    Create a new token [#create-a-new-token]

    Enter the App ID **304930** (Unturned) and a memo to identify this server. Click **Create**.
  </Step>

  <Step>
    Copy the token [#copy-the-token]

    Copy the generated token string.
  </Step>

  <Step>
    Add to Commands.dat [#add-to-commandsdat]

    In the [XGamingServer Panel](https://panel.xgamingserver.com), click **Files**, navigate to `Servers/<ServerName>/Server/`, and open `Commands.dat`. Add:

    ```
    Login_Token YOUR_TOKEN_HERE
    ```
  </Step>

  <Step>
    Restart the server [#restart-the-server]

    Restart from **Console**. Your server should now appear in the browser within a few minutes.
  </Step>
</Steps>

Important Notes [#important-notes]

* Each token is tied to **one server**. Don't reuse tokens across multiple servers
* If your token is banned (e.g., for running cheats), create a new one
* The Steam account creating the token does **not** need to own Unturned — the game is free-to-play
* Tokens don't expire but can be revoked from the management page

Related Guides [#related-guides]

* [Server Configuration](/docs/unturned/server-config)
* [Connect to Your Server](/docs/unturned/join-server)
