Answered by
8 years ago Edited 8 years ago
misinterpreted your question - this is a functioning script now. I have 2 solutions for u
1 | game.Workspace.ShowTime.Changed:connect( function () |
2 | script.Parent.Text = "" .. game.Workspace.ShowTime.Value |
first method uses string concatenation ( two dots operator ".." connects a string to a number value and results in a string)
1 | game.Workspace.ShowTime.Changed:connect( function () |
2 | script.Parent.Text = tostring (game.Workspace.ShowTime.Value) |
second method uses the tostring function to convert whatever is in the ()s to a string