Initial commit

This commit is contained in:
Jacob
2021-12-03 01:19:31 +00:00
parent c1add166a1
commit f8efc78730
807 changed files with 201658 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
local spawn1 = false -- Variable pour vérifier si déjà spawn
AddEventHandler("playerSpawned", function () -- Attendre que le joueur spawn
if not spawn1 then
ShutdownLoadingScreenNui() -- Fermer la ressource d'écran de chargement
spawn1 = true
end
end)