1. Copy all the users from https://jamied132.github.io/users.json

  2. Run this code, pasting the list of users where needed

import requests
users = ##PASTE LIST HERE##
username = ##REPLACE WITH YOUR BOTS USERNAME##
password = ##REPLACE WITH YOUR BOTS PASSWORD##
r = requests.post(
    "https://api.wasteof.money/session",
    json={"username":username,"password":password},
) 
j = r.json()
session = j["token"]
for u in users:
    requests.post(
       "https://api.wasteof.money/users/"+u+"/followers",
       headers={"Authorization":session},
)

I haven’t tested it yet but it should work

gonna do it on this account

I also slowed it down so even if I do get banned I at least don’t get IP banned

Also do you realise that it will also unfollow all the users you are currently following? I probably should have said that before…

Can you even get IP banned? ayd told me he never got IP banned and he would probably have been if it’s possible

View all comments