Client side

if you want to split the result into two variables or more you can use this code

local result = "your result"
local splitString = {}
     for i in string.gmatch(result, "%S+") do
        splitString[#splitString + 1] = i
      end
local data1, data2 = splitString[1],splitString[2]