Skip to content

Blip Client โ€‹

JO Functions โ€‹

jo.blip.create() โ€‹

Create a new blip
This function adds a blip at the specified location with customizable properties.

Syntax โ€‹

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

Parameters โ€‹

location : vector3

The blip location

name : string

The blip name

sprite : string

The name of the sprite (Non exhaustive list)

blipHash : integer Optional

The blip type - default: 1664425300

color : string Optional

The color of the blip

Return Value โ€‹

Type : integer

Return the blip ID

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: