Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. bill = Instance.new("BillboardGui", game.Players.LocalPlayer.Character.Head)
  2. bill.Size = UDim2.new(4, 0, 4.5, 0)
  3. bill.AlwaysOnTop = true
  4.  
  5. label = Instance.new("TextLabel", bill)
  6. label.Size = UDim2.new(2, 0, 1, 0)
  7. label.Position = UDim2.new(-0.5, 0, -0.5, 0)
  8. label.BackgroundTransparency = 1
  9. label.FontSize = "Size14"
  10. while true do
  11. label.TextColor3 = Color3.new(math.random(),math.random(),math.random())
  12. wait(.09)
  13. label.TextStrokeColor3 = Color3.new(0 ,0 ,0)
  14. label.TextStrokeTransparency = 0
  15. label.Text = "Team English"
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement