Advertisement
DimowForback

Hurt Gui (not working fe)

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