this isn't working:
1 | strength = script.Parent.TextBox |
2 | script.Parent.MouseButton 1 Down:connect( function () |
3 | strength.text = math.random( 1 , 10 ) |
4 | end ) |
thanks, rep points for all contributors
1 | strength = script.Parent.TextBox |
2 | script.Parent.MouseButton 1 Down:connect( function () |
3 | strength.Text = math.random( 1 , 10 ) |
4 | end ) |
Capatilized T
Make sure to rate this answer up and accept the answer for others
1 | strength = script.Parent.TextBox |
2 | script.Parent.MouseButton 1 Down:connect( function () |
3 | strength.Text = math.random( 1 , 10 ) |
4 | end ) |