View Single Post
04-23-13, 05:00 AM   #4
Haleth
This Space For Rent
 
Haleth's Avatar
Featured
Join Date: Sep 2008
Posts: 1,173
I'm fairly sure the square bracket is the problem. You need to escape it with %, like so:

Code:
local msg = string.gsub(message, "%[", "")
  Reply With Quote