Skip to main content

SpawnLocalObject

ESX.Game.SpawnLocalObject(model, coords, cb)

This function spawns a local object, which is only visible to the local player and no one else.

!!! warning This is an async function because it awaits the object model to be streamed, there is an example below on how to properly utilize it.

Arguments

ArgumentData TypeOptionalDefault ValueExplanation
modelstring&numberNo-You can either specify a model, for example prop_cs_cuffs_01, or a object hash
coordstableNo-The coords where the object should be spawned. You can also parse an vector type without any issues
cbfunctionYes-The returned function when the object has been spawned. The invoked function has one argument, which is the object handle.

Example

ESX.Game.SpawnLocalObject('prop_cs_cuffs_01', vector3(120.0, -200.0, 30.0), function(object)
print(DoesEntityExist(object), 'this code is async!')
end)

print('this code is sync!')