Koala Hacks UI Library Documentation¶
Koala Hacks UI Library is a UI Library that makes users interacting with your scripts easier. This documentation is a guide to use the library.
Other Information
- Library Version: v2.0.1 - Builder Version: v2Adding the Library to Your Script¶
In order to use the library you must put this to the top of your script:
-- You can change the variable name "KHLib" to another name
local KHLib = loadstring(game:HttpGet("https://pastebin.com/raw/BkRLnxZW"))():getKHLib("vx.x.x")
Initializing the script¶
After adding the library to your script, you need to initialize it:
KHLib:Initialize() -- Initializes the library for functional use
This creates a "Dump Folder" this is where the library gets its objects or UI.
Notes:
- If the library is already initialized it will throw an error, to prevent this you can use KHLib:IsReady()
- If KHLib.new() was used before initializing the library it will throw an error