Scripts/resources/[cfx-default]/[system]/hardcap/client.lua

11 lines
169 B
Lua
Raw Permalink Normal View History

2024-12-29 19:48:41 +00:00
Citizen.CreateThread(function()
while true do
Wait(0)
if NetworkIsSessionStarted() then
TriggerServerEvent('hardcap:playerActivated')
return
end
end
end)