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

Modify all group's children at same time?

Asked by 4 years ago

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?

1 answer

Log in to vote
3
Answered by 4 years ago

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 
0
Thanks, what is for exactly, and why do people always put i? Igoralexeymarengobr 365 — 4y
0
"For" is for loops. Here's the link if you're interested: https://developer.roblox.com/articles/Roblox-Coding-Basics-Loops Mr_Unlucky 1085 — 4y
Ad

Answer this question