Skip to content
This repository was archived by the owner on Aug 10, 2025. It is now read-only.

Commit 4801edd

Browse files
authored
Added TrayTips (#9)
1 parent 1ac5ea5 commit 4801edd

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

AFB.ahk

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,17 @@ FileInstall("data\reconnect-text.png", RECONNECT_TEXT_IMG, 1)
2020
globals
2121
*/
2222
IsRunning := false
23+
TrayTip("Script is ready for input. AntiKick is disabled.", "AwayFromBlox")
2324

2425
#MaxThreadsPerHotkey 2
2526
F1:: {
2627
global IsRunning := !IsRunning
28+
If (IsRunning) {
29+
TrayTip("AntiKick is enabled.", "AwayFromBlox")
30+
} Else {
31+
Reload()
32+
}
33+
2734
While (IsRunning) {
2835
lastID := WinGetID("A")
2936
robloxID := WinExist("Roblox")

0 commit comments

Comments
 (0)