Abbcity

Untitled

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