Scripts/resources/[standalone]/mka-lasers/fxmanifest.lua
2024-12-30 11:15:34 +01:00

20 lines
312 B
Lua

games {'gta5'}
fx_version 'adamant'
description 'Create moving lasers in FiveM!'
version '1.0.0'
client_scripts {
'client/client.lua',
}
local creationEnabled = true
if creationEnabled then
client_scripts {
'client/utils.lua',
'client/creation.lua',
}
server_script 'server/creation.lua'
end