Is there an ability to disable vc bubble

hey there, im trying to make a custom voice chat gui and i cant resolve the problem with voice chat bubbles that appear above players. i would like to know if theres an ability to disable it and how to disable it if able to

Nope. Only by this script

game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)

ok ill check this out later, as i see it disables the chat also, so ig i would need to create custom chat system then

According to Roblox Creator Documentation, this disables the text chat from CoreGui (all graphical user interfaces from Roblox engine that you interact with in-game).

Unfortunately, there isn’t a way to disable voice chat using StarterGui:SetCoreEnabled(), you can only disable:

  • Captures
  • Backpack
  • SelfView
  • Health
  • Chat
  • EmotesMenu
  • All (all of the other GUIs mentioned above)
1 Like

ig you can remove other core guis with some lines as topbar or menu, including voice guis, but you will get warned for that.