Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Trying to make GUI text change color when mouse is hovering over, what do I do? [Answered]

Asked by 4 years ago
Edited 4 years ago

Tryna make a gui and when u hover ur mouse over text it'll change the color, yet I dont really know how to do that. What do i gotta do

script.Parent.MouseEnter:Connect(function()
    script.Parent.TextColor3 = Color3.new("25,255,25")
end)

1 answer

Log in to vote
0
Answered by 4 years ago
script.Parent.MouseEnter:Connect(function()
    script.Parent.TextColor3 = Color3.new(25,255,25)
end)

You got it all correct, just had to remove the ""s.

~Dan_PanMan, advanced scripter.

0
thank ethhscool1 7 — 4y
0
Please accept the answer if it works. Dan_PanMan 227 — 4y
Ad

Answer this question