I wanted to change the color of the text... But it gave am error... I know it's a faulty script error by me. Can someone please fix this for me?
btw, I already defined closebutton, it's a TextButton
closebutton.TextColor3 = TextColor3.new(0/255,0/255,0/255)
OUTPUT
attempt to index global 'TextColor3' (a nil value)
Because you used TextColor3 when changing the color, simply do Color3.new
closebutton.TextColor3 = Color3.new(0/255,0/255,0/255)