Me and 2 of my friends are working on a Horror game, but one of them disabled TextChatService and all of my attempts failed at enabling it back, when starting the game its not showing up as a option, i dont know why but i need some help to fix it.
1 Like
Same thing with me, I can’t turn it back on.
Nvm, Found out how to turn it on, Create a local script in ReplicatedFirst
and type this =
local ChatService = game:GetService(“Chat”) – Call ChatService
ChatService:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, function()
return {BubbleChatEnabled = true} – Call the API to change its boolean value to true
end)