Scripts/resources/[standalone]/mka-lasers/fxmanifest.lua

20 lines
313 B
Lua
Raw Normal View History

2024-12-29 20:02:43 +00:00
games {'gta5'}
fx_version 'cerulean'
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