Skip to main content

GetTable

Returns the whole table of the users data by reference.

Parameters:

NameTypeDescription
playerplayerThe player whose data we want to access

Returns:

NameTypeDescription
usersDatatableThe whole data of the user

Example:

local ServerScriptService = game:GetService("ServerScriptService")
local ProStore3 = require(ServerScriptService.ProStore3)

ProStore3.PlayerJoined:Connect(function(player : Player)
local fullData : table = ProStore3.GetTable(player)
print(fullData)
end)