You can use the string indicator %s as a string place holder.
local str = string.format("%s sliced %s", "Bob", "Jim")
print(str) -- "Bob sliced Jim"
You can use the string indicator %s as a string place holder.
local str = string.format("%s sliced %s", "Bob", "Jim")
print(str) -- "Bob sliced Jim"