Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How Would I make A Gui Text The Same as a Number Value And make it Change Every Time it changes?

Asked by 3 years ago

I Want to Do a Cd System where The Cd is Displayed And it's the same As A number Value

I Tried To Update The Text With

CDTime.GetPropertyChangedSignal("Value"):Connect(function() --CDTime is  a number Value
    if CD == true then -- CD is a bool Value 
Display.Text = CDTime.Value
end)
0
On line 02, replace CD == true with CD.Value == true. Also, you forgot an extra end after the if then block. It should be "if CONDITION then DOSTUFF end" then put the end) on the next line after that. radiant_Light203 1166 — 3y

Answer this question