Updated Verified Badge Criteria for Contributing Developers

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.

5 Likes

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

1 Like

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.

1 Like

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

6 Likes

Thanks, this is a fairer change.

4 Likes

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?

1 Like

I’ve noticed a few people which had verified badge and… weird “people” following them. Finally. No selling verified badge anymore. Wohoo

1 Like

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.

7 Likes

Yay! Hopefully this stops those clowns selling verifications.

2 Likes

This is a problem I face too. But I’m sure its a problem that most of us face anyway. ¯_(ツ)_/¯

2 Likes

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

1 Like

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

3 Likes

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.

4 Likes

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.

2 Likes

Old devs who accepted everyone’s friend requests back before 2015 (genuine fans friend requests) would not have this problem of needing followers :wink:

I support this change, verified badge should only be given to genuine contributors and developers.

4 Likes

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.

2 Likes

I do definitely question the cases where people used Limited UGC and made Following a requirement though.

But :person_shrugging:
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…

1 Like

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

1 Like

Where would you use the code if you don’t mind me asking?

1 Like