forked from Simnation/Main
23 lines
300 B
Lua
23 lines
300 B
Lua
fx_version 'cerulean'
|
|
game 'gta5'
|
|
|
|
author 'Your Name'
|
|
description 'Firework Script'
|
|
version '1.0.0'
|
|
|
|
shared_scripts {
|
|
'@ox_lib/init.lua', -- Add this line
|
|
'config.lua'
|
|
}
|
|
|
|
client_scripts {
|
|
'client.lua'
|
|
}
|
|
|
|
server_scripts {
|
|
'server.lua'
|
|
}
|
|
|
|
dependencies {
|
|
'ox_lib' -- Add this line
|
|
}
|