Follow Friend to Place Instance button not working

So my place is a universe with multiple places, I need to make an option to follow friends into other places within that universe.
I am using TeleportService’s TeleportToPlaceInstance and GetPlayerPlaceInstanceAsync to do this. This is what I have currently, but for some reason, it returns an empty error.
(keep in mind I am testing the game private, using the new Developer’s only can-play test feature)

					local success, errorMsg, placeId, instanceId = TS:GetPlayerPlaceInstanceAsync(FollowInfo["VisitorId"])
					if success then
						loadingGui()
						game:GetService("TeleportService"):TeleportToPlaceInstance(placeId,instanceId,plr,nil,{},plr.PlayerGui.LoadingScreen)
					else
					    print("Friend Follow Error:", errorMsg)
					end

FollowInfo[“VisitorId”] is the friend’s UserId

Success is always set to false I believe so it wouldn’t work, try setting it to true. Also the VisitorId shouldn’t be a string.

See: https://devforum.roblox.com/t/teleporttoplaceinstance-is-broken-w-out-error-message/114864

1 Like

Alright thanks I’ll check this out soon.