Files
2026-07-07 21:08:52 +02:00

14 lines
307 B
Lua

local ClientLoadESX = false
AddEventHandler("playerSpawned", function()
if not ClientLoadESX then
ShutdownLoadingScreenNui()
ClientLoadESX = true
if Config.Fade then
DoScreenFadeOut(0)
Wait(3000)
DoScreenFadeIn(2500)
end
end
end)