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

Why Isn't it changing Imagecolor for the tagged UI's? (CLOSED)

Asked by 4 years ago
Edited 4 years ago

Code:

--Variables-- local ColectionService = game:GetService("CollectionService") local Tagged_Parts = ColectionService:GetTagged("Hover_Buttons") --<--->-- for i,buttons in pairs(Tagged_Parts) do

buttons.MouseEnter:Connect(function()

buttons.ImageColor3 = Color3.fromRGB(77, 77, 77) end)

buttons.MouseLeave:Connect(function() buttons.ImageColor3 = Color3.fromRGB(255,255,255) end) end

1 answer

Log in to vote
0
Answered by 4 years ago

I'm just gonna make multiple scripts instead of this.

Ad

Answer this question