breezyshadow012

Corruption 1337

Jul 1st, 2017
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.05 KB | None | 0 0
  1. for i,v in pairs(game.Players:GetChildren()) do game:GetService("Chat"):Chat(v.Character.Head,"1337 \n 1337 \n 1337 \n 1337 \n 1337") end
  2.  
  3. function a(b)
  4. for i,v in next, b:GetChildren() do
  5. if v:IsA("Part") then
  6. bbg = Instance.new("BillboardGui")
  7. bbg.Adornee=v
  8. bbg.Parent=v
  9. bbg.Size=UDim2.new(3,0,3,0)
  10. bbg.StudsOffset=Vector3.new(0,2,0)
  11. fr = Instance.new("Frame", bbg)
  12. fr.BackgroundTransparency=1
  13. fr.Size=UDim2.new(1,0,1,0)
  14. tl = Instance.new("TextLabel", fr)
  15. tl.FontSize="Size48"
  16. tl.BackgroundTransparency=1
  17. tl.Text="1337"
  18. tl.TextColor3=Color3.new(0,255,0)
  19. tl.Size=UDim2.new(1,0,1,0)
  20. end
  21. a(v)
  22. end
  23. end
  24. a(workspace)
  25.  
  26. game.Lighting.TimeOfDay = "14"
  27. game.Lighting.Brightness = 0
  28. game.Lighting.Ambient=Color3.new(0,255,0);
  29. game.Lighting.FogEnd=100;
  30. game.Lighting.FogColor=Color3.new(0,255,0);
  31. game.Workspace.Terrain.WaterColor=Color3.new(0,255,0);
  32. o1 = Instance.new("Sky")
  33. o1.Name = "Desert Sky"
  34. o1.Parent = game.Lighting
  35. o1.SkyboxBk = "http://www.roblox.com/asset/?id=33091909"
  36. o1.SkyboxDn = "http://www.roblox.com/asset/?id=33091909"
  37. o1.SkyboxFt = "http://www.roblox.com/asset/?id=33091909"
  38. o1.SkyboxLf = "http://www.roblox.com/asset/?id=33091909"
  39. o1.SkyboxRt = "http://www.roblox.com/asset/?id=33091909"
  40. o1.SkyboxUp = "http://www.roblox.com/asset/?id=33091909"
  41.  
  42. WARSOUNDS = true -- plays war sounds
  43. -------------------------
  44. if WARSOUNDS == true then
  45. myears = Instance.new('Sound')
  46. myears.Parent = workspace
  47. myears.Looped = true
  48. myears.Name = "Darude on meth"
  49. myears.Playing = true
  50. myears.SoundId = "rbxassetid://613035749"
  51. myears.Volume = 10
  52. myears.TimePosition = 0
  53. end
  54.  
  55. local ID =33091909 --id here
  56. function spamDecal(v)
  57. if v:IsA("Part") then
  58. for i=0, 5 do
  59. D = Instance.new("Decal")
  60. D.Name = "MYDECALHUE"
  61. D.Face = i
  62. D.Parent = v
  63. D.Texture = ("http://www.roblox.com/asset/?id="..Id)
  64. end
  65. else
  66. if v:IsA("Model") then
  67. for a,b in pairs(v:GetChildren()) do
  68. spamDecal(b)
  69. end
  70. end
  71. end
  72. end
  73. function decalspam(id) --use this function, not the one on top
  74. Id = id
  75. for i,v in pairs(game.Workspace:GetChildren()) do
  76. if v:IsA("Part") then
  77. for i=0, 5 do
  78. D = Instance.new("Decal")
  79. D.Name = "MYDECALHUE"
  80. D.Face = i
  81. D.Parent = v
  82. D.Texture = ("http://www.roblox.com/asset/?id="..id)
  83. end
  84. else
  85. if v:IsA("Model") then
  86. for a,b in pairs(v:GetChildren()) do
  87. spamDecal(b)
  88. end
  89. end
  90. end
  91. end
  92. end
  93.  
  94. decalspam(ID)
  95.  
  96. colorc=Instance.new("ColorCorrectionEffect",game.Lighting)
  97. wait()
  98. spawn(function()
  99. while wait() do
  100. colorc.Contrast=math.random(-1,1)
  101. colorc.Saturation=math.random(-1,1)
  102. colorc.TintColor = Color3.new(0.5, 0, 1)
  103. end
  104. end)
  105.  
  106. Scale = 0.3
  107.  
  108.  
  109. function DarkColor(Source)
  110. for _, Part in pairs(Source:GetChildren()) do
  111. if Part:IsA("Clothing") or Part:IsA("CharacterMesh") or Part:IsA("BodyColors") or Part:IsA("Decal") or Part:IsA("Texture") or Part:IsA("ShirtGraphic") or Part:IsA("CylinderMesh") or Part:IsA("BlockMesh") then
  112. Part:Remove()
  113. elseif Part:IsA("BasePart") then
  114. if Part:FindFirstChild("Mesh") == nil then
  115. local Mesh = Instance.new("SpecialMesh", Part)
  116. Mesh.MeshType = "FileMesh"
  117. Mesh.MeshId = "http://www.roblox.com/Asset/?id=9856898"
  118. Mesh.TextureId = "http://www.roblox.com/Asset/?id=48358980"
  119. Mesh.Scale = Part.Size * 2
  120. Mesh.VertexColor = Vector3.new(Part.BrickColor.r, Part.BrickColor.g, Part.BrickColor.b)
  121. Part.BrickColor = BrickColor.new("Institutional white")
  122. end
  123. if Part:FindFirstChild("Direction") == nil then
  124. local Direction = Instance.new("BoolValue", Part)
  125. Direction.Name = "Direction"
  126. Direction.Value = math.random(1, 2) == 1 and false or true
  127. end
  128. if Part:FindFirstChild("") == nil then
  129. local Increment = Instance.new("NumberValue", Part)
  130. Increment.Name = "Increment"
  131. Increment.Value = math.random(0, 1000) / 1000
  132. end
  133. if Part:FindFirstChild("OriginalColor") == nil then
  134. local OriginalColor = Instance.new("Vector3Value", Part)
  135. OriginalColor.Name = "OriginalColor"
  136. OriginalColor.Value = Part.Mesh.VertexColor
  137. end
  138. if Part.Increment.Value <= 0 then
  139. Part.Direction.Value = true
  140. elseif Part.Increment.Value >= 1 then
  141. Part.Direction.Value = false
  142. end
  143. Part.Increment.Value = Part.Increment.Value + (Scale * (Part.Direction.Value and 1 or -1))
  144. Part.Mesh.VertexColor = Part.OriginalColor.Value * Part.Increment.Value
  145. end
  146. DarkColor(Part)
  147. end
  148. end
  149.  
  150.  
  151. while true do
  152. DarkColor(Workspace)
  153. wait()
  154. end
Advertisement
Add Comment
Please, Sign In to add comment