getgenv().Color = { 255, 0, 0 } local CoreGui = game:GetService("CoreGui") for _, v in ipairs(CoreGui:GetDescendants()) do if v:IsA("UIStroke") and v.Parent:IsA("ImageButton") and v.Parent.Parent:IsA("ScreenGui") and v.Parent.Parent.Parent:IsA("Folder") and v.Parent.Parent.Parent.Parent.Name == "CoreGui" then v.Color = Color3.fromRGB(unpack(getgenv().Color)) end end