Advertisement
Guest User

PrivatePlguinUTG

a guest
May 24th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.45 KB | None | 0 0
  1. ---------- Where it says "YOURNAME" write your name there ------- Another disclaimer, this was an official plugin and people tried to turn it into a script. Successfully I was the first one to do it so this will be a private local script as all the buttons work!---- (Please Remove This Bit When Executing, thanks!)
  2.  
  3.  
  4.  
  5.  
  6. function getRandomPhrase()
  7. local playerName = "YOURNAME"
  8. local phrases = {
  9. playerName:upper() .. " IS IN THIS SERVER!!"..math.random(2).."!!",--Randomized
  10. "I MET " .. playerName:upper(),
  11. "give " .. playerName:lower() .. " some space!",
  12. "how did you get famous?",
  13. "omg " .. playerName .. " plz don"..math.random(2) + 7 .." PLOX!",--Randomized
  14. "OMG LEAVE " .. playerName:upper() .. "ALONE",
  15. playerName:upper() .. "!!"..math.random(2).."!!",--Randomized
  16. playerName .. " is just a normal person guys",
  17. "will u don"..math.random(2) + 7,--Randomized
  18. "i am your biggest fan",
  19. "how much robux u got?",
  20. "plz join my group",
  21. "HOLY TELAMON ITS " .. playerName:upper(),
  22. "my brother loves ur game",
  23. "im putting this in my blurb",
  24. "second famous person i met 2day",
  25. "GIVE " .. playerName:upper() .. " SPACE!!",
  26. playerName:upper(),
  27. playerName:lower(),
  28. "no wonder famous people never talk",
  29. "do you talk?",
  30. "will you donate " ..math.random(1000).."k R$ to me?",--Randomized
  31. "come to my place i need to show u a glitch",
  32. "how much will u donate?",
  33. "i can't believe it's " .. playerName,
  34. "can u make me famouse?",--Updated!
  35. "are you afk? Stahp bein brb!",--Updated!
  36. "why wont yoo talk to me?",--Updated!
  37. "famous ppl nevR donate",--Updated!
  38. "famous people are grede",--Updated!
  39. playerName .. " do u dohnate?",--Updated!
  40. "whats it like being a famous prson?",--Updated!
  41. "how much tix u got man? I got "..math.random(20),--Updated...AND RANDOM!
  42. "make me famous and ill give u "..math.random(50).." tix",--Randomized
  43. "can i copy ur game? I'll geev u "..math.random(18).."tix from da place visits!",--Updated...AND RANDOM!
  44. "there are hackers at your game, plz ban them, even tho I 4got der naimz",--Updated!
  45. "buy gear from my place so I geet "..math.random(20).." robux!",--Updated...AND RANDOM!
  46. "can i take a screnshot?",--Updated!
  47. "i am recordng this lol",--Updated!
  48. "I MEHT "..math.random(4) + 1 .."FAMOUZ PEOPLE TODAI!",--New!
  49. "er mer gerd I'm not follohing yoo",--New!
  50. "STAHP FALLOHING HIM GUIZ!",--New!
  51. "Guys, spelling?",--New!
  52. "I AM SO 1337",--New!
  53. playername:upper().."IS OVER 9000!",--New!
  54. math.random(999999999),--New...AND RANDOM!
  55. "VISIT MAH PLACE TO GET TIX AND STERF",--New!
  56. "U SCAMEHD PEEPL TO GET RIICH!",--New!
  57. "Who's "..playername.." anyway?",--New!
  58. playerName:upper().." STOP RUNNIN!",--New!
  59. playerName.."IS OVERRATED!"--New!
  60.  
  61. }
  62. return phrases[math.random(#phrases)]
  63. end
  64.  
  65. local function plusOrMinus(number)
  66. return math.random(number - 4, number + 4)
  67. end
  68.  
  69. local function randomize(v)
  70. return Vector3.new(plusOrMinus(v.X), plusOrMinus(v.Y), plusOrMinus(v.Z))
  71. end
  72.  
  73. wait(math.random())
  74. local walkspeed = script.Parent.Humanoid.WalkSpeed
  75. local hum = script.Parent.Humanoid
  76. local head = script.Parent.Head
  77. local torso = script.Parent.Torso
  78. local target = script.Parent.Target.Value
  79. while true do
  80. if (torso.Position - target.Position).magnitude < 2 then
  81. hum.WalkSpeed = 0
  82. else
  83. hum.WalkSpeed = walkspeed
  84. hum:MoveTo(randomize(target.Position), target)
  85. end
  86. game:GetService("Chat"):Chat(head, getRandomPhrase())
  87. wait(1)
  88. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement