Hello! I need help with my now-broken chat system.
Last Roblox studio update, my script worked fine. I just updated to find that the chat for my game is now broken/gone.
The script was a proximity chat system, where the only chat you could see was the chat above your head.
Now, there is no chat at all. It’s just missing.
I believe this is the script that was creating the proximity chat: (Not completly sure, I bought it a year ago). It is being kept in ReplicatedFirst, as it has always been.
local ChatService = game:GetService("Chat") ChatService:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, function() return {BubbleChatEnabled = true, ClassicChatEnabled = false} end)