(text)
| 1 | // Your "Input" tab should look like this |
| 2 | const modifier = (text) => { |
| 3 | // Your other input modifier scripts go here (preferred) |
| 4 | text = AutoCards("input", text); |
| 5 | text = LocalizedLanguages("input", text); |
| 6 | // Your other input modifier scripts go here (alternative) |
| 7 | return { text }; |
| 8 | }; |
| 9 | modifier(text); |