Script Fake ID

Configuration (config.lua)


Config  = {}


----- logs -----

Config.Logs = true --- If true then set your webhooks "Config.WebhookName" and "Config.WebhookSurname" and you are set to go...

Config.BotName = 'Name-Logs' --- BOT NAME FOR NAME CHANGE
Config.WebhookName = 'Your_Webhook' --- Webhook for name change

Config.BotNameForSurname = 'Surname-Logs' --- BOT NAME FOR LASTNAME CHANGE
Config.WebhookSurname = 'Your_Webhook' --- Webhook for lastname change

----- ped ----

Config.Ped = {
    model = 'a_m_m_og_boss_01', 
    coords = vec4(1536.9211, 3593.3831, 38.7665, 212.6412)
}


------ target -------

Config.Target = {
    labelthirdeye = 'Open fake id menu', ----- label of third eye, when you point on ped...

    IconForThirdEye = 'fa-solid fa-address-card', ---- here you can change icons of target... https://fontawesome.com/icons

    Distance = 2
}

--- Menu
Config.Menu = {
    TitleMenu = 'Change-Name', ---- the main title of menu
    
    TitleForChangeName = 'Change Name', ------- title for name change
    
    TextForChangeName = 'Click and change your name here!', ------- text for name change
    
    TitleForChangeSurname = 'Change Surname',
    
    TextForSurname = 'Click and change your surname here!',
}

--- Dialog
Config.Dialog= {
    Change = 'Change your name',
    Input = 'Name?',

    ChangeSurname = 'Change your Surname',
    Input2 = 'Surname?',
}



----- notify's -------

Config.OxLibNotify = true ---- if true then it will use ox_lib notify, if false then it will be default fivem notification...

Config.titlevehicle = 'Vehicle'

Config.text = 'Please exit the vehicle to access the menu!'


Config.DontHave = 'Dont have money!'

Config.Message = 'You dont have enough money to pay!'

----- end ----



----- prices -----

Config.NeedPay = true ---- if true then they will need to pay amount bellow Config.Name... if false they dont need to pay anything...

Config.TypeMoney = 'black_money' ----- types:  'money', 'bank', 'black_money' 

Config.Name = 8500 ---- price for changing name....

----- end ----

Last updated