hello i want the text on the textbutton to change color but it doesnt works script i use
while true do script.Parent.TextColor3 = Color3.new(85, 255, 0) end
Color3.new takes values in the range from 0-1. What you want is to do Color3.fromRGB. Also, you don't need a while true do loop.
You can try this:
script.Parent.TextColor3 = Color3.fromRGB(85, 255, 0)
This worked i tested it in studio myself
while true do script.Parent.TextColor3 = Color3.fromRGB(85, 255, 0) end