General purpose modules for Roblox development. [Read-only Codeberg mirror]
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

forgor

Signed-off-by: ClaytonTDM <claytontdm@gmail.com>

+3 -10
-7
Demos/init.meta.json
··· 1 - { 2 - "className": "StarterGui", 3 - "properties": { 4 - "ScreenOrientation": "Sensor" 5 - }, 6 - "keepUnknowns": true 7 - }
+3 -3
Modules/TextTransform.luau
··· 55 55 layout.VerticalAlignment = 56 56 Y_ALIGNMENT_MAP[originalYAlignment] or Enum.VerticalAlignment.Top 57 57 layout.SortOrder = Enum.SortOrder.LayoutOrder 58 - layout.Parent = listFrame -- Parent layout immediately 58 + layout.Parent = listFrame 59 59 60 60 local spaceParams = Instance.new("GetTextBoundsParams") 61 61 spaceParams.Font = originalFontFace 62 62 spaceParams.Size = originalTextSize 63 - spaceParams.Text = " " -- Single space character 63 + spaceParams.Text = " " 64 64 local spaceSize: Vector2 = TextService:GetTextBoundsAsync(spaceParams) 65 65 66 66 local charParams = Instance.new("GetTextBoundsParams") ··· 68 68 charParams.Size = originalTextSize 69 69 70 70 local textLength = utf8.len(originalText) 71 - local childrenToParent = table.create(textLength) -- Pre-allocate table 71 + local childrenToParent = table.create(textLength) 72 72 local childIndex = 0 73 73 74 74 for char in string.gmatch(originalText, ".") do