How do I disable that “You’ve joined user” and the “user has joined you” text? Is there any way or is there no setting for this anywhere.
hmm I dont think you can disable it for your game as it is apart of roblox, now as an individual you might be able to disable it for yourself in settings
1 Like
Im not sure if this might work:
local TextChatService = game:GetService("TextChatService")
local RobloxSystemChannel = TextChatService:WaitForChild("TextChannels"):WaitForChild("RBXSystem")
TextChatService.OnIncomingMessage = function(message)
if message.TextChannel == RobloxSystemChannel and message.Metadata == "Roblox.Notification.Friend.Joined" then
return
end
end
If it doesn´t work:
return ""
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.