Advertisement
Vzurxy

Untitled

Dec 19th, 2017
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.07 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. bill2 = Instance.new('BillboardGui', game.Players.LocalPlayer.Character.Head)
  5. bill2.Size = UDim2.new(0, 120, 0, 120)
  6. bill2.AlwaysOnTop = true
  7. face = Instance.new('ImageLabel', bill2)
  8. face.Image = 'rbxassetid://343377229'
  9. face.Size = UDim2.new(0, 120, 0, 120)
  10. face.BackgroundTransparency = 1
  11. label = Instance.new("TextLabel", bill)
  12. label.Size = UDim2.new(2, 0, 1, 0)
  13. label.Position = UDim2.new(-0.5, 0, -0.5, 0)
  14. label.BackgroundTransparency = 1
  15. label.FontSize = "Size14"
  16. while true do            
  17.         label.TextColor3 = Color3.new(math.random(),math.random(),math.random())
  18. wait(.09)            
  19.         label.TextStrokeColor3 = Color3.new(0 ,0 ,0)
  20.         label.TextStrokeTransparency = 0    
  21.         label.Text = "Donald Trump"
  22. wait (1)
  23. local music = Instance.new("Sound", game.Workspace)
  24. music.SoundId = "http://www.roblox.com/Asset/?id=380762696"
  25. music.Parent = game.Workspace
  26. music.Looped = true
  27. music:Play()
  28.   end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement