Another option is storing the original string in one variable and the split string in another.
local MyString = "This is a test."
local SplitString = MyString:split(" ")
print(SplitString[1]) -- Outputs "This"
print(MyString) -- Outputs "This is a test."
I’m trying to make admin system something like: (:Kick) (User) (Reason).
I split the string so it print out reason with limit. That’s why I want to remove split.