If you want to see more resources like this, become a Patreon supporter!
Evaluates the specified expression and returns a number
local result = Framework.Expr(expr)
expr
: An expression to evaluate
number
Returns true
when the specified WUID is valid
local validWuid = Framework.IsValidWUID(wuid)
wuid
: Any WUID
boolean
Converts the specified script handler to a string.
local result = Framework.ScriptHandlerToString(scriptHandler)
scriptHandler
: Unknown type
string
Converts the specified WUID to an unsigned 64-bit integer value
local result = Framework.WUIDToMsg(wuid)
wuid
: Any WUID
UInt64
Converts the specified WUID to a string
local wuidString = Framework.WUIDToString(wuid)
wuid
: Any WUID
string
: "[Class - ID]"
Converts the specified WUID to a data type usable by the UI system
local result = Framework.WUIDToUI(wuid)
wuid
: Any WUID
unknown type
When printed as a string, the return value is the WUID prefixed with the letter w
.