βš™οΈFull Configuration Breakdown

🌍 Server-Side Configuration (config.lua)

Default Key Testing

Config.DefaultKey = 'E' -- Default key to show in notifications if none specified

Test Point

Config.EnableTestPoint = true -- Set to false to disable the test point

Config.TestPoint = {
    coords = vector3(-269.4, -955.3, 30.2), -- Coordinates for the test point
    distance = 3.5, -- Distance threshold for displaying the notification
    helpText = "Press to interact", -- Text displayed in the notification
    marker = {
        type = 1, -- Type of marker (1 = arrow)
        size = vector3(3.0, 3.0, 0.5), -- Size of the marker
        color = {r = 0, g = 255, b = 0, a = 25}, -- Color of the marker (green with transparency)
        bobUpAndDown = false, -- Whether the marker should bob up and down
        faceCamera = false, -- Whether the marker should face the camera
        rotate = false -- Whether the marker should rotate
    }
}

Text Cleaning Function


🎨 Frontend UI Configuration (html/config.js)

Notification Settings

Appearance Settings

Button Size

Glass Effect

Glow Effect


πŸ”„ Usage Examples

Basic Usage

Event Trigger

Alternative Event

Last updated