🖱️Input
These are all of the functions revolving inputs that Wave supports.
Is Roblox Active
<bool> isrbxactive(<void>)Returns
trueif the game window is in focus.
Keyboard
<void> keydown(<uint> keycode) Simulates a key press for the specified keycode. You can find a list of codes here.
Alternative:
keypress
<void> keytap(<int keycode>)Simulates a single press and release of the specified keycode.
<void> keyup(<uint> key) Releases
keyon the keyboard.
Alternative:
keyrelease
Left Click
<void> mouse1click(<void>) Simulates a full left mouse button press.
<void> mouse1press(<void>) Simulates a left mouse button press without releasing it.
<void> mouse1release(<void>) Simulates a left mouse button release.
Mouse Movement
<void> mousescroll(<number> number) Scrolls the mouse wheel virtually by
numberpixels.
<void> mousemoverel(<number> a1, <number> a2) Moves the mouse cursor relatively to the current mouse position by coordinates
a1anda2.
<void> mousemoveabs(<number> a1, <number> a2) Move's your mouse to the
a1anda2coordinates in pixels from top left of the window.
Right Click
<void> mouse2click(<void>)Simulates a full right mouse button press.
<void> mouse2press(<void>) Clicks down on the right mouse button.
<void> mouse2release(<void>) Simulates a right mouse button release.
Last updated