How can i mention discord in my roblox game?

ive seen games like basketball zero say join the discord server for codes etc

in my time playing ive known roblox banned the word ‘discord’

how can i add the same in my game? do i just.. do it? or are there stuff i need to do first? and will i get moderated?

1 Like

Hey! you could use policy service to check if the player is allowed to see social links as not all players on the platform should / are allowed to see external platform links

local PolicyService = game:GetService("PolicyService")

local player = game.Players.LocalPlayer

pcall(function()

local accessToSee = PolicyService:GetPolicyInfoForPlayerAsync(player).AllowedExternalLinkReferences

if accessToSee then

-- player is ALLOWED to see discord link

end

end)
7 Likes

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