Advertisement
RyanDaCoder

MyGUI UPDATED FOR VIDEO (LOGIN ADDED)

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