Skip to content

Instantly share code, notes, and snippets.

@iGlitch
Last active April 22, 2024 14:56
Show Gist options
  • Save iGlitch/8ede38e4643bc474ef55465a8ea58d7f to your computer and use it in GitHub Desktop.
Save iGlitch/8ede38e4643bc474ef55465a8ea58d7f to your computer and use it in GitHub Desktop.
Bumble, Tinder Auto-Swipe for macOS using AppleScript
tell application "System Events"
repeat
key code 124 -- Key code for the right arrow key (Like)
-- key code 123 -- Key code for the left arrow key (Dislike)
-- delay 2
set randomDelay to random number from 1 to 3 -- Generates a random number between 1 and 3
delay randomDelay -- Waits for the randomly generated number of seconds
end repeat
end tell
tell application "System Events"
repeat
set randomNumber to random number from 1 to 100 -- Generates a random number between 1 and 100
if randomNumber ≤ 2 then
key code 123 -- Key code for the left arrow key (Dislike), 2% chance
else
key code 124 -- Key code for the right arrow key (Like), 98% chance
end if
set randomDelay to random number from 1 to 3 -- Generates a random number between 1 and 3
delay randomDelay -- Waits for the randomly generated number of seconds
end repeat
end tell
@iGlitch
Copy link
Author

iGlitch commented Apr 21, 2024

  • This is to be used on browser version of the apps
  • Press the Play button in Script Editor, and focus on the browser tab
  • randomDelay added for the (unlikely) possibility of bot detection on these sites, idfk
  • Use v2 if you want to add random dislikes for also the (unlikely) possibility of bot detection on these sites, idfk

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment