Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.43 KB | None | 0 0
  1. local msg = Instance.new("Message",workspace)
  2. msg.Text = "OCEAN MAN"
  3. wait(2)
  4. msg:Destroy()
  5. pingudecal = "http://www.roblox.com/asset/?id=48943876"
  6. local didpingu = false
  7. local ScreenGui = Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
  8. ScreenGui.Name = "nooties"
  9. local asd = Instance.new("TextButton",ScreenGui)
  10. asd.BackgroundColor3 = Color3.new(0,0,0)
  11. asd.BorderColor3 = Color3.new(0,0,0)
  12. asd.Name = "OCEAN MAN"
  13. asd.Position = UDim2.new(1,-150,1,-90)
  14. asd.Size = UDim2.new(0,150,0,45)
  15. asd.Font = "SourceSansBold"
  16. asd.FontSize = "Size32"
  17. asd.Text = "OCEAN MAN"
  18. asd.TextColor3 = Color3.new(255,255,255)
  19. asd.MouseButton1Down:connect(function()
  20. if didpingu == false then
  21. didpingu = true
  22. for i,v in pairs(game.Players:GetChildren()) do
  23. if v:IsA("Player") then
  24. local nooties = Instance.new("Sound",workspace)
  25. nooties.SoundId = "http://www.roblox.com/asset/?id=383701702"
  26. nooties.Volume = 1
  27. nooties.Looped = true
  28. nooties:Play()
  29. end
  30. end
  31. wait(12)
  32. local Sky = Instance.new("Sky",game.Lighting)
  33. Sky.SkyboxBk = pingudecal
  34. Sky.SkyboxDn = pingudecal
  35. Sky.SkyboxFt = pingudecal
  36. Sky.SkyboxLf = pingudecal
  37. Sky.SkyboxRt = pingudecal
  38. Sky.SkyboxUp = pingudecal
  39. local function modelasd()
  40. for i,v in pairs(workspace:GetChildren()) do
  41. if v:IsA("Model") then
  42. for i,a in pairs(v:GetChildren()) do
  43. local top = Instance.new("Decal",a)
  44. top.Face = "Top"
  45. top.Texture = pingudecal
  46. local btm = Instance.new("Decal",a)
  47. btm.Face = "Bottom"
  48. btm.Texture = pingudecal
  49. local lft = Instance.new("Decal",a)
  50. lft.Face = "Left"
  51. lft.Texture = pingudecal
  52. local rft = Instance.new("Decal",a)
  53. rft.Face = "Right"
  54. rft.Texture = pingudecal
  55. local frnt = Instance.new("Decal",a)
  56. frnt.Face = "Front"
  57. frnt.Texture = pingudecal
  58. local bk = Instance.new("Decal",a)
  59. bk.Face = "Back"
  60. bk.Texture = pingudecal
  61. local VTest = Instance.new("ParticleEmitter")
  62. VTest.Parent = a
  63. VTest.Texture = pingudecal
  64. VTest.Speed = NumberRange.new(200)
  65. VTest.Rate = 200
  66. VTest.Size = NumberSequence.new(10000,10000)
  67. VTest.Lifetime = NumberRange.new(1000)
  68. local pepe = coroutine.create(function()
  69. while wait() do
  70. local Explosion = Instance.new("Explosion",a)
  71. Explosion.BlastRadius = 10000
  72. end
  73. end)
  74. coroutine.resume(pepe)
  75. end
  76. end
  77. end
  78. end
  79. local function partasd()
  80. for i,a in pairs(workspace:GetChildren()) do
  81. local top = Instance.new("Decal",a)
  82. top.Face = "Top"
  83. top.Texture = pingudecal
  84. local btm = Instance.new("Decal",a)
  85. btm.Face = "Bottom"
  86. btm.Texture = pingudecal
  87. local lft = Instance.new("Decal",a)
  88. lft.Face = "Left"
  89. lft.Texture = pingudecal
  90. local rft = Instance.new("Decal",a)
  91. rft.Face = "Right"
  92. rft.Texture = pingudecal
  93. local frnt = Instance.new("Decal",a)
  94. frnt.Face = "Front"
  95. frnt.Texture = pingudecal
  96. local bk = Instance.new("Decal",a)
  97. bk.Face = "Back"
  98. bk.Texture = pingudecal
  99. local VTest = Instance.new("ParticleEmitter")
  100. VTest.Parent = a
  101. VTest.Texture = pingudecal
  102. VTest.Speed = NumberRange.new(200)
  103. VTest.Rate = 200
  104. VTest.Lifetime = NumberRange.new(1000)
  105. VTest.Size = NumberSequence.new(10000,10000)
  106. local pepe = coroutine.create(function()
  107. while wait() do
  108. if a.Name ~= "Head" or "Torso" or "Left Arm" or "Right Arm" or "Left Leg" or "Right Leg" then
  109. local Explosion = Instance.new("Explosion",a)
  110. Explosion.BlastRadius = 10000
  111. end
  112. end
  113. end)
  114. coroutine.resume(pepe)
  115. end
  116. end
  117. partasd()
  118. modelasd()
  119. else
  120. warn("Already Ran! Did not execute the script!")
  121. end
  122. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement