-
Notifications
You must be signed in to change notification settings - Fork 1
Blip Functions getInfo
DizzasTeR edited this page Nov 7, 2020
·
1 revision
Returns blip information
Table Blip.getInfo(int blipID)- blipID The blip ID to get information of
Table - A table with following:
{
["world"] = INT
["position"] = TABLE{x, y, z}
["scale"] = INT
["color"] = INT
["sprite"] = INT
}
Event.bind("onServerInit", function()
local myBlip = Blip.create(1, {0, 0, 0}, 1, 0xFFFFFF, 16)
local blipInfo = Blip.getInfo(myBlip)
iprint(blipInfo)
end)