Send keyboard and mouse input
inputSend real keyboard and mouse actions to a live playtest to test UI bindings, key presses, and clicks, confirming delivery via client-side scripts.
Instructions
Sends real keyboard and mouse input to a running playtest — the same events a person pressing the keys would produce.
This is how to test what character cannot reach. character drives the Humanoid directly, which answers 'can it get to the door'; this answers 'does pressing E open it', 'does the sprint key work', 'does the menu close on Escape' — anything bound to input rather than to movement. Use character for going places and this for controls.
Steps run in order, so a sequence is one call: tap E, wait, click at a point, type a name. hold is how long a key or button stays down, after is how long to wait before the next step — a jump held for a second is a different test from a tapped one.
REQUIRES A RUNNING PLAYTEST, and must be addressed to the playtest's studioId from list_studios, not the editor's.
A pointer is drawn on screen and travels to each target before the click, so the user can see what you are aiming at. Turn it off with cursor: false.
How it works, because it explains the one thing that will surprise you: input belongs to the data model that creates it, and the character is driven by the CLIENT. Sending from the playtest's server succeeds and moves nothing. So this parents a short script into the player's PlayerGui, which runs on their client, and that reports back when the input has actually been delivered. Nothing is reported as sent until the client confirms it. If confirmation never arrives you get an error, not a success — check where things really are with character op="state".
Mouse coordinates are viewport pixels from the top-left, so pair this with screenshot to see what is where before clicking it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| steps | Yes | Input steps, delivered in order. | |
| cursor | No | Draw a pointer on screen that travels to each target before the click, with a ripple where it lands. On by default: synthetic input is otherwise invisible, so the user watching sees effects with no cause, and a click that misses looks identical to one that hit. Turn it off only when recording something where the pointer would be in the way. | |
| player | No | Which player, by name. Omit for the only one; needed in a multiplayer test. | |
| studioId | No | The PLAYTEST session's id — not the editor's. See list_studios. |