SplitStrings
This Step splits Strings to a specific or random length
Settings
Name
type
description
Values
Example
print("Hello, World!")-- MinLength = 1
-- MaxLength = 1
local f = function(f)
local k, C = f[#f], ""
for j = 1, #k, 1 do
C = C .. k[f[j]]
end
return C
end
print(f({13, 11, 4, 12, 1, 6, 8, 10, 9, 7, 3, 2, 5, {"o", "d", "l", "l", "!", ",", "r", " ", "o", "W", "e", "l", "H"}}))Last updated