Updating Friends API & Deprecating IsOnline property from GetFriendsAsync

does this mean we will also get a larger blocklist limit if we are getting a raised friend limit? I don’t think I will ever reach max friends but I have reached the limit of users I can block and I would personally find that to be more useful when using the platform.

2 Likes

If you commission people or get commissioned, or just otherwise work with a lot of people, this limit is reached very quickly.

3 Likes

Why is friending necessary for that?

1 Like

I think it’s more common for long-term work but if you need to demo something working in-game, if you need to test something with them, etc, this is easier when you have them as a friend. When you have to do this with several teams, the number of friends on your friends list goes up a lot. Also team create permissions for games under your profile require you to be friends.

Pair that with people you actively play with, it just goes up from there.

It’s also just nice to have them as a friend to say “I worked with this person” or something.

6 Likes

Why removing the name fields from the online friends request, now i have to make a call to retrive them from the userId, oh my god, hope this saves u millions

2 Likes

why do we need more friends they hurt us they don’t care how we feel

1 Like

I never thought they would actually go through with this update lol.

2 Likes

We’re happy to share that the number of users you can block has been increased from 100 to 1000! There is no action required on your end to implement this.

33 Likes

A few days ago my game has started having problems identifying who’s your friend in-game. I’m suspecting the Player:IsFriendsWith() call (calling it client-side to avoid the cache) to be faulty on my live game, but the problem is that I’m running the same exact code on my “production” and “testing” experiences and the code works fine on “testing” but not “production”:

UPDATE: After restarting my live servers it seems like friend status checks started working again, but there were still weird problems - I periodically call Player:IsFriendsWith() on all players client-side to check the current friend status, and it seems like Player:IsFriendsWith() somehow returned false for a player who was my friend for the whole period:

This code snippet might roughly show what I’m doing:

local is_friends = nil
local success, result = pcall(function()
	is_friends = LocalPlayer:IsFriendsWith(tonumber(user_id_string))
end)
	
if success ~= true then
	warn("[FriendClient]: :IsFriendsWith() error:", result)
end
	
if success == true and type(is_friends) == "boolean" then
	if is_friends_server ~= is_friends then
		print(`[FriendClient]: Requesting server to switch friend state for {user_id_string} from "{is_friends_server}" to "{is_friends}"`)
		update_list[user_id_string] = is_friends
	end
end

Production:

Testing:

4 Likes

This is also happening for Chechos Deltarune RP - Roblox. Client side scripts cannot properly identify who your friends are and it’s leading to friends being unable to TP to eachother

1 Like

A little late the party but time to clout chase all the verified people with the new limit increase. Jokes aside, W API update.

1 Like

Children. Lots of children. Lots and lots of children.

We have some exciting news! The friend limit on Roblox has been increased from 200 to 1000, making it easier for users to connect and stay engaged in your experiences. No action is needed on your end — this update is already live!

31 Likes

Best Update of 2026 already, this is amazing!

3 Likes

well i dont really care but like congrats to anyone that’ll have 1000 friends

what WOULD actually be useful is a way to mass remove friends without extensions

future predictions: “I sent a friend request to one-thousand verified users, and we’re gonna see who accepts”

3 Likes

THANK YOU! This is very exciting news, we’ve all been waiting for this update!

1 Like

In future will increase friends limit up to 1,000,000! I Don’t Know. Thank You!

1 Like

:sleepy:

Screenshot 2025-01-15 at 5.15.21 AM

i’ve said this before, but…

when will the new app icons RELEASE???

1 Like

Best update, it’s good for privacy (both for user, both for user’s friends) (my opinion).

Um. Did this not break tons of games? I had to reupdate my entire friend joining system???