#Form Cancel
1 messages · Page 1 of 1 (latest)
using result.canceled
you can also use result.cancelationReason for why the form was cancelled
...show(player).then((result) => {
if (result.canceled) {
};
});
1 messages · Page 1 of 1 (latest)
How may i detect if the form ui was cancelled?
using result.canceled
you can also use result.cancelationReason for why the form was cancelled
...show(player).then((result) => {
if (result.canceled) {
};
});