11 lines
169 B
Lua
Raw Normal View History

2025-04-05 21:15:53 +00:00
Citizen.CreateThread(function()
while true do
Wait(0)
if NetworkIsSessionStarted() then
TriggerServerEvent('hardcap:playerActivated')
return
end
end
end)