Full iteration
Simple method
for characterNumber, character in Text.GetCharacters(frame) do
-- For Roblox fonts, 'character' will be a TextLabel.
-- For custom fonts, 'character' will be an ImageLabel.
endAdvanced method
for lineNumber, line in frame:GetChildren() do
-- 'line' will be a folder.
for wordNumber, word in line:GetChildren() do
-- 'word' will be a folder.
for characterNumber, character in word:GetChildren() do
-- For Roblox fonts, 'character' will be a TextLabel.
-- For custom fonts, 'character' will be an ImageLabel.
end
end
endLast updated