Prompting a dialog

Window:Dialog({
Title <string>
Description <string>
Buttons <table: <...table: Name, Callback>>
})Functions
Example
Last updated
Was this helpful?

Window:Dialog({
Title <string>
Description <string>
Buttons <table: <...table: Name, Callback>>
})Functions
Example
Last updated
Was this helpful?
Was this helpful?
:UpdateTitle(<string>)
:UpdateDescription(<string>)
:Cancel()Window:Dialog({
Title = "Kuzu Hub",
Description = "Are you sure? This is not reversable and can get you banned in some up to date servers.",
Buttons = {
{
Name = "Confirm",
Callback = function()
print("Confirmed!")
end,
},
{
Name = "Cancel"
}
}
})