🪶Config Settings

FRKN Text Configurations

Color Settings

You can add all kinds of colors here as you like. To add a new color, copy a color, rename it and use it. For example, you have added a new color called pink and you want to use it, all you have to do is write pink at the end of the export as shown below

    exports["frkn-text"]:openTextUi(item,v.position,3,"green")
FRKN = {
    vehicleControl = true ,-- if this is turned on, the vehicle control menu you see at the bottom will be available on your server 
    --vehicle control : https://ibb.co/6RbFRs2
    colorData = {
        blue = {
            background = "rgb(50, 56, 68)",
            keybox = "background: radial-gradient(83% 83% at 50% 50%,rgb(1, 104, 76),rgb(7, 197, 153));",
            border = "1px solid #08c098",
            color = "#08c098",
            iconcolor = "#08c098",
            filterShadow = "drop-shadow(0px 0px 10px #08c098)"
        },
        white = {
            background = "rgb(50, 56, 68)",
            keybox = "radial-gradient(83% 83% at 50% 50%,rgb(255, 255, 255),rgb(100, 97, 97));",
            border = "1px solid #ffffff",
            color = "black",
            iconcolor = "white",
            filterShadow = "drop-shadow(0px 0px 10px white)"
        },
        pink = {
            background = "rgb(50, 56, 68)",
            keybox = "radial-gradient(83% 83% at 50% 50%,rgb(156, 49, 83),rgb(249, 95, 141))",
            border = "1px solid #F95F8D",
            color = "white",
            iconcolor = "#c00892",
            filterShadow = "drop-shadow(0px 0px 10px #F95F8D)"
        }
    },
}

Vehicle Control

 FRKN = {
    vehicleControl = true ,-- if this is turned on, the vehicle control menu you see at the bottom will be available on your server 
    --vehicle control : https://ibb.co/6RbFRs2
    colorData = {
        blue = {
            background = "rgb(50, 56, 68)",
            keybox = "background: radial-gradient(83% 83% at 50% 50%,rgb(1, 104, 76),rgb(7, 197, 153));",
            border = "1px solid #08c098",
            color = "#08c098",
            iconcolor = "#08c098",
            filterShadow = "drop-shadow(0px 0px 10px #08c098)"
        },
        white = {
            background = "rgb(50, 56, 68)",
            keybox = "radial-gradient(83% 83% at 50% 50%,rgb(255, 255, 255),rgb(100, 97, 97));",
            border = "1px solid #ffffff",
            color = "black",
            iconcolor = "white",
            filterShadow = "drop-shadow(0px 0px 10px white)"
        },
        pink = {
            background = "rgb(50, 56, 68)",
            keybox = "radial-gradient(83% 83% at 50% 50%,rgb(156, 49, 83),rgb(249, 95, 141))",
            border = "1px solid #F95F8D",
            color = "white",
            iconcolor = "#c00892",
            filterShadow = "drop-shadow(0px 0px 10px #F95F8D)"
        }
    },
}

⚠️ If you want the car control feature you see at the bottom and in the script video to be active, you have to make vehicleControl true.)

Last updated