King_Dice

Donald Trump Morph For ROBLOX

Feb 5th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. local playerLeaderstats = {}
  2. for i, v in pairs(game.Players:GetChildren()) do
  3. table.insert(playerLeaderstats, v)
  4. end
  5. for i, v in pairs(playerLeaderstats) do
  6. pe = Instance.new("ParticleEmitter",v.Character.Torso)
  7. pe.Texture = "http://www.roblox.com/asset/?id=526577438"
  8. pe.VelocitySpread = 50
  9. pe = Instance.new("ParticleEmitter",v.Character.Head)
  10. pe.Texture = "http://www.roblox.com/asset/?id=131188214"
  11. pe.VelocitySpread = 50
  12.  
  13. end
  14.  
  15. a=Instance.new("Sky",game.Lighting)
  16.  
  17. b={"Bk","Dn","Ft","Lf","Rt","Up"}
  18.  
  19. for i,v in pairs(b) do
  20.  
  21. a["Skybox"..v]="rbxassetid://365273900"
  22.  
  23. end
  24.  
  25.  
  26.  
  27. print("Music executed!")
  28.  
  29. s = Instance.new("Sound")
  30.  
  31. s.Name = "Music"
  32.  
  33. s.SoundId = "http://www.roblox.com/asset/?id=401831658" --Put the id into there.
  34.  
  35. s.Looped = true
  36.  
  37. s.Pitch = 1 --You can edit these settings.
  38.  
  39. s.Volume = 10 --You can edit these settings.
  40.  
  41. s.archivable = false
  42.  
  43.  
  44.  
  45. s.Parent = game.Workspace
  46.  
  47.  
  48.  
  49. wait(1)
  50.  
  51.  
  52. s:play()
  53.  
  54. bill = Instance.new("BillboardGui", game.Players.LocalPlayer.Character.Head)
  55. bill.Size = UDim2.new(4, 0, 4.5, 0)
  56. bill.AlwaysOnTop = true
  57. bill2 = Instance.new('BillboardGui', game.Players.LocalPlayer.Character.Head)
  58. bill2.Size = UDim2.new(0, 120, 0, 120)
  59. bill2.AlwaysOnTop = true
  60. face = Instance.new('ImageLabel', bill2)
  61. face.Image = 'rbxassetid://343377229'
  62. face.Size = UDim2.new(0, 120, 0, 120)
  63. face.BackgroundTransparency = 1
  64. label = Instance.new("TextLabel", bill)
  65. label.Size = UDim2.new(2, 0, 1, 0)
  66. label.Position = UDim2.new(-0.5, 0, -0.5, 0)
  67. label.BackgroundTransparency = 1
  68. label.FontSize = "Size14"
  69. while true do
  70. label.TextColor3 = Color3.new(math.random(),math.random(),math.random())
  71. wait(.09)
  72. label.TextStrokeColor3 = Color3.new(0 ,0 ,0)
  73. label.TextStrokeTransparency = 0
  74. label.Text = "DONALD TRUMP"
  75. end
Add Comment
Please, Sign In to add comment