AKL DOCUMENTATION
  • 👋Introduction
  • GUSTI RESOURCES
    • ⛏️gusti-minerjob
      • Setup
      • Update
    • 🚙gusti-membershipvehicle
    • 🍗gusti-butcherjob
    • 📣gusti-iosnotify
      • Setup
      • Usage
    • 🌐gusti-status server web
      • Setup
    • ⏳gusti-loadscreen
      • Setup
      • Building
    • 💎gusti-vipmenu
      • Setup
    • 🛠️gusti-welderloot
      • Common Issues
      • Setup
    • 🏃‍♂️gusti-boostsprint
      • Setup
    • 🚀gusti-boostfps
    • 📹gusti-cctv
      • Setup
    • 📅gusti-datetime
      • Setup
    • ☢️gusti-radzone
      • Setup
    • 🔫gusti-hidereticle
    • 🚗gusti-givevehicle
      • Setup
      • Usage
    • 💥gusti-duarmemek
      • Setup
      • Usage
  • 🛡️gusti-vipsystem
    • Setup
    • Usage
  • CODE SNIPPETS
    • Fix Animasi
    • Fix Spam Punch
    • Boost Fps
    • Disable Ambient
    • Send Webhook Messages
    • Spawns GTA V Online Train On Fivem
    • Removing / Adding Limit Map
    • Blacklist Name
    • Item Probability
    • Anti Duplicate Vehicle
    • How To Unbind Keys
Powered by GitBook
On this page
  • Installation
  • Configuration
  • Logo
  • Server Name
  • Description
  • Backsound
  1. GUSTI RESOURCES
  2. gusti-loadscreen

Setup

Previousgusti-loadscreenNextBuilding

Last updated 2 years ago

Installation

  • Extract file

  • Copy / cut gusti-loadscreen to your server resources folder

  • Open server.cfg

  • Add gusti-loadscreen script with ensure gusti-loadscreen in server.cfg

  • Start server / Restart server

  • Finished

  • gusti-loadscreen installed successfully

Configuration

Open the config.json file located in the gusti-loadscreen/web folder to configure

Logo

To change the logo, you can view it or open the Logo.tsx file located at web/src/components

import Logo_ from '../assets/logo.png'

Copy/cut your new logo into web/src/assets and match the file name to the one imported

Example

import Logo_ from '../assets/new_logo.png'

Logo name cannot contain spaces!

Server Name

{
    "name_server": "Your Server Name"
}

Description

{
    "description": "Your Server Description"
}

Backsound

To change the backsound, you can view it or open the Audio.tsx file located on web/src/components

import Sound from '../assets/backsound.mp3'

Copy/cut your new background sound into web/src/assets and adjust the file name to the one imported

Example

import Sound from '../assets/new_backsound.mp3'

Backsound name cannot contain spaces!

Once everything is setup, the script won't work if you haven't built it to production, so you have to negbuild it first before using it!

⏳
Building