34 lines
		
	
	
	
		
			461 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			461 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
fx_version 'cerulean'
 | 
						|
game 'gta5'
 | 
						|
 | 
						|
author 'YourName'
 | 
						|
description 'QBCore DJ Script with YouTube Support'
 | 
						|
version '1.0.0'
 | 
						|
 | 
						|
shared_scripts {
 | 
						|
    '@ox_lib/init.lua',
 | 
						|
    'config.lua'
 | 
						|
}
 | 
						|
 | 
						|
client_scripts {
 | 
						|
    'client/main.lua'
 | 
						|
}
 | 
						|
 | 
						|
server_scripts {
 | 
						|
    '@oxmysql/lib/MySQL.lua',
 | 
						|
    'server/main.lua'
 | 
						|
}
 | 
						|
 | 
						|
ui_page 'html/index.html'
 | 
						|
 | 
						|
files {
 | 
						|
    'html/index.html',
 | 
						|
    'html/style.css',
 | 
						|
    'html/script.js'
 | 
						|
}
 | 
						|
 | 
						|
dependencies {
 | 
						|
    'qb-core',
 | 
						|
    'ox_lib',
 | 
						|
    'oxmysql'
 | 
						|
}
 |