🏳️⚧️
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| return { | |
| Name = "BaseStyleSheet", | |
| DeriveFromBase = false, | |
| Rules = { | |
| CanvasGroup = { | |
| Priority = 9, | |
| BackgroundColor3 = Color3.new(1,1,1), | |
| BorderColor3 = Color3.new(0,0,0), | |
| BorderSizePixel = 0, | |
| Size = UDim2.fromOffset(100, 100) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export type Ok<T> = { | |
| IsOk: true, | |
| Ok: T, | |
| } | |
| export type Err<T> = { | |
| IsOk: false, | |
| Err: T | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local SEQ = { | |
| [0] = "A", "B", "C", "D", "E", "F", "G", "H", | |
| "I", "J", "K", "L", "M", "N", "O", "P", | |
| "Q", "R", "S", "T", "U", "V", "W", "X", | |
| "Y", "Z", "a", "b", "c", "d", "e", "f", | |
| "g", "h", "i", "j", "k", "l", "m", "n", | |
| "o", "p", "q", "r", "s", "t", "u", "v", | |
| "w", "x", "y", "z", "0", "1", "2", "3", | |
| "4", "5", "6", "7", "8", "9", "+", "/", | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local Create = {} | |
| local function fastMixedTableSplit(t) | |
| local l = #t | |
| if l == 0 then return {} end | |
| local out = table.move(t, 1, l, 1, {}) | |
| table.move({}, 1, l, 1, t) | |
| return out | |
| end |