Scripts/resources/[hp]/hp_loading/client.lua

11 lines
267 B
Lua
Raw Normal View History

2024-12-29 19:48:41 +00:00
local loading_screen_start = false
AddEventHandler("playerSpawned", function()
if not loading_screen_start then
TriggerEvent('hp_multichar:userConnected')
ShutdownLoadingScreenNui()
loading_screen_start = true
return
end
end)