#Make index text box green when item found
1 messages · Page 1 of 1 (latest)
What do you mean by 'index text box', can you show what you have so far?
To change a TextBox's color you can change the BackgroundColor3 or the TextColor3 depending on what you want to change.
Example:
local MyTextbox = ...
-- Change the background:
MyTextbox.BackgroundColor3 = Color3.new(0,0,0) -- Use the color picker to select a color
-- Change the actual text's color:
MyTextbox.TextColor3 = Color3.new(1,1,1)
** You are now Level 1! **