Dark Bubble Chat Scripting

its still white

Did you move everything in the folder into game.Chat?

i just delete folder insert and from folder move everything to chat?

It just has to be a LocalScript in StarterPlayerScripts that is present in edit mode. You don’t add it while the game is running.

1 Like

Now there is no bubble chat just normal chat

Here’s a place with everything set up
Dark Chat Test.rbxl (126.7 KB)
Try it out :slight_smile:

2 Likes

i cant chat in it in studio

Could you post a video? I’m pretty sure I made a script to enable all the chat features

Try chatting ingame. I normally have issues with chatting in studio and I get it to work by chatting in a live server.

1 Like

If it is in studio, this is an ongoing bug that is been happening to me as well.

Look at this, for example. Furthermore, I’d recommend testing it out in game for 100% success rate in showing up.

The only solution for it to work completely in studio is to Disable Accurate Play Solo, which I highly go against (and won’t even be an option in the near future).

3 Likes

Ok to do this first you need to copy all chat files. You can do this by Clicking Play and Copying every file from Chat.
slika slika
Then click Stop and paste all that files into Chat. Now go into BubbleChat script and do this:

  1. After line 198. paste this chatBubbleMain.ImageColor3 = Color3.fromRGB(0,0,0)
  2. After line 211. paste this chatBubbleTail.ImageColor3 = Color3.fromRGB(0,0,0)
    (this will make background black)
    slika
  3. After line 425. paste this bubbleText.TextColor3 = Color3.new(1,1,1)
    (this will make text white)
    slika

Hope this helps! :slight_smile:
Also in studio chat sometimes doesnt load, but it will work in game.

11 Likes

No bubble chat in the game when you type something.

If you are having issues editing the chat script, just use the place file I uploaded and publish it to roblox. Play the game from the website, not studio.

I tried, no chat too

Is bubblechat enabled for your game? Or is chat generally broken for your game?

There seems to be an issue with the current chat api

Please try this game and check if the chat works for you

Edit:
Game is now closed due to privacy reasons.

There’s a post regarding this issue

Can confirm that it works on the place above. :+1:

@XxKinqSinisterxX Can you show visual images to show what is wrong with your chat?

Here’s a place with forced-enabled chat features

Dark Chat Bubbles Fixed.rbxl (126.6 KB)

(The chat should be working now)

1 Like

You need to enable BubbleChat, you can do that by going into ClientChatModules, ChatSettings and changing lines 26 and 27 from:
module.BubbleChatEnabled = PlayersService.BubbleChat
module.ClassicChatEnabled = PlayersService.ClassicChat
to
module.BubbleChatEnabled = true
module.ClassicChatEnabled = true
that will force enable both bubble and classic chat which should fix your problem.
Also you can publish the place and in place settings activate both chats (or just bubble) but im not sure if that will make it visible in studio.

1 Like