Biyei Scripts

Configuration

biyei_utils (language)

Language is shared across every Biyei script — set it once here.

biyei_utils (language)Lua
---- Language System----
Config.Lang = 'es' 
---=========================---
-- 'es' = Español | 'en' = English | 'fr' = Français | 'pt' = Português | 'de' = Deutsch | 'ru' = Русский
---=========================---

config.lua

config.luaLua
Config = {}

Config.Debug = false

Config.OpenCommand = 'skinchanger'

Config.Permissions = {
    'license:e5b673a44035ffa5c4333b413f995cb309818a13'
}

-- One entry per weapon model this script can re-skin: { Model label, Hash, Texture_File, Texture_Name }.
-- Ships pre-populated with every vanilla GTA V weapon (pistols through melee) — trim or extend the list to taste.
Config.Models = {
    {Model = "Pistol", Hash = "weapon_pistol", Texture_File = "w_pi_pistol", Texture_Name = "w_pi_pistol"},
    {Model = "Combat Pistol", Hash = "weapon_combatpistol", Texture_File = "w_pi_combatpistol", Texture_Name = "w_pi_combatpistol"},
    {Model = "Carbine Rifle", Hash = "weapon_carbinerifle", Texture_File = "w_ar_carbinerifle", Texture_Name = "w_ar_carbinerifle"},
    {Model = "Knife", Hash = "weapon_knife", Texture_File = "w_me_knife_01", Texture_Name = "w_camo_1"},
    -- ...and the rest of the vanilla weapon list (shotguns, SMGs, rifles, throwables, melee).
}