when ever I put in
game.Workspace.Part.Anchored = False
It never unanchors same way if I try to anchor it
what did I do wrong?
If you have several instances in the workspace with the name Part it won't work like you want it too.
Try changing the objects name.
You should use false
instead of False
. Booleans in RBX.Lua are lowercase.
As mentioned by other users, there are multiple causes...
1. Multiple 'Part's Multible parts named 'Part' can confuse lua... try changing the name!
2. false not False You have put 'False' not 'false', make sure when using a bool value, use 'true' or 'false', exactly as I have typed them!
3. Incorect Part Location Make sure the Part is where you think it is!