20 lines
312 B
Lua
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
|