getgenv().RainbowSpeed = 1 -- скорость смены цветов local CoreGui = game:GetService("CoreGui") local RunService = game:GetService("RunService") -- Подключение к Heartbeat для плавной анимации RunService.Heartbeat:Connect(function() local time = tick() * getgenv().RainbowSpeed local hue = time % 1 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.fromHSV(hue, 1, 1) end end end)