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

Super glitchy script help? Return end?

Asked by 10 years ago

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

1Glitches: 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.
001currentTemp=game.Workspace:WaitForChild("TemperatureValue")
002AlarmMinorS=game.Workspace.AlarmMinor
003AlarmMajorS=game.Workspace.AlarmMajor
004MainframeStatus=game.Workspace.MainframeStatus.SurfaceGui.TextLabel
005 
006local firethree = workspace.Mainframe_Status_Fire_Parts:GetChildren()
007local mainframelights = workspace.MainframeLights:GetChildren()
008local emergencylightson2 = workspace.EmergencyLights:GetChildren()
009local lightson2 = workspace.EnteranceLights:GetChildren()
010local lightsonfloor2 = workspace.EnteranceFloorLights:GetChildren()
011 
012local emergencylightson = workspace.EmergencyLights:GetChildren()
013local fireone = workspace.Mainframe_Status_Fire_Parts:GetChildren()
014local mainframelightstwo = workspace.MainframeLights:GetChildren()
015local lightsoff = workspace.EnteranceLights:GetChildren()
View all 143 lines...

1 answer

Log in to vote
1
Answered by
BlackJPI 2658 Snack Break Moderation Voter Community Moderator
10 years ago

This is a little inefficient.

Here are some of the errors I found:

For loop ends positioned improperly (loops inside loops)

AlarmMinor and AlarmMajor functions both fire when above 1000 (no upper restriction on Alarm Minor)

What I would do is use the Changed event of the NumberValue object to check the temperature every time it is changed. Then you won't have to wait 5 seconds to update.

001currentTemp=game.Workspace:WaitForChild("TemperatureValue")
002AlarmMinorS=game.Workspace.AlarmMinor
003AlarmMajorS=game.Workspace.AlarmMajor
004MainframeStatus=game.Workspace.MainframeStatus.SurfaceGui.TextLabel
005 
006local firethree = workspace.Mainframe_Status_Fire_Parts:GetChildren()
007local mainframelights = workspace.MainframeLights:GetChildren()
008local emergencylightson2 = workspace.EmergencyLights:GetChildren()
009local lightson2 = workspace.EnteranceLights:GetChildren()
010local lightsonfloor2 = workspace.EnteranceFloorLights:GetChildren()
011 
012local emergencylightson = workspace.EmergencyLights:GetChildren()
013local fireone = workspace.Mainframe_Status_Fire_Parts:GetChildren()
014local mainframelightstwo = workspace.MainframeLights:GetChildren()
015local lightsoff = workspace.EnteranceLights:GetChildren()
View all 133 lines...
0
Sorry for such the late reply. I cannot run the script because it says Workspace.Meltdown Detector:98: 'end' expected (to close 'function' at line 25) near 'elseif' Help please? :) WelpNathan 307 — 10y
0
There was an extra end on line 98, my bad! Should work now BlackJPI 2658 — 10y
0
Thank you! :) Will give credit when server released :) WelpNathan 307 — 10y
Ad

Answer this question