Disable team voice chat
-- Services
local TeamService = game:GetService('Teams')
-- Imports
local TeamChat = require(path.to.module)
-- Runtime
local TeamChatServer = TeamChat.Init()
local Team = TeamService.Team.To.Disable.Voice.For
TeamChatServer:SetTeamConfig(Team, {
VoiceEnabled = false
})
-- Imports
local TeamChat = require(path.to.module)
-- Runtime
local TeamChatClient = TeamChat.Init()