hecknes

Knife

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