Super glitchy script help? Return end?
Please make your question title relevant to your question content. It should be a one-sentence summary in question form.
Hello, so I recently just finished my Meltdown Detector script what I am making for my Nuclear Powerplant for my project at school. But recently found out it glitches really bad. Please take a look at my script:
PS: It is huge.
There is no errors but it glitches out like this: https://www.youtube.com/watch?v=hoLFW7123vs
1 | Glitches: There is suppost to be more fire on the screen |
2 | More emergencylights should spin |
3 | The screen should not keep on switching. I think I know why this is happening but I have |
4 | no experience of return end . |
5 | The lights should change to orange or red when mode is switched. |
001 | currentTemp = game.Workspace:WaitForChild( "TemperatureValue" ) |
002 | AlarmMinorS = game.Workspace.AlarmMinor |
003 | AlarmMajorS = game.Workspace.AlarmMajor |
004 | MainframeStatus = game.Workspace.MainframeStatus.SurfaceGui.TextLabel |
006 | local firethree = workspace.Mainframe_Status_Fire_Parts:GetChildren() |
007 | local mainframelights = workspace.MainframeLights:GetChildren() |
008 | local emergencylightson 2 = workspace.EmergencyLights:GetChildren() |
009 | local lightson 2 = workspace.EnteranceLights:GetChildren() |
010 | local lightsonfloor 2 = workspace.EnteranceFloorLights:GetChildren() |
012 | local emergencylightson = workspace.EmergencyLights:GetChildren() |
013 | local fireone = workspace.Mainframe_Status_Fire_Parts:GetChildren() |
014 | local mainframelightstwo = workspace.MainframeLights:GetChildren() |
015 | local lightsoff = workspace.EnteranceLights:GetChildren() |
016 | local lightsofffloor = workspace.EnteranceFloorLights:GetChildren() |
018 | local mainframelightsthree = workspace.MainframeLights:GetChildren() |
019 | local emergencylightsoff = workspace.EmergencyLights:GetChildren() |
020 | local lightson = workspace.EnteranceLights:GetChildren() |
021 | local lightsonfloor = workspace.EnteranceFloorLights:GetChildren() |
024 | if currentTemp.Value > = 700 then |
029 | MainframeStatus.TextColor 3 = Color 3. new( 255 , 85 , 0 ) |
031 | for i = 1 , #firethree do |
032 | firethree [ i ] .Fire.Enabled = false |
035 | for i = 1 , #mainframelights do |
036 | mainframelights [ i ] .Light.PointLight.Color = Color 3. new( 1 , 170 / 255 , 0 ) |
037 | mainframelights [ i ] .Light.PointLight.Color = Color 3. new( 255 , 170 / 255 , 0 ) |
038 | mainframelights [ i ] .Light.BrickColor = BrickColor.new( "Orange" ) |
041 | for i = 1 , #emergencylightson 2 do |
042 | emergencylightson 2 [ i ] .Toggle.Value = false |
045 | for i = 1 , #lightson 2 do |
046 | lightson 2 [ i ] .Part.SpotLight.Enabled = true |
049 | for i = 1 , #lightsonfloor 2 do |
050 | lightsonfloor 2 [ i ] .Light.PointLight.Enabled = true |
061 | if currentTemp.Value > = 1000 then |
065 | MainframeStatus.TextColor 3 = Color 3. new( 255 , 0 , 0 ) |
068 | for i = 1 , #emergencylightson do |
069 | emergencylightson [ i ] .Toggle.Value = true |
072 | for i = 1 , #fireone do |
073 | fireone [ i ] .Fire.Enabled = true |
076 | for i = 1 , #mainframelightstwo do |
077 | mainframelightstwo [ i ] .Light.PointLight.Color = Color 3. new( 1 , 0 , 0 ) |
078 | mainframelightstwo [ i ] .Light.PointLight.Color = Color 3. new( 1 , 0 , 0 ) |
079 | mainframelightstwo [ i ] .Light.BrickColor = BrickColor.new( "Red" ) |
082 | for i = 1 , #lightsoff do |
083 | lightsoff [ i ] .Part.SpotLight.Enabled = false |
086 | for i = 1 , #lightsofffloor do |
087 | lightsofffloor [ i ] .Light.PointLight.Enabled = false |
098 | function normalTemperature() |
099 | if currentTemp.Value < 699 then |
105 | MainframeStatus.TextColor 3 = Color 3. new( 255 , 255 , 255 ) |
107 | for i = 1 , #fireone do |
108 | fireone [ i ] .Fire.Enabled = false |
111 | for i = 1 , #mainframelightsthree do |
112 | mainframelightsthree [ i ] .Light.PointLight.Color = Color 3. new( 255 , 255 , 255 ) |
113 | mainframelightsthree [ i ] .Light.PointLight.Color = Color 3. new( 255 , 255 , 255 ) |
114 | mainframelightsthree [ i ] .Light.BrickColor = BrickColor.new( "White" ) |
117 | for i = 1 , #emergencylightsoff do |
118 | emergencylightsoff [ i ] .Toggle.Value = false |
121 | for i = 1 , #lightson do |
122 | lightson [ i ] .Part.SpotLight.Enabled = true |
125 | for i = 1 , #lightsonfloor do |
126 | lightsonfloor [ i ] .Light.PointLight.Enabled = true |
142 | spawn (normalTemperature) |