Hello, I am making a join friend system, where if a players friend is in the same universe as said player, a script will create a frame that will teleport the player to their friends server in another place. However no frames are being created and there are no errors in developer console when I test it. Why is this happening?
Here is my script
local onlineFriends = player:GetFriendsOnline(10)
for i, v in pairs(onlineFriends) do
if v.LastLocation and v.GameId == game.GameId then
local playerFrame = script.Parent.Template:Clone()
playerFrame.Visible = true
playerFrame:WaitForChild('PlayerName').Text = v.DisplayName
playerFrame.Parent = script.Parent
local connection = playerFrame:WaitForChild('JoinButton').MouseButton1Click:Connect(function()
pcall(function()
game:GetService('TeleportService'):TeleportToPlaceInstance(v.PlaceId, v.UserName, player)
end)
end)
end
end
make sure there are friends online in the place then you should use some prints to debug your code
I would first print onlineFriends to see what is being returned by the function and also do a print in the for loop right at the top to make sure its running right you can even print your i and v variables there
you will then be able to tell what is going on with it
and i think your issue is right here it should be PlaceId v.PlaceId == game.PlaceId
also this should use the GameId where you have UserName so use game:GetService('TeleportService'):TeleportToPlaceInstance(v.PlaceId, v.GameId, player)
v.PlaceId is the actual place id v.GameId is the actual running game id each server that the place has running has a different gameid which would be the one your friend might be in you are both still in the same placeid