It changes the play button to 3 different blues, you can change the delay in the code on line 8, change the time to any number but remember to add the s to the end and dont change anything else or it wont work
Roblox Blue Color Changing Play Button by maxxus
Details
Authormaxxus
LicenseNo License
Categoryroblox
Created
Updated
Size737 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Roblox Blue Color Changing Play Button
@version 20210827.02.59
@namespace userstyles.world/user/maxxus
@description It changes the play button to 3 different blues, you can change the delay in the code on line 8, change the time to any number but remember to add the s to the end and dont change anything else or it wont work
@author maxxus
@license No License
==/UserStyle== */
@-moz-document domain("roblox.com") {
@keyframes rainbow {
0% {background-color: #00a6ff;border-color: #00a6ff;}
50% {background-color: #007bff;border-color: #007bff;}
100% {background-color: #003cff;border-color: #003cff;}
}
.btn-common-play-game-lg {
animation: rainbow 10s infinite;
}
}