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

How can I select multiple parts via scripting ?

Asked by 7 years ago

So today I was trying to make a script where there are white parts (DayBrick) and black parts (NightBrick). I wanted to make a script where on a ScreenGui button click any of the bricks disappear (NOTE: There are mutliple parts named 'NightBrick' and 'DayBrick'). The script is set as a Script and put into Workspace. The goal is that the script must detect all of the parts named each of them and change what they do/are.

01Day = game.StarterGui.ScreenGui.DayButton
02Night = game.StarterGui.ScreenGui.NightButton
03DayBrick = game.Workspace.DayBrick
04NightBrick = game.Workspace.NightBrick
05 
06Day.MouseButton1Click:connect(function()
07    for _,Part in next, (game.Workspace:GetChildren()) do
08        if (Part .Name == "DayBrick") and Part :IsA("BasePart"then
09        DayBrick.Transparency = 0
10        DayBrick.CanCollide = true
11        NightBrick.Transparency = 1
12        NightBrick.CanCollide = false
13        end
14    end
15end)
View all 26 lines...
0
Use game.Selection:Set() hiimgoodpack 2009 — 7y

2 answers

Log in to vote
1
Answered by
Troidit 253 Moderation Voter
7 years ago

You can just use pairs in a for loop. I usually never use next.

Also, I think it'd be a lot easier if you made two seperate folder instances and put the two different types of bricks in each instead of getting all the children of the entire workspace.

01Day = game.StarterGui.ScreenGui.DayButton
02Night = game.StarterGui.ScreenGui.NightButton
03DayFolder = game.Workspace.DayFolder:GetChildren()--day bricks are inside here
04NightFolder = game.Workspace.NightFolder:GetChildren()--night bricks are inside here
05 
06Day.MouseButton1Click:connect(function()--Notice that I took out the if function because we already can assume any parts inside the day folder are only a day block.
07    for key,Part in pairs(DayFolder) do
08        Part.Transparency = 0
09        Part.CanCollide = true
10        Part.Transparency = 1
11        Part.CanCollide = false
12    end
13end)
14 
15Night.MouseButton1Click:connect(function() --Notice that I took out the if function because we already can assume any parts inside the night folder are only a night block.
View all 22 lines...
0
pairs vs next is just preference, really CootKitty 311 — 7y
0
next is like the easiest function to recreate ever, just do table[num + 1] hiimgoodpack 2009 — 7y
0
I get that it's preference, I just posted what I normally would do. Troidit 253 — 7y
Ad
Log in to vote
0
Answered by 7 years ago

Thank you for the script,I made slight changes (the time), but I found that when I click on 'Day' then the DayBlocks disappear, click on 'Night' - nothing happens + on daytime, the night blocks disappear and on nighttime, the dayblocks disappear, just to make it more correct. (It's a puzzle-adventure game I'm making)

01Day = script.Parent.DayButton
02Night = script.Parent.NightButton
03DayFolder = game.Workspace.DayFolder:GetChildren()
04NightFolder = game.Workspace.NightFolder:GetChildren()
05 
06Day.MouseButton1Click:connect(function()
07    for key,Part in pairs(DayFolder) do
08        Part.Transparency = 0   --Why is there 4 rows of 'Part.' ?
09        Part.CanCollide = true  --Same
10        Part.Transparency = 1   --Same
11        Part.CanCollide = false     --Same
12        game.Lighting.TimeOfDay = '14:00:00'
13    end
14end)
15 
View all 24 lines...
0
There are four rows of part because in the for loop, the variable Part is represented as each brick going down the list. Troidit 253 — 7y

Answer this question