← all posts

Can You Find a Friend Path Through a Banned Roblox Account?

Short version: yes. Roblox's public friends API still returns a banned account's friend list, and FriendPath traverses through them as it would any other node. The "ban" flag affects what the user can do on the platform — login, post, chat — but their stored friendships are still visible to third-party graph tools. Here's what's actually going on.
Short answer
Yes — FriendPath traverses through banned accounts. Roblox's public friends API endpoint /v1/users/{id}/friends still returns friend data for banned/terminated accounts, so the bidirectional BFS can use them as intermediate nodes in a path. The ban affects the user's ability to play, not the visibility of their stored friendships to third-party tools.

What "banned" actually does

Roblox has several moderation states: temporary suspension, account warning, account deletion, account termination (permanent ban), and the rare "POISON" flag for accounts hidden from all public APIs. Most of these affect what the user can do — logging in, joining experiences, chatting, posting — but they don't strip the account's historical friendships from the friends API.

For a typical permanently-terminated account, you can still query https://friends.roblox.com/v1/users/{id}/friends and get the full list of who they were friends with. The profile page itself often shows a "Banned" badge, but the underlying data is intact. This is intentional on Roblox's side — it lets moderation tools and graph-analysis tools inspect what banned accounts were connected to, which is useful for investigating abuse patterns.

What FriendPath does

FriendPath traverses banned accounts exactly like any other node. Their friend list gets fetched, expanded into the next BFS layer, and added to the visited set. If a banned account happens to sit on the shortest path between your two search targets, it'll appear in the returned chain like any other intermediate user.

You'll occasionally see "Banned" labels in the path display when this happens. The label comes from the profile-enrichment step where we fetch display names and badges for the path nodes — Roblox returns an isBanned: true flag on the user object even though the friendships are queryable. FriendPath surfaces this in the UI so you know that node is no longer an active player.

The only true dead-ends

A few account states genuinely prevent traversal:

Banning specifically is NOT in that list. A regular ban doesn't make a friend path through that account impossible.

Re-instated accounts

If Roblox lifts a ban after appeal, the account comes back fully — the same friend list, profile, and data that was there before. No re-indexing or migration needed. FriendPath's results don't care whether an account was previously banned; we just see the current state of the friends API.

Want to test it?

If you happen to know a previously-banned Roblox account ID, you can search a path involving it. You'll usually find one as long as the banned account had public friends before the ban. The path-display UI will mark the banned node with a small "Banned" badge but the chain itself is real.

Try a path search

Free, no install, works in any browser.

Try FriendPath now →

Quick FAQ

What is FriendPath?

FriendPath is a free web tool that finds the shortest chain of friends between any two Roblox accounts using bidirectional breadth-first search over Roblox's public friends API. Runs in your browser, no install, no Roblox login required.

What does "degrees of separation" mean on Roblox?

It's the number of friend links between two accounts. If you're friends with someone who's friends with David Baszucki, you are 2 degrees of separation from David Baszucki. Most active Roblox players are within 3–5 hops of any famous account.

Is FriendPath free?

Yes. The web tool at friendpath.arbastro.com is 100% free, ad-supported. The public API offers 50 free calls per day with paid tiers beyond. See the API docs for details.

Does FriendPath work with banned or terminated accounts?

Yes — Roblox's friends API still returns friend lists for banned/terminated accounts, so FriendPath can traverse through them. The path is computed on the public friend graph, not on a player's active session.