This quote specifically refers to users who break the platform rules, getting follow botted (without initiating / requesting the follow bot yourself) is not against the rules.
This is a very W update. would be nice if this would also prevent the people with âHelp me get verifiedâ ads, from spamming the ads surface with their stuff. They are ruining discovery for genuine game developers trying to grow their audience.
Hopefully we can also see some improvements on how collaborators need to be a part of a group for a long time, in order to get verified. Maybe we wouldnât see so many people with âpurchasedâ verification mark after thatâŚ
Some people worked for their verification checkmarks and others just buy it
I always come here searching for your comments. I just do not understand who is up there making these decisions. Itâs crazy to me that they make these systems that have no clear outline, skewed requirements, and a very mixed (if not negative) reception, then still choose to continue with the system and mostly ignore every red flag across the way.
Now maybe itâs not that extreme, but to at least my point of view, it looks like corporate Roblox is up there blindfolded.
I made a python script that helps making removing these botted followers easier, of course itâll still take time depending on how many you have but its way faster then doing it manually
Also since roblox only allows you to have 100 blocked, youll have to go onto your privacy tab in settings and unblock as this program is running
import requests
from datetime import datetime
cookie = # Your .ROBLOXSECURITY cookie
robloxID = # Your Roblox Id
session = requests.Session()
session.cookies['.ROBLOSECURITY'] = cookie
reponse = session.post('https://accountsettings.roblox.com/v1/users/1/block')
session.headers['x-csrf-token'] = reponse.headers['x-csrf-token']
def blockUser(userID):
return session.post(f'https://accountsettings.roblox.com/v1/users/{userID}/block')
def getDifferenceYear(string):
yearThen = int(string[:4])
yearNow = datetime.utcnow().year
years_difference = yearNow - yearThen
return years_difference
cursor = None
while True:
if not cursor:
print("NO CURSOR")
peopleFollowingYouResponse = requests.get(f'https://friends.roblox.com/v1/users/{robloxID}/followers?limit=100&sortOrder=Desc', headers=session.headers, cookies=session.cookies)
else:
peopleFollowingYouResponse = requests.get(f'https://friends.roblox.com/v1/users/{robloxID}/followers?limit=100&sortOrder=Desc&cursor={cursor}', headers=session.headers, cookies=session.cookies)
peopleFolllowingYou = peopleFollowingYouResponse.json()['data']
filter_users = [
user for user in peopleFolllowingYou
if requests.get(f"https://friends.roblox.com/v1/users/{user['id']}/friends/count").json()['count']
and requests.get(f"https://friends.roblox.com/v1/users/{user['id']}/friends/count").json()['count'] == 0
and getDifferenceYear(requests.get(f"https://users.roblox.com/v1/users/{user['id']}").json()['created']) >= 3
and requests.get(f'https://friends.roblox.com/v1/users/{user["id"]}/followings/count').json()['count'] > 500
]
print(filter_users)
for user in filter_users:
user_id = user['id']
print("BLOCKED")
blockUser(user_id)
cursor = peopleFollowingYouResponse.json()['nextPageCursor']
If anybody can make this better feel free too edit to
Thanks, this is a fairer change.
I agree. Another method you could use is by using a python script to automate the blocking and unblocking process by simply looping through the followers.
What gonna happen if content maker will get follow botted by a random person?
Iâve noticed a few people which had verified badge and⌠weird âpeopleâ following them. Finally. No selling verified badge anymore. Wohoo
Following somebody has practically no use. Whatâs the point of using such a niche feature as a measurement for such an important criteria?
I have worked on several games that made it onto the front page, even some that have exceeded 100,000 CCU at a given time, yet I am effectively blocked from ever getting the Verified Badge because I am not a public figure, so people will not go out of their way to follow me.
This needs to change, or there needs to be some sort of encouragement to follow creators.
Yay! Hopefully this stops those clowns selling verifications.
This is a problem I face too. But Iâm sure its a problem that most of us face anyway. ÂŻ_(ă)_/ÂŻ
Meanwhile me with 300mil place visits across my games and groups as a solo dev, over 10k followers, sitll no verified badge. rip. maybe its beacuse i change my name a lot
Alright, I like & dislike this update. First off, I like how more users can now get the verified badge. On the other hand, why do you need followers to get verified? I feel like the âFollow Userâ button and followers on Roblox is just stupid. What is the point in following a user when it does not do anything, at most the follow user option only lets you message or join that user (Only if they have that stuff enabled). So, Iâm 50/50 on this, I like it but at the same time I donât
Personally Iâve never seen a use for Following Users on Roblox. It does quite literally nothing but add someone to a list almost nobody sees.
I will never understand why theyâre using such an irrelevant statistic to measure the authenticity of a Developer.
I think they are doing this because this is how you get verified on other social media platforms, but I think they should just do there own thing and not copy every other platform.
Old devs who accepted everyoneâs friend requests back before 2015 (genuine fans friend requests) would not have this problem of needing followers
I support this change, verified badge should only be given to genuine contributors and developers.
Whatâs the point of following people? At least with social media sites like Twitter you see their posts. On Roblox, that doesnât exist anymore since they removed the update status many years ago.
I do definitely question the cases where people used Limited UGC and made Following a requirement though.
But
I honestly donât care about the checkmark. It made me actually believe that everyone with the Checkmark is in Developer Relations. Which is not the fact. It misleaded meâŚ
idk a very few times I follow people that I canât friend if I did wanted to friend them
idk wat it does, but if you follow someone it sometimes gives like privacy settings priviliges
Where would you use the code if you donât mind me asking?