General
About 244 wordsLess than 1 minute
APIInternal API
2026-01-24
version
Returns the version of RbxPI currently in use. The returned value corresponds to the one contained in the version.txt file, which serves as the primary reference for the RbxPI version.
- Example:
local RbxPI = require(game:GetService("ReplicatedStorage"):WaitForChild("RbxPI").API)
local VersionRbxPI = RbxPI.version
print(VersionRbxPI)- Returns:
Versionstring
Current version of RbxPI, in the format:
[Major build].[Minor build].[Revision] - [year].[month].[day] [Development stage]
author
Returns the author of RbxPI.
- Example:
local AuthorRbxPI = RbxPI.author- Returns:
Auhtorstring
Author of the RbxPI project
license
Returns the name of the license used by RbxPI.
- Example:
local LicenseRbxPI = RbxPI.license- Returns:
Licensestring
Name of the RbxPI license.
copyright
Returns the copyright of the RbxPI project.
- Example:
local CopyrightRbxPI = RbxPI.license- Returns:
Copyrightstring
Name of the RbxPI license.
url
Returns the URL of the GitHub repository containing the RbxPI source code.
- Example:
local UrlRbxPI = RbxPI.url- Returns:
Repositorystring
GitHub repository of rbxpi-core.
licenseinfo
Returns the full RbxPI license, found in the LICENSE file of the repository.
- Example:
local LicenseInfoRbxPI = RbxPI.licenseinfo- Returns:
Full Licensestring
Full RbxPI license.
