如何使脚本不断检查值更改以及值是否更改以打开或关闭GUI。我的代码没有给我任何错误,它只是在值改变时什么都不做。
pID=script.Parent.prgrmID.Value
icnID=script.Parent.prgrmID.icnID.Value
if(pID==0 and icnID==0)then
script.Parent.Visible=false
elseif(pID>0 and icnID>0)then
script.Parent.Visible=true
elseif(pID>0 and icnID==0)then
print("ICON NOT FOUND")
script.Parent.prgrmIcon.Image="http://www.roblox.com/asset/?id=413746335"
end
script.Parent.prgrmID.Changed:connect(function()
if(pID==0 and icnID==0)then
script.Parent.Visible=false
elseif(pID>0 and icnID>0)then
script.Parent.Visible=true
elseif(pID>0 and icnID==0)then
print("ICON NOT FOUND")
script.Parent.prgrmIcon.Image="http://www.roblox.com/asset/?id=413746335"
end
end)
它不会出错或什么