📚Player Data

Coords

Description

This will get the player coords.

Example

local UgCore = exports['ug-core']:GetCore()

RegisterCommand('getCoords', function (source, args)
    local coords = UgCore.PlayerData.coords
    print(coords)
end, false)

Last updated