Advertisement
Guest User

Jiafei troll

a guest
Jan 15th, 2022
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. local part = Instance.new("Part", script)
  2. local decal = Instance.new("Decal", part)
  3. local chat = game:GetService("Chat")
  4. local products = {
  5. 'Buy my jiafei products 😍😍😘😘🤞✌💖',
  6. 'BUY THESE PRODUCTS 😍',
  7. 'Ugly noobs cut your clothes?! Buy my new no cut product to kill him 🤔🤔💋💕😍😍😘😊',
  8. 'Smelly feces cow keep dropping phone in toilet? Buy new product to fix problem 😍😍😘😘',
  9. 'BUY MORE JIAFEI PRODUCTS OR ILL KIDNAP YOU',
  10. 'If you dont buy jiafei products ill find you and kidnap you 😘'
  11. }
  12.  
  13. part.Size = Vector3.new(10,10,0.1)
  14. part.Anchored = true
  15. part.CFrame = CFrame.new(0,5,50)
  16. part.Locked = true
  17. part.Transparency = 1
  18.  
  19. decal.Texture = 'rbxassetid://8224012606'
  20.  
  21. clone = decal:Clone()
  22. clone.Parent = part
  23. clone.Face = 'Back'
  24.  
  25. local scream = Instance.new("Sound", part)
  26. scream.MaxDistance = 100
  27. scream.SoundId = 'rbxassetid://8404989562'
  28.  
  29. local scream2 = Instance.new("Sound", part)
  30. scream2.MaxDistance = 100
  31. scream2.SoundId = 'rbxassetid://8395374561'
  32.  
  33. local talk = Instance.new("Sound", part)
  34. talk.MaxDistance = 100
  35. talk.SoundId = 'rbxassetid://8404994089'
  36.  
  37. local sing = Instance.new("Sound", part)
  38. sing.MaxDistance = 100
  39. sing.SoundId = 'rbxassetid://7128632581'
  40. sing.Looped = true
  41. sing:Play()
  42.  
  43. coroutine.wrap(function()
  44. while wait(10) do
  45. chat.BubbleChatEnabled = true
  46. chat:Chat(part, products[math.random(1,#products)])
  47. talk:Play()
  48. end
  49. end)()
  50.  
  51. coroutine.wrap(function()
  52. while true do
  53. wait(math.random(10,15))
  54. scream:Play()
  55. end
  56. end)()
  57.  
  58. coroutine.wrap(function()
  59. while true do
  60. wait(math.random(5,15))
  61. scream2:Play()
  62. end
  63. end)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement