So heres the backstory for this script.
Im making it so a value is gonna be displayed at the text label whenever it gets changed. However, for some reason it does not update. help.
temp:GetPropertyChangedSignal("Value"):Connect(function()
if ReactOn then
temp.Value = Data.Tempa.Text
end
if temp.Value > 6000 then
Data.Tempa.TextColor = Color3.fromRGB(255, 0, 0)
end
if temp.Value < 6000 then
Data.Tempa.TextColor = Color3.fromRGB(0, 255, 0)
end
end)
-Note : temp and ReactorOn local shorting for the values. the script takes the value from RS.-