Advertisement
Animescapetower

Untitled

Feb 18th, 2018
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. local s = Instance.new("Sound")
  2.  
  3.  
  4.  
  5. s.Name = "Sound"
  6.  
  7. s.SoundId = "http://www.roblox.com/asset/?id=347955300"
  8.  
  9. s.Volume = 5
  10.  
  11. s.Pitch = 1
  12.  
  13. s.Looped = false
  14. s.Parent = Workspace
  15. s:Play()
  16. while true do
  17. wait(.00)
  18. x = Instance.new("Part")
  19.  
  20. x.Parent = game.Workspace
  21. x.Name = ("Head")
  22. y = Instance.new("SpecialMesh")
  23. y.Parent = x
  24. x.Size = Vector3.new(4,4,4)
  25. x.Position = Vector3.new(math.random(-250,250), 36, math.random(-250,250))
  26. x.BrickColor = BrickColor.new("Bright yellow")
  27. z = Instance.new("Decal")
  28. z.Parent = x
  29. z.Texture = "http://www.roblox.com/asset/?id=62099719"
  30. wait(1)
  31. x:Destroy()
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement