When you call string.find(), it returns those two variables separately. You can do something like local indexStart, indexEnd = ("someStringHere"):find("whatever"), with the variables being whatever you want. The only way they’d be combined is if you’re directly printing the results without assigning them to a variable.