Loading...
「ツール」は右上に移動しました。
利用したサーバー: natural-voltaic-titanium
1いいね 32回再生

How To Get 100 billion Tickets EASY While AFK!

🤑 How I Made 100 TRILLION Tickets in Bubble Gum Simulator! 💥
Think 1 trillion is a lot? Try 100 TRILLION. In this video, I show you how in one night i could easily reached one of the craziest ticket milestones ever in Bubble Gum Simulator!With The Python Bot I Made!

Make Sure To Enter this in the command Promote
"pip install pynput"

If it does not work copy paste it to chagpt or in my comments. Tab needs To be Selected for this to work!!!

Program:
import time
from pynput import keyboard
from pynput.keyboard import Controller

Initialize the keyboard controller
kb = Controller()

Flag to control the execution of the movement sequence
running = False

Define the movement sequence Y = -0.1 X = 0.15
sequence = [
('w', 1),
('d', 0.3),
('s', 1),
('d', 0.3),
('w', 1),
Added to neutralize net x displacement
]

Mapping for reverse directions
reverse_mapping = {'w': 's', 'a': 'd', 's': 'w', 'd': 'a'}

def hold_key(key: str, duration: float):
"""
Hold down the specified key for the given duration.

Parameters:
key (str): The key to hold down ('w', 'a', 's', or 'd').
duration (float): The time in seconds to hold the key.
"""
valid_keys = ['w', 'a', 's', 'd']
if key.lower() not in valid_keys:
raise ValueError(f"Invalid key '{key}'. Choose from {valid_keys}.")

print(f"Holding '{key}' for {duration} seconds...")
kb.press(key)
time.sleep(duration)
kb.release(key)
print(f"Released '{key}'.")

def press_key_multiple_times(key: str, times: int, total_duration: float):
"""
Press and release a key multiple times within a total duration.

Parameters:
key (str): The key to press.
times (int): Number of times to press the key.
total_duration (float): Total time in seconds to complete all presses.
"""
interval = total_duration / times
for _ in range(times):
kb.press(key)
kb.release(key)
time.sleep(interval)

def on_press(key):
global running
try:
if key == keyboard.Key.enter:
running = not running
if running:
print("Starting movement sequence...")
else:
print("Stopping movement sequence...")
except AttributeError:
pass

Start the keyboard listener
listener = keyboard.Listener(on_press=on_press)
listener.start()

print("Press Enter to start/stop the movement sequence.")

try:
while True:
if running:
Execute the sequence
for key, duration in sequence:
if not running:
break
hold_key(key, duration)
time.sleep(0.1)

Press 'e' 10 times within 1 second
press_key_multiple_times('e', 2, 0.8)

Execute the reverse sequence with opposite directions
for key, duration in reversed(sequence):
if not running:
break
reverse_key = reverse_mapping.get(key, key)
hold_key(reverse_key, duration)
time.sleep(0.1)

Press 'e' 10 times within 1 second
press_key_multiple_times('e', 2, 0.8)
else:
time.sleep(0.1)
except KeyboardInterrupt:
print("Program terminated by user.

コメント