├── .github └── FUNDING.yml └── TikTok_Liking_Bot.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: codeofthefuture 2 | 3 | -------------------------------------------------------------------------------- /TikTok_Liking_Bot.py: -------------------------------------------------------------------------------- 1 | # Import relevant modules 2 | import time 3 | import pyautogui 4 | 5 | # Give some time before python runs the rest of the code 6 | time.sleep(5) 7 | 8 | # Finding your mouse's current position on the screen 9 | # print(pyautogui.position()) 10 | 11 | # The TikTok is located at x=550, y=520 12 | 13 | pyautogui.moveTo(550, 520) 14 | for i in range(5): 15 | time.sleep(0.5) 16 | pyautogui.doubleClick() 17 | time.sleep(0.5) 18 | pyautogui.scroll(-16) 19 | --------------------------------------------------------------------------------