Files
Elite-Gaming-FiveM/resources/jraxion_handlingeditor/server/server.lua
T
2025-11-05 23:26:27 -08:00

16 lines
483 B
Lua

while GetCurrentResourceName() ~= "jraxion_handlingeditor" do
Wait(2000)
print("Make sure the resource name is jraxion_handlingeditor, it will break the resource if you rename it.")
end
RegisterCommand('handlingeditor', function(source, args, rawCommand)
-- Add your permission system here.
if Config.isAllowed(source) then
TriggerClientEvent('jraxion_handlingeditor:openHandlingEditor', source)
else
print('No permission')
end
end, false)