-
Notifications
You must be signed in to change notification settings - Fork 0
Keyboard
StackZ edited this page Jun 17, 2021
·
1 revision
UniversalEdit.Keyboard(Message, CurText, LengthOfInput);
This function expects 3 parameters.
- Message: The message to display.
- CurText: The current message, which would be returned when the user cancels.
- LengthOfInput: The amount of characters a user can input.
-- The line below will let the user input their name with 10 characters, it returns "Name" if the user cancels.
local YourName = UniversalEdit.Keyboard("Enter your name.", "Name", 10);