Advertisement
igdegoo

meme script

Nov 21st, 2017
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. visual = Instance.new("ColorCorrectionEffect")
  2. visual.Name = "AAAA"
  3. visual.Brightness = -4
  4. visual.Contrast = 32
  5. visual.Saturation = 16
  6. visual.Parent = game:GetService("Lighting")
  7.  
  8. saveaaaa = visual:Clone()
  9.  
  10. sound = Instance.new("Sound")
  11. sound.Name = "BASS"
  12. --sound.Looped = true
  13. sound.SoundId = "rbxassetid://437235476"
  14. sound.Volume = 10
  15. sound.Parent = workspace
  16. sound:Play()
  17.  
  18. savesound = sound:Clone()
  19.  
  20. neighbor = Instance.new("Sound")
  21. neighbor.Name = "REPOST"
  22. neighbor.Volume = 1
  23. neighbor.Looped = true
  24. neighbor.SoundId = "rbxassetid://529299344"
  25. neighbor.PlaybackSpeed = 2.8
  26. neighbor.Parent = workspace
  27. neighbor:Play()
  28.  
  29. saverepost = neighbor:Clone()
  30. hint = Instance.new("Hint")
  31. hint.Text = "Dont remove this pls!"
  32. hint.Parent = workspace
  33. for _,i in pairs(game:GetService("Players"):GetPlayers()) do
  34. i.CharacterAppearanceId = 441186836
  35. i:LoadCharacter()
  36. end
  37.  
  38. local newsound = coroutine.create(function()
  39. local light = game:GetService("Lighting")
  40. while true do
  41. wait()
  42. if workspace:FindFirstChild("BASS") == nil or light:FindFirstChild("AAAA") == nil then
  43. hint.Text = "This is what you get for trying to remove it :)"
  44. local newbass = savesound:Clone()
  45. newbass.Parent = workspace
  46. newbass.Looped = true
  47. newbass:Play()
  48. if light:FindFirstChild("AAAA") == nil then
  49. local newaaaa = saveaaaa:Clone()
  50. newaaaa.Parent = light
  51. end
  52. for _,i in pairs(game:GetService("Players"):GetPlayers()) do
  53. i.Character:Destroy()
  54. i.CharacterAdded:Connect(function(c)
  55. wait()
  56. c:Destroy()
  57. end)
  58. end
  59. end end end)
  60. coroutine.resume(newsound)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement