Configurations

The Config file in the script contains all the settings you can modify to adjust the character selection experience to your server's needs.

QB Settings

Config.QB = {
    SkipSelection = true,
    apartmentsStarting = true,
}
  • SkipSelection : If set to true, players will bypass the spawn selector screen.

  • apartmentsStarting : Determines whether players spawn in their apartment by default.

ESX Settings

Config.ESX = {
    PREFIX = "char",
    DefaultSkin = { ... }
}
  • PREFIX : Prefix used for character identifiers (e.g., char1, char2).

  • DefaultSkin : Defines the default appearance for male (m) and female (f) characters. This includes facial features, clothing, and accessories.

Default Spawn

Config.DefaultSpawn = vector4(7.74, 529.90, 170.62, 207.23)

Weather & Environment

UI Settings

Character Slots

Defines the positions, animations, and camera settings for each character slot. You can use either manual or automatic camera configurations.

Manual Camera Example:

Automatic Camera Example:

Main Camera

  • mainCam : Position and rotation of the main camera.

  • mainFov : Field of view for the main camera.

  • fixCam : Automatically frame all characters if set to true.

  • mainCamRotation : Rotation of the main camera when fixCam is false.

  • mainCamBefore : The position of where the camera starts on intro.

  • mainCamRotationBefore : The rotation of where the camera starts on intro.

  • mainCamTransitionTime : How long it takes (in seconds) for intro camera to transition from "before" state to the main state.

Edit Permissions

What players can and can't edit. set all to false for manual permissions or to remove the button completely.

UI Appearance

  • colors : UI Colors

  • loading : The type of loading screen you want to use.

    • svg → smooth fill animation

    • png → zoom effect

    • text → expanding loading text

  • effects: The full screen visual effects

  • styles : The shape of character slots

Last updated