Scripts/resources/[hp]/hp_loading/client.lua
2024-12-29 20:48:41 +01:00

11 lines
267 B
Lua

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)