SocialService:PromptPhonebook() does not work even in published games older than 7 days

--/ OnCallInvoke. This code **SHOULD** run as intended.
--/ However, it returns the error "Experience must be at least one week old to place a call" regardless of experience age.
SocialService.OnCallInviteInvoked = function()
	if RunService:IsStudio() then
		-- Return a pre-generated access code if in studio since Roblox Studio cant generate access codes
		local AccessCode = "pltg3tzRWHkq7Otoe2v-e_ky-zvuCHxLijcNMLXVs6jhvRPmAwAAAA2"
		return {ReservedServerAccessCode = AccessCode, PlaceId = game.PlaceId}
	else
		return {ReservedServerAccessCode = TeleportService:ReserveServer(game.PlaceId), PlaceId = game.PlaceId}
	end
end

Whenever I try to use the :PromptPhonebook() function from SocialService, it gives me an error that the experience isn’t older than 7 days even though it is:

image


Here’s the uncopylocked place I tried this in (that was created last year): Phonebook POC - Roblox

This used to work before but recently it stopped working as intended.

9 Likes

Hi @Furxiety, thank you for the report! This was a bug that we have now fixed. I’ve tested the experience and it seems to be working again. Please let me know if you continue to run into issues.

1 Like

Hey @jovocados, I can confirm that this works properly on my end now. Thanks so much for the fix :smile:

Hey! Just to clarify, does this fix apply to Studio as well? I was able to place calls in Studio before, but now it seems to no longer work. Is that intended?