Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can i get rid of the starting message in roblox chat "Chat "/help" for a list of commands?"

Asked by 4 years ago

Im just stuck on it ive tried looking on youtube but found nothing.

2 answers

Log in to vote
2
Answered by 4 years ago

This seemed to work for me.

01script.Parent:WaitForChild("Chat").DescendantAdded:Connect(function(c)
02    if c:IsA("TextLabel") and c.Text == "Chat '/?' or '/help' for a list of chat commands." then
03        c.Parent:Destroy()
04    end
05end)
06 
07wait(0.1)
08for i,v in pairs(script.Parent:WaitForChild("Chat"):GetDescendants()) do
09    if v:IsA("TextLabel") and v.Text == "Chat '/?' or '/help' for a list of chat commands." then
10        v.Parent:Destroy()
11    end
12end
0
ngl, pretty good way to bodge it. will give upvote exobyteXL 290 — 4y
Ad
Log in to vote
2
Answered by
blazar04 281 Moderation Voter
4 years ago

Open studio, press play, in the explorer window open "Chat", copy "ChatModules", stop testing, and finally paste the ChatModules folder back into chat. This will now allow you to modify part of Roblox's default chat functionality, including removing that message.

To remove the message, open the ChatModules folder, and open the script "ChatCommandsTeller." Now, scroll to the bottom of the script. You should see this:

1if ChatSettings.GeneralChannelName then
2    local allChannel = ChatService:GetChannel(ChatSettings.GeneralChannelName)
3    if (allChannel) then
4        allChannel.WelcomeMessage = ChatLocalization:FormatMessageToSend("GameChat_ChatCommandsTeller_AllChannelWelcomeMessage","Chat '/?' or '/help' for a list of chat commands.")
5    end
6end

Delete it, and the message will be removed.

Answer this question