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.
01 | Lighting = game.Lighting |
02 | ReplicatedStorage = game.ReplicatedStorage |
03 | parts = game.Workspace.ArenaLights:GetChildren() |
04 | -------------------------------- |
05 | game.ReplicatedStorage.LightingEvents.ArenaLightsEvent.OnServerEvent:Connect( function (player,arenalight) |
06 | if arenalight = = "BrightWhite" then --White Lighting |
07 | parts.PointLight.Color = Color 3. new( 255 / 255 , 255 / 255 , 255 / 255 ) |
08 | wait( 0.01 ) |
09 | elseif arenalight = = "White" then |
10 | parts.PointLight.Color = Color 3. new( 255 / 255 , 255 / 255 , 255 / 255 ) |
11 | wait( 0.01 ) |
12 | elseif arenalight = = "Blackout" then |
13 | parts.PointLight.Color = Color 3. new( 0 / 255 , 0 / 255 , 0 / 255 ) |
14 | wait( 0.01 ) |
15 | end |
16 | end ) |
Thank you in advance for any help you may give and any time you spend on this!
Try This:
01 | Lighting = game:GetService( 'Lighting' ) -- This line isn't needed though. |
02 | ReplicatedStorage = game.ReplicatedStorage |
03 | parts = game.Workspace.ArenaLights:GetChildren() |
04 | -------------------------------- |
05 | game.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 = Color 3. 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 = Color 3. new( 255 / 255 , 255 / 255 , 255 / 255 ) |
15 | wait( 0.01 ) |
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.
1 | for 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 = Color 3. fromRGB( 255 , 255 , 255 ) |
5 | end |
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.
01 | Lighting = game.Lighting |
02 | ReplicatedStorage = game.ReplicatedStorage |
03 |
04 | -------------------------------- |
05 |
06 | game.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 = Color 3. 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 = Color 3. fromRGB( 255 , 255 , 255 ) |