Advertisement
Guest User

gui test

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