Advertisement
Guest User

oakedadada

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