Advertisement
DungeonRoblox

Noob_999 Rain Head

Jul 4th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. --[[ thanks for using the head rain script created by me (Optimalframe28, Optimalframe27, poopscoop1270z). instances can easily be added/removed from the script --]]
  2.  
  3.  
  4. ---declarations---
  5. local name = "Noob_999" --change to your name
  6. waittime = "-1" ---change to adjust head creation time
  7.  
  8. ----hint and or other messages----
  9. hint = Instance.new("Hint",game.Workspace)
  10. hint.Text = "Headrain script made by me, Noob_999(fireupdate)"
  11. wait(30)
  12. hint:Destroy()
  13.  
  14.  
  15. ---head creation----
  16. while wait(wattime) do
  17. a = Instance.new("Model",game.Workspace)
  18. a.Name = ""..name
  19. b = Instance.new("Part",a)
  20. b.Name = "Head"
  21. b.BrickColor = BrickColor.new("Pastel brown")
  22. c = Instance.new("SpecialMesh",b)
  23. d = Instance.new("Decal",b)
  24. d.Texture = "http://www.roblox.com/asset/?id=50114574"
  25. e = Instance.new("Fire",b)
  26. Instance.new("Humanoid",a)
  27. b.Size = Vector3.new(1,1,1)
  28. b.Position = Vector3.new(math.random(-300,300),200,math.random(-300,300))
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement