How might I make a model anchored in a script, I tried this but failed:
1 | game.Workspace.Dark:GetChildren().Anchored = false |
Dark being the model.
EDIT: Not all of the children are parts so I may have to decipher between parts and non parts.
You can use a for loop! In your case, you would want to loop through the children of the model, check if it is a part (since most instances except for part have anchored property, setting the anchored for a non-part object will result in error and stop the code.), and then anchor it if it is a part. Example code:
1 | local model = script.Parent |
2 | local childs = model:GetDescendant() --get's every descendant of the part, for example if there is a child of a child, this function will get that too. |
3 |
4 | for I,v in pairs (childs) do --for loop |
5 | if v:IsA( "BasePart" ) then --checks if the instance is part.The type "BasePart" applies to every instance that is a part. |
6 | v.Anchored = true |
7 | end |
8 | end |
this may work:
1 | children = Item:GetChildren() |
2 | for i = 1 , #children do |
3 |
4 | local child = children [ i ] |
5 | if child.CassName = = "Part" then |
6 | child.Anchored = true |
7 | end |
8 | end |
does it work? tell me.