You can write your topic however you want, but you need to answer these questions:
- Fix bubble chat.
2.Bubble chat fades away/washs out way to fast
https://gyazo.com/69cb00cf99d1887a8a4c2fee0a70a1f7
- Tried other bubble chat scripts but not really a scripter my self.
Scripts I added since the issue came about.
local Chat = game:GetService("Chat") Chat:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, function() return { BubbleChatEnabled = true, ClassicChatEnabled = false, } end)
print("Removed Player list!")
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)
game.Workspace["Hide Playerlist"]:Destroy() --- > This will remove this script.```
```lua
local StarterGui = Game:GetService('StarterGui')
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)```