LoadLibrary (Function): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
m Text replacement - "<code lua>" to "<SyntaxHighlight code="lua">"
m Text replacement - "<SyntaxHighlight code="lua">" to "<syntaxhighlight lang="lua">"
Line 12: Line 12:
This code would load the [[RbxGui (Library)|RbxGui]] library and store it in the variable <var>RbxGui</var>:
This code would load the [[RbxGui (Library)|RbxGui]] library and store it in the variable <var>RbxGui</var>:


<SyntaxHighlight code="lua">
<syntaxhighlight lang="lua">
local RbxGui = assert(LoadLibrary('RbxGui'))
local RbxGui = assert(LoadLibrary('RbxGui'))
</SyntaxHighlight>
</SyntaxHighlight>

Revision as of 04:35, 27 April 2023

LoadLibrary( string library )
Returns RbxLibrary
Description: Loads a library and returns it. If library is not the name of a valid library, false is returned, as well as an error message.


Example

This code would load the RbxGui library and store it in the variable RbxGui:

local RbxGui = assert(LoadLibrary('RbxGui'))

See Also