# How to Change Your BeamMP Server Name (/docs/beammp/rename-server)



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

The server name is what players see when browsing for servers. BeamMP supports color codes and formatting in names.

<Tabs items={['Via Startup Tab', 'Via Config File']}>
  <Tab value="Via Startup Tab">
    <Steps>
      <Step>
        Open Startup settings [#open-startup-settings]

        In the [XGamingServer Panel](https://panel.xgamingserver.com), click **Startup** in the sidebar.
      </Step>

      <Step>
        Change the server name [#change-the-server-name]

        Find the **Server Name** variable and type your new name. Max 250 characters.

        {/* Screenshot needed: Startup tab showing Server Name field */}
      </Step>

      <Step>
        Restart [#restart]

        Go to **Console** and restart your server.
      </Step>
    </Steps>
  </Tab>

  <Tab value="Via Config File">
    In **Files**, open `ServerConfig.toml`:

    ```toml
    Name = "My BeamMP Server"
    ```

    Save and restart.
  </Tab>
</Tabs>

Using Color Codes [#using-color-codes]

BeamMP supports caret (`^`) color codes in server names. See [Color Codes](/docs/beammp/color-codes) for the full reference.

Example:

```toml
Name = "^4XGaming ^f| ^2BeamMP ^fServer"
```

This displays as: blue "XGaming", white "|", green "BeamMP", white "Server".

Related Guides [#related-guides]

* [Color Codes](/docs/beammp/color-codes)
* [Server Configuration](/docs/beammp/server-config)
