Advertisement
InfinitySound

Untitled

Aug 2nd, 2019
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local Instances = {};
  2. local Instance_bak = Instance;
  3. local Instance = {};
  4. Instance.new = function(...)
  5. local o = Instance_bak.new(...);
  6.  
  7. table.insert(Instances, o);
  8.  
  9. return o;
  10. end;
  11.  
  12. Instance.clear = function()
  13. for _, o in next, Instances do
  14. o:Destroy();
  15. end;
  16. end;
  17.  
  18. function start()
  19. Instance.clear();
  20. wait(0.5)
  21. math.randomseed(tick())
  22.  
  23. local player = game.Players.LocalPlayer
  24. local rekt = {}
  25. local paralyzed = false
  26. local curpoint = nil
  27. local curpart = nil
  28. local finishnum = 1
  29. local zombiemode = false
  30. local zombies = {}
  31. local lastgui = nil
  32. local mouse = player:GetMouse()
  33.  
  34.  
  35. local restart;
  36.  
  37. restart = player.CharacterAdded:Connect(function()
  38. restart:Disconnect();
  39. start();
  40. end);
  41.  
  42. function getplr(char)
  43. local plr = nil
  44. for i,v in pairs(game.Players:GetChildren()) do
  45. if v.Character == char then
  46. plr = v
  47. end
  48. end
  49. return plr
  50. end
  51.  
  52. function bleed(frick)
  53. while frick.Parent ~= nil do
  54. local reeee = coroutine.wrap(function()
  55. local thing = Instance.new('Part',game.Workspace)
  56. thing.Size = Vector3.new(0.2,0.2,0.2)
  57. thing.CFrame = frick.CFrame
  58. thing.Shape = Enum.PartType.Ball
  59. thing.CFrame = frick.CFrame
  60. thing.Transparency = 1
  61. thing.BrickColor = BrickColor.new('Maroon')
  62. thing.Material = Enum.Material.SmoothPlastic
  63. thing.Name = "Blood"
  64. thing.CanCollide =false
  65. local rawrxd = Instance.new('BodyForce',thing)
  66. rawrxd.Force = frick.CFrame.upVector*(math.random()*2)+Vector3.new(math.random(-5, 5)/10,1.5,0)
  67. local coru = coroutine.wrap(function()
  68. wait(0.01)
  69. rawrxd:Destroy()
  70. end)
  71. coru()
  72. local ree = Instance.new('ParticleEmitter',thing)
  73. ree.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Color3.fromRGB(100,0,0)),ColorSequenceKeypoint.new(1,Color3.fromRGB(100,0,0))})
  74. ree.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,0.1),NumberSequenceKeypoint.new(1,0.1)})
  75. ree.Texture = 'rbxassetid://867743272'
  76. ree.Lifetime = NumberRange.new(0.4)
  77. ree.Rate = 50
  78. ree.LockedToPart = true
  79. ree.Speed = NumberRange.new(0, 2)
  80.  
  81. thing.Touched:connect(function(tou)
  82. if tou.Parent and tou.Parent:IsA('Tool') == false and tou.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil and tou.Parent:FindFirstChildOfClass('Humanoid') == nil and tou.Name ~= "Blood" and tou.Parent.Name ~= "Projectile" and tou.Parent.Name ~= "big ass knife" and tou.Parent ~= player.Character and tou.Parent.ClassName ~= "Accessory" and tou.Parent.Name ~= "bitch ass knife" then
  83. local pos = Vector3.new(thing.Position.X,(tou.Position.Y+(tou.Size.Y/2))+0.02,thing.Position.Z)
  84. thing:Destroy()
  85. if tou.Name == "BloodPuddle" then
  86. local reee = tou.CFrame
  87. if tou.Transparency > -0.2 then
  88. tou.Transparency = tou.Transparency -0.1
  89. end
  90. if tou.Size.X < 10 then
  91. tou.Size = tou.Size+Vector3.new(0.1,0,0.1)
  92. tou.CFrame = reee
  93. end
  94. else
  95. local bloodlol = Instance.new('Part',workspace)
  96. bloodlol.Size=Vector3.new(1,0.2,1)
  97. bloodlol.Name = "BloodPuddle"
  98. bloodlol.Anchored = true
  99. bloodlol.CanCollide = false
  100. bloodlol.Material = Enum.Material.SmoothPlastic
  101. bloodlol.BrickColor = BrickColor.new('Maroon')
  102. local cyl = Instance.new('CylinderMesh',bloodlol)
  103. cyl.Scale = Vector3.new(1,0.1,1)
  104. bloodlol.CFrame = CFrame.new(pos)
  105. local coru=coroutine.wrap(function()
  106. while bloodlol.Parent ~= nil do
  107. if bloodlol.Transparency < 1 then
  108. bloodlol.Transparency = bloodlol.Transparency+0.05
  109. else
  110. bloodlol:Destroy()
  111. end
  112. wait(0.1)
  113. end
  114. end)
  115. coru()
  116. end
  117. end
  118. end)
  119. local coru = coroutine.wrap(function()
  120. wait(1)
  121. thing:Destroy()
  122. end)
  123. coru()
  124. end)
  125. reeee()
  126. wait()
  127. end
  128. end
  129.  
  130. function killz(playa,hitz,kneef,explode,pool,head,charred,override)
  131. local soundy = false
  132. local heyy = hitz
  133. if hitz == "Right Arm" then
  134. local Limb = playa:FindFirstChild("Right Arm")
  135. local ters = playa:FindFirstChild('Torso')
  136. if Limb and ters then
  137. if ters:FindFirstChild('Right Shoulder') then ters["Right Shoulder"]:Destroy() end
  138. for i,v in pairs(Limb:GetChildren()) do
  139. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  140. v:Destroy()
  141. end
  142. end
  143. Limb.CFrame = ters.CFrame * CFrame.new(1.5, 0, 0)
  144. local Joint = Instance.new("Rotate")
  145. Joint.Name = "RightShoulder"
  146. Joint.Part0 = ters
  147. Joint.Part1 = Limb
  148. Joint.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  149. Joint.C1 = CFrame.new(-0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  150. Joint.Parent = ters
  151. if charred and zombiemode == false then
  152. Limb.BrickColor = BrickColor.new('Black')
  153. local fire = Instance.new('Fire',Limb)
  154. fire.Heat = 5
  155. fire.Size = 5
  156. game:GetService('Debris'):AddItem(fire,2)
  157. local coru=coroutine.wrap(function()
  158. wait(2)
  159. for i,v in pairs(Limb:GetChildren()) do
  160. if v:IsA('ParticleEmitter') then
  161. v:Destroy()
  162. end
  163. end
  164. end)
  165. coru()
  166. end
  167. local B = Instance.new("Part")
  168. B.TopSurface = 0
  169. B.BottomSurface = 0
  170. B.formFactor = "Symmetric"
  171. B.Size = Vector3.new(1, 1, 1)
  172. B.Transparency = 1
  173. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  174. B.Parent = playa
  175. local W = Instance.new("Weld")
  176. W.Part0 = Limb
  177. W.Part1 = B
  178. W.C0 = CFrame.new(0, -0.5, 0)
  179. W.Parent = Limb
  180. if kneef then
  181. local coru = coroutine.wrap(function()
  182. local uno = Instance.new('Part',workspace)
  183. local dos = Instance.new('Part',workspace)
  184. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  185. dos.CFrame = kneef["big ass knife"].CFrame
  186. local weld = Instance.new('Weld',kneef["big ass knife"])
  187. weld.Part0 = playa:FindFirstChild(hitz)
  188. weld.Part1 = kneef["big ass knife"]
  189. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  190. uno:Destroy()
  191. dos:Destroy()
  192. playa:FindFirstChild(hitz).Anchored = false
  193. for i, v in pairs(kneef:GetChildren()) do
  194. if v:IsA('BasePart') then
  195. v.Anchored = false
  196. end
  197. end
  198. if zombiemode == false or override then
  199. wait()
  200. end
  201. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  202. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  203. end
  204. local bleedpart = Instance.new("Part", kneef)
  205. bleedpart.CanCollide = false
  206. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  207. bleedpart.CFrame = kneef["big ass knife"].CFrame
  208. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  209. bleedpart.Transparency = 1
  210.  
  211. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  212. bleedpartweld.Part0 = kneef["big ass knife"]
  213. bleedpartweld.Part1 = bleedpart
  214. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  215. local coru = coroutine.wrap(function()
  216. bleed(bleedpart)
  217. end)
  218. coru()
  219. game:GetService('Debris'):AddItem(bleedpart,2)
  220. end)
  221. coru()
  222. end
  223. end
  224. elseif hitz == "Left Arm" then
  225. local Limb = playa:FindFirstChild("Left Arm")
  226. local ters = playa:FindFirstChild('Torso')
  227. if Limb and ters then
  228. if ters:FindFirstChild('Left Shoulder') then ters["Left Shoulder"]:Destroy() end
  229. for i,v in pairs(Limb:GetChildren()) do
  230. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  231. v:Destroy()
  232. end
  233. end
  234. Limb.CFrame = ters.CFrame * CFrame.new(-1.5, 0, 0)
  235. local Joint = Instance.new("Rotate")
  236. Joint.Name = "LeftShoulder"
  237. Joint.Part0 = ters
  238. Joint.Part1 = Limb
  239. Joint.C0 = CFrame.new(-1.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  240. Joint.C1 = CFrame.new(0, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  241. Joint.Parent = ters
  242. if charred and zombiemode == false then
  243. Limb.BrickColor = BrickColor.new('Black')
  244. local fire = Instance.new('Fire',Limb)
  245. fire.Heat = 5
  246. fire.Size = 5
  247. game:GetService('Debris'):AddItem(fire,2)
  248. local coru=coroutine.wrap(function()
  249. wait(2)
  250. for i,v in pairs(Limb:GetChildren()) do
  251. if v:IsA('ParticleEmitter') then
  252. v:Destroy()
  253. end
  254. end
  255. end)
  256. coru()
  257. end
  258.  
  259. local B = Instance.new("Part")
  260. B.TopSurface = 0
  261. B.BottomSurface = 0
  262. B.formFactor = "Symmetric"
  263. B.Size = Vector3.new(1, 1, 1)
  264. B.CanCollide = true
  265. B.Transparency = 1
  266. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  267. B.Parent = playa
  268. local W = Instance.new("Weld")
  269. W.Part0 = ters
  270. W.Part1 = B
  271. W.C0 = CFrame.new(0, -0.5, 0)
  272. W.Parent = Limb
  273. if kneef then
  274. local coru = coroutine.wrap(function()
  275. local uno = Instance.new('Part',workspace)
  276. local dos = Instance.new('Part',workspace)
  277. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  278. dos.CFrame = kneef["big ass knife"].CFrame
  279. local weld = Instance.new('Weld',kneef["big ass knife"])
  280. weld.Part0 = playa:FindFirstChild(hitz)
  281. weld.Part1 = kneef["big ass knife"]
  282. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  283. uno:Destroy()
  284. dos:Destroy()
  285. playa:FindFirstChild(hitz).Anchored = false
  286. for i, v in pairs(kneef:GetChildren()) do
  287. if v:IsA('BasePart') then
  288. v.Anchored = false
  289. end
  290. end
  291. if zombiemode == false or override then
  292. wait()
  293. end
  294. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  295. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  296. end
  297. local bleedpart = Instance.new("Part", kneef)
  298. bleedpart.CanCollide = false
  299. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  300. bleedpart.CFrame = kneef["big ass knife"].CFrame
  301. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  302. bleedpart.Transparency = 1
  303.  
  304. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  305. bleedpartweld.Part0 = kneef["big ass knife"]
  306. bleedpartweld.Part1 = bleedpart
  307. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  308. local coru = coroutine.wrap(function()
  309. bleed(bleedpart)
  310. end)
  311. coru()
  312. game:GetService('Debris'):AddItem(bleedpart,2)
  313. end)
  314. coru()
  315. end
  316. end
  317. elseif hitz == "Right Leg" then
  318. local Limb = playa:FindFirstChild("Right Leg")
  319. local ters = playa:FindFirstChild('Torso')
  320. if Limb and ters then
  321. if ters:FindFirstChild('Right Hip') then ters["Right Hip"]:Destroy() end
  322. for i,v in pairs(Limb:GetChildren()) do
  323. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  324. v:Destroy()
  325. end
  326. end
  327. Limb.CFrame = ters.CFrame * CFrame.new(0.5, -2, 0)
  328. local Joint = Instance.new("Rotate")
  329. Joint.Name = "Right Hip"
  330. Joint.Part0 = ters
  331. Joint.Part1 = Limb
  332. Joint.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  333. Joint.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  334. Joint.Parent = ters
  335. if charred and zombiemode == false then
  336. Limb.BrickColor = BrickColor.new('Black')
  337. local fire = Instance.new('Fire',Limb)
  338. fire.Heat = 5
  339. fire.Size = 5
  340. game:GetService('Debris'):AddItem(fire,2)
  341. local coru=coroutine.wrap(function()
  342. wait(2)
  343. for i,v in pairs(Limb:GetChildren()) do
  344. if v:IsA('ParticleEmitter') then
  345. v:Destroy()
  346. end
  347. end
  348. end)
  349. coru()
  350. end
  351. local B = Instance.new("Part")
  352. B.TopSurface = 0
  353. B.BottomSurface = 0
  354. B.formFactor = "Symmetric"
  355. B.Size = Vector3.new(1, 1, 1)
  356. B.Transparency = 1
  357. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  358. B.Parent = playa
  359. local W = Instance.new("Weld")
  360. W.Part0 = Limb
  361. W.Part1 = B
  362. W.C0 = CFrame.new(0, -0.5, 0)
  363. W.Parent = Limb
  364. if kneef then
  365. local coru = coroutine.wrap(function()
  366. local uno = Instance.new('Part',workspace)
  367. local dos = Instance.new('Part',workspace)
  368. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  369. dos.CFrame = kneef["big ass knife"].CFrame
  370. local weld = Instance.new('Weld',kneef["big ass knife"])
  371. weld.Part0 = playa:FindFirstChild(hitz)
  372. weld.Part1 = kneef["big ass knife"]
  373. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  374. uno:Destroy()
  375. dos:Destroy()
  376. playa:FindFirstChild(hitz).Anchored = false
  377. for i, v in pairs(kneef:GetChildren()) do
  378. if v:IsA('BasePart') then
  379. v.Anchored = false
  380. end
  381. end
  382. if zombiemode == false or override then
  383. wait()
  384. end
  385. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  386. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  387. end
  388. local bleedpart = Instance.new("Part", kneef)
  389. bleedpart.CanCollide = false
  390. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  391. bleedpart.CFrame = kneef["big ass knife"].CFrame
  392. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  393. bleedpart.Transparency = 1
  394.  
  395. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  396. bleedpartweld.Part0 = kneef["big ass knife"]
  397. bleedpartweld.Part1 = bleedpart
  398. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  399. local coru = coroutine.wrap(function()
  400. bleed(bleedpart)
  401. end)
  402. coru()
  403. game:GetService('Debris'):AddItem(bleedpart,2)
  404. end)
  405. coru()
  406. end
  407. if playa then
  408. table.insert(rekt,playa)
  409. end
  410. end
  411. elseif hitz == "Left Leg" then
  412. local Limb = playa:FindFirstChild("Left Leg")
  413. local ters = playa:FindFirstChild('Torso')
  414. if Limb and ters then
  415. if ters:FindFirstChild('Left Hip') then ters["Left Hip"]:Destroy() end
  416. for i,v in pairs(Limb:GetChildren()) do
  417. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  418. v:Destroy()
  419. end
  420. end
  421. Limb.CFrame = ters.CFrame * CFrame.new(0.5, -2, 0)
  422. Limb.CFrame = ters.CFrame * CFrame.new(-0.5, -2, 0)
  423. local Joint = Instance.new("Rotate")
  424. Joint.Name = "LeftHip"
  425. Joint.Part0 = ters
  426. Joint.Part1 = Limb
  427. Joint.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  428. Joint.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  429. Joint.Parent = ters
  430. if charred and zombiemode == false then
  431. Limb.BrickColor = BrickColor.new('Black')
  432. local fire = Instance.new('Fire',Limb)
  433. fire.Heat = 5
  434. fire.Size = 5
  435. game:GetService('Debris'):AddItem(fire,2)
  436. local coru=coroutine.wrap(function()
  437. wait(2)
  438. for i,v in pairs(Limb:GetChildren()) do
  439. if v:IsA('ParticleEmitter') then
  440. v:Destroy()
  441. end
  442. end
  443. end)
  444. coru()
  445. end
  446.  
  447. local B = Instance.new("Part")
  448. B.TopSurface = 0
  449. B.BottomSurface = 0
  450. B.formFactor = "Symmetric"
  451. B.Size = Vector3.new(1, 1, 1)
  452. B.Transparency = 1
  453. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  454. B.Parent = playa
  455. local W = Instance.new("Weld")
  456. W.Part0 = Limb
  457. W.Part1 = B
  458. W.C0 = CFrame.new(0, -0.5, 0)
  459. W.Parent = Limb
  460. Limb.CanCollide = false
  461. if kneef then
  462. local coru = coroutine.wrap(function()
  463. local uno = Instance.new('Part',workspace)
  464. local dos = Instance.new('Part',workspace)
  465. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  466. dos.CFrame = kneef["big ass knife"].CFrame
  467. local weld = Instance.new('Weld',kneef["big ass knife"])
  468. weld.Part0 = playa:FindFirstChild(hitz)
  469. weld.Part1 = kneef["big ass knife"]
  470. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  471. uno:Destroy()
  472. dos:Destroy()
  473. playa:FindFirstChild(hitz).Anchored = false
  474. for i, v in pairs(kneef:GetChildren()) do
  475. if v:IsA('BasePart') then
  476. v.Anchored = false
  477. end
  478. end
  479. if zombiemode == false or override then
  480. wait()
  481. end
  482. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  483. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  484. end
  485. local bleedpart = Instance.new("Part", kneef)
  486. bleedpart.CanCollide = false
  487. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  488. bleedpart.CFrame = kneef["big ass knife"].CFrame
  489. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  490. bleedpart.Transparency = 1
  491.  
  492. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  493. bleedpartweld.Part0 = kneef["big ass knife"]
  494. bleedpartweld.Part1 = bleedpart
  495. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  496. local coru = coroutine.wrap(function()
  497. bleed(bleedpart)
  498. end)
  499. coru()
  500. game:GetService('Debris'):AddItem(bleedpart,2)
  501. end)
  502. coru()
  503. end
  504. if playa then
  505. table.insert(rekt,playa)
  506. end
  507. end
  508. elseif playa then
  509. if finishnum ~= 1 then
  510. local coru=coroutine.wrap(function()
  511. player.Character.Head.Psycho.Playing = true
  512. wait(3)
  513. player.Character.Head.Psycho.Playing = false
  514. end)
  515. coru()
  516. end
  517. local playa2 = playa
  518. playa.Archivable = true
  519. local playa = playa:Clone()
  520. playa.Archivable = false
  521. playa2:Destroy()
  522. playa.Parent = workspace
  523. local Gibs = game.Workspace
  524. local Torso = playa.Torso
  525. local Head = playa:FindFirstChild("Head")
  526. local function Scan(ch)
  527. local e
  528. for e = 1,#ch do
  529. Scan(ch[e]:GetChildren())
  530. if (ch[e].ClassName == "Weld" and ch[e]:FindFirstChild('Part1') and ch[e].Part1.Name ~= 'Projectile') or ch[e].ClassName == "Motor6D" or ch[e].ClassName == "Rotate" or (ch[e]:IsA('BasePart') and ch[e].Size == Vector3.new(1, 1, 1)) then
  531. ch[e]:remove()
  532. end
  533. end
  534. end
  535. Scan(playa:GetChildren())
  536. if playa:FindFirstChild('HumanoidRootPart') and (zombiemode == false or override) then
  537. playa:FindFirstChild('HumanoidRootPart'):Destroy()
  538. end
  539. local hum2 = playa:FindFirstChildOfClass("Humanoid")
  540. if zombiemode == true and override == false then
  541. soundy = true
  542. end
  543. if string.sub(hum2.Parent.Name,string.len(hum2.Parent.Name)-8,string.len(hum2.Parent.Name)) ~= "'s Zombie" then
  544. override = true
  545. end
  546. if hum2 ~= nil then
  547. hum2.Name = "Humanoid2"
  548. hum2.Health = 0
  549. if zombiemode == false or override == true then
  550. table.insert(rekt,hum2.Parent)
  551. else
  552. local gyro = Instance.new('BodyGyro',Torso)
  553. hum2.PlatformStand = false
  554. for i,v in pairs(hum2.Parent.Torso:GetChildren()) do
  555. if v:IsA('BodyGyro') then v:Destroy() end
  556. end
  557. if playa:FindFirstChild('HumanoidRootPart') then
  558. hum2.Parent.HumanoidRootPart.CFrame = hum2.Parent.Torso.CFrame
  559. local weldcrucial = Instance.new('Weld',hum2.Parent.HumanoidRootPart)
  560. weldcrucial.Part0 = hum2.Parent.HumanoidRootPart
  561. weldcrucial.Part1 = hum2.Parent.Torso
  562. end
  563. end
  564. end
  565. local ch = playa:GetChildren()
  566. local i
  567. for i = 1,#ch do
  568. if ch[i].Name == "THandle1" or ch[i].Name == "THandle2" then
  569. ch[i]:remove()
  570. end
  571. end
  572.  
  573. if Head then
  574. local Neck = Instance.new("Weld")
  575. Neck.Name = "Neck"
  576. Neck.Part0 = Torso
  577. Neck.Part1 = Head
  578. if pool then
  579. local part = Instance.new('Part',Torso)
  580. part.Position = Vector3.new(0,10,0)
  581. part.Size = Vector3.new(0.2,0.2,0.2)
  582. part.Transparency = 1
  583. part.CanCollide = false
  584. local we = Instance.new('Weld',Torso)
  585. we.Part0 = Torso
  586. we.Part1 = part
  587. we.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  588. local coru=coroutine.wrap(function()
  589. bleed(part)
  590. end)
  591. coru()
  592. end
  593. if head == false or head == nil then
  594. Neck.C0 = CFrame.new(0, 1.5, 0)
  595. else
  596. Neck.C0 = CFrame.new(0, 1.5, 0.2)*CFrame.Angles(0.5, 0.25, 0.25)
  597. local bleedpart = Instance.new("Part", Torso)
  598. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  599. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  600. bleedpart.CanCollide = false
  601. bleedpart.Position = Head.Position + Vector3.new(0, 1, 0)
  602. bleedpart.Transparency = 1
  603.  
  604. local bleedpartweld = Instance.new("Weld", Torso)
  605. bleedpartweld.Part0 = Torso
  606. bleedpartweld.Part1 = bleedpart
  607. bleedpartweld.C0 = CFrame.Angles(-1, 0, -0.35) * CFrame.new(0, 1, 0.8)
  608. local coru = coroutine.wrap(function()
  609. bleed(bleedpart)
  610. end)
  611. coru()
  612. end
  613. Neck.C1 = CFrame.new()
  614. Neck.Parent = Torso
  615. end
  616. local Limb = playa:FindFirstChild("Right Arm")
  617. if Limb then
  618.  
  619. Limb.CFrame = Torso.CFrame * CFrame.new(1.5, 0, 0)
  620. local Joint = Instance.new("Rotate")
  621. Joint.Name = "RightShoulder"
  622. Joint.Part0 = Torso
  623. Joint.Part1 = Limb
  624. Joint.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  625. Joint.C1 = CFrame.new(-0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  626. Joint.Parent = Torso
  627.  
  628. local B = Instance.new("Part")
  629. B.TopSurface = 0
  630. B.BottomSurface = 0
  631. B.formFactor = "Symmetric"
  632. B.Size = Vector3.new(1, 1, 1)
  633. B.Transparency = 1
  634. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  635. B.Parent = playa
  636. local W = Instance.new("Weld")
  637. W.Part0 = Limb
  638. W.Part1 = B
  639. W.C0 = CFrame.new(0, -0.5, 0)
  640. W.Parent = Limb
  641. end
  642. local Limb = playa:FindFirstChild("Left Arm")
  643. if Limb then
  644.  
  645. Limb.CFrame = Torso.CFrame * CFrame.new(-1.5, 0, 0)
  646. local Joint = Instance.new("Rotate")
  647. Joint.Name = "LeftShoulder"
  648. Joint.Part0 = Torso
  649. Joint.Part1 = Limb
  650. Joint.C0 = CFrame.new(-1.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  651. Joint.C1 = CFrame.new(0, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  652. Joint.Parent = Torso
  653.  
  654. local B = Instance.new("Part")
  655. B.TopSurface = 0
  656. B.BottomSurface = 0
  657. B.formFactor = "Symmetric"
  658. B.Size = Vector3.new(1, 1, 1)
  659. B.Transparency = 1
  660. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  661. B.Parent = playa
  662. local W = Instance.new("Weld")
  663. W.Part0 = Limb
  664. W.Part1 = B
  665. W.C0 = CFrame.new(0, -0.5, 0)
  666. W.Parent = Limb
  667. end
  668. local Limb = playa:FindFirstChild("Right Leg")
  669. if Limb then
  670. Limb.CanCollide = false
  671. Limb.CFrame = Torso.CFrame * CFrame.new(0.5, -2, 0)
  672. local Joint = Instance.new("Rotate")
  673. Joint.Name = "RightHip"
  674. Joint.Part0 = Torso
  675. Joint.Part1 = Limb
  676. Joint.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  677. Joint.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  678. Joint.Parent = Torso
  679.  
  680. local B = Instance.new("Part")
  681. B.TopSurface = 0
  682. B.BottomSurface = 0
  683. B.formFactor = "Symmetric"
  684. B.Size = Vector3.new(1, 1, 1)
  685. B.Transparency = 1
  686. B.CanCollide = true
  687. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  688. B.Parent = playa
  689. local W = Instance.new("Weld")
  690. W.Part0 = Limb
  691. W.Part1 = B
  692. W.C0 = CFrame.new(0, -0.5, 0)
  693. W.Parent = Limb
  694. end
  695. local Limb = playa:FindFirstChild("Left Leg")
  696. if Limb then
  697. Limb.CanCollide = false
  698. Limb.CFrame = Torso.CFrame * CFrame.new(-0.5, -2, 0)
  699. local Joint = Instance.new("Rotate")
  700. Joint.Name = "LeftHip"
  701. Joint.Part0 = Torso
  702. Joint.Part1 = Limb
  703. Joint.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  704. Joint.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  705. Joint.Parent = Torso
  706.  
  707. local B = Instance.new("Part")
  708. B.TopSurface = 0
  709. B.BottomSurface = 0
  710. if zombiemode == false or override then
  711. B.CanCollide = true
  712. end
  713. B.formFactor = "Symmetric"
  714. B.Size = Vector3.new(1, 1, 1)
  715. B.Transparency = 1
  716. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  717. B.Parent = playa
  718. local W = Instance.new("Weld")
  719. W.Part0 = Limb
  720. W.Part1 = B
  721. W.C0 = CFrame.new(0, -0.5, 0)
  722. W.Parent = Limb
  723. end
  724. --[[
  725. local Bar = Instance.new("Part")
  726. Bar.TopSurface = 0
  727. Bar.BottomSurface = 0
  728. Bar.formFactor = "Symmetric"
  729. Bar.Size = Vector3.new(1, 1, 1)
  730. Bar.Transparency = 1
  731. Bar.CFrame = Torso.CFrame * CFrame.new(0, 0.5, 0)
  732. Bar.Parent = playa
  733. local Weld = Instance.new("Weld")
  734. Weld.Part0 = Torso
  735. Weld.Part1 = Bar
  736. Weld.C0 = CFrame.new(0, 0.5, 0)
  737. Weld.Parent = Torso
  738. --]]
  739. playa.Parent = Gibs
  740. if kneef and explode == nil then
  741. local coru = coroutine.wrap(function()
  742. if playa:FindFirstChild(hitz) then
  743. local uno = Instance.new('Part',workspace)
  744. local dos = Instance.new('Part',workspace)
  745. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  746. dos.CFrame = kneef["big ass knife"].CFrame
  747. local weld = Instance.new('Weld',kneef["big ass knife"])
  748. weld.Part0 = playa:FindFirstChild(hitz)
  749. weld.Part1 = kneef["big ass knife"]
  750. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  751. uno:Destroy()
  752. dos:Destroy()
  753. playa:FindFirstChild(hitz).Anchored = false
  754. for i, v in pairs(kneef:GetChildren()) do
  755. if v:IsA('BasePart') then
  756. v.Anchored = false
  757. end
  758. end
  759. if explode == nil or explode == false then
  760. local bleedpart = Instance.new("Part", kneef)
  761. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  762. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  763. bleedpart.CanCollide = false
  764. bleedpart.Position = Head.Position + Vector3.new(0, 1, 0)
  765. bleedpart.Transparency = 1
  766.  
  767. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  768. bleedpartweld.Part0 = kneef["big ass knife"]
  769. bleedpartweld.Part1 = bleedpart
  770. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  771. local coru = coroutine.wrap(function()
  772. bleed(bleedpart)
  773. end)
  774. coru()
  775. end
  776. end
  777. if zombiemode == false or override then
  778. wait()
  779. end
  780. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  781. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  782. end
  783. end)
  784. coru()
  785. end
  786. if explode then
  787. local movevector = CFrame.new(explode.Position,Torso.Position).lookVector
  788. local repulse = Instance.new('BodyForce',Torso)
  789. repulse.Force = movevector*10000 + Vector3.new(0,5000,0)
  790. game.Debris:AddItem(repulse,0.05)
  791. end
  792. if charred and zombiemode == false then
  793. for i,v in pairs(playa:GetChildren()) do
  794. if v:IsA('BasePart') then
  795. v.BrickColor = BrickColor.Black()
  796. local fire = Instance.new('Fire',v)
  797. fire.Size = 5
  798. fire.Heat = 5
  799. elseif v:IsA('Accessory') then
  800. for a,c in pairs(v:GetChildren()) do
  801. if c:IsA('BasePart') then
  802. c.BrickColor = BrickColor.Black()
  803. local fire = Instance.new('Fire',v)
  804. fire.Size = 5
  805. fire.Heat = 5
  806. for o,p in pairs(c:GetChildren()) do
  807. if p:IsA("SpecialMesh") then
  808. p.TextureId = ""
  809. end
  810. end
  811. end
  812. end
  813. end
  814. end
  815. end
  816. if soundy then
  817. local sound = Instance.new('Sound',Head)
  818. sound.SoundId = 'rbxassetid://903640857'
  819. sound.Volume = 1
  820. sound:Play()
  821. sound.Ended:connect(function()
  822. sound:Destroy()
  823. local ambient = Instance.new('Sound',Head)
  824. ambient.Volume = 0.25
  825. ambient.Looped = true
  826. ambient.SoundId = 'rbxassetid://903641031'
  827. ambient:Play()
  828. end)
  829. end
  830. if override then
  831. if (string.len(hum2.Parent.Name) < 9 or string.sub(hum2.Parent.Name,string.len(hum2.Parent.Name)-8,string.len(hum2.Parent.Name)) ~= "'s Zombie") and zombiemode == true and #zombies < 10 then
  832. local coru = coroutine.wrap(function()
  833. wait(4.5)
  834. hum2.Parent.Name = hum2.Parent.Name.."'s Zombie"
  835. hum2.HipHeight = 0.2
  836. wait(0.5)
  837. killz(hum2.Parent,"Head",nil,nil,false,false,false,false)
  838. end)
  839. coru()
  840. else
  841. game:GetService('Debris'):AddItem(playa, 12)
  842. end
  843. else
  844. hum2.Health = 0
  845. table.insert(zombies,playa)
  846. local attack = Instance.new('Sound',Head)
  847. attack.SoundId = 'rbxassetid://903641424'
  848. attack.Volume = 2
  849. for i,v in pairs(playa:GetChildren()) do
  850. if v:IsA('BasePart') and v:FindFirstChildOfClass('TouchTransmitter') == nil then
  851. v.Touched:connect(function(hit)
  852. if hit.Parent and hit.Parent:FindFirstChildOfClass('Humanoid') then
  853. local found = false
  854. if hit.Parent == player.Character then
  855. found = true
  856. end
  857. for a,c in pairs(zombies) do
  858. if c == hit.Parent then
  859. found = true
  860. end
  861. end
  862. if found == false and hit.Parent:FindFirstChildOfClass('Humanoid').Health > 0 then
  863. attack:Play()
  864. if hit.Parent:FindFirstChildOfClass('Humanoid').Health - 2 <= 0 then
  865. hit.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  866. wait()
  867. killz(hit.Parent,"Head")
  868. else
  869. hit.Parent:FindFirstChildOfClass('Humanoid'):TakeDamage(2)
  870. end
  871. end
  872. end
  873. end)
  874. end
  875. end
  876. local coru = coroutine.wrap(function()
  877. wait(2)
  878. for i,v in pairs(playa:GetChildren()) do
  879. if v:IsA('BasePart') then
  880. for a,c in pairs(v:GetChildren()) do
  881. if c:IsA('Fire') or c:IsA('ParticleEmitter') then
  882. c:Destroy()
  883. end
  884. end
  885. elseif v:IsA('Accessory') then
  886. for a,c in pairs(v:GetChildren()) do
  887. if c:IsA('BasePart') then
  888. for b,d in pairs(c:GetChildren()) do
  889. if d:IsA('Fire') or d:IsA('ParticleEmitter') then
  890. d:Destroy()
  891. end
  892. end
  893. end
  894. end
  895. end
  896. end
  897. end)
  898. coru()
  899. end
  900. end
  901. end
  902.  
  903. mouse.KeyDown:connect(function(key)
  904. if key == "t" and mouse.Target then
  905. local hum = mouse.Target.Parent:FindFirstChildOfClass('Humanoid')
  906. if hum == nil then hum = mouse.Target.Parent.Parent:FindFirstChildOfClass('Humanoid') end
  907. if curpoint == nil then
  908. if hum and hum.Parent:FindFirstChild('Head') then
  909. curpart = hum.Parent.Head
  910. else
  911. curpart = nil
  912. curpoint = mouse.Hit.p
  913. end
  914. if player.PlayerGui:FindFirstChild('Notification') then player.PlayerGui.Notification:Destroy() end
  915. notify("ZOMBIE TARGET SET",false)
  916. else
  917. curpart = nil
  918. curpoint = nil
  919. if player.PlayerGui:FindFirstChild('Notification') then player.PlayerGui.Notification:Destroy() end
  920. notify("ZOMBIE TARGET REMOVED",false)
  921. end
  922. elseif key == "y" then
  923. for o,p in pairs(zombies) do
  924. local coru = coroutine.wrap(function()
  925. if p:FindFirstChild('Torso') then
  926. killz(p,"Head",nil,nil,false,false,false,true)
  927. else
  928. table.remove(zombies,o)
  929. end
  930. end)
  931. coru()
  932. wait()
  933. end
  934. for i,v in pairs(zombies) do
  935. table.remove(zombies,i)
  936. end
  937. if player.PlayerGui:FindFirstChild('Notification') then player.PlayerGui.Notification:Destroy() end
  938. notify("ZOMBIES TERMINATED",false)
  939. end
  940. end)
  941.  
  942. function nub()
  943. local me = player.Character
  944. local point = me.HumanoidRootPart
  945. local playergui = player.PlayerGui
  946. local rightshoulderz = me.Torso["Right Shoulder"]:Clone()
  947. local leftshoulderz = me.Torso["Left Shoulder"]:Clone()
  948. local torsojoint = me.HumanoidRootPart["RootJoint"]:Clone()
  949. local lefthipz = me.Torso["Left Hip"]:Clone()
  950. local righthipz = me.Torso["Right Hip"]:Clone()
  951. local mode = "kill"
  952. local lerpz = false
  953. local active = false
  954. local acting = false
  955. local hit = false
  956. local canClick = true
  957. local stabbing = false
  958. local grabbing = false
  959. local finishing = false
  960. local kyssing = false
  961. local canbackgroundmusic = true
  962. local cancolorfilter = true
  963. local spinboolean = false
  964. local grabbed = nil
  965. local doing = false
  966. local rightshoulder = nil
  967. local leftshoulder = nil
  968. local headweld = nil
  969. local usable = true
  970. finishnum = 1
  971.  
  972. function notify(msg,forever)
  973. local doit = coroutine.wrap(function()
  974. local gui = Instance.new('ScreenGui',playergui)
  975. gui.Name = "Notification"
  976. local frame = Instance.new('Frame',gui)
  977. frame.Position = UDim2.new(0,0,0,0)
  978. frame.Size = UDim2.new(1,0,0.2,0)
  979. frame.BackgroundTransparency = 1
  980. local txt = Instance.new('TextLabel',frame)
  981. txt.TextColor3 = Color3.new(255,255,255)
  982. txt.TextStrokeColor3 = Color3.new(0, 0, 0)
  983. txt.TextStrokeTransparency = 0
  984. txt.BackgroundTransparency = 1
  985. txt.Text = ""
  986. txt.Size = UDim2.new(1,0,0.3,0)
  987. txt.Position = UDim2.new(0,0,0.4,0)
  988. txt.TextScaled = true
  989. txt.Font = "Code"
  990. txt.TextXAlignment = "Center"
  991. local tap = Instance.new("Sound")
  992. tap.Parent = gui
  993. tap.SoundId = "rbxassetid://147982968"
  994. tap.TimePosition = 0.1
  995. local str = msg
  996. local len = string.len(str)
  997. for i=1,len do
  998. txt.Text = string.sub(str,1,i)
  999. pitche = math.random(20, 40)/10
  1000. tap.PlaybackSpeed = pitche
  1001. tap:Play()
  1002. wait(0.01)
  1003. end
  1004. if forever == false then
  1005. wait(1)
  1006. while txt.TextTransparency < 1 do
  1007. txt.TextTransparency = txt.TextTransparency + 0.1
  1008. txt.TextStrokeTransparency = txt.TextStrokeTransparency + 0.1
  1009. wait(0.001)
  1010. end
  1011. gui:Destroy()
  1012. end
  1013. end)
  1014. doit()
  1015. end
  1016.  
  1017. wait(0.5)
  1018. notify("Loaded Now Go Rekt Da Kids",true)
  1019. local laugh = Instance.new('Sound',me.Head)
  1020. laugh.SoundId = 'rbxassetid://378827985'
  1021. laugh.Name = "Psycho"
  1022. laugh.Volume = 5
  1023. -- 1 - bitch ass knife
  1024. local obj1 = Instance.new("Model")
  1025. obj1.Name = "bitch ass knife"
  1026. obj1.Parent = game.Workspace
  1027.  
  1028. -- 2 - Grab
  1029. local obj2 = Instance.new("Part")
  1030. obj2.CFrame = CFrame.new(Vector3.new(20.4525032, 6.14501333, -134.399979)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  1031. obj2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1032. obj2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1033. obj2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1034. obj2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1035. obj2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1036. obj2.Material = Enum.Material.Concrete
  1037. obj2.Size = Vector3.new(1, 0.25, 0.25)
  1038. obj2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1039. obj2.Anchored = true
  1040. obj2.BrickColor = BrickColor.new("Black")
  1041. obj2.Friction = 0.30000001192093
  1042. obj2.Shape = Enum.PartType.Cylinder
  1043. obj2.Name = "Grab"
  1044. obj2.Parent = obj1
  1045.  
  1046. -- 3 - handletopcap
  1047. local obj3 = Instance.new("Part")
  1048. obj3.CFrame = CFrame.new(Vector3.new(19.9725456, 6.14502859, -134.399933)) * CFrame.Angles(0, 1.5707963705063, 0)
  1049. obj3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1050. obj3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1051. obj3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1052. obj3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1053. obj3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1054. obj3.Material = Enum.Material.Concrete
  1055. obj3.Size = Vector3.new(0.349999994, 0.349999994, 0.349999994)
  1056. obj3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1057. obj3.Anchored = true
  1058. obj3.BrickColor = BrickColor.new("Black")
  1059. obj3.Friction = 0.30000001192093
  1060. obj3.Shape = Enum.PartType.Ball
  1061. obj3.Name = "handletopcap"
  1062. obj3.Parent = obj1
  1063.  
  1064. -- 4 - handlebottomcap
  1065. local obj4 = Instance.new("Part")
  1066. obj4.CFrame = CFrame.new(Vector3.new(20.9725285, 6.14502859, -134.399918)) * CFrame.Angles(0, 1.5707963705063, 0)
  1067. obj4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1068. obj4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1069. obj4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1070. obj4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1071. obj4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1072. obj4.Material = Enum.Material.Concrete
  1073. obj4.Size = Vector3.new(0.25, 0.25, 0.25)
  1074. obj4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1075. obj4.Anchored = true
  1076. obj4.BrickColor = BrickColor.new("Black")
  1077. obj4.Friction = 0.30000001192093
  1078. obj4.Shape = Enum.PartType.Ball
  1079. obj4.Name = "handlebottomcap"
  1080. obj4.Parent = obj1
  1081.  
  1082. -- 5 - handleguardmid
  1083. local obj5 = Instance.new("Part")
  1084. obj5.CFrame = CFrame.new(Vector3.new(19.9474983, 6.14502859, -134.399918)) * CFrame.Angles(0, 1.5707963705063, 0)
  1085. obj5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1086. obj5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1087. obj5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1088. obj5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1089. obj5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1090. obj5.Material = Enum.Material.Concrete
  1091. obj5.Size = Vector3.new(0.349999994, 0.349999994, 0.100000001)
  1092. obj5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1093. obj5.Anchored = true
  1094. obj5.BrickColor = BrickColor.new("Black")
  1095. obj5.Friction = 0.30000001192093
  1096. obj5.Shape = Enum.PartType.Block
  1097. obj5.Name = "handleguardmid"
  1098. obj5.Parent = obj1
  1099.  
  1100. -- 6 - handleguardcap1
  1101. local obj6 = Instance.new("Part")
  1102. obj6.CFrame = CFrame.new(Vector3.new(19.9474983, 6.32502794, -134.399918)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  1103. obj6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1104. obj6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1105. obj6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1106. obj6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1107. obj6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1108. obj6.Material = Enum.Material.Concrete
  1109. obj6.Size = Vector3.new(0.100000001, 0.349999994, 0.349999994)
  1110. obj6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1111. obj6.Anchored = true
  1112. obj6.BrickColor = BrickColor.new("Black")
  1113. obj6.Friction = 0.30000001192093
  1114. obj6.Shape = Enum.PartType.Cylinder
  1115. obj6.Name = "handleguardcap1"
  1116. obj6.Parent = obj1
  1117.  
  1118. -- 7 - handleguardcap2
  1119. local obj7 = Instance.new("Part")
  1120. obj7.CFrame = CFrame.new(Vector3.new(19.9474983, 5.97502899, -134.399918)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  1121. obj7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1122. obj7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1123. obj7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1124. obj7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1125. obj7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1126. obj7.Material = Enum.Material.Concrete
  1127. obj7.Size = Vector3.new(0.100000009, 0.349999994, 0.349999994)
  1128. obj7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1129. obj7.Anchored = true
  1130. obj7.BrickColor = BrickColor.new("Black")
  1131. obj7.Friction = 0.30000001192093
  1132. obj7.Shape = Enum.PartType.Cylinder
  1133. obj7.Name = "handleguardcap2"
  1134. obj7.Parent = obj1
  1135.  
  1136. -- 8 - big ass knife
  1137. local obj8 = Instance.new("Part")
  1138. obj8.CFrame = CFrame.new(Vector3.new(18.4375095, 6.14502859, -134.401321)) * CFrame.Angles(0, 1.5707963705063, 0)
  1139. obj8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1140. obj8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1141. obj8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1142. obj8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1143. obj8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1144. obj8.Material = Enum.Material.Metal
  1145. obj8.Size = Vector3.new(0.0500000007, 0.280000001, 0.839999795)
  1146. obj8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1147. obj8.Anchored = true
  1148. obj8.BrickColor = BrickColor.new("Lily white")
  1149. obj8.Friction = 0.30000001192093
  1150. obj8.Shape = Enum.PartType.Block
  1151. obj8.Name = "big ass knife"
  1152. obj8.Parent = obj1
  1153.  
  1154. -- 9 - Mesh
  1155. local obj9 = Instance.new("BlockMesh")
  1156. obj9.Scale = Vector3.new(0.5, 1, 1)
  1157. obj9.Parent = obj8
  1158.  
  1159. -- 10 - big ass knife
  1160. local obj10 = Instance.new("Part")
  1161. obj10.CFrame = CFrame.new(Vector3.new(19.7425137, 6.14502859, -134.401321)) * CFrame.Angles(0, 1.5707963705063, 0)
  1162. obj10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1163. obj10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1164. obj10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1165. obj10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1166. obj10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1167. obj10.Material = Enum.Material.Metal
  1168. obj10.Size = Vector3.new(0.0500000007, 0.280000001, 0.289999962)
  1169. obj10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1170. obj10.Anchored = true
  1171. obj10.BrickColor = BrickColor.new("Lily white")
  1172. obj10.Friction = 0.30000001192093
  1173. obj10.Shape = Enum.PartType.Block
  1174. obj10.Name = "big ass knife"
  1175. obj10.Parent = obj1
  1176. local knife = obj10
  1177.  
  1178. -- 11 - Mesh
  1179. local obj11 = Instance.new("BlockMesh")
  1180. obj11.Scale = Vector3.new(0.5, 1, 1)
  1181. obj11.Parent = obj10
  1182.  
  1183. -- 12 - big ass knife
  1184. local obj12 = Instance.new("Part")
  1185. obj12.CFrame = CFrame.new(Vector3.new(19.1075306, 6.08502865, -134.401321)) * CFrame.Angles(0, 1.5707963705063, 0)
  1186. obj12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1187. obj12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1188. obj12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1189. obj12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1190. obj12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1191. obj12.Material = Enum.Material.Metal
  1192. obj12.Size = Vector3.new(0.0500000007, 0.159999996, 0.979999959)
  1193. obj12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1194. obj12.Anchored = true
  1195. obj12.BrickColor = BrickColor.new("Lily white")
  1196. obj12.Friction = 0.30000001192093
  1197. obj12.Shape = Enum.PartType.Block
  1198. obj12.Name = "big ass knife"
  1199. obj12.Parent = obj1
  1200.  
  1201. -- 13 - Mesh
  1202. local obj13 = Instance.new("BlockMesh")
  1203. obj13.Scale = Vector3.new(0.5, 1, 1)
  1204. obj13.Parent = obj12
  1205.  
  1206. -- 14 - serration
  1207. local obj14 = Instance.new("WedgePart")
  1208. obj14.CFrame = CFrame.new(Vector3.new(19.4963322, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1209. obj14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1210. obj14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1211. obj14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1212. obj14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1213. obj14.Material = Enum.Material.Metal
  1214. obj14.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1215. obj14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1216. obj14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1217. obj14.Anchored = true
  1218. obj14.BrickColor = BrickColor.new("Lily white")
  1219. obj14.Friction = 0.30000001192093
  1220. obj14.Name = "serration"
  1221. obj14.Parent = obj1
  1222.  
  1223. -- 15 - Mesh
  1224. local obj15 = Instance.new("BlockMesh")
  1225. obj15.Scale = Vector3.new(0.5, 1, 1)
  1226. obj15.Parent = obj14
  1227.  
  1228. -- 16 - serration
  1229. local obj16 = Instance.new("WedgePart")
  1230. obj16.CFrame = CFrame.new(Vector3.new(19.2763138, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1231. obj16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1232. obj16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1233. obj16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1234. obj16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1235. obj16.Material = Enum.Material.Metal
  1236. obj16.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1237. obj16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1238. obj16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1239. obj16.Anchored = true
  1240. obj16.BrickColor = BrickColor.new("Lily white")
  1241. obj16.Friction = 0.30000001192093
  1242. obj16.Name = "serration"
  1243. obj16.Parent = obj1
  1244.  
  1245. -- 17 - Mesh
  1246. local obj17 = Instance.new("BlockMesh")
  1247. obj17.Scale = Vector3.new(0.5, 1, 1)
  1248. obj17.Parent = obj16
  1249.  
  1250. -- 18 - serration
  1251. local obj18 = Instance.new("WedgePart")
  1252. obj18.CFrame = CFrame.new(Vector3.new(19.3863068, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1253. obj18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1254. obj18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1255. obj18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1256. obj18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1257. obj18.Material = Enum.Material.Metal
  1258. obj18.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1259. obj18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1260. obj18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1261. obj18.Anchored = true
  1262. obj18.BrickColor = BrickColor.new("Lily white")
  1263. obj18.Friction = 0.30000001192093
  1264. obj18.Name = "serration"
  1265. obj18.Parent = obj1
  1266.  
  1267. -- 19 - Mesh
  1268. local obj19 = Instance.new("BlockMesh")
  1269. obj19.Scale = Vector3.new(0.5, 1, 1)
  1270. obj19.Parent = obj18
  1271.  
  1272. -- 20 - serration
  1273. local obj20 = Instance.new("WedgePart")
  1274. obj20.CFrame = CFrame.new(Vector3.new(19.5963173, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1275. obj20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1276. obj20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1277. obj20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1278. obj20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1279. obj20.Material = Enum.Material.Metal
  1280. obj20.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1281. obj20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1282. obj20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1283. obj20.Anchored = true
  1284. obj20.BrickColor = BrickColor.new("Lily white")
  1285. obj20.Friction = 0.30000001192093
  1286. obj20.Name = "serration"
  1287. obj20.Parent = obj1
  1288.  
  1289. -- 21 - Mesh
  1290. local obj21 = Instance.new("BlockMesh")
  1291. obj21.Scale = Vector3.new(0.5, 1, 1)
  1292. obj21.Parent = obj20
  1293.  
  1294. -- 22 - serration
  1295. local obj22 = Instance.new("WedgePart")
  1296. obj22.CFrame = CFrame.new(Vector3.new(19.1663074, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1297. obj22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1298. obj22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1299. obj22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1300. obj22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1301. obj22.Material = Enum.Material.Metal
  1302. obj22.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1303. obj22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1304. obj22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1305. obj22.Anchored = true
  1306. obj22.BrickColor = BrickColor.new("Lily white")
  1307. obj22.Friction = 0.30000001192093
  1308. obj22.Name = "serration"
  1309. obj22.Parent = obj1
  1310.  
  1311. -- 23 - Mesh
  1312. local obj23 = Instance.new("BlockMesh")
  1313. obj23.Scale = Vector3.new(0.5, 1, 1)
  1314. obj23.Parent = obj22
  1315.  
  1316. -- 24 - serration
  1317. local obj24 = Instance.new("WedgePart")
  1318. obj24.CFrame = CFrame.new(Vector3.new(18.9663048, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1319. obj24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1320. obj24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1321. obj24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1322. obj24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1323. obj24.Material = Enum.Material.Metal
  1324. obj24.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1325. obj24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1326. obj24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1327. obj24.Anchored = true
  1328. obj24.BrickColor = BrickColor.new("Lily white")
  1329. obj24.Friction = 0.30000001192093
  1330. obj24.Name = "serration"
  1331. obj24.Parent = obj1
  1332.  
  1333. -- 25 - Mesh
  1334. local obj25 = Instance.new("BlockMesh")
  1335. obj25.Scale = Vector3.new(0.5, 1, 1)
  1336. obj25.Parent = obj24
  1337.  
  1338. -- 26 - serration
  1339. local obj26 = Instance.new("WedgePart")
  1340. obj26.CFrame = CFrame.new(Vector3.new(18.8562984, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1341. obj26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1342. obj26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1343. obj26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1344. obj26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1345. obj26.Material = Enum.Material.Metal
  1346. obj26.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1347. obj26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1348. obj26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1349. obj26.Anchored = true
  1350. obj26.BrickColor = BrickColor.new("Lily white")
  1351. obj26.Friction = 0.30000001192093
  1352. obj26.Name = "serration"
  1353. obj26.Parent = obj1
  1354.  
  1355. -- 27 - Mesh
  1356. local obj27 = Instance.new("BlockMesh")
  1357. obj27.Scale = Vector3.new(0.5, 1, 1)
  1358. obj27.Parent = obj26
  1359.  
  1360. -- 28 - serration
  1361. local obj28 = Instance.new("WedgePart")
  1362. obj28.CFrame = CFrame.new(Vector3.new(19.0663071, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1363. obj28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1364. obj28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1365. obj28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1366. obj28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1367. obj28.Material = Enum.Material.Metal
  1368. obj28.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1369. obj28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1370. obj28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1371. obj28.Anchored = true
  1372. obj28.BrickColor = BrickColor.new("Lily white")
  1373. obj28.Friction = 0.30000001192093
  1374. obj28.Name = "serration"
  1375. obj28.Parent = obj1
  1376.  
  1377. -- 29 - Mesh
  1378. local obj29 = Instance.new("BlockMesh")
  1379. obj29.Scale = Vector3.new(0.5, 1, 1)
  1380. obj29.Parent = obj28
  1381.  
  1382. -- 30 - knifetip1
  1383. local obj30 = Instance.new("WedgePart")
  1384. obj30.CFrame = CFrame.new(Vector3.new(18.0163059, 6.14381599, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1385. obj30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1386. obj30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1387. obj30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1388. obj30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1389. obj30.Material = Enum.Material.Metal
  1390. obj30.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1391. obj30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1392. obj30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1393. obj30.Anchored = true
  1394. obj30.BrickColor = BrickColor.new("Lily white")
  1395. obj30.Friction = 0.30000001192093
  1396. obj30.Name = "knifetip1"
  1397. obj30.Parent = obj1
  1398.  
  1399. -- 31 - Mesh
  1400. local obj31 = Instance.new("BlockMesh")
  1401. obj31.Scale = Vector3.new(0.5, 1, 1)
  1402. obj31.Parent = obj30
  1403.  
  1404. -- 32 - redstuff
  1405. local obj32 = Instance.new("Part")
  1406. obj32.CFrame = CFrame.new(Vector3.new(19.9470005, 5.9749999, -134.399994)) * CFrame.Angles(-0, 0, -0)
  1407. obj32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1408. obj32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1409. obj32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1410. obj32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1411. obj32.Material = Enum.Material.SmoothPlastic
  1412. obj32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1413. obj32.Size = Vector3.new(0.0500000007, 0.360000014, 0.360000014)
  1414. obj32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1415. obj32.BrickColor = BrickColor.new("Institutional white")
  1416. obj32.Friction = 0.30000001192093
  1417. obj32.Shape = Enum.PartType.Cylinder
  1418. obj32.Name = "redstuff"
  1419. obj32.Anchored = true
  1420. obj32.Parent = obj1
  1421.  
  1422.  
  1423. -- 33 - redstuff
  1424. local obj33 = Instance.new("Part")
  1425. obj33.CFrame = CFrame.new(Vector3.new(18.9800053, 6.1400156, -134.404984)) * CFrame.Angles(-0, 0, -0)
  1426. obj33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1427. obj33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1428. obj33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1429. obj33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1430. obj33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1431. obj33.Material = Enum.Material.SmoothPlastic
  1432. obj33.Size = Vector3.new(1.81999993, 0.100000001, 0.0500000007)
  1433. obj33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1434. obj33.BrickColor = BrickColor.new("Institutional white")
  1435. obj33.Friction = 0.30000001192093
  1436. obj33.Shape = Enum.PartType.Block
  1437. obj33.Name = "redstuff"
  1438. obj33.Anchored = true
  1439. obj33.Parent = obj1
  1440.  
  1441. -- 34 - redstuff
  1442. local obj34 = Instance.new("Part")
  1443. obj34.CFrame = CFrame.new(Vector3.new(19.9470005, 6.32499981, -134.399994)) * CFrame.Angles(-0, 0, -0)
  1444. obj34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1445. obj34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1446. obj34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1447. obj34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1448. obj34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1449. obj34.Size = Vector3.new(0.0500000007, 0.360000014, 0.360000014)
  1450. obj34.Material = Enum.Material.SmoothPlastic
  1451. obj34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1452. obj34.BrickColor = BrickColor.new("Institutional white")
  1453. obj34.Friction = 0.30000001192093
  1454. obj34.Shape = Enum.PartType.Cylinder
  1455. obj34.Name = "redstuff"
  1456. obj34.Anchored = true
  1457. obj34.Parent = obj1
  1458.  
  1459. -- 35 - redstuff
  1460. local obj35 = Instance.new("Part")
  1461. obj35.CFrame = CFrame.new(Vector3.new(19.8830166, 6.14501476, -134.399963)) * CFrame.Angles(-0, 0, -0)
  1462. obj35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1463. obj35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1464. obj35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1465. obj35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1466. obj35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1467. obj35.Size = Vector3.new(0.0500000007, 0.319999993, 0.319999993)
  1468. obj35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1469. obj35.BrickColor = BrickColor.new("Institutional white")
  1470. obj35.Friction = 0.30000001192093
  1471. obj35.Shape = Enum.PartType.Cylinder
  1472. obj35.Material = Enum.Material.SmoothPlastic
  1473. obj35.Name = "redstuff"
  1474. obj35.Anchored = true
  1475. obj35.Parent = obj1
  1476.  
  1477. -- 36 - redstuff
  1478. local obj36 = Instance.new("Part")
  1479. obj36.CFrame = CFrame.new(Vector3.new(20.9430103, 6.14501476, -134.399963)) * CFrame.Angles(-0, 0, -0)
  1480. obj36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1481. obj36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1482. obj36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1483. obj36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1484. obj36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1485. obj36.Material = Enum.Material.SmoothPlastic
  1486. obj36.Size = Vector3.new(0.0500000007, 0.25999999, 0.25999999)
  1487. obj36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1488. obj36.BrickColor = BrickColor.new("Institutional white")
  1489. obj36.Friction = 0.30000001192093
  1490. obj36.Shape = Enum.PartType.Cylinder
  1491. obj36.Name = "redstuff"
  1492. obj36.Anchored = true
  1493. obj36.Parent = obj1
  1494.  
  1495. -- 37 - redstuff
  1496. local obj37 = Instance.new("WedgePart")
  1497. obj37.CFrame = CFrame.new(Vector3.new(18.066288, 6.14381599, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1498. obj37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1499. obj37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1500. obj37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1501. obj37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1502. obj37.Material = Enum.Material.SmoothPlastic
  1503. obj37.Size = Vector3.new(0.0500000007, 0.0700000003, 0.0700000003)
  1504. obj37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1505. obj37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1506. obj37.Anchored = true
  1507. obj37.BrickColor = BrickColor.new("Institutional white")
  1508. obj37.Friction = 0.30000001192093
  1509. obj37.Name = "redstuff"
  1510. obj37.Anchored = true
  1511. obj37.Parent = obj1
  1512.  
  1513. -- 38 - redstuff
  1514. local obj38 = Instance.new("Part")
  1515. obj38.CFrame = CFrame.new(Vector3.new(20.1230125, 6.14501476, -134.399979)) * CFrame.Angles(-0, 0, -0)
  1516. obj38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1517. obj38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1518. obj38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1519. obj38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1520. obj38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1521. obj38.Material = Enum.Material.SmoothPlastic
  1522. obj38.Size = Vector3.new(0.0500000007, 0.25999999, 0.25999999)
  1523. obj38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1524. obj38.BrickColor = BrickColor.new("Institutional white")
  1525. obj38.Friction = 0.30000001192093
  1526. obj38.Shape = Enum.PartType.Cylinder
  1527. obj38.Name = "redstuff"
  1528. obj38.Anchored = true
  1529. obj38.Parent = obj1
  1530.  
  1531. local audio = Instance.new('Sound',knife)
  1532. audio.Volume = 2
  1533.  
  1534. local audio2 = Instance.new('Sound',knife)
  1535. audio2.Volume = 2
  1536.  
  1537. local holdpart = Instance.new("Part")
  1538. holdpart.Parent = me
  1539. holdpart.Size = Vector3.new(0.4, 0.4, 0.2)
  1540. holdpart.Position = me.Head.Position + Vector3.new(0, 1, 0)
  1541. holdpart.BrickColor = BrickColor.new("Burnt Sienna")
  1542.  
  1543. local previous = nil
  1544. for i,v in pairs(obj1:GetChildren()) do
  1545. if v:IsA('BasePart') then
  1546. if previous then
  1547. local weld = Instance.new('Weld',v)
  1548. weld.Part0 = v
  1549. weld.Part1 = previous
  1550. weld.C0 = v.CFrame:inverse() * previous.CFrame
  1551. previous.Anchored = false
  1552. previous.CanCollide = false
  1553. local vee = v
  1554. weld.AncestryChanged:connect(function(mez,par)
  1555. wait()
  1556. weld.Parent = vee
  1557. end)
  1558. end
  1559. previous = v
  1560. end
  1561. end
  1562. previous.Anchored = false
  1563. previous.CanCollide = false
  1564.  
  1565. local holdpartweld = Instance.new("Weld", me.Torso)
  1566. holdpartweld.Part0 = me.Torso
  1567. holdpartweld.Part1 = holdpart
  1568. holdpartweld.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-1, -0.8, 0.15)
  1569.  
  1570. holdpartweld.AncestryChanged:connect(function(mez,par)
  1571. if par ~= me.Torso then
  1572. wait()
  1573. holdpartweld.Parent = me.Torso
  1574. end
  1575. end)
  1576.  
  1577. local knifeweld = Instance.new('Weld',me.Torso)
  1578. knifeweld.Part0 = me.Torso
  1579. knifeweld.Part1 = obj2
  1580. knifeweld.C1 = CFrame.Angles(0,math.rad(90),0) * CFrame.new(1, 0.8, 0.55)
  1581. knifeweld.AncestryChanged:connect(function(mez,par)
  1582. if par ~= me.Torso then
  1583. wait()
  1584. knifeweld.Parent = me.Torso
  1585. end
  1586. end)
  1587. local ScreenGui = Instance.new("ScreenGui")
  1588. local CustomizeGui = Instance.new("Frame")
  1589. local Customize = Instance.new("TextLabel")
  1590. local ClosestColor = Instance.new("TextLabel")
  1591. local Line = Instance.new("TextLabel")
  1592. local Color = Instance.new("ImageLabel")
  1593. local Close = Instance.new("TextButton")
  1594. local RedHue = Instance.new("TextLabel")
  1595. local GreenHue = Instance.new("TextLabel")
  1596. local RedInput = Instance.new("TextBox")
  1597. local BlueHue = Instance.new("TextLabel")
  1598. local GreenInput = Instance.new("TextBox")
  1599. local TransInput = Instance.new("TextBox")
  1600. local BlueInput = Instance.new("TextBox")
  1601. local Message = Instance.new("TextLabel")
  1602. local Message2 = Instance.new("TextLabel")
  1603. local TrailTransparency = Instance.new("TextLabel")
  1604. local TrailInput = Instance.new("TextBox")
  1605. local MusicOption = Instance.new("TextButton")
  1606. local ScreenOption = Instance.new("TextButton")
  1607. local ScreenOptionTxt = Instance.new("TextLabel")
  1608. local MusicOptionTxt = Instance.new("TextLabel")
  1609.  
  1610. -- Properties
  1611.  
  1612. ScreenGui.Parent = playergui
  1613.  
  1614. CustomizeGui.Name = "CustomizeGui"
  1615. CustomizeGui.Parent = ScreenGui
  1616. CustomizeGui.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  1617. CustomizeGui.BackgroundTransparency = 0.5
  1618. CustomizeGui.BorderColor3 = Color3.new(0, 0, 0)
  1619. CustomizeGui.BorderSizePixel = 2
  1620. CustomizeGui.Position = UDim2.new(0, 0, 0.5, 0)
  1621. CustomizeGui.Size = UDim2.new(0.449999988, 0, 0.449999988, 0)
  1622.  
  1623. Customize.Name = "Customize"
  1624. Customize.Parent = CustomizeGui
  1625. Customize.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  1626. Customize.BackgroundTransparency = 0.75
  1627. Customize.BorderSizePixel = 0
  1628. Customize.Size = UDim2.new(1, 0, 0.200000003, 0)
  1629. Customize.FontSize = Enum.FontSize.Size28
  1630. Customize.Text = "ACCENT COLOR CUSTOMIZATION"
  1631. Customize.TextColor3 = Color3.new(1, 1, 1)
  1632. Customize.TextScaled = true
  1633. Customize.TextSize = 25
  1634. Customize.TextStrokeTransparency = 0.5
  1635. Customize.TextWrapped = true
  1636.  
  1637. ClosestColor.Name = "ClosestColor"
  1638. ClosestColor.Parent = CustomizeGui
  1639. ClosestColor.BackgroundColor3 = Color3.new(1, 1, 1)
  1640. ClosestColor.BackgroundTransparency = 1
  1641. ClosestColor.Position = UDim2.new(0, 0, 0.850000024, 0)
  1642. ClosestColor.Size = UDim2.new(1, 0, 0.150000006, 0)
  1643. ClosestColor.Font = Enum.Font.SourceSansLight
  1644. ClosestColor.FontSize = Enum.FontSize.Size32
  1645. ClosestColor.Text = "Your color is closest to Institutional White"
  1646. ClosestColor.TextColor3 = Color3.new(1, 1, 1)
  1647. ClosestColor.TextSize = 30
  1648. ClosestColor.TextStrokeTransparency = 0.5
  1649.  
  1650. Line.Name = "Line"
  1651. Line.Parent = CustomizeGui
  1652. Line.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  1653. Line.BackgroundTransparency = 0.5
  1654. Line.BorderColor3 = Color3.new(0, 0, 0)
  1655. Line.BorderSizePixel = 0
  1656. Line.Position = UDim2.new(0, 0, 0.200000003, 0)
  1657. Line.Size = UDim2.new(1, 0, 0.0299999993, 0)
  1658. Line.Font = Enum.Font.SourceSans
  1659. Line.FontSize = Enum.FontSize.Size14
  1660. Line.Text = " "
  1661. Line.TextSize = 14
  1662.  
  1663. Color.Name = "Color"
  1664. Color.Parent = CustomizeGui
  1665. Color.BackgroundColor3 = Color3.new(1, 1, 1)
  1666. Color.BorderSizePixel = 0
  1667. Color.Position = UDim2.new(0.699999988, 0, 0.419999987, 0)
  1668. Color.Size = UDim2.new(0.300000012, 0, 0.300000012, 0)
  1669. Color.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1670.  
  1671. MusicOption.Parent = CustomizeGui
  1672. MusicOption.Name = "MusicOption"
  1673. MusicOption.BackgroundColor3 = Color3.new(0, 1, 0)
  1674. MusicOption.BorderSizePixel = 1
  1675. MusicOption.Position = UDim2.new(0.01, 0, -0.12, 0)
  1676. MusicOption.Size = UDim2.new(0.05, 0, 0.1, 0)
  1677. MusicOption.Text = ""
  1678. MusicOption.BackgroundTransparency = 0.5
  1679.  
  1680. ScreenOption.Parent = CustomizeGui
  1681. ScreenOption.Name = "ScreenOption"
  1682. ScreenOption.BackgroundColor3 = Color3.new(0, 1, 0)
  1683. ScreenOption.BorderSizePixel = 1
  1684. ScreenOption.Position = UDim2.new(0.01, 0, -0.23, 0)
  1685. ScreenOption.Size = UDim2.new(0.05, 0, 0.1, 0)
  1686. ScreenOption.Text = ""
  1687. ScreenOption.BackgroundTransparency = 0.5
  1688.  
  1689. ScreenOptionTxt.Name = "ScreenOptionTxt"
  1690. ScreenOptionTxt.Parent = CustomizeGui
  1691. ScreenOptionTxt.BackgroundColor3 = Color3.new(1, 1, 1)
  1692. ScreenOptionTxt.BackgroundTransparency = 1
  1693. ScreenOptionTxt.Position = UDim2.new(0.07, 0, -0.23, 0)
  1694. ScreenOptionTxt.Size = UDim2.new(1, 0, 0.07, 0)
  1695. ScreenOptionTxt.Font = Enum.Font.SourceSans
  1696. ScreenOptionTxt.FontSize = Enum.FontSize.Size24
  1697. ScreenOptionTxt.Text = "Psychopath Red Filter"
  1698. ScreenOptionTxt.TextColor3 = Color3.new(1, 1, 1)
  1699. ScreenOptionTxt.TextScaled = true
  1700. ScreenOptionTxt.TextSize = 20
  1701. ScreenOptionTxt.TextStrokeColor3 = Color3.new(0, 0, 0)
  1702. ScreenOptionTxt.TextStrokeTransparency = 0.5
  1703. ScreenOptionTxt.TextWrapped = true
  1704. ScreenOptionTxt.TextXAlignment = "Left"
  1705.  
  1706. MusicOptionTxt.Name = "MusicOptionTxt"
  1707. MusicOptionTxt.Parent = CustomizeGui
  1708. MusicOptionTxt.BackgroundColor3 = Color3.new(1, 1, 1)
  1709. MusicOptionTxt.BackgroundTransparency = 1
  1710. MusicOptionTxt.Position = UDim2.new(0.07, 0, -0.12, 0)
  1711. MusicOptionTxt.Size = UDim2.new(1, 0, 0.07, 0)
  1712. MusicOptionTxt.Font = Enum.Font.SourceSans
  1713. MusicOptionTxt.FontSize = Enum.FontSize.Size24
  1714. MusicOptionTxt.Text = "Psychopath Background Music"
  1715. MusicOptionTxt.TextColor3 = Color3.new(1, 1, 1)
  1716. MusicOptionTxt.TextScaled = true
  1717. MusicOptionTxt.TextSize = 20
  1718. MusicOptionTxt.TextStrokeColor3 = Color3.new(0, 0, 0)
  1719. MusicOptionTxt.TextStrokeTransparency = 0.5
  1720. MusicOptionTxt.TextWrapped = true
  1721. MusicOptionTxt.TextXAlignment = "Left"
  1722.  
  1723. Close.Name = "Close"
  1724. Close.Parent = CustomizeGui
  1725. Close.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  1726. Close.BackgroundTransparency = 0.5
  1727. Close.BorderColor3 = Color3.new(0, 0, 0)
  1728. Close.BorderSizePixel = 2
  1729. Close.Position = UDim2.new(1.005, 0, 0, 0)
  1730. Close.Size = UDim2.new(0.100000001, 0, 0.2, 0)
  1731. Close.Font = Enum.Font.SourceSans
  1732. Close.FontSize = Enum.FontSize.Size14
  1733. Close.Text = "X"
  1734. Close.TextColor3 = Color3.new(1, 1, 1)
  1735. Close.TextScaled = true
  1736. Close.TextSize = 14
  1737. Close.TextStrokeTransparency = 0
  1738. Close.TextWrapped = true
  1739.  
  1740. RedHue.Name = "RedHue"
  1741. RedHue.Parent = CustomizeGui
  1742. RedHue.BackgroundColor3 = Color3.new(1, 1, 1)
  1743. RedHue.BackgroundTransparency = 1
  1744. RedHue.Position = UDim2.new(0.100000001, 0, 0.400000006, 0)
  1745. RedHue.Size = UDim2.new(0.300000012, 0, 0.100000001, 0)
  1746. RedHue.Font = Enum.Font.SourceSans
  1747. RedHue.FontSize = Enum.FontSize.Size24
  1748. RedHue.Text = "RED Hue Value: "
  1749. RedHue.TextColor3 = Color3.new(1, 1, 1)
  1750. RedHue.TextScaled = true
  1751. RedHue.TextSize = 20
  1752. RedHue.TextStrokeColor3 = Color3.new(1, 0, 0)
  1753. RedHue.TextStrokeTransparency = 0.75
  1754. RedHue.TextWrapped = true
  1755.  
  1756. GreenHue.Name = "GreenHue"
  1757. GreenHue.Parent = CustomizeGui
  1758. GreenHue.BackgroundColor3 = Color3.new(1, 1, 1)
  1759. GreenHue.BackgroundTransparency = 1
  1760. GreenHue.Position = UDim2.new(0.100000001, 0, 0.5, 0)
  1761. GreenHue.Size = UDim2.new(0.300000012, 0, 0.100000001, 0)
  1762. GreenHue.Font = Enum.Font.SourceSans
  1763. GreenHue.FontSize = Enum.FontSize.Size24
  1764. GreenHue.Text = "GREEN Hue Value:"
  1765. GreenHue.TextColor3 = Color3.new(1, 1, 1)
  1766. GreenHue.TextScaled = true
  1767. GreenHue.TextSize = 20
  1768. GreenHue.TextStrokeColor3 = Color3.new(0, 1, 0)
  1769. GreenHue.TextStrokeTransparency = 0.75
  1770. GreenHue.TextWrapped = true
  1771.  
  1772. RedInput.Name = "RedInput"
  1773. RedInput.Parent = CustomizeGui
  1774. RedInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  1775. RedInput.BackgroundTransparency = 0.5
  1776. RedInput.BorderSizePixel = 0
  1777. RedInput.Position = UDim2.new(0.419999987, 0, 0.425000007, 0)
  1778. RedInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  1779. RedInput.Font = Enum.Font.SourceSans
  1780. RedInput.FontSize = Enum.FontSize.Size14
  1781. RedInput.Text = "255"
  1782. RedInput.TextColor3 = Color3.new(1, 1, 1)
  1783. RedInput.TextSize = 14
  1784. RedInput.TextStrokeTransparency = 0
  1785.  
  1786. BlueHue.Name = "BlueHue"
  1787. BlueHue.Parent = CustomizeGui
  1788. BlueHue.BackgroundColor3 = Color3.new(1, 1, 1)
  1789. BlueHue.BackgroundTransparency = 1
  1790. BlueHue.Position = UDim2.new(0.100000001, 0, 0.600000024, 0)
  1791. BlueHue.Size = UDim2.new(0.300000012, 0, 0.100000001, 0)
  1792. BlueHue.Font = Enum.Font.SourceSans
  1793. BlueHue.FontSize = Enum.FontSize.Size24
  1794. BlueHue.Text = "BLUE Hue Value:"
  1795. BlueHue.TextColor3 = Color3.new(1, 1, 1)
  1796. BlueHue.TextScaled = true
  1797. BlueHue.TextSize = 20
  1798. BlueHue.TextStrokeColor3 = Color3.new(0, 0, 1)
  1799. BlueHue.TextStrokeTransparency = 0.75
  1800. BlueHue.TextWrapped = true
  1801.  
  1802. TrailTransparency.Name = "TrailTransparency"
  1803. TrailTransparency.Parent = CustomizeGui
  1804. TrailTransparency.BackgroundColor3 = Color3.new(1, 1, 1)
  1805. TrailTransparency.BackgroundTransparency = 1
  1806. TrailTransparency.Position = UDim2.new(0.090000001, 0, 0.700000024, 0)
  1807. TrailTransparency.Size = UDim2.new(0.310000012, 0, 0.100000001, 0)
  1808. TrailTransparency.Font = Enum.Font.SourceSans
  1809. TrailTransparency.FontSize = Enum.FontSize.Size24
  1810. TrailTransparency.Text = "Trail Transparency:"
  1811. TrailTransparency.TextColor3 = Color3.new(1, 1, 1)
  1812. TrailTransparency.TextScaled = true
  1813. TrailTransparency.TextSize = 20
  1814. TrailTransparency.TextStrokeColor3 = Color3.new(0, 0, 0)
  1815. TrailTransparency.TextWrapped = true
  1816.  
  1817. GreenInput.Name = "GreenInput"
  1818. GreenInput.Parent = CustomizeGui
  1819. GreenInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  1820. GreenInput.BackgroundTransparency = 0.5
  1821. GreenInput.BorderSizePixel = 0
  1822. GreenInput.Position = UDim2.new(0.419999987, 0, 0.524999976, 0)
  1823. GreenInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  1824. GreenInput.Font = Enum.Font.SourceSans
  1825. GreenInput.FontSize = Enum.FontSize.Size14
  1826. GreenInput.Text = "255"
  1827. GreenInput.TextColor3 = Color3.new(1, 1, 1)
  1828. GreenInput.TextSize = 14
  1829. GreenInput.TextStrokeTransparency = 0
  1830.  
  1831. TransInput.Name = "TransInput"
  1832. TransInput.Parent = CustomizeGui
  1833. TransInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  1834. TransInput.BackgroundTransparency = 0.5
  1835. TransInput.BorderSizePixel = 0
  1836. TransInput.Position = UDim2.new(0.419999987, 0, 0.725000024, 0)
  1837. TransInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  1838. TransInput.Font = Enum.Font.SourceSans
  1839. TransInput.FontSize = Enum.FontSize.Size14
  1840. TransInput.Text = "50"
  1841. TransInput.TextColor3 = Color3.new(1, 1, 1)
  1842. TransInput.TextSize = 14
  1843. TransInput.TextStrokeTransparency = 0
  1844.  
  1845. BlueInput.Name = "BlueInput"
  1846. BlueInput.Parent = CustomizeGui
  1847. BlueInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  1848. BlueInput.BackgroundTransparency = 0.5
  1849. BlueInput.BorderSizePixel = 0
  1850. BlueInput.Position = UDim2.new(0.419999987, 0, 0.625, 0)
  1851. BlueInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  1852. BlueInput.Font = Enum.Font.SourceSans
  1853. BlueInput.FontSize = Enum.FontSize.Size14
  1854. BlueInput.Text = "255"
  1855. BlueInput.TextColor3 = Color3.new(1, 1, 1)
  1856. BlueInput.TextSize = 14
  1857. BlueInput.TextStrokeTransparency = 0
  1858.  
  1859. Message.Name = "Message"
  1860. Message.Parent = CustomizeGui
  1861. Message.BackgroundColor3 = Color3.new(1, 1, 1)
  1862. Message.BackgroundTransparency = 1
  1863. Message.Position = UDim2.new(0, 0, 0.2500004, 0)
  1864. Message.Size = UDim2.new(1, 0, 0.100000006, 0)
  1865. Message.Font = Enum.Font.SourceSans
  1866. Message.FontSize = Enum.FontSize.Size18
  1867. Message.Text = "|| Inputs must be values ||"
  1868. Message.TextColor3 = Color3.new(1, 1, 1)
  1869. Message.TextScaled = true
  1870. Message.TextSize = 15
  1871. Message.TextStrokeTransparency = 0.75
  1872. Message.TextWrapped = true
  1873.  
  1874. local attun = Instance.new("Attachment", knife)
  1875. attun.Position = Vector3.new(0, 0.1, -1.75)
  1876. local atdos = Instance.new("Attachment", knife)
  1877. atdos.Position = Vector3.new(0, -0.1, 0.5)
  1878. local trail = Instance.new("Trail", knife)
  1879. trail.LightEmission = 0.5
  1880. trail.Attachment0 = attun
  1881. trail.Attachment1 = atdos
  1882. trail.Lifetime = 0.175
  1883. trail.MinLength = 0
  1884. trail.Enabled = false
  1885.  
  1886. function updatez()
  1887. local rc = tonumber(RedInput.Text)
  1888. local gc = tonumber(GreenInput.Text)
  1889. local bc = tonumber(BlueInput.Text)
  1890. local tcupd = tonumber(TransInput.Text)
  1891. if rc == nil then
  1892. rc = 0
  1893. end
  1894. if gc == nil then
  1895. gc = 0
  1896. end
  1897. if bc == nil then
  1898. bc = 0
  1899. end
  1900. if tcupd == nil then
  1901. tcupd = 0
  1902. end
  1903. local tc = tcupd/100
  1904. Color.BackgroundColor3 = Color3.fromRGB(rc,gc,bc)
  1905. ClosestColor.Text = "Your color is closest to "..tostring(BrickColor.new(Color3.fromRGB(rc,gc,bc)))
  1906. obj32.Color = Color3.fromRGB(rc,gc,bc)
  1907. obj33.Color = Color3.fromRGB(rc,gc,bc)
  1908. obj34.Color = Color3.fromRGB(rc,gc,bc)
  1909. obj35.Color = Color3.fromRGB(rc,gc,bc)
  1910. obj36.Color = Color3.fromRGB(rc,gc,bc)
  1911. obj37.Color = Color3.fromRGB(rc,gc,bc)
  1912. obj38.Color = Color3.fromRGB(rc,gc,bc)
  1913. trail.Color = ColorSequence.new(Color3.fromRGB(rc, gc, bc))
  1914. trail.Transparency = NumberSequence.new(tc)
  1915. TrailTransparency.TextStrokeTransparency = tc
  1916. end
  1917.  
  1918. RedInput.Changed:connect(function(val)
  1919. if val == "Text" and tonumber(RedInput.Text) then
  1920. RedInput.Text = tostring(tonumber(RedInput.Text))
  1921. if tonumber(RedInput.Text) > 255 then
  1922. RedInput.Text = '255'
  1923. end
  1924. elseif val == "Text" then
  1925. RedInput.Text = ""
  1926. end
  1927. updatez()
  1928. end)
  1929. GreenInput.Changed:connect(function(val)
  1930. if val == "Text" and tonumber(GreenInput.Text) then
  1931. GreenInput.Text = tostring(tonumber(GreenInput.Text))
  1932. if tonumber(GreenInput.Text) > 255 then
  1933. GreenInput.Text = '255'
  1934. end
  1935. elseif val == "Text" then
  1936. GreenInput.Text = ""
  1937. end
  1938. updatez()
  1939. end)
  1940. BlueInput.Changed:connect(function(val)
  1941. if val == "Text" and tonumber(BlueInput.Text) then
  1942. BlueInput.Text = tostring(tonumber(BlueInput.Text))
  1943. if tonumber(BlueInput.Text) > 255 then
  1944. BlueInput.Text = '255'
  1945. end
  1946. elseif val == "Text" then
  1947. BlueInput.Text = ""
  1948. end
  1949. updatez()
  1950. end)
  1951. TransInput.Changed:connect(function(val)
  1952. if val == "Text" and tonumber(TransInput.Text) then
  1953. TransInput.Text = tostring(tonumber(TransInput.Text))
  1954. if tonumber(TransInput.Text) > 100 then
  1955. TransInput.Text = '100'
  1956. end
  1957. elseif val == "Text" then
  1958. TransInput.Text = ""
  1959. end
  1960. updatez()
  1961. end)
  1962.  
  1963. Close.MouseButton1Click:connect(function()
  1964. if lerpz == false then
  1965. lerpz = true
  1966. if Close.Text ~= "+" then
  1967. CustomizeGui:TweenPosition(UDim2.new(-0.45,0,0.5,0,Enum.EasingDirection.Out,Enum.EasingStyle.Quint,2))
  1968. for i=1,10 do
  1969. Close.TextTransparency = i/10
  1970. Close.TextStrokeTransparency = i/10
  1971. wait(0.01)
  1972. end
  1973. Close.Text = "+"
  1974. for i=1,10 do
  1975. Close.TextTransparency = (10-i+1)/10
  1976. Close.TextStrokeTransparency = (10-i+1)/10
  1977. wait(0.01)
  1978. end
  1979. lerpz = false
  1980. else
  1981. CustomizeGui:TweenPosition(UDim2.new(0,0,0.5,0,Enum.EasingDirection.Out,Enum.EasingStyle.Quint,2))
  1982. for i=1,10 do
  1983. Close.TextTransparency = i/10
  1984. Close.TextStrokeTransparency = i/10
  1985. wait(0.01)
  1986. end
  1987. Close.Text = "X"
  1988. for i=1,10 do
  1989. Close.TextTransparency = (10-i+1)/10
  1990. Close.TextStrokeTransparency = (10-i+1)/10
  1991. wait(0.01)
  1992. end
  1993. lerpz = false
  1994. end
  1995. end
  1996. end)
  1997.  
  1998. MusicOption.MouseButton1Click:connect(function()
  1999. if canbackgroundmusic == true then
  2000. canbackgroundmusic = false
  2001. MusicOption.BackgroundColor3 = Color3.new(1, 0, 0)
  2002. else
  2003. canbackgroundmusic = true
  2004. MusicOption.BackgroundColor3 = Color3.new(0, 1, 0)
  2005. end
  2006. end)
  2007.  
  2008. ScreenOption.MouseButton1Click:connect(function()
  2009. if cancolorfilter == true then
  2010. cancolorfilter = false
  2011. ScreenOption.BackgroundColor3 = Color3.new(1, 0, 0)
  2012. else
  2013. cancolorfilter = true
  2014. ScreenOption.BackgroundColor3 = Color3.new(0, 1, 0)
  2015. end
  2016. end)
  2017.  
  2018. function equip()
  2019. local doit = coroutine.wrap(function()
  2020. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') then
  2021. acting = true
  2022. local arm = me["Right Arm"]
  2023. local arm2 = me["Left Arm"]
  2024. local tors = me.Torso
  2025. local weld = Instance.new('Weld',arm)
  2026. weld.Part0 = arm
  2027. weld.Part1 = tors
  2028. weld.C0 = CFrame.new(-1.5,0,0)
  2029. local weld2 = Instance.new("Weld", arm2)
  2030. weld2.Part0 = arm2
  2031. weld2.Part1 = tors
  2032. weld2.C0 = CFrame.new(1.5, 0, 0)
  2033. wait(0.001)
  2034. for i = 0,1,0.1 do
  2035. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  2036. weld.C0 = weld.C0:lerp(CFrame.new(-0.2,0.2,-0.5)*CFrame.Angles(0,-3.1,0.9),i)
  2037. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0.6, 0) * CFrame.Angles(0,0,0.5),i)
  2038. wait(0.001)
  2039. end
  2040. wait(0.15)
  2041. trail.Enabled = true
  2042. for i = 0,1,0.1 do
  2043. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  2044. weld.C0 = weld.C0:lerp(CFrame.new(-0.5,2,0)*CFrame.Angles(0,0,-1.55),i)
  2045. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0, 0), i)
  2046. wait(0.001)
  2047. end
  2048. trail.Enabled = false
  2049. wait(0.2)
  2050. for i = 0,1,0.1 do
  2051. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  2052. weld.C0 = weld.C0:lerp(CFrame.new(-1.5,0,0),i)
  2053. wait(0.001)
  2054. end
  2055. weld:Destroy()
  2056. weld2:Remove()
  2057. if tors ~= nil then
  2058. rightshoulderz:Clone().Parent = me.Torso
  2059. leftshoulderz:Clone().Parent = me.Torso
  2060. end
  2061. end
  2062. acting = false
  2063. end)
  2064. doit()
  2065. end
  2066.  
  2067. function kysnigga()
  2068. if kyssing == true then return end
  2069. kyssing = true
  2070. acting = true
  2071. decearingTHING = math.random(1, 100)
  2072. if decearingTHING == 4 then
  2073. decearingEGG = Instance.new("Sound", me.Torso)
  2074. decearingEGG.SoundId = "rbxassetid://138084557"
  2075. decearingEGG.PlaybackSpeed = math.random(10, 12) / 10
  2076. decearingEGG.TimePosition = 0.2
  2077. decearingEGG:Play()
  2078. end
  2079. me.Humanoid.WalkSpeed = 0
  2080. me.Humanoid.JumpPower = 0
  2081.  
  2082. local rightarm = Instance.new("Weld", me.Torso)
  2083. rightarm.Part0 = me.Torso
  2084. rightarm.Part1 = me["Right Arm"]
  2085. rightarm.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(1.5, 0, 0)
  2086.  
  2087. local leftarm = Instance.new("Weld", me.Torso)
  2088. leftarm.Part0 = me.Torso
  2089. leftarm.Part1 = me["Left Arm"]
  2090. leftarm.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-1.5, 0, 0)
  2091.  
  2092. local tors = Instance.new("Weld", me.HumanoidRootPart)
  2093. tors.Part0 = me.HumanoidRootPart
  2094. tors.Part1 = me.Torso
  2095. tors.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0, 0, 0)
  2096.  
  2097. local rightleg = Instance.new("Weld", me.Torso)
  2098. rightleg.Part0 = me.Torso
  2099. rightleg.Part1 = me["Right Leg"]
  2100. rightleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0.5, -2, 0)
  2101.  
  2102. local leftleg = Instance.new("Weld", me.Torso)
  2103. leftleg.Part0 = me.Torso
  2104. leftleg.Part1 = me["Left Leg"]
  2105. leftleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-0.5, -2, 0)
  2106.  
  2107. for i = 0, 1, 0.03 do
  2108. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-10), 0, 0), i)
  2109. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, 0), i)
  2110. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, 0), i)
  2111. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), i)
  2112. wait()
  2113. end
  2114. for i = 0, 1, 0.03 do
  2115. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(5), 0, 0), i)
  2116. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, 0.15) * CFrame.Angles(math.rad(-95), 0, 0), i)
  2117. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, 0.15) * CFrame.Angles(math.rad(-95), 0, 0), i)
  2118. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1, 0.3, -1.5) * CFrame.Angles(math.rad(90), 0, math.rad(-35)), i)
  2119. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1, 0.3, -1.5) * CFrame.Angles(math.rad(90), 0, math.rad(35)), i)
  2120. knifeweld.C1 = knifeweld.C1:lerp(CFrame.new(1.35, 0, 1) * CFrame.Angles(1.55, math.rad(-180), 1), i)
  2121. wait()
  2122. end
  2123. local bleedzer = Instance.new('Part',me.Torso)
  2124. bleedzer.CFrame = me.Torso.CFrame
  2125. bleedzer.Size = Vector3.new(0.1,0.1,0.1)
  2126. bleedzer.Transparency = 1
  2127. bleedzer.CanCollide = false
  2128. local weld = Instance.new('Weld',bleedzer)
  2129. weld.Part0 = bleedzer
  2130. weld.Part1 = me.Torso
  2131. weld.C0= CFrame.new(0,0,0)*CFrame.Angles(math.rad(-90),0,0)
  2132. local woodpekker = coroutine.wrap(function()
  2133. bleed(bleedzer)
  2134. end)
  2135. woodpekker()
  2136. audio.SoundId = "rbxassetid://199977936"
  2137. audio.PlaybackSpeed = 1.5
  2138. audio:Play()
  2139. audio2.SoundId = "rbxassetid://220834019"
  2140. audio2.PlaybackSpeed = 1
  2141. audio2.TimePosition = 0.1
  2142. audio2:Play()
  2143. for i = 0, 1, 0.1 do
  2144. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-20), 0, 0), i)
  2145. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  2146. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  2147. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1, 0, 0) * CFrame.Angles(math.rad(70), 0, math.rad(-35)), i)
  2148. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1, 0, 0) * CFrame.Angles(math.rad(70), 0, math.rad(35)), i)
  2149. knifeweld.C1 = knifeweld.C1:lerp(CFrame.new(1.35, 0, 1) * CFrame.Angles(1.55, math.rad(-180), 1), i)
  2150. wait()
  2151. end
  2152. wait(1)
  2153. audio.SoundId = "rbxassetid://210943487"
  2154. audio.TimePosition = 0.2
  2155. audio.PlaybackSpeed = 0.75
  2156. audio:Play()
  2157. for i = 0, 1, 0.03 do
  2158. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-20), 0, 0), i)
  2159. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  2160. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  2161. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1, 0.3, -1.5) * CFrame.Angles(math.rad(70), 0, math.rad(-35)), i)
  2162. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1, 0.3, -1.5) * CFrame.Angles(math.rad(70), 0, math.rad(35)), i)
  2163. knifeweld.C1 = knifeweld.C1:lerp(CFrame.new(1.35, 0, 1) * CFrame.Angles(1.55, math.rad(-180), 1), i)
  2164. wait()
  2165. end
  2166. for i = 0, 1, 0.03 do
  2167. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 0, -0.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), i)
  2168. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1.5, 0, -0.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), i)
  2169. knifeweld.C1 = knifeweld.C1:lerp(CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0), i)
  2170. wait()
  2171. end
  2172. wait(0.24)
  2173. if me:FindFirstChildOfClass('Humanoid') then
  2174. me:FindFirstChildOfClass('Humanoid').Health = 0
  2175. end
  2176. wait(0.01)
  2177. killz(me,me.Torso.Name,nil,nil,true)
  2178.  
  2179. tors:Remove()
  2180. rightarm:Remove()
  2181. rightleg:Remove()
  2182. leftleg:Remove()
  2183. leftarm:Remove()
  2184. rightshoulderz:Clone().Parent = me.Torso
  2185. leftshoulderz:Clone().Parent = me.Torso
  2186. torsojoint:Clone().Parent = me.HumanoidRootPart
  2187. lefthipz:Clone().Parent = me.Torso
  2188. righthipz:Clone().Parent = me.Torso
  2189. me.Humanoid.JumpPower = 50
  2190. me.Humanoid.WalkSpeed = 16
  2191. acting = false
  2192. canClick = true
  2193. doing = false
  2194. hit = false
  2195. kyssing = false
  2196. if decearingTHING == 4 then
  2197. decearingEGG:Remove()
  2198. end
  2199. end
  2200.  
  2201. function bleedout()
  2202. local doit = coroutine.wrap(function()
  2203. local targe = grabbed
  2204. local p;
  2205. local num = 0
  2206. while targe and targe:FindFirstChildOfClass('Humanoid') and targe:FindFirstChildOfClass('Humanoid').Health > 0 and num < 11 do
  2207. if targe.Head:FindFirstChild('Died') then
  2208. tone = math.random(6, 12) / 10
  2209. targe.Head.Died.PlaybackSpeed = tone
  2210. targe.Head.Died:Play()
  2211. else
  2212. local deathsound = Instance.new('Sound',targe.Head)
  2213. deathsound.Name = "Died"
  2214. deathsound.SoundId = 'rbxasset://sounds/uuhhh.mp3'
  2215. deathsound.Volume = 0.65
  2216. deathsound.EmitterSize = 5
  2217. deathsound.MaxDistance = 150
  2218. tone = math.random(5, 15) / 10
  2219. targe.Head.Died.PlaybackSpeed = tone
  2220. targe.Head.Died:Play()
  2221. end
  2222. targe:FindFirstChildOfClass('Humanoid').Health = targe:FindFirstChildOfClass('Humanoid').Health - 7
  2223. num = num+1
  2224. p = game.Players:GetPlayerFromCharacter(targe);
  2225. wait(0.325)
  2226. end
  2227. targe:FindFirstChildOfClass('Humanoid').Health = 0
  2228. wait()
  2229. killz(targe,'Head',nil,nil,false,true)
  2230. gui_kill(p);
  2231. wait(2)
  2232. targe:Remove()
  2233. end)
  2234. doit()
  2235. end
  2236.  
  2237. function liedown()
  2238. local doit = coroutine.wrap(function()
  2239. local targe = grabbed
  2240. wait(2)
  2241. if targe and targe:FindFirstChildOfClass('Humanoid') then
  2242. targe:FindFirstChildOfClass('Humanoid').PlatformStand = false
  2243. end
  2244. end)
  2245. doit()
  2246. end
  2247.  
  2248. function grab()
  2249. local doit = coroutine.wrap(function()
  2250. acting = true
  2251. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed + 3
  2252. local arm = me["Right Arm"]
  2253. local tors = me.Torso
  2254. local arm2 = me["Left Arm"]
  2255. local humanroot = me.HumanoidRootPart
  2256. local weld2 = Instance.new('Weld',arm)
  2257. weld2.Part0 = arm
  2258. weld2.Part1 = tors
  2259. weld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  2260. local weld3 = Instance.new('Weld',arm2)
  2261. weld3.Part0 = arm2
  2262. weld3.Part1 = tors
  2263. weld3.C0 = CFrame.new(1.5,0,-0.3) * CFrame.Angles(0.3,0.1,0)
  2264. for i = 0,1,0.05 do
  2265. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or humanroot == nil then return end
  2266. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.2,1.3,0.4)*CFrame.Angles(0.5,0,-1.2),i)
  2267. weld3.C0 = weld3.C0:lerp(CFrame.new(1.2,1.3,0)*CFrame.Angles(0,0,1.2),i)
  2268. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), -1.55) * CFrame.new(0, 0.95, 0)
  2269. wait(0.01)
  2270. end
  2271. grabbing = true
  2272. trail.Enabled = true
  2273. for i = 0,1,0.10 do
  2274. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or humanroot == nil then return end
  2275. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-1.5, 0, -1.3), i)
  2276. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.5, 0, 1.1), i)
  2277. wait(0.01)
  2278. end
  2279. trail.Enabled = false
  2280. wait(0.5)
  2281. grabbing = false
  2282. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed - 3
  2283. if grabbed == nil then
  2284. for i = 0,1,0.1 do
  2285. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil then return end
  2286. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  2287. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0),i)
  2288. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0)
  2289. wait(0.001)
  2290. end
  2291. weld2:Destroy()
  2292. weld3:Destroy()
  2293. rightshoulderz:Clone().Parent = me.Torso
  2294. leftshoulderz:Clone().Parent = me.Torso
  2295. acting = false
  2296. canClick = true
  2297. end
  2298. end)
  2299. doit()
  2300. end
  2301.  
  2302. function kill()
  2303. for i, plr in pairs(game.Players:GetPlayers()) do
  2304. if plr ~= game.Players.LocalPlayer then
  2305. for i = 1, 10 do
  2306. game.ReplicatedStorage.meleeEvent:FireServer(plr)
  2307. end
  2308. end
  2309. end
  2310.  
  2311. targetweld3pt = grabbed:FindFirstChild("Right Arm")
  2312. local targetrightshoulder = rightshoulder
  2313. local targetleftshoulder = leftshoulder
  2314. local targetweld3 = Instance.new("Weld", targetweld3pt)
  2315. targetweld3.Part0 = grabbed.Torso
  2316. targetweld3.Part1 = targetweld3pt
  2317. targetweld3.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(1.5, 0, 0)
  2318.  
  2319. local doit = coroutine.wrap(function()
  2320. local arm = me["Right Arm"]
  2321. local tors = grabbed.Torso
  2322. local arm2 = me["Left Arm"]
  2323. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  2324. doing = true
  2325. local weld2 = arm:FindFirstChildOfClass('Weld')
  2326. local weld3 = arm2:FindFirstChildOfClass('Weld')
  2327. local humanroot = me.HumanoidRootPart
  2328.  
  2329. for i = 0,1,0.1 do
  2330. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  2331. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-1.9, 0, -1.4), i)
  2332. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 0.5, -0.5)* CFrame.Angles(-1.5, 0.4, 1.1), i)
  2333. wait(0.01)
  2334. end
  2335.  
  2336. audio:Stop()
  2337. audio.SoundId = "rbxassetid://517040733"
  2338. tone = math.random(1, 3)
  2339. if tone == 1 then audio.PlaybackSpeed = 0.8 audio.TimePosition = 0.3 end
  2340. if tone == 2 then audio.PlaybackSpeed = 1 audio.TimePosition = 0.1 end
  2341. if tone == 3 then audio.PlaybackSpeed = 1.2 audio.TimePosition = 0.2 end
  2342. audio:Play()
  2343.  
  2344. local bleedpart = Instance.new("Part", grabbed)
  2345. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  2346. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  2347. bleedpart.CanCollide = false
  2348. bleedpart.Position = grabbed.Head.Position + Vector3.new(0, 1, 0)
  2349. bleedpart.Transparency = 1
  2350.  
  2351. local bleedpartweld = Instance.new("Weld", grabbed.Torso)
  2352. bleedpartweld.Part0 = grabbed.Torso
  2353. bleedpartweld.Part1 = bleedpart
  2354. bleedpartweld.C0 = CFrame.Angles(-1, 0, -0.35) * CFrame.new(0, 1, 0.8)
  2355. local coru=coroutine.wrap(function()
  2356. bleed(bleedpart)
  2357. end)
  2358. coru()
  2359.  
  2360. local slightthrow = Instance.new("BodyThrust", grabbed.Torso)
  2361. slightthrow.Force = Vector3.new(0, 0, -2500)
  2362.  
  2363. local slightthrow2 = Instance.new("BodyAngularVelocity", grabbed.Torso)
  2364. slightthrow2.AngularVelocity = Vector3.new(0, -1000, 0)
  2365. slightthrow2.MaxTorque = Vector3.new(1000, 1000, 1000)
  2366.  
  2367. if grabbed:FindFirstChildOfClass('Humanoid') then
  2368. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = true
  2369. end
  2370.  
  2371. killz(grabbed,'Left Leg')
  2372. killz(grabbed,'Left Arm')
  2373. killz(grabbed,'Right Leg')
  2374. killz(grabbed,'Right Arm')
  2375.  
  2376. trail.Enabled = true
  2377.  
  2378. for i = 0,1,0.2 do
  2379. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  2380. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 1.7, -0.5)* CFrame.Angles(-0.25, 0, -1.4), i)
  2381. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1.6, -0.5)* CFrame.Angles(-1.5, -1, 1.1), i)
  2382. wait(0.01)
  2383. end
  2384.  
  2385. trail.Enabled = false
  2386.  
  2387. bleedout()
  2388.  
  2389. rightshoulderz:Clone().Parent = me.Torso
  2390. leftshoulderz:Clone().Parent = me.Torso
  2391. grabbed = nil
  2392.  
  2393. if humanroot:FindFirstChild('Holder') then
  2394. humanroot.Holder:Destroy()
  2395. end
  2396.  
  2397. wait(0.2)
  2398. slightthrow:Remove()
  2399. slightthrow2:Remove()
  2400. for i = 0,1,0.05 do
  2401. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  2402. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5, 0, 0)* CFrame.Angles(0, 0, 0), i)
  2403. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5, 0, 0)* CFrame.Angles(0, 0, 0), i)
  2404. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0)
  2405. wait(0.01)
  2406. end
  2407.  
  2408. weld2:Destroy()
  2409. weld3:Destroy()
  2410. targetweld = nil
  2411. targetweld2 = nil
  2412. targetweld3 = nil
  2413. rightshoulderz:Clone().Parent = me.Torso
  2414. leftshoulderz:Clone().Parent = me.Torso
  2415. acting = false
  2416. canClick = true
  2417. doing = false
  2418. end)
  2419. doit()
  2420. end
  2421.  
  2422. function finish()
  2423. if finishing == true then return end
  2424. finishing = true
  2425. acting = true
  2426. decearingTHING = math.random(1, 100)
  2427. if decearingTHING == 4 then
  2428. decearingEGG = Instance.new("Sound", me.Torso)
  2429. decearingEGG.SoundId = "rbxassetid://138084557"
  2430. decearingEGG.PlaybackSpeed = math.random(10, 12) / 10
  2431. decearingEGG.TimePosition = 0.2
  2432. decearingEGG:Play()
  2433. end
  2434. me.Humanoid.WalkSpeed = 0
  2435. me.Humanoid.JumpPower = 0
  2436.  
  2437. local rightarm = Instance.new("Weld", me.Torso)
  2438. rightarm.Part0 = me.Torso
  2439. rightarm.Part1 = me["Right Arm"]
  2440. rightarm.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(1.5, 0, 0)
  2441.  
  2442. local tors = Instance.new("Weld", me.HumanoidRootPart)
  2443. tors.Part0 = me.HumanoidRootPart
  2444. tors.Part1 = me.Torso
  2445. tors.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0, 0, 0)
  2446.  
  2447. local rightleg = Instance.new("Weld", me.Torso)
  2448. rightleg.Part0 = me.Torso
  2449. rightleg.Part1 = me["Right Leg"]
  2450. rightleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0.5, -2, 0)
  2451.  
  2452. local leftleg = Instance.new("Weld", me.Torso)
  2453. leftleg.Part0 = me.Torso
  2454. leftleg.Part1 = me["Left Leg"]
  2455. leftleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-0.5, -2, 0)
  2456.  
  2457. for i = 0, 1, 0.05 do
  2458. tors.C0 = tors.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(15), 0, 0), i)
  2459. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -2, 0.2) * CFrame.Angles(math.rad(-15), 0, 0), i)
  2460. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -2, 0.2) * CFrame.Angles(math.rad(-15), 0, 0), i)
  2461. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 1.9, 0) * CFrame.Angles(math.rad(179), math.rad(179), 0), i)
  2462. wait()
  2463. end
  2464. for i=1,finishnum do
  2465. local num1 = 0.5
  2466. local num2 = 0.5
  2467. local num3 = 0.25
  2468. if finishnum ~= 1 then
  2469. num3 = 0
  2470. end
  2471. trail.Enabled = true
  2472. for i = 0, 1, num1 do
  2473. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-60), 0, 0), i)
  2474. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1.5, 0) * CFrame.Angles(math.rad(0), 0, 0), i)
  2475. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -0.7, -1) * CFrame.Angles(math.rad(10), 0, 0), i)
  2476. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 1.9, -1) * CFrame.Angles(math.rad(160), math.rad(150), 0), i)
  2477. wait()
  2478. end
  2479. wait()
  2480. for i = 0, 1, num2 do
  2481. tors.C0 = tors.C0:lerp(CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-20), 0, 0), i)
  2482. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1.5, 0) * CFrame.Angles(math.rad(-30), 0, 0), i)
  2483. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -0.7, -1) * CFrame.Angles(math.rad(-20), 0, 0), i)
  2484. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 1.9, 0.2) * CFrame.Angles(math.rad(250), math.rad(180), 0), i)
  2485. wait()
  2486. end
  2487. trail.Enabled = false
  2488. wait(num3)
  2489. end
  2490. wait()
  2491. for i = 0, 1, 0.05 do
  2492. tors.C0 = tors.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), i)
  2493. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -2, 0) * CFrame.Angles(0, 0, 0), i)
  2494. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -2, 0) * CFrame.Angles(0, 0, 0), i)
  2495. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 0, 0) * CFrame.Angles(0, 0, 0), i)
  2496. wait()
  2497. end
  2498. tors:Remove()
  2499. rightarm:Remove()
  2500. rightleg:Remove()
  2501. leftleg:Remove()
  2502. rightshoulderz:Clone().Parent = me.Torso
  2503. leftshoulderz:Clone().Parent = me.Torso
  2504. torsojoint:Clone().Parent = me.HumanoidRootPart
  2505. lefthipz:Clone().Parent = me.Torso
  2506. righthipz:Clone().Parent = me.Torso
  2507. me.Humanoid.JumpPower = 50
  2508. me.Humanoid.WalkSpeed = 16
  2509. acting = false
  2510. canClick = true
  2511. doing = false
  2512. hit = false
  2513. finishing = false
  2514. if decearingTHING == 4 then
  2515. decearingEGG:Remove()
  2516. end
  2517. end
  2518.  
  2519. function throw()
  2520. if grabbed.Torso:FindFirstChild("TargetWeld") == nil or grabbed:FindFirstChildOfClass('Humanoid').Health <= 0 then return end
  2521. paralyzed = false
  2522. targetweld = grabbed.Torso.TargetWeld
  2523. local ree = grabbed:FindFirstChild("Left Arm")
  2524. targetweld2 =nil
  2525. if ree and ree:FindFirstChild("Weld") then
  2526. targetweld2 = ree.Weld
  2527. end
  2528.  
  2529. for i, v in pairs(grabbed:GetChildren()) do
  2530. if v.Name == "Part" then
  2531. v.CanCollide = true
  2532. end
  2533. end
  2534.  
  2535.  
  2536. local doit = coroutine.wrap(function()
  2537. local arm = me["Right Arm"]
  2538. local tors = grabbed.Torso
  2539. local arm2 = me["Left Arm"]
  2540. local targrightshoulder = rightshoulder
  2541.  
  2542. local targleftshoulder = leftshoulder
  2543. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  2544. doing = true
  2545. local weld2 = arm:FindFirstChildOfClass('Weld')
  2546. local weld3 = arm2:FindFirstChildOfClass('Weld')
  2547. local humanroot = me.HumanoidRootPart
  2548.  
  2549. for i = 0,1,0.2 do
  2550. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  2551. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 1.7, -0.5)* CFrame.Angles(-0.25, 1, -1.4), i)
  2552. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1.6, -0.5)* CFrame.Angles(-1.5, -1, 1.1), i)
  2553. targetweld.C0 = targetweld.C0:lerp(CFrame.new(0, 1.5, 0)*CFrame.Angles(0, 0, 0), i)
  2554. if targetweld2 then
  2555. targetweld2.C0 = targetweld2.C0:lerp(CFrame.new(-1.5, 0, 0)*CFrame.Angles(0, 0, 0), i)
  2556. end
  2557. wait(0.01)
  2558. end
  2559.  
  2560. audio:Stop()
  2561. audio.SoundId = "rbxassetid://536642316"
  2562. tone = math.random(1, 3)
  2563. if tone == 1 then audio.PlaybackSpeed = 0.8 audio.TimePosition = 0.08 end
  2564. if tone == 2 then audio.PlaybackSpeed = 1 audio.TimePosition = 0.1 end
  2565. if tone == 3 then audio.PlaybackSpeed = 1.2 audio.TimePosition = 0.12 end
  2566. audio:Play()
  2567.  
  2568. local slightthrow = Instance.new("BodyVelocity", grabbed.Torso)
  2569. slightthrow.Velocity = Vector3.new(0,20,0)+(me.Torso.CFrame.lookVector*20)
  2570. slightthrow.P = 5000
  2571. slightthrow.MaxForce = Vector3.new(9000001,9000001,9000001)
  2572. local point = grabbed.Torso.Position
  2573. local aaaaaa = grabbed
  2574. liedown()
  2575.  
  2576. rightshoulderz:Clone().Parent = me.Torso
  2577. leftshoulderz:Clone().Parent = me.Torso
  2578. grabbed = nil
  2579.  
  2580. if humanroot:FindFirstChild('Holder') then
  2581. humanroot.Holder:Destroy()
  2582. end
  2583. local coru = coroutine.wrap(function()
  2584. while aaaaaa and aaaaaa:FindFirstChild('Torso') and (aaaaaa.Torso.Position-point).magnitude < 5 do wait(0.001) end
  2585. slightthrow:Remove()
  2586. end)
  2587. coru()
  2588.  
  2589. for i = 0,1,0.05 do
  2590. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  2591. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  2592. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0),i)
  2593. wait(0.01)
  2594. end
  2595. weld2:Destroy()
  2596. weld3:Destroy()
  2597. targetweld:Remove()
  2598. if targetweld2 then
  2599. targetweld2:Remove()
  2600. end
  2601. if rightshoulder then
  2602. rightshoulder:Clone().Parent = tors
  2603. end
  2604. if leftshoulder then
  2605. leftshoulder:Clone().Parent = tors
  2606. end
  2607. headweld:Clone().Parent = tors
  2608. rightshoulderz:Clone().Parent = me.Torso
  2609. leftshoulderz:Clone().Parent = me.Torso
  2610. acting = false
  2611. canClick = true
  2612. doing = false
  2613. end)
  2614. doit()
  2615. end
  2616.  
  2617. cfn,ang,mr,int=CFrame.new,CFrame.Angles,math.rad,Instance.new
  2618. bc=BrickColor.new
  2619. local minimumsize = Vector3.new(0.7,0.7,0.7)
  2620. local surface_between_splitted_parts = 'SmoothNoOutlines'
  2621. local fragmentable = workspace
  2622. local list = {}
  2623. local brickcount = 0
  2624. local storage = {}
  2625. local fillup = 1000
  2626. local maximumstorage = 2000
  2627. local storage_position = Vector3.new(0,0,5000)
  2628. local stored_partsize = Vector3.new(1,1,1)
  2629. local parts_created_per_frame = 5
  2630.  
  2631. local minimumsize = Vector3.new(0.7,0.7,0.7)
  2632. local surface_between_splitted_parts = 'SmoothNoOutlines'
  2633. local fragmentable = workspace
  2634. local list = {}
  2635. local brickcount = 0
  2636. local storage = {}
  2637. local fillup = 1000
  2638. local maximumstorage = 2000
  2639. local storage_position = Vector3.new(0,0,5000)
  2640. local stored_partsize = Vector3.new(1,1,1)
  2641. local parts_created_per_frame = 5
  2642.  
  2643.  
  2644. function fragmentate(cframe,size,color,explosion_position,explosion_blastradius,backsurface,bottomsurface,frontsurface,leftsurface,rightsurface,topsurface,transparency,reflectance,material)
  2645. local xi = size.X >= minimumsize.X*(1+explosion_blastradius/16) and 2 or 1
  2646. local yi = size.Y >= minimumsize.Y*(1+explosion_blastradius/16) and 2 or 1
  2647. local zi = size.Z >= minimumsize.Z*(1+explosion_blastradius/16) and 2 or 1
  2648. if xi == 1 and yi == 1 and zi == 1 or (cframe.p-explosion_position).magnitude > size.magnitude/2 + explosion_blastradius then
  2649. if xi == 1 and yi == 1 and zi == 1 then return end
  2650. if #storage > 0 then
  2651. local p = storage[1]
  2652. p.BrickColor = color
  2653. p.Size = size
  2654. p.Anchored = false
  2655. p.BackSurface = backsurface
  2656. p.BottomSurface = bottomsurface
  2657. p.FrontSurface = frontsurface
  2658. p.LeftSurface = leftsurface
  2659. p.RightSurface = rightsurface
  2660. p.TopSurface = topsurface
  2661. p.Transparency = transparency
  2662. p.CFrame = cframe
  2663. p.Reflectance = reflectance
  2664. p.Material = material
  2665. game:GetService('Debris'):AddItem(p,30)
  2666. p:BreakJoints()
  2667. table.remove(storage,1)
  2668. else
  2669. local p = Instance.new("Part",fragmentable)
  2670. p.BrickColor = color
  2671. p.FormFactor = "Custom"
  2672. p.Size = size
  2673. p.BackSurface = backsurface
  2674. p.BottomSurface = bottomsurface
  2675. p.FrontSurface = frontsurface
  2676. p.LeftSurface = leftsurface
  2677. p.RightSurface = rightsurface
  2678. p.TopSurface = topsurface
  2679. p.Transparency = transparency
  2680. p.Material = material
  2681. if p.Transparency>0.285 then
  2682. p.Anchored = false
  2683. else
  2684. p.Anchored=false
  2685. p.Material='Wood'
  2686. game:GetService('Debris'):AddItem(p,10)
  2687. end
  2688. p.CFrame = cframe
  2689. p.Reflectance = reflectance
  2690. p:BreakJoints()
  2691. end
  2692. return
  2693. end
  2694. local mody = math.random(-125,125)/1000
  2695. for y = 1,yi do
  2696. if math.random()> 0.5 then
  2697. local modx = math.random(-125,125)/1000
  2698. for x = 1,xi do
  2699. local modz = math.random(-125,125)/1000
  2700. for z = 1,zi do --offset = x/xi-0.75+modx)
  2701. fragmentate(cframe*CFrame.new(size.X*(xi==1 and 0 or x/xi-0.75+modx),size.Y*(yi==1 and 0 or y/yi-0.75+mody),size.Z*(zi==1 and 0 or z/zi-0.75+modz)),
  2702. Vector3.new(xi == 2 and size.X*(1-2*math.abs(x/xi-0.75+modx)) or size.X,yi == 2 and size.Y*(1-2*math.abs(y/yi-0.75+mody)) or size.Y,
  2703. zi == 2 and size.Z*(1-2*math.abs(z/zi-0.75+modz)) or size.Z or mustardfoot_was_here),color,explosion_position,explosion_blastradius,
  2704. z~=zi and surface_between_splitted_parts or backsurface,y==2 and surface_between_splitted_parts or bottomsurface,
  2705. z==2 and surface_between_splitted_parts or frontsurface,x==2 and surface_between_splitted_parts or leftsurface,x~=xi and surface_between_splitted_parts or rightsurface,
  2706. y~=yi and surface_between_splitted_parts or topsurface,transparency,reflectance,material)
  2707. end
  2708.  
  2709. end
  2710. else
  2711. local modz = math.random(-125,125)/1000
  2712. for z = 1,zi do
  2713. local modx = math.random(-125,125)/1000
  2714. for x = 1,xi do
  2715. fragmentate(cframe*CFrame.new(size.X*(xi==1 and 0 or x/xi-0.75+modx),size.Y*(yi==1 and 0 or y/yi-0.75+mody),size.Z*(zi==1 and 0 or z/zi-0.75+modz)),
  2716. Vector3.new(xi == 2 and size.X*(1-2*math.abs(x/xi-0.75+modx)) or size.X,yi == 2 and size.Y*(1-2*math.abs(y/yi-0.75+mody)) or size.Y,
  2717. zi == 2 and size.Z*(1-2*math.abs(z/zi-0.75+modz)) or size.Z),color,explosion_position,explosion_blastradius,
  2718. z~=zi and surface_between_splitted_parts or backsurface,y==2 and surface_between_splitted_parts or bottomsurface,
  2719. z==2 and surface_between_splitted_parts or frontsurface,x==2 and surface_between_splitted_parts or leftsurface,x~=xi and surface_between_splitted_parts or rightsurface,
  2720. y~=yi and surface_between_splitted_parts or topsurface,transparency,reflectance,material)
  2721. end
  2722. end
  2723. end
  2724. end
  2725. end
  2726.  
  2727. function start_fragmentation(position,radius,nuh)
  2728. local search = Region3.new(position-Vector3.new(radius,radius,radius)*1.1,position+Vector3.new(radius,radius,radius)*1.1)
  2729. repeat
  2730. local finish = false
  2731. local parts = workspace:FindPartsInRegion3WithIgnoreList(search,list,100)
  2732. for i = 1,#parts do
  2733. table.insert(list,1,parts[i])
  2734. end
  2735. finish = true
  2736. until #parts < 100 and finish
  2737. local t = tick()
  2738. for i = 1,#list do
  2739. local p = list[i]
  2740. if p:IsA('UnionOperation') == false and p:IsA('CornerWedgePart') == false and p:IsA('TrussPart') == false and p:IsA('WedgePart') == false and p.Parent and p.Parent ~= obj1 and p.Parent.Name ~= "Projectile" and p:IsDescendantOf(fragmentable) and p:GetMass()<50000 and p.Transparency>0.285 and p.Name~='Base' and p.Parent:FindFirstChildOfClass('Humanoid') == nil and p.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil and p:IsDescendantOf(me)==false then
  2741. fragmentate(p.CFrame,p.Size,p.BrickColor,position,radius,p.BackSurface,p.BottomSurface,p.FrontSurface,p.LeftSurface,p.RightSurface,p.TopSurface,p.Transparency,p.Reflectance,p.Material)
  2742. if #storage < maximumstorage and p.Shape == "Block" then
  2743. p.Anchored = false
  2744. p.FormFactor = "Custom"
  2745. p.Size = stored_partsize
  2746. p.Position = storage_position
  2747. table.insert(storage,1,p)
  2748. else
  2749. p:Destroy()
  2750. end
  2751. end
  2752. if nuh == false and p.Parent and p.Parent ~= obj1 and p.Parent.Name ~= "Projectile" and p:IsDescendantOf(fragmentable) and p:GetMass()<53000 and p.Transparency<0.05 and p.Name~='Base' and tostring(p.Material)=='Enum.Material.Wood' and p:IsDescendantOf(me)==false then
  2753. fragmentate(p.CFrame,p.Size,p.BrickColor,position,radius,p.BackSurface,p.BottomSurface,p.FrontSurface,p.LeftSurface,p.RightSurface,p.TopSurface,p.Transparency,p.Reflectance,p.Material)
  2754. if #storage < maximumstorage and p.Shape == "Block" then
  2755. p.Anchored = false
  2756. p.Material='Wood'
  2757. p.FormFactor = "Custom"
  2758. p.Size = stored_partsize
  2759. p.Position = storage_position
  2760. table.insert(storage,1,p)
  2761. else
  2762. p:Destroy()
  2763. end
  2764. end
  2765. end
  2766. list = {}
  2767. end
  2768.  
  2769.  
  2770. function fling()
  2771. local doit = coroutine.wrap(function()
  2772. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') and me:FindFirstChild('HumanoidRootPart') then
  2773. acting = true
  2774. for i=1,finishnum do
  2775. local weld2 = Instance.new('Weld',me["Right Arm"])
  2776. weld2.Part0 = me["Right Arm"]
  2777. weld2.Part1 = me["Torso"]
  2778. weld2.C0 = CFrame.new(-1.5,0,0)
  2779. if finishnum == 1 then
  2780. for i = 0,1,0.05 do
  2781. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  2782. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0),i)
  2783. wait(0.01)
  2784. end
  2785. end
  2786. audio.SoundId = "rbxassetid://166083610"
  2787. audio.PlaybackSpeed = 1
  2788. audio.TimePosition = 0.1
  2789. audio:Play()
  2790. if finishnum == 1 then
  2791. for i = 0,1,0.5 do
  2792. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  2793. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0),i)
  2794. wait(0.001)
  2795. end
  2796. end
  2797. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  2798. local knofe = obj1:Clone()
  2799. for i, v in pairs(obj1:GetChildren()) do
  2800. if v:IsA('BasePart') then
  2801. v.Transparency = 1
  2802. end
  2803. end
  2804. knofe.Parent = workspace
  2805. knofe.Name = "Projectile"
  2806. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  2807. knofe:FindFirstChild("Trail", true).Enabled = true
  2808. local heck = Instance.new('BodyVelocity',knofe.Grab)
  2809. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*120
  2810. local coru = coroutine.wrap(function()
  2811. wait(0.45)
  2812. if heck then
  2813. heck:Destroy()
  2814. end
  2815. end)
  2816. coru()
  2817. local able = true
  2818. knofe["big ass knife"].Touched:connect(function(hit)
  2819. if hit.Parent and hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Transparency < 1 and knofe.Grab.CanCollide == false and hit.Parent ~= me and hit.Parent.Parent ~= me then
  2820. local thing = hit.Parent:FindFirstChildOfClass('Humanoid')
  2821. local ree = hit.Parent
  2822. if thing == nil then
  2823. ree = hit.Parent.Parent
  2824. end
  2825. if ree:FindFirstChildOfClass('Humanoid').Health > 0 then
  2826. knofe:FindFirstChild("Trail", true).Enabled = false
  2827. game:GetService('Debris'):AddItem(knofe,5)
  2828. tone = math.random(1, 3)
  2829. local sound = Instance.new('Sound',knofe.Grab)
  2830. if tone == 1 then sound.SoundId = "rbxassetid://220833967" end
  2831. if tone == 2 then sound.SoundId = "rbxassetid://220833976" end
  2832. if tone == 3 then sound.SoundId = "rbxassetid://220834000" end
  2833. sound.PlaybackSpeed = 1
  2834. sound:Play()
  2835. for i, v in pairs(knofe:GetChildren()) do
  2836. if v:IsA('BasePart') then
  2837. v.CanCollide = true
  2838. v.Anchored = true
  2839. end
  2840. end
  2841. hit.Anchored = true
  2842. if ree:FindFirstChildOfClass('Humanoid') and hit.Name == "Torso" or hit.Name == "Head" then
  2843. ree:FindFirstChildOfClass('Humanoid').Health = 0
  2844. end
  2845. wait()
  2846. killz(ree,hit.Name,knofe)
  2847. else
  2848. knofe:FindFirstChild("Trail", true).Enabled = false
  2849. heck.Velocity = Vector3.new(0,0,0)
  2850. heck:Destroy()
  2851. game:GetService('Debris'):AddItem(knofe,5)
  2852. tone = math.random(1, 3)
  2853. local sound = Instance.new('Sound',knofe.Grab)
  2854. if tone == 1 then sound.SoundId = "rbxassetid://220833967" end
  2855. if tone == 2 then sound.SoundId = "rbxassetid://220833976" end
  2856. if tone == 3 then sound.SoundId = "rbxassetid://220834000" end
  2857. sound.PlaybackSpeed = 1
  2858. sound:Play()
  2859. for i, v in pairs(knofe:GetChildren()) do
  2860. if v:IsA('BasePart') then
  2861. v.Anchored = false
  2862. end
  2863. end
  2864. hit.Anchored = true
  2865. wait(0.001)
  2866. hit.Anchored = false
  2867. for i, v in pairs(knofe:GetChildren()) do
  2868. if v:IsA('BasePart') then
  2869. v.Anchored = false
  2870. end
  2871. end
  2872. if knofe then
  2873. local coru = coroutine.wrap(function()
  2874. if hit then
  2875. local uno = Instance.new('Part',workspace)
  2876. local dos = Instance.new('Part',workspace)
  2877. uno.CFrame = hit.CFrame
  2878. dos.CFrame = knofe["big ass knife"].CFrame
  2879. local weld = Instance.new('Weld',knofe["big ass knife"])
  2880. weld.Part0 = hit
  2881. weld.Part1 = knofe["big ass knife"]
  2882. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  2883. uno:Destroy()
  2884. dos:Destroy()
  2885. end
  2886. end)
  2887. coru()
  2888. end
  2889. end
  2890. elseif hit.Parent and hit.Parent ~= me and hit.Parent.Parent ~= me and hit.CanCollide and knofe.Grab.CanCollide == false then
  2891. if hit.Transparency and (hit.Transparency<=0.285 or hit:GetMass()<=3000) then
  2892. knofe:FindFirstChild("Trail", true).Enabled = false
  2893. local sound = Instance.new('Sound',knofe.Grab)
  2894. sound.SoundId = 'rbxassetid://267585646'
  2895. sound:Play()
  2896. for i,v in pairs(knofe:GetChildren()) do
  2897. if v:IsA('BasePart') then
  2898. v.Anchored = true
  2899. end
  2900. end
  2901. wait()
  2902. heck.Velocity = Vector3.new(0,0,0)
  2903. heck:Destroy()
  2904. local uno = Instance.new('Part',workspace)
  2905. local dos = Instance.new('Part',workspace)
  2906. uno.CFrame = hit.CFrame
  2907. dos.CFrame = knofe["big ass knife"].CFrame
  2908. local weld = Instance.new('Weld',knofe["big ass knife"])
  2909. weld.Part0 = hit
  2910. weld.Part1 = knofe["big ass knife"]
  2911. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  2912. uno:Destroy()
  2913. dos:Destroy()
  2914. for i,v in pairs(knofe:GetChildren()) do
  2915. if v:IsA('BasePart') then
  2916. v.Anchored = false
  2917. end
  2918. end
  2919. game:GetService('Debris'):AddItem(knofe,5)
  2920. for i,v in pairs(knofe:GetChildren()) do
  2921. if v:IsA('BasePart') then
  2922. v.CanCollide = true
  2923. end
  2924. end
  2925. end
  2926. if hit.Parent and hit.Transparency>0.285 and able == true and hit:GetMass()<3000 and hit.Parent:FindFirstChildOfClass('Humanoid') == nil and (hit.Parent.Parent == nil or hit.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil) then
  2927. knofe:FindFirstChild("Trail", true).Enabled = false
  2928. able = false
  2929. local sound = Instance.new('Sound',knofe.Grab)
  2930. sound.SoundId = 'rbxassetid://144884907'
  2931. sound:Play()
  2932. local coru = coroutine.wrap(function()
  2933. start_fragmentation(knofe["big ass knife"].Position,1.25,knofe)
  2934. end)
  2935. coru()
  2936. end
  2937. end
  2938. end)
  2939. if finishnum == 1 then
  2940. for i= 0,1,0.1 do
  2941. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  2942. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  2943. wait(0.001)
  2944. end
  2945. else
  2946. for i= 0,1,0.5 do
  2947. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  2948. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  2949. wait(0.001)
  2950. end
  2951. end
  2952. for i,v in pairs(obj1:GetChildren()) do
  2953. if v:IsA('BasePart') then
  2954. v.Transparency = 0
  2955. end
  2956. end
  2957. weld2:Destroy()
  2958. rightshoulderz:Clone().Parent = me.Torso
  2959. end
  2960. acting = false
  2961. canClick = true
  2962. end
  2963. end)
  2964. doit()
  2965. end
  2966.  
  2967. function instasplode()
  2968. local coru = coroutine.wrap(function()
  2969. acting = true
  2970. for i=1,1 do
  2971. local weld2 = Instance.new('Weld',me["Right Arm"])
  2972. weld2.Part0 = me["Right Arm"]
  2973. weld2.Part1 = me["Torso"]
  2974. weld2.C0 = CFrame.new(-1.5,0,0)
  2975. if finishnum == 1 then
  2976. for i = 0,1,0.05 do
  2977. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  2978. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0),i)
  2979. wait(0.01)
  2980. end
  2981. end
  2982. weld2.C0 = CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0)
  2983. audio.SoundId = "rbxassetid://166083610"
  2984. audio.PlaybackSpeed = 1
  2985. audio.TimePosition = 0.1
  2986. audio:Play()
  2987. if finishnum == 1 then
  2988. for i = 0,1,0.5 do
  2989. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  2990. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0),i)
  2991. wait(0.001)
  2992. end
  2993. end
  2994. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  2995. local knofe = obj1:Clone()
  2996. for i,v in pairs(obj1:GetChildren()) do
  2997. if v:IsA('BasePart') then
  2998. v.Transparency = 1
  2999. end
  3000. end
  3001. knofe.Parent = workspace
  3002. knofe.Name = "Projectile"
  3003. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  3004. knofe:FindFirstChild("Trail", true).Enabled = false
  3005. fireofjesUS = Instance.new("Fire", knofe.Grab)
  3006. local heck = Instance.new('BodyVelocity',knofe.Grab)
  3007. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*120
  3008. local coru = coroutine.wrap(function()
  3009. wait(0.45)
  3010. if heck then
  3011. heck:Destroy()
  3012. end
  3013. end)
  3014. coru()
  3015. knofe["big ass knife"].Touched:connect(function(hit)
  3016. if hit.Parent ~= me and hit.Parent.Parent ~= me and hit.Transparency < 1 and knofe.Grab.CanCollide == false then
  3017. heck.Velocity = Vector3.new(0,0,0)
  3018. heck:Destroy()
  3019. for i,v in pairs(knofe:GetChildren()) do
  3020. if v:IsA('BasePart') then
  3021. v.CanCollide = true
  3022. end
  3023. end
  3024. local hum = hit.Parent:FindFirstChildOfClass('Humanoid')
  3025. if hum == nil then
  3026. hum = hit.Parent.Parent:FindFirstChildOfClass('Humanoid')
  3027. end
  3028. if knofe then
  3029. local coru = coroutine.wrap(function()
  3030. if hit then
  3031. local uno = Instance.new('Part',workspace)
  3032. local dos = Instance.new('Part',workspace)
  3033. uno.CFrame = hit.CFrame
  3034. dos.CFrame = knofe["big ass knife"].CFrame
  3035. local weld = Instance.new('Weld',knofe["big ass knife"])
  3036. weld.Part0 = hit
  3037. weld.Part1 = knofe["big ass knife"]
  3038. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  3039. uno:Destroy()
  3040. dos:Destroy()
  3041. end
  3042. end)
  3043. coru()
  3044. end
  3045. local sound = Instance.new('Sound',knofe.Grab)
  3046. sound.Name = "BOOM"
  3047. sound.EmitterSize = 25
  3048. sound.SoundId = 'rbxassetid://476477344'
  3049. sound.Volume = 0.5
  3050. sound:Play()
  3051. local exppart = Instance.new("Part", game.Workspace)
  3052. exppart.Size = Vector3.new(0.2, 0.2, 0.2)
  3053. exppart.Anchored = true
  3054. exppart.CanCollide = false
  3055. exppart.CFrame = CFrame.new(knofe.Grab.CFrame.p)
  3056. exppart.Transparency = 1
  3057. local expaccent = Instance.new("ParticleEmitter", exppart)
  3058. expaccent.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 0)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 0, 0))})
  3059. expaccent.LightEmission = 0.2
  3060. expaccent.LightInfluence = 0.3
  3061. expaccent.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 0)})
  3062. expaccent.Acceleration = Vector3.new(0, 30, 0)
  3063. expaccent.Drag = 15
  3064. expaccent.LockedToPart = false
  3065. expaccent.Lifetime = NumberRange.new(0.5, 1.5)
  3066. expaccent.Rate = 2000
  3067. expaccent.Speed = NumberRange.new(0,0)
  3068. expaccent.SpreadAngle = Vector2.new(360, 360)
  3069. expaccent:Clone().Parent = exppart
  3070. expaccent:Clone().Parent = exppart
  3071. local exp = Instance.new('Explosion',game.Workspace)
  3072. exp.Position = knofe["big ass knife"].Position
  3073. exp.ExplosionType = Enum.ExplosionType.NoCraters
  3074. exp.BlastRadius = 5
  3075. exp.Visible = false
  3076. exp.BlastPressure = 0
  3077. exp.DestroyJointRadiusPercent = 0
  3078. exp.Hit:connect(function(hit)
  3079. if hit.Parent and hit.Parent ~= me and hit.Parent.Name ~= "bitch ass knife" then
  3080. wait(0.001)
  3081. tgt = hit
  3082. local coru=coroutine.wrap(function(tgtt)
  3083. local fireofgods = Instance.new("Fire", tgtt)
  3084. fireofgods.Size = 0
  3085. fireofgods.Heat = 0
  3086. local fireofgodsaccent = expaccent:Clone()
  3087. fireofgodsaccent.Parent = hit
  3088. fireofgodsaccent.Rate = 0
  3089. fireofgodsaccent.Speed = NumberRange.new(5, 50)
  3090. fireofgodsaccent.SpreadAngle = Vector2.new(45, 45)
  3091. fireofgodsaccent.Acceleration = Vector3.new(0, 20, 0)
  3092.  
  3093. while fireofgods.Size < 10 do
  3094. fireofgods.Size = fireofgods.Size + 0.1
  3095. fireofgods.Heat = fireofgods.Heat + 0.1
  3096. fireofgodsaccent.Rate = fireofgodsaccent.Rate + 1
  3097. wait()
  3098. end
  3099. if hit.Parent and hit.Parent:FindFirstChildOfClass('Humanoid') == nil and hit.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil then
  3100. hit:BreakJoints()
  3101. elseif hit.Parent and hit.Parent:IsA('Accessory') then
  3102. for i,v in pairs(hit:GetChildren()) do
  3103. if v:IsA('SpecialMesh') then
  3104. v.TextureId = ""
  3105. end
  3106. end
  3107. end
  3108. hit.BrickColor = BrickColor.new("Black")
  3109. for i,v in pairs(hit.Parent:GetChildren()) do
  3110. if v:IsA('Shirt') or v:IsA('Pants') then
  3111. v:Destroy()
  3112. end
  3113. end
  3114.  
  3115. while fireofgods.Size > 5 do
  3116. fireofgods.Size = fireofgods.Size - 0.1
  3117. fireofgods.Heat = fireofgods.Heat - 0.1
  3118. wait()
  3119. end
  3120. fireofgods:Destroy()
  3121. if hit.Parent then
  3122. if hit.Parent:FindFirstChildOfClass('Humanoid') == nil and hit.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil then
  3123. local p = hit
  3124. fragmentate(p.CFrame,p.Size,p.BrickColor,p.Position,0.01,p.BackSurface,p.BottomSurface,p.FrontSurface,p.LeftSurface,p.RightSurface,p.TopSurface,p.Transparency,p.Reflectance,p.Material)
  3125. hit:Remove()
  3126. elseif hit.Parent:FindFirstChildOfClass('Humanoid') ~= nil then
  3127. print(hit.Name)
  3128. if hit.Name == "Torso" or hit.Name == "Head" then
  3129. print('ohhh YAAAA')
  3130. hit.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  3131. end
  3132. wait()
  3133. killz(hit.Parent,hit.Name,nil,nil,false,false,true)
  3134. end
  3135. end
  3136. end)
  3137. coru(tgt)
  3138. end
  3139. end)
  3140. local explosionaccenttimeout = coroutine.wrap(function()
  3141. wait(0.2)
  3142. for i, exploodn in pairs(exppart:GetChildren()) do
  3143. exploodn.Enabled = false
  3144. end
  3145. wait(2)
  3146. for i, exploodn in pairs(exppart:GetChildren()) do
  3147. exploodn:Remove()
  3148. end
  3149. end)
  3150. explosionaccenttimeout()
  3151. for i,v in pairs(knofe:GetChildren()) do
  3152. if v:IsA('BasePart') then
  3153. v.Transparency = 1
  3154. end
  3155. end
  3156. exp.AncestryChanged:connect(function() knofe:Destroy() end)
  3157. coru()
  3158. end
  3159. end)
  3160. if finishnum == 1 then
  3161. for i= 0,1,0.1 do
  3162. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3163. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  3164. wait(0.001)
  3165. end
  3166. else
  3167. wait(0.1)
  3168. end
  3169. weld2.C0 = CFrame.new(-1.5,0,0)
  3170. for i,v in pairs(obj1:GetChildren()) do
  3171. if v:IsA('BasePart') then
  3172. v.Transparency = 0
  3173. end
  3174. end
  3175. weld2:Destroy()
  3176. rightshoulderz:Clone().Parent = me.Torso
  3177. end
  3178. acting = false
  3179. canClick = true
  3180. end)
  3181. coru()
  3182. end
  3183.  
  3184. function fireworkit()
  3185. local coru = coroutine.wrap(function()
  3186. acting = true
  3187. local ree = 1
  3188. if finishnum > 1 then
  3189. ree = 3
  3190. end
  3191. for i=1,ree do
  3192. local weld2 = Instance.new('Weld',me["Right Arm"])
  3193. weld2.Part0 = me["Right Arm"]
  3194. weld2.Part1 = me["Torso"]
  3195. weld2.C0 = CFrame.new(-1.5,0,0)
  3196. weld2.C0 = CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0)
  3197. audio.SoundId = "rbxassetid://166083610"
  3198. audio.PlaybackSpeed = 1
  3199. audio.TimePosition = 0.1
  3200. audio:Play()
  3201. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  3202. local knofe = obj1:Clone()
  3203. for i,v in pairs(obj1:GetChildren()) do
  3204. if v:IsA('BasePart') then
  3205. v.Transparency = 1
  3206. end
  3207. end
  3208. local sound = Instance.new('Sound',knofe.Grab)
  3209. sound.Volume = 0.25
  3210. sound.EmitterSize = 200
  3211. sound.MaxDistance = 300
  3212. sound.SoundId = 'rbxassetid://551051176'
  3213. sound:Play()
  3214. knofe.Parent = workspace
  3215. knofe.Name = "Projectile"
  3216. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  3217. local partic = Instance.new('ParticleEmitter',knofe.Grab)
  3218. partic.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Color3.new(1,0,0)),ColorSequenceKeypoint.new(0.4,Color3.fromRGB(255,125,0)),ColorSequenceKeypoint.new(0.8,Color3.new(1,1,0)),ColorSequenceKeypoint.new(1,Color3.new(1,1,1))})
  3219. partic.LightEmission = 0.5
  3220. partic.LightInfluence = 0
  3221. partic.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,0.5),NumberSequenceKeypoint.new(1,0.15)})
  3222. partic.Rotation = NumberRange.new(0,90)
  3223. partic.SpreadAngle = Vector2.new(5,5)
  3224. partic.Speed = NumberRange.new(20)
  3225. partic.Texture = 'rbxassetid://603193846'
  3226. partic.EmissionDirection = Enum.NormalId.Left
  3227. partic.Lifetime = NumberRange.new(0.5,1)
  3228. partic.Rate = 100
  3229. local heck = Instance.new('BodyVelocity',knofe.Grab)
  3230. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*240
  3231. knofe["big ass knife"].Touched:connect(function(hit)
  3232. sound:Destroy()
  3233. local sound2 = Instance.new('Sound',workspace)
  3234. sound2.SoundId = 'rbxassetid://138080762'
  3235. sound2:Play()
  3236. if heck then
  3237. heck:Destroy()
  3238. end
  3239. for i,v in pairs(knofe:GetChildren()) do
  3240. v.Anchored = true
  3241. end
  3242. partic.Enabled = false
  3243. local colorscheme = math.random(1,4)
  3244. --1 - red & orange
  3245. --2 - blue & pink
  3246. --3 - green & purple
  3247. --4 - blue, red, white
  3248. local colar1 = Color3.fromRGB(255,0,0)
  3249. local colar2 = Color3.fromRGB(255,125,0)
  3250. local colar3 = Color3.fromRGB(255,255,255)
  3251. if colorscheme == 2 then
  3252. colar1 = Color3.fromRGB(0,132,255)
  3253. colar2 = Color3.fromRGB(243,105,255)
  3254. elseif colorscheme == 3 then
  3255. colar1 = Color3.fromRGB(76,255,0)
  3256. colar2 = Color3.fromRGB(128,0,255)
  3257. elseif colorscheme == 4 then
  3258. colar2 = Color3.fromRGB(0,132,255)
  3259. end
  3260. local partic2 = Instance.new('ParticleEmitter',knofe.Grab)
  3261. partic2.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,colar1),ColorSequenceKeypoint.new(1,colar1)})
  3262. partic2.LightEmission = 0.5
  3263. partic2.LightInfluence = 0
  3264. partic2.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,0.5),NumberSequenceKeypoint.new(1,0.1)})
  3265. partic2.Rotation = NumberRange.new(0,90)
  3266. partic2.SpreadAngle = Vector2.new(180,180)
  3267. partic2.Speed = NumberRange.new(20)
  3268. partic2.Texture = 'rbxassetid://603193846'
  3269. partic2.EmissionDirection = Enum.NormalId.Right
  3270. partic2.Lifetime = NumberRange.new(2,2.5)
  3271. partic2.Rate = 1000
  3272. partic2.Drag = 1
  3273. local partic3 = partic2:Clone()
  3274. partic3.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,colar2),ColorSequenceKeypoint.new(1,colar2)})
  3275. partic3.Parent = knofe.Grab
  3276. if colorscheme == 4 then
  3277. local partic4 = partic2:Clone()
  3278. partic4.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,colar3),ColorSequenceKeypoint.new(1,colar3)})
  3279. partic4.Parent = knofe.Grab
  3280. end
  3281. wait(1)
  3282. for i,v in pairs(knofe.Grab:GetChildren()) do
  3283. if v:IsA('ParticleEmitter') then
  3284. v.Enabled = false
  3285. end
  3286. end
  3287. sound:Destroy()
  3288. wait(2)
  3289. knofe:Destroy()
  3290. end)
  3291. wait(0.1)
  3292. weld2.C0 = CFrame.new(-1.5,0,0)
  3293. for i,v in pairs(obj1:GetChildren()) do
  3294. if v:IsA('BasePart') then
  3295. v.Transparency = 0
  3296. end
  3297. end
  3298. weld2:Destroy()
  3299. rightshoulderz:Clone().Parent = me.Torso
  3300. end
  3301. acting = false
  3302. canClick = true
  3303. end)
  3304. coru()
  3305. end
  3306.  
  3307. function paralyze()
  3308. local coru = coroutine.wrap(function()
  3309. if paralyzed == true then return end
  3310. paralyzed = true
  3311. local arm = me["Right Arm"]
  3312. local tors = grabbed.Torso
  3313. local arm2 = me["Left Arm"]
  3314. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  3315. doing = true
  3316. local weld2 = arm:FindFirstChildOfClass('Weld')
  3317. local weld3 = arm2:FindFirstChildOfClass('Weld')
  3318. local humanroot = me.HumanoidRootPart
  3319. for i = 0,1,0.075 do
  3320. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-2, 0, -1.5), i)
  3321. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.4, 0, 1.1), i)
  3322. wait(0.01)
  3323. end
  3324. for i = 0,1,0.30 do
  3325. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-0.75, 0, -1.75), i)
  3326. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.4, 0, 1.1), i)
  3327. wait(0.01)
  3328. end
  3329. killz(grabbed,'Left Leg')
  3330. killz(grabbed,'Left Arm')
  3331. killz(grabbed,'Right Leg')
  3332. killz(grabbed,'Right Arm')
  3333.  
  3334. for i, v in pairs(grabbed:GetChildren()) do
  3335. if v.Name == "Part" then
  3336. v.CanCollide = false
  3337. end
  3338. end
  3339.  
  3340. audio:Stop()
  3341. audio.SoundId = "rbxassetid://2801263"
  3342. tone = math.random(1, 3)
  3343. if tone == 1 then audio.PlaybackSpeed = 0.8 audio.TimePosition = 0 end
  3344. if tone == 2 then audio.PlaybackSpeed = 1 audio.TimePosition = 0 end
  3345. if tone == 3 then audio.PlaybackSpeed = 1.2 audio.TimePosition = 0 end
  3346. audio:Play()
  3347.  
  3348. local bleedpart = Instance.new("Part", grabbed)
  3349. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  3350. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  3351. bleedpart.CanCollide = false
  3352. bleedpart.Position = grabbed.Head.Position + Vector3.new(0, 1, 0)
  3353. bleedpart.Transparency = 1
  3354.  
  3355. local bleedpartweld = Instance.new("Weld", grabbed.Torso)
  3356. bleedpartweld.Part0 = grabbed.Torso
  3357. bleedpartweld.Part1 = bleedpart
  3358. bleedpartweld.C0 = CFrame.Angles(-1, 0, -0.35) * CFrame.new(0, 1, 0.8)
  3359. local cuntruu=coroutine.wrap(function()
  3360. bleed(bleedpart)
  3361. end)
  3362. local thicc = coroutine.wrap(function()
  3363. wait(3)
  3364. bleedpart:Remove()
  3365. end)
  3366. cuntruu()
  3367. thicc()
  3368.  
  3369. for i = 0,1,0.075 do
  3370. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-1.5, 0, -1.3), i)
  3371. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.5, 0, 1.1), i)
  3372. wait(0.01)
  3373. end
  3374. acting = true
  3375. canClick = true
  3376. doing = false
  3377. end)
  3378. coru()
  3379. end
  3380.  
  3381. function explode()
  3382. local coru = coroutine.wrap(function()
  3383. acting = true
  3384. for i=1,finishnum do
  3385. local weld2 = Instance.new('Weld',me["Right Arm"])
  3386. weld2.Part0 = me["Right Arm"]
  3387. weld2.Part1 = me["Torso"]
  3388. weld2.C0 = CFrame.new(-1.5,0,0)
  3389. if finishnum == 1 then
  3390. for i = 0,1,0.05 do
  3391. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3392. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0),i)
  3393. wait(0.01)
  3394. end
  3395. end
  3396. weld2.C0 = CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0)
  3397. audio.SoundId = "rbxassetid://166083610"
  3398. audio.PlaybackSpeed = 1
  3399. audio.TimePosition = 0.1
  3400. audio:Play()
  3401. if finishnum == 1 then
  3402. for i = 0,1,0.5 do
  3403. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3404. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0),i)
  3405. wait(0.001)
  3406. end
  3407. end
  3408. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  3409. local knofe = obj1:Clone()
  3410. for i,v in pairs(obj1:GetChildren()) do
  3411. if v:IsA('BasePart') then
  3412. v.Transparency = 1
  3413. end
  3414. end
  3415. knofe.Parent = workspace
  3416. knofe.Name = "Projectile"
  3417. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  3418. knofe:FindFirstChild("Trail", true).Enabled = false
  3419. local heck = Instance.new('BodyVelocity',knofe.Grab)
  3420. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*120
  3421. local coru = coroutine.wrap(function()
  3422. wait(0.45)
  3423. if heck then
  3424. heck:Destroy()
  3425. end
  3426. end)
  3427. coru()
  3428. knofe["big ass knife"].Touched:connect(function(hit)
  3429. if hit.Parent ~= me and hit.Parent.Parent ~= me and hit.Transparency < 1 and knofe.Grab.CanCollide == false then
  3430. heck.Velocity = Vector3.new(0,0,0)
  3431. heck:Destroy()
  3432. for i,v in pairs(knofe:GetChildren()) do
  3433. if v:IsA('BasePart') then
  3434. v.CanCollide = true
  3435. end
  3436. end
  3437. local hum = hit.Parent:FindFirstChildOfClass('Humanoid')
  3438. if hum == nil then
  3439. hum = hit.Parent.Parent:FindFirstChildOfClass('Humanoid')
  3440. end
  3441. if hum then
  3442. tone = math.random(1, 3)
  3443. local sound = Instance.new('Sound',knofe.Grab)
  3444. if tone == 1 then sound.SoundId = "rbxassetid://220833967" end
  3445. if tone == 2 then sound.SoundId = "rbxassetid://220833976" end
  3446. if tone == 3 then sound.SoundId = "rbxassetid://220834000" end
  3447. sound.PlaybackSpeed = 1
  3448. sound:Play()
  3449. else
  3450. local sound = Instance.new('Sound',knofe.Grab)
  3451. sound.SoundId = 'rbxassetid://267585646'
  3452. sound:Play()
  3453. end
  3454. if knofe then
  3455. local coru = coroutine.wrap(function()
  3456. if hit then
  3457. local uno = Instance.new('Part',workspace)
  3458. local dos = Instance.new('Part',workspace)
  3459. uno.CFrame = hit.CFrame
  3460. dos.CFrame = knofe["big ass knife"].CFrame
  3461. local weld = Instance.new('Weld',knofe["big ass knife"])
  3462. weld.Part0 = hit
  3463. weld.Part1 = knofe["big ass knife"]
  3464. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  3465. uno:Destroy()
  3466. dos:Destroy()
  3467. end
  3468. end)
  3469. coru()
  3470. end
  3471. local coru = coroutine.wrap(function()
  3472. for i=1,15,0.7 do
  3473. local sound = Instance.new('Sound',knofe.Grab)
  3474. if knofe then
  3475. if knofe.serration.BrickColor == BrickColor.new('Really red') then
  3476. for i, v in pairs(knofe:GetChildren()) do
  3477. if v.Name == "big ass knife" or v.Name == "serration" or v.Name == "knifetip1" or v.Name == "fricc" then
  3478. v.BrickColor = BrickColor.new('Lily white')
  3479. v.Material = Enum.Material.SmoothPlastic
  3480. end
  3481. end
  3482. else
  3483. for i,v in pairs(knofe:GetChildren()) do
  3484. if v.Name == "big ass knife" or v.Name == "serration" or v.Name == "knifetip1" or v.Name == "fricc" then
  3485. v.BrickColor = BrickColor.new('Really red')
  3486. v.Material = Enum.Material.Neon
  3487. sound.SoundId = 'rbxassetid://300473653'
  3488. sound.Volume = 0.75
  3489. sound.TimePosition = 0.05
  3490. sound.EmitterSize = 25
  3491. sound.PlaybackSpeed = 1
  3492. sound:Play()
  3493. end
  3494. end
  3495. end
  3496. wait(1/i)
  3497. sound:Destroy()
  3498. end
  3499. end
  3500. local sound = Instance.new('Sound',knofe.Grab)
  3501. sound.Name = "BOOM"
  3502. sound.EmitterSize = 25
  3503. sound.SoundId = 'rbxassetid://12222084'
  3504. sound.TimePosition = 0.1
  3505. sound.Volume = 0.5
  3506. sound:Play()
  3507. local exppart = Instance.new("Part", game.Workspace)
  3508. exppart.Size = Vector3.new(0.2, 0.2, 0.2)
  3509. exppart.Anchored = true
  3510. exppart.CanCollide = false
  3511. exppart.CFrame = CFrame.new(knofe.Grab.CFrame.p)
  3512. exppart.Transparency = 1
  3513. local expaccent = Instance.new("ParticleEmitter", exppart)
  3514. expaccent.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 0)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 0, 0))})
  3515. expaccent.LightEmission = 0.2
  3516. expaccent.LightInfluence = 0.3
  3517. expaccent.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 0)})
  3518. expaccent.Acceleration = Vector3.new(0, -8, 0)
  3519. expaccent.Drag = 15
  3520. expaccent.LockedToPart = true
  3521. expaccent.Lifetime = NumberRange.new(0.5, 1.5)
  3522. expaccent.Rate = 2000
  3523. expaccent.Speed = NumberRange.new(10, 150)
  3524. expaccent.SpreadAngle = Vector2.new(360, 360)
  3525.  
  3526. local exp = Instance.new('Explosion',game.Workspace)
  3527. exp.Position = knofe["big ass knife"].Position
  3528. exp.ExplosionType = Enum.ExplosionType.NoCraters
  3529. exp.BlastRadius = 10
  3530. exp.BlastPressure = 100000
  3531. exp.DestroyJointRadiusPercent = 1
  3532. exp.Hit:connect(function(hit)
  3533. if hit.Parent and hit.Parent ~= me and hit.Parent:FindFirstChildOfClass('Humanoid') then
  3534. if hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Name == "Torso" or hit.Name == "Head" then
  3535. hit.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  3536. end
  3537. wait(0.001)
  3538. local coru=coroutine.wrap(function()
  3539. killz(hit.Parent,'Head',knofe,exp)
  3540. end)
  3541. coru()
  3542. elseif hit.Parent and hit.Parent ~= workspace and hit.Parent ~= me then
  3543. if hit.Parent.Name ~= "Projectile" then
  3544. hit.Parent:BreakJoints()
  3545. end
  3546. elseif hit.Parent and hit.Parent ~= me then
  3547. hit:BreakJoints()
  3548. end
  3549. end)
  3550. local explosionaccenttimeout = coroutine.wrap(function()
  3551. wait(0.2)
  3552. expaccent.Enabled = false
  3553. wait(2)
  3554. exppart:Remove()
  3555. end)
  3556. explosionaccenttimeout()
  3557. for i,v in pairs(knofe:GetChildren()) do
  3558. if v:IsA('BasePart') then
  3559. v.Transparency = 1
  3560. end
  3561. end
  3562. exp.AncestryChanged:connect(function() knofe:Destroy() end)
  3563. end)
  3564. coru()
  3565. end
  3566. end)
  3567. if finishnum == 1 then
  3568. for i= 0,1,0.1 do
  3569. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3570. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  3571. wait(0.001)
  3572. end
  3573. else
  3574. wait(0.1)
  3575. end
  3576. weld2.C0 = CFrame.new(-1.5,0,0)
  3577. for i,v in pairs(obj1:GetChildren()) do
  3578. if v:IsA('BasePart') then
  3579. v.Transparency = 0
  3580. end
  3581. end
  3582. weld2:Destroy()
  3583. rightshoulderz:Clone().Parent = me.Torso
  3584. end
  3585. acting = false
  3586. canClick = true
  3587. end)
  3588. coru()
  3589. end
  3590.  
  3591. function release()
  3592. if grabbed.Torso:FindFirstChild("TargetWeld") == nil or grabbed:FindFirstChildOfClass('Humanoid').Health <= 0 then return end
  3593. targetweld = grabbed.Torso.TargetWeld
  3594. local ree= grabbed:FindFirstChild("Left Arm")
  3595. targetweld2 = nil
  3596. if ree and ree:FindFirstChild("Weld") then
  3597. targetweld2 = ree.Weld
  3598. end
  3599. for i, v in pairs(grabbed:GetChildren()) do
  3600. if v.Name == "Part" then
  3601. v.CanCollide = true
  3602. end
  3603. end
  3604. paralyzed = false
  3605. local doit = coroutine.wrap(function()
  3606. local arm = me["Right Arm"]
  3607. local tors = grabbed.Torso
  3608. local arm2 = me["Left Arm"]
  3609. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  3610. doing = true
  3611. local weld2 = arm:FindFirstChildOfClass('Weld')
  3612. local weld3 = arm2:FindFirstChildOfClass('Weld')
  3613. local humanroot = me.HumanoidRootPart
  3614.  
  3615. if grabbed:FindFirstChildOfClass('Humanoid') then
  3616. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = false
  3617. end
  3618.  
  3619. rightshoulderz:Clone().Parent = me.Torso
  3620. leftshoulderz:Clone().Parent = me.Torso
  3621. grabbed = nil
  3622.  
  3623. if humanroot:FindFirstChild('Holder') then
  3624. humanroot.Holder:Destroy()
  3625. end
  3626.  
  3627. for i = 0,1,0.1 do
  3628. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  3629. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  3630. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0),i)
  3631. targetweld.C0 = targetweld.C0:lerp(CFrame.new(0, 1.5, 0)*CFrame.Angles(0, 0, 0), i)
  3632. if targetweld2 then
  3633. targetweld2.C0 = targetweld2.C0:lerp(CFrame.new(-1.5, 0, 0)*CFrame.Angles(0, 0, 0), i)
  3634. end
  3635. wait(0.01)
  3636. end
  3637.  
  3638. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0.2)
  3639. weld2:Destroy()
  3640. weld3:Destroy()
  3641. targetweld:Remove()
  3642. if targetweld2 then
  3643. targetweld2:Remove()
  3644. end
  3645. if rightshoulder then
  3646. rightshoulder:Clone().Parent = tors
  3647. end
  3648. if leftshoulder then
  3649. leftshoulder:Clone().Parent = tors
  3650. end
  3651. headweld:Clone().Parent = tors
  3652. rightshoulderz:Clone().Parent = me.Torso
  3653. leftshoulderz:Clone().Parent = me.Torso
  3654. acting = false
  3655. canClick = true
  3656. doing = false
  3657. end)
  3658. doit()
  3659. end
  3660.  
  3661. function stabwithpassion()
  3662. local doit = coroutine.wrap(function()
  3663. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') and me:FindFirstChild('HumanoidRootPart') and me:FindFirstChild('Left Arm') then
  3664. acting = true
  3665. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed + 10
  3666. local arm = me["Right Arm"]
  3667. local tors = me.Torso
  3668. local arm2 = me["Left Arm"]
  3669. local humanroot = me.HumanoidRootPart
  3670. local weld = Instance.new('Weld',tors)
  3671. weld.Part0 = tors
  3672. weld.Part1 = humanroot
  3673. weld.C0 = CFrame.new(0,0,0) * CFrame.Angles(0, 0, 0)
  3674. local weld2 = Instance.new('Weld',arm)
  3675. weld2.Part0 = arm
  3676. weld2.Part1 = tors
  3677. weld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  3678. local weld3 = Instance.new('Weld',arm2)
  3679. weld3.Part0 = arm2
  3680. weld3.Part1 = tors
  3681. weld3.C0 = CFrame.new(1.5,0,-0.3) * CFrame.Angles(0.3,0.1,0)
  3682.  
  3683. for i = 0,1,0.15 do
  3684. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3685. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(20),0),i)
  3686. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.2,1.3,0.4)*CFrame.Angles(0.5,0,-1.2),i)
  3687. knifeweld.C1 = knifeweld.C1:lerp(CFrame.fromEulerAnglesXYZ(1.55, math.rad(90), -1.55) * CFrame.new(0, 0.95, 0), i)
  3688. wait(0.01)
  3689. end
  3690. wait(0.001)
  3691. trail.Enabled = true
  3692. stabbing = true
  3693. audio2.SoundId = 'rbxassetid://608537390'
  3694. audio2:Play()
  3695. for i = 0,1,0.2 do
  3696. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3697. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(-45),0),i)
  3698. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.6,0.8,-1)*CFrame.Angles(math.rad(-90),0,-1),i)
  3699. wait(0.01)
  3700. end
  3701. trail.Enabled = false
  3702. wait(0.1)
  3703. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed - 10
  3704. stabbing = false
  3705. wait(0.001)
  3706. for i = 0,1,0.075 do
  3707. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3708. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0,0),i)
  3709. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0)*CFrame.Angles(0,0,0),i)
  3710. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0)*CFrame.Angles(0,0,0),i)
  3711. knifeweld.C1 = knifeweld.C1:lerp(CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0), i)
  3712. wait(0.01)
  3713. end
  3714. weld:Destroy()
  3715. weld2:Destroy()
  3716. weld3:Destroy()
  3717. torsojoint:Clone().Parent = humanroot
  3718. rightshoulderz:Clone().Parent = me.Torso
  3719. leftshoulderz:Clone().Parent = me.Torso
  3720. canClick = true
  3721. hit = false
  3722. acting = false
  3723. end
  3724. end)
  3725. doit()
  3726. end
  3727.  
  3728. function stab()
  3729. local doit = coroutine.wrap(function()
  3730. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') and me:FindFirstChild('HumanoidRootPart') and me:FindFirstChild('Left Arm') then
  3731. acting = true
  3732. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed + 3
  3733. local arm = me["Right Arm"]
  3734. local tors = me.Torso
  3735. local arm2 = me["Left Arm"]
  3736. local humanroot = me.HumanoidRootPart
  3737. local weld = Instance.new('Weld',tors)
  3738. weld.Part0 = tors
  3739. weld.Part1 = humanroot
  3740. weld.C0 = CFrame.new(0,0,0) * CFrame.Angles(0, 0, 0)
  3741. local weld2 = Instance.new('Weld',arm)
  3742. weld2.Part0 = arm
  3743. weld2.Part1 = tors
  3744. weld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  3745. local weld3 = Instance.new('Weld',arm2)
  3746. weld3.Part0 = arm2
  3747. weld3.Part1 = tors
  3748. weld3.C0 = CFrame.new(1.5,0,-0.3) * CFrame.Angles(0.3,0.1,0)
  3749.  
  3750. for i = 0,1,0.1 do
  3751. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3752. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0.3,0),i)
  3753. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.2,1.3,0.4)*CFrame.Angles(0.5,0,-1.2),i)
  3754. wait(0.01)
  3755. end
  3756. wait(0.001)
  3757. trail.Enabled = true
  3758. stabbing = true
  3759. audio2.SoundId = 'rbxassetid://608537390'
  3760. audio2:Play()
  3761. for i = 0,1,0.25 do
  3762. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3763. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,-0.3,0),i)
  3764. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.6,0.8,0.5)*CFrame.Angles(-0.5,0,-0.5),i)
  3765. wait(0.01)
  3766. end
  3767. trail.Enabled = false
  3768. wait(0.1)
  3769. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed - 3
  3770. for i = 0,1,0.25 do
  3771. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3772. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0.3,0),i)
  3773. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.6,-0.3)*CFrame.Angles(0.5,0,-0.5),i)
  3774. wait(0.01)
  3775. end
  3776. stabbing = false
  3777. wait(0.001)
  3778. for i = 0,1,0.05 do
  3779. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3780. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0,0),i)
  3781. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0)*CFrame.Angles(0,0,0),i)
  3782. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0)*CFrame.Angles(0,0,0),i)
  3783. wait(0.01)
  3784. end
  3785. weld:Destroy()
  3786. weld2:Destroy()
  3787. weld3:Destroy()
  3788. torsojoint:Clone().Parent = humanroot
  3789. rightshoulderz:Clone().Parent = me.Torso
  3790. leftshoulderz:Clone().Parent = me.Torso
  3791. canClick = true
  3792. hit = false
  3793. acting = false
  3794.  
  3795. for i, plr in pairs(game.Players:GetChildren()) do
  3796. if plr.Name ~= game.Players.LocalPlayer.Name then
  3797. for i = 1, 10 do
  3798. game.ReplicatedStorage.meleeEvent:FireServer(plr)
  3799. end
  3800. end
  3801. end
  3802. end
  3803. end)
  3804. doit()
  3805. end
  3806. function hardrelease()
  3807. rightshoulderz:Clone().Parent = me.Torso
  3808. leftshoulderz:Clone().Parent = me.Torso
  3809. if me:FindFirstChild('Right Arm') then
  3810. for i,v in pairs(me["Right Arm"]:GetChildren()) do
  3811. if v:IsA('Weld') then
  3812. v:Destroy()
  3813. end
  3814. end
  3815. end
  3816. if me:FindFirstChild('Left Arm') then
  3817. for i,v in pairs(me["Left Arm"]:GetChildren()) do
  3818. if v:IsA('Weld') then
  3819. v:Destroy()
  3820. end
  3821. end
  3822. end
  3823. acting = false
  3824. canClick = true
  3825. doing = false
  3826. grabbed = nil
  3827. end
  3828. function unequip()
  3829. local doit = coroutine.wrap(function()
  3830. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') then
  3831. acting = true
  3832. local arm = me["Right Arm"]
  3833. local arm2 = me["Left Arm"]
  3834. local tors = me.Torso
  3835. local weld = Instance.new('Weld',arm)
  3836. weld.Part0 = arm
  3837. weld.Part1 = tors
  3838. weld.C0 = CFrame.new(-1.5,0,0)
  3839. local weld2 = Instance.new("Weld", arm2)
  3840. weld2.Part0 = arm2
  3841. weld2.Part1 = tors
  3842. weld2.C0 = CFrame.new(1.5, 0, 0)
  3843. wait(0.001)
  3844. trail.Enabled = true
  3845. for i = 0,1,0.1 do
  3846. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  3847. weld.C0 = weld.C0:lerp(CFrame.new(-0.2,0.2,-0.5)*CFrame.Angles(0,-3.1,0.9),i)
  3848. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0.6, 0) * CFrame.Angles(0,0,0.5),i)
  3849. wait(0.001)
  3850. end
  3851. trail.Enabled = false
  3852. wait(0.25)
  3853. for i = 0,1,0.1 do
  3854. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  3855. weld.C0 = weld.C0:lerp(CFrame.new(-1.5,0,0),i)
  3856. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0, 0), i)
  3857. wait(0.01)
  3858. end
  3859. weld:Destroy()
  3860. weld2:Remove()
  3861. if tors ~= nil then
  3862. rightshoulderz:Clone().Parent = me.Torso
  3863. leftshoulderz:Clone().Parent = me.Torso
  3864. end
  3865. acting = false
  3866. end
  3867. end)
  3868. doit()
  3869. end
  3870.  
  3871. mouse.KeyDown:connect(function(key)
  3872. if usable == true then
  3873. if key == "z" then
  3874. if active == false and acting == false then
  3875. active = true
  3876. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3877. notify("KNIFE EQUIPPED",false)
  3878. audio:Stop()
  3879. audio.SoundId = 'rbxassetid://608618332'
  3880. equip()
  3881. wait(0.6)
  3882. audio:Play()
  3883. knifeweld.Part0 = me["Right Arm"]
  3884. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0)
  3885. elseif acting == false then
  3886. active = false
  3887. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3888. audio:Stop()
  3889. audio.SoundId = 'rbxassetid://608538233'
  3890. unequip()
  3891. notify("KNIFE UNEQUIPPED",false)
  3892. wait(0.3)
  3893. audio:Play()
  3894. knifeweld.Part0 = me.Torso
  3895. knifeweld.C1 = CFrame.Angles(0,math.rad(90),0) * CFrame.new(1, 0.8, 0.55)
  3896. canClick = true
  3897. end
  3898. elseif key == "f" then
  3899. if mode == 'kill' or active == false then return end
  3900. mode = "kill"
  3901. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3902. notify("MODE || KILL || [F]",false)
  3903. elseif key == "e" then
  3904. if mode == 'throw' or active == false then return end
  3905. mode = "throw"
  3906. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3907. notify("MODE || PUSH || [E]",false)
  3908. elseif key == "q" then
  3909. if mode == 'release' or active == false then return end
  3910. mode = "release"
  3911. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3912. notify("MODE || RELEASE || [Q]",false)
  3913. elseif key == "x" then
  3914. if mode == 'stab' or active == false or acting == true then return end
  3915. mode = "stab"
  3916. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3917. notify("MODE || STAB || [X]",false)
  3918. elseif key == "c" then
  3919. if mode == 'fling' or active == false or acting == true then return end
  3920. mode = "fling"
  3921. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3922. notify("MODE || THROW || [C]",false)
  3923. elseif key == "b" then
  3924. if mode == 'instasplode' or active == false or acting == true then return end
  3925. mode = "instasplode"
  3926. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3927. notify("MODE || MOLOTOV || [B]",false)
  3928. elseif key == "r" then
  3929. if mode == 'paralyze' or active == false then return end
  3930. mode = "paralyze"
  3931. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3932. notify("MODE || PARALYZE || [R]",false)
  3933. elseif key == "v" then
  3934. if mode == 'explode' or active == false or acting == true then return end
  3935. mode = "explode"
  3936. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3937. notify("MODE || EXPLODE || [V]",false)
  3938. elseif key == "k" then
  3939. if mode == 'suicide' or active == false or acting == true then return end
  3940. mode = "suicide"
  3941. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3942. notify("MODE || SUICIDE || [K]",false)
  3943. elseif key == "h" then
  3944. if mode == 'firework' or active == false or acting == true then return end
  3945. mode = "firework"
  3946. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3947. notify("MODE || FIREWORK || [H]",false)
  3948. elseif key == "g" then
  3949. if mode == 'finish' or active == false then return end
  3950. mode = "finish"
  3951. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3952. local welp = "ON"
  3953. if finishnum == 1 then
  3954. welp = "OFF"
  3955. end
  3956. notify("MODE || FINISH || [G] || "..welp,false)
  3957. elseif key == "n" then
  3958. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3959. if zombiemode == false then
  3960. notify("ZOMBIE MODE ON || [N]",false)
  3961. zombiemode = true
  3962. else
  3963. notify("ZOMBIE MODE OFF || [N]",false)
  3964. zombiemode = false
  3965. end
  3966. elseif key == "m" then
  3967. if finishnum == 1 then
  3968. finishnum = 15
  3969. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3970. notify("PSYCHOPATH MODE ON || [M]",false)
  3971. if cancolorfilter then
  3972. local Sp00kyGui = Instance.new("ScreenGui")
  3973. local ImageLabel = Instance.new("ImageLabel")
  3974.  
  3975. -- Properties
  3976.  
  3977. Sp00kyGui.Parent = playergui
  3978. Sp00kyGui.Name = "REEEEEEEE"
  3979.  
  3980. ImageLabel.Parent = Sp00kyGui
  3981. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  3982. ImageLabel.BackgroundTransparency = 1
  3983. ImageLabel.Size = UDim2.new(1, 0, 1, 0)
  3984. ImageLabel.Image = "rbxassetid://74443700"
  3985. ImageLabel.ImageColor3 = Color3.new(1, 0, 0)
  3986. end
  3987. if canbackgroundmusic == true then
  3988. local sound = Instance.new('Sound',playergui)
  3989. sound.Name = 'PSYCHOPAAAATH'
  3990. sound.SoundId = 'rbxassetid://220875210'
  3991. sound.Looped = true
  3992. sound.Volume = 0.5
  3993. sound:Play()
  3994. end
  3995. else
  3996. finishnum = 1
  3997. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3998. notify("PSYCHOPATH MODE OFF || [M]",false)
  3999. for i,v in pairs(playergui:GetChildren()) do
  4000. if v.Name == "REEEEEEEE" then
  4001. v:Destroy()
  4002. end
  4003. end
  4004. local thisniggarighthere = playergui:FindFirstChild('PSYCHOPAAAATH')
  4005. if thisniggarighthere then thisniggarighthere:Destroy() end
  4006. end
  4007. end
  4008. end
  4009. end)
  4010.  
  4011. mouse.Button1Down:connect(function()
  4012. if active == false or usable == false then return end
  4013. if canClick == true and acting == false then
  4014. if mode == "stab" and finishnum == 1 then
  4015. canClick = false
  4016. stab()
  4017. elseif mode == "stab" and finishnum == 15 then
  4018. canClick = false
  4019. stabwithpassion()
  4020. elseif mode == "fling" then
  4021. canClick = false
  4022. fling()
  4023. elseif mode == "explode" then
  4024. canClick = false
  4025. explode()
  4026. elseif mode == "instasplode" then
  4027. canClick = false
  4028. instasplode()
  4029. elseif mode == "finish" then
  4030. canClick = false
  4031. finish()
  4032. elseif mode == "suicide" then
  4033. canClick = false
  4034. kysnigga()
  4035. elseif mode == "firework" then
  4036. canClick = false
  4037. fireworkit()
  4038. else
  4039. canClick = false
  4040. grab()
  4041. end
  4042. else
  4043. if grabbed ~= nil and doing == false then
  4044. if mode == "release" then
  4045. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4046. release()
  4047. else
  4048. hardrelease()
  4049. end
  4050. elseif mode == "kill" then
  4051. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4052. kill()
  4053. else
  4054. hardrelease()
  4055. end
  4056. elseif mode == "paralyze" then
  4057. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4058. paralyze()
  4059. else
  4060. hardrelease()
  4061. end
  4062. elseif mode == "throw" then
  4063. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4064. throw()
  4065. else
  4066. hardrelease()
  4067. end
  4068. elseif mode == "explode" then
  4069. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4070. throw()
  4071. else
  4072. hardrelease()
  4073. end
  4074. end
  4075. end
  4076. end
  4077. end)
  4078.  
  4079. knife.Touched:connect(function(hitz)
  4080. if hitz.Parent and hitz.Parent:FindFirstChildOfClass("Humanoid") and hitz.Parent:FindFirstChild('Torso') and acting == true then
  4081. if mode == "stab" and stabbing == true and hit == false then
  4082. hit = true
  4083. tone = math.random(1, 3)
  4084. audio:Stop()
  4085. if tone == 1 then audio.SoundId = "rbxassetid://220833967" end
  4086. if tone == 2 then audio.SoundId = "rbxassetid://220833976" end
  4087. if tone == 3 then audio.SoundId = "rbxassetid://220834000" end
  4088. audio.PlaybackSpeed = 1
  4089. audio:Play()
  4090. killz(hitz.Parent,'Left Leg')
  4091. killz(hitz.Parent,'Left Arm')
  4092. killz(hitz.Parent,'Right Leg')
  4093. killz(hitz.Parent,'Right Arm')
  4094. elseif mode == "finish" and finishing == true then
  4095. print('PSYCHOPATH MODE REEEEEEEEEEEEEEEE')
  4096. tone = math.random(1, 3)
  4097. audio:Stop()
  4098. if tone == 1 then audio.SoundId = "rbxassetid://220833967" end
  4099. if tone == 2 then audio.SoundId = "rbxassetid://220833976" end
  4100. if tone == 3 then audio.SoundId = "rbxassetid://220834000" end
  4101. audio.PlaybackSpeed = 1
  4102. audio:Play()
  4103. if hit == false then
  4104. hitz.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  4105. wait()
  4106. killz(hitz.Parent,'Head',nil,false,true)
  4107. end
  4108. hit = true
  4109. elseif grabbed == nil and grabbing == true and hit == false then
  4110. if hitz.Parent:FindFirstChildOfClass("Humanoid").Health > 0 and hitz.Parent:FindFirstChild('Torso') and hitz.Parent.Torso:FindFirstChild('Neck') then
  4111. grabbed = hitz.Parent
  4112. local weldz = Instance.new('Weld',point)
  4113. weldz.Name = "Holder"
  4114. weldz.Part0 = point
  4115. weldz.Part1 = hitz.Parent.Torso
  4116. weldz.C0 = CFrame.new(0,0,-1.2)
  4117. end
  4118. end
  4119. end
  4120. end)
  4121.  
  4122. while usable do
  4123. local coru = coroutine.wrap(function()
  4124. if grabbed ~= nil then
  4125. if grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4126. for i,v in pairs(grabbed:GetChildren()) do
  4127. if v:IsA('Tool') then
  4128. local model = Instance.new('Model',workspace)
  4129. v.Parent = model
  4130. model:TranslateBy(Vector3.new(3,0,0))
  4131. end
  4132. end
  4133. grabbed:FindFirstChildOfClass('Humanoid').Name = "Hoomanoid"
  4134. grabbed:FindFirstChildOfClass('Humanoid').JumpPower = 0
  4135. grabbed:FindFirstChildOfClass('Humanoid').WalkSpeed = 0
  4136. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = true
  4137. grabweld = grabbed.Torso:FindFirstChild("TargetWeld")
  4138. if grabweld ~= nil then return end
  4139. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = true
  4140. if grabbed.Torso:FindFirstChild('Left Shoulder') then
  4141. leftshoulder = grabbed.Torso["Left Shoulder"]:Clone()
  4142. end
  4143. if grabbed.Torso:FindFirstChild('Right Shoulder') then
  4144. rightshoulder = grabbed.Torso["Right Shoulder"]:Clone()
  4145. end
  4146. headweld = grabbed.Torso["Neck"]:Clone()
  4147. local targetweld = Instance.new('Weld',grabbed.Torso)
  4148. targetweld.Part0 = grabbed.Torso
  4149. targetweld.Part1 = grabbed.Head
  4150. targetweld.Name = "TargetWeld"
  4151. targetweld.C0 = CFrame.new(0,1.5,0) * CFrame.Angles(0, 0, 0)
  4152. if grabbed:FindFirstChild('Left Arm') then
  4153. local targetweld2 = Instance.new('Weld',grabbed["Left Arm"])
  4154. targetweld2.Part0 = grabbed.Torso
  4155. targetweld2.Part1 = grabbed["Left Arm"]
  4156. targetweld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  4157. end
  4158.  
  4159. for i = 0,1,0.1 do
  4160. if me:FindFirstChild("Left Arm") == nil or me:FindFirstChild("Torso") == nil or targetweld == nil then return end
  4161. targetweld.C0 = targetweld.C0:lerp(CFrame.new(0, 1.5, 0)*CFrame.Angles(0.25, 0, 0), i)
  4162. if targetweld2 then
  4163. targetweld2.C0 = targetweld2.C0:lerp(CFrame.new(-1.5, 0.5, 0)*CFrame.Angles(0, 0, -0.55), i)
  4164. end
  4165. wait(0.001)
  4166. end
  4167. end
  4168. end
  4169. end)
  4170. coru()
  4171. wait()
  4172. end
  4173.  
  4174. end
  4175. local coru=coroutine.wrap(function()
  4176. nub()
  4177. end)
  4178. coru()
  4179.  
  4180. while true do
  4181. local coru=coroutine.wrap(function()
  4182. for i,v in pairs(rekt) do
  4183. if v and v:FindFirstChildOfClass('Humanoid') then
  4184. for a,c in pairs(v:GetChildren()) do
  4185. if c:IsA('Tool') then
  4186. local model = Instance.new('Model',workspace)
  4187. c.Parent = model
  4188. model:TranslateBy(Vector3.new(3,0,0))
  4189. end
  4190. end
  4191. v:FindFirstChildOfClass('Humanoid').Jump = false
  4192. v:FindFirstChildOfClass('Humanoid').Sit = false
  4193. v:FindFirstChildOfClass('Humanoid').JumpPower = 0
  4194. v:FindFirstChildOfClass('Humanoid').PlatformStand = true
  4195. v:FindFirstChildOfClass('Humanoid').Name = "No escape."
  4196. local thing = getplr(v)
  4197. if thing then
  4198. thing.CameraMinZoomDistance = 3
  4199. end
  4200. else
  4201. local thing = getplr(v)
  4202. if thing then
  4203. thing.CameraMinZoomDistance = 0.5
  4204. end
  4205. table.remove(rekt,i)
  4206. end
  4207. end
  4208. end)
  4209. coru()
  4210. local coru2 = coroutine.wrap(function()
  4211. if curpart then
  4212. curpoint = curpart.CFrame.p
  4213. end
  4214. if lastgui then
  4215. lastgui:Destroy()
  4216. lastgui = nil
  4217. end
  4218. if curpoint then
  4219. lastgui = Instance.new('BillboardGui',player.PlayerGui)
  4220. lastgui.AlwaysOnTop = true
  4221. lastgui.MaxDistance = 0
  4222. lastgui.Size = UDim2.new(5,0,5,0)
  4223. if curpart == nil then
  4224. lastgui.Adornee = workspace
  4225. lastgui.StudsOffsetWorldSpace = curpoint
  4226. else
  4227. lastgui.Adornee = curpart
  4228. end
  4229. local cross = Instance.new('ImageLabel',lastgui)
  4230. cross.BackgroundTransparency = 1
  4231. cross.Size = UDim2.new(1,0,1,0)
  4232. cross.Image = 'rbxassetid://316279304'
  4233. for i,v in pairs(zombies) do
  4234. if v:FindFirstChildOfClass('Humanoid') then
  4235. v:FindFirstChildOfClass('Humanoid').WalkToPoint = curpoint
  4236. end
  4237. end
  4238. else
  4239. for i,v in pairs(zombies) do
  4240. if v:FindFirstChildOfClass('Humanoid') and v:FindFirstChild('Head') then
  4241. v:FindFirstChildOfClass('Humanoid').WalkToPoint = v.Head.Position
  4242. end
  4243. end
  4244. end
  4245. end)
  4246. coru2()
  4247. wait()
  4248. end
  4249. end;
  4250.  
  4251. start();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement