Files
KingMcDonalds d01153490d new things
2025-06-28 22:15:12 -07:00

14 lines
303 B
Lua

-- Variable to check if native has already been run
local Ran = false
-- Wait until client is loaded into the map
AddEventHandler("playerSpawned", function ()
-- If not already ran
if not Ran then
-- Close loading screen resource
ShutdownLoadingScreenNui()
-- Set as ran
Ran = true
end
end)