Advertisement
DaVector212

Rainbow Savage *TEST*

May 17th, 2018
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. BillboardGui = Instance.new("BillboardGui")
  2.  
  3. local billboardgui = game:GetService("ServerStorage"):WaitForChild("BillboardGui")
  4. game.Players.PlayerAdded:Connect(function(player)
  5. player.CharacterAdded:Connect(function(char)
  6. if player.Name == "<DaVector212>" then
  7. game.Workspace:WaitForChild(player.Name)
  8. local clonedgui = billboardgui:Clone()
  9. clonedgui.Parent = game.Workspace[player.Name].Head
  10. clonedgui.TextLabel.Text = "Savage"
  11. clonedgui.TextLabel.TextColor3 = Color3.fromRGB(239, 184, 56)
  12. clonedgui.TextLabel.TextStrokeColor3 = Color3.fromRGB(0, 0, 0)
  13. clonedgui.TextLabel.TextStrokeTransparency = 0
  14. while true do
  15. clonedgui.TextLabel.TextColor3 = Color3.new(0,204,255)
  16. wait(.1)
  17. clonedgui.TextLabel.TextColor3 = Color3.new(0,255,0)
  18. wait(.1)
  19. clonedgui.TextLabel.TextColor3 = Color3.new(255,255,0)
  20. wait(.1)
  21. clonedgui.TextLabel.TextColor3 = Color3.new(255,0,0)
  22. wait(.1)
  23. clonedgui.TextLabel.TextColor3 = Color3.new(153,0,153)
  24. wait(.1)
  25. clonedgui.TextLabel.TextColor3= Color3.new(0,0,255)
  26. wait(.1)
  27. end
  28. end
  29. end)
  30. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement