LastLocation only returning Playing roblox api code example
Example: roblox studio call get friendsonline
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local onlineFriends = player:GetFriendsOnline(10)
for i, friend in pairs(onlineFriends) do
print(friend.UserName)
end