Skip to content

Blip Client ​

JO Functions ​

jo.blip.create() ​

Create a new blip
This function adds a blip at the specified location or on an entity with customizable properties.

Syntax ​

lua
jo.blip.create(locationOrEntity, name, sprite, blipHash, color)

Parameters ​

locationOrEntity : vector3|integer

name : string

sprite : string|integer

blipHash : integer Optional

color : string Optional

Return Value ​

Type : integer|false

Example ​

lua
local location = vec3(1000.0, 1000.0, 1000.0)
local blip = jo.blip.create(location, "My blip", "BLIP_AMBIENT_HORSE")
print(blip)

Last updated: