(javascript)https//web.roblox.com/home
#game-details-play-button-container .btn-common-play-game-lg {
margin: 0 auto;
background-image: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
background-size: 400%;
animation: bg-animation 5s infinite;
border-width: 0px
}
@keyframes bg-animation {
0% {background-position: left}
100% {background-position: right;}
}