1
point[arg1]+""..txt:sub(7,100)..""
My script work when i remove it and won't work when i add it
so i though the error is this line
please how can i fix it
point[arg1]+""..txt:sub(7,100)..""
point[arg1]"..txt:sub(7,100).."
point[arg1] .. txt:sub(7,100).
X..""..Yor
X..''..Y(with X and Y being ANYTHING) it's a POINTLESS operation written by someone who didn't know what he's doing.
X..""..Yis equal to
X..Y
X..''..Yis equal to
X..Yas well.
X..""would be
X+0,
X-0,
X*1or
X/1. It's neutral. It doesn't change anything. It only wastes performance. So why do you do it? Don't do it.