Denizen Script Language Explanations


Language Explanations explain components of Denizen in a more direct and technical way than The Beginner's Guide.


Showing 1 out of 56 language explanations...
NameLabel GUI Element
DescriptionLabels are simple, single lines of text; they have a UI type of "label".
See Language:Text GUI Elements for multi-line text,
and Language:Dynamic Label GUI Element for dynamically updating labels.


ui_type: label
# The text the label will show, optional.
text: <text>
# The vertical alignment for the label's text, optional.
vertical_alignment: TOP/CENTER/BOTTOM
# The horizontal alignment for the label's text, optional.
horizontal_alignment: LEFT/CENTER/RIGHT
# The label's text color, optional.
color: <ColorTag>
GroupGUI System
Sourcehttps://github.com/DenizenScript/Clientizen/blob/master/src/main/java/com/denizenscript/clientizen/scripts/containers/gui/elements/LabelElement.java#L20