Standalone

Agency-Elevator

Realistic elevator system with Liquid Glass UI, floor selection, smooth transitions, configurable markers, sound effects, and travel delay.

v1.1.8Free2 Pages
Agency-Elevator

01 Configuration

Complete config.lua for Agency-Elevator. All options documented via inline comments.

Download config.lua
Config = {}

-- Language: 'en' | 'de' | 'fr' | 'es' | 'pt' | 'it' | 'nl' | 'pl' | 'tr' | 'cs' | 'ro' | 'ru' | 'sv'
Config.Locale = 'en'

-- Framework: 'auto' | 'qb' | 'esx' | 'standalone'
Config.Framework = 'auto'

-- Text UI system: 'default' | 'jg-textui'
-- default: Built-in 3D text drawn natively
-- jg-textui: https://github.com/jgscripts/jg-textui
Config.TextUISystem = 'default'

-- Notification system: 'agency-notify' | 'framework'
-- agency-notify (default): https://agency-script.tebex.io/package/6937769
-- framework: Uses QBCore/ESX built-in notifications
-- If standalone, agency-notify is required!
Config.NotifySystem = 'agency-notify'

-- Key to interact with elevator (default: E)
Config.InteractKey = 38 -- E

-- Distance to show marker / interact
Config.MarkerDistance = 15.0
Config.InteractDistance = 2.0

-- Marker settings
Config.Marker = {
    type = 20,
    scale = vec3(0.5, 0.5, 0.3),
    color = {r = 59, g = 130, b = 246, a = 180},
    bobUpAndDown = true,
    rotate = true,
}

-- Travel time in ms (simulated elevator travel)
Config.TravelTime = 1000

-- Screen effect during travel
Config.ScreenEffect = true

-- Ding sound on arrival (GTA native sound)
Config.DingSound = true

-- Configurator command (admin only)
Config.ConfiguratorCommand = 'aelevator'

-- Ace permission for configurator (set to false to allow everyone)
Config.ConfiguratorPermission = 'command.aelevator'

Need help? Join our Discord community for support!

Join Discord