local temp = script.Parent.Value — starts at 0 local heat = game.Workspace.H.Value —- also starts at 0 local cool = game.Workspace.CoolantOn — starts at 0 repeat wait(1.3) temp = temp + 5 — adds to the temp if heat == 1 then — checks if the heat is on temp = temp + 20 - adds 20 to temp end if cool == 1 then — checks if cool is on temp = temp - 25 — takes away 25 from temp end until 1 == 2 — makes a never ending loop (unless math is changed)
If you can solve this, it would be GREATLY appreciated, and yes, those values WERE checked using developer console. They are = to 1. The main point of this code is to change the “temp” Number value, either up or down.