Alert Dialog
Simple alert dialog that can display a message to the player. Returns whether the player pressed the confirm button or canceled the dialog.
Last updated
Simple alert dialog that can display a message to the player. Returns whether the player pressed the confirm button or canceled the dialog.
Last updated
lib.closeAlertDialog()local alert = lib.alertDialog({
header = 'Hello there',
content = 'General Kenobi \n Markdown support!',
centered = true,
cancel = true
})
print(alert)