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.
Now there is no bubble chat just normal chat
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.
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).
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.
Then click Stop and paste all that files into Chat. Now go into BubbleChat script and do this:
- After line 198. paste this
chatBubbleMain.ImageColor3 = Color3.fromRGB(0,0,0)
- After line 211. paste this
chatBubbleTail.ImageColor3 = Color3.fromRGB(0,0,0)
(this will make background black)
- After line 425. paste this
bubbleText.TextColor3 = Color3.new(1,1,1)
(this will make text white)
Hope this helps!
Also in studio chat sometimes doesnt load, but it will work in game.
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.
@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)
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.