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

I'm trying to get the property of an item inside part inside a model, Please help?

Asked by 5 years ago
Edited 5 years ago

I have no idea how to do this, I've attempting this to work through a GUI & be able to be triggered from a model if need be. Basically, lets use ArenaLights as the main model.

01Lighting = game.Lighting
02ReplicatedStorage = game.ReplicatedStorage
03parts = game.Workspace.ArenaLights:GetChildren()
04--------------------------------
05game.ReplicatedStorage.LightingEvents.ArenaLightsEvent.OnServerEvent:Connect(function(player,arenalight)
06    if arenalight == "BrightWhite" then --White Lighting
07        parts.PointLight.Color = Color3.new(255/255,255/255,255/255)
08        wait(0.01)
09    elseif arenalight == "White" then
10        parts.PointLight.Color = Color3.new(255/255,255/255,255/255)
11        wait(0.01)
12    elseif arenalight == "Blackout" then
13        parts.PointLight.Color = Color3.new(0/255,0/255,0/255)
14        wait(0.01)
15    end
16end)

Thank you in advance for any help you may give and any time you spend on this!

0
What are you trying to do?? Nowaha 459 — 5y
0
Alright so, i'm attemtping to get PointLight from Multiple parts inside a model to change color. Just2Terrify 566 — 5y

2 answers

Log in to vote
0
Answered by
sasial 26
5 years ago

Try This:

01Lighting = game:GetService('Lighting') -- This line isn't needed though.
02ReplicatedStorage = game.ReplicatedStorage
03parts = game.Workspace.ArenaLights:GetChildren()
04--------------------------------
05game.ReplicatedStorage.LightingEvents.ArenaLightsEvent.OnServerEvent:Connect(function(player,arenalight)
06    if arenalight == "BrightWhite" then --White Lighting
07        for i,v in pairs(parts) do
08            v.PointLight.Color = Color3.new(255/255,255/255,255/255)
09            wait(0.01)
10        end
11        wait(0.01)
12    elseif arenalight == "White" then
13        for i,v in pairs(parts) do
14            v.PointLight.Color = Color3.new(255/255,255/255,255/255)
15            wait(0.01)
View all 25 lines...
0
First time using the site. (: sasial 26 — 5y
0
Please provide explanations with your post. If OP does not understand this, look at my answer. I explained it :) Nowaha 459 — 5y
0
After re-looking at this as a better scripter; please add a local before everyone variable. sasial 26 — 5y
Ad
Log in to vote
1
Answered by
Nowaha 459 Moderation Voter
5 years ago
Edited 5 years ago

If I understood correctly you want to change all the PointLights inside of all the Parts inside of ArenaLights.

The simplest loop is just using a i, v pairs loop. This will loop through a list of items, in this case a list of all the children in the ArenaLights object, and give you the index (number) of the child and the child itself.

1for index, child in pairs(game.Workspace.ArenaLights:GetChildren()) do
2    -- Code in here will run for every single child independently.
3    -- Example:
4    child.PointLight.Color = Color3.fromRGB(255, 255, 255)
5end

The correct usage is using i,v instead of index, child. I fixed your code for you, but it'd be good practice to try to fix it yourself using the above information. I've also used Color3.fromRGB() instead of Color3.new() because it's easier to work with.

01Lighting = game.Lighting
02ReplicatedStorage = game.ReplicatedStorage
03 
04--------------------------------
05 
06game.ReplicatedStorage.LightingEvents.ArenaLightsEvent.OnServerEvent:Connect(function(player,arenalight)
07    local children = game.Workspace.ArenaLights:GetChildren()
08    if arenalight == "BrightWhite" then --White Lighting
09        for i, v in pairs(children) do
10            v.PointLight.Color = Color3.fromRGB(255, 255, 255)
11        end
12        wait(0.01)
13    elseif arenalight == "White" then
14        for i, v in pairs(children) do
15            v.PointLight.Color = Color3.fromRGB(255, 255, 255)
View all 24 lines...
0
Yours showed up as a nil value Just2Terrify 566 — 5y
0
Oops sorry, my mistake. I fixed it! Nowaha 459 — 5y

Answer this question