βš™οΈConfiguration

β€’ Custom Edits: You can freely change the branding, the colors or translate the texts. β€’ Framework: Standalone β€’ Config option for the music to be played outside or inside vehicle only. β€’ You can disable the drift mode in the config. β€’ The neon lights can also be disabled so it works only if the player installs the neons at the mechanic workshop. β€’ The loops and updates intervals can all be configured to optimize the script to your liking. β€’ Command and keybind can be changed β€’ You can easily blacklist a vehicle class to not access the vehicle menu such as Trains. β€’ Custom event to open the menu in your Radial Menu or any other script.

How to make UI and Menu smaller

Under style.css look for #zr-container and add transform: scale(0.8);

Adjust the 0.8 number to your liking.

#zr-container {
    display: none;
    gap: 36px;
    width: min-content;
    height: 802px;
    padding: 24px;
    background-color: var(--zr-rich-black);
    border-radius: 36px;
    overflow: hidden;
    resize: both;
    max-width: max-content;
    min-width: 655px;
    max-height: 802px;
    min-height: 602px;
    transform: scale(0.8);
}

Lua config file

Last updated