Hi, I would like to know how to split strings. For example, python has a split() function which splits strings into two. I would like to know how to do that in Roblox.
Thanks to those who helped!
local a = 'yoi' local b = a:sub(0,1) local c = a:sub(1,#a) print(b,c)