Advertisement
lundofett

Untitled

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