Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

won't move part anymore part just floats?? :/

Asked by 4 years ago

the part is just stuck in the air, it won't fall??

01local MainPart = game.Workspace.Part
02local TextBox = script.Parent
03 
04local 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
14end
15 
View all 31 lines...

2 answers

Log in to vote
1
Answered by
zadobyte 692 Moderation Voter
4 years ago

Did you make sure the part wasn't anchored?

Ad
Log in to vote
1
Answered by
DemGame 271 Moderation Voter
4 years ago

Put this into your code:

1MainPart.Anchored = false

Answer this question