Guest User

Yatagarasu Hub By Cannoo

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