Type into a TextBox
type-text-boxAutomates text input into Roblox TextBox instances by simulating keystrokes or directly setting the Text property. Supports optional Enter key press.
Instructions
Enter text into a Roblox TextBox by path. Can simulate keystrokes or set Text directly based on useKeyPress.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The instance path to the TextBox | |
| text | Yes | The string to type into the TextBox | |
| enter | No | Whether to press Enter after typing | |
| useKeyPress | No | If true, simulates real keystrokes using VirtualInputManager / keypress. If false, directly sets the Text property. |