Configuration
Kibra SmartPad Configuration
Fetching Players' Email Addresses
Server-Side Usage
-- In your other server script:
local playerServerId = source -- or any valid server ID
local email = exports['kibra-smartpad']:GetPlayerEmail(playerServerId)
if email ~= 'notFound' then
print(('Player %d email: %s'):format(playerServerId, email))
else
print(('No email configured for player %d'):format(playerServerId))
endClient-Side Usage
-- client.lua
local email = exports['kibra-smartpad']:GetPlayerEmail()
if email ~= 'notFound' then
print('My email:', email)
else
print('Email not set')
endStartMiniGame Usage
Creating New Mail Records
Custom Create Invoice
📌 Parameters
Parameter
Type
Description
Example Usage
Fetching Players' Email Addresses
Server-Side Usage
Client-Side Usage
How to Use GiveTablet Function on Server Side
Usage
Example: Using with a Command
GetPlayerUnpaidInvoices
Description
Usage
Parameters
Returns
Example
Notes
Last updated