Wasabi Scripts
StoreDiscordGitHub
  • Documentation
  • Dependency
    • 🔗wasabi_bridge
      • Dependencies
      • Installation
      • Configuration
      • Custom Notifications
      • Common Issues & Fixes
  • Advanced Series
    • 🚑wasabi_ambulance
      • Dependencies
      • Installation
      • Configuration
      • Death Screens
      • Exports / Events
      • State Bags
      • Customizations
      • Common Issues
        • QBCore
    • 🩺wasabi_crutch
      • Dependencies
      • Installation
      • Configuration
      • Exports
    • 👮‍♂️wasabi_police
      • Dependencies
      • Installation
      • Configuration
      • Exports
      • State Bags
      • Events
      • Customizations
    • 🔎wasabi_evidence
      • Dependencies
      • Installation
      • Configuration
      • Customizations
    • 🛡️wasabi_adminmenu
      • Dependencies
      • Installation
      • Configuration
    • 👷wasabi_multijob
      • Dependencies
      • Installation
      • Configuration
      • Replace ESX Boss Menus
    • 🔑wasabi_carlock
      • Dependencies
      • Installation
      • Configuration
      • Exports
      • Common Issues
        • QBCore
  • Core UI Series
    • 🖥️wasabi_loadingscreen
      • Configuration
    • 🧑‍🤝‍🧑wasabi_multichar
      • Dependencies
      • Installation
      • Configuration
      • Exports
      • Events
    • 💳wasabi_banking
      • Dependencies
      • Installation
      • Configuration
      • Exports
      • Events
    • 👼wasabi_spawn
      • Dependencies
      • Installation
      • Configuration
      • Exports
      • Events
    • 🔔wasabi_notify
      • Exports / Events
      • Configuration
      • Change Framework Notify
    • ⏸️wasabi_pausemenu
      • Dependencies
      • Installation
      • Configuration
      • Exports
  • Heist Series
    • 🏦wasabi_pacificrobbery
      • Dependencies
      • Installation
      • Configuration
      • Events
    • 🏦wasabi_paletorobbery
      • Dependencies
      • Installation
      • Configuration
      • Events
    • 🏦wasabi_fleecarobberies
      • Dependencies
      • Installation
      • Configuration
      • Events
  • 💎wasabi_vangelicorobbery
    • Dependencies
    • Installation
    • Configuration
    • Events
  • 🔫wasabi_ammunationrobbery
    • Dependencies
    • Installation
    • Configuration
    • Events
  • 🚢wasabi_yachtheist
    • Dependencies
    • Installation
    • Configuration
    • Events
  • Free Releases
    • 👕fivem-appearance
      • Installation
      • Dependencies
      • Common Issues
      • Snippets
      • Exports
      • Examples
    • 👩‍💻wasabi_discord
      • Installation
      • Exports
Powered by GitBook
On this page
  • NUI not showing up?
  • Switching from esx_skin/skinchanger with existing users?
  • Other Issues
  1. Free Releases
  2. fivem-appearance

Common Issues

Fixes to common issues we come across

NUI not showing up?

Before looking for further support, please check the following common issues:

UI is not showing up at all

1st

  • Open server.cfg

2nd

  • See if this convar exists in your cfg: setr fivem-appearance:locale

3rd

  • Either remove the convar entirely or set to: setr fivem-appearance:locale "en"

For additional languages see fivem-appearance/locales

UI is not showing up after character registration(esx_identity)

1st

  • Open esx_identity/client/main.lua

2nd

  • Find: if not ESX.GetConfig().Multichar then TriggerEvent('esx_skin:playerRegistered') end

  • Replace with: if not ESX.GetConfig().Multichar then TriggerEvent('esx_skin:playerRegistered') end TriggerEvent('esx_skin:openSaveableMenu', function() finished = true end, function() finished = true end)

3rd

  • Save file & restart server

Hair fades not working properly

Add the following convar to your server.cfg:

setr fivem-appearance:automaticFade 0

Switching from esx_skin/skinchanger with existing users?

SCRIPT ERROR: @fivem-appearance/server.lua:90 attempt to index a nil value (field 'skin') or just not working

This is due to previous data from esx_skin/skinchanger OR skin column is null for character already existing.

A possible remedy to this:

Use this command in your live server console: skinConvert

Other Issues

esx_jobs not changing clothes properly
  • Navigate to esx_jobs/client/main.lua

  • Search for: onDuty = false ESX.ShowNotification(_U('offduty'),"success") ESX.TriggerServerCallback('esx_skin:getPlayerSkin', function(skin, jobSkin) TriggerEvent('skinchanger:loadSkin', skin) end)

  • Replace with: onDuty = false ESX.ShowNotification(_U('offduty'),"success") ESX.TriggerServerCallback('esx_skin:getPlayerSkin', function(skin) TriggerEvent('skinchanger:loadSkin', skin) end)

Load in as random ped after relog

Open fivem-appearance/client/client.lua

Add:

local firstSpawn = true
AddEventHandler('playerSpawned', function()
    if firstSpawn then
        ESX.TriggerServerCallback('fivem-appearance:getPlayerSkin', function(appearance)
            TriggerEvent('skinchanger:loadSkin', appearance)
        firstSpawn = false
        end)
   end
end)

PreviousDependenciesNextSnippets

Last updated 2 years ago

👕