LoadLibrary (Function)
From Legacy Roblox Wiki
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'))