Jump to content
LOOKING FOR ROBLOX ASSETS? VISIT ROBLOXBAY.COM! ×
THE BEST DISCORD BACKUP BOT | PRESERVE YOUR DISCORD SERVER! ×

RobloxBay

Visit Site

FiveSecured

 

Stop shipping plaintext. FiveSecured encrypts, obfuscates, and licenses your Lua resources so customers run your work without ever holding your source.

Try for Free
  • 5decrypt-banner-v1.thumb.png.262b7992a5a4de66fd6633bf48af6c1c.png

[RARE] Advanced Queue System | Windy City / YBN Inspired 1.0.0

   (0 reviews)

1 Screenshot

About This File

[RARE] Advanced Queue System | Windy City / YBN Inspired

 

 

Edited by LauncherLeaks
NO DISCORDS

  • Cringe Bro 1

User Feedback

Recommended Comments

Astro555

Posted

The script is not incomplete

mysticseasonz

Posted (edited)

@Astro555 You should try reading readme 

Edited by mysticseasonz
banshee_bey

Posted

config is missing bro

Morfar22

Posted

On 11/24/2025 at 10:47 PM, banshee_bey said:

config is missing bro

Config = {}
 
Config.General = {
    DiscordServerID = "1390900215224995880",        -- Din Discord server ID
    DiscordBotToken = "OTI0MzQyMTcyMTM0ODE3Nzky.GFTilt.oIPxnNjUJFHbmuXr_pzBTUs9z7VzcQYpQrthfU", -- Bot token fra Discord Developer Portal
    WebhookURL = "https://discord.com/api/webhooks/1445347092687097937/nZ1-pZ9Bp2nqeKrMzIaKKy2u5BBFW8_SO1AG4-818HswazPPhgH5oqZtrcRcviejSpMV", -- Discord webhook URL
    MaxSlotsConvar = "sv_maxclients",               -- Convar for max spillere (standard FiveM)
    DefaultMaxSlots = 48                            -- Fallback hvis convar ikke findes
}
 
Config.Roles = {
    WhitelistedDiscordIDs = {
        "1430268967548620913",   -- Admin/Staff Discord IDs (ingen checks)
        "1430268974054117446"
    },
    RequiredRoles = {
        "1430268974054117446"
    },
    QueuePrio = {                                   -- Højere tal = højere prioritet
        ["1430268961844629547"] = 5,     -- VIP rolle
        ["1430268967548620913"] = 3,     -- Member rolle  
        ["1430268974054117446"] = 1      -- Standard
    }
}
 
Config.UI = {
    LoadingScreen = {
        ImagePath = "https://r2.fivemanage.com/AFPKRLQB2zdY4w904aT3e/AdventureRP1.png",
        ImageSize = "Large",
        ImageAltText = "Server Logo",
        Text = "Validerer din konto",
        TextSize = "Large",
        TextWeight = "Bolder",
        TextColor = "Light",
        MinDots = 3,
        MaxDots = 6
    },
   
    QueueScreen = {
        HeaderText = "Velkommen til køen! 🎮",
        HeaderTextSize = "ExtraLarge",
        HeaderTextWeight = "Bolder",
        HeaderTextColor = "Light",
       
        Avatar = {
            Size = "Medium",
            AltText = "Profilbillede",
            DefaultPath = "https://cdn.discordapp.com/embed/avatars/0.png",
            FallbackNickname = "Spiller"
        },
       
        WelcomeMessage = {
            NicknameTextSize = "Large",
            NicknameTextWeight = "Bolder",
            NicknameTextColor = "Light",
            WelcomeText = "Du er nr.",
            WelcomeTextSize = "Medium",
            WelcomeTextWeight = "Default",
            WelcomeTextColor = "Light",
            WelcomeTextIsSubtle = false
        },
       
        QueueInfo = {
            PositionLabel = "Position:",
            PositionLabelSize = "Medium",
            PositionLabelWeight = "Bolder",
            PositionLabelColor = "Light",
            PositionValueSize = "Large",
            PositionValueWeight = "Bolder",
            PositionValueColor = "Accent",
           
            PriorityLabel = "Prioritet:",
            PriorityLabelSize = "Medium",
            PriorityLabelWeight = "Bolder",
            PriorityLabelColor = "Light",
            PriorityValueSize = "Medium",
            PriorityValueWeight = "Bolder",
            PriorityValueColor = "Good",
           
            WaitTimeLabel = "Ventetid:",
            WaitTimeLabelSize = "Medium",
            WaitTimeLabelWeight = "Bolder",
            WaitTimeLabelColor = "Light",
            WaitTimeValueSize = "Large",
            WaitTimeValueWeight = "Bolder",
            WaitTimeValueColor = "Attention"
        },
       
        QueueMessage = {
            ImagePath = "https://i.imgur.com/queue-icon.png",
            ImageSize = "Small",
            ImageAltText = "Kø ikon",
            MainText = "Serveren er fuld",
            MainTextSize = "Large",
            MainTextWeight = "Bolder",
            MainTextColor = "Light",
            SubText = "Du bliver automatisk tilkoblet når der er plads.",
            SubTextSize = "Medium",
            SubTextWeight = "Default",
            SubTextColor = "Attention",
            SubTextIsSubtle = true
        },
       
        Verifications = {
            Title = "Tjekker...",
            TitleSize = "Medium",
            TitleWeight = "Bolder",
            TitleColor = "Attention",
            StatusTitle = "Status:",
            StatusTitleSize = "Medium",
            StatusTitleWeight = "Bolder",
            StatusTitleColor = "Light",
            Checks = {
                {
                    Enabled = true,
                    Name = "Discord Server",
                    Delay = 2,
                    TextSize = "Small",
                    TextWeight = "Default",
                    TextColor = "Light",
                    CheckingStatusColor = "Attention",
                    PassedStatusColor = "Good"
                },
                {
                    Enabled = true,
                    Name = "Rolle verificering",
                    Delay = 4,
                    TextSize = "Small",
                    TextWeight = "Default",
                    TextColor = "Light",
                    CheckingStatusColor = "Attention",
                    PassedStatusColor = "Good"
                }
            },
            StatusPassed = " Godkendt",
            StatusChecking = " Checker..."
        },
       
        Buttons = {
            Forums = {
                Text = "Forum",
                URL = "https://adventurerp.dk/",
                Style = "positive"
            },
            Discord = {
                Text = "Discord",
                URL = "https://discord.gg/aFAMjzthzX",
                Style = "positive"
            }
        }
    }
}
 
Config.Queue = {
    MinWaitTime = 10,       -- Minimum ventetid (sekunder)
    MaxWaitTime = 30,       -- Maximum ventetid (sekunder)
    HaltDuration = 3        -- Pause køen i X sekunder når spiller joiner
}
 
Config.UsernameBlacklist = {
    "hacker",
    "cheat",
    "aimbot",
    "esp",
    "nigger",
    "faggot"
}
 
Config.AlertMessages = {
    WebhookUsername = "🚫 Anti-Cheat Alert",
    AlertTitle = "🚫 Spilleren blev kicked",
    AlertDescriptionTemplate = "**%s** blev kicked: %s",
    AlertColor = 16711680, -- Rød
    InvalidUsernameReason = "Ugyldigt brugernavn",
    NoDiscordIDReason = "Ingen Discord ID",
    NotInDiscordReason = "Ikke i Discord server",
    MissingRoleReason = "Manglende rolle"
}
 
Config.ErrorMessages = {
    KickInvalidUsername = "Ugyldigt brugernavn opdaget.",
    KickNoDiscord = "Du skal have Discord forbundet og være i vores server.",
    KickNoRole = "Du mangler den nødvendige rolle på Discord.",
    DiscordCheckError = "Discord verificering fejlede (kode: %d)"
}
ClassicSenior

Posted

On 12/16/2025 at 1:08 PM, Morfar22 said:
Config = {}
 
Config.General = {
    DiscordServerID = "1390900215224995880",        -- Din Discord server ID
    DiscordBotToken = "OTI0MzQyMTcyMTM0ODE3Nzky.GFTilt.oIPxnNjUJFHbmuXr_pzBTUs9z7VzcQYpQrthfU", -- Bot token fra Discord Developer Portal
    WebhookURL = "https://discord.com/api/webhooks/1445347092687097937/nZ1-pZ9Bp2nqeKrMzIaKKy2u5BBFW8_SO1AG4-818HswazPPhgH5oqZtrcRcviejSpMV", -- Discord webhook URL
    MaxSlotsConvar = "sv_maxclients",               -- Convar for max spillere (standard FiveM)
    DefaultMaxSlots = 48                            -- Fallback hvis convar ikke findes
}
 
Config.Roles = {
    WhitelistedDiscordIDs = {
        "1430268967548620913",   -- Admin/Staff Discord IDs (ingen checks)
        "1430268974054117446"
    },
    RequiredRoles = {
        "1430268974054117446"
    },
    QueuePrio = {                                   -- Højere tal = højere prioritet
        ["1430268961844629547"] = 5,     -- VIP rolle
        ["1430268967548620913"] = 3,     -- Member rolle  
        ["1430268974054117446"] = 1      -- Standard
    }
}
 
Config.UI = {
    LoadingScreen = {
        ImagePath = "https://r2.fivemanage.com/AFPKRLQB2zdY4w904aT3e/AdventureRP1.png",
        ImageSize = "Large",
        ImageAltText = "Server Logo",
        Text = "Validerer din konto",
        TextSize = "Large",
        TextWeight = "Bolder",
        TextColor = "Light",
        MinDots = 3,
        MaxDots = 6
    },
   
    QueueScreen = {
        HeaderText = "Velkommen til køen! 🎮",
        HeaderTextSize = "ExtraLarge",
        HeaderTextWeight = "Bolder",
        HeaderTextColor = "Light",
       
        Avatar = {
            Size = "Medium",
            AltText = "Profilbillede",
            DefaultPath = "https://cdn.discordapp.com/embed/avatars/0.png",
            FallbackNickname = "Spiller"
        },
       
        WelcomeMessage = {
            NicknameTextSize = "Large",
            NicknameTextWeight = "Bolder",
            NicknameTextColor = "Light",
            WelcomeText = "Du er nr.",
            WelcomeTextSize = "Medium",
            WelcomeTextWeight = "Default",
            WelcomeTextColor = "Light",
            WelcomeTextIsSubtle = false
        },
       
        QueueInfo = {
            PositionLabel = "Position:",
            PositionLabelSize = "Medium",
            PositionLabelWeight = "Bolder",
            PositionLabelColor = "Light",
            PositionValueSize = "Large",
            PositionValueWeight = "Bolder",
            PositionValueColor = "Accent",
           
            PriorityLabel = "Prioritet:",
            PriorityLabelSize = "Medium",
            PriorityLabelWeight = "Bolder",
            PriorityLabelColor = "Light",
            PriorityValueSize = "Medium",
            PriorityValueWeight = "Bolder",
            PriorityValueColor = "Good",
           
            WaitTimeLabel = "Ventetid:",
            WaitTimeLabelSize = "Medium",
            WaitTimeLabelWeight = "Bolder",
            WaitTimeLabelColor = "Light",
            WaitTimeValueSize = "Large",
            WaitTimeValueWeight = "Bolder",
            WaitTimeValueColor = "Attention"
        },
       
        QueueMessage = {
            ImagePath = "https://i.imgur.com/queue-icon.png",
            ImageSize = "Small",
            ImageAltText = "Kø ikon",
            MainText = "Serveren er fuld",
            MainTextSize = "Large",
            MainTextWeight = "Bolder",
            MainTextColor = "Light",
            SubText = "Du bliver automatisk tilkoblet når der er plads.",
            SubTextSize = "Medium",
            SubTextWeight = "Default",
            SubTextColor = "Attention",
            SubTextIsSubtle = true
        },
       
        Verifications = {
            Title = "Tjekker...",
            TitleSize = "Medium",
            TitleWeight = "Bolder",
            TitleColor = "Attention",
            StatusTitle = "Status:",
            StatusTitleSize = "Medium",
            StatusTitleWeight = "Bolder",
            StatusTitleColor = "Light",
            Checks = {
                {
                    Enabled = true,
                    Name = "Discord Server",
                    Delay = 2,
                    TextSize = "Small",
                    TextWeight = "Default",
                    TextColor = "Light",
                    CheckingStatusColor = "Attention",
                    PassedStatusColor = "Good"
                },
                {
                    Enabled = true,
                    Name = "Rolle verificering",
                    Delay = 4,
                    TextSize = "Small",
                    TextWeight = "Default",
                    TextColor = "Light",
                    CheckingStatusColor = "Attention",
                    PassedStatusColor = "Good"
                }
            },
            StatusPassed = " Godkendt",
            StatusChecking = " Checker..."
        },
       
        Buttons = {
            Forums = {
                Text = "Forum",
                URL = "https://adventurerp.dk/",
                Style = "positive"
            },
            Discord = {
                Text = "Discord",
                URL = "https://discord.gg/aFAMjzthzX",
                Style = "positive"
            }
        }
    }
}
 
Config.Queue = {
    MinWaitTime = 10,       -- Minimum ventetid (sekunder)
    MaxWaitTime = 30,       -- Maximum ventetid (sekunder)
    HaltDuration = 3        -- Pause køen i X sekunder når spiller joiner
}
 
Config.UsernameBlacklist = {
    "hacker",
    "cheat",
    "aimbot",
    "esp",
    "nigger",
    "faggot"
}
 
Config.AlertMessages = {
    WebhookUsername = "🚫 Anti-Cheat Alert",
    AlertTitle = "🚫 Spilleren blev kicked",
    AlertDescriptionTemplate = "**%s** blev kicked: %s",
    AlertColor = 16711680, -- Rød
    InvalidUsernameReason = "Ugyldigt brugernavn",
    NoDiscordIDReason = "Ingen Discord ID",
    NotInDiscordReason = "Ikke i Discord server",
    MissingRoleReason = "Manglende rolle"
}
 
Config.ErrorMessages = {
    KickInvalidUsername = "Ugyldigt brugernavn opdaget.",
    KickNoDiscord = "Du skal have Discord forbundet og være i vores server.",
    KickNoRole = "Du mangler den nødvendige rolle på Discord.",
    DiscordCheckError = "Discord verificering fejlede (kode: %d)"
}

Bro just leaked his bot token, crazy

Morfar22

Posted

ehh the token is changes lol

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.


×
×
  • Create New...

Important Information

By continuing on Launcherleaks.net, you agree to our Terms of Use, Guidelines & Privacy Policy