Custom Playerboard Help

How would one go about making a friending system with a custom player board with icons next to the names.

1 Like

(LocalScript) game.StarterGui:SetCore("PromptSendFriendRequest", PlayerInstanceHere)

You can find more information here, including prompt block/unblock players…
https://developer.roblox.com/en-us/api-reference/function/StarterGui/SetCore

(LocalScript) Player:IsFriendsWith(FriendUserId)
https://developer.roblox.com/en-us/api-reference/function/Player/IsFriendsWith

And InspectPlayerFromUserId to show what the avatar is wearing
https://developer.roblox.com/en-us/api-reference/function/GuiService/InspectPlayerFromUserId

1 Like

Thank you so so very much! I really appreciate the help.