Elements
Here is an explanation of menu elements and their respected properties.
Creating a Tab
juju.create_tab(name: String)Argument
Type
Description
Creating Sections
juju.create_section(name: String, size: Number, side: Number, offset: Number)Argument
Type
Description
Creating Elements
juju.create_tab()
juju.create_section("example_section", 1, 1, 0)
juju["create_element"]("example_section", {
["name"] = "example colorpicker"
}, {
["colorpicker"] = {
["color_flag"] = "example_color",
["default_color"] = Color3.fromRGB(0,255,0),
["transparency_flag"] = "example_transparency",
["default_transparency"] = 0
}
})Last updated