TheYoutuber_Pro

wqf

Jan 15th, 2022 (edited)
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local part = Instance.new("Part", script)
  2. local decal = Instance.new("Decal", part)
  3. local chat = game:GetService("Chat")
  4. local products = {
  5. 'I NOT GASTER!!!!11',
  6. 'SHUT UP KID',
  7. 'SHUT UP SKID UR 9 YEARS OLD',
  8. 'IMAGINE BEING BAD',
  9. 'SHUT UP',
  10. 'BRO PLEASE STOP',
  11. 'UR SOOO BAD',
  12. 'IMAGINE BEING BAD',
  13. 'I HOPE YOU DIE',
  14. 'STOP CALLING ME GATER I AM GASTER',
  15. 'BRO STOP YOU MAKE ME RAGE QUIT',
  16. 'SHUT UP SKID UR 8 YEARS OLD I AM NOT GASTER',
  17. 'JUST SHUT UP PLEASE',
  18. 'UR SOOO BAD',
  19. 'JUST PLEASE STOP',
  20. 'STOP CALING ME GATER SKID',
  21. 'JUST SHUT UP ALREADY SKID',
  22. 'UR SO BAD BRUH',
  23. 'SHUT UP I AM NOT GATER',
  24. 'I AM GASTER NOT GATER SKID UR SO BAD 8 YEARS OLD IMAGINE CALLING ME GATER'
  25.  
  26. }
  27.  
  28. part.Size = Vector3.new(10,10,0.1)
  29. part.Anchored = true
  30. part.CFrame = CFrame.new(0,5,50)
  31. part.Locked = true
  32. part.Transparency = 1
  33.  
  34. decal.Texture = 'rbxassetid://8546378648'
  35.  
  36. clone = decal:Clone()
  37. clone.Parent = part
  38. clone.Face = 'Back'
  39.  
  40. local scream = Instance.new("Sound", part)
  41. scream.MaxDistance = 100
  42. scream.SoundId = 'rbxassetid://0'
  43.  
  44. local scream2 = Instance.new("Sound", part)
  45. scream2.MaxDistance = 100
  46. scream2.SoundId = 'rbxassetid://0'
  47.  
  48. local talk = Instance.new("Sound", part)
  49. talk.MaxDistance = 100
  50. talk.SoundId = 'rbxassetid://8404994089'
  51.  
  52. local sing = Instance.new("Sound", part)
  53. sing.MaxDistance = 100
  54. sing.SoundId = 'rbxassetid://7121317698'
  55. sing.Looped = true
  56. sing:Play()
  57.  
  58. coroutine.wrap(function()
  59. while wait(4.2) do
  60. chat.BubbleChatEnabled = true
  61. chat:Chat(part, products[math.random(1,#products)])
  62. talk:Play()
  63. end
  64. end)()
  65.  
  66. coroutine.wrap(function()
  67. while true do
  68. wait(math.random(10,15))
  69. scream:Play()
  70. end
  71. end)()
  72.  
  73. coroutine.wrap(function()
  74. while true do
  75. wait(math.random(5,15))
  76. scream2:Play()
  77. end
  78. end)()
Add Comment
Please, Sign In to add comment