1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-07-02 17:49:16 +02:00
parent 2127f70ffd
commit 171b571a37
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,3 @@
lib.require('ox_lib')
local function DrawText3D(coords, text) local function DrawText3D(coords, text)
local camCoords = GetFinalRenderedCamCoord() local camCoords = GetFinalRenderedCamCoord()
local distance = #(coords - camCoords) local distance = #(coords - camCoords)

View file

@ -1,12 +1,14 @@
fx_version 'cerulean' fx_version 'cerulean'
game 'gta5' game 'gta5'
lua54 'yes' -- Add this line to enable Lua 5.4
author 'Your Name' author 'Your Name'
description 'Firework Script' description 'Firework Script'
version '1.0.0' version '1.0.0'
shared_scripts { shared_scripts {
'@ox_lib/init.lua', -- Add this line '@ox_lib/init.lua',
'config.lua' 'config.lua'
} }
@ -19,5 +21,5 @@ server_scripts {
} }
dependencies { dependencies {
'ox_lib' -- Add this line 'ox_lib'
} }