Does a "FollowService" exist?

Hi! I’m trying to make a game where you can follow people on Roblox. When I say follow I don’t mean the characters follow the player. No, I mean make them a ‘follower’. Here’s what I’m talking about:
image
I’m wondering if there is a service for this or some way to let the player follow someone on Roblox.

Friends v1 API

/v1/users/{targetUserId}/followers/count

E.g:

curl -X 'GET' \
  'https://friends.roblox.com/v1/users/1/followers/count' \
  -H 'accept: application/json'

Returns:

{
  "count": 12128387
}

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.