Skip to main content

Text ui

  • Importing only TextUi if you didnt import interface before
    local TextUi = exports.plouffe_lib:Get("Interface", "TextUi")
  • Show
    TextUi.Show({
message : string -- ... your message
id : string -- unique identifier
color : string -- needs to be css compatible
})
  • Hide
    TextUi.Hide({
id : string -- unique identifier
})
  • Change
    TextUi.Change({
message : string -- ... your message
id : string -- unique identifier
color : string -- needs to be css compatible
})
  • Test command if the lib is in debug mode
showTextUi
hideTextUi
changeTextUi