> For the complete documentation index, see [llms.txt](https://mstudio-1.gitbook.io/mstudio/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mstudio-1.gitbook.io/mstudio/kz-resources/editor-14/config.md).

# Config

{% code title="config.js" %}

```javascript
const Config = {
    serverName: "MSTUDIO",
    welcomeText: "We Create Worlds. We Elevate Gameplay. Beyond Every Limit.",
    logo: "img/logo.png",

    // BACKGROUND VIDEO
    videoType: "local", // "youtube" or "local"
    youtubeID: "R5dlJ_uDcGc",
    localVideo: "video/background.webm",

    // SOCIAL
    socialLinks: [
        { icon: "fab fa-discord", url: "https://discord.gg/-YOURLINK" },
        { icon: "fab fa-youtube", url: "https://youtube.com/@YOURLINK" },
        { icon: "fab fa-tiktok", url: "https://tiktok.com/@-YOURLINK" },
    ],

    // TEAM MEMBERS
    teamMembers: [
        {
            name: "KryZan",
            role: "Lead Developer",
            image: "img/team/owner.png"
        },
        {
            name: "Frarom_Tv",
            role: "Project Manager",
            image: "img/team/user.png"
        },
        {
            name: "YOUR NAME",
            role: "Community Manager",
            image: "img/team/staff.png"
        }
    ],

    // MUSIC
    musicEnabled: true,
    musicList: [
        {
            title: "HAA",
            artist: "Batuflex",
            src: "music/song2.mp3",
            image: "img/music/HAA.png"
        },
        {
            title: "Favelas",
            artist: "Peppe Soks",
            src: "music/song1.mp3",
            image: "img/music/favelas.png"
        },
        {
            title: "Redrum",
            artist: "21 Savage",
            src: "music/song3.mp3",
            image: "img/music/redrum.png"
        }
    ],
    musicVolume: 0.6, // Default volume

    // COLOUR OF YOUR SERVER
    accentColor: "#0059ffff",
    backgroundTint: "rgba(0, 0, 0, 0.7)"
};
```

{% endcode %}
