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.
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!