Hey! i have a problem, im trying to get all friends from a player, but it prints blank, i have over 180 friends. its a local script, and i tested in studio and roblox. if you have any answers please tell me!
local Players = game:GetService("Players")
local plr = Players.LocalPlayer
local alreadySelectedFriends = {}
local Players = game:GetService("Players")
local plrFriends = Players:GetFriendsAsync(plr.UserId)
print(plrFriends)
hi! GetFriendsAsync(ID) method retuns a FriendPage object which is the page object, so you cannot print in the developer console as you’ve must to get this current page.
you can find out how does this work here.