script.Parent.Text = script.Parent.Parent.Parent.Parent.Value.Value I want it to make the text of a buttongui equal the value of an intvalue everytime I change it with te properties tab but I have to disable the script then enable it for it to change! HELP?
IntVal = script.Parent.Parent.Parent.Parent.Value.Value IntVal.Changed:connect(function(Val) script.Parent.Text = Val end)
Hope this helps ^^.
Use a loop.
while wait() do script.Parent.Text = script.Parent.Parent.Parent.Parent.Value.Value end