Advertisement
Adog1656

Untitled

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