if not _G.StartedRaidowIcon then _G.StartedRaidowIcon = true local CoreGui = game:GetService("CoreGui") local h = 0 spawn(function() while task.wait(0.01) do 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 = (function() h = (h + 1) % 360; return Color3.fromHSV(h/360, 1, 1) end)() end end end end) end