1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-08-10 12:33:38 +02:00
parent e9a5e6e808
commit df5c2a1624
143 changed files with 79 additions and 0 deletions

View file

@ -0,0 +1,9 @@
local kartCoords = vector3(-85.162, -2067.108, 21.797)
Citizen.CreateThread(function()
while true do
Wait((#(GetEntityCoords(PlayerPedId()) - kartCoords) < 150) and 0 or 1000)
ClearAreaOfVehicles(kartCoords.x, kartCoords.y, kartCoords.z, 1000, false, false, false, false, false)
RemoveVehiclesFromGeneratorsInArea(kartCoords.x - 90.0, kartCoords.y - 90.0, kartCoords.z - 90.0, kartCoords.x + 90.0, kartCoords.y + 90.0, kartCoords.z + 90.0)
end
end)

View file

@ -0,0 +1,13 @@
fx_version 'bodacious'
game 'gta5'
author 'GigZ'
description 'GigZ_kart_update'
version '1.0.0'
this_is_a_map 'yes'
client_scripts {
'client.lua'
}