Input
<bool> iswindowactive(<void>)
Returns if ROBLOX is focused.
<void> keypress(<int> keycode)
Keycodes can be found at: https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes
Simulates a keycode press with the first argument.
<void> mouse1click(<void>)
This will only happen if the ROBLOX window is active.
Simulates a full left mouse click.
<void> mouse1press(<void>)
This will only happen if the ROBLOX window is active.
Simulates a full left mouse click without releasing.
<void> mouse1release(<void>)
This will only happen if the ROBLOX window is active.
Simulates a full left mouse release.
<void> mouse2click(<void>)
This will only happen if the ROBLOX window is active.
Simulates a full right mouse click.
<void> mouse2press(<void>)
This will only happen if the ROBLOX window is active.
Clicks down on the right mouse button.
<void> mouse2release(<void>)
This will only happen if the ROBLOX window is active.
Simulates a full right mouse release.
Last updated
Was this helpful?