Advertisement
Migas3456

ModGui By Raph(not made by me)

Oct 3rd, 2017
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 218.04 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ModGUI = Instance.new("ScreenGui")
  4. local GUIFrame = Instance.new("Frame")
  5. local TextButton = Instance.new("TextButton")
  6. local TextButton_2 = Instance.new("TextButton")
  7. local TextButton_3 = Instance.new("TextButton")
  8. local TextButton_4 = Instance.new("TextButton")
  9. local TextButton_5 = Instance.new("TextButton")
  10. local TextButton_6 = Instance.new("TextButton")
  11. local TextLabel = Instance.new("TextLabel")
  12. local TextButton_7 = Instance.new("TextButton")
  13. local TextButton_8 = Instance.new("TextButton")
  14. local OpenFrame = Instance.new("Frame")
  15. local TextButton_9 = Instance.new("TextButton")
  16. local plr = game.Players.LocalPlayer
  17. -- Properties
  18.  
  19. ModGUI.Name = "ModGUI"
  20. ModGUI.Parent = game.Players.LocalPlayer.PlayerGui
  21.  
  22. GUIFrame.Name = "GUIFrame"
  23. GUIFrame.Parent = ModGUI
  24. GUIFrame.Active = true
  25. GUIFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  26. GUIFrame.Draggable = true
  27. GUIFrame.Position = UDim2.new(0, 350, 0, 163)
  28. GUIFrame.Size = UDim2.new(0, 450, 0, 258)
  29. GUIFrame.Visible = false
  30.  
  31. TextButton.Parent = GUIFrame
  32. TextButton.BackgroundColor3 = Color3.new(1, 0.0784314, 0.196078)
  33. TextButton.Position = UDim2.new(0, 25, 0, 22)
  34. TextButton.Size = UDim2.new(0, 121, 0, 31)
  35. TextButton.Font = Enum.Font.SciFi
  36. TextButton.FontSize = Enum.FontSize.Size14
  37. TextButton.Text = "God"
  38. TextButton.TextScaled = true
  39. TextButton.TextSize = 14
  40. TextButton.TextWrapped = true
  41.  
  42. TextButton.MouseButton1Down:connect(function()
  43. plr.Character.Humanoid.MaxHealth = math.huge
  44. end)
  45.  
  46. TextButton_2.Parent = GUIFrame
  47. TextButton_2.BackgroundColor3 = Color3.new(1, 0.0784314, 0.196078)
  48. TextButton_2.Position = UDim2.new(0, 308, 0, 22)
  49. TextButton_2.Size = UDim2.new(0, 121, 0, 31)
  50. TextButton_2.Font = Enum.Font.SciFi
  51. TextButton_2.FontSize = Enum.FontSize.Size14
  52. TextButton_2.Text = "Fire"
  53. TextButton_2.TextScaled = true
  54. TextButton_2.TextSize = 14
  55. TextButton_2.TextWrapped = true
  56.  
  57. TextButton_2.MouseButton1Down:connect(function()
  58. Instance.new("Fire",plr)
  59. end)
  60. TextButton_3.Parent = GUIFrame
  61. TextButton_3.BackgroundColor3 = Color3.new(1, 0.0784314, 0.196078)
  62. TextButton_3.Position = UDim2.new(0, 164, 0, 22)
  63. TextButton_3.Size = UDim2.new(0, 121, 0, 31)
  64. TextButton_3.Font = Enum.Font.SciFi
  65. TextButton_3.FontSize = Enum.FontSize.Size14
  66. TextButton_3.Text = "Sparkles"
  67. TextButton_3.TextScaled = true
  68. TextButton_3.TextSize = 14
  69. TextButton_3.TextWrapped = true
  70.  
  71. TextButton_3.MouseButton1Down:connect(function()
  72. Instance.new("Sparkles",plr)
  73. end)
  74.  
  75. TextButton_4.Parent = GUIFrame
  76. TextButton_4.BackgroundColor3 = Color3.new(1, 0.0784314, 0.196078)
  77. TextButton_4.Position = UDim2.new(0, 308, 0, 71)
  78. TextButton_4.Size = UDim2.new(0, 121, 0, 31)
  79. TextButton_4.Font = Enum.Font.SciFi
  80. TextButton_4.FontSize = Enum.FontSize.Size14
  81. TextButton_4.Text = "Trump Particles"
  82. TextButton_4.TextScaled = true
  83. TextButton_4.TextSize = 14
  84. TextButton_4.TextWrapped = true
  85.  
  86. TextButton_4.MouseButton1Down:connect(function()
  87. Instance.new("ParticleEmitter",plr)
  88. plr.ParticleEmitter.Texture = 343377230
  89. end)
  90.  
  91. TextButton_5.Parent = GUIFrame
  92. TextButton_5.BackgroundColor3 = Color3.new(1, 0.0784314, 0.196078)
  93. TextButton_5.Position = UDim2.new(0, 165, 0, 71)
  94. TextButton_5.Size = UDim2.new(0, 121, 0, 31)
  95. TextButton_5.Font = Enum.Font.SciFi
  96. TextButton_5.FontSize = Enum.FontSize.Size14
  97. TextButton_5.Text = "Smoke"
  98. TextButton_5.TextScaled = true
  99. TextButton_5.TextSize = 14
  100. TextButton_5.TextWrapped = true
  101.  
  102. TextButton_5.MouseButton1Down:connect(function()
  103. Instance.new("Smoke",plr)
  104. end)
  105.  
  106. TextButton_6.Parent = GUIFrame
  107. TextButton_6.BackgroundColor3 = Color3.new(1, 0.0784314, 0.196078)
  108. TextButton_6.Position = UDim2.new(0, 24, 0, 72)
  109. TextButton_6.Size = UDim2.new(0, 121, 0, 31)
  110. TextButton_6.Font = Enum.Font.SciFi
  111. TextButton_6.FontSize = Enum.FontSize.Size14
  112. TextButton_6.Text = "Forcefield"
  113. TextButton_6.TextScaled = true
  114. TextButton_6.TextSize = 14
  115. TextButton_6.TextWrapped = true
  116.  
  117. TextButton_6.MouseButton1Down:connect(function()
  118. Instance.new("ForceField",plr)
  119. end)
  120.  
  121. TextLabel.Parent = GUIFrame
  122. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  123. TextLabel.BackgroundTransparency = 1
  124. TextLabel.Position = UDim2.new(0, 0, 0, 79)
  125. TextLabel.Size = UDim2.new(0, 450, 0, 50)
  126. TextLabel.Font = Enum.Font.SourceSans
  127. TextLabel.FontSize = Enum.FontSize.Size14
  128. TextLabel.Text = "___________________________"
  129. TextLabel.TextColor3 = Color3.new(1, 0.156863, 0.117647)
  130. TextLabel.TextScaled = true
  131. TextLabel.TextSize = 14
  132. TextLabel.TextWrapped = true
  133.  
  134. TextButton_7.Parent = GUIFrame
  135. TextButton_7.BackgroundColor3 = Color3.new(1, 0.0784314, 0.196078)
  136. TextButton_7.Position = UDim2.new(0, 24, 0, 150)
  137. TextButton_7.Size = UDim2.new(0, 178, 0, 88)
  138. TextButton_7.Font = Enum.Font.SciFi
  139. TextButton_7.FontSize = Enum.FontSize.Size14
  140. TextButton_7.Text = "Clown Van GUI"
  141. TextButton_7.TextScaled = true
  142. TextButton_7.TextSize = 14
  143. TextButton_7.TextWrapped = true
  144.  
  145. TextButton_7.MouseButton1Down:connect(function()
  146. local VanGui = Instance.new("ScreenGui")
  147. local Van = Instance.new("Frame")
  148. local idk = Instance.new("TextBox")
  149. local dsa = Instance.new("TextButton")
  150.  
  151. VanGui.Name = "ufo"
  152. VanGui.Parent = game.Players.LocalPlayer.PlayerGui
  153.  
  154. Van.Name = "ufo"
  155. Van.Parent = VanGui
  156. Van.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  157. Van.BorderColor3 = Color3.new(0, 0, 0)
  158. Van.Position = UDim2.new(0, 5, 0.8, 0)
  159. Van.Size = UDim2.new(0, 200, 0, 45)
  160.  
  161. idk.Name = "idk"
  162. idk.Parent = Van
  163. idk.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  164. idk.BorderColor3 = Color3.new(0, 0, 0)
  165. idk.Size = UDim2.new(1, 0, 0, 20)
  166. idk.Font = Enum.Font.SciFi
  167. idk.FontSize = Enum.FontSize.Size14
  168. idk.Text = "Username"
  169. idk.TextColor3 = Color3.new(1, 1, 1)
  170. idk.TextScaled = true
  171. idk.TextStrokeTransparency = 0
  172. idk.TextWrapped = true
  173.  
  174. dsa.Name = "dsa"
  175. dsa.Parent = Van
  176. dsa.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  177. dsa.BorderColor3 = Color3.new(0, 0, 0)
  178. dsa.Position = UDim2.new(0, 0, 1, -25)
  179. dsa.Size = UDim2.new(1, 0, 0, 25)
  180. dsa.Font = Enum.Font.SciFi
  181. dsa.FontSize = Enum.FontSize.Size14
  182. dsa.Text = "Kidnap Dat Besh"
  183. dsa.TextColor3 = Color3.new(1, 1, 1)
  184. dsa.TextScaled = true
  185. dsa.TextStrokeTransparency = 0
  186. dsa.TextWrapped = true
  187.  
  188.  
  189. dsa.MouseButton1Click:connect(function()
  190. Victim = idk.Text
  191. o1 = Instance.new("Model")
  192. o2 = Instance.new("Part")
  193. o3 = Instance.new("CylinderMesh")
  194. o4 = Instance.new("Part")
  195. o5 = Instance.new("SpecialMesh")
  196. o6 = Instance.new("Part")
  197. o7 = Instance.new("SpecialMesh")
  198. o8 = Instance.new("Part")
  199. o9 = Instance.new("BlockMesh")
  200. o10 = Instance.new("Part")
  201. o11 = Instance.new("BlockMesh")
  202. o12 = Instance.new("Part")
  203. o13 = Instance.new("Part")
  204. o14 = Instance.new("BlockMesh")
  205. o15 = Instance.new("Part")
  206. o16 = Instance.new("SpecialMesh")
  207. o17 = Instance.new("Part")
  208. o18 = Instance.new("SpecialMesh")
  209. o19 = Instance.new("Part")
  210. o20 = Instance.new("SpecialMesh")
  211. o21 = Instance.new("Sound")
  212. o22 = Instance.new("Part")
  213. o23 = Instance.new("BlockMesh")
  214. o24 = Instance.new("Part")
  215. o25 = Instance.new("SpecialMesh")
  216. o26 = Instance.new("Part")
  217. o27 = Instance.new("BlockMesh")
  218. o28 = Instance.new("Part")
  219. o29 = Instance.new("SpecialMesh")
  220. o30 = Instance.new("Part")
  221. o31 = Instance.new("BlockMesh")
  222. o32 = Instance.new("Part")
  223. o33 = Instance.new("BlockMesh")
  224. o34 = Instance.new("Part")
  225. o35 = Instance.new("BlockMesh")
  226. o36 = Instance.new("Part")
  227. o37 = Instance.new("BlockMesh")
  228. o38 = Instance.new("Part")
  229. o39 = Instance.new("Part")
  230. o40 = Instance.new("BlockMesh")
  231. o41 = Instance.new("Part")
  232. o42 = Instance.new("BlockMesh")
  233. o43 = Instance.new("Part")
  234. o44 = Instance.new("BlockMesh")
  235. o45 = Instance.new("Part")
  236. o46 = Instance.new("SpecialMesh")
  237. o47 = Instance.new("Part")
  238. o48 = Instance.new("BlockMesh")
  239. o49 = Instance.new("Part")
  240. o50 = Instance.new("BlockMesh")
  241. o51 = Instance.new("Part")
  242. o52 = Instance.new("BlockMesh")
  243. o53 = Instance.new("Part")
  244. o54 = Instance.new("SpecialMesh")
  245. o55 = Instance.new("Part")
  246. o56 = Instance.new("SpecialMesh")
  247. o57 = Instance.new("Part")
  248. o58 = Instance.new("BlockMesh")
  249. o59 = Instance.new("Part")
  250. o60 = Instance.new("BlockMesh")
  251. o61 = Instance.new("Part")
  252. o62 = Instance.new("BlockMesh")
  253. o63 = Instance.new("Part")
  254. o64 = Instance.new("Part")
  255. o65 = Instance.new("Part")
  256. o66 = Instance.new("BlockMesh")
  257. o67 = Instance.new("Part")
  258. o68 = Instance.new("BlockMesh")
  259. o69 = Instance.new("Part")
  260. o70 = Instance.new("BlockMesh")
  261. o71 = Instance.new("Part")
  262. o72 = Instance.new("BlockMesh")
  263. o73 = Instance.new("Part")
  264. o74 = Instance.new("SpecialMesh")
  265. o75 = Instance.new("Decal")
  266. o76 = Instance.new("Part")
  267. o77 = Instance.new("Part")
  268. o78 = Instance.new("BlockMesh")
  269. o79 = Instance.new("Part")
  270. o80 = Instance.new("SpecialMesh")
  271. o81 = Instance.new("Decal")
  272. o82 = Instance.new("Part")
  273. o83 = Instance.new("SpecialMesh")
  274. o84 = Instance.new("Humanoid")
  275. o85 = Instance.new("Part")
  276. o86 = Instance.new("Part")
  277. o87 = Instance.new("Part")
  278. o88 = Instance.new("Decal")
  279. o89 = Instance.new("Motor6D")
  280. o90 = Instance.new("Motor6D")
  281. o91 = Instance.new("Motor6D")
  282. o92 = Instance.new("Motor6D")
  283. o93 = Instance.new("Motor6D")
  284. o94 = Instance.new("Part")
  285. o95 = Instance.new("Part")
  286. o96 = Instance.new("Part")
  287. o97 = Instance.new("Part")
  288. o98 = Instance.new("Part")
  289. o99 = Instance.new("Decal")
  290. o100 = Instance.new("Motor6D")
  291. o101 = Instance.new("Motor6D")
  292. o102 = Instance.new("Motor6D")
  293. o103 = Instance.new("Part")
  294. o104 = Instance.new("Part")
  295. o105 = Instance.new("Part")
  296. o106 = Instance.new("Part")
  297. o107 = Instance.new("Part")
  298. o108 = Instance.new("CylinderMesh")
  299. o109 = Instance.new("Part")
  300. o110 = Instance.new("CylinderMesh")
  301. o111 = Instance.new("Part")
  302. o112 = Instance.new("CylinderMesh")
  303. o113 = Instance.new("Part")
  304. o114 = Instance.new("CylinderMesh")
  305. o115 = Instance.new("Part")
  306. o116 = Instance.new("CylinderMesh")
  307. o117 = Instance.new("Part")
  308. o118 = Instance.new("CylinderMesh")
  309. o119 = Instance.new("Part")
  310. o120 = Instance.new("CylinderMesh")
  311. o121 = Instance.new("Part")
  312. o122 = Instance.new("SpecialMesh")
  313. o123 = Instance.new("Part")
  314. o124 = Instance.new("Decal")
  315. o1.Name = " "
  316. o1.Parent = workspace
  317. o2.Parent = o1
  318. o2.Position = Vector3.new(95.3486252, 1.50001001, 18.4564877)
  319. o2.Rotation = Vector3.new(-90, 1.20620803e-006, -180)
  320. o2.Anchored = true
  321. o2.FormFactor = Enum.FormFactor.Symmetric
  322. o2.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986)
  323. o2.CFrame = CFrame.new(95.3486252, 1.50001001, 18.4564877, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008)
  324. o3.Parent = o2
  325. o4.Parent = o1
  326. o4.BrickColor = BrickColor.new("Institutional white")
  327. o4.Position = Vector3.new(96.3181839, 7.00000668, 9.31151104)
  328. o4.Rotation = Vector3.new(90, 89.9314728, -90)
  329. o4.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  330. o4.Velocity = Vector3.new(-0.000346515269, 0.00201798417, -0.00195027643)
  331. o4.Anchored = true
  332. o4.FormFactor = Enum.FormFactor.Plate
  333. o4.Size = Vector3.new(1, 2.4000001, 2)
  334. o4.CFrame = CFrame.new(96.3181839, 7.00000668, 9.31151104, 0, 3.96052044e-008, 0.999999285, 0, 1, -3.97634246e-008, -1, 0, 0)
  335. o4.BackSurface = Enum.SurfaceType.Weld
  336. o4.BottomSurface = Enum.SurfaceType.Weld
  337. o4.LeftSurface = Enum.SurfaceType.Weld
  338. o4.TopSurface = Enum.SurfaceType.Weld
  339. o4.Color = Color3.new(0.972549, 0.972549, 0.972549)
  340. o5.Parent = o4
  341. o5.MeshType = Enum.MeshType.Wedge
  342. o6.Parent = o1
  343. o6.Material = Enum.Material.SmoothPlastic
  344. o6.BrickColor = BrickColor.new("Really black")
  345. o6.Transparency = 0.5
  346. o6.Position = Vector3.new(96.3181839, 7.00000668, 13.8115101)
  347. o6.Rotation = Vector3.new(90, 89.9440536, -90)
  348. o6.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  349. o6.Velocity = Vector3.new(0.000965324172, 0.00135755131, -0.00195027643)
  350. o6.Anchored = true
  351. o6.FormFactor = Enum.FormFactor.Plate
  352. o6.Size = Vector3.new(8, 2.4000001, 1.99999976)
  353. o6.CFrame = CFrame.new(96.3181839, 7.00000668, 13.8115101, 0, 3.96315798e-008, 0.999999523, 0, 1, -3.97370599e-008, -1, 0, 0)
  354. o6.BackSurface = Enum.SurfaceType.Weld
  355. o6.BottomSurface = Enum.SurfaceType.Weld
  356. o6.LeftSurface = Enum.SurfaceType.Weld
  357. o6.RightSurface = Enum.SurfaceType.Weld
  358. o6.TopSurface = Enum.SurfaceType.Weld
  359. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  360. o7.Parent = o6
  361. o7.MeshType = Enum.MeshType.Wedge
  362. o8.Parent = o1
  363. o8.BrickColor = BrickColor.new("Br. yellowish orange")
  364. o8.Position = Vector3.new(92.2182083, 4.00000715, 9.61151409)
  365. o8.Rotation = Vector3.new(-0, 0, -2.26619136e-006)
  366. o8.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  367. o8.Velocity = Vector3.new(-0.000475873821, 0.00227026758, -0.00119533995)
  368. o8.Anchored = true
  369. o8.FormFactor = Enum.FormFactor.Custom
  370. o8.Size = Vector3.new(0.200000003, 0.800000012, 0.799999714)
  371. o8.CFrame = CFrame.new(92.2182083, 4.00000715, 9.61151409, 0.999998808, 3.95524538e-008, 0, -3.98161575e-008, 1, 0, 0, 0, 1)
  372. o8.BackSurface = Enum.SurfaceType.Weld
  373. o8.BottomSurface = Enum.SurfaceType.Weld
  374. o8.FrontSurface = Enum.SurfaceType.Weld
  375. o8.LeftSurface = Enum.SurfaceType.Weld
  376. o8.RightSurface = Enum.SurfaceType.Weld
  377. o8.TopSurface = Enum.SurfaceType.Weld
  378. o8.Color = Color3.new(0.886275, 0.607843, 0.25098)
  379. o9.Parent = o8
  380. o10.Parent = o1
  381. o10.BrickColor = BrickColor.new("Institutional white")
  382. o10.Position = Vector3.new(105.317894, 8.40004158, 9.31151295)
  383. o10.Rotation = Vector3.new(-0, 0, -2.21330401e-006)
  384. o10.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  385. o10.Velocity = Vector3.new(-0.000245332019, 0.00136755884, -0.00436839834)
  386. o10.Anchored = true
  387. o10.CanCollide = false
  388. game.Players[Victim].Character.Humanoid.WalkSpeed = 0
  389. game.Players[Victim].Character.Humanoid.JumpPower = 0
  390. o10.FormFactor = Enum.FormFactor.Plate
  391. o10.Size = Vector3.new(14, 0.400000006, 1)
  392. o10.CFrame = CFrame.new(105.317894, 8.40004158, 9.31151295, 0.999999762, 3.86294303e-008, 0, -3.86821704e-008, 1, 0, 0, 0, 1)
  393. o10.BackSurface = Enum.SurfaceType.Weld
  394. o10.BottomSurface = Enum.SurfaceType.Weld
  395. o10.FrontSurface = Enum.SurfaceType.Weld
  396. o10.LeftSurface = Enum.SurfaceType.Weld
  397. o10.RightSurface = Enum.SurfaceType.Weld
  398. o10.TopSurface = Enum.SurfaceType.Weld
  399. o10.Color = Color3.new(0.972549, 0.972549, 0.972549)
  400. o11.Parent = o10
  401. o12.Name = "DOOR"
  402. o12.Parent = o1
  403. o12.BrickColor = BrickColor.new("Institutional white")
  404. o12.Position = Vector3.new(103.708466, 5.81500626, 9.31151104)
  405. o12.Rotation = Vector3.new(-0, 0, -4.43210411e-006)
  406. o12.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  407. o12.Velocity = Vector3.new(-0.000432157307, 0.00148387556, -0.00427860441)
  408. o12.Anchored = true
  409. o12.CanCollide = false
  410. o12.FormFactor = Enum.FormFactor.Plate
  411. o12.Size = Vector3.new(5.22000027, 4.82999992, 1)
  412. o12.CFrame = CFrame.new(103.708466, 5.81500626, 9.31151104, 1, 7.73548052e-008, 0, -7.73548052e-008, 1, 0, 0, 0, 1)
  413. o12.BottomSurface = Enum.SurfaceType.Weld
  414. o12.LeftSurface = Enum.SurfaceType.Weld
  415. o12.RightSurface = Enum.SurfaceType.Weld
  416. o12.TopSurface = Enum.SurfaceType.Weld
  417. o12.Color = Color3.new(0.972549, 0.972549, 0.972549)
  418. o13.Parent = o1
  419. o13.BrickColor = BrickColor.new("White")
  420. o13.Position = Vector3.new(109.818169, 5.80000877, 9.31151104)
  421. o13.Rotation = Vector3.new(-0, 0, -2.25410599e-006)
  422. o13.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  423. o13.Velocity = Vector3.new(-0.00043324125, 0.00104231632, -0.006061906)
  424. o13.Anchored = true
  425. o13.FormFactor = Enum.FormFactor.Plate
  426. o13.Size = Vector3.new(7, 4.80000019, 1)
  427. o13.CFrame = CFrame.new(109.818169, 5.80000877, 9.31151104, 0.999996901, 3.9341451e-008, 0, -4.00270856e-008, 1, 0, 0, 0, 1)
  428. o13.BackSurface = Enum.SurfaceType.Weld
  429. o13.BottomSurface = Enum.SurfaceType.Weld
  430. o13.FrontSurface = Enum.SurfaceType.Weld
  431. o13.LeftSurface = Enum.SurfaceType.Weld
  432. o13.RightSurface = Enum.SurfaceType.Weld
  433. o13.TopSurface = Enum.SurfaceType.Weld
  434. o13.Color = Color3.new(0.94902, 0.952941, 0.952941)
  435. o14.Parent = o13
  436. o15.Parent = o1
  437. o15.BrickColor = BrickColor.new("Institutional white")
  438. o15.Position = Vector3.new(97.817894, 8.40000725, 13.8115139)
  439. o15.Rotation = Vector3.new(90, 89.960434, -90)
  440. o15.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  441. o15.Velocity = Vector3.new(0.00106650498, 0.00124916411, -0.00218200427)
  442. o15.Anchored = true
  443. o15.CanCollide = false
  444. o15.FormFactor = Enum.FormFactor.Plate
  445. o15.Size = Vector3.new(10, 0.400000006, 1)
  446. o15.CFrame = CFrame.new(97.817894, 8.40000725, 13.8115139, 0, 3.86294303e-008, 0.999999762, 0, 1, -3.86821704e-008, -1, 0, 0)
  447. o15.BackSurface = Enum.SurfaceType.Weld
  448. o15.BottomSurface = Enum.SurfaceType.Weld
  449. o15.TopSurface = Enum.SurfaceType.Weld
  450. o15.Color = Color3.new(0.972549, 0.972549, 0.972549)
  451. o16.Parent = o15
  452. o16.MeshType = Enum.MeshType.Wedge
  453. o17.Parent = o1
  454. o17.BrickColor = BrickColor.new("Institutional white")
  455. o17.Position = Vector3.new(96.3181839, 7.00000668, 18.3115101)
  456. o17.Rotation = Vector3.new(90, 89.9314728, -90)
  457. o17.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  458. o17.Velocity = Vector3.new(0.00227716356, 0.000697118347, -0.00195027643)
  459. o17.Anchored = true
  460. o17.FormFactor = Enum.FormFactor.Plate
  461. o17.Size = Vector3.new(1, 2.4000001, 2)
  462. o17.CFrame = CFrame.new(96.3181839, 7.00000668, 18.3115101, 0, 3.96052044e-008, 0.999999285, 0, 1, -3.97634246e-008, -1, 0, 0)
  463. o17.BackSurface = Enum.SurfaceType.Weld
  464. o17.BottomSurface = Enum.SurfaceType.Weld
  465. o17.RightSurface = Enum.SurfaceType.Weld
  466. o17.TopSurface = Enum.SurfaceType.Weld
  467. o17.Color = Color3.new(0.972549, 0.972549, 0.972549)
  468. o18.Parent = o17
  469. o18.MeshType = Enum.MeshType.Wedge
  470. o19.Parent = o1
  471. o19.BrickColor = BrickColor.new("Institutional white")
  472. o19.Position = Vector3.new(93.8181839, 5.20000744, 13.8115101)
  473. o19.Rotation = Vector3.new(90, 89.8573456, -90)
  474. o19.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  475. o19.Velocity = Vector3.new(0.000835234998, 0.00153823046, -0.00148565089)
  476. o19.Anchored = true
  477. o19.FormFactor = Enum.FormFactor.Plate
  478. o19.Size = Vector3.new(10, 1.20000005, 3)
  479. o19.CFrame = CFrame.new(93.8181839, 5.20000744, 13.8115101, 0, 3.77325726e-008, 0.999996901, 0, 1, -3.84182002e-008, -1, 0, 0)
  480. o19.BackSurface = Enum.SurfaceType.Weld
  481. o19.BottomSurface = Enum.SurfaceType.Weld
  482. o19.TopSurface = Enum.SurfaceType.Weld
  483. o19.Color = Color3.new(0.972549, 0.972549, 0.972549)
  484. o20.Parent = o19
  485. o20.MeshType = Enum.MeshType.Wedge
  486. o21.Parent = o19
  487. o21.SoundId = "rbxassetid://532147820"
  488. o21.Looped = true
  489. o22.Parent = o1
  490. o22.BrickColor = BrickColor.new("Institutional white")
  491. o22.Position = Vector3.new(96.3182907, 4.60000753, 9.31151104)
  492. o22.Rotation = Vector3.new(-0, 0, -2.23446773e-006)
  493. o22.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  494. o22.Velocity = Vector3.new(-0.000519967522, 0.00201797695, -0.00230253674)
  495. o22.Anchored = true
  496. o22.FormFactor = Enum.FormFactor.Plate
  497. o22.Size = Vector3.new(2, 2.4000001, 1)
  498. o22.CFrame = CFrame.new(96.3182907, 4.60000753, 9.31151104, 0.999993801, 3.8998575e-008, 0, -4.03698408e-008, 1, 0, 0, 0, 1)
  499. o22.BackSurface = Enum.SurfaceType.Weld
  500. o22.BottomSurface = Enum.SurfaceType.Weld
  501. o22.FrontSurface = Enum.SurfaceType.Weld
  502. o22.LeftSurface = Enum.SurfaceType.Weld
  503. o22.RightSurface = Enum.SurfaceType.Weld
  504. o22.TopSurface = Enum.SurfaceType.Weld
  505. o22.Color = Color3.new(0.972549, 0.972549, 0.972549)
  506. o23.Parent = o22
  507. o24.Parent = o1
  508. o24.BrickColor = BrickColor.new("Institutional white")
  509. o24.Position = Vector3.new(113.817245, 6.80000734, 18.3115101)
  510. o24.Rotation = Vector3.new(-0, -90, 0)
  511. o24.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  512. o24.Velocity = Vector3.new(0.00226270943, -0.000567569688, -0.00708095264)
  513. o24.Anchored = true
  514. o24.FormFactor = Enum.FormFactor.Plate
  515. o24.Size = Vector3.new(1, 2.79999995, 1)
  516. o24.CFrame = CFrame.new(113.817245, 6.80000734, 18.3115101, 0, 5.54578605e-008, -1, 0, 1, 5.54578605e-008, 1, 0, 0)
  517. o24.BackSurface = Enum.SurfaceType.Weld
  518. o24.BottomSurface = Enum.SurfaceType.Weld
  519. o24.TopSurface = Enum.SurfaceType.Weld
  520. o24.Color = Color3.new(0.972549, 0.972549, 0.972549)
  521. o25.Parent = o24
  522. o25.MeshType = Enum.MeshType.Wedge
  523. o26.Parent = o1
  524. o26.BrickColor = BrickColor.new("Institutional white")
  525. o26.Position = Vector3.new(93.0181885, 2.60000825, 13.8115101)
  526. o26.Rotation = Vector3.new(-0, 0, -2.27223404e-006)
  527. o26.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  528. o26.Velocity = Vector3.new(0.000647328445, 0.00159604801, -0.00163401756)
  529. o26.Anchored = true
  530. o26.FormFactor = Enum.FormFactor.Plate
  531. o26.Size = Vector3.new(1.39999998, 1.60000002, 10)
  532. o26.CFrame = CFrame.new(93.0181885, 2.60000825, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1)
  533. o26.BackSurface = Enum.SurfaceType.Weld
  534. o26.BottomSurface = Enum.SurfaceType.Weld
  535. o26.FrontSurface = Enum.SurfaceType.Weld
  536. o26.LeftSurface = Enum.SurfaceType.Weld
  537. o26.RightSurface = Enum.SurfaceType.Weld
  538. o26.TopSurface = Enum.SurfaceType.Weld
  539. o26.Color = Color3.new(0.972549, 0.972549, 0.972549)
  540. o27.Parent = o26
  541. o28.Parent = o1
  542. o28.BrickColor = BrickColor.new("Institutional white")
  543. o28.Position = Vector3.new(113.818176, 6.80000877, 9.31151104)
  544. o28.Rotation = Vector3.new(-90, -89.7982635, -90)
  545. o28.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  546. o28.Velocity = Vector3.new(-0.000360969483, 0.000753228669, -0.00708122458)
  547. o28.Anchored = true
  548. o28.FormFactor = Enum.FormFactor.Plate
  549. o28.Size = Vector3.new(1, 2.79999995, 1)
  550. o28.CFrame = CFrame.new(113.818176, 6.80000877, 9.31151104, 0, 3.89985715e-008, -0.999993801, 0, 1, 4.03698408e-008, 1, 0, 0)
  551. o28.BackSurface = Enum.SurfaceType.Weld
  552. o28.BottomSurface = Enum.SurfaceType.Weld
  553. o28.TopSurface = Enum.SurfaceType.Weld
  554. o28.Color = Color3.new(0.972549, 0.972549, 0.972549)
  555. o29.Parent = o28
  556. o29.MeshType = Enum.MeshType.Wedge
  557. o30.Parent = o1
  558. o30.BrickColor = BrickColor.new("Institutional white")
  559. o30.Position = Vector3.new(96.3181992, 4.60000753, 18.3115101)
  560. o30.Rotation = Vector3.new(-0, 0, -2.26770203e-006)
  561. o30.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  562. o30.Velocity = Vector3.new(0.00210371148, 0.000697117415, -0.0023025109)
  563. o30.Anchored = true
  564. o30.FormFactor = Enum.FormFactor.Plate
  565. o30.Size = Vector3.new(2, 2.4000001, 1)
  566. o30.CFrame = CFrame.new(96.3181992, 4.60000753, 18.3115101, 0.999999046, 3.95788291e-008, 0, -3.97897928e-008, 1, 0, 0, 0, 1)
  567. o30.BackSurface = Enum.SurfaceType.Weld
  568. o30.BottomSurface = Enum.SurfaceType.Weld
  569. o30.FrontSurface = Enum.SurfaceType.Weld
  570. o30.LeftSurface = Enum.SurfaceType.Weld
  571. o30.RightSurface = Enum.SurfaceType.Weld
  572. o30.TopSurface = Enum.SurfaceType.Weld
  573. o30.Color = Color3.new(0.972549, 0.972549, 0.972549)
  574. o31.Parent = o30
  575. o32.Parent = o1
  576. o32.BrickColor = BrickColor.new("Dark stone grey")
  577. o32.Position = Vector3.new(95.8181839, 4.60000753, 13.8115101)
  578. o32.Rotation = Vector3.new(90, 89.960434, -90)
  579. o32.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  580. o32.Velocity = Vector3.new(0.000791871978, 0.00139368721, -0.00215674727)
  581. o32.Anchored = true
  582. o32.FormFactor = Enum.FormFactor.Plate
  583. o32.Size = Vector3.new(8, 2.4000001, 1)
  584. o32.CFrame = CFrame.new(95.8181839, 4.60000753, 13.8115101, 0, 3.96579551e-008, 0.999999762, 0, 1, -3.97106952e-008, -1, 0, 0)
  585. o32.BottomSurface = Enum.SurfaceType.Weld
  586. o32.TopSurface = Enum.SurfaceType.Weld
  587. o32.Color = Color3.new(0.388235, 0.372549, 0.384314)
  588. o33.Parent = o32
  589. o33.Offset = Vector3.new(0, 0, 0.5)
  590. o33.Scale = Vector3.new(1, 1, 2)
  591. o34.Parent = o1
  592. o34.BrickColor = BrickColor.new("Institutional white")
  593. o34.Position = Vector3.new(93.8181992, 4.00000715, 13.8115101)
  594. o34.Rotation = Vector3.new(-0, 0, -2.26770203e-006)
  595. o34.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  596. o34.Velocity = Vector3.new(0.000748508843, 0.00153822941, -0.00166177051)
  597. o34.Anchored = true
  598. o34.FormFactor = Enum.FormFactor.Plate
  599. o34.Size = Vector3.new(3, 1.20000005, 10)
  600. o34.CFrame = CFrame.new(93.8181992, 4.00000715, 13.8115101, 0.999999046, 3.95788291e-008, 0, -3.97897928e-008, 1, 0, 0, 0, 1)
  601. o34.BackSurface = Enum.SurfaceType.Weld
  602. o34.BottomSurface = Enum.SurfaceType.Weld
  603. o34.FrontSurface = Enum.SurfaceType.Weld
  604. o34.LeftSurface = Enum.SurfaceType.Weld
  605. o34.RightSurface = Enum.SurfaceType.Weld
  606. o34.TopSurface = Enum.SurfaceType.Weld
  607. o34.Color = Color3.new(0.972549, 0.972549, 0.972549)
  608. o35.Parent = o34
  609. o36.Parent = o1
  610. o36.BrickColor = BrickColor.new("Br. yellowish orange")
  611. o36.Position = Vector3.new(92.2181854, 4.00000715, 18.211504)
  612. o36.Rotation = Vector3.new(-0, 0, -2.2601489e-006)
  613. o36.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  614. o36.Velocity = Vector3.new(0.00203119451, 0.00100810977, -0.00119533355)
  615. o36.Anchored = true
  616. o36.FormFactor = Enum.FormFactor.Custom
  617. o36.Size = Vector3.new(0.200000003, 0.800000012, 0.799999714)
  618. o36.CFrame = CFrame.new(92.2181854, 4.00000715, 18.211504, 0.999997854, 3.94469524e-008, 0, -3.99216233e-008, 1, 0, 0, 0, 1)
  619. o36.BackSurface = Enum.SurfaceType.Weld
  620. o36.BottomSurface = Enum.SurfaceType.Weld
  621. o36.FrontSurface = Enum.SurfaceType.Weld
  622. o36.LeftSurface = Enum.SurfaceType.Weld
  623. o36.RightSurface = Enum.SurfaceType.Weld
  624. o36.TopSurface = Enum.SurfaceType.Weld
  625. o36.Color = Color3.new(0.886275, 0.607843, 0.25098)
  626. o37.Parent = o36
  627. o38.Parent = o1
  628. o38.BrickColor = BrickColor.new("Institutional white")
  629. o38.Position = Vector3.new(99.0602112, 4.60000706, 18.3115101)
  630. o38.Rotation = Vector3.new(-0, 0, -4.84935117e-006)
  631. o38.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  632. o38.Velocity = Vector3.new(0.00210371148, 0.000498947338, -0.0031018618)
  633. o38.Anchored = true
  634. o38.CanCollide = false
  635. o38.FormFactor = Enum.FormFactor.Plate
  636. o38.Size = Vector3.new(3.48000026, 2.4000001, 1)
  637. o38.CFrame = CFrame.new(99.0602112, 4.60000706, 18.3115101, 1, 8.46371435e-008, 0, -8.46371435e-008, 1, 0, 0, 0, 1)
  638. o38.BottomSurface = Enum.SurfaceType.Weld
  639. o38.LeftSurface = Enum.SurfaceType.Weld
  640. o38.RightSurface = Enum.SurfaceType.Weld
  641. o38.TopSurface = Enum.SurfaceType.Weld
  642. o38.Color = Color3.new(0.972549, 0.972549, 0.972549)
  643. o39.Parent = o1
  644. o39.BrickColor = BrickColor.new("Really red")
  645. o39.Position = Vector3.new(113.818176, 4.80000877, 9.31151104)
  646. o39.Rotation = Vector3.new(-0, 0, -2.2344675e-006)
  647. o39.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  648. o39.Velocity = Vector3.new(-0.000505513046, 0.000753228669, -0.00737475045)
  649. o39.Anchored = true
  650. o39.FormFactor = Enum.FormFactor.Plate
  651. o39.Size = Vector3.new(1, 1.20000005, 1)
  652. o39.CFrame = CFrame.new(113.818176, 4.80000877, 9.31151104, 0.999993801, 3.89985715e-008, 0, -4.03698408e-008, 1, 0, 0, 0, 1)
  653. o39.BackSurface = Enum.SurfaceType.Weld
  654. o39.BottomSurface = Enum.SurfaceType.Weld
  655. o39.FrontSurface = Enum.SurfaceType.Weld
  656. o39.LeftSurface = Enum.SurfaceType.Weld
  657. o39.RightSurface = Enum.SurfaceType.Weld
  658. o39.TopSurface = Enum.SurfaceType.Weld
  659. o39.Color = Color3.new(1, 0, 0)
  660. o40.Parent = o39
  661. o41.Parent = o1
  662. o41.BrickColor = BrickColor.new("Institutional white")
  663. o41.Position = Vector3.new(113.818054, 3.80000734, 9.31151104)
  664. o41.Rotation = Vector3.new(-0, 0, -2.23295706e-006)
  665. o41.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  666. o41.Velocity = Vector3.new(-0.000577784958, 0.000753237749, -0.00752147706)
  667. o41.Anchored = true
  668. o41.FormFactor = Enum.FormFactor.Plate
  669. o41.Size = Vector3.new(1, 0.800000012, 1)
  670. o41.CFrame = CFrame.new(113.818054, 3.80000734, 9.31151104, 0.999993563, 3.89721997e-008, 0, -4.03962055e-008, 1, 0, 0, 0, 1)
  671. o41.BackSurface = Enum.SurfaceType.Weld
  672. o41.BottomSurface = Enum.SurfaceType.Weld
  673. o41.FrontSurface = Enum.SurfaceType.Weld
  674. o41.LeftSurface = Enum.SurfaceType.Weld
  675. o41.RightSurface = Enum.SurfaceType.Weld
  676. o41.TopSurface = Enum.SurfaceType.Weld
  677. o41.Color = Color3.new(0.972549, 0.972549, 0.972549)
  678. o42.Parent = o41
  679. o43.Parent = o1
  680. o43.BrickColor = BrickColor.new("Institutional white")
  681. o43.Position = Vector3.new(105.317894, 8.40000725, 13.8115139)
  682. o43.Rotation = Vector3.new(-0, 0, -2.21481446e-006)
  683. o43.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  684. o43.Velocity = Vector3.new(0.00106650498, 0.000707125873, -0.00436840346)
  685. o43.Anchored = true
  686. o43.CanCollide = false
  687. o43.FormFactor = Enum.FormFactor.Plate
  688. o43.Size = Vector3.new(14, 0.400000006, 8)
  689. o43.CFrame = CFrame.new(105.317894, 8.40000725, 13.8115139, 1, 3.86558057e-008, 0, -3.86558057e-008, 1, 0, 0, 0, 1)
  690. o43.BackSurface = Enum.SurfaceType.Weld
  691. o43.BottomSurface = Enum.SurfaceType.Weld
  692. o43.FrontSurface = Enum.SurfaceType.Weld
  693. o43.LeftSurface = Enum.SurfaceType.Weld
  694. o43.RightSurface = Enum.SurfaceType.Weld
  695. o43.TopSurface = Enum.SurfaceType.Weld
  696. o43.Color = Color3.new(0.972549, 0.972549, 0.972549)
  697. o44.Parent = o43
  698. o45.Parent = o1
  699. o45.BrickColor = BrickColor.new("Really black")
  700. o45.Position = Vector3.new(113.818176, 6.80000782, 11.311511)
  701. o45.Rotation = Vector3.new(-90, -89.9314728, -90)
  702. o45.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  703. o45.Velocity = Vector3.new(0.000222070201, 0.000459702482, -0.00708122645)
  704. o45.Anchored = true
  705. o45.CanCollide = false
  706. o45.FormFactor = Enum.FormFactor.Plate
  707. o45.Size = Vector3.new(3, 2.79999995, 1)
  708. o45.CFrame = CFrame.new(113.818176, 6.80000782, 11.311511, 0, 3.96052044e-008, -0.999999285, 0, 1, 3.97634281e-008, 1, 0, 0)
  709. o45.BackSurface = Enum.SurfaceType.Weld
  710. o45.BottomSurface = Enum.SurfaceType.Weld
  711. o45.TopSurface = Enum.SurfaceType.Weld
  712. o45.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  713. o46.Parent = o45
  714. o46.MeshType = Enum.MeshType.Wedge
  715. o47.Parent = o1
  716. o47.BrickColor = BrickColor.new("Institutional white")
  717. o47.Position = Vector3.new(103.118179, 2.40000772, 13.8115101)
  718. o47.Rotation = Vector3.new(-0, 0, -2.27223404e-006)
  719. o47.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  720. o47.Velocity = Vector3.new(0.000632874086, 0.000866103393, -0.0046077203)
  721. o47.Anchored = true
  722. o47.FormFactor = Enum.FormFactor.Plate
  723. o47.Size = Vector3.new(12.3999996, 1.20000005, 10)
  724. o47.CFrame = CFrame.new(103.118179, 2.40000772, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1)
  725. o47.BackSurface = Enum.SurfaceType.Weld
  726. o47.BottomSurface = Enum.SurfaceType.Weld
  727. o47.FrontSurface = Enum.SurfaceType.Weld
  728. o47.LeftSurface = Enum.SurfaceType.Weld
  729. o47.RightSurface = Enum.SurfaceType.Weld
  730. o47.TopSurface = Enum.SurfaceType.Weld
  731. o47.Color = Color3.new(0.972549, 0.972549, 0.972549)
  732. o48.Parent = o47
  733. o49.Parent = o1
  734. o49.BrickColor = BrickColor.new("White")
  735. o49.Position = Vector3.new(104.018181, 3.20000815, 13.8115101)
  736. o49.Rotation = Vector3.new(-0, 0, -2.27374471e-006)
  737. o49.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  738. o49.Velocity = Vector3.new(0.000690691522, 0.000801058719, -0.00475267787)
  739. o49.Anchored = true
  740. o49.FormFactor = Enum.FormFactor.Plate
  741. o49.Size = Vector3.new(20.6000004, 0.400000006, 10)
  742. o49.CFrame = CFrame.new(104.018181, 3.20000815, 13.8115101, 1, 3.96843305e-008, 0, -3.96843305e-008, 1, 0, 0, 0, 1)
  743. o49.BackSurface = Enum.SurfaceType.Weld
  744. o49.BottomSurface = Enum.SurfaceType.Weld
  745. o49.FrontSurface = Enum.SurfaceType.Weld
  746. o49.LeftSurface = Enum.SurfaceType.Weld
  747. o49.RightSurface = Enum.SurfaceType.Weld
  748. o49.TopSurface = Enum.SurfaceType.Weld
  749. o49.Color = Color3.new(0.94902, 0.952941, 0.952941)
  750. o50.Parent = o49
  751. o51.Parent = o1
  752. o51.BrickColor = BrickColor.new("Institutional white")
  753. o51.Position = Vector3.new(107.167747, 5.80000782, 18.3115101)
  754. o51.Rotation = Vector3.new(-0, 0, -3.14727777e-006)
  755. o51.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  756. o51.Velocity = Vector3.new(0.00219043763, -8.69987416e-005, -0.00528925471)
  757. o51.Anchored = true
  758. o51.FormFactor = Enum.FormFactor.Plate
  759. o51.Size = Vector3.new(12.3000002, 4.80000019, 1)
  760. o51.CFrame = CFrame.new(107.167747, 5.80000782, 18.3115101, 1, 5.49303607e-008, 0, -5.49303607e-008, 1, 0, 0, 0, 1)
  761. o51.BackSurface = Enum.SurfaceType.Weld
  762. o51.BottomSurface = Enum.SurfaceType.Weld
  763. o51.FrontSurface = Enum.SurfaceType.Weld
  764. o51.LeftSurface = Enum.SurfaceType.Weld
  765. o51.RightSurface = Enum.SurfaceType.Weld
  766. o51.TopSurface = Enum.SurfaceType.Weld
  767. o51.Color = Color3.new(0.972549, 0.972549, 0.972549)
  768. o52.Parent = o51
  769. o53.Parent = o1
  770. o53.BrickColor = BrickColor.new("Institutional white")
  771. o53.Position = Vector3.new(113.818176, 6.80000782, 13.8115101)
  772. o53.Rotation = Vector3.new(-90, -89.9314728, -90)
  773. o53.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  774. o53.Velocity = Vector3.new(0.000950869871, 9.27953006e-005, -0.00708122645)
  775. o53.Anchored = true
  776. o53.CanCollide = false
  777. o53.FormFactor = Enum.FormFactor.Plate
  778. o53.Size = Vector3.new(2, 2.79999995, 1)
  779. o53.CFrame = CFrame.new(113.818176, 6.80000782, 13.8115101, 0, 3.96052044e-008, -0.999999285, 0, 1, 3.97634281e-008, 1, 0, 0)
  780. o53.BackSurface = Enum.SurfaceType.Weld
  781. o53.BottomSurface = Enum.SurfaceType.Weld
  782. o53.TopSurface = Enum.SurfaceType.Weld
  783. o53.Color = Color3.new(0.972549, 0.972549, 0.972549)
  784. o54.Parent = o53
  785. o54.MeshType = Enum.MeshType.Wedge
  786. o55.Parent = o1
  787. o55.BrickColor = BrickColor.new("Really black")
  788. o55.Position = Vector3.new(113.818176, 6.80000782, 16.3115101)
  789. o55.Rotation = Vector3.new(-90, -89.9314728, -90)
  790. o55.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  791. o55.Velocity = Vector3.new(0.0016796696, -0.000274111895, -0.00708122645)
  792. o55.Anchored = true
  793. o55.CanCollide = false
  794. o55.FormFactor = Enum.FormFactor.Plate
  795. o55.Size = Vector3.new(3, 2.79999995, 1)
  796. o55.CFrame = CFrame.new(113.818176, 6.80000782, 16.3115101, 0, 3.96052044e-008, -0.999999285, 0, 1, 3.97634281e-008, 1, 0, 0)
  797. o55.BackSurface = Enum.SurfaceType.Weld
  798. o55.BottomSurface = Enum.SurfaceType.Weld
  799. o55.TopSurface = Enum.SurfaceType.Weld
  800. o55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  801. o56.Parent = o55
  802. o56.MeshType = Enum.MeshType.Wedge
  803. o57.Parent = o1
  804. o57.BrickColor = BrickColor.new("Institutional white")
  805. o57.Position = Vector3.new(113.818176, 4.40000582, 13.8115101)
  806. o57.Rotation = Vector3.new(-0, 0, -2.27223404e-006)
  807. o57.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  808. o57.Velocity = Vector3.new(0.000777417503, 9.27956426e-005, -0.00743345637)
  809. o57.Anchored = true
  810. o57.CanCollide = false
  811. o57.FormFactor = Enum.FormFactor.Plate
  812. o57.Size = Vector3.new(1, 2, 8)
  813. o57.CFrame = CFrame.new(113.818176, 4.40000582, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1)
  814. o57.BackSurface = Enum.SurfaceType.Weld
  815. o57.BottomSurface = Enum.SurfaceType.Weld
  816. o57.FrontSurface = Enum.SurfaceType.Weld
  817. o57.LeftSurface = Enum.SurfaceType.Weld
  818. o57.RightSurface = Enum.SurfaceType.Weld
  819. o57.TopSurface = Enum.SurfaceType.Weld
  820. o57.Color = Color3.new(0.972549, 0.972549, 0.972549)
  821. o58.Parent = o57
  822. o59.Parent = o1
  823. o59.BrickColor = BrickColor.new("Institutional white")
  824. o59.Position = Vector3.new(113.818176, 3.80000734, 18.3115101)
  825. o59.Rotation = Vector3.new(-0, 0, -2.27223404e-006)
  826. o59.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  827. o59.Velocity = Vector3.new(0.00204589404, -0.000567637384, -0.00752151385)
  828. o59.Anchored = true
  829. o59.FormFactor = Enum.FormFactor.Plate
  830. o59.Size = Vector3.new(1, 0.800000012, 1)
  831. o59.CFrame = CFrame.new(113.818176, 3.80000734, 18.3115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1)
  832. o59.BackSurface = Enum.SurfaceType.Weld
  833. o59.BottomSurface = Enum.SurfaceType.Weld
  834. o59.FrontSurface = Enum.SurfaceType.Weld
  835. o59.LeftSurface = Enum.SurfaceType.Weld
  836. o59.RightSurface = Enum.SurfaceType.Weld
  837. o59.TopSurface = Enum.SurfaceType.Weld
  838. o59.Color = Color3.new(0.972549, 0.972549, 0.972549)
  839. o60.Parent = o59
  840. o61.Parent = o1
  841. o61.BrickColor = BrickColor.new("Institutional white")
  842. o61.Position = Vector3.new(105.317894, 8.40000725, 18.3115101)
  843. o61.Rotation = Vector3.new(-0, 0, -2.21330401e-006)
  844. o61.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  845. o61.Velocity = Vector3.new(0.00237834454, 4.6692905e-005, -0.00436840346)
  846. o61.Anchored = true
  847. o61.CanCollide = false
  848. o61.FormFactor = Enum.FormFactor.Plate
  849. o61.Size = Vector3.new(14, 0.400000006, 1)
  850. o61.CFrame = CFrame.new(105.317894, 8.40000725, 18.3115101, 0.999999762, 3.86294303e-008, 0, -3.86821704e-008, 1, 0, 0, 0, 1)
  851. o61.BackSurface = Enum.SurfaceType.Weld
  852. o61.BottomSurface = Enum.SurfaceType.Weld
  853. o61.FrontSurface = Enum.SurfaceType.Weld
  854. o61.LeftSurface = Enum.SurfaceType.Weld
  855. o61.RightSurface = Enum.SurfaceType.Weld
  856. o61.TopSurface = Enum.SurfaceType.Weld
  857. o61.Color = Color3.new(0.972549, 0.972549, 0.972549)
  858. o62.Parent = o61
  859. o63.Parent = o1
  860. o63.BrickColor = BrickColor.new("Institutional white")
  861. o63.Position = Vector3.new(97.8181839, 5.79500866, 9.31151104)
  862. o63.Rotation = Vector3.new(-0, 0, -2.36894834e-006)
  863. o63.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  864. o63.Velocity = Vector3.new(-0.000433602603, 0.00190957636, -0.00256440602)
  865. o63.Anchored = true
  866. o63.CanCollide = false
  867. o63.FormFactor = Enum.FormFactor.Plate
  868. o63.Size = Vector3.new(1, 4.80999994, 1)
  869. o63.CFrame = CFrame.new(97.8181839, 5.79500866, 9.31151104, 1, 4.13459489e-008, 0, -4.13459489e-008, 1, 0, 0, 0, 1)
  870. o63.BottomSurface = Enum.SurfaceType.Weld
  871. o63.LeftSurface = Enum.SurfaceType.Weld
  872. o63.RightSurface = Enum.SurfaceType.Weld
  873. o63.TopSurface = Enum.SurfaceType.Weld
  874. o63.Color = Color3.new(0.972549, 0.972549, 0.972549)
  875. o64.Parent = o1
  876. o64.BrickColor = BrickColor.new("Institutional white")
  877. o64.Position = Vector3.new(97.8178101, 7.00000858, 18.3115101)
  878. o64.Rotation = Vector3.new(-0, 0, -2.14529973e-006)
  879. o64.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  880. o64.Velocity = Vector3.new(0.00227716402, 0.00058873737, -0.00238744705)
  881. o64.Anchored = true
  882. o64.CanCollide = false
  883. o64.FormFactor = Enum.FormFactor.Plate
  884. o64.Size = Vector3.new(1, 2.4000001, 1)
  885. o64.CFrame = CFrame.new(97.8178101, 7.00000858, 18.3115101, 0.999999762, 3.74425326e-008, 0, -3.74952727e-008, 1, 0, 0, 0, 1)
  886. o64.BottomSurface = Enum.SurfaceType.Weld
  887. o64.LeftSurface = Enum.SurfaceType.Weld
  888. o64.RightSurface = Enum.SurfaceType.Weld
  889. o64.TopSurface = Enum.SurfaceType.Weld
  890. o64.Color = Color3.new(0.972549, 0.972549, 0.972549)
  891. o65.Parent = o1
  892. o65.BrickColor = BrickColor.new("Institutional white")
  893. o65.Position = Vector3.new(113.418167, 2.40000749, 13.8115101)
  894. o65.Rotation = Vector3.new(-0, 0, -2.27223404e-006)
  895. o65.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  896. o65.Velocity = Vector3.new(0.000632874086, 0.000121704477, -0.0076103732)
  897. o65.Anchored = true
  898. o65.FormFactor = Enum.FormFactor.Plate
  899. o65.Size = Vector3.new(1.80000007, 1.20000005, 10)
  900. o65.CFrame = CFrame.new(113.418167, 2.40000749, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1)
  901. o65.BackSurface = Enum.SurfaceType.Weld
  902. o65.BottomSurface = Enum.SurfaceType.Weld
  903. o65.FrontSurface = Enum.SurfaceType.Weld
  904. o65.LeftSurface = Enum.SurfaceType.Weld
  905. o65.RightSurface = Enum.SurfaceType.Weld
  906. o65.TopSurface = Enum.SurfaceType.Weld
  907. o65.Color = Color3.new(0.972549, 0.972549, 0.972549)
  908. o66.Parent = o65
  909. o67.Parent = o1
  910. o67.BrickColor = BrickColor.new("Really red")
  911. o67.Position = Vector3.new(113.817245, 4.80000687, 18.3115101)
  912. o67.Rotation = Vector3.new(-0, 0, -3.17145691e-006)
  913. o67.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  914. o67.Velocity = Vector3.new(0.00211816584, -0.000567570096, -0.0073744799)
  915. o67.Anchored = true
  916. o67.FormFactor = Enum.FormFactor.Plate
  917. o67.Size = Vector3.new(1, 1.20000005, 1)
  918. o67.CFrame = CFrame.new(113.817245, 4.80000687, 18.3115101, 1, 5.53523627e-008, 0, -5.53523627e-008, 1, 0, 0, 0, 1)
  919. o67.BackSurface = Enum.SurfaceType.Weld
  920. o67.BottomSurface = Enum.SurfaceType.Weld
  921. o67.FrontSurface = Enum.SurfaceType.Weld
  922. o67.LeftSurface = Enum.SurfaceType.Weld
  923. o67.RightSurface = Enum.SurfaceType.Weld
  924. o67.TopSurface = Enum.SurfaceType.Weld
  925. o67.Color = Color3.new(1, 0, 0)
  926. o68.Parent = o67
  927. o69.Parent = o1
  928. o69.BrickColor = BrickColor.new("Institutional white")
  929. o69.Position = Vector3.new(112.817894, 8.40000725, 13.8115139)
  930. o69.Rotation = Vector3.new(-0, 0, -2.21330401e-006)
  931. o69.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  932. o69.Velocity = Vector3.new(0.00106650498, 0.000165087578, -0.00655480288)
  933. o69.Anchored = true
  934. o69.CanCollide = false
  935. o69.FormFactor = Enum.FormFactor.Plate
  936. o69.Size = Vector3.new(1, 0.400000006, 10)
  937. o69.CFrame = CFrame.new(112.817894, 8.40000725, 13.8115139, 0.999999762, 3.86294303e-008, 0, -3.86821704e-008, 1, 0, 0, 0, 1)
  938. o69.BackSurface = Enum.SurfaceType.Weld
  939. o69.BottomSurface = Enum.SurfaceType.Weld
  940. o69.FrontSurface = Enum.SurfaceType.Weld
  941. o69.LeftSurface = Enum.SurfaceType.Weld
  942. o69.RightSurface = Enum.SurfaceType.Weld
  943. o69.TopSurface = Enum.SurfaceType.Weld
  944. o69.Color = Color3.new(0.972549, 0.972549, 0.972549)
  945. o70.Parent = o69
  946. o71.Parent = o1
  947. o71.BrickColor = BrickColor.new("Really black")
  948. o71.Position = Vector3.new(92.2181854, 3.8000083, 13.8115101)
  949. o71.Rotation = Vector3.new(-0, 0, -2.2601489e-006)
  950. o71.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  951. o71.Velocity = Vector3.new(0.0007340546, 0.00165386556, -0.00122468593)
  952. o71.Anchored = true
  953. o71.FormFactor = Enum.FormFactor.Custom
  954. o71.Size = Vector3.new(0.200000003, 0.800000012, 6)
  955. o71.CFrame = CFrame.new(92.2181854, 3.8000083, 13.8115101, 0.999997854, 3.94469524e-008, 0, -3.99216233e-008, 1, 0, 0, 0, 1)
  956. o71.BackSurface = Enum.SurfaceType.Weld
  957. o71.BottomSurface = Enum.SurfaceType.Weld
  958. o71.FrontSurface = Enum.SurfaceType.Weld
  959. o71.LeftSurface = Enum.SurfaceType.Weld
  960. o71.RightSurface = Enum.SurfaceType.Weld
  961. o71.TopSurface = Enum.SurfaceType.Weld
  962. o71.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  963. o72.Parent = o71
  964. o73.Name = "Head"
  965. o73.Parent = o1
  966. o73.Material = Enum.Material.SmoothPlastic
  967. o73.BrickColor = BrickColor.new("Institutional white")
  968. o73.Position = Vector3.new(99.207077, 7.026577, 15.2047167)
  969. o73.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  970. o73.Anchored = true
  971. o73.FormFactor = Enum.FormFactor.Symmetric
  972. o73.Size = Vector3.new(2, 1, 1)
  973. o73.CFrame = CFrame.new(99.207077, 7.026577, 15.2047167, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  974. o73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  975. o73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  976. o73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  977. o73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  978. o73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  979. o73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  980. o73.Color = Color3.new(0.972549, 0.972549, 0.972549)
  981. o74.Parent = o73
  982. o74.Scale = Vector3.new(1.25, 1.25, 1.25)
  983. o75.Name = "face"
  984. o75.Parent = o73
  985. o75.Texture = "rbxasset://textures/face.png"
  986. o76.Parent = o1
  987. o76.BrickColor = BrickColor.new("Institutional white")
  988. o76.Position = Vector3.new(99.6954269, 5.81500673, 9.31151104)
  989. o76.Rotation = Vector3.new(-0, 0, -8.82515178e-006)
  990. o76.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  991. o76.Velocity = Vector3.new(-0.000432157307, 0.00177390513, -0.00310872309)
  992. o76.Anchored = true
  993. o76.CanCollide = false
  994. o76.FormFactor = Enum.FormFactor.Plate
  995. o76.Size = Vector3.new(2.76000023, 4.82999992, 1)
  996. o76.CFrame = CFrame.new(99.6954269, 5.81500673, 9.31151104, 1, 1.54027958e-007, 0, -1.54027958e-007, 1, 0, 0, 0, 1)
  997. o76.BottomSurface = Enum.SurfaceType.Weld
  998. o76.LeftSurface = Enum.SurfaceType.Weld
  999. o76.RightSurface = Enum.SurfaceType.Weld
  1000. o76.TopSurface = Enum.SurfaceType.Weld
  1001. o76.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1002. o77.Parent = o1
  1003. o77.BrickColor = BrickColor.new("Institutional white")
  1004. o77.Position = Vector3.new(100.909996, 5.80000877, 14.2915134)
  1005. o77.Rotation = Vector3.new(-0, 0, -7.89941078e-006)
  1006. o77.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  1007. o77.Velocity = Vector3.new(0.0010185279, 0.000955246738, -0.00346499542)
  1008. o77.Anchored = true
  1009. o77.FormFactor = Enum.FormFactor.Plate
  1010. o77.Size = Vector3.new(0.200000003, 4.80000019, 9.0199995)
  1011. o77.CFrame = CFrame.new(100.909996, 5.80000877, 14.2915134, 1, 1.37870728e-007, 0, -1.37870728e-007, 1, 0, 0, 0, 1)
  1012. o77.BackSurface = Enum.SurfaceType.Weld
  1013. o77.BottomSurface = Enum.SurfaceType.Weld
  1014. o77.FrontSurface = Enum.SurfaceType.Weld
  1015. o77.LeftSurface = Enum.SurfaceType.Weld
  1016. o77.RightSurface = Enum.SurfaceType.Weld
  1017. o77.TopSurface = Enum.SurfaceType.Weld
  1018. o77.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1019. o78.Parent = o77
  1020. o79.Name = "Head"
  1021. o79.Parent = o1
  1022. o79.Material = Enum.Material.SmoothPlastic
  1023. o79.BrickColor = BrickColor.new("Institutional white")
  1024. o79.Position = Vector3.new(103.10894, 7.49666739, 15.2047167)
  1025. o79.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006)
  1026. o79.Anchored = true
  1027. o79.FormFactor = Enum.FormFactor.Symmetric
  1028. o79.Size = Vector3.new(2, 1, 1)
  1029. o79.CFrame = CFrame.new(103.10894, 7.49666739, 15.2047167, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942)
  1030. o79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1031. o79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1032. o79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1033. o79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1034. o79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1035. o79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1036. o79.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1037. o80.Parent = o79
  1038. o80.Scale = Vector3.new(1.25, 1.25, 1.25)
  1039. o81.Name = "face"
  1040. o81.Parent = o79
  1041. o81.Texture = "rbxasset://textures/face.png"
  1042. o82.Name = "Handle"
  1043. o82.Parent = o1
  1044. o82.Material = Enum.Material.SmoothPlastic
  1045. o82.Position = Vector3.new(103.10894, 7.34666729, 15.2047167)
  1046. o82.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006)
  1047. o82.Anchored = true
  1048. o82.CanCollide = false
  1049. o82.FormFactor = Enum.FormFactor.Symmetric
  1050. o82.Size = Vector3.new(2, 2, 2)
  1051. o82.CFrame = CFrame.new(103.10894, 7.34666729, 15.2047167, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942)
  1052. o82.BottomSurface = Enum.SurfaceType.Smooth
  1053. o82.TopSurface = Enum.SurfaceType.Smooth
  1054. o83.Parent = o82
  1055. o83.MeshId = "http://www.roblox.com/asset/?id=15393031"
  1056. o83.TextureId = "http://www.roblox.com/asset/?id=15393013"
  1057. o83.MeshType = Enum.MeshType.FileMesh
  1058. o84.Parent = o1
  1059. o84.NameOcclusion = Enum.NameOcclusion.NoOcclusion
  1060. o84.RightLeg = o94
  1061. o84.LeftLeg = o96
  1062. o84.Torso = o87
  1063. o84.Health = 0
  1064. o84.MaxHealth = 0
  1065. o85.Name = "TPPART"
  1066. o85.Parent = o1
  1067. o85.Transparency = 1
  1068. o85.Position = Vector3.new(104.155182, 4.24109221, 12.6003485)
  1069. o85.Rotation = Vector3.new(-0, 0, -3.5910773e-006)
  1070. o85.Anchored = true
  1071. o85.CanCollide = false
  1072. o85.Size = Vector3.new(4, 1, 2)
  1073. o85.CFrame = CFrame.new(104.155182, 4.24109221, 12.6003485, 1, 6.26761221e-008, 0, -6.26761221e-008, 1, 0, 0, 0, 1)
  1074. o86.Name = "TPPART2"
  1075. o86.Parent = o1
  1076. o86.Transparency = 1
  1077. o86.Position = Vector3.new(104.155182, 5.40188599, 6.32408237)
  1078. o86.Rotation = Vector3.new(-0, 0, -3.5910773e-006)
  1079. o86.Anchored = true
  1080. o86.CanCollide = false
  1081. o86.Size = Vector3.new(4, 1, 2)
  1082. o86.CFrame = CFrame.new(104.155182, 5.40188599, 6.32408237, 1, 6.26761221e-008, 0, -6.26761221e-008, 1, 0, 0, 0, 1)
  1083. o87.Name = "Torso"
  1084. o87.Parent = o1
  1085. o87.Material = Enum.Material.SmoothPlastic
  1086. o87.BrickColor = BrickColor.new("Navy blue")
  1087. o87.Position = Vector3.new(99.207077, 5.526577, 15.2047167)
  1088. o87.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  1089. o87.Anchored = true
  1090. o87.FormFactor = Enum.FormFactor.Symmetric
  1091. o87.Size = Vector3.new(2, 2, 1)
  1092. o87.CFrame = CFrame.new(99.207077, 5.526577, 15.2047167, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  1093. o87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1094. o87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1095. o87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1096. o87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1097. o87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1098. o87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1099. o87.Color = Color3.new(0, 0.12549, 0.376471)
  1100. o88.Name = "roblox"
  1101. o88.Parent = o87
  1102. o89.Name = "Right Shoulder"
  1103. o89.Parent = o87
  1104. o89.C0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  1105. o89.C1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  1106. o89.Part0 = o87
  1107. o89.Part1 = o95
  1108. o89.DesiredAngle = -0.062025275081396
  1109. o89.MaxVelocity = 0.15000000596046
  1110. o90.Name = "Left Shoulder"
  1111. o90.Parent = o87
  1112. o90.C0 = CFrame.new(-1, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  1113. o90.C1 = CFrame.new(0.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  1114. o90.Part0 = o87
  1115. o90.Part1 = o97
  1116. o90.DesiredAngle = -0.062025275081396
  1117. o90.MaxVelocity = 0.15000000596046
  1118. o91.Name = "Right Hip"
  1119. o91.Parent = o87
  1120. o91.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  1121. o91.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  1122. o91.Part0 = o87
  1123. o91.Part1 = o94
  1124. o91.DesiredAngle = 0.062025275081396
  1125. o91.MaxVelocity = 0.10000000149012
  1126. o92.Name = "Left Hip"
  1127. o92.Parent = o87
  1128. o92.C0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  1129. o92.C1 = CFrame.new(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  1130. o92.Part0 = o87
  1131. o92.Part1 = o96
  1132. o92.DesiredAngle = 0.062025275081396
  1133. o92.MaxVelocity = 0.10000000149012
  1134. o93.Name = "Neck"
  1135. o93.Parent = o87
  1136. o93.C0 = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  1137. o93.C1 = CFrame.new(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  1138. o93.Part0 = o87
  1139. o93.Part1 = o73
  1140. o93.MaxVelocity = 0.10000000149012
  1141. o94.Name = "Right Leg"
  1142. o94.Parent = o1
  1143. o94.Material = Enum.Material.SmoothPlastic
  1144. o94.BrickColor = BrickColor.new("Navy blue")
  1145. o94.Position = Vector3.new(99.215416, 3.526577, 14.7047863)
  1146. o94.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  1147. o94.Anchored = true
  1148. o94.CanCollide = false
  1149. o94.FormFactor = Enum.FormFactor.Symmetric
  1150. o94.Size = Vector3.new(1, 2, 1)
  1151. o94.CFrame = CFrame.new(99.215416, 3.526577, 14.7047863, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  1152. o94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1153. o94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1154. o94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1155. o94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1156. o94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1157. o94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1158. o94.Color = Color3.new(0, 0.12549, 0.376471)
  1159. o95.Name = "Right Arm"
  1160. o95.Parent = o1
  1161. o95.Material = Enum.Material.SmoothPlastic
  1162. o95.BrickColor = BrickColor.new("Maroon")
  1163. o95.Position = Vector3.new(99.2321014, 5.526577, 13.7049236)
  1164. o95.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  1165. o95.Anchored = true
  1166. o95.CanCollide = false
  1167. o95.FormFactor = Enum.FormFactor.Symmetric
  1168. o95.Size = Vector3.new(1, 2, 1)
  1169. o95.CFrame = CFrame.new(99.2321014, 5.526577, 13.7049236, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  1170. o95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1171. o95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1172. o95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1173. o95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1174. o95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1175. o95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1176. o95.Color = Color3.new(0.458824, 0, 0)
  1177. o96.Name = "Left Leg"
  1178. o96.Parent = o1
  1179. o96.Material = Enum.Material.SmoothPlastic
  1180. o96.BrickColor = BrickColor.new("Navy blue")
  1181. o96.Position = Vector3.new(99.1987381, 3.526577, 15.7046452)
  1182. o96.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  1183. o96.Anchored = true
  1184. o96.CanCollide = false
  1185. o96.FormFactor = Enum.FormFactor.Symmetric
  1186. o96.Size = Vector3.new(1, 2, 1)
  1187. o96.CFrame = CFrame.new(99.1987381, 3.526577, 15.7046452, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  1188. o96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1189. o96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1190. o96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1191. o96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1192. o96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1193. o96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1194. o96.Color = Color3.new(0, 0.12549, 0.376471)
  1195. o97.Name = "Left Arm"
  1196. o97.Parent = o1
  1197. o97.Material = Enum.Material.SmoothPlastic
  1198. o97.BrickColor = BrickColor.new("Maroon")
  1199. o97.Position = Vector3.new(99.1820602, 5.526577, 16.7045078)
  1200. o97.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  1201. o97.Anchored = true
  1202. o97.CanCollide = false
  1203. o97.FormFactor = Enum.FormFactor.Symmetric
  1204. o97.Size = Vector3.new(1, 2, 1)
  1205. o97.CFrame = CFrame.new(99.1820602, 5.526577, 16.7045078, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  1206. o97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1207. o97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1208. o97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1209. o97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1210. o97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1211. o97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1212. o97.Color = Color3.new(0.458824, 0, 0)
  1213. o98.Name = "Torso"
  1214. o98.Parent = o1
  1215. o98.Material = Enum.Material.SmoothPlastic
  1216. o98.BrickColor = BrickColor.new("Navy blue")
  1217. o98.Position = Vector3.new(103.10894, 5.99666739, 15.2047167)
  1218. o98.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006)
  1219. o98.Anchored = true
  1220. o98.FormFactor = Enum.FormFactor.Symmetric
  1221. o98.Size = Vector3.new(2, 2, 1)
  1222. o98.CFrame = CFrame.new(103.10894, 5.99666739, 15.2047167, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942)
  1223. o98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1224. o98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1225. o98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1226. o98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1227. o98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1228. o98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1229. o98.Color = Color3.new(0, 0.12549, 0.376471)
  1230. o99.Name = "roblox"
  1231. o99.Parent = o98
  1232. o100.Name = "Right Hip"
  1233. o100.Parent = o98
  1234. o100.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  1235. o100.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  1236. o100.Part0 = o98
  1237. o100.Part1 = o103
  1238. o100.DesiredAngle = 0.062025275081396
  1239. o100.MaxVelocity = 0.10000000149012
  1240. o101.Name = "Left Hip"
  1241. o101.Parent = o98
  1242. o101.C0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  1243. o101.C1 = CFrame.new(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  1244. o101.Part0 = o98
  1245. o101.Part1 = o105
  1246. o101.DesiredAngle = 0.062025275081396
  1247. o101.MaxVelocity = 0.10000000149012
  1248. o102.Name = "Neck"
  1249. o102.Parent = o98
  1250. o102.C0 = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  1251. o102.C1 = CFrame.new(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  1252. o102.Part0 = o98
  1253. o102.Part1 = o79
  1254. o102.MaxVelocity = 0.10000000149012
  1255. o103.Name = "Right Leg"
  1256. o103.Parent = o1
  1257. o103.Material = Enum.Material.SmoothPlastic
  1258. o103.BrickColor = BrickColor.new("Really black")
  1259. o103.Position = Vector3.new(103.608864, 3.99666739, 15.2130556)
  1260. o103.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006)
  1261. o103.Anchored = true
  1262. o103.CanCollide = false
  1263. o103.FormFactor = Enum.FormFactor.Symmetric
  1264. o103.Size = Vector3.new(1, 2, 1)
  1265. o103.CFrame = CFrame.new(103.608864, 3.99666739, 15.2130556, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942)
  1266. o103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1267. o103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1268. o103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1269. o103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1270. o103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1271. o103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1272. o103.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1273. o104.Name = "Right Arm"
  1274. o104.Parent = o1
  1275. o104.Material = Enum.Material.SmoothPlastic
  1276. o104.BrickColor = BrickColor.new("Maroon")
  1277. o104.Position = Vector3.new(104.615349, 5.89646101, 14.8330393)
  1278. o104.Rotation = Vector3.new(45.0039597, -0.675833881, 0.675880313)
  1279. o104.Anchored = true
  1280. o104.CanCollide = false
  1281. o104.FormFactor = Enum.FormFactor.Symmetric
  1282. o104.Size = Vector3.new(1, 2, 1)
  1283. o104.CFrame = CFrame.new(104.615349, 5.89646101, 14.8330393, 0.999860883, -0.0117952423, -0.0117952526, 0, 0.707107067, -0.707106411, 0.0166809987, 0.707008064, 0.707008719)
  1284. o104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1285. o104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1286. o104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1287. o104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1288. o104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1289. o104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1290. o104.Color = Color3.new(0.458824, 0, 0)
  1291. o105.Name = "Left Leg"
  1292. o105.Parent = o1
  1293. o105.Material = Enum.Material.SmoothPlastic
  1294. o105.BrickColor = BrickColor.new("Really black")
  1295. o105.Position = Vector3.new(102.609009, 3.99666739, 15.1963739)
  1296. o105.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006)
  1297. o105.Anchored = true
  1298. o105.CanCollide = false
  1299. o105.FormFactor = Enum.FormFactor.Symmetric
  1300. o105.Size = Vector3.new(1, 2, 1)
  1301. o105.CFrame = CFrame.new(102.609009, 3.99666739, 15.1963739, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942)
  1302. o105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1303. o105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1304. o105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1305. o105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1306. o105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1307. o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1308. o105.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1309. o106.Name = "Left Arm"
  1310. o106.Parent = o1
  1311. o106.Material = Enum.Material.SmoothPlastic
  1312. o106.BrickColor = BrickColor.new("Maroon")
  1313. o106.Position = Vector3.new(101.617271, 5.96075201, 14.6924496)
  1314. o106.Rotation = Vector3.new(45.0039597, -0.675833881, 0.675880313)
  1315. o106.Anchored = true
  1316. o106.CanCollide = false
  1317. o106.FormFactor = Enum.FormFactor.Symmetric
  1318. o106.Size = Vector3.new(1, 2, 1)
  1319. o106.CFrame = CFrame.new(101.617271, 5.96075201, 14.6924496, 0.999860883, -0.0117952423, -0.0117952526, 0, 0.707107067, -0.707106411, 0.0166809987, 0.707008064, 0.707008719)
  1320. o106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1321. o106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1322. o106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1323. o106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1324. o106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1325. o106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1326. o106.Color = Color3.new(0.458824, 0, 0)
  1327. o107.Parent = o1
  1328. o107.Position = Vector3.new(110.917458, 1.50000954, 18.4564953)
  1329. o107.Rotation = Vector3.new(-90, 1.20620803e-006, -180)
  1330. o107.Anchored = true
  1331. o107.FormFactor = Enum.FormFactor.Symmetric
  1332. o107.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986)
  1333. o107.CFrame = CFrame.new(110.917458, 1.50000954, 18.4564953, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008)
  1334. o108.Parent = o107
  1335. o109.Parent = o1
  1336. o109.BrickColor = BrickColor.new("Really black")
  1337. o109.Position = Vector3.new(110.917442, 1.50002527, 9.1665411)
  1338. o109.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006)
  1339. o109.Anchored = true
  1340. o109.FormFactor = Enum.FormFactor.Symmetric
  1341. o109.Size = Vector3.new(3, 1.20000005, 3)
  1342. o109.CFrame = CFrame.new(110.917442, 1.50002527, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009)
  1343. o109.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1344. o110.Parent = o109
  1345. o111.Parent = o1
  1346. o111.BrickColor = BrickColor.new("Really black")
  1347. o111.Position = Vector3.new(110.917458, 1.50000954, 18.4564953)
  1348. o111.Rotation = Vector3.new(-90, 1.20620803e-006, -180)
  1349. o111.Anchored = true
  1350. o111.FormFactor = Enum.FormFactor.Symmetric
  1351. o111.Size = Vector3.new(3, 1.20000005, 3)
  1352. o111.CFrame = CFrame.new(110.917458, 1.50000954, 18.4564953, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008)
  1353. o111.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1354. o112.Parent = o111
  1355. o113.Parent = o1
  1356. o113.Position = Vector3.new(95.3486252, 1.50002623, 9.1665411)
  1357. o113.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006)
  1358. o113.Anchored = true
  1359. o113.FormFactor = Enum.FormFactor.Symmetric
  1360. o113.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986)
  1361. o113.CFrame = CFrame.new(95.3486252, 1.50002623, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009)
  1362. o114.Parent = o113
  1363. o115.Parent = o1
  1364. o115.BrickColor = BrickColor.new("Really black")
  1365. o115.Position = Vector3.new(95.3486252, 1.50002623, 9.1665411)
  1366. o115.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006)
  1367. o115.Anchored = true
  1368. o115.FormFactor = Enum.FormFactor.Symmetric
  1369. o115.Size = Vector3.new(3, 1.20000005, 3)
  1370. o115.CFrame = CFrame.new(95.3486252, 1.50002623, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009)
  1371. o115.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1372. o116.Parent = o115
  1373. o117.Parent = o1
  1374. o117.BrickColor = BrickColor.new("Really black")
  1375. o117.Position = Vector3.new(95.3486252, 1.50001001, 18.4564877)
  1376. o117.Rotation = Vector3.new(-90, 1.20620803e-006, -180)
  1377. o117.Anchored = true
  1378. o117.FormFactor = Enum.FormFactor.Symmetric
  1379. o117.Size = Vector3.new(3, 1.20000005, 3)
  1380. o117.CFrame = CFrame.new(95.3486252, 1.50001001, 18.4564877, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008)
  1381. o117.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1382. o118.Parent = o117
  1383. o119.Parent = o1
  1384. o119.Position = Vector3.new(110.917442, 1.50002527, 9.1665411)
  1385. o119.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006)
  1386. o119.Anchored = true
  1387. o119.FormFactor = Enum.FormFactor.Symmetric
  1388. o119.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986)
  1389. o119.CFrame = CFrame.new(110.917442, 1.50002527, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009)
  1390. o120.Parent = o119
  1391. o121.Name = "Handle"
  1392. o121.Parent = o1
  1393. o121.Material = Enum.Material.SmoothPlastic
  1394. o121.Position = Vector3.new(99.207077, 6.8765769, 15.2047167)
  1395. o121.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  1396. o121.Anchored = true
  1397. o121.CanCollide = false
  1398. o121.FormFactor = Enum.FormFactor.Symmetric
  1399. o121.Size = Vector3.new(2, 2, 2)
  1400. o121.CFrame = CFrame.new(99.207077, 6.8765769, 15.2047167, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  1401. o121.BottomSurface = Enum.SurfaceType.Smooth
  1402. o121.TopSurface = Enum.SurfaceType.Smooth
  1403. o122.Parent = o121
  1404. o122.MeshId = "http://www.roblox.com/asset/?id=15393031"
  1405. o122.TextureId = "http://www.roblox.com/asset/?id=15393013"
  1406. o122.MeshType = Enum.MeshType.FileMesh
  1407. o123.Name = "RPPART"
  1408. o123.Parent = o1
  1409. o123.Transparency = 1
  1410. o123.Position = Vector3.new(103.454132, 5.33460093, 13.0707426)
  1411. o123.Rotation = Vector3.new(-90, 0, -0)
  1412. o123.Anchored = true
  1413. o123.CanCollide = false
  1414. o123.Size = Vector3.new(4, 1, 2)
  1415. o123.CFrame = CFrame.new(103.454132, 5.33460093, 13.0707426, 1, 0, 0, 0, 0, 1, 0, -1, 0)
  1416. o124.Parent = o12
  1417. o124.Texture = "http://roblox.com/asset/?id=112031763"
  1418. function MoveY(model, Position)
  1419. for _,part in pairs (model:GetChildren()) do
  1420. if part.ClassName == "Part" then
  1421. part.CFrame = part.CFrame + Vector3.new(0,Position,0)
  1422. end
  1423. end
  1424. end
  1425. function MoveX(model, Position)
  1426. for _,part in pairs (model:GetChildren()) do
  1427. if part.ClassName == "Part" then
  1428. part.CFrame = part.CFrame + Vector3.new(Position,0,0)
  1429. end
  1430. end
  1431. end
  1432. function MoveSpawn(model, PLAYERPOS)
  1433. for _,part in pairs (model:GetChildren()) do
  1434. if part.ClassName == "Part" then
  1435. part.CFrame = part.CFrame + PLAYERPOS + Vector3.new(50,-2.7,-5)
  1436. end
  1437. end
  1438. end
  1439. function MoveZ(model, Position)
  1440. for _,part in pairs (model:GetChildren()) do
  1441. if part.ClassName == "Part" then
  1442. part.CFrame = part.CFrame + Vector3.new(0,0,Position)
  1443. end
  1444. end
  1445. end
  1446. function MoveZPart(Part, Position)
  1447. Part.CFrame = Part.CFrame + Vector3.new(0,0,Position)
  1448. end
  1449. function MoveXPart(Part, Position)
  1450. Part.CFrame = Part.CFrame + Vector3.new(Position,0,0)
  1451. end
  1452. game.Players[Victim].Character.HumanoidRootPart.Anchored = true
  1453. OMGCREEPY = Instance.new("Sound")
  1454. OMGCREEPY.Parent = o1
  1455. OMGCREEPY.Volume = 10
  1456. OMGCREEPY.SoundId = "rbxassetid://177775134"
  1457. for i,v in pairs (o1:GetChildren()) do
  1458. if v:IsA("Part") then
  1459. v.Material = "SmoothPlastic"
  1460. v.BackSurface = "SmoothNoOutlines"
  1461. v.FrontSurface = "SmoothNoOutlines"
  1462. v.BottomSurface = "SmoothNoOutlines"
  1463. v.LeftSurface = "SmoothNoOutlines"
  1464. v.RightSurface = "SmoothNoOutlines"
  1465. v.TopSurface = "SmoothNoOutlines"
  1466. end
  1467. end
  1468. OMGCREEPY:Play()
  1469. o21:Play()
  1470. MoveSpawn(o1,game.Players[Victim].Character.HumanoidRootPart.Position)
  1471. for i=1,51 do
  1472. MoveX(o1,-3)
  1473. wait(.05)
  1474. end
  1475. wait(.5)
  1476. MoveZPart(o12,-1)
  1477. wait(.2)
  1478. for i=1,6 do
  1479. MoveXPart(o12,1)
  1480. wait(.1)
  1481. end
  1482. wait(.5)
  1483. game.Players[Victim].Character.HumanoidRootPart.CFrame = o86.CFrame
  1484. wait(.5)
  1485. game.Players[Victim].Character.HumanoidRootPart.CFrame = o85.CFrame
  1486. wait(.5)
  1487. MoveZPart(o12,1)
  1488. wait(.2)
  1489.  
  1490. for i=1,6 do
  1491. MoveXPart(o12,-1)
  1492. wait(.1)
  1493. end
  1494. for i=1,50 do
  1495. MoveX(o1,-3)
  1496. game.Players[Victim].Character.HumanoidRootPart.CFrame = o85.CFrame
  1497. wait(.05)
  1498. end
  1499. game.Players[Victim].Character.Head.face.Texture = "rbxassetid://629925029"
  1500. game.Players[Victim].Character.HumanoidRootPart.CFrame = o123.CFrame
  1501. SCREAM = Instance.new("Sound")
  1502. SCREAM.Parent = game.Players[Victim].Character.Head
  1503. SCREAM.SoundId = "rbxassetid://138167455"
  1504. SCREAM:Play()
  1505. wait(2.5)
  1506. game.Players[Victim].Character.Head.BrickColor = BrickColor.new("Maroon")
  1507. MoveZPart(o12,-1)
  1508. wait(.2)
  1509. for i=1,6 do
  1510. MoveXPart(o12,1)
  1511. wait(.1)
  1512. end
  1513. wait(.5)
  1514. game.Players[Victim].Character.HumanoidRootPart.CFrame = o86.CFrame
  1515. wait(.5)
  1516. MoveZPart(o12,1)
  1517. wait(.2)
  1518. for i=1,6 do
  1519. MoveXPart(o12,-1)
  1520. wait(.1)
  1521. end
  1522. game.Players[Victim].Character.Humanoid.Health = 0
  1523. player = game.Players[Victim]
  1524. char = player.Character
  1525. char.Archivable = true
  1526. local rg = char:Clone()
  1527. rg.HumanoidRootPart:Destroy()
  1528. rg.Name = ""
  1529. rg.Humanoid.MaxHealth = 0
  1530. for i, v in pairs(rg.Torso:GetChildren()) do
  1531. if v:IsA("Motor6D") then
  1532. v:Destroy()
  1533. end
  1534. end
  1535.  
  1536. local n = Instance.new("Glue", rg.Torso)
  1537. n.Name = "Neck"
  1538. n.Part0 = rg.Torso
  1539. n.Part1 = rg.Head
  1540. n.C0 = CFrame.new(0, 1, 0)
  1541. n.C1 = CFrame.new(0, -0.5, 0)
  1542.  
  1543. local rs = Instance.new("Glue", rg.Torso)
  1544. rs.Name = "Right Shoulder"
  1545. rs.Part0 = rg.Torso
  1546. rs.Part1 = rg["Right Arm"]
  1547. rs.C0 = CFrame.new(1.5, 0.5, 0)
  1548. rs.C1 = CFrame.new(0, 0.5, 0)
  1549. local ls = Instance.new("Glue", rg.Torso)
  1550. ls.Name = "Left Shoulder"
  1551. ls.Part0 = rg.Torso
  1552. ls.Part1 = rg["Left Arm"]
  1553. ls.C0 = CFrame.new(-1.5, 0.5, 0)
  1554. ls.C1 = CFrame.new(0, 0.5, 0)
  1555.  
  1556. local rh = Instance.new("Glue", rg.Torso)
  1557. rh.Name = "Right Hip"
  1558. rh.Part0 = rg.Torso
  1559. rh.Part1 = rg["Right Leg"]
  1560. rh.C0 = CFrame.new(0.5, -1, 0)
  1561. rh.C1 = CFrame.new(0, 1, 0)
  1562. local lh = Instance.new("Glue", rg.Torso)
  1563. lh.Name = "Left Hip"
  1564. lh.Part0 = rg.Torso
  1565. lh.Part1 = rg["Left Leg"]
  1566. lh.C0 = CFrame.new(-0.5, -1, 0)
  1567. lh.C1 = CFrame.new(0, 1, 0)
  1568. char.Torso:Destroy()
  1569. char.Head:Destroy()
  1570. char["Left Leg"]:Destroy()
  1571. char["Left Arm"]:Destroy()
  1572. char["Right Leg"]:Destroy()
  1573. char["Right Arm"]:Destroy()
  1574. rg.Parent = game.Workspace
  1575. rg.Head.BrickColor = BrickColor.new("Maroon")
  1576. function DEATH ()
  1577. OHHNELLY = Instance.new("Part")
  1578. OHHNELLY.Parent = workspace
  1579. OHHNELLY.Anchored = false
  1580. OHHNELLY.Material = Enum.Material.SmoothPlastic
  1581. OHHNELLY.BrickColor = BrickColor.new("Maroon")
  1582. OHHNELLY.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1583. OHHNELLY.Position = rg.Head.Position
  1584. OHHNELLY.Color = Color3.new(0.458824, 0, 0)
  1585. OHHNELLY.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1586. OHHNELLY.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1587. OHHNELLY.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1588. OHHNELLY.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1589. OHHNELLY.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1590. OHHNELLY.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1591. end
  1592. for i=1,20 do
  1593. DEATH()
  1594. MoveX(o1,-3)
  1595. wait(.05)
  1596. end
  1597. o1:Destroy()
  1598. end)
  1599. end)
  1600. TextButton_8.Parent = GUIFrame
  1601. TextButton_8.BackgroundColor3 = Color3.new(1, 0.0784314, 0.196078)
  1602. TextButton_8.Position = UDim2.new(0, 245, 0, 149)
  1603. TextButton_8.Size = UDim2.new(0, 178, 0, 88)
  1604. TextButton_8.Font = Enum.Font.SciFi
  1605. TextButton_8.FontSize = Enum.FontSize.Size14
  1606. TextButton_8.Text = "Grab Knife"
  1607. TextButton_8.TextScaled = true
  1608. TextButton_8.TextSize = 14
  1609. TextButton_8.TextWrapped = true
  1610.  
  1611. TextButton_8.MouseButton1Down:connect(function()
  1612. math.randomseed(tick())
  1613. local player = game.Players.LocalPlayer
  1614. local rekt = {}
  1615. local paralyzed = false
  1616. local curpoint = nil
  1617. local curpart = nil
  1618. local finishnum = 1
  1619. local zombiemode = false
  1620. local zombies = {}
  1621. local lastgui = nil
  1622. local mouse = player:GetMouse()
  1623.  
  1624. function getplr(char)
  1625. local plr = nil
  1626. for i,v in pairs(game.Players:GetChildren()) do
  1627. if v.Character == char then
  1628. plr = v
  1629. end
  1630. end
  1631. return plr
  1632. end
  1633.  
  1634. function bleed(frick)
  1635. while frick.Parent ~= nil do
  1636. local reeee = coroutine.wrap(function()
  1637. local thing = Instance.new('Part',game.Workspace)
  1638. thing.Size = Vector3.new(0.2,0.2,0.2)
  1639. thing.CFrame = frick.CFrame
  1640. thing.Shape = Enum.PartType.Ball
  1641. thing.CFrame = frick.CFrame
  1642. thing.Transparency = 1
  1643. thing.BrickColor = BrickColor.new('Maroon')
  1644. thing.Material = Enum.Material.SmoothPlastic
  1645. thing.Name = "Blood"
  1646. thing.CanCollide =false
  1647. local rawrxd = Instance.new('BodyForce',thing)
  1648. rawrxd.Force = frick.CFrame.upVector*(math.random()*2)+Vector3.new(math.random(-5, 5)/10,1.5,0)
  1649. local coru = coroutine.wrap(function()
  1650. wait(0.01)
  1651. rawrxd:Destroy()
  1652. end)
  1653. coru()
  1654. local ree = Instance.new('ParticleEmitter',thing)
  1655. ree.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Color3.fromRGB(100,0,0)),ColorSequenceKeypoint.new(1,Color3.fromRGB(100,0,0))})
  1656. ree.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,0.1),NumberSequenceKeypoint.new(1,0.1)})
  1657. ree.Texture = 'rbxassetid://867743272'
  1658. ree.Lifetime = NumberRange.new(0.4)
  1659. ree.Rate = 50
  1660. ree.LockedToPart = true
  1661. ree.Speed = NumberRange.new(0, 2)
  1662.  
  1663. thing.Touched:connect(function(tou)
  1664. 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
  1665. local pos = Vector3.new(thing.Position.X,(tou.Position.Y+(tou.Size.Y/2))+0.02,thing.Position.Z)
  1666. thing:Destroy()
  1667. if tou.Name == "BloodPuddle" then
  1668. local reee = tou.CFrame
  1669. if tou.Transparency > -0.2 then
  1670. tou.Transparency = tou.Transparency -0.1
  1671. end
  1672. if tou.Size.X < 10 then
  1673. tou.Size = tou.Size+Vector3.new(0.1,0,0.1)
  1674. tou.CFrame = reee
  1675. end
  1676. else
  1677. local bloodlol = Instance.new('Part',workspace)
  1678. bloodlol.Size=Vector3.new(1,0.2,1)
  1679. bloodlol.Name = "BloodPuddle"
  1680. bloodlol.Anchored = true
  1681. bloodlol.CanCollide = false
  1682. bloodlol.Material = Enum.Material.SmoothPlastic
  1683. bloodlol.BrickColor = BrickColor.new('Maroon')
  1684. local cyl = Instance.new('CylinderMesh',bloodlol)
  1685. cyl.Scale = Vector3.new(1,0.1,1)
  1686. bloodlol.CFrame = CFrame.new(pos)
  1687. local coru=coroutine.wrap(function()
  1688. while bloodlol.Parent ~= nil do
  1689. if bloodlol.Transparency < 1 then
  1690. bloodlol.Transparency = bloodlol.Transparency+0.05
  1691. else
  1692. bloodlol:Destroy()
  1693. end
  1694. wait(0.1)
  1695. end
  1696. end)
  1697. coru()
  1698. end
  1699. end
  1700. end)
  1701. local coru = coroutine.wrap(function()
  1702. wait(1)
  1703. thing:Destroy()
  1704. end)
  1705. coru()
  1706. end)
  1707. reeee()
  1708. wait()
  1709. end
  1710. end
  1711.  
  1712. function killz(playa,hitz,kneef,explode,pool,head,charred,override)
  1713. local soundy = false
  1714. local heyy = hitz
  1715. if hitz == "Right Arm" then
  1716. local Limb = playa:FindFirstChild("Right Arm")
  1717. local ters = playa:FindFirstChild('Torso')
  1718. if Limb and ters then
  1719. if ters:FindFirstChild('Right Shoulder') then ters["Right Shoulder"]:Destroy() end
  1720. for i,v in pairs(Limb:GetChildren()) do
  1721. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  1722. v:Destroy()
  1723. end
  1724. end
  1725. Limb.CFrame = ters.CFrame * CFrame.new(1.5, 0, 0)
  1726. local Joint = Instance.new("Rotate")
  1727. Joint.Name = "RightShoulder"
  1728. Joint.Part0 = ters
  1729. Joint.Part1 = Limb
  1730. Joint.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  1731. Joint.C1 = CFrame.new(-0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  1732. Joint.Parent = ters
  1733. if charred and zombiemode == false then
  1734. Limb.BrickColor = BrickColor.new('Black')
  1735. local fire = Instance.new('Fire',Limb)
  1736. fire.Heat = 5
  1737. fire.Size = 5
  1738. game:GetService('Debris'):AddItem(fire,2)
  1739. local coru=coroutine.wrap(function()
  1740. wait(2)
  1741. for i,v in pairs(Limb:GetChildren()) do
  1742. if v:IsA('ParticleEmitter') then
  1743. v:Destroy()
  1744. end
  1745. end
  1746. end)
  1747. coru()
  1748. end
  1749. local B = Instance.new("Part")
  1750. B.TopSurface = 0
  1751. B.BottomSurface = 0
  1752. B.formFactor = "Symmetric"
  1753. B.Size = Vector3.new(1, 1, 1)
  1754. B.Transparency = 1
  1755. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  1756. B.Parent = playa
  1757. local W = Instance.new("Weld")
  1758. W.Part0 = Limb
  1759. W.Part1 = B
  1760. W.C0 = CFrame.new(0, -0.5, 0)
  1761. W.Parent = Limb
  1762. if kneef then
  1763. local coru = coroutine.wrap(function()
  1764. local uno = Instance.new('Part',workspace)
  1765. local dos = Instance.new('Part',workspace)
  1766. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  1767. dos.CFrame = kneef["big ass knife"].CFrame
  1768. local weld = Instance.new('Weld',kneef["big ass knife"])
  1769. weld.Part0 = playa:FindFirstChild(hitz)
  1770. weld.Part1 = kneef["big ass knife"]
  1771. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  1772. uno:Destroy()
  1773. dos:Destroy()
  1774. playa:FindFirstChild(hitz).Anchored = false
  1775. for i, v in pairs(kneef:GetChildren()) do
  1776. if v:IsA('BasePart') then
  1777. v.Anchored = false
  1778. end
  1779. end
  1780. if zombiemode == false or override then
  1781. wait()
  1782. end
  1783. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  1784. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  1785. end
  1786. local bleedpart = Instance.new("Part", kneef)
  1787. bleedpart.CanCollide = false
  1788. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  1789. bleedpart.CFrame = kneef["big ass knife"].CFrame
  1790. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  1791. bleedpart.Transparency = 1
  1792.  
  1793. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  1794. bleedpartweld.Part0 = kneef["big ass knife"]
  1795. bleedpartweld.Part1 = bleedpart
  1796. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  1797. local coru = coroutine.wrap(function()
  1798. bleed(bleedpart)
  1799. end)
  1800. coru()
  1801. game:GetService('Debris'):AddItem(bleedpart,2)
  1802. end)
  1803. coru()
  1804. end
  1805. end
  1806. elseif hitz == "Left Arm" then
  1807. local Limb = playa:FindFirstChild("Left Arm")
  1808. local ters = playa:FindFirstChild('Torso')
  1809. if Limb and ters then
  1810. if ters:FindFirstChild('Left Shoulder') then ters["Left Shoulder"]:Destroy() end
  1811. for i,v in pairs(Limb:GetChildren()) do
  1812. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  1813. v:Destroy()
  1814. end
  1815. end
  1816. Limb.CFrame = ters.CFrame * CFrame.new(-1.5, 0, 0)
  1817. local Joint = Instance.new("Rotate")
  1818. Joint.Name = "LeftShoulder"
  1819. Joint.Part0 = ters
  1820. Joint.Part1 = Limb
  1821. Joint.C0 = CFrame.new(-1.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  1822. Joint.C1 = CFrame.new(0, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  1823. Joint.Parent = ters
  1824. if charred and zombiemode == false then
  1825. Limb.BrickColor = BrickColor.new('Black')
  1826. local fire = Instance.new('Fire',Limb)
  1827. fire.Heat = 5
  1828. fire.Size = 5
  1829. game:GetService('Debris'):AddItem(fire,2)
  1830. local coru=coroutine.wrap(function()
  1831. wait(2)
  1832. for i,v in pairs(Limb:GetChildren()) do
  1833. if v:IsA('ParticleEmitter') then
  1834. v:Destroy()
  1835. end
  1836. end
  1837. end)
  1838. coru()
  1839. end
  1840.  
  1841. local B = Instance.new("Part")
  1842. B.TopSurface = 0
  1843. B.BottomSurface = 0
  1844. B.formFactor = "Symmetric"
  1845. B.Size = Vector3.new(1, 1, 1)
  1846. B.CanCollide = true
  1847. B.Transparency = 1
  1848. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  1849. B.Parent = playa
  1850. local W = Instance.new("Weld")
  1851. W.Part0 = ters
  1852. W.Part1 = B
  1853. W.C0 = CFrame.new(0, -0.5, 0)
  1854. W.Parent = Limb
  1855. if kneef then
  1856. local coru = coroutine.wrap(function()
  1857. local uno = Instance.new('Part',workspace)
  1858. local dos = Instance.new('Part',workspace)
  1859. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  1860. dos.CFrame = kneef["big ass knife"].CFrame
  1861. local weld = Instance.new('Weld',kneef["big ass knife"])
  1862. weld.Part0 = playa:FindFirstChild(hitz)
  1863. weld.Part1 = kneef["big ass knife"]
  1864. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  1865. uno:Destroy()
  1866. dos:Destroy()
  1867. playa:FindFirstChild(hitz).Anchored = false
  1868. for i, v in pairs(kneef:GetChildren()) do
  1869. if v:IsA('BasePart') then
  1870. v.Anchored = false
  1871. end
  1872. end
  1873. if zombiemode == false or override then
  1874. wait()
  1875. end
  1876. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  1877. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  1878. end
  1879. local bleedpart = Instance.new("Part", kneef)
  1880. bleedpart.CanCollide = false
  1881. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  1882. bleedpart.CFrame = kneef["big ass knife"].CFrame
  1883. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  1884. bleedpart.Transparency = 1
  1885.  
  1886. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  1887. bleedpartweld.Part0 = kneef["big ass knife"]
  1888. bleedpartweld.Part1 = bleedpart
  1889. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  1890. local coru = coroutine.wrap(function()
  1891. bleed(bleedpart)
  1892. end)
  1893. coru()
  1894. game:GetService('Debris'):AddItem(bleedpart,2)
  1895. end)
  1896. coru()
  1897. end
  1898. end
  1899. elseif hitz == "Right Leg" then
  1900. local Limb = playa:FindFirstChild("Right Leg")
  1901. local ters = playa:FindFirstChild('Torso')
  1902. if Limb and ters then
  1903. if ters:FindFirstChild('Right Hip') then ters["Right Hip"]:Destroy() end
  1904. for i,v in pairs(Limb:GetChildren()) do
  1905. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  1906. v:Destroy()
  1907. end
  1908. end
  1909. Limb.CFrame = ters.CFrame * CFrame.new(0.5, -2, 0)
  1910. local Joint = Instance.new("Rotate")
  1911. Joint.Name = "Right Hip"
  1912. Joint.Part0 = ters
  1913. Joint.Part1 = Limb
  1914. Joint.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  1915. Joint.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  1916. Joint.Parent = ters
  1917. if charred and zombiemode == false then
  1918. Limb.BrickColor = BrickColor.new('Black')
  1919. local fire = Instance.new('Fire',Limb)
  1920. fire.Heat = 5
  1921. fire.Size = 5
  1922. game:GetService('Debris'):AddItem(fire,2)
  1923. local coru=coroutine.wrap(function()
  1924. wait(2)
  1925. for i,v in pairs(Limb:GetChildren()) do
  1926. if v:IsA('ParticleEmitter') then
  1927. v:Destroy()
  1928. end
  1929. end
  1930. end)
  1931. coru()
  1932. end
  1933. local B = Instance.new("Part")
  1934. B.TopSurface = 0
  1935. B.BottomSurface = 0
  1936. B.formFactor = "Symmetric"
  1937. B.Size = Vector3.new(1, 1, 1)
  1938. B.Transparency = 1
  1939. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  1940. B.Parent = playa
  1941. local W = Instance.new("Weld")
  1942. W.Part0 = Limb
  1943. W.Part1 = B
  1944. W.C0 = CFrame.new(0, -0.5, 0)
  1945. W.Parent = Limb
  1946. if kneef then
  1947. local coru = coroutine.wrap(function()
  1948. local uno = Instance.new('Part',workspace)
  1949. local dos = Instance.new('Part',workspace)
  1950. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  1951. dos.CFrame = kneef["big ass knife"].CFrame
  1952. local weld = Instance.new('Weld',kneef["big ass knife"])
  1953. weld.Part0 = playa:FindFirstChild(hitz)
  1954. weld.Part1 = kneef["big ass knife"]
  1955. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  1956. uno:Destroy()
  1957. dos:Destroy()
  1958. playa:FindFirstChild(hitz).Anchored = false
  1959. for i, v in pairs(kneef:GetChildren()) do
  1960. if v:IsA('BasePart') then
  1961. v.Anchored = false
  1962. end
  1963. end
  1964. if zombiemode == false or override then
  1965. wait()
  1966. end
  1967. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  1968. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  1969. end
  1970. local bleedpart = Instance.new("Part", kneef)
  1971. bleedpart.CanCollide = false
  1972. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  1973. bleedpart.CFrame = kneef["big ass knife"].CFrame
  1974. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  1975. bleedpart.Transparency = 1
  1976.  
  1977. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  1978. bleedpartweld.Part0 = kneef["big ass knife"]
  1979. bleedpartweld.Part1 = bleedpart
  1980. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  1981. local coru = coroutine.wrap(function()
  1982. bleed(bleedpart)
  1983. end)
  1984. coru()
  1985. game:GetService('Debris'):AddItem(bleedpart,2)
  1986. end)
  1987. coru()
  1988. end
  1989. if playa then
  1990. table.insert(rekt,playa)
  1991. end
  1992. end
  1993. elseif hitz == "Left Leg" then
  1994. local Limb = playa:FindFirstChild("Left Leg")
  1995. local ters = playa:FindFirstChild('Torso')
  1996. if Limb and ters then
  1997. if ters:FindFirstChild('Left Hip') then ters["Left Hip"]:Destroy() end
  1998. for i,v in pairs(Limb:GetChildren()) do
  1999. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  2000. v:Destroy()
  2001. end
  2002. end
  2003. Limb.CFrame = ters.CFrame * CFrame.new(0.5, -2, 0)
  2004. Limb.CFrame = ters.CFrame * CFrame.new(-0.5, -2, 0)
  2005. local Joint = Instance.new("Rotate")
  2006. Joint.Name = "LeftHip"
  2007. Joint.Part0 = ters
  2008. Joint.Part1 = Limb
  2009. Joint.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  2010. Joint.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  2011. Joint.Parent = ters
  2012. if charred and zombiemode == false then
  2013. Limb.BrickColor = BrickColor.new('Black')
  2014. local fire = Instance.new('Fire',Limb)
  2015. fire.Heat = 5
  2016. fire.Size = 5
  2017. game:GetService('Debris'):AddItem(fire,2)
  2018. local coru=coroutine.wrap(function()
  2019. wait(2)
  2020. for i,v in pairs(Limb:GetChildren()) do
  2021. if v:IsA('ParticleEmitter') then
  2022. v:Destroy()
  2023. end
  2024. end
  2025. end)
  2026. coru()
  2027. end
  2028.  
  2029. local B = Instance.new("Part")
  2030. B.TopSurface = 0
  2031. B.BottomSurface = 0
  2032. B.formFactor = "Symmetric"
  2033. B.Size = Vector3.new(1, 1, 1)
  2034. B.Transparency = 1
  2035. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  2036. B.Parent = playa
  2037. local W = Instance.new("Weld")
  2038. W.Part0 = Limb
  2039. W.Part1 = B
  2040. W.C0 = CFrame.new(0, -0.5, 0)
  2041. W.Parent = Limb
  2042. Limb.CanCollide = false
  2043. if kneef then
  2044. local coru = coroutine.wrap(function()
  2045. local uno = Instance.new('Part',workspace)
  2046. local dos = Instance.new('Part',workspace)
  2047. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  2048. dos.CFrame = kneef["big ass knife"].CFrame
  2049. local weld = Instance.new('Weld',kneef["big ass knife"])
  2050. weld.Part0 = playa:FindFirstChild(hitz)
  2051. weld.Part1 = kneef["big ass knife"]
  2052. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  2053. uno:Destroy()
  2054. dos:Destroy()
  2055. playa:FindFirstChild(hitz).Anchored = false
  2056. for i, v in pairs(kneef:GetChildren()) do
  2057. if v:IsA('BasePart') then
  2058. v.Anchored = false
  2059. end
  2060. end
  2061. if zombiemode == false or override then
  2062. wait()
  2063. end
  2064. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  2065. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  2066. end
  2067. local bleedpart = Instance.new("Part", kneef)
  2068. bleedpart.CanCollide = false
  2069. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  2070. bleedpart.CFrame = kneef["big ass knife"].CFrame
  2071. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  2072. bleedpart.Transparency = 1
  2073.  
  2074. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  2075. bleedpartweld.Part0 = kneef["big ass knife"]
  2076. bleedpartweld.Part1 = bleedpart
  2077. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  2078. local coru = coroutine.wrap(function()
  2079. bleed(bleedpart)
  2080. end)
  2081. coru()
  2082. game:GetService('Debris'):AddItem(bleedpart,2)
  2083. end)
  2084. coru()
  2085. end
  2086. if playa then
  2087. table.insert(rekt,playa)
  2088. end
  2089. end
  2090. elseif playa then
  2091. if finishnum ~= 1 then
  2092. local coru=coroutine.wrap(function()
  2093. player.Character.Head.Psycho.Playing = true
  2094. wait(3)
  2095. player.Character.Head.Psycho.Playing = false
  2096. end)
  2097. coru()
  2098. end
  2099. local playa2 = playa
  2100. playa.Archivable = true
  2101. local playa = playa:Clone()
  2102. playa.Archivable = false
  2103. playa2:Destroy()
  2104. playa.Parent = workspace
  2105. local Gibs = game.Workspace
  2106. local Torso = playa.Torso
  2107. local Head = playa:FindFirstChild("Head")
  2108. local function Scan(ch)
  2109. local e
  2110. for e = 1,#ch do
  2111. Scan(ch[e]:GetChildren())
  2112. 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
  2113. ch[e]:remove()
  2114. end
  2115. end
  2116. end
  2117. Scan(playa:GetChildren())
  2118. if playa:FindFirstChild('HumanoidRootPart') and (zombiemode == false or override) then
  2119. playa:FindFirstChild('HumanoidRootPart'):Destroy()
  2120. end
  2121. local hum2 = playa:FindFirstChildOfClass("Humanoid")
  2122. if zombiemode == true and override == false then
  2123. soundy = true
  2124. end
  2125. if string.sub(hum2.Parent.Name,string.len(hum2.Parent.Name)-8,string.len(hum2.Parent.Name)) ~= "'s Zombie" then
  2126. override = true
  2127. end
  2128. if hum2 ~= nil then
  2129. hum2.Name = "Humanoid2"
  2130. hum2.Health = 0
  2131. if zombiemode == false or override == true then
  2132. table.insert(rekt,hum2.Parent)
  2133. else
  2134. local gyro = Instance.new('BodyGyro',Torso)
  2135. hum2.PlatformStand = false
  2136. for i,v in pairs(hum2.Parent.Torso:GetChildren()) do
  2137. if v:IsA('BodyGyro') then v:Destroy() end
  2138. end
  2139. if playa:FindFirstChild('HumanoidRootPart') then
  2140. hum2.Parent.HumanoidRootPart.CFrame = hum2.Parent.Torso.CFrame
  2141. local weldcrucial = Instance.new('Weld',hum2.Parent.HumanoidRootPart)
  2142. weldcrucial.Part0 = hum2.Parent.HumanoidRootPart
  2143. weldcrucial.Part1 = hum2.Parent.Torso
  2144. end
  2145. end
  2146. end
  2147. local ch = playa:GetChildren()
  2148. local i
  2149. for i = 1,#ch do
  2150. if ch[i].Name == "THandle1" or ch[i].Name == "THandle2" then
  2151. ch[i]:remove()
  2152. end
  2153. end
  2154.  
  2155. if Head then
  2156. local Neck = Instance.new("Weld")
  2157. Neck.Name = "Neck"
  2158. Neck.Part0 = Torso
  2159. Neck.Part1 = Head
  2160. if pool then
  2161. local part = Instance.new('Part',Torso)
  2162. part.Position = Vector3.new(0,10,0)
  2163. part.Size = Vector3.new(0.2,0.2,0.2)
  2164. part.Transparency = 1
  2165. part.CanCollide = false
  2166. local we = Instance.new('Weld',Torso)
  2167. we.Part0 = Torso
  2168. we.Part1 = part
  2169. we.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  2170. local coru=coroutine.wrap(function()
  2171. bleed(part)
  2172. end)
  2173. coru()
  2174. end
  2175. if head == false or head == nil then
  2176. Neck.C0 = CFrame.new(0, 1.5, 0)
  2177. else
  2178. Neck.C0 = CFrame.new(0, 1.5, 0.2)*CFrame.Angles(0.5, 0.25, 0.25)
  2179. local bleedpart = Instance.new("Part", Torso)
  2180. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  2181. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  2182. bleedpart.CanCollide = false
  2183. bleedpart.Position = Head.Position + Vector3.new(0, 1, 0)
  2184. bleedpart.Transparency = 1
  2185.  
  2186. local bleedpartweld = Instance.new("Weld", Torso)
  2187. bleedpartweld.Part0 = Torso
  2188. bleedpartweld.Part1 = bleedpart
  2189. bleedpartweld.C0 = CFrame.Angles(-1, 0, -0.35) * CFrame.new(0, 1, 0.8)
  2190. local coru = coroutine.wrap(function()
  2191. bleed(bleedpart)
  2192. end)
  2193. coru()
  2194. end
  2195. Neck.C1 = CFrame.new()
  2196. Neck.Parent = Torso
  2197. end
  2198. local Limb = playa:FindFirstChild("Right Arm")
  2199. if Limb then
  2200.  
  2201. Limb.CFrame = Torso.CFrame * CFrame.new(1.5, 0, 0)
  2202. local Joint = Instance.new("Rotate")
  2203. Joint.Name = "RightShoulder"
  2204. Joint.Part0 = Torso
  2205. Joint.Part1 = Limb
  2206. Joint.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  2207. Joint.C1 = CFrame.new(-0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  2208. Joint.Parent = Torso
  2209.  
  2210. local B = Instance.new("Part")
  2211. B.TopSurface = 0
  2212. B.BottomSurface = 0
  2213. B.formFactor = "Symmetric"
  2214. B.Size = Vector3.new(1, 1, 1)
  2215. B.Transparency = 1
  2216. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  2217. B.Parent = playa
  2218. local W = Instance.new("Weld")
  2219. W.Part0 = Limb
  2220. W.Part1 = B
  2221. W.C0 = CFrame.new(0, -0.5, 0)
  2222. W.Parent = Limb
  2223. end
  2224. local Limb = playa:FindFirstChild("Left Arm")
  2225. if Limb then
  2226.  
  2227. Limb.CFrame = Torso.CFrame * CFrame.new(-1.5, 0, 0)
  2228. local Joint = Instance.new("Rotate")
  2229. Joint.Name = "LeftShoulder"
  2230. Joint.Part0 = Torso
  2231. Joint.Part1 = Limb
  2232. Joint.C0 = CFrame.new(-1.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  2233. Joint.C1 = CFrame.new(0, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  2234. Joint.Parent = Torso
  2235.  
  2236. local B = Instance.new("Part")
  2237. B.TopSurface = 0
  2238. B.BottomSurface = 0
  2239. B.formFactor = "Symmetric"
  2240. B.Size = Vector3.new(1, 1, 1)
  2241. B.Transparency = 1
  2242. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  2243. B.Parent = playa
  2244. local W = Instance.new("Weld")
  2245. W.Part0 = Limb
  2246. W.Part1 = B
  2247. W.C0 = CFrame.new(0, -0.5, 0)
  2248. W.Parent = Limb
  2249. end
  2250. local Limb = playa:FindFirstChild("Right Leg")
  2251. if Limb then
  2252. Limb.CanCollide = false
  2253. Limb.CFrame = Torso.CFrame * CFrame.new(0.5, -2, 0)
  2254. local Joint = Instance.new("Rotate")
  2255. Joint.Name = "RightHip"
  2256. Joint.Part0 = Torso
  2257. Joint.Part1 = Limb
  2258. Joint.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  2259. Joint.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  2260. Joint.Parent = Torso
  2261.  
  2262. local B = Instance.new("Part")
  2263. B.TopSurface = 0
  2264. B.BottomSurface = 0
  2265. B.formFactor = "Symmetric"
  2266. B.Size = Vector3.new(1, 1, 1)
  2267. B.Transparency = 1
  2268. B.CanCollide = true
  2269. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  2270. B.Parent = playa
  2271. local W = Instance.new("Weld")
  2272. W.Part0 = Limb
  2273. W.Part1 = B
  2274. W.C0 = CFrame.new(0, -0.5, 0)
  2275. W.Parent = Limb
  2276. end
  2277. local Limb = playa:FindFirstChild("Left Leg")
  2278. if Limb then
  2279. Limb.CanCollide = false
  2280. Limb.CFrame = Torso.CFrame * CFrame.new(-0.5, -2, 0)
  2281. local Joint = Instance.new("Rotate")
  2282. Joint.Name = "LeftHip"
  2283. Joint.Part0 = Torso
  2284. Joint.Part1 = Limb
  2285. Joint.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  2286. Joint.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  2287. Joint.Parent = Torso
  2288.  
  2289. local B = Instance.new("Part")
  2290. B.TopSurface = 0
  2291. B.BottomSurface = 0
  2292. if zombiemode == false or override then
  2293. B.CanCollide = true
  2294. end
  2295. B.formFactor = "Symmetric"
  2296. B.Size = Vector3.new(1, 1, 1)
  2297. B.Transparency = 1
  2298. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  2299. B.Parent = playa
  2300. local W = Instance.new("Weld")
  2301. W.Part0 = Limb
  2302. W.Part1 = B
  2303. W.C0 = CFrame.new(0, -0.5, 0)
  2304. W.Parent = Limb
  2305. end
  2306. --[[
  2307. local Bar = Instance.new("Part")
  2308. Bar.TopSurface = 0
  2309. Bar.BottomSurface = 0
  2310. Bar.formFactor = "Symmetric"
  2311. Bar.Size = Vector3.new(1, 1, 1)
  2312. Bar.Transparency = 1
  2313. Bar.CFrame = Torso.CFrame * CFrame.new(0, 0.5, 0)
  2314. Bar.Parent = playa
  2315. local Weld = Instance.new("Weld")
  2316. Weld.Part0 = Torso
  2317. Weld.Part1 = Bar
  2318. Weld.C0 = CFrame.new(0, 0.5, 0)
  2319. Weld.Parent = Torso
  2320. --]]
  2321. playa.Parent = Gibs
  2322. if kneef and explode == nil then
  2323. local coru = coroutine.wrap(function()
  2324. if playa:FindFirstChild(hitz) then
  2325. local uno = Instance.new('Part',workspace)
  2326. local dos = Instance.new('Part',workspace)
  2327. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  2328. dos.CFrame = kneef["big ass knife"].CFrame
  2329. local weld = Instance.new('Weld',kneef["big ass knife"])
  2330. weld.Part0 = playa:FindFirstChild(hitz)
  2331. weld.Part1 = kneef["big ass knife"]
  2332. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  2333. uno:Destroy()
  2334. dos:Destroy()
  2335. playa:FindFirstChild(hitz).Anchored = false
  2336. for i, v in pairs(kneef:GetChildren()) do
  2337. if v:IsA('BasePart') then
  2338. v.Anchored = false
  2339. end
  2340. end
  2341. if explode == nil or explode == false then
  2342. local bleedpart = Instance.new("Part", kneef)
  2343. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  2344. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  2345. bleedpart.CanCollide = false
  2346. bleedpart.Position = Head.Position + Vector3.new(0, 1, 0)
  2347. bleedpart.Transparency = 1
  2348.  
  2349. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  2350. bleedpartweld.Part0 = kneef["big ass knife"]
  2351. bleedpartweld.Part1 = bleedpart
  2352. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  2353. local coru = coroutine.wrap(function()
  2354. bleed(bleedpart)
  2355. end)
  2356. coru()
  2357. end
  2358. end
  2359. if zombiemode == false or override then
  2360. wait()
  2361. end
  2362. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  2363. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  2364. end
  2365. end)
  2366. coru()
  2367. end
  2368. if explode then
  2369. local movevector = CFrame.new(explode.Position,Torso.Position).lookVector
  2370. local repulse = Instance.new('BodyForce',Torso)
  2371. repulse.Force = movevector*10000 + Vector3.new(0,5000,0)
  2372. game.Debris:AddItem(repulse,0.05)
  2373. end
  2374. if charred and zombiemode == false then
  2375. for i,v in pairs(playa:GetChildren()) do
  2376. if v:IsA('BasePart') then
  2377. v.BrickColor = BrickColor.Black()
  2378. local fire = Instance.new('Fire',v)
  2379. fire.Size = 5
  2380. fire.Heat = 5
  2381. elseif v:IsA('Accessory') then
  2382. for a,c in pairs(v:GetChildren()) do
  2383. if c:IsA('BasePart') then
  2384. c.BrickColor = BrickColor.Black()
  2385. local fire = Instance.new('Fire',v)
  2386. fire.Size = 5
  2387. fire.Heat = 5
  2388. for o,p in pairs(c:GetChildren()) do
  2389. if p:IsA("SpecialMesh") then
  2390. p.TextureId = ""
  2391. end
  2392. end
  2393. end
  2394. end
  2395. end
  2396. end
  2397. end
  2398. if soundy then
  2399. local sound = Instance.new('Sound',Head)
  2400. sound.SoundId = 'rbxassetid://903640857'
  2401. sound.Volume = 1
  2402. sound:Play()
  2403. sound.Ended:connect(function()
  2404. sound:Destroy()
  2405. local ambient = Instance.new('Sound',Head)
  2406. ambient.Volume = 0.25
  2407. ambient.Looped = true
  2408. ambient.SoundId = 'rbxassetid://903641031'
  2409. ambient:Play()
  2410. end)
  2411. end
  2412. if override then
  2413. 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
  2414. local coru = coroutine.wrap(function()
  2415. wait(4.5)
  2416. hum2.Parent.Name = hum2.Parent.Name.."'s Zombie"
  2417. hum2.HipHeight = 0.2
  2418. wait(0.5)
  2419. killz(hum2.Parent,"Head",nil,nil,false,false,false,false)
  2420. end)
  2421. coru()
  2422. else
  2423. game:GetService('Debris'):AddItem(playa, 12)
  2424. end
  2425. else
  2426. hum2.Health = 0
  2427. table.insert(zombies,playa)
  2428. local attack = Instance.new('Sound',Head)
  2429. attack.SoundId = 'rbxassetid://903641424'
  2430. attack.Volume = 2
  2431. for i,v in pairs(playa:GetChildren()) do
  2432. if v:IsA('BasePart') and v:FindFirstChildOfClass('TouchTransmitter') == nil then
  2433. v.Touched:connect(function(hit)
  2434. if hit.Parent and hit.Parent:FindFirstChildOfClass('Humanoid') then
  2435. local found = false
  2436. if hit.Parent == player.Character then
  2437. found = true
  2438. end
  2439. for a,c in pairs(zombies) do
  2440. if c == hit.Parent then
  2441. found = true
  2442. end
  2443. end
  2444. if found == false and hit.Parent:FindFirstChildOfClass('Humanoid').Health > 0 then
  2445. attack:Play()
  2446. if hit.Parent:FindFirstChildOfClass('Humanoid').Health - 2 <= 0 then
  2447. hit.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  2448. wait()
  2449. killz(hit.Parent,"Head")
  2450. else
  2451. hit.Parent:FindFirstChildOfClass('Humanoid'):TakeDamage(2)
  2452. end
  2453. end
  2454. end
  2455. end)
  2456. end
  2457. end
  2458. local coru = coroutine.wrap(function()
  2459. wait(2)
  2460. for i,v in pairs(playa:GetChildren()) do
  2461. if v:IsA('BasePart') then
  2462. for a,c in pairs(v:GetChildren()) do
  2463. if c:IsA('Fire') or c:IsA('ParticleEmitter') then
  2464. c:Destroy()
  2465. end
  2466. end
  2467. elseif v:IsA('Accessory') then
  2468. for a,c in pairs(v:GetChildren()) do
  2469. if c:IsA('BasePart') then
  2470. for b,d in pairs(c:GetChildren()) do
  2471. if d:IsA('Fire') or d:IsA('ParticleEmitter') then
  2472. d:Destroy()
  2473. end
  2474. end
  2475. end
  2476. end
  2477. end
  2478. end
  2479. end)
  2480. coru()
  2481. end
  2482. end
  2483. end
  2484.  
  2485. mouse.KeyDown:connect(function(key)
  2486. if key == "t" and mouse.Target then
  2487. local hum = mouse.Target.Parent:FindFirstChildOfClass('Humanoid')
  2488. if hum == nil then hum = mouse.Target.Parent.Parent:FindFirstChildOfClass('Humanoid') end
  2489. if curpoint == nil then
  2490. if hum and hum.Parent:FindFirstChild('Head') then
  2491. curpart = hum.Parent.Head
  2492. else
  2493. curpart = nil
  2494. curpoint = mouse.Hit.p
  2495. end
  2496. if player.PlayerGui:FindFirstChild('Notification') then player.PlayerGui.Notification:Destroy() end
  2497. notify("ZOMBIE TARGET SET",false)
  2498. else
  2499. curpart = nil
  2500. curpoint = nil
  2501. if player.PlayerGui:FindFirstChild('Notification') then player.PlayerGui.Notification:Destroy() end
  2502. notify("ZOMBIE TARGET REMOVED",false)
  2503. end
  2504. elseif key == "y" then
  2505. for o,p in pairs(zombies) do
  2506. local coru = coroutine.wrap(function()
  2507. if p:FindFirstChild('Torso') then
  2508. killz(p,"Head",nil,nil,false,false,false,true)
  2509. else
  2510. table.remove(zombies,o)
  2511. end
  2512. end)
  2513. coru()
  2514. wait()
  2515. end
  2516. for i,v in pairs(zombies) do
  2517. table.remove(zombies,i)
  2518. end
  2519. if player.PlayerGui:FindFirstChild('Notification') then player.PlayerGui.Notification:Destroy() end
  2520. notify("ZOMBIES TERMINATED",false)
  2521. end
  2522. end)
  2523.  
  2524. function nub()
  2525. repeat wait() until player.Character and player.Character:FindFirstChild('Torso')
  2526. local me = player.Character
  2527. local point = me.HumanoidRootPart
  2528. local playergui = player.PlayerGui
  2529. local rightshoulderz = me.Torso["Right Shoulder"]:Clone()
  2530. local leftshoulderz = me.Torso["Left Shoulder"]:Clone()
  2531. local torsojoint = me.HumanoidRootPart["RootJoint"]:Clone()
  2532. local lefthipz = me.Torso["Left Hip"]:Clone()
  2533. local righthipz = me.Torso["Right Hip"]:Clone()
  2534. local mode = "kill"
  2535. local lerpz = false
  2536. local active = false
  2537. local acting = false
  2538. local hit = false
  2539. local canClick = true
  2540. local stabbing = false
  2541. local grabbing = false
  2542. local finishing = false
  2543. local kyssing = false
  2544. local canbackgroundmusic = true
  2545. local cancolorfilter = true
  2546. local spinboolean = false
  2547. local grabbed = nil
  2548. local doing = false
  2549. local rightshoulder = nil
  2550. local leftshoulder = nil
  2551. local headweld = nil
  2552. local knifeparts = {}
  2553. local usable = true
  2554. finishnum = 1
  2555.  
  2556. function notify(msg,forever)
  2557. local doit = coroutine.wrap(function()
  2558. local gui = Instance.new('ScreenGui',playergui)
  2559. gui.Name = "Notification"
  2560. local frame = Instance.new('Frame',gui)
  2561. frame.Position = UDim2.new(0,0,0,0)
  2562. frame.Size = UDim2.new(1,0,0.2,0)
  2563. frame.BackgroundTransparency = 1
  2564. local txt = Instance.new('TextLabel',frame)
  2565. txt.TextColor3 = Color3.new(255,255,255)
  2566. txt.TextStrokeColor3 = Color3.new(0, 0, 0)
  2567. txt.TextStrokeTransparency = 0
  2568. txt.BackgroundTransparency = 1
  2569. txt.Text = ""
  2570. txt.Size = UDim2.new(1,0,0.3,0)
  2571. txt.Position = UDim2.new(0,0,0.4,0)
  2572. txt.TextScaled = true
  2573. txt.Font = "Code"
  2574. txt.TextXAlignment = "Center"
  2575. local tap = Instance.new("Sound")
  2576. tap.Parent = gui
  2577. tap.SoundId = "rbxassetid://147982968"
  2578. tap.TimePosition = 0.1
  2579. local str = msg
  2580. local len = string.len(str)
  2581. for i=1,len do
  2582. txt.Text = string.sub(str,1,i)
  2583. pitche = math.random(20, 40)/10
  2584. tap.PlaybackSpeed = pitche
  2585. tap:Play()
  2586. wait(0.01)
  2587. end
  2588. if forever == false then
  2589. wait(1)
  2590. while txt.TextTransparency < 1 do
  2591. txt.TextTransparency = txt.TextTransparency + 0.1
  2592. txt.TextStrokeTransparency = txt.TextStrokeTransparency + 0.1
  2593. wait(0.001)
  2594. end
  2595. gui:Destroy()
  2596. end
  2597. end)
  2598. doit()
  2599. end
  2600.  
  2601. wait(0.5)
  2602. notify("PRESS [Z] TO EQUIP KNIFE || Created by mustardfoot and Tollonis",true)
  2603. local laugh = Instance.new('Sound',me.Head)
  2604. laugh.SoundId = 'rbxassetid://378827985'
  2605. laugh.Name = "Psycho"
  2606. laugh.Volume = 5
  2607. -- 1 - bitch ass knife
  2608. local obj1 = Instance.new("Model")
  2609. obj1.Name = "bitch ass knife"
  2610. obj1.Parent = game.Workspace
  2611.  
  2612. -- 2 - Grab
  2613. local obj2 = Instance.new("Part")
  2614. obj2.CFrame = CFrame.new(Vector3.new(20.4525032, 6.14501333, -134.399979)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  2615. obj2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2616. obj2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2617. obj2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2618. obj2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2619. obj2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2620. obj2.Material = Enum.Material.Concrete
  2621. obj2.Size = Vector3.new(1, 0.25, 0.25)
  2622. obj2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2623. obj2.Anchored = true
  2624. obj2.BrickColor = BrickColor.new("Black")
  2625. obj2.Friction = 0.30000001192093
  2626. obj2.Shape = Enum.PartType.Cylinder
  2627. obj2.Name = "Grab"
  2628. obj2.Parent = obj1
  2629.  
  2630. -- 3 - handletopcap
  2631. local obj3 = Instance.new("Part")
  2632. obj3.CFrame = CFrame.new(Vector3.new(19.9725456, 6.14502859, -134.399933)) * CFrame.Angles(0, 1.5707963705063, 0)
  2633. obj3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2634. obj3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2635. obj3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2636. obj3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2637. obj3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2638. obj3.Material = Enum.Material.Concrete
  2639. obj3.Size = Vector3.new(0.349999994, 0.349999994, 0.349999994)
  2640. obj3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2641. obj3.Anchored = true
  2642. obj3.BrickColor = BrickColor.new("Black")
  2643. obj3.Friction = 0.30000001192093
  2644. obj3.Shape = Enum.PartType.Ball
  2645. obj3.Name = "handletopcap"
  2646. obj3.Parent = obj1
  2647.  
  2648. -- 4 - handlebottomcap
  2649. local obj4 = Instance.new("Part")
  2650. obj4.CFrame = CFrame.new(Vector3.new(20.9725285, 6.14502859, -134.399918)) * CFrame.Angles(0, 1.5707963705063, 0)
  2651. obj4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2652. obj4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2653. obj4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2654. obj4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2655. obj4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2656. obj4.Material = Enum.Material.Concrete
  2657. obj4.Size = Vector3.new(0.25, 0.25, 0.25)
  2658. obj4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2659. obj4.Anchored = true
  2660. obj4.BrickColor = BrickColor.new("Black")
  2661. obj4.Friction = 0.30000001192093
  2662. obj4.Shape = Enum.PartType.Ball
  2663. obj4.Name = "handlebottomcap"
  2664. obj4.Parent = obj1
  2665.  
  2666. -- 5 - handleguardmid
  2667. local obj5 = Instance.new("Part")
  2668. obj5.CFrame = CFrame.new(Vector3.new(19.9474983, 6.14502859, -134.399918)) * CFrame.Angles(0, 1.5707963705063, 0)
  2669. obj5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2670. obj5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2671. obj5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2672. obj5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2673. obj5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2674. obj5.Material = Enum.Material.Concrete
  2675. obj5.Size = Vector3.new(0.349999994, 0.349999994, 0.100000001)
  2676. obj5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2677. obj5.Anchored = true
  2678. obj5.BrickColor = BrickColor.new("Black")
  2679. obj5.Friction = 0.30000001192093
  2680. obj5.Shape = Enum.PartType.Block
  2681. obj5.Name = "handleguardmid"
  2682. obj5.Parent = obj1
  2683.  
  2684. -- 6 - handleguardcap1
  2685. local obj6 = Instance.new("Part")
  2686. obj6.CFrame = CFrame.new(Vector3.new(19.9474983, 6.32502794, -134.399918)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  2687. obj6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2688. obj6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2689. obj6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2690. obj6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2691. obj6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2692. obj6.Material = Enum.Material.Concrete
  2693. obj6.Size = Vector3.new(0.100000001, 0.349999994, 0.349999994)
  2694. obj6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2695. obj6.Anchored = true
  2696. obj6.BrickColor = BrickColor.new("Black")
  2697. obj6.Friction = 0.30000001192093
  2698. obj6.Shape = Enum.PartType.Cylinder
  2699. obj6.Name = "handleguardcap1"
  2700. obj6.Parent = obj1
  2701.  
  2702. -- 7 - handleguardcap2
  2703. local obj7 = Instance.new("Part")
  2704. obj7.CFrame = CFrame.new(Vector3.new(19.9474983, 5.97502899, -134.399918)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  2705. obj7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2706. obj7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2707. obj7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2708. obj7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2709. obj7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2710. obj7.Material = Enum.Material.Concrete
  2711. obj7.Size = Vector3.new(0.100000009, 0.349999994, 0.349999994)
  2712. obj7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2713. obj7.Anchored = true
  2714. obj7.BrickColor = BrickColor.new("Black")
  2715. obj7.Friction = 0.30000001192093
  2716. obj7.Shape = Enum.PartType.Cylinder
  2717. obj7.Name = "handleguardcap2"
  2718. obj7.Parent = obj1
  2719.  
  2720. -- 8 - big ass knife
  2721. local obj8 = Instance.new("Part")
  2722. obj8.CFrame = CFrame.new(Vector3.new(18.4375095, 6.14502859, -134.401321)) * CFrame.Angles(0, 1.5707963705063, 0)
  2723. obj8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2724. obj8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2725. obj8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2726. obj8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2727. obj8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2728. obj8.Material = Enum.Material.Metal
  2729. obj8.Size = Vector3.new(0.0500000007, 0.280000001, 0.839999795)
  2730. obj8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2731. obj8.Anchored = true
  2732. obj8.BrickColor = BrickColor.new("Lily white")
  2733. obj8.Friction = 0.30000001192093
  2734. obj8.Shape = Enum.PartType.Block
  2735. obj8.Name = "big ass knife"
  2736. obj8.Parent = obj1
  2737.  
  2738. -- 9 - Mesh
  2739. local obj9 = Instance.new("BlockMesh")
  2740. obj9.Scale = Vector3.new(0.5, 1, 1)
  2741. obj9.Parent = obj8
  2742.  
  2743. -- 10 - big ass knife
  2744. local obj10 = Instance.new("Part")
  2745. obj10.CFrame = CFrame.new(Vector3.new(19.7425137, 6.14502859, -134.401321)) * CFrame.Angles(0, 1.5707963705063, 0)
  2746. obj10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2747. obj10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2748. obj10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2749. obj10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2750. obj10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2751. obj10.Material = Enum.Material.Metal
  2752. obj10.Size = Vector3.new(0.0500000007, 0.280000001, 0.289999962)
  2753. obj10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2754. obj10.Anchored = true
  2755. obj10.BrickColor = BrickColor.new("Lily white")
  2756. obj10.Friction = 0.30000001192093
  2757. obj10.Shape = Enum.PartType.Block
  2758. obj10.Name = "big ass knife"
  2759. obj10.Parent = obj1
  2760. local knife = obj10
  2761.  
  2762. -- 11 - Mesh
  2763. local obj11 = Instance.new("BlockMesh")
  2764. obj11.Scale = Vector3.new(0.5, 1, 1)
  2765. obj11.Parent = obj10
  2766.  
  2767. -- 12 - big ass knife
  2768. local obj12 = Instance.new("Part")
  2769. obj12.CFrame = CFrame.new(Vector3.new(19.1075306, 6.08502865, -134.401321)) * CFrame.Angles(0, 1.5707963705063, 0)
  2770. obj12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2771. obj12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2772. obj12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2773. obj12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2774. obj12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2775. obj12.Material = Enum.Material.Metal
  2776. obj12.Size = Vector3.new(0.0500000007, 0.159999996, 0.979999959)
  2777. obj12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2778. obj12.Anchored = true
  2779. obj12.BrickColor = BrickColor.new("Lily white")
  2780. obj12.Friction = 0.30000001192093
  2781. obj12.Shape = Enum.PartType.Block
  2782. obj12.Name = "big ass knife"
  2783. obj12.Parent = obj1
  2784.  
  2785. -- 13 - Mesh
  2786. local obj13 = Instance.new("BlockMesh")
  2787. obj13.Scale = Vector3.new(0.5, 1, 1)
  2788. obj13.Parent = obj12
  2789.  
  2790. -- 14 - serration
  2791. local obj14 = Instance.new("WedgePart")
  2792. obj14.CFrame = CFrame.new(Vector3.new(19.4963322, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  2793. obj14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2794. obj14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2795. obj14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2796. obj14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2797. obj14.Material = Enum.Material.Metal
  2798. obj14.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  2799. obj14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2800. obj14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2801. obj14.Anchored = true
  2802. obj14.BrickColor = BrickColor.new("Lily white")
  2803. obj14.Friction = 0.30000001192093
  2804. obj14.Name = "serration"
  2805. obj14.Parent = obj1
  2806.  
  2807. -- 15 - Mesh
  2808. local obj15 = Instance.new("BlockMesh")
  2809. obj15.Scale = Vector3.new(0.5, 1, 1)
  2810. obj15.Parent = obj14
  2811.  
  2812. -- 16 - serration
  2813. local obj16 = Instance.new("WedgePart")
  2814. obj16.CFrame = CFrame.new(Vector3.new(19.2763138, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  2815. obj16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2816. obj16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2817. obj16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2818. obj16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2819. obj16.Material = Enum.Material.Metal
  2820. obj16.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  2821. obj16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2822. obj16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2823. obj16.Anchored = true
  2824. obj16.BrickColor = BrickColor.new("Lily white")
  2825. obj16.Friction = 0.30000001192093
  2826. obj16.Name = "serration"
  2827. obj16.Parent = obj1
  2828.  
  2829. -- 17 - Mesh
  2830. local obj17 = Instance.new("BlockMesh")
  2831. obj17.Scale = Vector3.new(0.5, 1, 1)
  2832. obj17.Parent = obj16
  2833.  
  2834. -- 18 - serration
  2835. local obj18 = Instance.new("WedgePart")
  2836. obj18.CFrame = CFrame.new(Vector3.new(19.3863068, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  2837. obj18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2838. obj18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2839. obj18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2840. obj18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2841. obj18.Material = Enum.Material.Metal
  2842. obj18.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  2843. obj18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2844. obj18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2845. obj18.Anchored = true
  2846. obj18.BrickColor = BrickColor.new("Lily white")
  2847. obj18.Friction = 0.30000001192093
  2848. obj18.Name = "serration"
  2849. obj18.Parent = obj1
  2850.  
  2851. -- 19 - Mesh
  2852. local obj19 = Instance.new("BlockMesh")
  2853. obj19.Scale = Vector3.new(0.5, 1, 1)
  2854. obj19.Parent = obj18
  2855.  
  2856. -- 20 - serration
  2857. local obj20 = Instance.new("WedgePart")
  2858. obj20.CFrame = CFrame.new(Vector3.new(19.5963173, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  2859. obj20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2860. obj20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2861. obj20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2862. obj20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2863. obj20.Material = Enum.Material.Metal
  2864. obj20.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  2865. obj20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2866. obj20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2867. obj20.Anchored = true
  2868. obj20.BrickColor = BrickColor.new("Lily white")
  2869. obj20.Friction = 0.30000001192093
  2870. obj20.Name = "serration"
  2871. obj20.Parent = obj1
  2872.  
  2873. -- 21 - Mesh
  2874. local obj21 = Instance.new("BlockMesh")
  2875. obj21.Scale = Vector3.new(0.5, 1, 1)
  2876. obj21.Parent = obj20
  2877.  
  2878. -- 22 - serration
  2879. local obj22 = Instance.new("WedgePart")
  2880. obj22.CFrame = CFrame.new(Vector3.new(19.1663074, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  2881. obj22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2882. obj22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2883. obj22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2884. obj22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2885. obj22.Material = Enum.Material.Metal
  2886. obj22.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  2887. obj22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2888. obj22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2889. obj22.Anchored = true
  2890. obj22.BrickColor = BrickColor.new("Lily white")
  2891. obj22.Friction = 0.30000001192093
  2892. obj22.Name = "serration"
  2893. obj22.Parent = obj1
  2894.  
  2895. -- 23 - Mesh
  2896. local obj23 = Instance.new("BlockMesh")
  2897. obj23.Scale = Vector3.new(0.5, 1, 1)
  2898. obj23.Parent = obj22
  2899.  
  2900. -- 24 - serration
  2901. local obj24 = Instance.new("WedgePart")
  2902. obj24.CFrame = CFrame.new(Vector3.new(18.9663048, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  2903. obj24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2904. obj24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2905. obj24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2906. obj24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2907. obj24.Material = Enum.Material.Metal
  2908. obj24.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  2909. obj24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2910. obj24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2911. obj24.Anchored = true
  2912. obj24.BrickColor = BrickColor.new("Lily white")
  2913. obj24.Friction = 0.30000001192093
  2914. obj24.Name = "serration"
  2915. obj24.Parent = obj1
  2916.  
  2917. -- 25 - Mesh
  2918. local obj25 = Instance.new("BlockMesh")
  2919. obj25.Scale = Vector3.new(0.5, 1, 1)
  2920. obj25.Parent = obj24
  2921.  
  2922. -- 26 - serration
  2923. local obj26 = Instance.new("WedgePart")
  2924. obj26.CFrame = CFrame.new(Vector3.new(18.8562984, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  2925. obj26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2926. obj26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2927. obj26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2928. obj26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2929. obj26.Material = Enum.Material.Metal
  2930. obj26.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  2931. obj26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2932. obj26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2933. obj26.Anchored = true
  2934. obj26.BrickColor = BrickColor.new("Lily white")
  2935. obj26.Friction = 0.30000001192093
  2936. obj26.Name = "serration"
  2937. obj26.Parent = obj1
  2938.  
  2939. -- 27 - Mesh
  2940. local obj27 = Instance.new("BlockMesh")
  2941. obj27.Scale = Vector3.new(0.5, 1, 1)
  2942. obj27.Parent = obj26
  2943.  
  2944. -- 28 - serration
  2945. local obj28 = Instance.new("WedgePart")
  2946. obj28.CFrame = CFrame.new(Vector3.new(19.0663071, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  2947. obj28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2948. obj28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2949. obj28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2950. obj28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2951. obj28.Material = Enum.Material.Metal
  2952. obj28.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  2953. obj28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2954. obj28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2955. obj28.Anchored = true
  2956. obj28.BrickColor = BrickColor.new("Lily white")
  2957. obj28.Friction = 0.30000001192093
  2958. obj28.Name = "serration"
  2959. obj28.Parent = obj1
  2960.  
  2961. -- 29 - Mesh
  2962. local obj29 = Instance.new("BlockMesh")
  2963. obj29.Scale = Vector3.new(0.5, 1, 1)
  2964. obj29.Parent = obj28
  2965.  
  2966. -- 30 - knifetip1
  2967. local obj30 = Instance.new("WedgePart")
  2968. obj30.CFrame = CFrame.new(Vector3.new(18.0163059, 6.14381599, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  2969. obj30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2970. obj30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2971. obj30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2972. obj30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2973. obj30.Material = Enum.Material.Metal
  2974. obj30.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  2975. obj30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2976. obj30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2977. obj30.Anchored = true
  2978. obj30.BrickColor = BrickColor.new("Lily white")
  2979. obj30.Friction = 0.30000001192093
  2980. obj30.Name = "knifetip1"
  2981. obj30.Parent = obj1
  2982.  
  2983. -- 31 - Mesh
  2984. local obj31 = Instance.new("BlockMesh")
  2985. obj31.Scale = Vector3.new(0.5, 1, 1)
  2986. obj31.Parent = obj30
  2987.  
  2988. -- 32 - redstuff
  2989. local obj32 = Instance.new("Part")
  2990. obj32.CFrame = CFrame.new(Vector3.new(19.9470005, 5.9749999, -134.399994)) * CFrame.Angles(-0, 0, -0)
  2991. obj32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2992. obj32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2993. obj32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2994. obj32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2995. obj32.Material = Enum.Material.SmoothPlastic
  2996. obj32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2997. obj32.Size = Vector3.new(0.0500000007, 0.360000014, 0.360000014)
  2998. obj32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2999. obj32.BrickColor = BrickColor.new("Institutional white")
  3000. obj32.Friction = 0.30000001192093
  3001. obj32.Shape = Enum.PartType.Cylinder
  3002. obj32.Name = "redstuff"
  3003. obj32.Anchored = true
  3004. obj32.Parent = obj1
  3005.  
  3006.  
  3007. -- 33 - redstuff
  3008. local obj33 = Instance.new("Part")
  3009. obj33.CFrame = CFrame.new(Vector3.new(18.9800053, 6.1400156, -134.404984)) * CFrame.Angles(-0, 0, -0)
  3010. obj33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3011. obj33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3012. obj33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3013. obj33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3014. obj33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3015. obj33.Material = Enum.Material.SmoothPlastic
  3016. obj33.Size = Vector3.new(1.81999993, 0.100000001, 0.0500000007)
  3017. obj33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3018. obj33.BrickColor = BrickColor.new("Institutional white")
  3019. obj33.Friction = 0.30000001192093
  3020. obj33.Shape = Enum.PartType.Block
  3021. obj33.Name = "redstuff"
  3022. obj33.Anchored = true
  3023. obj33.Parent = obj1
  3024.  
  3025. -- 34 - redstuff
  3026. local obj34 = Instance.new("Part")
  3027. obj34.CFrame = CFrame.new(Vector3.new(19.9470005, 6.32499981, -134.399994)) * CFrame.Angles(-0, 0, -0)
  3028. obj34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3029. obj34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3030. obj34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3031. obj34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3032. obj34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3033. obj34.Size = Vector3.new(0.0500000007, 0.360000014, 0.360000014)
  3034. obj34.Material = Enum.Material.SmoothPlastic
  3035. obj34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3036. obj34.BrickColor = BrickColor.new("Institutional white")
  3037. obj34.Friction = 0.30000001192093
  3038. obj34.Shape = Enum.PartType.Cylinder
  3039. obj34.Name = "redstuff"
  3040. obj34.Anchored = true
  3041. obj34.Parent = obj1
  3042.  
  3043. -- 35 - redstuff
  3044. local obj35 = Instance.new("Part")
  3045. obj35.CFrame = CFrame.new(Vector3.new(19.8830166, 6.14501476, -134.399963)) * CFrame.Angles(-0, 0, -0)
  3046. obj35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3047. obj35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3048. obj35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3049. obj35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3050. obj35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3051. obj35.Size = Vector3.new(0.0500000007, 0.319999993, 0.319999993)
  3052. obj35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3053. obj35.BrickColor = BrickColor.new("Institutional white")
  3054. obj35.Friction = 0.30000001192093
  3055. obj35.Shape = Enum.PartType.Cylinder
  3056. obj35.Material = Enum.Material.SmoothPlastic
  3057. obj35.Name = "redstuff"
  3058. obj35.Anchored = true
  3059. obj35.Parent = obj1
  3060.  
  3061. -- 36 - redstuff
  3062. local obj36 = Instance.new("Part")
  3063. obj36.CFrame = CFrame.new(Vector3.new(20.9430103, 6.14501476, -134.399963)) * CFrame.Angles(-0, 0, -0)
  3064. obj36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3065. obj36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3066. obj36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3067. obj36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3068. obj36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3069. obj36.Material = Enum.Material.SmoothPlastic
  3070. obj36.Size = Vector3.new(0.0500000007, 0.25999999, 0.25999999)
  3071. obj36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3072. obj36.BrickColor = BrickColor.new("Institutional white")
  3073. obj36.Friction = 0.30000001192093
  3074. obj36.Shape = Enum.PartType.Cylinder
  3075. obj36.Name = "redstuff"
  3076. obj36.Anchored = true
  3077. obj36.Parent = obj1
  3078.  
  3079. -- 37 - redstuff
  3080. local obj37 = Instance.new("WedgePart")
  3081. obj37.CFrame = CFrame.new(Vector3.new(18.066288, 6.14381599, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  3082. obj37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3083. obj37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3084. obj37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3085. obj37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3086. obj37.Material = Enum.Material.SmoothPlastic
  3087. obj37.Size = Vector3.new(0.0500000007, 0.0700000003, 0.0700000003)
  3088. obj37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3089. obj37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3090. obj37.Anchored = true
  3091. obj37.BrickColor = BrickColor.new("Institutional white")
  3092. obj37.Friction = 0.30000001192093
  3093. obj37.Name = "redstuff"
  3094. obj37.Anchored = true
  3095. obj37.Parent = obj1
  3096.  
  3097. -- 38 - redstuff
  3098. local obj38 = Instance.new("Part")
  3099. obj38.CFrame = CFrame.new(Vector3.new(20.1230125, 6.14501476, -134.399979)) * CFrame.Angles(-0, 0, -0)
  3100. obj38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3101. obj38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3102. obj38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3103. obj38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3104. obj38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3105. obj38.Material = Enum.Material.SmoothPlastic
  3106. obj38.Size = Vector3.new(0.0500000007, 0.25999999, 0.25999999)
  3107. obj38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3108. obj38.BrickColor = BrickColor.new("Institutional white")
  3109. obj38.Friction = 0.30000001192093
  3110. obj38.Shape = Enum.PartType.Cylinder
  3111. obj38.Name = "redstuff"
  3112. obj38.Anchored = true
  3113. obj38.Parent = obj1
  3114.  
  3115. local function recurse(objnum)
  3116. table.insert(knifeparts,{objnum,objnum.Parent})
  3117. for i,v in pairs(objnum:GetChildren()) do
  3118. recurse(v)
  3119. end
  3120. end
  3121.  
  3122. recurse(obj1)
  3123.  
  3124. local audio = Instance.new('Sound',knife)
  3125. audio.Volume = 2
  3126.  
  3127. local audio2 = Instance.new('Sound',knife)
  3128. audio2.Volume = 2
  3129.  
  3130. local holdpart = Instance.new("Part")
  3131. holdpart.Parent = me
  3132. holdpart.Size = Vector3.new(0.4, 0.4, 0.2)
  3133. holdpart.Position = me.Head.Position + Vector3.new(0, 1, 0)
  3134. holdpart.BrickColor = BrickColor.new("Burnt Sienna")
  3135.  
  3136. local previous = nil
  3137. for i,v in pairs(obj1:GetChildren()) do
  3138. if v:IsA('BasePart') then
  3139. if previous then
  3140. local weld = Instance.new('Weld',v)
  3141. weld.Part0 = v
  3142. weld.Part1 = previous
  3143. weld.C0 = v.CFrame:inverse() * previous.CFrame
  3144. previous.Anchored = false
  3145. previous.CanCollide = false
  3146. local vee = v
  3147. weld.AncestryChanged:connect(function(mez,par)
  3148. wait()
  3149. weld.Parent = vee
  3150. end)
  3151. end
  3152. previous = v
  3153. end
  3154. end
  3155. previous.Anchored = false
  3156. previous.CanCollide = false
  3157.  
  3158. local holdpartweld = Instance.new("Weld", me.Torso)
  3159. holdpartweld.Part0 = me.Torso
  3160. holdpartweld.Part1 = holdpart
  3161. holdpartweld.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-1, -0.8, 0.15)
  3162.  
  3163. holdpartweld.AncestryChanged:connect(function(mez,par)
  3164. if par ~= me.Torso then
  3165. wait()
  3166. holdpartweld.Parent = me.Torso
  3167. end
  3168. end)
  3169.  
  3170. local knifeweld = Instance.new('Weld',me.Torso)
  3171. knifeweld.Part0 = me.Torso
  3172. knifeweld.Part1 = obj2
  3173. knifeweld.C1 = CFrame.Angles(0,math.rad(90),0) * CFrame.new(1, 0.8, 0.55)
  3174. knifeweld.AncestryChanged:connect(function(mez,par)
  3175. if par ~= me.Torso then
  3176. wait()
  3177. knifeweld.Parent = me.Torso
  3178. end
  3179. end)
  3180. local ScreenGui = Instance.new("ScreenGui")
  3181. local CustomizeGui = Instance.new("Frame")
  3182. local Customize = Instance.new("TextLabel")
  3183. local ClosestColor = Instance.new("TextLabel")
  3184. local Line = Instance.new("TextLabel")
  3185. local Color = Instance.new("ImageLabel")
  3186. local Close = Instance.new("TextButton")
  3187. local RedHue = Instance.new("TextLabel")
  3188. local GreenHue = Instance.new("TextLabel")
  3189. local RedInput = Instance.new("TextBox")
  3190. local BlueHue = Instance.new("TextLabel")
  3191. local GreenInput = Instance.new("TextBox")
  3192. local TransInput = Instance.new("TextBox")
  3193. local BlueInput = Instance.new("TextBox")
  3194. local Message = Instance.new("TextLabel")
  3195. local Message2 = Instance.new("TextLabel")
  3196. local TrailTransparency = Instance.new("TextLabel")
  3197. local TrailInput = Instance.new("TextBox")
  3198. local MusicOption = Instance.new("TextButton")
  3199. local ScreenOption = Instance.new("TextButton")
  3200. local ScreenOptionTxt = Instance.new("TextLabel")
  3201. local MusicOptionTxt = Instance.new("TextLabel")
  3202.  
  3203. -- Properties
  3204.  
  3205. ScreenGui.Parent = playergui
  3206.  
  3207. CustomizeGui.Name = "CustomizeGui"
  3208. CustomizeGui.Parent = ScreenGui
  3209. CustomizeGui.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  3210. CustomizeGui.BackgroundTransparency = 0.5
  3211. CustomizeGui.BorderColor3 = Color3.new(0, 0, 0)
  3212. CustomizeGui.BorderSizePixel = 2
  3213. CustomizeGui.Position = UDim2.new(0, 0, 0.5, 0)
  3214. CustomizeGui.Size = UDim2.new(0.449999988, 0, 0.449999988, 0)
  3215.  
  3216. Customize.Name = "Customize"
  3217. Customize.Parent = CustomizeGui
  3218. Customize.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  3219. Customize.BackgroundTransparency = 0.75
  3220. Customize.BorderSizePixel = 0
  3221. Customize.Size = UDim2.new(1, 0, 0.200000003, 0)
  3222. Customize.FontSize = Enum.FontSize.Size28
  3223. Customize.Text = "ACCENT COLOR CUSTOMIZATION"
  3224. Customize.TextColor3 = Color3.new(1, 1, 1)
  3225. Customize.TextScaled = true
  3226. Customize.TextSize = 25
  3227. Customize.TextStrokeTransparency = 0.5
  3228. Customize.TextWrapped = true
  3229.  
  3230. ClosestColor.Name = "ClosestColor"
  3231. ClosestColor.Parent = CustomizeGui
  3232. ClosestColor.BackgroundColor3 = Color3.new(1, 1, 1)
  3233. ClosestColor.BackgroundTransparency = 1
  3234. ClosestColor.Position = UDim2.new(0, 0, 0.850000024, 0)
  3235. ClosestColor.Size = UDim2.new(1, 0, 0.150000006, 0)
  3236. ClosestColor.Font = Enum.Font.SourceSansLight
  3237. ClosestColor.FontSize = Enum.FontSize.Size32
  3238. ClosestColor.Text = "Your color is closest to Institutional White"
  3239. ClosestColor.TextColor3 = Color3.new(1, 1, 1)
  3240. ClosestColor.TextSize = 30
  3241. ClosestColor.TextStrokeTransparency = 0.5
  3242.  
  3243. Line.Name = "Line"
  3244. Line.Parent = CustomizeGui
  3245. Line.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  3246. Line.BackgroundTransparency = 0.5
  3247. Line.BorderColor3 = Color3.new(0, 0, 0)
  3248. Line.BorderSizePixel = 0
  3249. Line.Position = UDim2.new(0, 0, 0.200000003, 0)
  3250. Line.Size = UDim2.new(1, 0, 0.0299999993, 0)
  3251. Line.Font = Enum.Font.SourceSans
  3252. Line.FontSize = Enum.FontSize.Size14
  3253. Line.Text = " "
  3254. Line.TextSize = 14
  3255.  
  3256. Color.Name = "Color"
  3257. Color.Parent = CustomizeGui
  3258. Color.BackgroundColor3 = Color3.new(1, 1, 1)
  3259. Color.BorderSizePixel = 0
  3260. Color.Position = UDim2.new(0.699999988, 0, 0.419999987, 0)
  3261. Color.Size = UDim2.new(0.300000012, 0, 0.300000012, 0)
  3262. Color.SizeConstraint = Enum.SizeConstraint.RelativeYY
  3263.  
  3264. MusicOption.Parent = CustomizeGui
  3265. MusicOption.Name = "MusicOption"
  3266. MusicOption.BackgroundColor3 = Color3.new(0, 1, 0)
  3267. MusicOption.BorderSizePixel = 1
  3268. MusicOption.Position = UDim2.new(0.01, 0, -0.12, 0)
  3269. MusicOption.Size = UDim2.new(0.05, 0, 0.1, 0)
  3270. MusicOption.Text = ""
  3271. MusicOption.BackgroundTransparency = 0.5
  3272.  
  3273. ScreenOption.Parent = CustomizeGui
  3274. ScreenOption.Name = "ScreenOption"
  3275. ScreenOption.BackgroundColor3 = Color3.new(0, 1, 0)
  3276. ScreenOption.BorderSizePixel = 1
  3277. ScreenOption.Position = UDim2.new(0.01, 0, -0.23, 0)
  3278. ScreenOption.Size = UDim2.new(0.05, 0, 0.1, 0)
  3279. ScreenOption.Text = ""
  3280. ScreenOption.BackgroundTransparency = 0.5
  3281.  
  3282. ScreenOptionTxt.Name = "ScreenOptionTxt"
  3283. ScreenOptionTxt.Parent = CustomizeGui
  3284. ScreenOptionTxt.BackgroundColor3 = Color3.new(1, 1, 1)
  3285. ScreenOptionTxt.BackgroundTransparency = 1
  3286. ScreenOptionTxt.Position = UDim2.new(0.07, 0, -0.23, 0)
  3287. ScreenOptionTxt.Size = UDim2.new(1, 0, 0.07, 0)
  3288. ScreenOptionTxt.Font = Enum.Font.SourceSans
  3289. ScreenOptionTxt.FontSize = Enum.FontSize.Size24
  3290. ScreenOptionTxt.Text = "Psychopath Red Filter"
  3291. ScreenOptionTxt.TextColor3 = Color3.new(1, 1, 1)
  3292. ScreenOptionTxt.TextScaled = true
  3293. ScreenOptionTxt.TextSize = 20
  3294. ScreenOptionTxt.TextStrokeColor3 = Color3.new(0, 0, 0)
  3295. ScreenOptionTxt.TextStrokeTransparency = 0.5
  3296. ScreenOptionTxt.TextWrapped = true
  3297. ScreenOptionTxt.TextXAlignment = "Left"
  3298.  
  3299. MusicOptionTxt.Name = "MusicOptionTxt"
  3300. MusicOptionTxt.Parent = CustomizeGui
  3301. MusicOptionTxt.BackgroundColor3 = Color3.new(1, 1, 1)
  3302. MusicOptionTxt.BackgroundTransparency = 1
  3303. MusicOptionTxt.Position = UDim2.new(0.07, 0, -0.12, 0)
  3304. MusicOptionTxt.Size = UDim2.new(1, 0, 0.07, 0)
  3305. MusicOptionTxt.Font = Enum.Font.SourceSans
  3306. MusicOptionTxt.FontSize = Enum.FontSize.Size24
  3307. MusicOptionTxt.Text = "Psychopath Background Music"
  3308. MusicOptionTxt.TextColor3 = Color3.new(1, 1, 1)
  3309. MusicOptionTxt.TextScaled = true
  3310. MusicOptionTxt.TextSize = 20
  3311. MusicOptionTxt.TextStrokeColor3 = Color3.new(0, 0, 0)
  3312. MusicOptionTxt.TextStrokeTransparency = 0.5
  3313. MusicOptionTxt.TextWrapped = true
  3314. MusicOptionTxt.TextXAlignment = "Left"
  3315.  
  3316. Close.Name = "Close"
  3317. Close.Parent = CustomizeGui
  3318. Close.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  3319. Close.BackgroundTransparency = 0.5
  3320. Close.BorderColor3 = Color3.new(0, 0, 0)
  3321. Close.BorderSizePixel = 2
  3322. Close.Position = UDim2.new(1.005, 0, 0, 0)
  3323. Close.Size = UDim2.new(0.100000001, 0, 0.2, 0)
  3324. Close.Font = Enum.Font.SourceSans
  3325. Close.FontSize = Enum.FontSize.Size14
  3326. Close.Text = "X"
  3327. Close.TextColor3 = Color3.new(1, 1, 1)
  3328. Close.TextScaled = true
  3329. Close.TextSize = 14
  3330. Close.TextStrokeTransparency = 0
  3331. Close.TextWrapped = true
  3332.  
  3333. RedHue.Name = "RedHue"
  3334. RedHue.Parent = CustomizeGui
  3335. RedHue.BackgroundColor3 = Color3.new(1, 1, 1)
  3336. RedHue.BackgroundTransparency = 1
  3337. RedHue.Position = UDim2.new(0.100000001, 0, 0.400000006, 0)
  3338. RedHue.Size = UDim2.new(0.300000012, 0, 0.100000001, 0)
  3339. RedHue.Font = Enum.Font.SourceSans
  3340. RedHue.FontSize = Enum.FontSize.Size24
  3341. RedHue.Text = "RED Hue Value: "
  3342. RedHue.TextColor3 = Color3.new(1, 1, 1)
  3343. RedHue.TextScaled = true
  3344. RedHue.TextSize = 20
  3345. RedHue.TextStrokeColor3 = Color3.new(1, 0, 0)
  3346. RedHue.TextStrokeTransparency = 0.75
  3347. RedHue.TextWrapped = true
  3348.  
  3349. GreenHue.Name = "GreenHue"
  3350. GreenHue.Parent = CustomizeGui
  3351. GreenHue.BackgroundColor3 = Color3.new(1, 1, 1)
  3352. GreenHue.BackgroundTransparency = 1
  3353. GreenHue.Position = UDim2.new(0.100000001, 0, 0.5, 0)
  3354. GreenHue.Size = UDim2.new(0.300000012, 0, 0.100000001, 0)
  3355. GreenHue.Font = Enum.Font.SourceSans
  3356. GreenHue.FontSize = Enum.FontSize.Size24
  3357. GreenHue.Text = "GREEN Hue Value:"
  3358. GreenHue.TextColor3 = Color3.new(1, 1, 1)
  3359. GreenHue.TextScaled = true
  3360. GreenHue.TextSize = 20
  3361. GreenHue.TextStrokeColor3 = Color3.new(0, 1, 0)
  3362. GreenHue.TextStrokeTransparency = 0.75
  3363. GreenHue.TextWrapped = true
  3364.  
  3365. RedInput.Name = "RedInput"
  3366. RedInput.Parent = CustomizeGui
  3367. RedInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  3368. RedInput.BackgroundTransparency = 0.5
  3369. RedInput.BorderSizePixel = 0
  3370. RedInput.Position = UDim2.new(0.419999987, 0, 0.425000007, 0)
  3371. RedInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  3372. RedInput.Font = Enum.Font.SourceSans
  3373. RedInput.FontSize = Enum.FontSize.Size14
  3374. RedInput.Text = "255"
  3375. RedInput.TextColor3 = Color3.new(1, 1, 1)
  3376. RedInput.TextSize = 14
  3377. RedInput.TextStrokeTransparency = 0
  3378.  
  3379. BlueHue.Name = "BlueHue"
  3380. BlueHue.Parent = CustomizeGui
  3381. BlueHue.BackgroundColor3 = Color3.new(1, 1, 1)
  3382. BlueHue.BackgroundTransparency = 1
  3383. BlueHue.Position = UDim2.new(0.100000001, 0, 0.600000024, 0)
  3384. BlueHue.Size = UDim2.new(0.300000012, 0, 0.100000001, 0)
  3385. BlueHue.Font = Enum.Font.SourceSans
  3386. BlueHue.FontSize = Enum.FontSize.Size24
  3387. BlueHue.Text = "BLUE Hue Value:"
  3388. BlueHue.TextColor3 = Color3.new(1, 1, 1)
  3389. BlueHue.TextScaled = true
  3390. BlueHue.TextSize = 20
  3391. BlueHue.TextStrokeColor3 = Color3.new(0, 0, 1)
  3392. BlueHue.TextStrokeTransparency = 0.75
  3393. BlueHue.TextWrapped = true
  3394.  
  3395. TrailTransparency.Name = "TrailTransparency"
  3396. TrailTransparency.Parent = CustomizeGui
  3397. TrailTransparency.BackgroundColor3 = Color3.new(1, 1, 1)
  3398. TrailTransparency.BackgroundTransparency = 1
  3399. TrailTransparency.Position = UDim2.new(0.090000001, 0, 0.700000024, 0)
  3400. TrailTransparency.Size = UDim2.new(0.310000012, 0, 0.100000001, 0)
  3401. TrailTransparency.Font = Enum.Font.SourceSans
  3402. TrailTransparency.FontSize = Enum.FontSize.Size24
  3403. TrailTransparency.Text = "Trail Transparency:"
  3404. TrailTransparency.TextColor3 = Color3.new(1, 1, 1)
  3405. TrailTransparency.TextScaled = true
  3406. TrailTransparency.TextSize = 20
  3407. TrailTransparency.TextStrokeColor3 = Color3.new(0, 0, 0)
  3408. TrailTransparency.TextWrapped = true
  3409.  
  3410. GreenInput.Name = "GreenInput"
  3411. GreenInput.Parent = CustomizeGui
  3412. GreenInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  3413. GreenInput.BackgroundTransparency = 0.5
  3414. GreenInput.BorderSizePixel = 0
  3415. GreenInput.Position = UDim2.new(0.419999987, 0, 0.524999976, 0)
  3416. GreenInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  3417. GreenInput.Font = Enum.Font.SourceSans
  3418. GreenInput.FontSize = Enum.FontSize.Size14
  3419. GreenInput.Text = "255"
  3420. GreenInput.TextColor3 = Color3.new(1, 1, 1)
  3421. GreenInput.TextSize = 14
  3422. GreenInput.TextStrokeTransparency = 0
  3423.  
  3424. TransInput.Name = "TransInput"
  3425. TransInput.Parent = CustomizeGui
  3426. TransInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  3427. TransInput.BackgroundTransparency = 0.5
  3428. TransInput.BorderSizePixel = 0
  3429. TransInput.Position = UDim2.new(0.419999987, 0, 0.725000024, 0)
  3430. TransInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  3431. TransInput.Font = Enum.Font.SourceSans
  3432. TransInput.FontSize = Enum.FontSize.Size14
  3433. TransInput.Text = "50"
  3434. TransInput.TextColor3 = Color3.new(1, 1, 1)
  3435. TransInput.TextSize = 14
  3436. TransInput.TextStrokeTransparency = 0
  3437.  
  3438. BlueInput.Name = "BlueInput"
  3439. BlueInput.Parent = CustomizeGui
  3440. BlueInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  3441. BlueInput.BackgroundTransparency = 0.5
  3442. BlueInput.BorderSizePixel = 0
  3443. BlueInput.Position = UDim2.new(0.419999987, 0, 0.625, 0)
  3444. BlueInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  3445. BlueInput.Font = Enum.Font.SourceSans
  3446. BlueInput.FontSize = Enum.FontSize.Size14
  3447. BlueInput.Text = "255"
  3448. BlueInput.TextColor3 = Color3.new(1, 1, 1)
  3449. BlueInput.TextSize = 14
  3450. BlueInput.TextStrokeTransparency = 0
  3451.  
  3452. Message.Name = "Message"
  3453. Message.Parent = CustomizeGui
  3454. Message.BackgroundColor3 = Color3.new(1, 1, 1)
  3455. Message.BackgroundTransparency = 1
  3456. Message.Position = UDim2.new(0, 0, 0.2500004, 0)
  3457. Message.Size = UDim2.new(1, 0, 0.100000006, 0)
  3458. Message.Font = Enum.Font.SourceSans
  3459. Message.FontSize = Enum.FontSize.Size18
  3460. Message.Text = "|| Inputs must be values ||"
  3461. Message.TextColor3 = Color3.new(1, 1, 1)
  3462. Message.TextScaled = true
  3463. Message.TextSize = 15
  3464. Message.TextStrokeTransparency = 0.75
  3465. Message.TextWrapped = true
  3466.  
  3467. local attun = Instance.new("Attachment", knife)
  3468. attun.Position = Vector3.new(0, 0.1, -1.75)
  3469. local atdos = Instance.new("Attachment", knife)
  3470. atdos.Position = Vector3.new(0, -0.1, 0.5)
  3471. local trail = Instance.new("Trail", knife)
  3472. trail.LightEmission = 0.5
  3473. trail.Attachment0 = attun
  3474. trail.Attachment1 = atdos
  3475. trail.Lifetime = 0.175
  3476. trail.MinLength = 0
  3477. trail.Enabled = false
  3478.  
  3479. function updatez()
  3480. local rc = tonumber(RedInput.Text)
  3481. local gc = tonumber(GreenInput.Text)
  3482. local bc = tonumber(BlueInput.Text)
  3483. local tcupd = tonumber(TransInput.Text)
  3484. if rc == nil then
  3485. rc = 0
  3486. end
  3487. if gc == nil then
  3488. gc = 0
  3489. end
  3490. if bc == nil then
  3491. bc = 0
  3492. end
  3493. if tcupd == nil then
  3494. tcupd = 0
  3495. end
  3496. local tc = tcupd/100
  3497. Color.BackgroundColor3 = Color3.fromRGB(rc,gc,bc)
  3498. ClosestColor.Text = "Your color is closest to "..tostring(BrickColor.new(Color3.fromRGB(rc,gc,bc)))
  3499. obj32.Color = Color3.fromRGB(rc,gc,bc)
  3500. obj33.Color = Color3.fromRGB(rc,gc,bc)
  3501. obj34.Color = Color3.fromRGB(rc,gc,bc)
  3502. obj35.Color = Color3.fromRGB(rc,gc,bc)
  3503. obj36.Color = Color3.fromRGB(rc,gc,bc)
  3504. obj37.Color = Color3.fromRGB(rc,gc,bc)
  3505. obj38.Color = Color3.fromRGB(rc,gc,bc)
  3506. trail.Color = ColorSequence.new(Color3.fromRGB(rc, gc, bc))
  3507. trail.Transparency = NumberSequence.new(tc)
  3508. TrailTransparency.TextStrokeTransparency = tc
  3509. end
  3510.  
  3511. RedInput.Changed:connect(function(val)
  3512. if val == "Text" and tonumber(RedInput.Text) then
  3513. RedInput.Text = tostring(tonumber(RedInput.Text))
  3514. if tonumber(RedInput.Text) > 255 then
  3515. RedInput.Text = '255'
  3516. end
  3517. elseif val == "Text" then
  3518. RedInput.Text = ""
  3519. end
  3520. updatez()
  3521. end)
  3522. GreenInput.Changed:connect(function(val)
  3523. if val == "Text" and tonumber(GreenInput.Text) then
  3524. GreenInput.Text = tostring(tonumber(GreenInput.Text))
  3525. if tonumber(GreenInput.Text) > 255 then
  3526. GreenInput.Text = '255'
  3527. end
  3528. elseif val == "Text" then
  3529. GreenInput.Text = ""
  3530. end
  3531. updatez()
  3532. end)
  3533. BlueInput.Changed:connect(function(val)
  3534. if val == "Text" and tonumber(BlueInput.Text) then
  3535. BlueInput.Text = tostring(tonumber(BlueInput.Text))
  3536. if tonumber(BlueInput.Text) > 255 then
  3537. BlueInput.Text = '255'
  3538. end
  3539. elseif val == "Text" then
  3540. BlueInput.Text = ""
  3541. end
  3542. updatez()
  3543. end)
  3544. TransInput.Changed:connect(function(val)
  3545. if val == "Text" and tonumber(TransInput.Text) then
  3546. TransInput.Text = tostring(tonumber(TransInput.Text))
  3547. if tonumber(TransInput.Text) > 100 then
  3548. TransInput.Text = '100'
  3549. end
  3550. elseif val == "Text" then
  3551. TransInput.Text = ""
  3552. end
  3553. updatez()
  3554. end)
  3555.  
  3556. Close.MouseButton1Click:connect(function()
  3557. if lerpz == false then
  3558. lerpz = true
  3559. if Close.Text ~= "+" then
  3560. CustomizeGui:TweenPosition(UDim2.new(-0.45,0,0.5,0,Enum.EasingDirection.Out,Enum.EasingStyle.Quint,2))
  3561. for i=1,10 do
  3562. Close.TextTransparency = i/10
  3563. Close.TextStrokeTransparency = i/10
  3564. wait(0.01)
  3565. end
  3566. Close.Text = "+"
  3567. for i=1,10 do
  3568. Close.TextTransparency = (10-i+1)/10
  3569. Close.TextStrokeTransparency = (10-i+1)/10
  3570. wait(0.01)
  3571. end
  3572. lerpz = false
  3573. else
  3574. CustomizeGui:TweenPosition(UDim2.new(0,0,0.5,0,Enum.EasingDirection.Out,Enum.EasingStyle.Quint,2))
  3575. for i=1,10 do
  3576. Close.TextTransparency = i/10
  3577. Close.TextStrokeTransparency = i/10
  3578. wait(0.01)
  3579. end
  3580. Close.Text = "X"
  3581. for i=1,10 do
  3582. Close.TextTransparency = (10-i+1)/10
  3583. Close.TextStrokeTransparency = (10-i+1)/10
  3584. wait(0.01)
  3585. end
  3586. lerpz = false
  3587. end
  3588. end
  3589. end)
  3590.  
  3591. MusicOption.MouseButton1Click:connect(function()
  3592. if canbackgroundmusic == true then
  3593. canbackgroundmusic = false
  3594. MusicOption.BackgroundColor3 = Color3.new(1, 0, 0)
  3595. else
  3596. canbackgroundmusic = true
  3597. MusicOption.BackgroundColor3 = Color3.new(0, 1, 0)
  3598. end
  3599. end)
  3600.  
  3601. ScreenOption.MouseButton1Click:connect(function()
  3602. if cancolorfilter == true then
  3603. cancolorfilter = false
  3604. ScreenOption.BackgroundColor3 = Color3.new(1, 0, 0)
  3605. else
  3606. cancolorfilter = true
  3607. ScreenOption.BackgroundColor3 = Color3.new(0, 1, 0)
  3608. end
  3609. end)
  3610.  
  3611. function equip()
  3612. local doit = coroutine.wrap(function()
  3613. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') then
  3614. acting = true
  3615. local arm = me["Right Arm"]
  3616. local arm2 = me["Left Arm"]
  3617. local tors = me.Torso
  3618. local weld = Instance.new('Weld',arm)
  3619. weld.Part0 = arm
  3620. weld.Part1 = tors
  3621. weld.C0 = CFrame.new(-1.5,0,0)
  3622. local weld2 = Instance.new("Weld", arm2)
  3623. weld2.Part0 = arm2
  3624. weld2.Part1 = tors
  3625. weld2.C0 = CFrame.new(1.5, 0, 0)
  3626. wait(0.001)
  3627. for i = 0,1,0.1 do
  3628. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  3629. weld.C0 = weld.C0:lerp(CFrame.new(-0.2,0.2,-0.5)*CFrame.Angles(0,-3.1,0.9),i)
  3630. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0.6, 0) * CFrame.Angles(0,0,0.5),i)
  3631. wait(0.001)
  3632. end
  3633. wait(0.15)
  3634. trail.Enabled = true
  3635. for i = 0,1,0.1 do
  3636. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  3637. weld.C0 = weld.C0:lerp(CFrame.new(-0.5,2,0)*CFrame.Angles(0,0,-1.55),i)
  3638. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0, 0), i)
  3639. wait(0.001)
  3640. end
  3641. trail.Enabled = false
  3642. wait(0.2)
  3643. for i = 0,1,0.1 do
  3644. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  3645. weld.C0 = weld.C0:lerp(CFrame.new(-1.5,0,0),i)
  3646. wait(0.001)
  3647. end
  3648. weld:Destroy()
  3649. weld2:Remove()
  3650. if tors ~= nil then
  3651. rightshoulderz:Clone().Parent = me.Torso
  3652. leftshoulderz:Clone().Parent = me.Torso
  3653. end
  3654. end
  3655. acting = false
  3656. end)
  3657. doit()
  3658. end
  3659.  
  3660. function kysnigga()
  3661. if kyssing == true then return end
  3662. kyssing = true
  3663. acting = true
  3664. decearingTHING = math.random(1, 100)
  3665. if decearingTHING == 4 then
  3666. decearingEGG = Instance.new("Sound", me.Torso)
  3667. decearingEGG.SoundId = "rbxassetid://138084557"
  3668. decearingEGG.PlaybackSpeed = math.random(10, 12) / 10
  3669. decearingEGG.TimePosition = 0.2
  3670. decearingEGG:Play()
  3671. end
  3672. me.Humanoid.WalkSpeed = 0
  3673. me.Humanoid.JumpPower = 0
  3674.  
  3675. local rightarm = Instance.new("Weld", me.Torso)
  3676. rightarm.Part0 = me.Torso
  3677. rightarm.Part1 = me["Right Arm"]
  3678. rightarm.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(1.5, 0, 0)
  3679.  
  3680. local leftarm = Instance.new("Weld", me.Torso)
  3681. leftarm.Part0 = me.Torso
  3682. leftarm.Part1 = me["Left Arm"]
  3683. leftarm.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-1.5, 0, 0)
  3684.  
  3685. local tors = Instance.new("Weld", me.HumanoidRootPart)
  3686. tors.Part0 = me.HumanoidRootPart
  3687. tors.Part1 = me.Torso
  3688. tors.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0, 0, 0)
  3689.  
  3690. local rightleg = Instance.new("Weld", me.Torso)
  3691. rightleg.Part0 = me.Torso
  3692. rightleg.Part1 = me["Right Leg"]
  3693. rightleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0.5, -2, 0)
  3694.  
  3695. local leftleg = Instance.new("Weld", me.Torso)
  3696. leftleg.Part0 = me.Torso
  3697. leftleg.Part1 = me["Left Leg"]
  3698. leftleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-0.5, -2, 0)
  3699.  
  3700. for i = 0, 1, 0.03 do
  3701. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-10), 0, 0), i)
  3702. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, 0), i)
  3703. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, 0), i)
  3704. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), i)
  3705. wait()
  3706. end
  3707. for i = 0, 1, 0.03 do
  3708. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(5), 0, 0), i)
  3709. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, 0.15) * CFrame.Angles(math.rad(-95), 0, 0), i)
  3710. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, 0.15) * CFrame.Angles(math.rad(-95), 0, 0), i)
  3711. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1, 0.3, -1.5) * CFrame.Angles(math.rad(90), 0, math.rad(-35)), i)
  3712. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1, 0.3, -1.5) * CFrame.Angles(math.rad(90), 0, math.rad(35)), i)
  3713. knifeweld.C1 = knifeweld.C1:lerp(CFrame.new(1.35, 0, 1) * CFrame.Angles(1.55, math.rad(-180), 1), i)
  3714. wait()
  3715. end
  3716. local bleedzer = Instance.new('Part',me.Torso)
  3717. bleedzer.CFrame = me.Torso.CFrame
  3718. bleedzer.Size = Vector3.new(0.1,0.1,0.1)
  3719. bleedzer.Transparency = 1
  3720. bleedzer.CanCollide = false
  3721. local weld = Instance.new('Weld',bleedzer)
  3722. weld.Part0 = bleedzer
  3723. weld.Part1 = me.Torso
  3724. weld.C0= CFrame.new(0,0,0)*CFrame.Angles(math.rad(-90),0,0)
  3725. local woodpekker = coroutine.wrap(function()
  3726. bleed(bleedzer)
  3727. end)
  3728. woodpekker()
  3729. audio.SoundId = "rbxassetid://199977936"
  3730. audio.PlaybackSpeed = 1.5
  3731. audio:Play()
  3732. audio2.SoundId = "rbxassetid://220834019"
  3733. audio2.PlaybackSpeed = 1
  3734. audio2.TimePosition = 0.1
  3735. audio2:Play()
  3736. for i = 0, 1, 0.1 do
  3737. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-20), 0, 0), i)
  3738. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  3739. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  3740. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1, 0, 0) * CFrame.Angles(math.rad(70), 0, math.rad(-35)), i)
  3741. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1, 0, 0) * CFrame.Angles(math.rad(70), 0, math.rad(35)), i)
  3742. knifeweld.C1 = knifeweld.C1:lerp(CFrame.new(1.35, 0, 1) * CFrame.Angles(1.55, math.rad(-180), 1), i)
  3743. wait()
  3744. end
  3745. wait(1)
  3746. audio.SoundId = "rbxassetid://210943487"
  3747. audio.TimePosition = 0.2
  3748. audio.PlaybackSpeed = 0.75
  3749. audio:Play()
  3750. for i = 0, 1, 0.03 do
  3751. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-20), 0, 0), i)
  3752. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  3753. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  3754. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1, 0.3, -1.5) * CFrame.Angles(math.rad(70), 0, math.rad(-35)), i)
  3755. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1, 0.3, -1.5) * CFrame.Angles(math.rad(70), 0, math.rad(35)), i)
  3756. knifeweld.C1 = knifeweld.C1:lerp(CFrame.new(1.35, 0, 1) * CFrame.Angles(1.55, math.rad(-180), 1), i)
  3757. wait()
  3758. end
  3759. for i = 0, 1, 0.03 do
  3760. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 0, -0.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), i)
  3761. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1.5, 0, -0.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), i)
  3762. knifeweld.C1 = knifeweld.C1:lerp(CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0), i)
  3763. wait()
  3764. end
  3765. wait(0.24)
  3766. if me:FindFirstChildOfClass('Humanoid') then
  3767. me:FindFirstChildOfClass('Humanoid').Health = 0
  3768. end
  3769. wait(0.01)
  3770. killz(me,me.Torso.Name,nil,nil,true)
  3771.  
  3772. tors:Remove()
  3773. rightarm:Remove()
  3774. rightleg:Remove()
  3775. leftleg:Remove()
  3776. leftarm:Remove()
  3777. rightshoulderz:Clone().Parent = me.Torso
  3778. leftshoulderz:Clone().Parent = me.Torso
  3779. torsojoint:Clone().Parent = me.HumanoidRootPart
  3780. lefthipz:Clone().Parent = me.Torso
  3781. righthipz:Clone().Parent = me.Torso
  3782. me.Humanoid.JumpPower = 50
  3783. me.Humanoid.WalkSpeed = 16
  3784. acting = false
  3785. canClick = true
  3786. doing = false
  3787. hit = false
  3788. kyssing = false
  3789. if decearingTHING == 4 then
  3790. decearingEGG:Remove()
  3791. end
  3792. end
  3793.  
  3794. function bleedout()
  3795. local doit = coroutine.wrap(function()
  3796. local targe = grabbed
  3797. local num = 0
  3798. while targe and targe:FindFirstChildOfClass('Humanoid') and targe:FindFirstChildOfClass('Humanoid').Health > 0 and num < 11 do
  3799. if targe.Head:FindFirstChild('Died') then
  3800. tone = math.random(6, 12) / 10
  3801. targe.Head.Died.PlaybackSpeed = tone
  3802. targe.Head.Died:Play()
  3803. else
  3804. local deathsound = Instance.new('Sound',targe.Head)
  3805. deathsound.Name = "Died"
  3806. deathsound.SoundId = 'rbxasset://sounds/uuhhh.mp3'
  3807. deathsound.Volume = 0.65
  3808. deathsound.EmitterSize = 5
  3809. deathsound.MaxDistance = 150
  3810. tone = math.random(5, 15) / 10
  3811. targe.Head.Died.PlaybackSpeed = tone
  3812. targe.Head.Died:Play()
  3813. end
  3814. targe:FindFirstChildOfClass('Humanoid').Health = targe:FindFirstChildOfClass('Humanoid').Health - 7
  3815. num = num+1
  3816. wait(0.325)
  3817. end
  3818. targe:FindFirstChildOfClass('Humanoid').Health = 0
  3819. wait()
  3820. killz(targe,'Head',nil,nil,false,true)
  3821. wait(2)
  3822. targe:Remove()
  3823. end)
  3824. doit()
  3825. end
  3826.  
  3827. function liedown()
  3828. local doit = coroutine.wrap(function()
  3829. local targe = grabbed
  3830. wait(2)
  3831. if targe and targe:FindFirstChildOfClass('Humanoid') then
  3832. targe:FindFirstChildOfClass('Humanoid').PlatformStand = false
  3833. end
  3834. end)
  3835. doit()
  3836. end
  3837.  
  3838. function grab()
  3839. local doit = coroutine.wrap(function()
  3840. acting = true
  3841. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed + 3
  3842. local arm = me["Right Arm"]
  3843. local tors = me.Torso
  3844. local arm2 = me["Left Arm"]
  3845. local humanroot = me.HumanoidRootPart
  3846. local weld2 = Instance.new('Weld',arm)
  3847. weld2.Part0 = arm
  3848. weld2.Part1 = tors
  3849. weld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  3850. local weld3 = Instance.new('Weld',arm2)
  3851. weld3.Part0 = arm2
  3852. weld3.Part1 = tors
  3853. weld3.C0 = CFrame.new(1.5,0,-0.3) * CFrame.Angles(0.3,0.1,0)
  3854. for i = 0,1,0.05 do
  3855. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or humanroot == nil then return end
  3856. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.2,1.3,0.4)*CFrame.Angles(0.5,0,-1.2),i)
  3857. weld3.C0 = weld3.C0:lerp(CFrame.new(1.2,1.3,0)*CFrame.Angles(0,0,1.2),i)
  3858. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), -1.55) * CFrame.new(0, 0.95, 0)
  3859. wait(0.01)
  3860. end
  3861. grabbing = true
  3862. trail.Enabled = true
  3863. for i = 0,1,0.10 do
  3864. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or humanroot == nil then return end
  3865. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-1.5, 0, -1.3), i)
  3866. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.5, 0, 1.1), i)
  3867. wait(0.01)
  3868. end
  3869. trail.Enabled = false
  3870. wait(0.5)
  3871. grabbing = false
  3872. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed - 3
  3873. if grabbed == nil then
  3874. for i = 0,1,0.1 do
  3875. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil then return end
  3876. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  3877. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0),i)
  3878. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0)
  3879. wait(0.001)
  3880. end
  3881. weld2:Destroy()
  3882. weld3:Destroy()
  3883. rightshoulderz:Clone().Parent = me.Torso
  3884. leftshoulderz:Clone().Parent = me.Torso
  3885. acting = false
  3886. canClick = true
  3887. end
  3888. end)
  3889. doit()
  3890. end
  3891.  
  3892. function kill()
  3893. paralyzed = false
  3894. if grabbed.Torso:FindFirstChild("TargetWeld") == nil or grabbed:FindFirstChildOfClass('Humanoid').Health <= 0 then hardrelease() return end
  3895. targetweld = grabbed.Torso.TargetWeld
  3896. targetweld2 = nil
  3897. local reee = grabbed:FindFirstChild("Left Arm")
  3898. if reee and reee:FindFirstChild("Weld") then
  3899. targetweld2 = reee.Weld
  3900. end
  3901. for i, v in pairs(grabbed:GetChildren()) do
  3902. if v.Name == "Part" then
  3903. v.CanCollide = true
  3904. end
  3905. end
  3906. targetweld3pt = grabbed:FindFirstChild("Right Arm")
  3907. local targetrightshoulder = rightshoulder
  3908. local targetleftshoulder = leftshoulder
  3909. local targetweld3 = Instance.new("Weld", targetweld3pt)
  3910. targetweld3.Part0 = grabbed.Torso
  3911. targetweld3.Part1 = targetweld3pt
  3912. targetweld3.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(1.5, 0, 0)
  3913.  
  3914. local doit = coroutine.wrap(function()
  3915. local arm = me["Right Arm"]
  3916. local tors = grabbed.Torso
  3917. local arm2 = me["Left Arm"]
  3918. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  3919. doing = true
  3920. local weld2 = arm:FindFirstChildOfClass('Weld')
  3921. local weld3 = arm2:FindFirstChildOfClass('Weld')
  3922. local humanroot = me.HumanoidRootPart
  3923.  
  3924. for i = 0,1,0.1 do
  3925. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  3926. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-1.9, 0, -1.4), i)
  3927. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 0.5, -0.5)* CFrame.Angles(-1.5, 0.4, 1.1), i)
  3928. wait(0.01)
  3929. end
  3930.  
  3931. audio:Stop()
  3932. audio.SoundId = "rbxassetid://517040733"
  3933. tone = math.random(1, 3)
  3934. if tone == 1 then audio.PlaybackSpeed = 0.8 audio.TimePosition = 0.3 end
  3935. if tone == 2 then audio.PlaybackSpeed = 1 audio.TimePosition = 0.1 end
  3936. if tone == 3 then audio.PlaybackSpeed = 1.2 audio.TimePosition = 0.2 end
  3937. audio:Play()
  3938.  
  3939. local bleedpart = Instance.new("Part", grabbed)
  3940. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  3941. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  3942. bleedpart.CanCollide = false
  3943. bleedpart.Position = grabbed.Head.Position + Vector3.new(0, 1, 0)
  3944. bleedpart.Transparency = 1
  3945.  
  3946. local bleedpartweld = Instance.new("Weld", grabbed.Torso)
  3947. bleedpartweld.Part0 = grabbed.Torso
  3948. bleedpartweld.Part1 = bleedpart
  3949. bleedpartweld.C0 = CFrame.Angles(-1, 0, -0.35) * CFrame.new(0, 1, 0.8)
  3950. local coru=coroutine.wrap(function()
  3951. bleed(bleedpart)
  3952. end)
  3953. coru()
  3954.  
  3955. local slightthrow = Instance.new("BodyThrust", grabbed.Torso)
  3956. slightthrow.Force = Vector3.new(0, 0, -2500)
  3957.  
  3958. local slightthrow2 = Instance.new("BodyAngularVelocity", grabbed.Torso)
  3959. slightthrow2.AngularVelocity = Vector3.new(0, -1000, 0)
  3960. slightthrow2.MaxTorque = Vector3.new(1000, 1000, 1000)
  3961.  
  3962. if grabbed:FindFirstChildOfClass('Humanoid') then
  3963. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = true
  3964. end
  3965.  
  3966. killz(grabbed,'Left Leg')
  3967. killz(grabbed,'Left Arm')
  3968. killz(grabbed,'Right Leg')
  3969. killz(grabbed,'Right Arm')
  3970.  
  3971. trail.Enabled = true
  3972.  
  3973. for i = 0,1,0.2 do
  3974. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  3975. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 1.7, -0.5)* CFrame.Angles(-0.25, 0, -1.4), i)
  3976. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1.6, -0.5)* CFrame.Angles(-1.5, -1, 1.1), i)
  3977. wait(0.01)
  3978. end
  3979.  
  3980. trail.Enabled = false
  3981.  
  3982. bleedout()
  3983.  
  3984. rightshoulderz:Clone().Parent = me.Torso
  3985. leftshoulderz:Clone().Parent = me.Torso
  3986. grabbed = nil
  3987.  
  3988. if humanroot:FindFirstChild('Holder') then
  3989. humanroot.Holder:Destroy()
  3990. end
  3991.  
  3992. wait(0.2)
  3993. slightthrow:Remove()
  3994. slightthrow2:Remove()
  3995. for i = 0,1,0.05 do
  3996. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  3997. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5, 0, 0)* CFrame.Angles(0, 0, 0), i)
  3998. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5, 0, 0)* CFrame.Angles(0, 0, 0), i)
  3999. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0)
  4000. wait(0.01)
  4001. end
  4002.  
  4003. weld2:Destroy()
  4004. weld3:Destroy()
  4005. targetweld = nil
  4006. targetweld2 = nil
  4007. targetweld3 = nil
  4008. rightshoulderz:Clone().Parent = me.Torso
  4009. leftshoulderz:Clone().Parent = me.Torso
  4010. acting = false
  4011. canClick = true
  4012. doing = false
  4013. end)
  4014. doit()
  4015. end
  4016.  
  4017. function finish()
  4018. if finishing == true then return end
  4019. finishing = true
  4020. acting = true
  4021. decearingTHING = math.random(1, 100)
  4022. if decearingTHING == 4 then
  4023. decearingEGG = Instance.new("Sound", me.Torso)
  4024. decearingEGG.SoundId = "rbxassetid://138084557"
  4025. decearingEGG.PlaybackSpeed = math.random(10, 12) / 10
  4026. decearingEGG.TimePosition = 0.2
  4027. decearingEGG:Play()
  4028. end
  4029. me.Humanoid.WalkSpeed = 0
  4030. me.Humanoid.JumpPower = 0
  4031.  
  4032. local rightarm = Instance.new("Weld", me.Torso)
  4033. rightarm.Part0 = me.Torso
  4034. rightarm.Part1 = me["Right Arm"]
  4035. rightarm.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(1.5, 0, 0)
  4036.  
  4037. local tors = Instance.new("Weld", me.HumanoidRootPart)
  4038. tors.Part0 = me.HumanoidRootPart
  4039. tors.Part1 = me.Torso
  4040. tors.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0, 0, 0)
  4041.  
  4042. local rightleg = Instance.new("Weld", me.Torso)
  4043. rightleg.Part0 = me.Torso
  4044. rightleg.Part1 = me["Right Leg"]
  4045. rightleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0.5, -2, 0)
  4046.  
  4047. local leftleg = Instance.new("Weld", me.Torso)
  4048. leftleg.Part0 = me.Torso
  4049. leftleg.Part1 = me["Left Leg"]
  4050. leftleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-0.5, -2, 0)
  4051.  
  4052. for i = 0, 1, 0.05 do
  4053. tors.C0 = tors.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(15), 0, 0), i)
  4054. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -2, 0.2) * CFrame.Angles(math.rad(-15), 0, 0), i)
  4055. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -2, 0.2) * CFrame.Angles(math.rad(-15), 0, 0), i)
  4056. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 1.9, 0) * CFrame.Angles(math.rad(179), math.rad(179), 0), i)
  4057. wait()
  4058. end
  4059. for i=1,finishnum do
  4060. local num1 = 0.5
  4061. local num2 = 0.5
  4062. local num3 = 0.25
  4063. if finishnum ~= 1 then
  4064. num3 = 0
  4065. end
  4066. trail.Enabled = true
  4067. for i = 0, 1, num1 do
  4068. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-60), 0, 0), i)
  4069. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1.5, 0) * CFrame.Angles(math.rad(0), 0, 0), i)
  4070. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -0.7, -1) * CFrame.Angles(math.rad(10), 0, 0), i)
  4071. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 1.9, -1) * CFrame.Angles(math.rad(160), math.rad(150), 0), i)
  4072. wait()
  4073. end
  4074. wait()
  4075. for i = 0, 1, num2 do
  4076. tors.C0 = tors.C0:lerp(CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-20), 0, 0), i)
  4077. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1.5, 0) * CFrame.Angles(math.rad(-30), 0, 0), i)
  4078. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -0.7, -1) * CFrame.Angles(math.rad(-20), 0, 0), i)
  4079. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 1.9, 0.2) * CFrame.Angles(math.rad(250), math.rad(180), 0), i)
  4080. wait()
  4081. end
  4082. trail.Enabled = false
  4083. wait(num3)
  4084. end
  4085. wait()
  4086. for i = 0, 1, 0.05 do
  4087. tors.C0 = tors.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), i)
  4088. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -2, 0) * CFrame.Angles(0, 0, 0), i)
  4089. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -2, 0) * CFrame.Angles(0, 0, 0), i)
  4090. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 0, 0) * CFrame.Angles(0, 0, 0), i)
  4091. wait()
  4092. end
  4093. tors:Remove()
  4094. rightarm:Remove()
  4095. rightleg:Remove()
  4096. leftleg:Remove()
  4097. rightshoulderz:Clone().Parent = me.Torso
  4098. leftshoulderz:Clone().Parent = me.Torso
  4099. torsojoint:Clone().Parent = me.HumanoidRootPart
  4100. lefthipz:Clone().Parent = me.Torso
  4101. righthipz:Clone().Parent = me.Torso
  4102. me.Humanoid.JumpPower = 50
  4103. me.Humanoid.WalkSpeed = 16
  4104. acting = false
  4105. canClick = true
  4106. doing = false
  4107. hit = false
  4108. finishing = false
  4109. if decearingTHING == 4 then
  4110. decearingEGG:Remove()
  4111. end
  4112. end
  4113.  
  4114. function throw()
  4115. if grabbed.Torso:FindFirstChild("TargetWeld") == nil or grabbed:FindFirstChildOfClass('Humanoid').Health <= 0 then return end
  4116. paralyzed = false
  4117. targetweld = grabbed.Torso.TargetWeld
  4118. local ree = grabbed:FindFirstChild("Left Arm")
  4119. targetweld2 =nil
  4120. if ree and ree:FindFirstChild("Weld") then
  4121. targetweld2 = ree.Weld
  4122. end
  4123.  
  4124. for i, v in pairs(grabbed:GetChildren()) do
  4125. if v.Name == "Part" then
  4126. v.CanCollide = true
  4127. end
  4128. end
  4129.  
  4130.  
  4131. local doit = coroutine.wrap(function()
  4132. local arm = me["Right Arm"]
  4133. local tors = grabbed.Torso
  4134. local arm2 = me["Left Arm"]
  4135. local targrightshoulder = rightshoulder
  4136.  
  4137. local targleftshoulder = leftshoulder
  4138. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  4139. doing = true
  4140. local weld2 = arm:FindFirstChildOfClass('Weld')
  4141. local weld3 = arm2:FindFirstChildOfClass('Weld')
  4142. local humanroot = me.HumanoidRootPart
  4143.  
  4144. for i = 0,1,0.2 do
  4145. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  4146. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 1.7, -0.5)* CFrame.Angles(-0.25, 1, -1.4), i)
  4147. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1.6, -0.5)* CFrame.Angles(-1.5, -1, 1.1), i)
  4148. targetweld.C0 = targetweld.C0:lerp(CFrame.new(0, 1.5, 0)*CFrame.Angles(0, 0, 0), i)
  4149. if targetweld2 then
  4150. targetweld2.C0 = targetweld2.C0:lerp(CFrame.new(-1.5, 0, 0)*CFrame.Angles(0, 0, 0), i)
  4151. end
  4152. wait(0.01)
  4153. end
  4154.  
  4155. audio:Stop()
  4156. audio.SoundId = "rbxassetid://536642316"
  4157. tone = math.random(1, 3)
  4158. if tone == 1 then audio.PlaybackSpeed = 0.8 audio.TimePosition = 0.08 end
  4159. if tone == 2 then audio.PlaybackSpeed = 1 audio.TimePosition = 0.1 end
  4160. if tone == 3 then audio.PlaybackSpeed = 1.2 audio.TimePosition = 0.12 end
  4161. audio:Play()
  4162.  
  4163. local slightthrow = Instance.new("BodyVelocity", grabbed.Torso)
  4164. slightthrow.Velocity = Vector3.new(0,20,0)+(me.Torso.CFrame.lookVector*20)
  4165. slightthrow.P = 5000
  4166. slightthrow.MaxForce = Vector3.new(9000001,9000001,9000001)
  4167. local point = grabbed.Torso.Position
  4168. local aaaaaa = grabbed
  4169. liedown()
  4170.  
  4171. rightshoulderz:Clone().Parent = me.Torso
  4172. leftshoulderz:Clone().Parent = me.Torso
  4173. grabbed = nil
  4174.  
  4175. if humanroot:FindFirstChild('Holder') then
  4176. humanroot.Holder:Destroy()
  4177. end
  4178. local coru = coroutine.wrap(function()
  4179. while aaaaaa and aaaaaa:FindFirstChild('Torso') and (aaaaaa.Torso.Position-point).magnitude < 5 do wait(0.001) end
  4180. if aaaaaa:FindFirstChildOfClass('Humanoid') then
  4181. aaaaaa:FindFirstChildOfClass('Humanoid').Name = "Humanoid"
  4182. aaaaaa:FindFirstChildOfClass('Humanoid').JumpPower = 50
  4183. aaaaaa:FindFirstChildOfClass('Humanoid').WalkSpeed = 16
  4184. end
  4185. slightthrow:Remove()
  4186. end)
  4187. coru()
  4188.  
  4189. for i = 0,1,0.05 do
  4190. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  4191. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  4192. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0),i)
  4193. wait(0.01)
  4194. end
  4195. weld2:Destroy()
  4196. weld3:Destroy()
  4197. targetweld:Remove()
  4198. if targetweld2 then
  4199. targetweld2:Remove()
  4200. end
  4201. if rightshoulder then
  4202. rightshoulder:Clone().Parent = tors
  4203. end
  4204. if leftshoulder then
  4205. leftshoulder:Clone().Parent = tors
  4206. end
  4207. headweld:Clone().Parent = tors
  4208. rightshoulderz:Clone().Parent = me.Torso
  4209. leftshoulderz:Clone().Parent = me.Torso
  4210. acting = false
  4211. canClick = true
  4212. doing = false
  4213. end)
  4214. doit()
  4215. end
  4216.  
  4217. cfn,ang,mr,int=CFrame.new,CFrame.Angles,math.rad,Instance.new
  4218. bc=BrickColor.new
  4219. local minimumsize = Vector3.new(0.7,0.7,0.7)
  4220. local surface_between_splitted_parts = 'SmoothNoOutlines'
  4221. local fragmentable = workspace
  4222. local list = {}
  4223. local brickcount = 0
  4224. local storage = {}
  4225. local fillup = 1000
  4226. local maximumstorage = 2000
  4227. local storage_position = Vector3.new(0,0,5000)
  4228. local stored_partsize = Vector3.new(1,1,1)
  4229. local parts_created_per_frame = 5
  4230.  
  4231. local minimumsize = Vector3.new(0.7,0.7,0.7)
  4232. local surface_between_splitted_parts = 'SmoothNoOutlines'
  4233. local fragmentable = workspace
  4234. local list = {}
  4235. local brickcount = 0
  4236. local storage = {}
  4237. local fillup = 1000
  4238. local maximumstorage = 2000
  4239. local storage_position = Vector3.new(0,0,5000)
  4240. local stored_partsize = Vector3.new(1,1,1)
  4241. local parts_created_per_frame = 5
  4242.  
  4243.  
  4244. function fragmentate(cframe,size,color,explosion_position,explosion_blastradius,backsurface,bottomsurface,frontsurface,leftsurface,rightsurface,topsurface,transparency,reflectance,material)
  4245. local xi = size.X >= minimumsize.X*(1+explosion_blastradius/16) and 2 or 1
  4246. local yi = size.Y >= minimumsize.Y*(1+explosion_blastradius/16) and 2 or 1
  4247. local zi = size.Z >= minimumsize.Z*(1+explosion_blastradius/16) and 2 or 1
  4248. if xi == 1 and yi == 1 and zi == 1 or (cframe.p-explosion_position).magnitude > size.magnitude/2 + explosion_blastradius then
  4249. if xi == 1 and yi == 1 and zi == 1 then return end
  4250. if #storage > 0 then
  4251. local p = storage[1]
  4252. p.BrickColor = color
  4253. p.Size = size
  4254. p.Anchored = false
  4255. p.BackSurface = backsurface
  4256. p.BottomSurface = bottomsurface
  4257. p.FrontSurface = frontsurface
  4258. p.LeftSurface = leftsurface
  4259. p.RightSurface = rightsurface
  4260. p.TopSurface = topsurface
  4261. p.Transparency = transparency
  4262. p.CFrame = cframe
  4263. p.Reflectance = reflectance
  4264. p.Material = material
  4265. game:GetService('Debris'):AddItem(p,30)
  4266. p:BreakJoints()
  4267. table.remove(storage,1)
  4268. else
  4269. local p = Instance.new("Part",fragmentable)
  4270. p.BrickColor = color
  4271. p.FormFactor = "Custom"
  4272. p.Size = size
  4273. p.BackSurface = backsurface
  4274. p.BottomSurface = bottomsurface
  4275. p.FrontSurface = frontsurface
  4276. p.LeftSurface = leftsurface
  4277. p.RightSurface = rightsurface
  4278. p.TopSurface = topsurface
  4279. p.Transparency = transparency
  4280. p.Material = material
  4281. if p.Transparency>0.285 then
  4282. p.Anchored = false
  4283. else
  4284. p.Anchored=false
  4285. p.Material='Wood'
  4286. game:GetService('Debris'):AddItem(p,10)
  4287. end
  4288. p.CFrame = cframe
  4289. p.Reflectance = reflectance
  4290. p:BreakJoints()
  4291. end
  4292. return
  4293. end
  4294. local mody = math.random(-125,125)/1000
  4295. for y = 1,yi do
  4296. if math.random()> 0.5 then
  4297. local modx = math.random(-125,125)/1000
  4298. for x = 1,xi do
  4299. local modz = math.random(-125,125)/1000
  4300. for z = 1,zi do --offset = x/xi-0.75+modx)
  4301. 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)),
  4302. 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,
  4303. 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,
  4304. z~=zi and surface_between_splitted_parts or backsurface,y==2 and surface_between_splitted_parts or bottomsurface,
  4305. 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,
  4306. y~=yi and surface_between_splitted_parts or topsurface,transparency,reflectance,material)
  4307. end
  4308.  
  4309. end
  4310. else
  4311. local modz = math.random(-125,125)/1000
  4312. for z = 1,zi do
  4313. local modx = math.random(-125,125)/1000
  4314. for x = 1,xi do
  4315. 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)),
  4316. 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,
  4317. zi == 2 and size.Z*(1-2*math.abs(z/zi-0.75+modz)) or size.Z),color,explosion_position,explosion_blastradius,
  4318. z~=zi and surface_between_splitted_parts or backsurface,y==2 and surface_between_splitted_parts or bottomsurface,
  4319. 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,
  4320. y~=yi and surface_between_splitted_parts or topsurface,transparency,reflectance,material)
  4321. end
  4322. end
  4323. end
  4324. end
  4325. end
  4326.  
  4327. function start_fragmentation(position,radius,nuh)
  4328. local search = Region3.new(position-Vector3.new(radius,radius,radius)*1.1,position+Vector3.new(radius,radius,radius)*1.1)
  4329. repeat
  4330. local finish = false
  4331. local parts = workspace:FindPartsInRegion3WithIgnoreList(search,list,100)
  4332. for i = 1,#parts do
  4333. table.insert(list,1,parts[i])
  4334. end
  4335. finish = true
  4336. until #parts < 100 and finish
  4337. local t = tick()
  4338. for i = 1,#list do
  4339. local p = list[i]
  4340. 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
  4341. 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)
  4342. if #storage < maximumstorage and p.Shape == "Block" then
  4343. p.Anchored = false
  4344. p.FormFactor = "Custom"
  4345. p.Size = stored_partsize
  4346. p.Position = storage_position
  4347. table.insert(storage,1,p)
  4348. else
  4349. p:Destroy()
  4350. end
  4351. end
  4352. 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
  4353. 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)
  4354. if #storage < maximumstorage and p.Shape == "Block" then
  4355. p.Anchored = false
  4356. p.Material='Wood'
  4357. p.FormFactor = "Custom"
  4358. p.Size = stored_partsize
  4359. p.Position = storage_position
  4360. table.insert(storage,1,p)
  4361. else
  4362. p:Destroy()
  4363. end
  4364. end
  4365. end
  4366. list = {}
  4367. end
  4368.  
  4369.  
  4370. function fling()
  4371. local doit = coroutine.wrap(function()
  4372. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') and me:FindFirstChild('HumanoidRootPart') then
  4373. acting = true
  4374. for i=1,finishnum do
  4375. local weld2 = Instance.new('Weld',me["Right Arm"])
  4376. weld2.Part0 = me["Right Arm"]
  4377. weld2.Part1 = me["Torso"]
  4378. weld2.C0 = CFrame.new(-1.5,0,0)
  4379. if finishnum == 1 then
  4380. for i = 0,1,0.05 do
  4381. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  4382. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0),i)
  4383. wait(0.01)
  4384. end
  4385. end
  4386. audio.SoundId = "rbxassetid://166083610"
  4387. audio.PlaybackSpeed = 1
  4388. audio.TimePosition = 0.1
  4389. audio:Play()
  4390. if finishnum == 1 then
  4391. for i = 0,1,0.5 do
  4392. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  4393. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0),i)
  4394. wait(0.001)
  4395. end
  4396. end
  4397. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  4398. local knofe = obj1:Clone()
  4399. for i, v in pairs(obj1:GetChildren()) do
  4400. if v:IsA('BasePart') then
  4401. v.Transparency = 1
  4402. end
  4403. end
  4404. knofe.Parent = workspace
  4405. knofe.Name = "Projectile"
  4406. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  4407. knofe:FindFirstChild("Trail", true).Enabled = true
  4408. local heck = Instance.new('BodyVelocity',knofe.Grab)
  4409. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*120
  4410. local coru = coroutine.wrap(function()
  4411. wait(0.45)
  4412. if heck then
  4413. heck:Destroy()
  4414. end
  4415. end)
  4416. coru()
  4417. local able = true
  4418. knofe["big ass knife"].Touched:connect(function(hit)
  4419. 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
  4420. local thing = hit.Parent:FindFirstChildOfClass('Humanoid')
  4421. local ree = hit.Parent
  4422. if thing == nil then
  4423. ree = hit.Parent.Parent
  4424. end
  4425. if ree:FindFirstChildOfClass('Humanoid').Health > 0 then
  4426. knofe:FindFirstChild("Trail", true).Enabled = false
  4427. game:GetService('Debris'):AddItem(knofe,5)
  4428. tone = math.random(1, 3)
  4429. local sound = Instance.new('Sound',knofe.Grab)
  4430. if tone == 1 then sound.SoundId = "rbxassetid://220833967" end
  4431. if tone == 2 then sound.SoundId = "rbxassetid://220833976" end
  4432. if tone == 3 then sound.SoundId = "rbxassetid://220834000" end
  4433. sound.PlaybackSpeed = 1
  4434. sound:Play()
  4435. for i, v in pairs(knofe:GetChildren()) do
  4436. if v:IsA('BasePart') then
  4437. v.CanCollide = true
  4438. v.Anchored = true
  4439. end
  4440. end
  4441. hit.Anchored = true
  4442. if ree:FindFirstChildOfClass('Humanoid') and hit.Name == "Torso" or hit.Name == "Head" then
  4443. ree:FindFirstChildOfClass('Humanoid').Health = 0
  4444. end
  4445. wait()
  4446. killz(ree,hit.Name,knofe)
  4447. else
  4448. knofe:FindFirstChild("Trail", true).Enabled = false
  4449. heck.Velocity = Vector3.new(0,0,0)
  4450. heck:Destroy()
  4451. game:GetService('Debris'):AddItem(knofe,5)
  4452. tone = math.random(1, 3)
  4453. local sound = Instance.new('Sound',knofe.Grab)
  4454. if tone == 1 then sound.SoundId = "rbxassetid://220833967" end
  4455. if tone == 2 then sound.SoundId = "rbxassetid://220833976" end
  4456. if tone == 3 then sound.SoundId = "rbxassetid://220834000" end
  4457. sound.PlaybackSpeed = 1
  4458. sound:Play()
  4459. for i, v in pairs(knofe:GetChildren()) do
  4460. if v:IsA('BasePart') then
  4461. v.Anchored = false
  4462. end
  4463. end
  4464. hit.Anchored = true
  4465. wait(0.001)
  4466. hit.Anchored = false
  4467. for i, v in pairs(knofe:GetChildren()) do
  4468. if v:IsA('BasePart') then
  4469. v.Anchored = false
  4470. end
  4471. end
  4472. if knofe then
  4473. local coru = coroutine.wrap(function()
  4474. if hit then
  4475. local uno = Instance.new('Part',workspace)
  4476. local dos = Instance.new('Part',workspace)
  4477. uno.CFrame = hit.CFrame
  4478. dos.CFrame = knofe["big ass knife"].CFrame
  4479. local weld = Instance.new('Weld',knofe["big ass knife"])
  4480. weld.Part0 = hit
  4481. weld.Part1 = knofe["big ass knife"]
  4482. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  4483. uno:Destroy()
  4484. dos:Destroy()
  4485. end
  4486. end)
  4487. coru()
  4488. end
  4489. end
  4490. elseif hit.Parent and hit.Parent ~= me and hit.Parent.Parent ~= me and hit.CanCollide and knofe.Grab.CanCollide == false then
  4491. if hit.Transparency and (hit.Transparency<=0.285 or hit:GetMass()<=3000) then
  4492. knofe:FindFirstChild("Trail", true).Enabled = false
  4493. local sound = Instance.new('Sound',knofe.Grab)
  4494. sound.SoundId = 'rbxassetid://267585646'
  4495. sound:Play()
  4496. for i,v in pairs(knofe:GetChildren()) do
  4497. if v:IsA('BasePart') then
  4498. v.Anchored = true
  4499. end
  4500. end
  4501. wait()
  4502. heck.Velocity = Vector3.new(0,0,0)
  4503. heck:Destroy()
  4504. local uno = Instance.new('Part',workspace)
  4505. local dos = Instance.new('Part',workspace)
  4506. uno.CFrame = hit.CFrame
  4507. dos.CFrame = knofe["big ass knife"].CFrame
  4508. local weld = Instance.new('Weld',knofe["big ass knife"])
  4509. weld.Part0 = hit
  4510. weld.Part1 = knofe["big ass knife"]
  4511. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  4512. uno:Destroy()
  4513. dos:Destroy()
  4514. for i,v in pairs(knofe:GetChildren()) do
  4515. if v:IsA('BasePart') then
  4516. v.Anchored = false
  4517. end
  4518. end
  4519. game:GetService('Debris'):AddItem(knofe,5)
  4520. for i,v in pairs(knofe:GetChildren()) do
  4521. if v:IsA('BasePart') then
  4522. v.CanCollide = true
  4523. end
  4524. end
  4525. end
  4526. 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
  4527. knofe:FindFirstChild("Trail", true).Enabled = false
  4528. able = false
  4529. local sound = Instance.new('Sound',knofe.Grab)
  4530. sound.SoundId = 'rbxassetid://144884907'
  4531. sound:Play()
  4532. local coru = coroutine.wrap(function()
  4533. start_fragmentation(knofe["big ass knife"].Position,1.25,knofe)
  4534. end)
  4535. coru()
  4536. end
  4537. end
  4538. end)
  4539. if finishnum == 1 then
  4540. for i= 0,1,0.1 do
  4541. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  4542. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  4543. wait(0.001)
  4544. end
  4545. else
  4546. for i= 0,1,0.5 do
  4547. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  4548. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  4549. wait(0.001)
  4550. end
  4551. end
  4552. for i,v in pairs(obj1:GetChildren()) do
  4553. if v:IsA('BasePart') then
  4554. v.Transparency = 0
  4555. end
  4556. end
  4557. weld2:Destroy()
  4558. rightshoulderz:Clone().Parent = me.Torso
  4559. end
  4560. acting = false
  4561. canClick = true
  4562. end
  4563. end)
  4564. doit()
  4565. end
  4566.  
  4567. function instasplode()
  4568. local coru = coroutine.wrap(function()
  4569. acting = true
  4570. for i=1,1 do
  4571. local weld2 = Instance.new('Weld',me["Right Arm"])
  4572. weld2.Part0 = me["Right Arm"]
  4573. weld2.Part1 = me["Torso"]
  4574. weld2.C0 = CFrame.new(-1.5,0,0)
  4575. if finishnum == 1 then
  4576. for i = 0,1,0.05 do
  4577. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  4578. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0),i)
  4579. wait(0.01)
  4580. end
  4581. end
  4582. weld2.C0 = CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0)
  4583. audio.SoundId = "rbxassetid://166083610"
  4584. audio.PlaybackSpeed = 1
  4585. audio.TimePosition = 0.1
  4586. audio:Play()
  4587. if finishnum == 1 then
  4588. for i = 0,1,0.5 do
  4589. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  4590. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0),i)
  4591. wait(0.001)
  4592. end
  4593. end
  4594. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  4595. local knofe = obj1:Clone()
  4596. for i,v in pairs(obj1:GetChildren()) do
  4597. if v:IsA('BasePart') then
  4598. v.Transparency = 1
  4599. end
  4600. end
  4601. knofe.Parent = workspace
  4602. knofe.Name = "Projectile"
  4603. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  4604. knofe:FindFirstChild("Trail", true).Enabled = false
  4605. fireofjesUS = Instance.new("Fire", knofe.Grab)
  4606. local heck = Instance.new('BodyVelocity',knofe.Grab)
  4607. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*120
  4608. local coru = coroutine.wrap(function()
  4609. wait(0.45)
  4610. if heck then
  4611. heck:Destroy()
  4612. end
  4613. end)
  4614. coru()
  4615. knofe["big ass knife"].Touched:connect(function(hit)
  4616. if hit.Parent ~= me and hit.Parent.Parent ~= me and hit.Transparency < 1 and knofe.Grab.CanCollide == false then
  4617. heck.Velocity = Vector3.new(0,0,0)
  4618. heck:Destroy()
  4619. for i,v in pairs(knofe:GetChildren()) do
  4620. if v:IsA('BasePart') then
  4621. v.CanCollide = true
  4622. end
  4623. end
  4624. local hum = hit.Parent:FindFirstChildOfClass('Humanoid')
  4625. if hum == nil then
  4626. hum = hit.Parent.Parent:FindFirstChildOfClass('Humanoid')
  4627. end
  4628. if knofe then
  4629. local coru = coroutine.wrap(function()
  4630. if hit then
  4631. local uno = Instance.new('Part',workspace)
  4632. local dos = Instance.new('Part',workspace)
  4633. uno.CFrame = hit.CFrame
  4634. dos.CFrame = knofe["big ass knife"].CFrame
  4635. local weld = Instance.new('Weld',knofe["big ass knife"])
  4636. weld.Part0 = hit
  4637. weld.Part1 = knofe["big ass knife"]
  4638. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  4639. uno:Destroy()
  4640. dos:Destroy()
  4641. end
  4642. end)
  4643. coru()
  4644. end
  4645. local sound = Instance.new('Sound',knofe.Grab)
  4646. sound.Name = "BOOM"
  4647. sound.EmitterSize = 25
  4648. sound.SoundId = 'rbxassetid://476477344'
  4649. sound.Volume = 0.5
  4650. sound:Play()
  4651. local exppart = Instance.new("Part", game.Workspace)
  4652. exppart.Size = Vector3.new(0.2, 0.2, 0.2)
  4653. exppart.Anchored = true
  4654. exppart.CanCollide = false
  4655. exppart.CFrame = CFrame.new(knofe.Grab.CFrame.p)
  4656. exppart.Transparency = 1
  4657. local expaccent = Instance.new("ParticleEmitter", exppart)
  4658. expaccent.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 0)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 0, 0))})
  4659. expaccent.LightEmission = 0.2
  4660. expaccent.LightInfluence = 0.3
  4661. expaccent.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 0)})
  4662. expaccent.Acceleration = Vector3.new(0, 30, 0)
  4663. expaccent.Drag = 15
  4664. expaccent.LockedToPart = false
  4665. expaccent.Lifetime = NumberRange.new(0.5, 1.5)
  4666. expaccent.Rate = 2000
  4667. expaccent.Speed = NumberRange.new(0,0)
  4668. expaccent.SpreadAngle = Vector2.new(360, 360)
  4669. expaccent:Clone().Parent = exppart
  4670. expaccent:Clone().Parent = exppart
  4671. local exp = Instance.new('Explosion',game.Workspace)
  4672. exp.Position = knofe["big ass knife"].Position
  4673. exp.ExplosionType = Enum.ExplosionType.NoCraters
  4674. exp.BlastRadius = 5
  4675. exp.Visible = false
  4676. exp.BlastPressure = 0
  4677. exp.DestroyJointRadiusPercent = 0
  4678. exp.Hit:connect(function(hit)
  4679. if hit.Parent and hit.Parent ~= me and hit.Parent.Name ~= "bitch ass knife" then
  4680. wait(0.001)
  4681. tgt = hit
  4682. local coru=coroutine.wrap(function(tgtt)
  4683. local fireofgods = Instance.new("Fire", tgtt)
  4684. fireofgods.Size = 0
  4685. fireofgods.Heat = 0
  4686. local fireofgodsaccent = expaccent:Clone()
  4687. fireofgodsaccent.Parent = hit
  4688. fireofgodsaccent.Rate = 0
  4689. fireofgodsaccent.Speed = NumberRange.new(5, 50)
  4690. fireofgodsaccent.SpreadAngle = Vector2.new(45, 45)
  4691. fireofgodsaccent.Acceleration = Vector3.new(0, 20, 0)
  4692.  
  4693. while fireofgods.Size < 10 do
  4694. fireofgods.Size = fireofgods.Size + 0.1
  4695. fireofgods.Heat = fireofgods.Heat + 0.1
  4696. fireofgodsaccent.Rate = fireofgodsaccent.Rate + 1
  4697. wait()
  4698. end
  4699. if hit.Parent and hit.Parent:FindFirstChildOfClass('Humanoid') == nil and hit.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil then
  4700. hit:BreakJoints()
  4701. elseif hit.Parent and hit.Parent:IsA('Accessory') then
  4702. for i,v in pairs(hit:GetChildren()) do
  4703. if v:IsA('SpecialMesh') then
  4704. v.TextureId = ""
  4705. end
  4706. end
  4707. end
  4708. hit.BrickColor = BrickColor.new("Black")
  4709. for i,v in pairs(hit.Parent:GetChildren()) do
  4710. if v:IsA('Shirt') or v:IsA('Pants') then
  4711. v:Destroy()
  4712. end
  4713. end
  4714.  
  4715. while fireofgods.Size > 5 do
  4716. fireofgods.Size = fireofgods.Size - 0.1
  4717. fireofgods.Heat = fireofgods.Heat - 0.1
  4718. wait()
  4719. end
  4720. fireofgods:Destroy()
  4721. if hit.Parent then
  4722. if hit.Parent:FindFirstChildOfClass('Humanoid') == nil and hit.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil then
  4723. local p = hit
  4724. 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)
  4725. hit:Remove()
  4726. elseif hit.Parent:FindFirstChildOfClass('Humanoid') ~= nil then
  4727. print(hit.Name)
  4728. if hit.Name == "Torso" or hit.Name == "Head" then
  4729. print('ohhh YAAAA')
  4730. hit.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  4731. end
  4732. wait()
  4733. killz(hit.Parent,hit.Name,nil,nil,false,false,true)
  4734. end
  4735. end
  4736. end)
  4737. coru(tgt)
  4738. end
  4739. end)
  4740. local explosionaccenttimeout = coroutine.wrap(function()
  4741. wait(0.2)
  4742. for i, exploodn in pairs(exppart:GetChildren()) do
  4743. exploodn.Enabled = false
  4744. end
  4745. wait(2)
  4746. for i, exploodn in pairs(exppart:GetChildren()) do
  4747. exploodn:Remove()
  4748. end
  4749. end)
  4750. explosionaccenttimeout()
  4751. for i,v in pairs(knofe:GetChildren()) do
  4752. if v:IsA('BasePart') then
  4753. v.Transparency = 1
  4754. end
  4755. end
  4756. exp.AncestryChanged:connect(function() knofe:Destroy() end)
  4757. coru()
  4758. end
  4759. end)
  4760. if finishnum == 1 then
  4761. for i= 0,1,0.1 do
  4762. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  4763. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  4764. wait(0.001)
  4765. end
  4766. else
  4767. wait(0.1)
  4768. end
  4769. weld2.C0 = CFrame.new(-1.5,0,0)
  4770. for i,v in pairs(obj1:GetChildren()) do
  4771. if v:IsA('BasePart') then
  4772. v.Transparency = 0
  4773. end
  4774. end
  4775. weld2:Destroy()
  4776. rightshoulderz:Clone().Parent = me.Torso
  4777. end
  4778. acting = false
  4779. canClick = true
  4780. end)
  4781. coru()
  4782. end
  4783.  
  4784. function fireworkit()
  4785. local coru = coroutine.wrap(function()
  4786. acting = true
  4787. local ree = 1
  4788. if finishnum > 1 then
  4789. ree = 3
  4790. end
  4791. for i=1,ree do
  4792. local weld2 = Instance.new('Weld',me["Right Arm"])
  4793. weld2.Part0 = me["Right Arm"]
  4794. weld2.Part1 = me["Torso"]
  4795. weld2.C0 = CFrame.new(-1.5,0,0)
  4796. weld2.C0 = CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0)
  4797. audio.SoundId = "rbxassetid://166083610"
  4798. audio.PlaybackSpeed = 1
  4799. audio.TimePosition = 0.1
  4800. audio:Play()
  4801. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  4802. local knofe = obj1:Clone()
  4803. for i,v in pairs(obj1:GetChildren()) do
  4804. if v:IsA('BasePart') then
  4805. v.Transparency = 1
  4806. end
  4807. end
  4808. local sound = Instance.new('Sound',knofe.Grab)
  4809. sound.Volume = 0.25
  4810. sound.EmitterSize = 200
  4811. sound.MaxDistance = 300
  4812. sound.SoundId = 'rbxassetid://551051176'
  4813. sound:Play()
  4814. knofe.Parent = workspace
  4815. knofe.Name = "Projectile"
  4816. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  4817. local partic = Instance.new('ParticleEmitter',knofe.Grab)
  4818. 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))})
  4819. partic.LightEmission = 0.5
  4820. partic.LightInfluence = 0
  4821. partic.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,0.5),NumberSequenceKeypoint.new(1,0.15)})
  4822. partic.Rotation = NumberRange.new(0,90)
  4823. partic.SpreadAngle = Vector2.new(5,5)
  4824. partic.Speed = NumberRange.new(20)
  4825. partic.Texture = 'rbxassetid://603193846'
  4826. partic.EmissionDirection = Enum.NormalId.Left
  4827. partic.Lifetime = NumberRange.new(0.5,1)
  4828. partic.Rate = 100
  4829. local heck = Instance.new('BodyVelocity',knofe.Grab)
  4830. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*240
  4831. local coru=coroutine.wrap(function()
  4832. wait(1.2)
  4833. sound:Destroy()
  4834. local sound2 = Instance.new('Sound',workspace)
  4835. sound2.SoundId = 'rbxassetid://138080762'
  4836. sound2:Play()
  4837. if heck then
  4838. heck:Destroy()
  4839. end
  4840. for i,v in pairs(knofe:GetChildren()) do
  4841. v.Anchored = true
  4842. end
  4843. partic.Enabled = false
  4844. local colorscheme = math.random(1,4)
  4845. --1 - red & orange
  4846. --2 - blue & pink
  4847. --3 - green & purple
  4848. --4 - blue, red, white
  4849. local colar1 = Color3.fromRGB(255,0,0)
  4850. local colar2 = Color3.fromRGB(255,125,0)
  4851. local colar3 = Color3.fromRGB(255,255,255)
  4852. if colorscheme == 2 then
  4853. colar1 = Color3.fromRGB(0,132,255)
  4854. colar2 = Color3.fromRGB(243,105,255)
  4855. elseif colorscheme == 3 then
  4856. colar1 = Color3.fromRGB(76,255,0)
  4857. colar2 = Color3.fromRGB(128,0,255)
  4858. elseif colorscheme == 4 then
  4859. colar2 = Color3.fromRGB(0,132,255)
  4860. end
  4861. local partic2 = Instance.new('ParticleEmitter',knofe.Grab)
  4862. partic2.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,colar1),ColorSequenceKeypoint.new(1,colar1)})
  4863. partic2.LightEmission = 0.5
  4864. partic2.LightInfluence = 0
  4865. partic2.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,0.5),NumberSequenceKeypoint.new(1,0.1)})
  4866. partic2.Rotation = NumberRange.new(0,90)
  4867. partic2.SpreadAngle = Vector2.new(180,180)
  4868. partic2.Speed = NumberRange.new(20)
  4869. partic2.Texture = 'rbxassetid://603193846'
  4870. partic2.EmissionDirection = Enum.NormalId.Right
  4871. partic2.Lifetime = NumberRange.new(2,2.5)
  4872. partic2.Rate = 1000
  4873. partic2.Drag = 1
  4874. local partic3 = partic2:Clone()
  4875. partic3.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,colar2),ColorSequenceKeypoint.new(1,colar2)})
  4876. partic3.Parent = knofe.Grab
  4877. if colorscheme == 4 then
  4878. local partic4 = partic2:Clone()
  4879. partic4.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,colar3),ColorSequenceKeypoint.new(1,colar3)})
  4880. partic4.Parent = knofe.Grab
  4881. end
  4882. wait(1)
  4883. for i,v in pairs(knofe.Grab:GetChildren()) do
  4884. if v:IsA('ParticleEmitter') then
  4885. v.Enabled = false
  4886. end
  4887. end
  4888. sound:Destroy()
  4889. wait(2)
  4890. knofe:Destroy()
  4891. end)
  4892. coru()
  4893. wait(0.1)
  4894. weld2.C0 = CFrame.new(-1.5,0,0)
  4895. for i,v in pairs(obj1:GetChildren()) do
  4896. if v:IsA('BasePart') then
  4897. v.Transparency = 0
  4898. end
  4899. end
  4900. weld2:Destroy()
  4901. rightshoulderz:Clone().Parent = me.Torso
  4902. end
  4903. acting = false
  4904. canClick = true
  4905. end)
  4906. coru()
  4907. end
  4908.  
  4909. function paralyze()
  4910. local coru = coroutine.wrap(function()
  4911. if paralyzed == true then return end
  4912. paralyzed = true
  4913. local arm = me["Right Arm"]
  4914. local tors = grabbed.Torso
  4915. local arm2 = me["Left Arm"]
  4916. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  4917. doing = true
  4918. local weld2 = arm:FindFirstChildOfClass('Weld')
  4919. local weld3 = arm2:FindFirstChildOfClass('Weld')
  4920. local humanroot = me.HumanoidRootPart
  4921. for i = 0,1,0.075 do
  4922. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-2, 0, -1.5), i)
  4923. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.4, 0, 1.1), i)
  4924. wait(0.01)
  4925. end
  4926. for i = 0,1,0.30 do
  4927. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-0.75, 0, -1.75), i)
  4928. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.4, 0, 1.1), i)
  4929. wait(0.01)
  4930. end
  4931. killz(grabbed,'Left Leg')
  4932. killz(grabbed,'Left Arm')
  4933. killz(grabbed,'Right Leg')
  4934. killz(grabbed,'Right Arm')
  4935.  
  4936. for i, v in pairs(grabbed:GetChildren()) do
  4937. if v.Name == "Part" then
  4938. v.CanCollide = false
  4939. end
  4940. end
  4941.  
  4942. audio:Stop()
  4943. audio.SoundId = "rbxassetid://2801263"
  4944. tone = math.random(1, 3)
  4945. if tone == 1 then audio.PlaybackSpeed = 0.8 audio.TimePosition = 0 end
  4946. if tone == 2 then audio.PlaybackSpeed = 1 audio.TimePosition = 0 end
  4947. if tone == 3 then audio.PlaybackSpeed = 1.2 audio.TimePosition = 0 end
  4948. audio:Play()
  4949.  
  4950. local bleedpart = Instance.new("Part", grabbed)
  4951. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  4952. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  4953. bleedpart.CanCollide = false
  4954. bleedpart.Position = grabbed.Head.Position + Vector3.new(0, 1, 0)
  4955. bleedpart.Transparency = 1
  4956.  
  4957. local bleedpartweld = Instance.new("Weld", grabbed.Torso)
  4958. bleedpartweld.Part0 = grabbed.Torso
  4959. bleedpartweld.Part1 = bleedpart
  4960. bleedpartweld.C0 = CFrame.Angles(-1, 0, -0.35) * CFrame.new(0, 1, 0.8)
  4961. local cuntruu=coroutine.wrap(function()
  4962. bleed(bleedpart)
  4963. end)
  4964. local thicc = coroutine.wrap(function()
  4965. wait(3)
  4966. bleedpart:Remove()
  4967. end)
  4968. cuntruu()
  4969. thicc()
  4970.  
  4971. for i = 0,1,0.075 do
  4972. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-1.5, 0, -1.3), i)
  4973. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.5, 0, 1.1), i)
  4974. wait(0.01)
  4975. end
  4976. acting = true
  4977. canClick = true
  4978. doing = false
  4979. end)
  4980. coru()
  4981. end
  4982.  
  4983. function explode()
  4984. local coru = coroutine.wrap(function()
  4985. acting = true
  4986. for i=1,finishnum do
  4987. local weld2 = Instance.new('Weld',me["Right Arm"])
  4988. weld2.Part0 = me["Right Arm"]
  4989. weld2.Part1 = me["Torso"]
  4990. weld2.C0 = CFrame.new(-1.5,0,0)
  4991. if finishnum == 1 then
  4992. for i = 0,1,0.05 do
  4993. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  4994. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0),i)
  4995. wait(0.01)
  4996. end
  4997. end
  4998. weld2.C0 = CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0)
  4999. audio.SoundId = "rbxassetid://166083610"
  5000. audio.PlaybackSpeed = 1
  5001. audio.TimePosition = 0.1
  5002. audio:Play()
  5003. if finishnum == 1 then
  5004. for i = 0,1,0.5 do
  5005. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  5006. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0),i)
  5007. wait(0.001)
  5008. end
  5009. end
  5010. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  5011. local knofe = obj1:Clone()
  5012. for i,v in pairs(obj1:GetChildren()) do
  5013. if v:IsA('BasePart') then
  5014. v.Transparency = 1
  5015. end
  5016. end
  5017. knofe.Parent = workspace
  5018. knofe.Name = "Projectile"
  5019. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  5020. knofe:FindFirstChild("Trail", true).Enabled = false
  5021. local heck = Instance.new('BodyVelocity',knofe.Grab)
  5022. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*120
  5023. local coru = coroutine.wrap(function()
  5024. wait(0.45)
  5025. if heck then
  5026. heck:Destroy()
  5027. end
  5028. end)
  5029. coru()
  5030. knofe["big ass knife"].Touched:connect(function(hit)
  5031. if hit.Parent ~= me and hit.Parent.Parent ~= me and hit.Transparency < 1 and knofe.Grab.CanCollide == false then
  5032. heck.Velocity = Vector3.new(0,0,0)
  5033. heck:Destroy()
  5034. for i,v in pairs(knofe:GetChildren()) do
  5035. if v:IsA('BasePart') then
  5036. v.CanCollide = true
  5037. end
  5038. end
  5039. local hum = hit.Parent:FindFirstChildOfClass('Humanoid')
  5040. if hum == nil then
  5041. hum = hit.Parent.Parent:FindFirstChildOfClass('Humanoid')
  5042. end
  5043. if hum then
  5044. tone = math.random(1, 3)
  5045. local sound = Instance.new('Sound',knofe.Grab)
  5046. if tone == 1 then sound.SoundId = "rbxassetid://220833967" end
  5047. if tone == 2 then sound.SoundId = "rbxassetid://220833976" end
  5048. if tone == 3 then sound.SoundId = "rbxassetid://220834000" end
  5049. sound.PlaybackSpeed = 1
  5050. sound:Play()
  5051. else
  5052. local sound = Instance.new('Sound',knofe.Grab)
  5053. sound.SoundId = 'rbxassetid://267585646'
  5054. sound:Play()
  5055. end
  5056. if knofe then
  5057. local coru = coroutine.wrap(function()
  5058. if hit then
  5059. local uno = Instance.new('Part',workspace)
  5060. local dos = Instance.new('Part',workspace)
  5061. uno.CFrame = hit.CFrame
  5062. dos.CFrame = knofe["big ass knife"].CFrame
  5063. local weld = Instance.new('Weld',knofe["big ass knife"])
  5064. weld.Part0 = hit
  5065. weld.Part1 = knofe["big ass knife"]
  5066. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  5067. uno:Destroy()
  5068. dos:Destroy()
  5069. end
  5070. end)
  5071. coru()
  5072. end
  5073. local coru = coroutine.wrap(function()
  5074. for i=1,15,0.7 do
  5075. local sound = Instance.new('Sound',knofe.Grab)
  5076. if knofe then
  5077. if knofe.serration.BrickColor == BrickColor.new('Really red') then
  5078. for i, v in pairs(knofe:GetChildren()) do
  5079. if v.Name == "big ass knife" or v.Name == "serration" or v.Name == "knifetip1" or v.Name == "fricc" then
  5080. v.BrickColor = BrickColor.new('Lily white')
  5081. v.Material = Enum.Material.SmoothPlastic
  5082. end
  5083. end
  5084. else
  5085. for i,v in pairs(knofe:GetChildren()) do
  5086. if v.Name == "big ass knife" or v.Name == "serration" or v.Name == "knifetip1" or v.Name == "fricc" then
  5087. v.BrickColor = BrickColor.new('Really red')
  5088. v.Material = Enum.Material.Neon
  5089. sound.SoundId = 'rbxassetid://300473653'
  5090. sound.Volume = 0.75
  5091. sound.TimePosition = 0.05
  5092. sound.EmitterSize = 25
  5093. sound.PlaybackSpeed = 1
  5094. sound:Play()
  5095. end
  5096. end
  5097. end
  5098. wait(1/i)
  5099. sound:Destroy()
  5100. end
  5101. end
  5102. local sound = Instance.new('Sound',knofe.Grab)
  5103. sound.Name = "BOOM"
  5104. sound.EmitterSize = 25
  5105. sound.SoundId = 'rbxassetid://12222084'
  5106. sound.TimePosition = 0.1
  5107. sound.Volume = 0.5
  5108. sound:Play()
  5109. local exppart = Instance.new("Part", game.Workspace)
  5110. exppart.Size = Vector3.new(0.2, 0.2, 0.2)
  5111. exppart.Anchored = true
  5112. exppart.CanCollide = false
  5113. exppart.CFrame = CFrame.new(knofe.Grab.CFrame.p)
  5114. exppart.Transparency = 1
  5115. local expaccent = Instance.new("ParticleEmitter", exppart)
  5116. expaccent.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 0)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 0, 0))})
  5117. expaccent.LightEmission = 0.2
  5118. expaccent.LightInfluence = 0.3
  5119. expaccent.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 0)})
  5120. expaccent.Acceleration = Vector3.new(0, -8, 0)
  5121. expaccent.Drag = 15
  5122. expaccent.LockedToPart = true
  5123. expaccent.Lifetime = NumberRange.new(0.5, 1.5)
  5124. expaccent.Rate = 2000
  5125. expaccent.Speed = NumberRange.new(10, 150)
  5126. expaccent.SpreadAngle = Vector2.new(360, 360)
  5127.  
  5128. local exp = Instance.new('Explosion',game.Workspace)
  5129. exp.Position = knofe["big ass knife"].Position
  5130. exp.ExplosionType = Enum.ExplosionType.NoCraters
  5131. exp.BlastRadius = 10
  5132. exp.BlastPressure = 100000
  5133. exp.DestroyJointRadiusPercent = 1
  5134. exp.Hit:connect(function(hit)
  5135. if hit.Parent and hit.Parent ~= me and hit.Parent:FindFirstChildOfClass('Humanoid') then
  5136. if hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Name == "Torso" or hit.Name == "Head" then
  5137. hit.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  5138. end
  5139. wait(0.001)
  5140. local coru=coroutine.wrap(function()
  5141. killz(hit.Parent,'Head',knofe,exp)
  5142. end)
  5143. coru()
  5144. elseif hit.Parent and hit.Parent ~= workspace and hit.Parent ~= me then
  5145. if hit.Parent.Name ~= "Projectile" then
  5146. hit.Parent:BreakJoints()
  5147. end
  5148. elseif hit.Parent and hit.Parent ~= me then
  5149. hit:BreakJoints()
  5150. end
  5151. end)
  5152. local explosionaccenttimeout = coroutine.wrap(function()
  5153. wait(0.2)
  5154. expaccent.Enabled = false
  5155. wait(2)
  5156. exppart:Remove()
  5157. end)
  5158. explosionaccenttimeout()
  5159. for i,v in pairs(knofe:GetChildren()) do
  5160. if v:IsA('BasePart') then
  5161. v.Transparency = 1
  5162. end
  5163. end
  5164. exp.AncestryChanged:connect(function() knofe:Destroy() end)
  5165. end)
  5166. coru()
  5167. end
  5168. end)
  5169. if finishnum == 1 then
  5170. for i= 0,1,0.1 do
  5171. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  5172. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  5173. wait(0.001)
  5174. end
  5175. else
  5176. wait(0.1)
  5177. end
  5178. weld2.C0 = CFrame.new(-1.5,0,0)
  5179. for i,v in pairs(obj1:GetChildren()) do
  5180. if v:IsA('BasePart') then
  5181. v.Transparency = 0
  5182. end
  5183. end
  5184. weld2:Destroy()
  5185. rightshoulderz:Clone().Parent = me.Torso
  5186. end
  5187. acting = false
  5188. canClick = true
  5189. end)
  5190. coru()
  5191. end
  5192.  
  5193. function release()
  5194. if grabbed.Torso:FindFirstChild("TargetWeld") == nil or grabbed:FindFirstChildOfClass('Humanoid').Health <= 0 then return end
  5195. targetweld = grabbed.Torso.TargetWeld
  5196. local ree= grabbed:FindFirstChild("Left Arm")
  5197. targetweld2 = nil
  5198. if ree and ree:FindFirstChild("Weld") then
  5199. targetweld2 = ree.Weld
  5200. end
  5201. for i, v in pairs(grabbed:GetChildren()) do
  5202. if v.Name == "Part" then
  5203. v.CanCollide = true
  5204. end
  5205. end
  5206. paralyzed = false
  5207. local doit = coroutine.wrap(function()
  5208. local arm = me["Right Arm"]
  5209. local tors = grabbed.Torso
  5210. local arm2 = me["Left Arm"]
  5211. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  5212. doing = true
  5213. local weld2 = arm:FindFirstChildOfClass('Weld')
  5214. local weld3 = arm2:FindFirstChildOfClass('Weld')
  5215. local humanroot = me.HumanoidRootPart
  5216.  
  5217. if grabbed:FindFirstChildOfClass('Humanoid') then
  5218. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = false
  5219. end
  5220.  
  5221. rightshoulderz:Clone().Parent = me.Torso
  5222. leftshoulderz:Clone().Parent = me.Torso
  5223. if grabbed:FindFirstChildOfClass('Humanoid') then
  5224. grabbed:FindFirstChildOfClass('Humanoid').Name = "Humanoid"
  5225. grabbed:FindFirstChildOfClass('Humanoid').JumpPower = 50
  5226. grabbed:FindFirstChildOfClass('Humanoid').WalkSpeed = 16
  5227. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = false
  5228. end
  5229. grabbed = nil
  5230.  
  5231. if humanroot:FindFirstChild('Holder') then
  5232. humanroot.Holder:Destroy()
  5233. end
  5234.  
  5235. for i = 0,1,0.1 do
  5236. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  5237. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  5238. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0),i)
  5239. targetweld.C0 = targetweld.C0:lerp(CFrame.new(0, 1.5, 0)*CFrame.Angles(0, 0, 0), i)
  5240. if targetweld2 then
  5241. targetweld2.C0 = targetweld2.C0:lerp(CFrame.new(-1.5, 0, 0)*CFrame.Angles(0, 0, 0), i)
  5242. end
  5243. wait(0.01)
  5244. end
  5245.  
  5246. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0.2)
  5247. weld2:Destroy()
  5248. weld3:Destroy()
  5249. targetweld:Remove()
  5250. if targetweld2 then
  5251. targetweld2:Remove()
  5252. end
  5253. if rightshoulder then
  5254. rightshoulder:Clone().Parent = tors
  5255. end
  5256. if leftshoulder then
  5257. leftshoulder:Clone().Parent = tors
  5258. end
  5259. headweld:Clone().Parent = tors
  5260. rightshoulderz:Clone().Parent = me.Torso
  5261. leftshoulderz:Clone().Parent = me.Torso
  5262. acting = false
  5263. canClick = true
  5264. doing = false
  5265. end)
  5266. doit()
  5267. end
  5268.  
  5269. function stabwithpassion()
  5270. local doit = coroutine.wrap(function()
  5271. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') and me:FindFirstChild('HumanoidRootPart') and me:FindFirstChild('Left Arm') then
  5272. acting = true
  5273. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed + 10
  5274. local arm = me["Right Arm"]
  5275. local tors = me.Torso
  5276. local arm2 = me["Left Arm"]
  5277. local humanroot = me.HumanoidRootPart
  5278. local weld = Instance.new('Weld',tors)
  5279. weld.Part0 = tors
  5280. weld.Part1 = humanroot
  5281. weld.C0 = CFrame.new(0,0,0) * CFrame.Angles(0, 0, 0)
  5282. local weld2 = Instance.new('Weld',arm)
  5283. weld2.Part0 = arm
  5284. weld2.Part1 = tors
  5285. weld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  5286. local weld3 = Instance.new('Weld',arm2)
  5287. weld3.Part0 = arm2
  5288. weld3.Part1 = tors
  5289. weld3.C0 = CFrame.new(1.5,0,-0.3) * CFrame.Angles(0.3,0.1,0)
  5290.  
  5291. for i = 0,1,0.15 do
  5292. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  5293. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(20),0),i)
  5294. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.2,1.3,0.4)*CFrame.Angles(0.5,0,-1.2),i)
  5295. knifeweld.C1 = knifeweld.C1:lerp(CFrame.fromEulerAnglesXYZ(1.55, math.rad(90), -1.55) * CFrame.new(0, 0.95, 0), i)
  5296. wait(0.01)
  5297. end
  5298. wait(0.001)
  5299. trail.Enabled = true
  5300. stabbing = true
  5301. audio2.SoundId = 'rbxassetid://608537390'
  5302. audio2:Play()
  5303. for i = 0,1,0.2 do
  5304. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  5305. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(-45),0),i)
  5306. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.6,0.8,-1)*CFrame.Angles(math.rad(-90),0,-1),i)
  5307. wait(0.01)
  5308. end
  5309. trail.Enabled = false
  5310. wait(0.1)
  5311. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed - 10
  5312. stabbing = false
  5313. wait(0.001)
  5314. for i = 0,1,0.075 do
  5315. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  5316. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0,0),i)
  5317. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0)*CFrame.Angles(0,0,0),i)
  5318. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0)*CFrame.Angles(0,0,0),i)
  5319. knifeweld.C1 = knifeweld.C1:lerp(CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0), i)
  5320. wait(0.01)
  5321. end
  5322. weld:Destroy()
  5323. weld2:Destroy()
  5324. weld3:Destroy()
  5325. torsojoint:Clone().Parent = humanroot
  5326. rightshoulderz:Clone().Parent = me.Torso
  5327. leftshoulderz:Clone().Parent = me.Torso
  5328. canClick = true
  5329. hit = false
  5330. acting = false
  5331. end
  5332. end)
  5333. doit()
  5334. end
  5335.  
  5336. function stab()
  5337. local doit = coroutine.wrap(function()
  5338. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') and me:FindFirstChild('HumanoidRootPart') and me:FindFirstChild('Left Arm') then
  5339. acting = true
  5340. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed + 3
  5341. local arm = me["Right Arm"]
  5342. local tors = me.Torso
  5343. local arm2 = me["Left Arm"]
  5344. local humanroot = me.HumanoidRootPart
  5345. local weld = Instance.new('Weld',tors)
  5346. weld.Part0 = tors
  5347. weld.Part1 = humanroot
  5348. weld.C0 = CFrame.new(0,0,0) * CFrame.Angles(0, 0, 0)
  5349. local weld2 = Instance.new('Weld',arm)
  5350. weld2.Part0 = arm
  5351. weld2.Part1 = tors
  5352. weld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  5353. local weld3 = Instance.new('Weld',arm2)
  5354. weld3.Part0 = arm2
  5355. weld3.Part1 = tors
  5356. weld3.C0 = CFrame.new(1.5,0,-0.3) * CFrame.Angles(0.3,0.1,0)
  5357.  
  5358. for i = 0,1,0.1 do
  5359. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  5360. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0.3,0),i)
  5361. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.2,1.3,0.4)*CFrame.Angles(0.5,0,-1.2),i)
  5362. wait(0.01)
  5363. end
  5364. wait(0.001)
  5365. trail.Enabled = true
  5366. stabbing = true
  5367. audio2.SoundId = 'rbxassetid://608537390'
  5368. audio2:Play()
  5369. for i = 0,1,0.25 do
  5370. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  5371. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,-0.3,0),i)
  5372. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.6,0.8,0.5)*CFrame.Angles(-0.5,0,-0.5),i)
  5373. wait(0.01)
  5374. end
  5375. trail.Enabled = false
  5376. wait(0.1)
  5377. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed - 3
  5378. for i = 0,1,0.25 do
  5379. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  5380. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0.3,0),i)
  5381. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.6,-0.3)*CFrame.Angles(0.5,0,-0.5),i)
  5382. wait(0.01)
  5383. end
  5384. stabbing = false
  5385. wait(0.001)
  5386. for i = 0,1,0.05 do
  5387. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  5388. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0,0),i)
  5389. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0)*CFrame.Angles(0,0,0),i)
  5390. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0)*CFrame.Angles(0,0,0),i)
  5391. wait(0.01)
  5392. end
  5393. weld:Destroy()
  5394. weld2:Destroy()
  5395. weld3:Destroy()
  5396. torsojoint:Clone().Parent = humanroot
  5397. rightshoulderz:Clone().Parent = me.Torso
  5398. leftshoulderz:Clone().Parent = me.Torso
  5399. canClick = true
  5400. hit = false
  5401. acting = false
  5402. end
  5403. end)
  5404. doit()
  5405. end
  5406. function hardrelease()
  5407. rightshoulderz:Clone().Parent = me.Torso
  5408. leftshoulderz:Clone().Parent = me.Torso
  5409. if me:FindFirstChild('Right Arm') then
  5410. for i,v in pairs(me["Right Arm"]:GetChildren()) do
  5411. if v:IsA('Weld') then
  5412. v:Destroy()
  5413. end
  5414. end
  5415. end
  5416. if me:FindFirstChild('Left Arm') then
  5417. for i,v in pairs(me["Left Arm"]:GetChildren()) do
  5418. if v:IsA('Weld') then
  5419. v:Destroy()
  5420. end
  5421. end
  5422. end
  5423. acting = false
  5424. canClick = true
  5425. doing = false
  5426. grabbed = nil
  5427. end
  5428. function unequip()
  5429. local doit = coroutine.wrap(function()
  5430. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') then
  5431. acting = true
  5432. local arm = me["Right Arm"]
  5433. local arm2 = me["Left Arm"]
  5434. local tors = me.Torso
  5435. local weld = Instance.new('Weld',arm)
  5436. weld.Part0 = arm
  5437. weld.Part1 = tors
  5438. weld.C0 = CFrame.new(-1.5,0,0)
  5439. local weld2 = Instance.new("Weld", arm2)
  5440. weld2.Part0 = arm2
  5441. weld2.Part1 = tors
  5442. weld2.C0 = CFrame.new(1.5, 0, 0)
  5443. wait(0.001)
  5444. trail.Enabled = true
  5445. for i = 0,1,0.1 do
  5446. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  5447. weld.C0 = weld.C0:lerp(CFrame.new(-0.2,0.2,-0.5)*CFrame.Angles(0,-3.1,0.9),i)
  5448. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0.6, 0) * CFrame.Angles(0,0,0.5),i)
  5449. wait(0.001)
  5450. end
  5451. trail.Enabled = false
  5452. wait(0.25)
  5453. for i = 0,1,0.1 do
  5454. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  5455. weld.C0 = weld.C0:lerp(CFrame.new(-1.5,0,0),i)
  5456. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0, 0), i)
  5457. wait(0.01)
  5458. end
  5459. weld:Destroy()
  5460. weld2:Remove()
  5461. if tors ~= nil then
  5462. rightshoulderz:Clone().Parent = me.Torso
  5463. leftshoulderz:Clone().Parent = me.Torso
  5464. end
  5465. acting = false
  5466. end
  5467. end)
  5468. doit()
  5469. end
  5470.  
  5471. mouse.KeyDown:connect(function(key)
  5472. if usable == true then
  5473. if key == "z" then
  5474. if active == false and acting == false then
  5475. active = true
  5476. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5477. notify("KNIFE EQUIPPED",false)
  5478. audio:Stop()
  5479. audio.SoundId = 'rbxassetid://608618332'
  5480. equip()
  5481. wait(0.6)
  5482. audio:Play()
  5483. knifeweld.Part0 = me["Right Arm"]
  5484. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0)
  5485. elseif acting == false then
  5486. active = false
  5487. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5488. audio:Stop()
  5489. audio.SoundId = 'rbxassetid://608538233'
  5490. unequip()
  5491. notify("KNIFE UNEQUIPPED",false)
  5492. wait(0.3)
  5493. audio:Play()
  5494. knifeweld.Part0 = me.Torso
  5495. knifeweld.C1 = CFrame.Angles(0,math.rad(90),0) * CFrame.new(1, 0.8, 0.55)
  5496. canClick = true
  5497. end
  5498. elseif key == "f" then
  5499. if mode == 'kill' or active == false then return end
  5500. mode = "kill"
  5501. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5502. notify("MODE || KILL || [F]",false)
  5503. elseif key == "e" then
  5504. if mode == 'throw' or active == false then return end
  5505. mode = "throw"
  5506. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5507. notify("MODE || PUSH || [E]",false)
  5508. elseif key == "q" then
  5509. if mode == 'release' or active == false then return end
  5510. mode = "release"
  5511. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5512. notify("MODE || RELEASE || [Q]",false)
  5513. elseif key == "x" then
  5514. if mode == 'stab' or active == false or acting == true then return end
  5515. mode = "stab"
  5516. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5517. notify("MODE || STAB || [X]",false)
  5518. elseif key == "c" then
  5519. if mode == 'fling' or active == false or acting == true then return end
  5520. mode = "fling"
  5521. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5522. notify("MODE || THROW || [C]",false)
  5523. elseif key == "b" then
  5524. if mode == 'instasplode' or active == false or acting == true then return end
  5525. mode = "instasplode"
  5526. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5527. notify("MODE || MOLOTOV || [B]",false)
  5528. elseif key == "r" then
  5529. if mode == 'paralyze' or active == false then return end
  5530. mode = "paralyze"
  5531. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5532. notify("MODE || PARALYZE || [R]",false)
  5533. elseif key == "v" then
  5534. if mode == 'explode' or active == false or acting == true then return end
  5535. mode = "explode"
  5536. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5537. notify("MODE || EXPLODE || [V]",false)
  5538. elseif key == "k" then
  5539. if mode == 'suicide' or active == false or acting == true then return end
  5540. mode = "suicide"
  5541. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5542. notify("MODE || SUICIDE || [K]",false)
  5543. elseif key == "h" then
  5544. if mode == 'firework' or active == false or acting == true then return end
  5545. mode = "firework"
  5546. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5547. notify("MODE || FIREWORK || [H]",false)
  5548. elseif key == "g" then
  5549. if mode == 'finish' or active == false then return end
  5550. mode = "finish"
  5551. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5552. local welp = "ON"
  5553. if finishnum == 1 then
  5554. welp = "OFF"
  5555. end
  5556. notify("MODE || FINISH || [G] || "..welp,false)
  5557. elseif key == "n" then
  5558. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5559. if zombiemode == false then
  5560. notify("ZOMBIE MODE ON || [N]",false)
  5561. zombiemode = true
  5562. else
  5563. notify("ZOMBIE MODE OFF || [N]",false)
  5564. zombiemode = false
  5565. end
  5566. elseif key == "m" then
  5567. if finishnum == 1 then
  5568. finishnum = 15
  5569. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5570. notify("PSYCHOPATH MODE ON || [M]",false)
  5571. if cancolorfilter then
  5572. local Sp00kyGui = Instance.new("ScreenGui")
  5573. local ImageLabel = Instance.new("ImageLabel")
  5574.  
  5575. -- Properties
  5576.  
  5577. Sp00kyGui.Parent = playergui
  5578. Sp00kyGui.Name = "REEEEEEEE"
  5579.  
  5580. ImageLabel.Parent = Sp00kyGui
  5581. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  5582. ImageLabel.BackgroundTransparency = 1
  5583. ImageLabel.Size = UDim2.new(1, 0, 1, 0)
  5584. ImageLabel.Image = "rbxassetid://74443700"
  5585. ImageLabel.ImageColor3 = Color3.new(1, 0, 0)
  5586. end
  5587. if canbackgroundmusic == true then
  5588. local sound = Instance.new('Sound',playergui)
  5589. sound.Name = 'PSYCHOPAAAATH'
  5590. sound.SoundId = 'rbxassetid://220875210'
  5591. sound.Looped = true
  5592. sound.Volume = 0.5
  5593. sound:Play()
  5594. end
  5595. else
  5596. finishnum = 1
  5597. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  5598. notify("PSYCHOPATH MODE OFF || [M]",false)
  5599. for i,v in pairs(playergui:GetChildren()) do
  5600. if v.Name == "REEEEEEEE" then
  5601. v:Destroy()
  5602. end
  5603. end
  5604. local thisniggarighthere = playergui:FindFirstChild('PSYCHOPAAAATH')
  5605. if thisniggarighthere then thisniggarighthere:Destroy() end
  5606. end
  5607. end
  5608. end
  5609. end)
  5610.  
  5611. mouse.Button1Down:connect(function()
  5612. if active == false or usable == false then return end
  5613. if canClick == true and acting == false then
  5614. if mode == "stab" and finishnum == 1 then
  5615. canClick = false
  5616. stab()
  5617. elseif mode == "stab" and finishnum == 15 then
  5618. canClick = false
  5619. stabwithpassion()
  5620. elseif mode == "fling" then
  5621. canClick = false
  5622. fling()
  5623. elseif mode == "explode" then
  5624. canClick = false
  5625. explode()
  5626. elseif mode == "instasplode" then
  5627. canClick = false
  5628. instasplode()
  5629. elseif mode == "finish" then
  5630. canClick = false
  5631. finish()
  5632. elseif mode == "suicide" then
  5633. canClick = false
  5634. kysnigga()
  5635. elseif mode == "firework" then
  5636. canClick = false
  5637. fireworkit()
  5638. else
  5639. canClick = false
  5640. grab()
  5641. end
  5642. else
  5643. if grabbed ~= nil and doing == false then
  5644. if mode == "release" then
  5645. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  5646. release()
  5647. else
  5648. hardrelease()
  5649. end
  5650. elseif mode == "kill" then
  5651. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  5652. kill()
  5653. else
  5654. hardrelease()
  5655. end
  5656. elseif mode == "paralyze" then
  5657. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  5658. paralyze()
  5659. else
  5660. hardrelease()
  5661. end
  5662. elseif mode == "throw" then
  5663. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  5664. throw()
  5665. else
  5666. hardrelease()
  5667. end
  5668. elseif mode == "explode" then
  5669. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  5670. throw()
  5671. else
  5672. hardrelease()
  5673. end
  5674. end
  5675. end
  5676. end
  5677. end)
  5678.  
  5679. knife.Touched:connect(function(hitz)
  5680. if hitz.Parent and hitz.Parent:FindFirstChildOfClass("Humanoid") and hitz.Parent:FindFirstChild('Torso') and acting == true then
  5681. if mode == "stab" and stabbing == true and hit == false then
  5682. hit = true
  5683. tone = math.random(1, 3)
  5684. audio:Stop()
  5685. if tone == 1 then audio.SoundId = "rbxassetid://220833967" end
  5686. if tone == 2 then audio.SoundId = "rbxassetid://220833976" end
  5687. if tone == 3 then audio.SoundId = "rbxassetid://220834000" end
  5688. audio.PlaybackSpeed = 1
  5689. audio:Play()
  5690. killz(hitz.Parent,'Left Leg')
  5691. killz(hitz.Parent,'Left Arm')
  5692. killz(hitz.Parent,'Right Leg')
  5693. killz(hitz.Parent,'Right Arm')
  5694. elseif mode == "finish" and finishing == true then
  5695. print('PSYCHOPATH MODE REEEEEEEEEEEEEEEE')
  5696. tone = math.random(1, 3)
  5697. audio:Stop()
  5698. if tone == 1 then audio.SoundId = "rbxassetid://220833967" end
  5699. if tone == 2 then audio.SoundId = "rbxassetid://220833976" end
  5700. if tone == 3 then audio.SoundId = "rbxassetid://220834000" end
  5701. audio.PlaybackSpeed = 1
  5702. audio:Play()
  5703. if hit == false then
  5704. hitz.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  5705. wait()
  5706. killz(hitz.Parent,'Head',nil,false,true)
  5707. end
  5708. hit = true
  5709. elseif grabbed == nil and grabbing == true and hit == false then
  5710. if hitz.Parent:FindFirstChildOfClass("Humanoid").Health > 0 and hitz.Parent:FindFirstChild('Torso') and hitz.Parent.Torso:FindFirstChild('Neck') then
  5711. grabbed = hitz.Parent
  5712. local weldz = Instance.new('Weld',point)
  5713. weldz.Name = "Holder"
  5714. weldz.Part0 = point
  5715. weldz.Part1 = hitz.Parent.Torso
  5716. weldz.C0 = CFrame.new(0,0,-1.2)
  5717. end
  5718. end
  5719. end
  5720. end)
  5721.  
  5722. player.CharacterAdded:connect(function()
  5723. usable = false
  5724. for i,v in pairs(playergui:GetChildren()) do
  5725. if v.Name == "REEEEEEEE" or v.Name == 'PSYCHOPAAAATH' then
  5726. v:Destroy()
  5727. end
  5728. end
  5729. end)
  5730. while usable do
  5731. local coru = coroutine.wrap(function()
  5732. for i,v in pairs(knifeparts) do
  5733. local function try()
  5734. if v[1].Parent ~= v[2] then
  5735. v[1].Parent = v[2]
  5736. end
  5737. end
  5738. pcall(try)
  5739. end
  5740. if grabbed ~= nil then
  5741. if grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  5742. for i,v in pairs(grabbed:GetChildren()) do
  5743. if v:IsA('Tool') then
  5744. local model = Instance.new('Model',workspace)
  5745. v.Parent = model
  5746. model:TranslateBy(Vector3.new(3,0,0))
  5747. end
  5748. end
  5749. grabbed:FindFirstChildOfClass('Humanoid').Name = "Hoomanoid"
  5750. grabbed:FindFirstChildOfClass('Humanoid').JumpPower = 0
  5751. grabbed:FindFirstChildOfClass('Humanoid').WalkSpeed = 0
  5752. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = true
  5753. grabweld = grabbed.Torso:FindFirstChild("TargetWeld")
  5754. if grabweld ~= nil then return end
  5755. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = true
  5756. if grabbed.Torso:FindFirstChild('Left Shoulder') then
  5757. leftshoulder = grabbed.Torso["Left Shoulder"]:Clone()
  5758. end
  5759. if grabbed.Torso:FindFirstChild('Right Shoulder') then
  5760. rightshoulder = grabbed.Torso["Right Shoulder"]:Clone()
  5761. end
  5762. headweld = grabbed.Torso["Neck"]:Clone()
  5763. local targetweld = Instance.new('Weld',grabbed.Torso)
  5764. targetweld.Part0 = grabbed.Torso
  5765. targetweld.Part1 = grabbed.Head
  5766. targetweld.Name = "TargetWeld"
  5767. targetweld.C0 = CFrame.new(0,1.5,0) * CFrame.Angles(0, 0, 0)
  5768. if grabbed:FindFirstChild('Left Arm') then
  5769. local targetweld2 = Instance.new('Weld',grabbed["Left Arm"])
  5770. targetweld2.Part0 = grabbed.Torso
  5771. targetweld2.Part1 = grabbed["Left Arm"]
  5772. targetweld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  5773. end
  5774.  
  5775. for i = 0,1,0.1 do
  5776. if me:FindFirstChild("Left Arm") == nil or me:FindFirstChild("Torso") == nil or targetweld == nil then return end
  5777. targetweld.C0 = targetweld.C0:lerp(CFrame.new(0, 1.5, 0)*CFrame.Angles(0.25, 0, 0), i)
  5778. if targetweld2 then
  5779. targetweld2.C0 = targetweld2.C0:lerp(CFrame.new(-1.5, 0.5, 0)*CFrame.Angles(0, 0, -0.55), i)
  5780. end
  5781. wait(0.001)
  5782. end
  5783. end
  5784. end
  5785. end)
  5786. coru()
  5787. wait()
  5788. end
  5789.  
  5790. end
  5791. local coru=coroutine.wrap(function()
  5792. nub()
  5793. end)
  5794. coru()
  5795.  
  5796. player.CharacterAppearanceLoaded:connect(function()
  5797. local coru =coroutine.wrap(function()
  5798. nub()
  5799. end)
  5800. coru()
  5801. end)
  5802.  
  5803. while true do
  5804. local coru=coroutine.wrap(function()
  5805. if grabbed then
  5806. v:FindFirstChildOfClass('Humanoid').Jump = false
  5807. v:FindFirstChildOfClass('Humanoid').Sit = false
  5808. v:FindFirstChildOfClass('Humanoid').JumpPower = 0
  5809. v:FindFirstChildOfClass('Humanoid').PlatformStand = true
  5810. v:FindFirstChildOfClass('Humanoid').Name = "No escape."
  5811. end
  5812. for i,v in pairs(rekt) do
  5813. if v and v:FindFirstChildOfClass('Humanoid') then
  5814. for a,c in pairs(v:GetChildren()) do
  5815. if c:IsA('Tool') then
  5816. local model = Instance.new('Model',workspace)
  5817. c.Parent = model
  5818. model:TranslateBy(Vector3.new(3,0,0))
  5819. end
  5820. end
  5821. v:FindFirstChildOfClass('Humanoid').Jump = false
  5822. v:FindFirstChildOfClass('Humanoid').Sit = false
  5823. v:FindFirstChildOfClass('Humanoid').JumpPower = 0
  5824. v:FindFirstChildOfClass('Humanoid').PlatformStand = true
  5825. v:FindFirstChildOfClass('Humanoid').Name = "No escape."
  5826. local thing = getplr(v)
  5827. if thing then
  5828. thing.CameraMinZoomDistance = 3
  5829. end
  5830. else
  5831. local thing = getplr(v)
  5832. if thing then
  5833. thing.CameraMinZoomDistance = 0.5
  5834. end
  5835. table.remove(rekt,i)
  5836. end
  5837. end
  5838. end)
  5839. coru()
  5840. local coru2 = coroutine.wrap(function()
  5841. if curpart then
  5842. curpoint = curpart.CFrame.p
  5843. end
  5844. if lastgui then
  5845. lastgui:Destroy()
  5846. lastgui = nil
  5847. end
  5848. if curpoint then
  5849. lastgui = Instance.new('BillboardGui',player.PlayerGui)
  5850. lastgui.AlwaysOnTop = true
  5851. lastgui.MaxDistance = 0
  5852. lastgui.Size = UDim2.new(5,0,5,0)
  5853. if curpart == nil then
  5854. lastgui.Adornee = workspace
  5855. lastgui.StudsOffsetWorldSpace = curpoint
  5856. else
  5857. lastgui.Adornee = curpart
  5858. end
  5859. local cross = Instance.new('ImageLabel',lastgui)
  5860. cross.BackgroundTransparency = 1
  5861. cross.Size = UDim2.new(1,0,1,0)
  5862. cross.Image = 'rbxassetid://316279304'
  5863. for i,v in pairs(zombies) do
  5864. if v:FindFirstChildOfClass('Humanoid') then
  5865. v:FindFirstChildOfClass('Humanoid').WalkToPoint = curpoint
  5866. end
  5867. end
  5868. else
  5869. for i,v in pairs(zombies) do
  5870. if v:FindFirstChildOfClass('Humanoid') and v:FindFirstChild('Head') then
  5871. v:FindFirstChildOfClass('Humanoid').WalkToPoint = v.Head.Position
  5872. end
  5873. end
  5874. end
  5875. end)
  5876. coru2()
  5877. wait()
  5878. end
  5879. end)
  5880. OpenFrame.Name = "OpenFrame"
  5881. OpenFrame.Parent = ModGUI
  5882. OpenFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  5883. OpenFrame.Position = UDim2.new(0, 0, 0, 564)
  5884. OpenFrame.Size = UDim2.new(0, 161, 0, 66)
  5885.  
  5886. TextButton_9.Parent = OpenFrame
  5887. TextButton_9.BackgroundColor3 = Color3.new(1, 1, 1)
  5888. TextButton_9.BackgroundTransparency = 1
  5889. TextButton_9.Position = UDim2.new(0, -2, 0, 0)
  5890. TextButton_9.Size = UDim2.new(0, 163, 0, 66)
  5891. TextButton_9.Font = Enum.Font.SciFi
  5892. TextButton_9.FontSize = Enum.FontSize.Size14
  5893. TextButton_9.Text = "Open/Close"
  5894. TextButton_9.TextColor3 = Color3.new(1, 0.121569, 0.145098)
  5895. TextButton_9.TextScaled = true
  5896. TextButton_9.TextSize = 14
  5897. TextButton_9.TextWrapped = true
  5898.  
  5899. TextButton_9.MouseButton1Down:connect(function()
  5900. if GUIFrame.Visible == false then
  5901. GUIFrame.Visible = true
  5902. else
  5903. GUIFrame.Visible = false
  5904. end
  5905. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement