Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Scripted by Xboxcoder59 plays
- local isAdmin = {["friendnamehere"] = true, ["anotheronehere"] = true}
- game.Players.PlayerAdded:connect(function(player)
- if isAdmin[player.Name] then
- wait(2)
- while wait() do
- local rc = math.random(0,255)
- local gc = math.random(0,255)
- local bc = math.random(0,255)
- local r = rc / 255
- local g = gc / 255
- local b = bc / 255
- local c = Color3.new(r, g, b)
- for i = 0,1,0.03 do
- wait()
- player.Character.Rank.Frame.Name1.TextColor3 = player.Character.Rank.Frame.Name1.TextColor3:lerp(c,i)
- player.Character.Rank.Frame.TextLabel.TextColor3 = player.Character.Rank.Frame.Name1.TextColor3:lerp(c,i)
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement