inside-scripts
Store
  • INFORMATION
    • inside-scripts
  • PAID SCRIPTS
    • 🔑 Vehicle Keys
      • Functions
      • Config
    • 🚗 Garage
      • Functions
      • Script Functionality Overview
      • Config
    • 🥦 Weed Laboratory
      • Config
    • 💊 Sell Drugs
      • Script Functionality Overview
      • Config
    • 🗯️ Dialog V1
      • Functions
      • Config
    • 🗯️ Dialog V2
      • Functions
      • Config
    • 📰 Interaction
      • Functions
      • Config
    • 🪧Notifications and Progress
      • Functions
      • Config
    • 🪛 Lock Picking
      • Config
  • FREE SCRIPTS
    • 🖥️ Bridge & Library
      • Compatibility
      • Usage & Installation
      • Functions
        • Bridge
          • Framework
            • Client
            • Server
          • Inventory
            • Server
          • Fuel
            • Client
          • Keys
            • Client
            • Server
          • Notification
            • Client
            • Server
          • Progress Bar
            • Client
          • Target
            • Client
        • Library
          • Callback
            • Client
            • Server
          • Entity
            • Client
            • Server
          • Blip
            • Client
          • Identifier
            • Server
          • Timezone
            • Server
          • Webhook
            • Server
          • Utility
            • Shared
Powered by GitBook
On this page
  • createBlip
  • Usage
  • Example
  • createBlipRadius
  • Usage
  • Example
  • removeBlip
  • Usage
  • Example
  1. FREE SCRIPTS
  2. 🖥️ Bridge & Library
  3. Functions
  4. Library
  5. Blip

Client

createBlip

Usage

Lib.createBlip(coords, data)
  • coords: vector3

  • data(optional): object

    • sprite(optional): number

      • default: 1

    • display(optional): number

      • default: 2

    • scale(optional): float

      • default: 0.6

    • color(optional): number

      • default: 1

    • alpha(optional): number

      • default: 255

    • shortRange(optional): boolean

      • default: false

    • name(optional): string

      • default: "Example Blip"

Example

Lib.createBlip(vector3(0.0, 0.0, 0.0), {
    sprite = 400,
    scale = 0.8,
    color = 28,
    name = "Test",
})
  • return: number

createBlipRadius

Usage

Lib.createBlipRadius(coords, data)
  • coords: vector3

  • data(optional): object

    • radius(optional): float

      • default: 50.0

    • color(optional): number

      • default: 1

    • alpha(optional): number

      • default: 255

    • shortRange(optional): boolean

      • default: false

Example

Lib.createBlipRadius(vector3(0.0, 0.0, 0.0), {
    radius = 25.0,
    color = 28,
})
  • return: number

removeBlip

Usage

Lib.removeBlip(blip, invoker)
  • blip: number

  • invoker: string

Example

Lib.removeBlip(blip)

Last updated 8 months ago