⚙️Configuration

Configuration guide of Loading Screen V2 System.


Config.lua

Config = {}
Config.Framework = "auto" -- Determines which framework to use: auto, esx, qb, qbox

-- ============================================
-- THEME CONFIGURATION
-- ============================================
-- Available themes: blue, purple, green, yellow, red, pink, silver
-- Change the theme below to customize your loading screen
-- You can add more themes by creating new files in html/assets/css/themes/
Config.Theme = "pink" -- blue, purple, green, yellow, red, pink, silver
Config.ServerName = "STG" -- Set your server name here

Config.staffList = {
    [1] = {
        name = "GENER4L",
        rank = "Owner",
        discord = 397358061548863498 -- discord id, https://support.discord.com/hc/en-us/articles/206346498-Where-can-I-find-my-User-Server-Message-ID
    },
    [2] = {
        name = "Serhildan",
        rank = "Recorder",
        discord = 1312077715926421635 -- discord id
    },
    [3] = {
        name = "bai",
        rank = "Manager",
        discord = 1025553922565357648 -- discord id
    },
    [4] = {
        name = "STG Assistant",
        rank = "Bot",
        discord = 789872536858787870 -- discord id
    },
}

Config.musicList = {
    [1] = {
        url = "assets/songs/impala.mp3",
        image = "assets/songs/images/impala.jpg",
        name = "Let It Happen",
        singer = "Tame Impala"
    },
    [2] = {
        url = "assets/songs/army.mp3",
        image = "assets/songs/images/army.jpg",
        name = "Seven Nation Army",
        singer = "The White Stripes"
    },
}

Config.socialMedia = {
    ["discord"] = {
        label = "DISCORD",
        text = "stg",
        icon = "fab fa-discord",
        link = "https://discord.gg/stg"
    },
    ["x"] = {
        label = "X",
        text = "stgstudios",
        icon = "fab fa-x-twitter",
        link = "https://x.com/stgstudios"
    },
    ["instagram"] = {
        label = "INSTAGRAM",
        text = "stg",
        icon = "fab fa-instagram",
        link = "https://instagram.com/stg"
    },
    ["youtube"] = {
        label = "YOUTUBE",
        text = "STGScripts",
        icon = "fab fa-youtube",
        link = "https://youtube.com/stgscripts"
    },
}

Last updated