FiveScripts
  • FREE RELEASES
    • Clothing Permission System
      • Installation
      • Config
      • Command
  • Loading Screen
    • Installation
    • Config
  • PAID RELEASES
    • Coming Soon!
Powered by GitBook
On this page
  1. Loading Screen

Config

To configure the script, edit the settings located in web/script.js.

web/script.js
const config = ref({
    dark: true, // true for dark overlays, false for light overlays (Buttons)
    textColor: `rgba(252,43,43,0.8)`,
    theme: [252,43,43], // R, G, B Values
    background: {
        image: false, // directory / false
        video: 'assets/bg.mp4', // or false | Note: image must be set to false for this to work
    },
    logo: 'assets/logo.png', // Directory / false
    logoSize: '15vw', // This is basically the width of the logo / height is auto
    play: true, // [true] Play on default | [false] Don't play
    muted: false, // [true] Muted on default | [false] Not Muted
    volume: 10, // Default Volume (10-100)
    current: 0, // DO NOT TOUCH
    list: [ // Add more
        {
            title: "Big Dawgs",
            author: "Hanumankind",
            music: "assets/music/bigdawgs.mp3",
            image: "assets/music/bigdawgs.png",
        },
        {
            title: "Mercury",
            author: "Ghostemane",
            music: "assets/music/mercury.mp3",
            image: "assets/music/mercury.png",
        },
    ],
});
PreviousInstallationNextComing Soon!

Last updated 8 days ago