Are Discord link in games allowed if I use PolicyService API?

Hello, I have recently made a game that has gotten pretty popular (https://www.roblox.com/games/17123943571) and I wanted to enlarger the community by adding a Discord billboard sign with the link in it.

The sign obviously only shows for users that have Discord allowed under Policy Service, most people say its allowed, but some say it isn’t?

for details, here’s the server sided script that the game uses

local Discord = false
local PolicyInfo = game:GetService("PolicyService"):GetPolicyInfoForPlayerAsync(Player)
for i, v in pairs(policy.AllowedExternalLinkReferences) do
	if v == "Discord" then
		Discord = true
	end
end

If true, then sends a remote event to the client to show the billboard model inside of workspace.

3 Likes

Yeah it says social media links are allowed

in PolicyService | Documentation - Roblox Creator Hub and I’m pretty sure no scope arcade has discord links using the same method.

3 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.