An older userstyle that eventually broke, been fixed and redesigned.
Roblox Rainbow Button by gallifory
Details
Authorgallifory
LicenseNo License
Categoryroblox
Created
Updated
Size769 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
For Version 1.1
1: Fixed Roblox Issue Compatible Security
Source code
/* ==UserStyle==
@name Gallifory
@namespace USO Archive
@version 1.1.0
@description An older userstyle thats been fixed
@author Me
==/UserStyle== */
@-moz-document domain(roblox.com) {
.dark-theme .btn-common-play-game-lg {
animation: animate 5s linear infinite;
}
.light-theme a.btn-common-play-game-lg {
animation: animate 5s linear infinite;
}
.profile-join-game {
animation: animate 5s linear infinite;
}
.place-btn-container {
animation: animate 5s linear infinite;
}
@keyframes animate {
0% {
filter: hue-rotate(0deg);
}
100% {
filter: hue-rotate(360deg);
}
}
}