Advertisement
Guest User

XD

a guest
Feb 14th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. while true do
  2. wait(.0)
  3.  
  4. x = Instance.new("Part")
  5. x.Parent = game.Workspace
  6. x.Name = ("Head")
  7. y = Instance.new("SpecialMesh")
  8. y.Parent = x
  9. x.Size = Vector3.new(4,4,4)
  10. x.Position = Vector3.new(math.random(-250,250), 36, math.random(-250,250))
  11. x.BrickColor = BrickColor.new("Bright yellow")
  12. z = Instance.new("Decal")
  13. z.Parent = x
  14. z.Texture = "http://www.roblox.com/asset/?id=62099719"
  15.  
  16. local sound = Instance.new("Sound")
  17. sound.SoundId = "http://www.roblox.com/asset/?id=604650009" --Change the last numbers of the link to the id of your audio.
  18. sound.Parent = script.Parent
  19. sound.Volume = 500000000
  20. sound.Looped=true
  21. sound:play()
  22.  
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement