MSK Scripts
TebexGithubDiscordMusiker15
  • MSK Scripts
    • Welcome
  • Common Issues
    • Keymaster
  • Miscellaneous
    • Change Notifications
  • Scripts
    • MSK Core
      • Installation
      • Functions
        • Client
          • Ace Permission
          • Commands
          • Coords
          • Player
          • Points
          • Request
          • Scaleform
          • UI
            • Input
            • Numpad
            • Progressbar
            • TextUI
          • Vehicle
        • Shared
          • String
          • Math
          • Table
          • Timeout
          • Vector
        • Server
          • Ace Permission
          • Ban System
          • Commands
          • Player
          • Scaleform
          • UI
            • Input
            • Numpad
            • Progressbar
            • TextUI
    • MSK Banking
      • Installation
        • Paycheck Transaction
      • Config
      • Exports
        • Client
        • Server
      • Events
        • Client
        • Server
      • Server Callbacks
    • MSK EngineToggle
      • Guides
      • Exports
        • Client
      • Event Handler
        • Client
        • Server
    • MSK Fuel
      • Config
      • Exports
        • Client
    • MSK Garage
      • Config
      • Exports
        • Client
    • MSK Handcuffs
      • Guides
        • General Edits for Jobs
        • Jaksam Job Creator
        • Multichar
        • ox_inventory
      • Config
      • Admin Commands
      • Exports
        • Client
        • Server
      • Events
        • Client
        • Server
      • Event Handlers
    • MSK Radio
      • Config
      • Exports
        • Client
        • Server
      • Events
        • Server
    • MSK Simcard
      • Installation
        • Config.Database
      • Config
    • MSK VehicleKeys
      • Guides
        • Installation
        • Integrations
      • Config
      • Admin Commands
      • Exports
        • Client
        • Server
    • MSK Whitelist
      • Config
      • Exports
        • Client
        • Server
    • MSK Weaponammo
Powered by GitBook
On this page
  • MSK.Coords.Show
  • MSK.Coords.Active
  • MSK.Coords.Hide
  • MSK.Coords.Copy
  1. Scripts
  2. MSK Core
  3. Functions
  4. Client

Coords

MSK.Coords.Show

Shows the player's current coordinates at the top of the screen

MSK.Coords.Show()

-- As an Export:
exports.msk_core:ShowCoords()

MSK.Coords.Active

Checks whether the current display of coordinates is active or not.

Returns coordsActive - boolean - whether the current display of coordinates is active or not

local coordsActive = MSK.Coords.Active()

-- As an Export:
local coordsActive = exports.msk_core:CoordsActive()

MSK.Coords.Hide

Hides the player's coordinates from the screen.

MSK.Coords.Hide()

-- As an Export:
exports.msk_core:HideCoords()

MSK.Coords.Copy

Copies the current player's coordinates to the clipboard

Parameters coords - vector3, vector4 or table - Coords to copy

MSK.Coords.Copy(coords)

-- As an Export:
exports.msk_core:CopyCoords(coords)

Last updated 6 months ago