skylershults

doo u nnow da wei

Feb 11th, 2018
422
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. wait(1)
  2.  
  3.  
  4.  
  5. plr = game:service'Players'.LocalPlayer
  6.  
  7. char = plr.Character
  8.  
  9. root = char:FindFirstChild'HumanoidRootPart'
  10.  
  11. hum = char:FindFirstChildOfClass'Humanoid'
  12.  
  13. mouse = plr:GetMouse()
  14.  
  15. clones = {}
  16.  
  17.  
  18.  
  19. if char.Head:FindFirstChild'face' then
  20.  
  21. char.Head.face:Destroy()
  22.  
  23. end
  24.  
  25.  
  26.  
  27. for _, a in pairs(char:children()) do
  28.  
  29. if a:IsA'Part' then
  30.  
  31. a.Transparency = 1
  32.  
  33. elseif a:IsA'Accessory' then
  34.  
  35. a:Destroy()
  36.  
  37. end
  38.  
  39. end
  40.  
  41.  
  42.  
  43. eyes = Instance.new('Part', char)
  44.  
  45. eyes.Anchored = false
  46.  
  47. eyes.Name = "Eyes"
  48.  
  49. eyes.Size = Vector3.new(0.22, 0.052, 0.105)
  50.  
  51. eyesm = Instance.new('SpecialMesh', eyes)
  52.  
  53. eyesm.Scale = Vector3.new(0.039, 0.039, 0.039)
  54.  
  55. eyesm.MeshId = "rbxassetid://1300138314"
  56.  
  57. eyesm.TextureId = "rbxassetid://1300129774"
  58.  
  59.  
  60.  
  61. body = Instance.new('Part', char)
  62.  
  63. body.Anchored = false
  64.  
  65. body.Name = "Body"
  66.  
  67. body.Size = Vector3.new(0.07, 0.062, 0.078)
  68.  
  69. bodym = Instance.new('SpecialMesh', body)
  70.  
  71. bodym.Scale = Vector3.new(0.039, 0.039, 0.039)
  72.  
  73. bodym.MeshId = "rbxassetid://1300136843"
  74.  
  75. bodym.TextureId = "rbxassetid://1300137893"
  76.  
  77.  
  78.  
  79. weld1 = Instance.new('Weld', eyes)
  80.  
  81. weld1.Part0 = eyes
  82.  
  83. weld1.Part1 = root
  84.  
  85. weld1.C0 = CFrame.new(0,1.55,.2)
  86.  
  87. weld2 = Instance.new('Weld', body)
  88.  
  89. weld2.Part0 = body
  90.  
  91. weld2.Part1 = root
  92.  
  93. weld2.C0 = CFrame.new(0,2.1,0)
  94.  
  95.  
  96.  
  97. TheWay1 = Instance.new('Sound', body)
  98.  
  99. TheWay1.SoundId = "rbxassetid://1320393438"
  100.  
  101. TheWay1.Volume = 3
  102.  
  103. TheWay1.Name = "TheWay1"
  104.  
  105. TheWay2 = Instance.new('Sound', body)
  106.  
  107. TheWay2.SoundId = "rbxassetid://1295525558"
  108.  
  109. TheWay2.Volume = 3
  110.  
  111. TheWay2.Name = "TheWay2"
  112.  
  113. Spit = Instance.new('Sound', body)
  114.  
  115. Spit.SoundId = "rbxassetid://1322795266"
  116.  
  117. Spit.Volume = 3
  118.  
  119. Spit.Name = "Spit"
  120.  
  121. Click = Instance.new('Sound', body)
  122.  
  123. Click.SoundId = "rbxassetid://1313776824"
  124.  
  125. Click.Volume = 3
  126.  
  127. Click.Name = "Click"
  128.  
  129.  
  130.  
  131. num = 1
  132.  
  133. cooldown = false
  134.  
  135. rand = math.random(1,2)
  136.  
  137.  
  138.  
  139. for i = 1,12 do
  140.  
  141. wait()
  142.  
  143. char.Archivable = true
  144.  
  145. clone = char:Clone()
  146.  
  147. table.insert(clones,clone)
  148.  
  149. end
  150.  
  151.  
  152.  
  153. for _, a in pairs(clones) do
  154.  
  155. a.Parent = char
  156.  
  157. a:MoveTo(root.Position + Vector3.new(math.random(1,10),math.random(1,10),math.random(1,10)))
  158.  
  159. end
  160.  
  161.  
  162.  
  163. function sfx1()
  164.  
  165. for _, a in pairs(clones) do
  166.  
  167. rand = math.random(1,2)
  168.  
  169. if rand == 1 then
  170.  
  171. TheWay1:Play()
  172.  
  173. elseif rand == 2 then
  174.  
  175. TheWay2:Play()
  176.  
  177. end
  178.  
  179. wait(.3)
  180.  
  181. end
  182.  
  183. end
  184.  
  185.  
  186.  
  187. function sfx2()
  188.  
  189. for _, a in pairs(clones) do
  190.  
  191. Spit:Play()
  192.  
  193. wait(.4)
  194.  
  195. end
  196.  
  197. end
  198.  
  199.  
  200.  
  201. function sfx3()
  202.  
  203. for _, a in pairs(clones) do
  204.  
  205. Click:Play()
  206.  
  207. wait(.4)
  208.  
  209. end
  210.  
  211. end
  212.  
  213.  
  214.  
  215. mouse.KeyDown:connect(function(k)
  216.  
  217. key = k:lower()
  218.  
  219. if key == "e" and not cooldown then
  220.  
  221. cooldown = true
  222.  
  223. sfx1()
  224.  
  225. wait(.7)
  226.  
  227. cooldown = false
  228.  
  229. elseif key == "r" and not cooldown then
  230.  
  231. cooldown = true
  232.  
  233. sfx2()
  234.  
  235. wait(.7)
  236.  
  237. cooldown = false
  238.  
  239. elseif key == "q" and not cooldown then
  240.  
  241. cooldown = true
  242.  
  243. sfx3()
  244.  
  245. wait(.7)
  246.  
  247. cooldown = false
  248.  
  249. end
  250.  
  251. end)
  252.  
  253.  
  254.  
  255. while wait(1) do
  256.  
  257. for _, a in pairs(clones) do
  258.  
  259. if a:FindFirstChildOfClass'Humanoid' then
  260.  
  261. a:FindFirstChildOfClass'Humanoid':MoveTo(root.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  262.  
  263. end
  264.  
  265. end
  266.  
  267. end
Add Comment
Please, Sign In to add comment