So, I’ve got a problem. I’ve created a game, and I removed the chat feature from my game during the game publishing prompt (of course, I did this by accident) And now, I noticed it when I tried joining the game with my friend. I’ve been looking at game settings in roblox studio, configure game and configure place, but there is no changing your chat from:
None
Bubble
Normal
Both
I’m not sure what to do, since my game’s main aspect is about chatting and roleplay, so how do I change this?
2 Likes
do you have any localscript inside the starter gui
1 Like
Use this localscript in the starterplayerscripts:
local StarterGui = game:GetService("StarterGui") --Service GUI
wait(0.1) -- wait for 100 milisecs
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, true) -- Enables all properties available for chat
script:Destroy() -- Removes the script after enabling the chat system
-- Hope it helps! If so please tick this reply as a solution so other
--viewers of this post would know. Have a great day
3 Likes