Category
Input
Keyboard and mouse input events.Category guide
Overview
Use this overview to understand the category before opening a specific function.- See what this group of functions is meant to solve.
- Compare function names and descriptions in one table.
- Open a function for syntax, arguments, returns, and examples.
Input
Available functions
| Function | Description |
|---|---|
isrbxactive | Returns whether the current foreground window is the Roblox window found by Real. |
keyclick | Sends a key down event followed by a key up event when the Roblox window is active. |
keypress | Sends a key down event when the Roblox window is active. |
keyrelease | Sends a key up event when the Roblox window is active. |
mouse1click | Sends a left mouse down and left mouse up event when the Roblox window is active. |
mouse1press | Sends a left mouse down event when the Roblox window is active. |
mouse1release | Sends a left mouse up event when the Roblox window is active. |
mouse2click | Sends a right mouse down and right mouse up event when the Roblox window is active. |
mouse2press | Sends a right mouse down event when the Roblox window is active. |
mouse2release | Sends a right mouse up event when the Roblox window is active. |
mousemoveabs | Moves the mouse using Windows absolute mouse input when the Roblox window is active. |
mousemoverel | Moves the mouse by a relative delta when the Roblox window is active. |
mousescroll | Sends a mouse wheel event when the Roblox window is active. |