--BROUGHT TO YOU BY RobloxScripter.com!--
function update()
for i,v in pairs(game:GetService("Workspace").Buttons:GetDescendants()) do
if v.ClassName == "Part" and v.Name == "Button" then
local box = Instance.new("BoxHandleAdornment", v)
box.AlwaysOnTop = true
box.Adornee = v
box.Size = v.Size
box.Color3 = v.Color
box.ZIndex = 1
end
end
end
while wait() do
update()
end