the message wont appear in workspace
local deBounce = false local playerFrom = game.Players.LocalPlayer local ChatService = game:GetService("Chat") script.Parent.Touched:Connect(function(hit) if hit.Parent:FindFirstChild("Humanoid") == true then ChatService.Chatted:Connect(function(message) deBounce = true local FilteredString = game:GetService("Chat"):FilterStringForBroadcast(message, playerFrom) local Message = Instance.new("Message") Message.Parent = workspace Message.Text = FilteredString wait(3) deBounce = false Message.Parent = nil Message.Text = "" end) end end)