๐ฑ๏ธ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.
Simulates a left mouse button press without releasing it.
Simulates a left mouse button release.
Mouse Movement
Scrolls the mouse wheel virtually by
numberpixels.
Moves the mouse cursor relatively to the current mouse position by coordinates
a1anda2.
Move's your mouse to the
a1anda2coordinates in pixels from top left of the window.
Right Click
Simulates a full right mouse button press.
Clicks down on the right mouse button.
Simulates a right mouse button release.
Last updated