Skip to content

Instantly share code, notes, and snippets.

@Wingysam
Created February 1, 2022 18:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Wingysam/3c9c12998b5a34c192e94905f092f616 to your computer and use it in GitHub Desktop.
Save Wingysam/3c9c12998b5a34c192e94905f092f616 to your computer and use it in GitHub Desktop.
#NoEnv
ListLines Off
SetWinDelay, 50
BUTTONHP = 1770
Gui,ALL2: +AlwaysOnTop -Border -Caption +ToolWindow
Gui,ALL2: Font, s15, Cambria bold
Gui,ALL2: Color, Purple
Gui,ALL2: Add, Text, Cwhite x8 y5 hwndTAB, 0
Gui,ALL2: Show, NoActivate x%BUTTONHP% y0 w30 h36
WinSet, Transparent, 200, Tab
WinSet, exstyle, ^0x20, Tab
WinGet, wowid, list, ahk_exe RobloxPlayerBeta.exe
#IfWinActive ahk_exe RobloxPlayerBeta.exe
~LButton::
MouseGetPos, x, y
if (x < (BUTTONHP - 1)) {
return
}
if (x > (1799 + 29)) {
return
}
if (y > 36) {
return
}
WinGet, wowid, list, ahk_exe RobloxPlayerBeta.exe
ControlSetText,, 1, ahk_id %TAB%
switchroblox(1)
return
~RButton::
MouseGetPos, x, y
if (x < (BUTTONHP - 1)) {
return
}
if (x > (1799 + 29)) {
return
}
if (y > 36) {
return
}
MsgBox, Banned! --purpledazee
return
$1::
ControlSetText,, 1, ahk_id %TAB%
switchroblox(1)
return
$>+1::
send {1}
return
$2::
ControlSetText,, 2, ahk_id %TAB%
switchroblox(2)
return
$>+2::
send {2}
return
$3::
ControlSetText,, 3, ahk_id %TAB%
switchroblox(3)
return
$>+3::
send {3}
return
$4::
ControlSetText,, 4, ahk_id %TAB%
switchroblox(4)
return
$>+4::
send {4}
return
$5::
ControlSetText,, 5, ahk_id %TAB%
switchroblox(5)
return
$>+5::
send {5}
return
$6::
ControlSetText,, 6, ahk_id %TAB%
switchroblox(6)
return
$>+6::
send {6}
return
$7::
ControlSetText,, 7, ahk_id %TAB%
switchroblox(7)
return
$>+7::
send {7}
return
$8::
ControlSetText,, 8, ahk_id %TAB%
switchroblox(8)
return
$>+8::
send {8}
return
$9::
ControlSetText,, 9, ahk_id %TAB%
switchroblox(9)
return
$>+9::
send {9}
return
$0::
ControlSetText,, A, ahk_id %TAB%
switchroblox(10)
return
$>+0::
send {0}
return
$>+`::
send ``
return
` & 1::
ControlSetText,, B, ahk_id %TAB%
switchroblox(11)
return
` & 2::
ControlSetText,, C, ahk_id %TAB%
switchroblox(12)
return
` & 3::
ControlSetText,, D, ahk_id %TAB%
switchroblox(13)
return
` & 4::
ControlSetText,, E, ahk_id %TAB%
switchroblox(14)
return
` & 5::
ControlSetText,, F, ahk_id %TAB%
switchroblox(15)
return
` & 6::
ControlSetText,, G, ahk_id %TAB%
switchroblox(16)
return
` & 7::
ControlSetText,, H, ahk_id %TAB%
switchroblox(17)
return
` & 8::
ControlSetText,, I, ahk_id %TAB%
switchroblox(18)
return
` & 9::
ControlSetText,, J, ahk_id %TAB%
switchroblox(19)
return
` & 0::
ControlSetText,, K, ahk_id %TAB%
switchroblox(20)
return
switchroblox(x) {
ahkid := wowid%x%
WinActivate ahk_id %ahkid%
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment