Advertisement
RobloxScripty

Untitled

Jul 5th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. step = 10
  2. phrases = {"I LIKE BABIES","I COLLECT DEAD BABIES","HELLO","GELATIN DOUGHNUT","MOBROBCHOB","DDDUUURRRPPP","asdfmovie5","Have you ever been tired of being RANDOM?","FFFFFFFFFFFFF","umad","hemad","DAVID TENNANT","CHUCK NORRIS","UR MOM IS BENNEDICT ARNOLD"}
  3.  
  4. for _,player in pairs(game:service("Players"):GetPlayers()) do
  5. coroutine.resume(coroutine.create(function()
  6. local char = player.Character
  7. local torso = char["Torso"]
  8. local rsh = torso["Right Shoulder"] or Instance.new("Motor6D")
  9. local lsh = torso["Left Shoulder"] or Instance.new("Motor6D")
  10. local rhip = torso["Right Hip"] or Instance.new("Motor6D")
  11. local lhip = torso["Left Hip"] or Instance.new("Motor6D")
  12. local neck = torso["Neck"] or Instance.new("Motor6D")
  13. while true do
  14. for i = 1,360,360/step do
  15. rsh.C1 = rsh.C1 * CFrame.Angles(math.rad(step),-math.rad(step),-math.rad(step))
  16. lsh.C1 = lsh.C1 * CFrame.Angles(-math.rad(step),math.rad(step),-math.rad(step))
  17. rhip.C1 = rhip.C1 * CFrame.Angles(-math.rad(step),-math.rad(step),math.rad(step))
  18. lhip.C1 = lhip.C1 * CFrame.Angles(math.rad(step),math.rad(step),math.rad(step))
  19. neck.C1 = neck.C1 * CFrame.Angles(-math.rad(step),-math.rad(step),-math.rad(step))
  20. wait(0.05)
  21. end
  22. end
  23. end))
  24. coroutine.resume(coroutine.create(function()
  25. local char = player.Character
  26. local torso = char["Torso"]
  27. local head = char["Head"]
  28. local rarm = char["Right Arm"]
  29. local larm = char["Left Arm"]
  30. while true do
  31. local rand = math.random(1,3)
  32. if rand == 1 then
  33. game:service("Chat"):Chat(head,phrases[math.random(1,#phrases)])
  34. elseif rand == 2 then
  35. game:service("Chat"):Chat(rarm,phrases[math.random(1,#phrases)])
  36. else
  37. game:service("Chat"):Chat(larm,phrases[math.random(1,#phrases)])
  38. end
  39. end
  40. end))
  41. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement