-
Notifications
You must be signed in to change notification settings - Fork 0
Prompt
StackZ edited this page Jun 17, 2021
·
1 revision
UniversalEdit.Prompt(Question);
This function expects 1 parameter.
- Question: The Cancel / Confirm question to display.
-- The line below will ask for "Do you want to continue?".
local Result = UniversalEdit.Prompt("Do you want to continue?");
-- The lines below will show you basic handling of that operation.
if (Result) then
-- Do something, if user confirmed.
else
-- Do something if user cancelled.
end