Advertisement
Guest User

Noot Noot Script [Not mine]

a guest
May 5th, 2017
2,621
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. for i,v in pairs(game.Players:GetChildren()) do
  2. if v:IsA("Player") then
  3. local nooties = Instance.new("Sound",workspace)
  4. nooties.SoundId = "http://www.roblox.com/asset/?id=142912516"
  5. nooties.Volume = 1
  6. nooties.Looped = true
  7. nooties:Play()
  8. end
  9. end
  10. wait(12)
  11. local Sky = Instance.new("Sky",game.Lighting)
  12. Sky.SkyboxBk = pingudecal
  13. Sky.SkyboxDn = pingudecal
  14. Sky.SkyboxFt = pingudecal
  15. Sky.SkyboxLf = pingudecal
  16. Sky.SkyboxRt = pingudecal
  17. Sky.SkyboxUp = pingudecal
  18. local function modelasd()
  19. for i,v in pairs(workspace:GetChildren()) do
  20. if v:IsA("Model") then
  21. for i,a in pairs(v:GetChildren()) do
  22. local top = Instance.new("Decal",a)
  23. top.Face = "Top"
  24. top.Texture = pingudecal
  25. local btm = Instance.new("Decal",a)
  26. btm.Face = "Bottom"
  27. btm.Texture = pingudecal
  28. local lft = Instance.new("Decal",a)
  29. lft.Face = "Left"
  30. lft.Texture = pingudecal
  31. local rft = Instance.new("Decal",a)
  32. rft.Face = "Right"
  33. rft.Texture = pingudecal
  34. local frnt = Instance.new("Decal",a)
  35. frnt.Face = "Front"
  36. frnt.Texture = pingudecal
  37. local bk = Instance.new("Decal",a)
  38. bk.Face = "Back"
  39. bk.Texture = pingudecal
  40. local VTest = Instance.new("ParticleEmitter")
  41. VTest.Parent = a
  42. VTest.Texture = pingudecal
  43. VTest.Speed = NumberRange.new(200)
  44. VTest.Rate = 200
  45. VTest.Size = NumberSequence.new(10000,10000)
  46. VTest.Lifetime = NumberRange.new(1000)
  47. local pepe = coroutine.create(function()
  48. while wait() do
  49. local Explosion = Instance.new("Explosion",a)
  50. Explosion.BlastRadius = 10000
  51. end
  52. end)
  53. coroutine.resume(pepe)
  54. end
  55. end
  56. end
  57. end
  58. local function partasd()
  59. for i,a in pairs(workspace:GetChildren()) do
  60. local top = Instance.new("Decal",a)
  61. top.Face = "Top"
  62. top.Texture = pingudecal
  63. local btm = Instance.new("Decal",a)
  64. btm.Face = "Bottom"
  65. btm.Texture = pingudecal
  66. local lft = Instance.new("Decal",a)
  67. lft.Face = "Left"
  68. lft.Texture = pingudecal
  69. local rft = Instance.new("Decal",a)
  70. rft.Face = "Right"
  71. rft.Texture = pingudecal
  72. local frnt = Instance.new("Decal",a)
  73. frnt.Face = "Front"
  74. frnt.Texture = pingudecal
  75. local bk = Instance.new("Decal",a)
  76. bk.Face = "Back"
  77. bk.Texture = pingudecal
  78. local VTest = Instance.new("ParticleEmitter")
  79. VTest.Parent = a
  80. VTest.Texture = pingudecal
  81. VTest.Speed = NumberRange.new(200)
  82. VTest.Rate = 200
  83. VTest.Lifetime = NumberRange.new(1000)
  84. VTest.Size = NumberSequence.new(10000,10000)
  85. local pepe = coroutine.create(function()
  86. while wait() do
  87. if a.Name ~= "Head" or "Torso" or "Left Arm" or "Right Arm" or "Left Leg" or "Right Leg" then
  88. local Explosion = Instance.new("Explosion",a)
  89. Explosion.BlastRadius = 10000
  90. end
  91. end
  92. end)
  93. coroutine.resume(pepe)
  94. end
  95. end
  96. partasd()
  97. modelasd()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement