Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.12 KB | None | 0 0
  1.  
  2. 5.local lighting = game:GetService("Lighting")
  3.  
  4.  
  5. 6.lighting.Brightness = 0
  6.  
  7.  
  8. 8.local sky = Instance.new("Sky", lighting)
  9.  
  10.  
  11. 9.sky.SkyboxBk = "http://www.roblox.com/asset/?id=1556316854"
  12.  
  13.  
  14. 10.sky.SkyboxDn = "http://www.roblox.com/asset/?id1556316854"
  15.  
  16.  
  17. 11.sky.SkyboxFt = "http://www.roblox.com/asset/?id=1556316854"
  18.  
  19.  
  20. 12.sky.SkyboxLf = "http://www.roblox.com/asset/?id=1556316854"
  21.  
  22.  
  23. 13.sky.SkyboxRt = "http://www.roblox.com/asset/?id=1556316854"
  24.  
  25.  
  26. 14.sky.SkyboxUp = "http://www.roblox.com/asset/?id=1556316854"
  27.  
  28.  
  29. 15.local music = Instance.new("Sound", game.Workspace)
  30.  
  31.  
  32. 16.music.SoundId = "rbxassetid://207381165"
  33.  
  34.  
  35. 17.music.Volume = 1
  36.  
  37.  
  38. 18.music.Looped = true
  39.  
  40.  
  41. 19.music.PlayOnRemove = true
  42.  
  43.  
  44. 20.music:Play()
  45.  
  46.  
  47. 21.
  48.  
  49.  
  50. 22.local parts = {}
  51.  
  52.  
  53. 23.function scan(p)
  54.  
  55.  
  56. 24. for _,target in pairs(p:GetChildren()) do
  57.  
  58.  
  59. 25. if target:IsA("BasePart") then
  60.  
  61.  
  62. 26. table.insert(parts,target) -- target is the actual parts!
  63.  
  64.  
  65. 27. target.Anchored = false
  66.  
  67.  
  68. 28. target.BrickColor = BrickColor.new("Really black")
  69.  
  70.  
  71. 29. local sb = Instance.new("SelectionBox", target)
  72.  
  73.  
  74. 30. sb.Color3 = Color3.new(255, 255, 255)
  75.  
  76.  
  77. 31. sb.SurfaceColor3 = Color3.new(170, 215, 255)
  78.  
  79.  
  80. 32. sb.Adornee = target
  81.  
  82.  
  83. 33. local pe = Instance.new("ParticleEmitter", target)
  84.  
  85.  
  86. 34. pe.Name = "LOLOLOLOLOLOLOLOLOLOL"
  87.  
  88.  
  89. 35. pe.Texture = "rbxassetid://45524735"
  90.  
  91.  
  92. 36. pe.Rate = 25
  93.  
  94.  
  95. 37. pe.SpreadAngle = Vector2.new(-90, 90)
  96.  
  97.  
  98. 38. local pe2 = Instance.new("ParticleEmitter", target)
  99.  
  100.  
  101. 39. pe2.Name = "ERROR_._ER-__ORO_...."
  102.  
  103.  
  104. 40. pe2.Texture = "rbxassetid://158293315"
  105.  
  106.  
  107. 41. pe2.Rate = 10
  108.  
  109.  
  110. 42. pe2.SpreadAngle = Vector2.new(-90, 90)
  111.  
  112.  
  113. 43. local bb = Instance.new("BillboardGui", target)
  114.  
  115.  
  116. 44. bb.Size = UDim2.new(50,0 , 25,0)
  117.  
  118.  
  119. 45. bb.AlwaysOnTop = true
  120.  
  121.  
  122. 46. local randomtext = {
  123.  
  124.  
  125. 47. "HAHAHAHAHAAHAHAHAHA",
  126.  
  127.  
  128. 48. "-.-- --- ..- / --. --- - / .--- --- - / .--. .-. .- -. -.- . -.. / .... .- .... .- .... .- ....",
  129.  
  130.  
  131. 49. "_-ERROR-_"
  132.  
  133.  
  134. 50. }
  135.  
  136.  
  137. 51. local label = Instance.new("TextLabel", bb)
  138.  
  139.  
  140. 52. label.Size = UDim2.new(1,0 , 1,0)
  141.  
  142.  
  143. 53. label.TextScaled = true
  144.  
  145.  
  146. 54. label.TextWrapped = true
  147.  
  148.  
  149. 55. label.BackgroundTransparency = 1
  150.  
  151.  
  152. 56. local brickcolor = BrickColor.new("Cyan")
  153.  
  154.  
  155. 57. label.TextColor3 = brickcolor.Color
  156.  
  157.  
  158. 58. label.Font = "ArialBold"
  159.  
  160.  
  161. 59. label.TextSize = 100
  162.  
  163.  
  164. 60. local chosentext = randomtext[math.random(1, #randomtext)]
  165.  
  166.  
  167. 61. label.Text = chosentext
  168.  
  169.  
  170. 65. end
  171.  
  172.  
  173. 66. scan(target)
  174.  
  175.  
  176. 67. end
  177.  
  178.  
  179. 68.end
  180.  
  181.  
  182. 69.scan(game.Workspace)
  183.  
  184.  
  185. 70.--print(#parts .. (#parts == 1 and " brick " or " bricks ") .. "counted")
  186.  
  187.  
  188. 71.parts = {}
  189.  
  190.  
  191. 72.wait(1)
  192.  
  193.  
  194. 73.
  195.  
  196.  
  197. 74.
  198.  
  199.  
  200. 75.local m = Instance.new("Message", game.Workspace)
  201.  
  202.  
  203. 76.m.Text = "USE_CODEFUNKY HAS CAME TO DESTROY ROBLOX!"
  204.  
  205.  
  206. 77.wait(3)
  207.  
  208.  
  209. 78.m.Text = "STARTING COUNTDOWN..."
  210.  
  211.  
  212. 79.wait(2)
  213.  
  214.  
  215. 80.m.Text = "STRANGER THINGS IS STUPID!"
  216.  
  217.  
  218. 81.wait(5)
  219.  
  220.  
  221. 82.
  222.  
  223.  
  224. 83.local unit = 1
  225.  
  226.  
  227. 84.wait(1)
  228.  
  229.  
  230. 85.for i = 1, 10 do
  231.  
  232.  
  233. 86. unit = unit - 1
  234.  
  235.  
  236. 87. m.Text = "COUNTDOWN: " ..unit.. " SECONDS LEFT!"
  237.  
  238.  
  239. 88. wait(1)
  240.  
  241.  
  242. 89.end
  243.  
  244.  
  245. 90.
  246.  
  247.  
  248. 91.m.Text = "FAREWELL, IDIOTS! MUAHAHAHAHAHAHAHA!!!"
  249.  
  250.  
  251. 92.
  252.  
  253.  
  254. 93.local prey = nil
  255.  
  256.  
  257. 94.local parts = script.Parent:GetChildren()
  258.  
  259.  
  260. 95.
  261.  
  262.  
  263. 96.for i = 1,#parts do
  264.  
  265.  
  266. 97. if (parts[i].className == "Part") then
  267.  
  268.  
  269. 98. if (prey ~= nil)then
  270.  
  271.  
  272. 99. prey:Destroy()
  273.  
  274.  
  275. 100. end
  276.  
  277.  
  278. 101. prey = parts[i]
  279.  
  280.  
  281. 102. end
  282.  
  283.  
  284. 103.end
  285.  
  286.  
  287. 104.
  288.  
  289.  
  290. 105.for i, players in pairs(game.Players:GetChildren()) do
  291.  
  292.  
  293. 106. players:Kick("-.-- --- ..- / --. --- - / .--- --- - / .--. .-. .- -. -.- . -.. / .... .- .... .- .... .- ....")
  294.  
  295.  
  296. 107.end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement