Skip to content
This repository has been archived by the owner on May 22, 2021. It is now read-only.

GetIdentity

Matias Salas edited this page Dec 26, 2020 · 4 revisions

Server-Side

Player.GetIdentity()

This function gets player identity.

Data

Data Type Explanation
Name string Player Name
Date Of Birth string Player Date of Birth
Sex string Player Gender
Occupation string Player Occupation

Example

local _Player = Player(source)
local Identity = _Player.GetIdentity()
for i in pairs(Identity) do
    print(i, Identity[i]) -- Returns a table key-value of the player identity
end