How do i set a TextBox's Text to an IntValue?
I've been trying for days but it doesn't work. Please may I have the script?
Use tostring(theintvalue), it will convert another value to a string
You'd use the tonumber()
function of Lua. It converts a string (TextBox's text) into a number or int (IntValue value)
IntVale.Value = tonumber(TextBox.Text)