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?
1 | IntVal = script.Parent.Parent.Parent.Parent.Value.Value |
2 | IntVal.Changed:connect( function (Val) |
3 | script.Parent.Text = Val |
4 | end ) |
Hope this helps ^^.
Use a loop.
1 | while wait() do |
2 | script.Parent.Text = script.Parent.Parent.Parent.Parent.Value.Value |
3 | end |