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