Custom Player Invite GUI

I was playing The Presentation Experience on Roblox and I noticed that they have a custom friend invite gui that matches the ui style of the rest of the game


How can I add something like this in my own game? I know there’s an invite gui built into the SocialService, but I’ve never seen a custom one like this.

1 Like

When you click on the invite button, it prompts the same frame and you cant change it. This is just a list to access easier, its not that hard.

1 Like

I know, I was just asking how I can make a custom gui showing the player’s friends list like in the image

I found some info in this post: Get all friends from a player

To get the user friends you could do something like this:

local Players = game:GetService("Players")
local player = Players.LocalPlayer
local friends = Players:GetFriendsAsync(player.UserId):GetCurrentPage()

print(friends)

I took this and updated it a little bit from that post!

You could read the documentation about this as well!

Hope this helps!

If i miss understood you, you might be looking for this I assume.