Banana
Not enough ratings
Banana AutoClick
By omgitsbees
A Python script you can run in Visual Studio Code to auto click the banana for you.
   
Award
Favorite
Favorited
Unfavorite
Setup
Download Visual Studio Code here: https://code.visualstudio.com/download

Install, and then open the terminal in visual studio code, and install the following libraries:
pip install pyautogui
pip install keyboard

Now create a new file, and make sure it is a Python file. Copy/paste or type in the following code:
import pyautogui
import time
import keyboard # Import the keyboard module

# Delay before starting (in seconds)
initial_delay = 5
# Number of clicks
clicks = 10000
# Delay between clicks (in seconds)
click_delay = 0.01 # Adjust this value as needed

# Countdown before starting
print(f"Auto Clicker will start in {initial_delay} seconds...")
time.sleep(initial_delay)

# Get current mouse position
initial_position = pyautogui.position()

# Click loop
for _ in range(clicks):
# Check if the 'q' key is pressed to cancel
if keyboard.is_pressed('q'):
print("Auto Clicker cancelled.")
break

pyautogui.click(initial_position)
time.sleep(click_delay)

print(f"Auto Clicker completed {clicks} clicks.")


Make note of the line that says "if keyboard.is_pressed('q'):" if you want to stop the auto-clicker, press the Q key on your keyboard.

Run the app in Visual Studio Code by pressing the run button in the upper right hand corner. and then switch over to Banana and move your mouse cursor over the banana. You're good to go!
4 Comments
ThePestBlack.ttv 15 Sep, 2024 @ 11:09am 
It doesnt work to me :((
omgitsbees  [author] 14 Sep, 2024 @ 10:35am 
@nuke employer fair, you're not wrong! This is for the homies who like to see that click number increase. When I originally wrote this, I didn't understand that fact about the 3h thing.
Edging The Nuke 14 Sep, 2024 @ 10:13am 
Thats hot but let me tell you this: you get one drop every 3h regardless of the click amount.

Hope to save you lads some time.
AdsızCengaver 11 Sep, 2024 @ 9:53am 
Nice