So, I am working on 3 games: golden plates, untitled shooting game and chunk.survival. I need help with the game of chunk.survival, I am trying to figure out how to clear all system messages for a Local Player. I need this to remove the “Chat ‘?’ or ‘/help’ for a list of chat commands.” system message.
I think you need to make your own chat, buddy. I saw the text appearing in Chat’s modules, but when changing it, it doesn’t affect the chat, so it’s useless for us.
script.Parent.MouseButton1Click:Connect(function() --Or whatever causes to clear the local chat.
for _, object in pairs(game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui"):FindFirstChild("Chat").Frame.ChatChannelParentFrame.Frame_MessageLogDisplay.Scroller:GetDescendants()) do --current path to the chat. May change in the future.
if object:IsA("Frame") then
object:Destroy()
end
end
end)