the part is just stuck in the air, it won't fall??
01 | local MainPart = game.Workspace.Part |
02 | local TextBox = script.Parent |
03 |
04 | local function CheckIfCompatible(txt) |
05 | local max = 10 |
06 |
07 | if string.len(txt) > = max then |
08 | return false |
09 | end |
10 |
11 | if string.len(txt) < = max then |
12 | return true |
13 | end |
14 | end |
15 |