Hey so i'm trying to modify all part childrens of this model but this simple test script does not work...
parts = workspace.Model:GetChildren() parts.Anchored = true
Does anyone know what is the problem?
You must use a "for" loop. It will loop through each of the group's children until the goal is met.
local parts = workspace.Group:GetChildren() for i,child in pairs(parts) do print("anchoring a part") child.Anchored = true end