This will be my last reply on this topic but you can do

local str = ''

for i=1, #args, 1 do
  if i > 1 then str = str .. ' '
  str = str .. args[i]
end

-- Here str == 'Vehicle is Stolen'
1 Like