--/ 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:
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.