Advertisement
Migas3456

FunGamesDK's GUI(not made by me)

Dec 30th, 2017
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 297.55 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local TextButton = Instance.new("TextButton")
  7. local TextButton_2 = Instance.new("TextButton")
  8. local TextButton_3 = Instance.new("TextButton")
  9. local TextButton_4 = Instance.new("TextButton")
  10. local TextButton_5 = Instance.new("TextButton")
  11.  
  12. -- Properties
  13.  
  14. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  15.  
  16. Frame.Parent = ScreenGui
  17. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  18. Frame.Position = UDim2.new(0, 20, 0, 330)
  19. Frame.Size = UDim2.new(0, 288, 0, 177)
  20.  
  21. TextLabel.Parent = ScreenGui
  22. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  23. TextLabel.Position = UDim2.new(0, 21, 0, 330)
  24. TextLabel.Size = UDim2.new(0, 281, 0, 50)
  25. TextLabel.Font = Enum.Font.SourceSans
  26. TextLabel.Text = "FunGamezDK Gui v1"
  27. TextLabel.TextSize = 20
  28.  
  29. TextButton.Parent = ScreenGui
  30. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  31. TextButton.Position = UDim2.new(0, 24, 0, 387)
  32. TextButton.Size = UDim2.new(0, 88, 0, 50)
  33. TextButton.Font = Enum.Font.SourceSans
  34. TextButton.Text = "Grab Knife v3"
  35. TextButton.TextSize = 14
  36.  
  37. TextButton.MouseButton1Down:connect(function()
  38. math.randomseed(tick())
  39. local player = game.Players.LocalPlayer
  40. local rekt = {}
  41. local paralyzed = false
  42. local curpoint = nil
  43. local curpart = nil
  44. local finishnum = 1
  45. local zombiemode = false
  46. local zombies = {}
  47. local lastgui = nil
  48. local mouse = player:GetMouse()
  49.  
  50. function getplr(char)
  51. local plr = nil
  52. for i,v in pairs(game.Players:GetChildren()) do
  53. if v.Character == char then
  54. plr = v
  55. end
  56. end
  57. return plr
  58. end
  59.  
  60. function bleed(frick)
  61. while frick.Parent ~= nil do
  62. local reeee = coroutine.wrap(function()
  63. local thing = Instance.new('Part',game.Workspace)
  64. thing.Size = Vector3.new(0.2,0.2,0.2)
  65. thing.CFrame = frick.CFrame
  66. thing.Shape = Enum.PartType.Ball
  67. thing.CFrame = frick.CFrame
  68. thing.Transparency = 1
  69. thing.BrickColor = BrickColor.new('Maroon')
  70. thing.Material = Enum.Material.SmoothPlastic
  71. thing.Name = "Blood"
  72. thing.CanCollide =false
  73. local rawrxd = Instance.new('BodyForce',thing)
  74. rawrxd.Force = frick.CFrame.upVector*(math.random()*2)+Vector3.new(math.random(-5, 5)/10,1.5,0)
  75. local coru = coroutine.wrap(function()
  76. wait(0.01)
  77. rawrxd:Destroy()
  78. end)
  79. coru()
  80. local ree = Instance.new('ParticleEmitter',thing)
  81. ree.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Color3.fromRGB(100,0,0)),ColorSequenceKeypoint.new(1,Color3.fromRGB(100,0,0))})
  82. ree.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,0.1),NumberSequenceKeypoint.new(1,0.1)})
  83. ree.Texture = 'rbxassetid://867743272'
  84. ree.Lifetime = NumberRange.new(0.4)
  85. ree.Rate = 50
  86. ree.LockedToPart = true
  87. ree.Speed = NumberRange.new(0, 2)
  88.  
  89. thing.Touched:connect(function(tou)
  90. 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
  91. local pos = Vector3.new(thing.Position.X,(tou.Position.Y+(tou.Size.Y/2))+0.02,thing.Position.Z)
  92. thing:Destroy()
  93. if tou.Name == "BloodPuddle" then
  94. local reee = tou.CFrame
  95. if tou.Transparency > -0.2 then
  96. tou.Transparency = tou.Transparency -0.1
  97. end
  98. if tou.Size.X < 10 then
  99. tou.Size = tou.Size+Vector3.new(0.1,0,0.1)
  100. tou.CFrame = reee
  101. end
  102. else
  103. local bloodlol = Instance.new('Part',workspace)
  104. bloodlol.Size=Vector3.new(1,0.2,1)
  105. bloodlol.Name = "BloodPuddle"
  106. bloodlol.Anchored = true
  107. bloodlol.CanCollide = false
  108. bloodlol.Material = Enum.Material.SmoothPlastic
  109. bloodlol.BrickColor = BrickColor.new('Maroon')
  110. local cyl = Instance.new('CylinderMesh',bloodlol)
  111. cyl.Scale = Vector3.new(1,0.1,1)
  112. bloodlol.CFrame = CFrame.new(pos)
  113. local coru=coroutine.wrap(function()
  114. while bloodlol.Parent ~= nil do
  115. if bloodlol.Transparency < 1 then
  116. bloodlol.Transparency = bloodlol.Transparency+0.05
  117. else
  118. bloodlol:Destroy()
  119. end
  120. wait(0.1)
  121. end
  122. end)
  123. coru()
  124. end
  125. end
  126. end)
  127. local coru = coroutine.wrap(function()
  128. wait(1)
  129. thing:Destroy()
  130. end)
  131. coru()
  132. end)
  133. reeee()
  134. wait()
  135. end
  136. end
  137.  
  138. function killz(playa,hitz,kneef,explode,pool,head,charred,override)
  139. local soundy = false
  140. local heyy = hitz
  141. if hitz == "Right Arm" then
  142. local Limb = playa:FindFirstChild("Right Arm")
  143. local ters = playa:FindFirstChild('Torso')
  144. if Limb and ters then
  145. if ters:FindFirstChild('Right Shoulder') then ters["Right Shoulder"]:Destroy() end
  146. for i,v in pairs(Limb:GetChildren()) do
  147. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  148. v:Destroy()
  149. end
  150. end
  151. Limb.CFrame = ters.CFrame * CFrame.new(1.5, 0, 0)
  152. local Joint = Instance.new("Rotate")
  153. Joint.Name = "RightShoulder"
  154. Joint.Part0 = ters
  155. Joint.Part1 = Limb
  156. Joint.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  157. Joint.C1 = CFrame.new(-0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  158. Joint.Parent = ters
  159. if charred and zombiemode == false then
  160. Limb.BrickColor = BrickColor.new('Black')
  161. local fire = Instance.new('Fire',Limb)
  162. fire.Heat = 5
  163. fire.Size = 5
  164. game:GetService('Debris'):AddItem(fire,2)
  165. local coru=coroutine.wrap(function()
  166. wait(2)
  167. for i,v in pairs(Limb:GetChildren()) do
  168. if v:IsA('ParticleEmitter') then
  169. v:Destroy()
  170. end
  171. end
  172. end)
  173. coru()
  174. end
  175. local B = Instance.new("Part")
  176. B.TopSurface = 0
  177. B.BottomSurface = 0
  178. B.formFactor = "Symmetric"
  179. B.Size = Vector3.new(1, 1, 1)
  180. B.Transparency = 1
  181. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  182. B.Parent = playa
  183. local W = Instance.new("Weld")
  184. W.Part0 = Limb
  185. W.Part1 = B
  186. W.C0 = CFrame.new(0, -0.5, 0)
  187. W.Parent = Limb
  188. if kneef then
  189. local coru = coroutine.wrap(function()
  190. local uno = Instance.new('Part',workspace)
  191. local dos = Instance.new('Part',workspace)
  192. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  193. dos.CFrame = kneef["big ass knife"].CFrame
  194. local weld = Instance.new('Weld',kneef["big ass knife"])
  195. weld.Part0 = playa:FindFirstChild(hitz)
  196. weld.Part1 = kneef["big ass knife"]
  197. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  198. uno:Destroy()
  199. dos:Destroy()
  200. playa:FindFirstChild(hitz).Anchored = false
  201. for i, v in pairs(kneef:GetChildren()) do
  202. if v:IsA('BasePart') then
  203. v.Anchored = false
  204. end
  205. end
  206. if zombiemode == false or override then
  207. wait()
  208. end
  209. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  210. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  211. end
  212. local bleedpart = Instance.new("Part", kneef)
  213. bleedpart.CanCollide = false
  214. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  215. bleedpart.CFrame = kneef["big ass knife"].CFrame
  216. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  217. bleedpart.Transparency = 1
  218.  
  219. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  220. bleedpartweld.Part0 = kneef["big ass knife"]
  221. bleedpartweld.Part1 = bleedpart
  222. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  223. local coru = coroutine.wrap(function()
  224. bleed(bleedpart)
  225. end)
  226. coru()
  227. game:GetService('Debris'):AddItem(bleedpart,2)
  228. end)
  229. coru()
  230. end
  231. end
  232. elseif hitz == "Left Arm" then
  233. local Limb = playa:FindFirstChild("Left Arm")
  234. local ters = playa:FindFirstChild('Torso')
  235. if Limb and ters then
  236. if ters:FindFirstChild('Left Shoulder') then ters["Left Shoulder"]:Destroy() end
  237. for i,v in pairs(Limb:GetChildren()) do
  238. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  239. v:Destroy()
  240. end
  241. end
  242. Limb.CFrame = ters.CFrame * CFrame.new(-1.5, 0, 0)
  243. local Joint = Instance.new("Rotate")
  244. Joint.Name = "LeftShoulder"
  245. Joint.Part0 = ters
  246. Joint.Part1 = Limb
  247. Joint.C0 = CFrame.new(-1.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  248. Joint.C1 = CFrame.new(0, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  249. Joint.Parent = ters
  250. if charred and zombiemode == false then
  251. Limb.BrickColor = BrickColor.new('Black')
  252. local fire = Instance.new('Fire',Limb)
  253. fire.Heat = 5
  254. fire.Size = 5
  255. game:GetService('Debris'):AddItem(fire,2)
  256. local coru=coroutine.wrap(function()
  257. wait(2)
  258. for i,v in pairs(Limb:GetChildren()) do
  259. if v:IsA('ParticleEmitter') then
  260. v:Destroy()
  261. end
  262. end
  263. end)
  264. coru()
  265. end
  266.  
  267. local B = Instance.new("Part")
  268. B.TopSurface = 0
  269. B.BottomSurface = 0
  270. B.formFactor = "Symmetric"
  271. B.Size = Vector3.new(1, 1, 1)
  272. B.CanCollide = true
  273. B.Transparency = 1
  274. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  275. B.Parent = playa
  276. local W = Instance.new("Weld")
  277. W.Part0 = ters
  278. W.Part1 = B
  279. W.C0 = CFrame.new(0, -0.5, 0)
  280. W.Parent = Limb
  281. if kneef then
  282. local coru = coroutine.wrap(function()
  283. local uno = Instance.new('Part',workspace)
  284. local dos = Instance.new('Part',workspace)
  285. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  286. dos.CFrame = kneef["big ass knife"].CFrame
  287. local weld = Instance.new('Weld',kneef["big ass knife"])
  288. weld.Part0 = playa:FindFirstChild(hitz)
  289. weld.Part1 = kneef["big ass knife"]
  290. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  291. uno:Destroy()
  292. dos:Destroy()
  293. playa:FindFirstChild(hitz).Anchored = false
  294. for i, v in pairs(kneef:GetChildren()) do
  295. if v:IsA('BasePart') then
  296. v.Anchored = false
  297. end
  298. end
  299. if zombiemode == false or override then
  300. wait()
  301. end
  302. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  303. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  304. end
  305. local bleedpart = Instance.new("Part", kneef)
  306. bleedpart.CanCollide = false
  307. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  308. bleedpart.CFrame = kneef["big ass knife"].CFrame
  309. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  310. bleedpart.Transparency = 1
  311.  
  312. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  313. bleedpartweld.Part0 = kneef["big ass knife"]
  314. bleedpartweld.Part1 = bleedpart
  315. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  316. local coru = coroutine.wrap(function()
  317. bleed(bleedpart)
  318. end)
  319. coru()
  320. game:GetService('Debris'):AddItem(bleedpart,2)
  321. end)
  322. coru()
  323. end
  324. end
  325. elseif hitz == "Right Leg" then
  326. local Limb = playa:FindFirstChild("Right Leg")
  327. local ters = playa:FindFirstChild('Torso')
  328. if Limb and ters then
  329. if ters:FindFirstChild('Right Hip') then ters["Right Hip"]:Destroy() end
  330. for i,v in pairs(Limb:GetChildren()) do
  331. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  332. v:Destroy()
  333. end
  334. end
  335. Limb.CFrame = ters.CFrame * CFrame.new(0.5, -2, 0)
  336. local Joint = Instance.new("Rotate")
  337. Joint.Name = "Right Hip"
  338. Joint.Part0 = ters
  339. Joint.Part1 = Limb
  340. Joint.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  341. Joint.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  342. Joint.Parent = ters
  343. if charred and zombiemode == false then
  344. Limb.BrickColor = BrickColor.new('Black')
  345. local fire = Instance.new('Fire',Limb)
  346. fire.Heat = 5
  347. fire.Size = 5
  348. game:GetService('Debris'):AddItem(fire,2)
  349. local coru=coroutine.wrap(function()
  350. wait(2)
  351. for i,v in pairs(Limb:GetChildren()) do
  352. if v:IsA('ParticleEmitter') then
  353. v:Destroy()
  354. end
  355. end
  356. end)
  357. coru()
  358. end
  359. local B = Instance.new("Part")
  360. B.TopSurface = 0
  361. B.BottomSurface = 0
  362. B.formFactor = "Symmetric"
  363. B.Size = Vector3.new(1, 1, 1)
  364. B.Transparency = 1
  365. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  366. B.Parent = playa
  367. local W = Instance.new("Weld")
  368. W.Part0 = Limb
  369. W.Part1 = B
  370. W.C0 = CFrame.new(0, -0.5, 0)
  371. W.Parent = Limb
  372. if kneef then
  373. local coru = coroutine.wrap(function()
  374. local uno = Instance.new('Part',workspace)
  375. local dos = Instance.new('Part',workspace)
  376. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  377. dos.CFrame = kneef["big ass knife"].CFrame
  378. local weld = Instance.new('Weld',kneef["big ass knife"])
  379. weld.Part0 = playa:FindFirstChild(hitz)
  380. weld.Part1 = kneef["big ass knife"]
  381. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  382. uno:Destroy()
  383. dos:Destroy()
  384. playa:FindFirstChild(hitz).Anchored = false
  385. for i, v in pairs(kneef:GetChildren()) do
  386. if v:IsA('BasePart') then
  387. v.Anchored = false
  388. end
  389. end
  390. if zombiemode == false or override then
  391. wait()
  392. end
  393. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  394. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  395. end
  396. local bleedpart = Instance.new("Part", kneef)
  397. bleedpart.CanCollide = false
  398. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  399. bleedpart.CFrame = kneef["big ass knife"].CFrame
  400. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  401. bleedpart.Transparency = 1
  402.  
  403. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  404. bleedpartweld.Part0 = kneef["big ass knife"]
  405. bleedpartweld.Part1 = bleedpart
  406. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  407. local coru = coroutine.wrap(function()
  408. bleed(bleedpart)
  409. end)
  410. coru()
  411. game:GetService('Debris'):AddItem(bleedpart,2)
  412. end)
  413. coru()
  414. end
  415. if playa then
  416. table.insert(rekt,playa)
  417. end
  418. end
  419. elseif hitz == "Left Leg" then
  420. local Limb = playa:FindFirstChild("Left Leg")
  421. local ters = playa:FindFirstChild('Torso')
  422. if Limb and ters then
  423. if ters:FindFirstChild('Left Hip') then ters["Left Hip"]:Destroy() end
  424. for i,v in pairs(Limb:GetChildren()) do
  425. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  426. v:Destroy()
  427. end
  428. end
  429. Limb.CFrame = ters.CFrame * CFrame.new(0.5, -2, 0)
  430. Limb.CFrame = ters.CFrame * CFrame.new(-0.5, -2, 0)
  431. local Joint = Instance.new("Rotate")
  432. Joint.Name = "LeftHip"
  433. Joint.Part0 = ters
  434. Joint.Part1 = Limb
  435. Joint.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  436. Joint.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  437. Joint.Parent = ters
  438. if charred and zombiemode == false then
  439. Limb.BrickColor = BrickColor.new('Black')
  440. local fire = Instance.new('Fire',Limb)
  441. fire.Heat = 5
  442. fire.Size = 5
  443. game:GetService('Debris'):AddItem(fire,2)
  444. local coru=coroutine.wrap(function()
  445. wait(2)
  446. for i,v in pairs(Limb:GetChildren()) do
  447. if v:IsA('ParticleEmitter') then
  448. v:Destroy()
  449. end
  450. end
  451. end)
  452. coru()
  453. end
  454.  
  455. local B = Instance.new("Part")
  456. B.TopSurface = 0
  457. B.BottomSurface = 0
  458. B.formFactor = "Symmetric"
  459. B.Size = Vector3.new(1, 1, 1)
  460. B.Transparency = 1
  461. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  462. B.Parent = playa
  463. local W = Instance.new("Weld")
  464. W.Part0 = Limb
  465. W.Part1 = B
  466. W.C0 = CFrame.new(0, -0.5, 0)
  467. W.Parent = Limb
  468. Limb.CanCollide = false
  469. if kneef then
  470. local coru = coroutine.wrap(function()
  471. local uno = Instance.new('Part',workspace)
  472. local dos = Instance.new('Part',workspace)
  473. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  474. dos.CFrame = kneef["big ass knife"].CFrame
  475. local weld = Instance.new('Weld',kneef["big ass knife"])
  476. weld.Part0 = playa:FindFirstChild(hitz)
  477. weld.Part1 = kneef["big ass knife"]
  478. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  479. uno:Destroy()
  480. dos:Destroy()
  481. playa:FindFirstChild(hitz).Anchored = false
  482. for i, v in pairs(kneef:GetChildren()) do
  483. if v:IsA('BasePart') then
  484. v.Anchored = false
  485. end
  486. end
  487. if zombiemode == false or override then
  488. wait()
  489. end
  490. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  491. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  492. end
  493. local bleedpart = Instance.new("Part", kneef)
  494. bleedpart.CanCollide = false
  495. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  496. bleedpart.CFrame = kneef["big ass knife"].CFrame
  497. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  498. bleedpart.Transparency = 1
  499.  
  500. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  501. bleedpartweld.Part0 = kneef["big ass knife"]
  502. bleedpartweld.Part1 = bleedpart
  503. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  504. local coru = coroutine.wrap(function()
  505. bleed(bleedpart)
  506. end)
  507. coru()
  508. game:GetService('Debris'):AddItem(bleedpart,2)
  509. end)
  510. coru()
  511. end
  512. if playa then
  513. table.insert(rekt,playa)
  514. end
  515. end
  516. elseif playa then
  517. if finishnum ~= 1 then
  518. local coru=coroutine.wrap(function()
  519. player.Character.Head.Psycho.Playing = true
  520. wait(3)
  521. player.Character.Head.Psycho.Playing = false
  522. end)
  523. coru()
  524. end
  525. local playa2 = playa
  526. playa.Archivable = true
  527. local playa = playa:Clone()
  528. playa.Archivable = false
  529. playa2:Destroy()
  530. playa.Parent = workspace
  531. local Gibs = game.Workspace
  532. local Torso = playa.Torso
  533. local Head = playa:FindFirstChild("Head")
  534. local function Scan(ch)
  535. local e
  536. for e = 1,#ch do
  537. Scan(ch[e]:GetChildren())
  538. 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
  539. ch[e]:remove()
  540. end
  541. end
  542. end
  543. Scan(playa:GetChildren())
  544. if playa:FindFirstChild('HumanoidRootPart') and (zombiemode == false or override) then
  545. playa:FindFirstChild('HumanoidRootPart'):Destroy()
  546. end
  547. local hum2 = playa:FindFirstChildOfClass("Humanoid")
  548. if zombiemode == true and override == false then
  549. soundy = true
  550. end
  551. if string.sub(hum2.Parent.Name,string.len(hum2.Parent.Name)-8,string.len(hum2.Parent.Name)) ~= "'s Zombie" then
  552. override = true
  553. end
  554. if hum2 ~= nil then
  555. hum2.Name = "Humanoid2"
  556. hum2.Health = 0
  557. if zombiemode == false or override == true then
  558. table.insert(rekt,hum2.Parent)
  559. else
  560. local gyro = Instance.new('BodyGyro',Torso)
  561. hum2.PlatformStand = false
  562. for i,v in pairs(hum2.Parent.Torso:GetChildren()) do
  563. if v:IsA('BodyGyro') then v:Destroy() end
  564. end
  565. if playa:FindFirstChild('HumanoidRootPart') then
  566. hum2.Parent.HumanoidRootPart.CFrame = hum2.Parent.Torso.CFrame
  567. local weldcrucial = Instance.new('Weld',hum2.Parent.HumanoidRootPart)
  568. weldcrucial.Part0 = hum2.Parent.HumanoidRootPart
  569. weldcrucial.Part1 = hum2.Parent.Torso
  570. end
  571. end
  572. end
  573. local ch = playa:GetChildren()
  574. local i
  575. for i = 1,#ch do
  576. if ch[i].Name == "THandle1" or ch[i].Name == "THandle2" then
  577. ch[i]:remove()
  578. end
  579. end
  580.  
  581. if Head then
  582. local Neck = Instance.new("Weld")
  583. Neck.Name = "Neck"
  584. Neck.Part0 = Torso
  585. Neck.Part1 = Head
  586. if pool then
  587. local part = Instance.new('Part',Torso)
  588. part.Position = Vector3.new(0,10,0)
  589. part.Size = Vector3.new(0.2,0.2,0.2)
  590. part.Transparency = 1
  591. part.CanCollide = false
  592. local we = Instance.new('Weld',Torso)
  593. we.Part0 = Torso
  594. we.Part1 = part
  595. we.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  596. local coru=coroutine.wrap(function()
  597. bleed(part)
  598. end)
  599. coru()
  600. end
  601. if head == false or head == nil then
  602. Neck.C0 = CFrame.new(0, 1.5, 0)
  603. else
  604. Neck.C0 = CFrame.new(0, 1.5, 0.2)*CFrame.Angles(0.5, 0.25, 0.25)
  605. local bleedpart = Instance.new("Part", Torso)
  606. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  607. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  608. bleedpart.CanCollide = false
  609. bleedpart.Position = Head.Position + Vector3.new(0, 1, 0)
  610. bleedpart.Transparency = 1
  611.  
  612. local bleedpartweld = Instance.new("Weld", Torso)
  613. bleedpartweld.Part0 = Torso
  614. bleedpartweld.Part1 = bleedpart
  615. bleedpartweld.C0 = CFrame.Angles(-1, 0, -0.35) * CFrame.new(0, 1, 0.8)
  616. local coru = coroutine.wrap(function()
  617. bleed(bleedpart)
  618. end)
  619. coru()
  620. end
  621. Neck.C1 = CFrame.new()
  622. Neck.Parent = Torso
  623. end
  624. local Limb = playa:FindFirstChild("Right Arm")
  625. if Limb then
  626.  
  627. Limb.CFrame = Torso.CFrame * CFrame.new(1.5, 0, 0)
  628. local Joint = Instance.new("Rotate")
  629. Joint.Name = "RightShoulder"
  630. Joint.Part0 = Torso
  631. Joint.Part1 = Limb
  632. Joint.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  633. Joint.C1 = CFrame.new(-0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  634. Joint.Parent = Torso
  635.  
  636. local B = Instance.new("Part")
  637. B.TopSurface = 0
  638. B.BottomSurface = 0
  639. B.formFactor = "Symmetric"
  640. B.Size = Vector3.new(1, 1, 1)
  641. B.Transparency = 1
  642. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  643. B.Parent = playa
  644. local W = Instance.new("Weld")
  645. W.Part0 = Limb
  646. W.Part1 = B
  647. W.C0 = CFrame.new(0, -0.5, 0)
  648. W.Parent = Limb
  649. end
  650. local Limb = playa:FindFirstChild("Left Arm")
  651. if Limb then
  652.  
  653. Limb.CFrame = Torso.CFrame * CFrame.new(-1.5, 0, 0)
  654. local Joint = Instance.new("Rotate")
  655. Joint.Name = "LeftShoulder"
  656. Joint.Part0 = Torso
  657. Joint.Part1 = Limb
  658. Joint.C0 = CFrame.new(-1.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  659. Joint.C1 = CFrame.new(0, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  660. Joint.Parent = Torso
  661.  
  662. local B = Instance.new("Part")
  663. B.TopSurface = 0
  664. B.BottomSurface = 0
  665. B.formFactor = "Symmetric"
  666. B.Size = Vector3.new(1, 1, 1)
  667. B.Transparency = 1
  668. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  669. B.Parent = playa
  670. local W = Instance.new("Weld")
  671. W.Part0 = Limb
  672. W.Part1 = B
  673. W.C0 = CFrame.new(0, -0.5, 0)
  674. W.Parent = Limb
  675. end
  676. local Limb = playa:FindFirstChild("Right Leg")
  677. if Limb then
  678. Limb.CanCollide = false
  679. Limb.CFrame = Torso.CFrame * CFrame.new(0.5, -2, 0)
  680. local Joint = Instance.new("Rotate")
  681. Joint.Name = "RightHip"
  682. Joint.Part0 = Torso
  683. Joint.Part1 = Limb
  684. Joint.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  685. Joint.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  686. Joint.Parent = Torso
  687.  
  688. local B = Instance.new("Part")
  689. B.TopSurface = 0
  690. B.BottomSurface = 0
  691. B.formFactor = "Symmetric"
  692. B.Size = Vector3.new(1, 1, 1)
  693. B.Transparency = 1
  694. B.CanCollide = true
  695. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  696. B.Parent = playa
  697. local W = Instance.new("Weld")
  698. W.Part0 = Limb
  699. W.Part1 = B
  700. W.C0 = CFrame.new(0, -0.5, 0)
  701. W.Parent = Limb
  702. end
  703. local Limb = playa:FindFirstChild("Left Leg")
  704. if Limb then
  705. Limb.CanCollide = false
  706. Limb.CFrame = Torso.CFrame * CFrame.new(-0.5, -2, 0)
  707. local Joint = Instance.new("Rotate")
  708. Joint.Name = "LeftHip"
  709. Joint.Part0 = Torso
  710. Joint.Part1 = Limb
  711. Joint.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  712. Joint.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  713. Joint.Parent = Torso
  714.  
  715. local B = Instance.new("Part")
  716. B.TopSurface = 0
  717. B.BottomSurface = 0
  718. if zombiemode == false or override then
  719. B.CanCollide = true
  720. end
  721. B.formFactor = "Symmetric"
  722. B.Size = Vector3.new(1, 1, 1)
  723. B.Transparency = 1
  724. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  725. B.Parent = playa
  726. local W = Instance.new("Weld")
  727. W.Part0 = Limb
  728. W.Part1 = B
  729. W.C0 = CFrame.new(0, -0.5, 0)
  730. W.Parent = Limb
  731. end
  732. --[[
  733. local Bar = Instance.new("Part")
  734. Bar.TopSurface = 0
  735. Bar.BottomSurface = 0
  736. Bar.formFactor = "Symmetric"
  737. Bar.Size = Vector3.new(1, 1, 1)
  738. Bar.Transparency = 1
  739. Bar.CFrame = Torso.CFrame * CFrame.new(0, 0.5, 0)
  740. Bar.Parent = playa
  741. local Weld = Instance.new("Weld")
  742. Weld.Part0 = Torso
  743. Weld.Part1 = Bar
  744. Weld.C0 = CFrame.new(0, 0.5, 0)
  745. Weld.Parent = Torso
  746. --]]
  747. playa.Parent = Gibs
  748. if kneef and explode == nil then
  749. local coru = coroutine.wrap(function()
  750. if playa:FindFirstChild(hitz) then
  751. local uno = Instance.new('Part',workspace)
  752. local dos = Instance.new('Part',workspace)
  753. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  754. dos.CFrame = kneef["big ass knife"].CFrame
  755. local weld = Instance.new('Weld',kneef["big ass knife"])
  756. weld.Part0 = playa:FindFirstChild(hitz)
  757. weld.Part1 = kneef["big ass knife"]
  758. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  759. uno:Destroy()
  760. dos:Destroy()
  761. playa:FindFirstChild(hitz).Anchored = false
  762. for i, v in pairs(kneef:GetChildren()) do
  763. if v:IsA('BasePart') then
  764. v.Anchored = false
  765. end
  766. end
  767. if explode == nil or explode == false then
  768. local bleedpart = Instance.new("Part", kneef)
  769. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  770. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  771. bleedpart.CanCollide = false
  772. bleedpart.Position = Head.Position + Vector3.new(0, 1, 0)
  773. bleedpart.Transparency = 1
  774.  
  775. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  776. bleedpartweld.Part0 = kneef["big ass knife"]
  777. bleedpartweld.Part1 = bleedpart
  778. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  779. local coru = coroutine.wrap(function()
  780. bleed(bleedpart)
  781. end)
  782. coru()
  783. end
  784. end
  785. if zombiemode == false or override then
  786. wait()
  787. end
  788. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  789. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  790. end
  791. end)
  792. coru()
  793. end
  794. if explode then
  795. local movevector = CFrame.new(explode.Position,Torso.Position).lookVector
  796. local repulse = Instance.new('BodyForce',Torso)
  797. repulse.Force = movevector*10000 + Vector3.new(0,5000,0)
  798. game.Debris:AddItem(repulse,0.05)
  799. end
  800. if charred and zombiemode == false then
  801. for i,v in pairs(playa:GetChildren()) do
  802. if v:IsA('BasePart') then
  803. v.BrickColor = BrickColor.Black()
  804. local fire = Instance.new('Fire',v)
  805. fire.Size = 5
  806. fire.Heat = 5
  807. elseif v:IsA('Accessory') then
  808. for a,c in pairs(v:GetChildren()) do
  809. if c:IsA('BasePart') then
  810. c.BrickColor = BrickColor.Black()
  811. local fire = Instance.new('Fire',v)
  812. fire.Size = 5
  813. fire.Heat = 5
  814. for o,p in pairs(c:GetChildren()) do
  815. if p:IsA("SpecialMesh") then
  816. p.TextureId = ""
  817. end
  818. end
  819. end
  820. end
  821. end
  822. end
  823. end
  824. if soundy then
  825. local sound = Instance.new('Sound',Head)
  826. sound.SoundId = 'rbxassetid://903640857'
  827. sound.Volume = 1
  828. sound:Play()
  829. sound.Ended:connect(function()
  830. sound:Destroy()
  831. local ambient = Instance.new('Sound',Head)
  832. ambient.Volume = 0.25
  833. ambient.Looped = true
  834. ambient.SoundId = 'rbxassetid://903641031'
  835. ambient:Play()
  836. end)
  837. end
  838. if override then
  839. 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
  840. local coru = coroutine.wrap(function()
  841. wait(4.5)
  842. hum2.Parent.Name = hum2.Parent.Name.."'s Zombie"
  843. hum2.HipHeight = 0.2
  844. wait(0.5)
  845. killz(hum2.Parent,"Head",nil,nil,false,false,false,false)
  846. end)
  847. coru()
  848. else
  849. game:GetService('Debris'):AddItem(playa, 12)
  850. end
  851. else
  852. hum2.Health = 0
  853. table.insert(zombies,playa)
  854. local attack = Instance.new('Sound',Head)
  855. attack.SoundId = 'rbxassetid://903641424'
  856. attack.Volume = 2
  857. for i,v in pairs(playa:GetChildren()) do
  858. if v:IsA('BasePart') and v:FindFirstChildOfClass('TouchTransmitter') == nil then
  859. v.Touched:connect(function(hit)
  860. if hit.Parent and hit.Parent:FindFirstChildOfClass('Humanoid') then
  861. local found = false
  862. if hit.Parent == player.Character then
  863. found = true
  864. end
  865. for a,c in pairs(zombies) do
  866. if c == hit.Parent then
  867. found = true
  868. end
  869. end
  870. if found == false and hit.Parent:FindFirstChildOfClass('Humanoid').Health > 0 then
  871. attack:Play()
  872. if hit.Parent:FindFirstChildOfClass('Humanoid').Health - 2 <= 0 then
  873. hit.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  874. wait()
  875. killz(hit.Parent,"Head")
  876. else
  877. hit.Parent:FindFirstChildOfClass('Humanoid'):TakeDamage(2)
  878. end
  879. end
  880. end
  881. end)
  882. end
  883. end
  884. local coru = coroutine.wrap(function()
  885. wait(2)
  886. for i,v in pairs(playa:GetChildren()) do
  887. if v:IsA('BasePart') then
  888. for a,c in pairs(v:GetChildren()) do
  889. if c:IsA('Fire') or c:IsA('ParticleEmitter') then
  890. c:Destroy()
  891. end
  892. end
  893. elseif v:IsA('Accessory') then
  894. for a,c in pairs(v:GetChildren()) do
  895. if c:IsA('BasePart') then
  896. for b,d in pairs(c:GetChildren()) do
  897. if d:IsA('Fire') or d:IsA('ParticleEmitter') then
  898. d:Destroy()
  899. end
  900. end
  901. end
  902. end
  903. end
  904. end
  905. end)
  906. coru()
  907. end
  908. end
  909. end
  910.  
  911. mouse.KeyDown:connect(function(key)
  912. if key == "t" and mouse.Target then
  913. local hum = mouse.Target.Parent:FindFirstChildOfClass('Humanoid')
  914. if hum == nil then hum = mouse.Target.Parent.Parent:FindFirstChildOfClass('Humanoid') end
  915. if curpoint == nil then
  916. if hum and hum.Parent:FindFirstChild('Head') then
  917. curpart = hum.Parent.Head
  918. else
  919. curpart = nil
  920. curpoint = mouse.Hit.p
  921. end
  922. if player.PlayerGui:FindFirstChild('Notification') then player.PlayerGui.Notification:Destroy() end
  923. notify("ZOMBIE TARGET SET",false)
  924. else
  925. curpart = nil
  926. curpoint = nil
  927. if player.PlayerGui:FindFirstChild('Notification') then player.PlayerGui.Notification:Destroy() end
  928. notify("ZOMBIE TARGET REMOVED",false)
  929. end
  930. elseif key == "y" then
  931. for o,p in pairs(zombies) do
  932. local coru = coroutine.wrap(function()
  933. if p:FindFirstChild('Torso') then
  934. killz(p,"Head",nil,nil,false,false,false,true)
  935. else
  936. table.remove(zombies,o)
  937. end
  938. end)
  939. coru()
  940. wait()
  941. end
  942. for i,v in pairs(zombies) do
  943. table.remove(zombies,i)
  944. end
  945. if player.PlayerGui:FindFirstChild('Notification') then player.PlayerGui.Notification:Destroy() end
  946. notify("ZOMBIES TERMINATED",false)
  947. end
  948. end)
  949.  
  950. function nub()
  951. repeat wait() until player.Character and player.Character:FindFirstChild('Torso')
  952. local me = player.Character
  953. local point = me.HumanoidRootPart
  954. local playergui = player.PlayerGui
  955. local rightshoulderz = me.Torso["Right Shoulder"]:Clone()
  956. local leftshoulderz = me.Torso["Left Shoulder"]:Clone()
  957. local torsojoint = me.HumanoidRootPart["RootJoint"]:Clone()
  958. local lefthipz = me.Torso["Left Hip"]:Clone()
  959. local righthipz = me.Torso["Right Hip"]:Clone()
  960. local mode = "kill"
  961. local lerpz = false
  962. local active = false
  963. local acting = false
  964. local hit = false
  965. local canClick = true
  966. local stabbing = false
  967. local grabbing = false
  968. local finishing = false
  969. local kyssing = false
  970. local canbackgroundmusic = true
  971. local cancolorfilter = true
  972. local spinboolean = false
  973. local grabbed = nil
  974. local doing = false
  975. local rightshoulder = nil
  976. local leftshoulder = nil
  977. local headweld = nil
  978. local knifeparts = {}
  979. local usable = true
  980. finishnum = 1
  981.  
  982. function notify(msg,forever)
  983. local doit = coroutine.wrap(function()
  984. local gui = Instance.new('ScreenGui',playergui)
  985. gui.Name = "Notification"
  986. local frame = Instance.new('Frame',gui)
  987. frame.Position = UDim2.new(0,0,0,0)
  988. frame.Size = UDim2.new(1,0,0.2,0)
  989. frame.BackgroundTransparency = 1
  990. local txt = Instance.new('TextLabel',frame)
  991. txt.TextColor3 = Color3.new(255,255,255)
  992. txt.TextStrokeColor3 = Color3.new(0, 0, 0)
  993. txt.TextStrokeTransparency = 0
  994. txt.BackgroundTransparency = 1
  995. txt.Text = ""
  996. txt.Size = UDim2.new(1,0,0.3,0)
  997. txt.Position = UDim2.new(0,0,0.4,0)
  998. txt.TextScaled = true
  999. txt.Font = "Code"
  1000. txt.TextXAlignment = "Center"
  1001. local tap = Instance.new("Sound")
  1002. tap.Parent = gui
  1003. tap.SoundId = "rbxassetid://147982968"
  1004. tap.TimePosition = 0.1
  1005. local str = msg
  1006. local len = string.len(str)
  1007. for i=1,len do
  1008. txt.Text = string.sub(str,1,i)
  1009. pitche = math.random(20, 40)/10
  1010. tap.PlaybackSpeed = pitche
  1011. tap:Play()
  1012. wait(0.01)
  1013. end
  1014. if forever == false then
  1015. wait(1)
  1016. while txt.TextTransparency < 1 do
  1017. txt.TextTransparency = txt.TextTransparency + 0.1
  1018. txt.TextStrokeTransparency = txt.TextStrokeTransparency + 0.1
  1019. wait(0.001)
  1020. end
  1021. gui:Destroy()
  1022. end
  1023. end)
  1024. doit()
  1025. end
  1026.  
  1027. wait(0.5)
  1028. notify("PRESS [Z] TO EQUIP KNIFE || Created by mustardfoot and Tollonis",true)
  1029. local laugh = Instance.new('Sound',me.Head)
  1030. laugh.SoundId = 'rbxassetid://378827985'
  1031. laugh.Name = "Psycho"
  1032. laugh.Volume = 5
  1033. -- 1 - bitch ass knife
  1034. local obj1 = Instance.new("Model")
  1035. obj1.Name = "bitch ass knife"
  1036. obj1.Parent = game.Workspace
  1037.  
  1038. -- 2 - Grab
  1039. local obj2 = Instance.new("Part")
  1040. obj2.CFrame = CFrame.new(Vector3.new(20.4525032, 6.14501333, -134.399979)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  1041. obj2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1042. obj2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1043. obj2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1044. obj2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1045. obj2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1046. obj2.Material = Enum.Material.Concrete
  1047. obj2.Size = Vector3.new(1, 0.25, 0.25)
  1048. obj2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1049. obj2.Anchored = true
  1050. obj2.BrickColor = BrickColor.new("Black")
  1051. obj2.Friction = 0.30000001192093
  1052. obj2.Shape = Enum.PartType.Cylinder
  1053. obj2.Name = "Grab"
  1054. obj2.Parent = obj1
  1055.  
  1056. -- 3 - handletopcap
  1057. local obj3 = Instance.new("Part")
  1058. obj3.CFrame = CFrame.new(Vector3.new(19.9725456, 6.14502859, -134.399933)) * CFrame.Angles(0, 1.5707963705063, 0)
  1059. obj3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1060. obj3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1061. obj3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1062. obj3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1063. obj3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1064. obj3.Material = Enum.Material.Concrete
  1065. obj3.Size = Vector3.new(0.349999994, 0.349999994, 0.349999994)
  1066. obj3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1067. obj3.Anchored = true
  1068. obj3.BrickColor = BrickColor.new("Black")
  1069. obj3.Friction = 0.30000001192093
  1070. obj3.Shape = Enum.PartType.Ball
  1071. obj3.Name = "handletopcap"
  1072. obj3.Parent = obj1
  1073.  
  1074. -- 4 - handlebottomcap
  1075. local obj4 = Instance.new("Part")
  1076. obj4.CFrame = CFrame.new(Vector3.new(20.9725285, 6.14502859, -134.399918)) * CFrame.Angles(0, 1.5707963705063, 0)
  1077. obj4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1078. obj4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1079. obj4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1080. obj4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1081. obj4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1082. obj4.Material = Enum.Material.Concrete
  1083. obj4.Size = Vector3.new(0.25, 0.25, 0.25)
  1084. obj4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1085. obj4.Anchored = true
  1086. obj4.BrickColor = BrickColor.new("Black")
  1087. obj4.Friction = 0.30000001192093
  1088. obj4.Shape = Enum.PartType.Ball
  1089. obj4.Name = "handlebottomcap"
  1090. obj4.Parent = obj1
  1091.  
  1092. -- 5 - handleguardmid
  1093. local obj5 = Instance.new("Part")
  1094. obj5.CFrame = CFrame.new(Vector3.new(19.9474983, 6.14502859, -134.399918)) * CFrame.Angles(0, 1.5707963705063, 0)
  1095. obj5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1096. obj5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1097. obj5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1098. obj5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1099. obj5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1100. obj5.Material = Enum.Material.Concrete
  1101. obj5.Size = Vector3.new(0.349999994, 0.349999994, 0.100000001)
  1102. obj5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1103. obj5.Anchored = true
  1104. obj5.BrickColor = BrickColor.new("Black")
  1105. obj5.Friction = 0.30000001192093
  1106. obj5.Shape = Enum.PartType.Block
  1107. obj5.Name = "handleguardmid"
  1108. obj5.Parent = obj1
  1109.  
  1110. -- 6 - handleguardcap1
  1111. local obj6 = Instance.new("Part")
  1112. obj6.CFrame = CFrame.new(Vector3.new(19.9474983, 6.32502794, -134.399918)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  1113. obj6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1114. obj6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1115. obj6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1116. obj6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1117. obj6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1118. obj6.Material = Enum.Material.Concrete
  1119. obj6.Size = Vector3.new(0.100000001, 0.349999994, 0.349999994)
  1120. obj6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1121. obj6.Anchored = true
  1122. obj6.BrickColor = BrickColor.new("Black")
  1123. obj6.Friction = 0.30000001192093
  1124. obj6.Shape = Enum.PartType.Cylinder
  1125. obj6.Name = "handleguardcap1"
  1126. obj6.Parent = obj1
  1127.  
  1128. -- 7 - handleguardcap2
  1129. local obj7 = Instance.new("Part")
  1130. obj7.CFrame = CFrame.new(Vector3.new(19.9474983, 5.97502899, -134.399918)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  1131. obj7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1132. obj7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1133. obj7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1134. obj7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1135. obj7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1136. obj7.Material = Enum.Material.Concrete
  1137. obj7.Size = Vector3.new(0.100000009, 0.349999994, 0.349999994)
  1138. obj7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1139. obj7.Anchored = true
  1140. obj7.BrickColor = BrickColor.new("Black")
  1141. obj7.Friction = 0.30000001192093
  1142. obj7.Shape = Enum.PartType.Cylinder
  1143. obj7.Name = "handleguardcap2"
  1144. obj7.Parent = obj1
  1145.  
  1146. -- 8 - big ass knife
  1147. local obj8 = Instance.new("Part")
  1148. obj8.CFrame = CFrame.new(Vector3.new(18.4375095, 6.14502859, -134.401321)) * CFrame.Angles(0, 1.5707963705063, 0)
  1149. obj8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1150. obj8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1151. obj8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1152. obj8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1153. obj8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1154. obj8.Material = Enum.Material.Metal
  1155. obj8.Size = Vector3.new(0.0500000007, 0.280000001, 0.839999795)
  1156. obj8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1157. obj8.Anchored = true
  1158. obj8.BrickColor = BrickColor.new("Lily white")
  1159. obj8.Friction = 0.30000001192093
  1160. obj8.Shape = Enum.PartType.Block
  1161. obj8.Name = "big ass knife"
  1162. obj8.Parent = obj1
  1163.  
  1164. -- 9 - Mesh
  1165. local obj9 = Instance.new("BlockMesh")
  1166. obj9.Scale = Vector3.new(0.5, 1, 1)
  1167. obj9.Parent = obj8
  1168.  
  1169. -- 10 - big ass knife
  1170. local obj10 = Instance.new("Part")
  1171. obj10.CFrame = CFrame.new(Vector3.new(19.7425137, 6.14502859, -134.401321)) * CFrame.Angles(0, 1.5707963705063, 0)
  1172. obj10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1173. obj10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1174. obj10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1175. obj10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1176. obj10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1177. obj10.Material = Enum.Material.Metal
  1178. obj10.Size = Vector3.new(0.0500000007, 0.280000001, 0.289999962)
  1179. obj10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1180. obj10.Anchored = true
  1181. obj10.BrickColor = BrickColor.new("Lily white")
  1182. obj10.Friction = 0.30000001192093
  1183. obj10.Shape = Enum.PartType.Block
  1184. obj10.Name = "big ass knife"
  1185. obj10.Parent = obj1
  1186. local knife = obj10
  1187.  
  1188. -- 11 - Mesh
  1189. local obj11 = Instance.new("BlockMesh")
  1190. obj11.Scale = Vector3.new(0.5, 1, 1)
  1191. obj11.Parent = obj10
  1192.  
  1193. -- 12 - big ass knife
  1194. local obj12 = Instance.new("Part")
  1195. obj12.CFrame = CFrame.new(Vector3.new(19.1075306, 6.08502865, -134.401321)) * CFrame.Angles(0, 1.5707963705063, 0)
  1196. obj12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1197. obj12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1198. obj12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1199. obj12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1200. obj12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1201. obj12.Material = Enum.Material.Metal
  1202. obj12.Size = Vector3.new(0.0500000007, 0.159999996, 0.979999959)
  1203. obj12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1204. obj12.Anchored = true
  1205. obj12.BrickColor = BrickColor.new("Lily white")
  1206. obj12.Friction = 0.30000001192093
  1207. obj12.Shape = Enum.PartType.Block
  1208. obj12.Name = "big ass knife"
  1209. obj12.Parent = obj1
  1210.  
  1211. -- 13 - Mesh
  1212. local obj13 = Instance.new("BlockMesh")
  1213. obj13.Scale = Vector3.new(0.5, 1, 1)
  1214. obj13.Parent = obj12
  1215.  
  1216. -- 14 - serration
  1217. local obj14 = Instance.new("WedgePart")
  1218. obj14.CFrame = CFrame.new(Vector3.new(19.4963322, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1219. obj14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1220. obj14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1221. obj14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1222. obj14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1223. obj14.Material = Enum.Material.Metal
  1224. obj14.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1225. obj14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1226. obj14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1227. obj14.Anchored = true
  1228. obj14.BrickColor = BrickColor.new("Lily white")
  1229. obj14.Friction = 0.30000001192093
  1230. obj14.Name = "serration"
  1231. obj14.Parent = obj1
  1232.  
  1233. -- 15 - Mesh
  1234. local obj15 = Instance.new("BlockMesh")
  1235. obj15.Scale = Vector3.new(0.5, 1, 1)
  1236. obj15.Parent = obj14
  1237.  
  1238. -- 16 - serration
  1239. local obj16 = Instance.new("WedgePart")
  1240. obj16.CFrame = CFrame.new(Vector3.new(19.2763138, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1241. obj16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1242. obj16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1243. obj16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1244. obj16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1245. obj16.Material = Enum.Material.Metal
  1246. obj16.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1247. obj16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1248. obj16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1249. obj16.Anchored = true
  1250. obj16.BrickColor = BrickColor.new("Lily white")
  1251. obj16.Friction = 0.30000001192093
  1252. obj16.Name = "serration"
  1253. obj16.Parent = obj1
  1254.  
  1255. -- 17 - Mesh
  1256. local obj17 = Instance.new("BlockMesh")
  1257. obj17.Scale = Vector3.new(0.5, 1, 1)
  1258. obj17.Parent = obj16
  1259.  
  1260. -- 18 - serration
  1261. local obj18 = Instance.new("WedgePart")
  1262. obj18.CFrame = CFrame.new(Vector3.new(19.3863068, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1263. obj18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1264. obj18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1265. obj18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1266. obj18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1267. obj18.Material = Enum.Material.Metal
  1268. obj18.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1269. obj18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1270. obj18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1271. obj18.Anchored = true
  1272. obj18.BrickColor = BrickColor.new("Lily white")
  1273. obj18.Friction = 0.30000001192093
  1274. obj18.Name = "serration"
  1275. obj18.Parent = obj1
  1276.  
  1277. -- 19 - Mesh
  1278. local obj19 = Instance.new("BlockMesh")
  1279. obj19.Scale = Vector3.new(0.5, 1, 1)
  1280. obj19.Parent = obj18
  1281.  
  1282. -- 20 - serration
  1283. local obj20 = Instance.new("WedgePart")
  1284. obj20.CFrame = CFrame.new(Vector3.new(19.5963173, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1285. obj20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1286. obj20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1287. obj20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1288. obj20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1289. obj20.Material = Enum.Material.Metal
  1290. obj20.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1291. obj20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1292. obj20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1293. obj20.Anchored = true
  1294. obj20.BrickColor = BrickColor.new("Lily white")
  1295. obj20.Friction = 0.30000001192093
  1296. obj20.Name = "serration"
  1297. obj20.Parent = obj1
  1298.  
  1299. -- 21 - Mesh
  1300. local obj21 = Instance.new("BlockMesh")
  1301. obj21.Scale = Vector3.new(0.5, 1, 1)
  1302. obj21.Parent = obj20
  1303.  
  1304. -- 22 - serration
  1305. local obj22 = Instance.new("WedgePart")
  1306. obj22.CFrame = CFrame.new(Vector3.new(19.1663074, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1307. obj22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1308. obj22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1309. obj22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1310. obj22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1311. obj22.Material = Enum.Material.Metal
  1312. obj22.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1313. obj22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1314. obj22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1315. obj22.Anchored = true
  1316. obj22.BrickColor = BrickColor.new("Lily white")
  1317. obj22.Friction = 0.30000001192093
  1318. obj22.Name = "serration"
  1319. obj22.Parent = obj1
  1320.  
  1321. -- 23 - Mesh
  1322. local obj23 = Instance.new("BlockMesh")
  1323. obj23.Scale = Vector3.new(0.5, 1, 1)
  1324. obj23.Parent = obj22
  1325.  
  1326. -- 24 - serration
  1327. local obj24 = Instance.new("WedgePart")
  1328. obj24.CFrame = CFrame.new(Vector3.new(18.9663048, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1329. obj24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1330. obj24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1331. obj24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1332. obj24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1333. obj24.Material = Enum.Material.Metal
  1334. obj24.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1335. obj24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1336. obj24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1337. obj24.Anchored = true
  1338. obj24.BrickColor = BrickColor.new("Lily white")
  1339. obj24.Friction = 0.30000001192093
  1340. obj24.Name = "serration"
  1341. obj24.Parent = obj1
  1342.  
  1343. -- 25 - Mesh
  1344. local obj25 = Instance.new("BlockMesh")
  1345. obj25.Scale = Vector3.new(0.5, 1, 1)
  1346. obj25.Parent = obj24
  1347.  
  1348. -- 26 - serration
  1349. local obj26 = Instance.new("WedgePart")
  1350. obj26.CFrame = CFrame.new(Vector3.new(18.8562984, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1351. obj26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1352. obj26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1353. obj26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1354. obj26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1355. obj26.Material = Enum.Material.Metal
  1356. obj26.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1357. obj26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1358. obj26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1359. obj26.Anchored = true
  1360. obj26.BrickColor = BrickColor.new("Lily white")
  1361. obj26.Friction = 0.30000001192093
  1362. obj26.Name = "serration"
  1363. obj26.Parent = obj1
  1364.  
  1365. -- 27 - Mesh
  1366. local obj27 = Instance.new("BlockMesh")
  1367. obj27.Scale = Vector3.new(0.5, 1, 1)
  1368. obj27.Parent = obj26
  1369.  
  1370. -- 28 - serration
  1371. local obj28 = Instance.new("WedgePart")
  1372. obj28.CFrame = CFrame.new(Vector3.new(19.0663071, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1373. obj28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1374. obj28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1375. obj28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1376. obj28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1377. obj28.Material = Enum.Material.Metal
  1378. obj28.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1379. obj28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1380. obj28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1381. obj28.Anchored = true
  1382. obj28.BrickColor = BrickColor.new("Lily white")
  1383. obj28.Friction = 0.30000001192093
  1384. obj28.Name = "serration"
  1385. obj28.Parent = obj1
  1386.  
  1387. -- 29 - Mesh
  1388. local obj29 = Instance.new("BlockMesh")
  1389. obj29.Scale = Vector3.new(0.5, 1, 1)
  1390. obj29.Parent = obj28
  1391.  
  1392. -- 30 - knifetip1
  1393. local obj30 = Instance.new("WedgePart")
  1394. obj30.CFrame = CFrame.new(Vector3.new(18.0163059, 6.14381599, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1395. obj30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1396. obj30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1397. obj30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1398. obj30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1399. obj30.Material = Enum.Material.Metal
  1400. obj30.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1401. obj30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1402. obj30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1403. obj30.Anchored = true
  1404. obj30.BrickColor = BrickColor.new("Lily white")
  1405. obj30.Friction = 0.30000001192093
  1406. obj30.Name = "knifetip1"
  1407. obj30.Parent = obj1
  1408.  
  1409. -- 31 - Mesh
  1410. local obj31 = Instance.new("BlockMesh")
  1411. obj31.Scale = Vector3.new(0.5, 1, 1)
  1412. obj31.Parent = obj30
  1413.  
  1414. -- 32 - redstuff
  1415. local obj32 = Instance.new("Part")
  1416. obj32.CFrame = CFrame.new(Vector3.new(19.9470005, 5.9749999, -134.399994)) * CFrame.Angles(-0, 0, -0)
  1417. obj32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1418. obj32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1419. obj32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1420. obj32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1421. obj32.Material = Enum.Material.SmoothPlastic
  1422. obj32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1423. obj32.Size = Vector3.new(0.0500000007, 0.360000014, 0.360000014)
  1424. obj32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1425. obj32.BrickColor = BrickColor.new("Institutional white")
  1426. obj32.Friction = 0.30000001192093
  1427. obj32.Shape = Enum.PartType.Cylinder
  1428. obj32.Name = "redstuff"
  1429. obj32.Anchored = true
  1430. obj32.Parent = obj1
  1431.  
  1432.  
  1433. -- 33 - redstuff
  1434. local obj33 = Instance.new("Part")
  1435. obj33.CFrame = CFrame.new(Vector3.new(18.9800053, 6.1400156, -134.404984)) * CFrame.Angles(-0, 0, -0)
  1436. obj33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1437. obj33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1438. obj33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1439. obj33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1440. obj33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1441. obj33.Material = Enum.Material.SmoothPlastic
  1442. obj33.Size = Vector3.new(1.81999993, 0.100000001, 0.0500000007)
  1443. obj33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1444. obj33.BrickColor = BrickColor.new("Institutional white")
  1445. obj33.Friction = 0.30000001192093
  1446. obj33.Shape = Enum.PartType.Block
  1447. obj33.Name = "redstuff"
  1448. obj33.Anchored = true
  1449. obj33.Parent = obj1
  1450.  
  1451. -- 34 - redstuff
  1452. local obj34 = Instance.new("Part")
  1453. obj34.CFrame = CFrame.new(Vector3.new(19.9470005, 6.32499981, -134.399994)) * CFrame.Angles(-0, 0, -0)
  1454. obj34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1455. obj34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1456. obj34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1457. obj34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1458. obj34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1459. obj34.Size = Vector3.new(0.0500000007, 0.360000014, 0.360000014)
  1460. obj34.Material = Enum.Material.SmoothPlastic
  1461. obj34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1462. obj34.BrickColor = BrickColor.new("Institutional white")
  1463. obj34.Friction = 0.30000001192093
  1464. obj34.Shape = Enum.PartType.Cylinder
  1465. obj34.Name = "redstuff"
  1466. obj34.Anchored = true
  1467. obj34.Parent = obj1
  1468.  
  1469. -- 35 - redstuff
  1470. local obj35 = Instance.new("Part")
  1471. obj35.CFrame = CFrame.new(Vector3.new(19.8830166, 6.14501476, -134.399963)) * CFrame.Angles(-0, 0, -0)
  1472. obj35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1473. obj35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1474. obj35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1475. obj35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1476. obj35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1477. obj35.Size = Vector3.new(0.0500000007, 0.319999993, 0.319999993)
  1478. obj35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1479. obj35.BrickColor = BrickColor.new("Institutional white")
  1480. obj35.Friction = 0.30000001192093
  1481. obj35.Shape = Enum.PartType.Cylinder
  1482. obj35.Material = Enum.Material.SmoothPlastic
  1483. obj35.Name = "redstuff"
  1484. obj35.Anchored = true
  1485. obj35.Parent = obj1
  1486.  
  1487. -- 36 - redstuff
  1488. local obj36 = Instance.new("Part")
  1489. obj36.CFrame = CFrame.new(Vector3.new(20.9430103, 6.14501476, -134.399963)) * CFrame.Angles(-0, 0, -0)
  1490. obj36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1491. obj36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1492. obj36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1493. obj36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1494. obj36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1495. obj36.Material = Enum.Material.SmoothPlastic
  1496. obj36.Size = Vector3.new(0.0500000007, 0.25999999, 0.25999999)
  1497. obj36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1498. obj36.BrickColor = BrickColor.new("Institutional white")
  1499. obj36.Friction = 0.30000001192093
  1500. obj36.Shape = Enum.PartType.Cylinder
  1501. obj36.Name = "redstuff"
  1502. obj36.Anchored = true
  1503. obj36.Parent = obj1
  1504.  
  1505. -- 37 - redstuff
  1506. local obj37 = Instance.new("WedgePart")
  1507. obj37.CFrame = CFrame.new(Vector3.new(18.066288, 6.14381599, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1508. obj37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1509. obj37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1510. obj37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1511. obj37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1512. obj37.Material = Enum.Material.SmoothPlastic
  1513. obj37.Size = Vector3.new(0.0500000007, 0.0700000003, 0.0700000003)
  1514. obj37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1515. obj37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1516. obj37.Anchored = true
  1517. obj37.BrickColor = BrickColor.new("Institutional white")
  1518. obj37.Friction = 0.30000001192093
  1519. obj37.Name = "redstuff"
  1520. obj37.Anchored = true
  1521. obj37.Parent = obj1
  1522.  
  1523. -- 38 - redstuff
  1524. local obj38 = Instance.new("Part")
  1525. obj38.CFrame = CFrame.new(Vector3.new(20.1230125, 6.14501476, -134.399979)) * CFrame.Angles(-0, 0, -0)
  1526. obj38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1527. obj38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1528. obj38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1529. obj38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1530. obj38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1531. obj38.Material = Enum.Material.SmoothPlastic
  1532. obj38.Size = Vector3.new(0.0500000007, 0.25999999, 0.25999999)
  1533. obj38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1534. obj38.BrickColor = BrickColor.new("Institutional white")
  1535. obj38.Friction = 0.30000001192093
  1536. obj38.Shape = Enum.PartType.Cylinder
  1537. obj38.Name = "redstuff"
  1538. obj38.Anchored = true
  1539. obj38.Parent = obj1
  1540.  
  1541. local function recurse(objnum)
  1542. table.insert(knifeparts,{objnum,objnum.Parent})
  1543. for i,v in pairs(objnum:GetChildren()) do
  1544. recurse(v)
  1545. end
  1546. end
  1547.  
  1548. recurse(obj1)
  1549.  
  1550. local audio = Instance.new('Sound',knife)
  1551. audio.Volume = 2
  1552.  
  1553. local audio2 = Instance.new('Sound',knife)
  1554. audio2.Volume = 2
  1555.  
  1556. local holdpart = Instance.new("Part")
  1557. holdpart.Parent = me
  1558. holdpart.Size = Vector3.new(0.4, 0.4, 0.2)
  1559. holdpart.Position = me.Head.Position + Vector3.new(0, 1, 0)
  1560. holdpart.BrickColor = BrickColor.new("Burnt Sienna")
  1561.  
  1562. local previous = nil
  1563. for i,v in pairs(obj1:GetChildren()) do
  1564. if v:IsA('BasePart') then
  1565. if previous then
  1566. local weld = Instance.new('Weld',v)
  1567. weld.Part0 = v
  1568. weld.Part1 = previous
  1569. weld.C0 = v.CFrame:inverse() * previous.CFrame
  1570. previous.Anchored = false
  1571. previous.CanCollide = false
  1572. local vee = v
  1573. weld.AncestryChanged:connect(function(mez,par)
  1574. wait()
  1575. weld.Parent = vee
  1576. end)
  1577. end
  1578. previous = v
  1579. end
  1580. end
  1581. previous.Anchored = false
  1582. previous.CanCollide = false
  1583.  
  1584. local holdpartweld = Instance.new("Weld", me.Torso)
  1585. holdpartweld.Part0 = me.Torso
  1586. holdpartweld.Part1 = holdpart
  1587. holdpartweld.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-1, -0.8, 0.15)
  1588.  
  1589. holdpartweld.AncestryChanged:connect(function(mez,par)
  1590. if par ~= me.Torso then
  1591. wait()
  1592. holdpartweld.Parent = me.Torso
  1593. end
  1594. end)
  1595.  
  1596. local knifeweld = Instance.new('Weld',me.Torso)
  1597. knifeweld.Part0 = me.Torso
  1598. knifeweld.Part1 = obj2
  1599. knifeweld.C1 = CFrame.Angles(0,math.rad(90),0) * CFrame.new(1, 0.8, 0.55)
  1600. knifeweld.AncestryChanged:connect(function(mez,par)
  1601. if par ~= me.Torso then
  1602. wait()
  1603. knifeweld.Parent = me.Torso
  1604. end
  1605. end)
  1606. local ScreenGui = Instance.new("ScreenGui")
  1607. local CustomizeGui = Instance.new("Frame")
  1608. local Customize = Instance.new("TextLabel")
  1609. local ClosestColor = Instance.new("TextLabel")
  1610. local Line = Instance.new("TextLabel")
  1611. local Color = Instance.new("ImageLabel")
  1612. local Close = Instance.new("TextButton")
  1613. local RedHue = Instance.new("TextLabel")
  1614. local GreenHue = Instance.new("TextLabel")
  1615. local RedInput = Instance.new("TextBox")
  1616. local BlueHue = Instance.new("TextLabel")
  1617. local GreenInput = Instance.new("TextBox")
  1618. local TransInput = Instance.new("TextBox")
  1619. local BlueInput = Instance.new("TextBox")
  1620. local Message = Instance.new("TextLabel")
  1621. local Message2 = Instance.new("TextLabel")
  1622. local TrailTransparency = Instance.new("TextLabel")
  1623. local TrailInput = Instance.new("TextBox")
  1624. local MusicOption = Instance.new("TextButton")
  1625. local ScreenOption = Instance.new("TextButton")
  1626. local ScreenOptionTxt = Instance.new("TextLabel")
  1627. local MusicOptionTxt = Instance.new("TextLabel")
  1628.  
  1629. -- Properties
  1630.  
  1631. ScreenGui.Parent = playergui
  1632.  
  1633. CustomizeGui.Name = "CustomizeGui"
  1634. CustomizeGui.Parent = ScreenGui
  1635. CustomizeGui.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  1636. CustomizeGui.BackgroundTransparency = 0.5
  1637. CustomizeGui.BorderColor3 = Color3.new(0, 0, 0)
  1638. CustomizeGui.BorderSizePixel = 2
  1639. CustomizeGui.Position = UDim2.new(0, 0, 0.5, 0)
  1640. CustomizeGui.Size = UDim2.new(0.449999988, 0, 0.449999988, 0)
  1641.  
  1642. Customize.Name = "Customize"
  1643. Customize.Parent = CustomizeGui
  1644. Customize.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  1645. Customize.BackgroundTransparency = 0.75
  1646. Customize.BorderSizePixel = 0
  1647. Customize.Size = UDim2.new(1, 0, 0.200000003, 0)
  1648. Customize.FontSize = Enum.FontSize.Size28
  1649. Customize.Text = "ACCENT COLOR CUSTOMIZATION"
  1650. Customize.TextColor3 = Color3.new(1, 1, 1)
  1651. Customize.TextScaled = true
  1652. Customize.TextSize = 25
  1653. Customize.TextStrokeTransparency = 0.5
  1654. Customize.TextWrapped = true
  1655.  
  1656. ClosestColor.Name = "ClosestColor"
  1657. ClosestColor.Parent = CustomizeGui
  1658. ClosestColor.BackgroundColor3 = Color3.new(1, 1, 1)
  1659. ClosestColor.BackgroundTransparency = 1
  1660. ClosestColor.Position = UDim2.new(0, 0, 0.850000024, 0)
  1661. ClosestColor.Size = UDim2.new(1, 0, 0.150000006, 0)
  1662. ClosestColor.Font = Enum.Font.SourceSansLight
  1663. ClosestColor.FontSize = Enum.FontSize.Size32
  1664. ClosestColor.Text = "Your color is closest to Institutional White"
  1665. ClosestColor.TextColor3 = Color3.new(1, 1, 1)
  1666. ClosestColor.TextSize = 30
  1667. ClosestColor.TextStrokeTransparency = 0.5
  1668.  
  1669. Line.Name = "Line"
  1670. Line.Parent = CustomizeGui
  1671. Line.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  1672. Line.BackgroundTransparency = 0.5
  1673. Line.BorderColor3 = Color3.new(0, 0, 0)
  1674. Line.BorderSizePixel = 0
  1675. Line.Position = UDim2.new(0, 0, 0.200000003, 0)
  1676. Line.Size = UDim2.new(1, 0, 0.0299999993, 0)
  1677. Line.Font = Enum.Font.SourceSans
  1678. Line.FontSize = Enum.FontSize.Size14
  1679. Line.Text = " "
  1680. Line.TextSize = 14
  1681.  
  1682. Color.Name = "Color"
  1683. Color.Parent = CustomizeGui
  1684. Color.BackgroundColor3 = Color3.new(1, 1, 1)
  1685. Color.BorderSizePixel = 0
  1686. Color.Position = UDim2.new(0.699999988, 0, 0.419999987, 0)
  1687. Color.Size = UDim2.new(0.300000012, 0, 0.300000012, 0)
  1688. Color.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1689.  
  1690. MusicOption.Parent = CustomizeGui
  1691. MusicOption.Name = "MusicOption"
  1692. MusicOption.BackgroundColor3 = Color3.new(0, 1, 0)
  1693. MusicOption.BorderSizePixel = 1
  1694. MusicOption.Position = UDim2.new(0.01, 0, -0.12, 0)
  1695. MusicOption.Size = UDim2.new(0.05, 0, 0.1, 0)
  1696. MusicOption.Text = ""
  1697. MusicOption.BackgroundTransparency = 0.5
  1698.  
  1699. ScreenOption.Parent = CustomizeGui
  1700. ScreenOption.Name = "ScreenOption"
  1701. ScreenOption.BackgroundColor3 = Color3.new(0, 1, 0)
  1702. ScreenOption.BorderSizePixel = 1
  1703. ScreenOption.Position = UDim2.new(0.01, 0, -0.23, 0)
  1704. ScreenOption.Size = UDim2.new(0.05, 0, 0.1, 0)
  1705. ScreenOption.Text = ""
  1706. ScreenOption.BackgroundTransparency = 0.5
  1707.  
  1708. ScreenOptionTxt.Name = "ScreenOptionTxt"
  1709. ScreenOptionTxt.Parent = CustomizeGui
  1710. ScreenOptionTxt.BackgroundColor3 = Color3.new(1, 1, 1)
  1711. ScreenOptionTxt.BackgroundTransparency = 1
  1712. ScreenOptionTxt.Position = UDim2.new(0.07, 0, -0.23, 0)
  1713. ScreenOptionTxt.Size = UDim2.new(1, 0, 0.07, 0)
  1714. ScreenOptionTxt.Font = Enum.Font.SourceSans
  1715. ScreenOptionTxt.FontSize = Enum.FontSize.Size24
  1716. ScreenOptionTxt.Text = "Psychopath Red Filter"
  1717. ScreenOptionTxt.TextColor3 = Color3.new(1, 1, 1)
  1718. ScreenOptionTxt.TextScaled = true
  1719. ScreenOptionTxt.TextSize = 20
  1720. ScreenOptionTxt.TextStrokeColor3 = Color3.new(0, 0, 0)
  1721. ScreenOptionTxt.TextStrokeTransparency = 0.5
  1722. ScreenOptionTxt.TextWrapped = true
  1723. ScreenOptionTxt.TextXAlignment = "Left"
  1724.  
  1725. MusicOptionTxt.Name = "MusicOptionTxt"
  1726. MusicOptionTxt.Parent = CustomizeGui
  1727. MusicOptionTxt.BackgroundColor3 = Color3.new(1, 1, 1)
  1728. MusicOptionTxt.BackgroundTransparency = 1
  1729. MusicOptionTxt.Position = UDim2.new(0.07, 0, -0.12, 0)
  1730. MusicOptionTxt.Size = UDim2.new(1, 0, 0.07, 0)
  1731. MusicOptionTxt.Font = Enum.Font.SourceSans
  1732. MusicOptionTxt.FontSize = Enum.FontSize.Size24
  1733. MusicOptionTxt.Text = "Psychopath Background Music"
  1734. MusicOptionTxt.TextColor3 = Color3.new(1, 1, 1)
  1735. MusicOptionTxt.TextScaled = true
  1736. MusicOptionTxt.TextSize = 20
  1737. MusicOptionTxt.TextStrokeColor3 = Color3.new(0, 0, 0)
  1738. MusicOptionTxt.TextStrokeTransparency = 0.5
  1739. MusicOptionTxt.TextWrapped = true
  1740. MusicOptionTxt.TextXAlignment = "Left"
  1741.  
  1742. Close.Name = "Close"
  1743. Close.Parent = CustomizeGui
  1744. Close.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  1745. Close.BackgroundTransparency = 0.5
  1746. Close.BorderColor3 = Color3.new(0, 0, 0)
  1747. Close.BorderSizePixel = 2
  1748. Close.Position = UDim2.new(1.005, 0, 0, 0)
  1749. Close.Size = UDim2.new(0.100000001, 0, 0.2, 0)
  1750. Close.Font = Enum.Font.SourceSans
  1751. Close.FontSize = Enum.FontSize.Size14
  1752. Close.Text = "X"
  1753. Close.TextColor3 = Color3.new(1, 1, 1)
  1754. Close.TextScaled = true
  1755. Close.TextSize = 14
  1756. Close.TextStrokeTransparency = 0
  1757. Close.TextWrapped = true
  1758.  
  1759. RedHue.Name = "RedHue"
  1760. RedHue.Parent = CustomizeGui
  1761. RedHue.BackgroundColor3 = Color3.new(1, 1, 1)
  1762. RedHue.BackgroundTransparency = 1
  1763. RedHue.Position = UDim2.new(0.100000001, 0, 0.400000006, 0)
  1764. RedHue.Size = UDim2.new(0.300000012, 0, 0.100000001, 0)
  1765. RedHue.Font = Enum.Font.SourceSans
  1766. RedHue.FontSize = Enum.FontSize.Size24
  1767. RedHue.Text = "RED Hue Value: "
  1768. RedHue.TextColor3 = Color3.new(1, 1, 1)
  1769. RedHue.TextScaled = true
  1770. RedHue.TextSize = 20
  1771. RedHue.TextStrokeColor3 = Color3.new(1, 0, 0)
  1772. RedHue.TextStrokeTransparency = 0.75
  1773. RedHue.TextWrapped = true
  1774.  
  1775. GreenHue.Name = "GreenHue"
  1776. GreenHue.Parent = CustomizeGui
  1777. GreenHue.BackgroundColor3 = Color3.new(1, 1, 1)
  1778. GreenHue.BackgroundTransparency = 1
  1779. GreenHue.Position = UDim2.new(0.100000001, 0, 0.5, 0)
  1780. GreenHue.Size = UDim2.new(0.300000012, 0, 0.100000001, 0)
  1781. GreenHue.Font = Enum.Font.SourceSans
  1782. GreenHue.FontSize = Enum.FontSize.Size24
  1783. GreenHue.Text = "GREEN Hue Value:"
  1784. GreenHue.TextColor3 = Color3.new(1, 1, 1)
  1785. GreenHue.TextScaled = true
  1786. GreenHue.TextSize = 20
  1787. GreenHue.TextStrokeColor3 = Color3.new(0, 1, 0)
  1788. GreenHue.TextStrokeTransparency = 0.75
  1789. GreenHue.TextWrapped = true
  1790.  
  1791. RedInput.Name = "RedInput"
  1792. RedInput.Parent = CustomizeGui
  1793. RedInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  1794. RedInput.BackgroundTransparency = 0.5
  1795. RedInput.BorderSizePixel = 0
  1796. RedInput.Position = UDim2.new(0.419999987, 0, 0.425000007, 0)
  1797. RedInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  1798. RedInput.Font = Enum.Font.SourceSans
  1799. RedInput.FontSize = Enum.FontSize.Size14
  1800. RedInput.Text = "255"
  1801. RedInput.TextColor3 = Color3.new(1, 1, 1)
  1802. RedInput.TextSize = 14
  1803. RedInput.TextStrokeTransparency = 0
  1804.  
  1805. BlueHue.Name = "BlueHue"
  1806. BlueHue.Parent = CustomizeGui
  1807. BlueHue.BackgroundColor3 = Color3.new(1, 1, 1)
  1808. BlueHue.BackgroundTransparency = 1
  1809. BlueHue.Position = UDim2.new(0.100000001, 0, 0.600000024, 0)
  1810. BlueHue.Size = UDim2.new(0.300000012, 0, 0.100000001, 0)
  1811. BlueHue.Font = Enum.Font.SourceSans
  1812. BlueHue.FontSize = Enum.FontSize.Size24
  1813. BlueHue.Text = "BLUE Hue Value:"
  1814. BlueHue.TextColor3 = Color3.new(1, 1, 1)
  1815. BlueHue.TextScaled = true
  1816. BlueHue.TextSize = 20
  1817. BlueHue.TextStrokeColor3 = Color3.new(0, 0, 1)
  1818. BlueHue.TextStrokeTransparency = 0.75
  1819. BlueHue.TextWrapped = true
  1820.  
  1821. TrailTransparency.Name = "TrailTransparency"
  1822. TrailTransparency.Parent = CustomizeGui
  1823. TrailTransparency.BackgroundColor3 = Color3.new(1, 1, 1)
  1824. TrailTransparency.BackgroundTransparency = 1
  1825. TrailTransparency.Position = UDim2.new(0.090000001, 0, 0.700000024, 0)
  1826. TrailTransparency.Size = UDim2.new(0.310000012, 0, 0.100000001, 0)
  1827. TrailTransparency.Font = Enum.Font.SourceSans
  1828. TrailTransparency.FontSize = Enum.FontSize.Size24
  1829. TrailTransparency.Text = "Trail Transparency:"
  1830. TrailTransparency.TextColor3 = Color3.new(1, 1, 1)
  1831. TrailTransparency.TextScaled = true
  1832. TrailTransparency.TextSize = 20
  1833. TrailTransparency.TextStrokeColor3 = Color3.new(0, 0, 0)
  1834. TrailTransparency.TextWrapped = true
  1835.  
  1836. GreenInput.Name = "GreenInput"
  1837. GreenInput.Parent = CustomizeGui
  1838. GreenInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  1839. GreenInput.BackgroundTransparency = 0.5
  1840. GreenInput.BorderSizePixel = 0
  1841. GreenInput.Position = UDim2.new(0.419999987, 0, 0.524999976, 0)
  1842. GreenInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  1843. GreenInput.Font = Enum.Font.SourceSans
  1844. GreenInput.FontSize = Enum.FontSize.Size14
  1845. GreenInput.Text = "255"
  1846. GreenInput.TextColor3 = Color3.new(1, 1, 1)
  1847. GreenInput.TextSize = 14
  1848. GreenInput.TextStrokeTransparency = 0
  1849.  
  1850. TransInput.Name = "TransInput"
  1851. TransInput.Parent = CustomizeGui
  1852. TransInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  1853. TransInput.BackgroundTransparency = 0.5
  1854. TransInput.BorderSizePixel = 0
  1855. TransInput.Position = UDim2.new(0.419999987, 0, 0.725000024, 0)
  1856. TransInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  1857. TransInput.Font = Enum.Font.SourceSans
  1858. TransInput.FontSize = Enum.FontSize.Size14
  1859. TransInput.Text = "50"
  1860. TransInput.TextColor3 = Color3.new(1, 1, 1)
  1861. TransInput.TextSize = 14
  1862. TransInput.TextStrokeTransparency = 0
  1863.  
  1864. BlueInput.Name = "BlueInput"
  1865. BlueInput.Parent = CustomizeGui
  1866. BlueInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  1867. BlueInput.BackgroundTransparency = 0.5
  1868. BlueInput.BorderSizePixel = 0
  1869. BlueInput.Position = UDim2.new(0.419999987, 0, 0.625, 0)
  1870. BlueInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  1871. BlueInput.Font = Enum.Font.SourceSans
  1872. BlueInput.FontSize = Enum.FontSize.Size14
  1873. BlueInput.Text = "255"
  1874. BlueInput.TextColor3 = Color3.new(1, 1, 1)
  1875. BlueInput.TextSize = 14
  1876. BlueInput.TextStrokeTransparency = 0
  1877.  
  1878. Message.Name = "Message"
  1879. Message.Parent = CustomizeGui
  1880. Message.BackgroundColor3 = Color3.new(1, 1, 1)
  1881. Message.BackgroundTransparency = 1
  1882. Message.Position = UDim2.new(0, 0, 0.2500004, 0)
  1883. Message.Size = UDim2.new(1, 0, 0.100000006, 0)
  1884. Message.Font = Enum.Font.SourceSans
  1885. Message.FontSize = Enum.FontSize.Size18
  1886. Message.Text = "|| Inputs must be values ||"
  1887. Message.TextColor3 = Color3.new(1, 1, 1)
  1888. Message.TextScaled = true
  1889. Message.TextSize = 15
  1890. Message.TextStrokeTransparency = 0.75
  1891. Message.TextWrapped = true
  1892.  
  1893. local attun = Instance.new("Attachment", knife)
  1894. attun.Position = Vector3.new(0, 0.1, -1.75)
  1895. local atdos = Instance.new("Attachment", knife)
  1896. atdos.Position = Vector3.new(0, -0.1, 0.5)
  1897. local trail = Instance.new("Trail", knife)
  1898. trail.LightEmission = 0.5
  1899. trail.Attachment0 = attun
  1900. trail.Attachment1 = atdos
  1901. trail.Lifetime = 0.175
  1902. trail.MinLength = 0
  1903. trail.Enabled = false
  1904.  
  1905. function updatez()
  1906. local rc = tonumber(RedInput.Text)
  1907. local gc = tonumber(GreenInput.Text)
  1908. local bc = tonumber(BlueInput.Text)
  1909. local tcupd = tonumber(TransInput.Text)
  1910. if rc == nil then
  1911. rc = 0
  1912. end
  1913. if gc == nil then
  1914. gc = 0
  1915. end
  1916. if bc == nil then
  1917. bc = 0
  1918. end
  1919. if tcupd == nil then
  1920. tcupd = 0
  1921. end
  1922. local tc = tcupd/100
  1923. Color.BackgroundColor3 = Color3.fromRGB(rc,gc,bc)
  1924. ClosestColor.Text = "Your color is closest to "..tostring(BrickColor.new(Color3.fromRGB(rc,gc,bc)))
  1925. obj32.Color = Color3.fromRGB(rc,gc,bc)
  1926. obj33.Color = Color3.fromRGB(rc,gc,bc)
  1927. obj34.Color = Color3.fromRGB(rc,gc,bc)
  1928. obj35.Color = Color3.fromRGB(rc,gc,bc)
  1929. obj36.Color = Color3.fromRGB(rc,gc,bc)
  1930. obj37.Color = Color3.fromRGB(rc,gc,bc)
  1931. obj38.Color = Color3.fromRGB(rc,gc,bc)
  1932. trail.Color = ColorSequence.new(Color3.fromRGB(rc, gc, bc))
  1933. trail.Transparency = NumberSequence.new(tc)
  1934. TrailTransparency.TextStrokeTransparency = tc
  1935. end
  1936.  
  1937. RedInput.Changed:connect(function(val)
  1938. if val == "Text" and tonumber(RedInput.Text) then
  1939. RedInput.Text = tostring(tonumber(RedInput.Text))
  1940. if tonumber(RedInput.Text) > 255 then
  1941. RedInput.Text = '255'
  1942. end
  1943. elseif val == "Text" then
  1944. RedInput.Text = ""
  1945. end
  1946. updatez()
  1947. end)
  1948. GreenInput.Changed:connect(function(val)
  1949. if val == "Text" and tonumber(GreenInput.Text) then
  1950. GreenInput.Text = tostring(tonumber(GreenInput.Text))
  1951. if tonumber(GreenInput.Text) > 255 then
  1952. GreenInput.Text = '255'
  1953. end
  1954. elseif val == "Text" then
  1955. GreenInput.Text = ""
  1956. end
  1957. updatez()
  1958. end)
  1959. BlueInput.Changed:connect(function(val)
  1960. if val == "Text" and tonumber(BlueInput.Text) then
  1961. BlueInput.Text = tostring(tonumber(BlueInput.Text))
  1962. if tonumber(BlueInput.Text) > 255 then
  1963. BlueInput.Text = '255'
  1964. end
  1965. elseif val == "Text" then
  1966. BlueInput.Text = ""
  1967. end
  1968. updatez()
  1969. end)
  1970. TransInput.Changed:connect(function(val)
  1971. if val == "Text" and tonumber(TransInput.Text) then
  1972. TransInput.Text = tostring(tonumber(TransInput.Text))
  1973. if tonumber(TransInput.Text) > 100 then
  1974. TransInput.Text = '100'
  1975. end
  1976. elseif val == "Text" then
  1977. TransInput.Text = ""
  1978. end
  1979. updatez()
  1980. end)
  1981.  
  1982. Close.MouseButton1Click:connect(function()
  1983. if lerpz == false then
  1984. lerpz = true
  1985. if Close.Text ~= "+" then
  1986. CustomizeGui:TweenPosition(UDim2.new(-0.45,0,0.5,0,Enum.EasingDirection.Out,Enum.EasingStyle.Quint,2))
  1987. for i=1,10 do
  1988. Close.TextTransparency = i/10
  1989. Close.TextStrokeTransparency = i/10
  1990. wait(0.01)
  1991. end
  1992. Close.Text = "+"
  1993. for i=1,10 do
  1994. Close.TextTransparency = (10-i+1)/10
  1995. Close.TextStrokeTransparency = (10-i+1)/10
  1996. wait(0.01)
  1997. end
  1998. lerpz = false
  1999. else
  2000. CustomizeGui:TweenPosition(UDim2.new(0,0,0.5,0,Enum.EasingDirection.Out,Enum.EasingStyle.Quint,2))
  2001. for i=1,10 do
  2002. Close.TextTransparency = i/10
  2003. Close.TextStrokeTransparency = i/10
  2004. wait(0.01)
  2005. end
  2006. Close.Text = "X"
  2007. for i=1,10 do
  2008. Close.TextTransparency = (10-i+1)/10
  2009. Close.TextStrokeTransparency = (10-i+1)/10
  2010. wait(0.01)
  2011. end
  2012. lerpz = false
  2013. end
  2014. end
  2015. end)
  2016.  
  2017. MusicOption.MouseButton1Click:connect(function()
  2018. if canbackgroundmusic == true then
  2019. canbackgroundmusic = false
  2020. MusicOption.BackgroundColor3 = Color3.new(1, 0, 0)
  2021. else
  2022. canbackgroundmusic = true
  2023. MusicOption.BackgroundColor3 = Color3.new(0, 1, 0)
  2024. end
  2025. end)
  2026.  
  2027. ScreenOption.MouseButton1Click:connect(function()
  2028. if cancolorfilter == true then
  2029. cancolorfilter = false
  2030. ScreenOption.BackgroundColor3 = Color3.new(1, 0, 0)
  2031. else
  2032. cancolorfilter = true
  2033. ScreenOption.BackgroundColor3 = Color3.new(0, 1, 0)
  2034. end
  2035. end)
  2036.  
  2037. function equip()
  2038. local doit = coroutine.wrap(function()
  2039. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') then
  2040. acting = true
  2041. local arm = me["Right Arm"]
  2042. local arm2 = me["Left Arm"]
  2043. local tors = me.Torso
  2044. local weld = Instance.new('Weld',arm)
  2045. weld.Part0 = arm
  2046. weld.Part1 = tors
  2047. weld.C0 = CFrame.new(-1.5,0,0)
  2048. local weld2 = Instance.new("Weld", arm2)
  2049. weld2.Part0 = arm2
  2050. weld2.Part1 = tors
  2051. weld2.C0 = CFrame.new(1.5, 0, 0)
  2052. wait(0.001)
  2053. for i = 0,1,0.1 do
  2054. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  2055. weld.C0 = weld.C0:lerp(CFrame.new(-0.2,0.2,-0.5)*CFrame.Angles(0,-3.1,0.9),i)
  2056. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0.6, 0) * CFrame.Angles(0,0,0.5),i)
  2057. wait(0.001)
  2058. end
  2059. wait(0.15)
  2060. trail.Enabled = true
  2061. for i = 0,1,0.1 do
  2062. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  2063. weld.C0 = weld.C0:lerp(CFrame.new(-0.5,2,0)*CFrame.Angles(0,0,-1.55),i)
  2064. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0, 0), i)
  2065. wait(0.001)
  2066. end
  2067. trail.Enabled = false
  2068. wait(0.2)
  2069. for i = 0,1,0.1 do
  2070. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  2071. weld.C0 = weld.C0:lerp(CFrame.new(-1.5,0,0),i)
  2072. wait(0.001)
  2073. end
  2074. weld:Destroy()
  2075. weld2:Remove()
  2076. if tors ~= nil then
  2077. rightshoulderz:Clone().Parent = me.Torso
  2078. leftshoulderz:Clone().Parent = me.Torso
  2079. end
  2080. end
  2081. acting = false
  2082. end)
  2083. doit()
  2084. end
  2085.  
  2086. function kysnigga()
  2087. if kyssing == true then return end
  2088. kyssing = true
  2089. acting = true
  2090. decearingTHING = math.random(1, 100)
  2091. if decearingTHING == 4 then
  2092. decearingEGG = Instance.new("Sound", me.Torso)
  2093. decearingEGG.SoundId = "rbxassetid://138084557"
  2094. decearingEGG.PlaybackSpeed = math.random(10, 12) / 10
  2095. decearingEGG.TimePosition = 0.2
  2096. decearingEGG:Play()
  2097. end
  2098. me.Humanoid.WalkSpeed = 0
  2099. me.Humanoid.JumpPower = 0
  2100.  
  2101. local rightarm = Instance.new("Weld", me.Torso)
  2102. rightarm.Part0 = me.Torso
  2103. rightarm.Part1 = me["Right Arm"]
  2104. rightarm.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(1.5, 0, 0)
  2105.  
  2106. local leftarm = Instance.new("Weld", me.Torso)
  2107. leftarm.Part0 = me.Torso
  2108. leftarm.Part1 = me["Left Arm"]
  2109. leftarm.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-1.5, 0, 0)
  2110.  
  2111. local tors = Instance.new("Weld", me.HumanoidRootPart)
  2112. tors.Part0 = me.HumanoidRootPart
  2113. tors.Part1 = me.Torso
  2114. tors.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0, 0, 0)
  2115.  
  2116. local rightleg = Instance.new("Weld", me.Torso)
  2117. rightleg.Part0 = me.Torso
  2118. rightleg.Part1 = me["Right Leg"]
  2119. rightleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0.5, -2, 0)
  2120.  
  2121. local leftleg = Instance.new("Weld", me.Torso)
  2122. leftleg.Part0 = me.Torso
  2123. leftleg.Part1 = me["Left Leg"]
  2124. leftleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-0.5, -2, 0)
  2125.  
  2126. for i = 0, 1, 0.03 do
  2127. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-10), 0, 0), i)
  2128. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, 0), i)
  2129. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, 0), i)
  2130. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), i)
  2131. wait()
  2132. end
  2133. for i = 0, 1, 0.03 do
  2134. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(5), 0, 0), i)
  2135. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, 0.15) * CFrame.Angles(math.rad(-95), 0, 0), i)
  2136. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, 0.15) * CFrame.Angles(math.rad(-95), 0, 0), i)
  2137. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1, 0.3, -1.5) * CFrame.Angles(math.rad(90), 0, math.rad(-35)), i)
  2138. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1, 0.3, -1.5) * CFrame.Angles(math.rad(90), 0, math.rad(35)), i)
  2139. knifeweld.C1 = knifeweld.C1:lerp(CFrame.new(1.35, 0, 1) * CFrame.Angles(1.55, math.rad(-180), 1), i)
  2140. wait()
  2141. end
  2142. local bleedzer = Instance.new('Part',me.Torso)
  2143. bleedzer.CFrame = me.Torso.CFrame
  2144. bleedzer.Size = Vector3.new(0.1,0.1,0.1)
  2145. bleedzer.Transparency = 1
  2146. bleedzer.CanCollide = false
  2147. local weld = Instance.new('Weld',bleedzer)
  2148. weld.Part0 = bleedzer
  2149. weld.Part1 = me.Torso
  2150. weld.C0= CFrame.new(0,0,0)*CFrame.Angles(math.rad(-90),0,0)
  2151. local woodpekker = coroutine.wrap(function()
  2152. bleed(bleedzer)
  2153. end)
  2154. woodpekker()
  2155. audio.SoundId = "rbxassetid://199977936"
  2156. audio.PlaybackSpeed = 1.5
  2157. audio:Play()
  2158. audio2.SoundId = "rbxassetid://220834019"
  2159. audio2.PlaybackSpeed = 1
  2160. audio2.TimePosition = 0.1
  2161. audio2:Play()
  2162. for i = 0, 1, 0.1 do
  2163. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-20), 0, 0), i)
  2164. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  2165. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  2166. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1, 0, 0) * CFrame.Angles(math.rad(70), 0, math.rad(-35)), i)
  2167. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1, 0, 0) * CFrame.Angles(math.rad(70), 0, math.rad(35)), i)
  2168. knifeweld.C1 = knifeweld.C1:lerp(CFrame.new(1.35, 0, 1) * CFrame.Angles(1.55, math.rad(-180), 1), i)
  2169. wait()
  2170. end
  2171. wait(1)
  2172. audio.SoundId = "rbxassetid://210943487"
  2173. audio.TimePosition = 0.2
  2174. audio.PlaybackSpeed = 0.75
  2175. audio:Play()
  2176. for i = 0, 1, 0.03 do
  2177. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-20), 0, 0), i)
  2178. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  2179. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  2180. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1, 0.3, -1.5) * CFrame.Angles(math.rad(70), 0, math.rad(-35)), i)
  2181. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1, 0.3, -1.5) * CFrame.Angles(math.rad(70), 0, math.rad(35)), i)
  2182. knifeweld.C1 = knifeweld.C1:lerp(CFrame.new(1.35, 0, 1) * CFrame.Angles(1.55, math.rad(-180), 1), i)
  2183. wait()
  2184. end
  2185. for i = 0, 1, 0.03 do
  2186. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 0, -0.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), i)
  2187. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1.5, 0, -0.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), i)
  2188. knifeweld.C1 = knifeweld.C1:lerp(CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0), i)
  2189. wait()
  2190. end
  2191. wait(0.24)
  2192. if me:FindFirstChildOfClass('Humanoid') then
  2193. me:FindFirstChildOfClass('Humanoid').Health = 0
  2194. end
  2195. wait(0.01)
  2196. killz(me,me.Torso.Name,nil,nil,true)
  2197.  
  2198. tors:Remove()
  2199. rightarm:Remove()
  2200. rightleg:Remove()
  2201. leftleg:Remove()
  2202. leftarm:Remove()
  2203. rightshoulderz:Clone().Parent = me.Torso
  2204. leftshoulderz:Clone().Parent = me.Torso
  2205. torsojoint:Clone().Parent = me.HumanoidRootPart
  2206. lefthipz:Clone().Parent = me.Torso
  2207. righthipz:Clone().Parent = me.Torso
  2208. me.Humanoid.JumpPower = 50
  2209. me.Humanoid.WalkSpeed = 16
  2210. acting = false
  2211. canClick = true
  2212. doing = false
  2213. hit = false
  2214. kyssing = false
  2215. if decearingTHING == 4 then
  2216. decearingEGG:Remove()
  2217. end
  2218. end
  2219.  
  2220. function bleedout()
  2221. local doit = coroutine.wrap(function()
  2222. local targe = grabbed
  2223. local num = 0
  2224. while targe and targe:FindFirstChildOfClass('Humanoid') and targe:FindFirstChildOfClass('Humanoid').Health > 0 and num < 11 do
  2225. if targe.Head:FindFirstChild('Died') then
  2226. tone = math.random(6, 12) / 10
  2227. targe.Head.Died.PlaybackSpeed = tone
  2228. targe.Head.Died:Play()
  2229. else
  2230. local deathsound = Instance.new('Sound',targe.Head)
  2231. deathsound.Name = "Died"
  2232. deathsound.SoundId = 'rbxasset://sounds/uuhhh.mp3'
  2233. deathsound.Volume = 0.65
  2234. deathsound.EmitterSize = 5
  2235. deathsound.MaxDistance = 150
  2236. tone = math.random(5, 15) / 10
  2237. targe.Head.Died.PlaybackSpeed = tone
  2238. targe.Head.Died:Play()
  2239. end
  2240. targe:FindFirstChildOfClass('Humanoid').Health = targe:FindFirstChildOfClass('Humanoid').Health - 7
  2241. num = num+1
  2242. wait(0.325)
  2243. end
  2244. targe:FindFirstChildOfClass('Humanoid').Health = 0
  2245. wait()
  2246. killz(targe,'Head',nil,nil,false,true)
  2247. wait(2)
  2248. targe:Remove()
  2249. end)
  2250. doit()
  2251. end
  2252.  
  2253. function liedown()
  2254. local doit = coroutine.wrap(function()
  2255. local targe = grabbed
  2256. wait(2)
  2257. if targe and targe:FindFirstChildOfClass('Humanoid') then
  2258. targe:FindFirstChildOfClass('Humanoid').PlatformStand = false
  2259. end
  2260. end)
  2261. doit()
  2262. end
  2263.  
  2264. function grab()
  2265. local doit = coroutine.wrap(function()
  2266. acting = true
  2267. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed + 3
  2268. local arm = me["Right Arm"]
  2269. local tors = me.Torso
  2270. local arm2 = me["Left Arm"]
  2271. local humanroot = me.HumanoidRootPart
  2272. local weld2 = Instance.new('Weld',arm)
  2273. weld2.Part0 = arm
  2274. weld2.Part1 = tors
  2275. weld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  2276. local weld3 = Instance.new('Weld',arm2)
  2277. weld3.Part0 = arm2
  2278. weld3.Part1 = tors
  2279. weld3.C0 = CFrame.new(1.5,0,-0.3) * CFrame.Angles(0.3,0.1,0)
  2280. for i = 0,1,0.05 do
  2281. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or humanroot == nil then return end
  2282. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.2,1.3,0.4)*CFrame.Angles(0.5,0,-1.2),i)
  2283. weld3.C0 = weld3.C0:lerp(CFrame.new(1.2,1.3,0)*CFrame.Angles(0,0,1.2),i)
  2284. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), -1.55) * CFrame.new(0, 0.95, 0)
  2285. wait(0.01)
  2286. end
  2287. grabbing = true
  2288. trail.Enabled = true
  2289. for i = 0,1,0.10 do
  2290. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or humanroot == nil then return end
  2291. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-1.5, 0, -1.3), i)
  2292. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.5, 0, 1.1), i)
  2293. wait(0.01)
  2294. end
  2295. trail.Enabled = false
  2296. wait(0.5)
  2297. grabbing = false
  2298. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed - 3
  2299. if grabbed == nil then
  2300. for i = 0,1,0.1 do
  2301. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil then return end
  2302. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  2303. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0),i)
  2304. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0)
  2305. wait(0.001)
  2306. end
  2307. weld2:Destroy()
  2308. weld3:Destroy()
  2309. rightshoulderz:Clone().Parent = me.Torso
  2310. leftshoulderz:Clone().Parent = me.Torso
  2311. acting = false
  2312. canClick = true
  2313. end
  2314. end)
  2315. doit()
  2316. end
  2317.  
  2318. function kill()
  2319. paralyzed = false
  2320. if grabbed.Torso:FindFirstChild("TargetWeld") == nil or grabbed:FindFirstChildOfClass('Humanoid').Health <= 0 then hardrelease() return end
  2321. targetweld = grabbed.Torso.TargetWeld
  2322. targetweld2 = nil
  2323. local reee = grabbed:FindFirstChild("Left Arm")
  2324. if reee and reee:FindFirstChild("Weld") then
  2325. targetweld2 = reee.Weld
  2326. end
  2327. for i, v in pairs(grabbed:GetChildren()) do
  2328. if v.Name == "Part" then
  2329. v.CanCollide = true
  2330. end
  2331. end
  2332. targetweld3pt = grabbed:FindFirstChild("Right Arm")
  2333. local targetrightshoulder = rightshoulder
  2334. local targetleftshoulder = leftshoulder
  2335. local targetweld3 = Instance.new("Weld", targetweld3pt)
  2336. targetweld3.Part0 = grabbed.Torso
  2337. targetweld3.Part1 = targetweld3pt
  2338. targetweld3.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(1.5, 0, 0)
  2339.  
  2340. local doit = coroutine.wrap(function()
  2341. local arm = me["Right Arm"]
  2342. local tors = grabbed.Torso
  2343. local arm2 = me["Left Arm"]
  2344. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  2345. doing = true
  2346. local weld2 = arm:FindFirstChildOfClass('Weld')
  2347. local weld3 = arm2:FindFirstChildOfClass('Weld')
  2348. local humanroot = me.HumanoidRootPart
  2349.  
  2350. for i = 0,1,0.1 do
  2351. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  2352. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-1.9, 0, -1.4), i)
  2353. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 0.5, -0.5)* CFrame.Angles(-1.5, 0.4, 1.1), i)
  2354. wait(0.01)
  2355. end
  2356.  
  2357. audio:Stop()
  2358. audio.SoundId = "rbxassetid://517040733"
  2359. tone = math.random(1, 3)
  2360. if tone == 1 then audio.PlaybackSpeed = 0.8 audio.TimePosition = 0.3 end
  2361. if tone == 2 then audio.PlaybackSpeed = 1 audio.TimePosition = 0.1 end
  2362. if tone == 3 then audio.PlaybackSpeed = 1.2 audio.TimePosition = 0.2 end
  2363. audio:Play()
  2364.  
  2365. local bleedpart = Instance.new("Part", grabbed)
  2366. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  2367. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  2368. bleedpart.CanCollide = false
  2369. bleedpart.Position = grabbed.Head.Position + Vector3.new(0, 1, 0)
  2370. bleedpart.Transparency = 1
  2371.  
  2372. local bleedpartweld = Instance.new("Weld", grabbed.Torso)
  2373. bleedpartweld.Part0 = grabbed.Torso
  2374. bleedpartweld.Part1 = bleedpart
  2375. bleedpartweld.C0 = CFrame.Angles(-1, 0, -0.35) * CFrame.new(0, 1, 0.8)
  2376. local coru=coroutine.wrap(function()
  2377. bleed(bleedpart)
  2378. end)
  2379. coru()
  2380.  
  2381. local slightthrow = Instance.new("BodyThrust", grabbed.Torso)
  2382. slightthrow.Force = Vector3.new(0, 0, -2500)
  2383.  
  2384. local slightthrow2 = Instance.new("BodyAngularVelocity", grabbed.Torso)
  2385. slightthrow2.AngularVelocity = Vector3.new(0, -1000, 0)
  2386. slightthrow2.MaxTorque = Vector3.new(1000, 1000, 1000)
  2387.  
  2388. if grabbed:FindFirstChildOfClass('Humanoid') then
  2389. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = true
  2390. end
  2391.  
  2392. killz(grabbed,'Left Leg')
  2393. killz(grabbed,'Left Arm')
  2394. killz(grabbed,'Right Leg')
  2395. killz(grabbed,'Right Arm')
  2396.  
  2397. trail.Enabled = true
  2398.  
  2399. for i = 0,1,0.2 do
  2400. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  2401. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 1.7, -0.5)* CFrame.Angles(-0.25, 0, -1.4), i)
  2402. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1.6, -0.5)* CFrame.Angles(-1.5, -1, 1.1), i)
  2403. wait(0.01)
  2404. end
  2405.  
  2406. trail.Enabled = false
  2407.  
  2408. bleedout()
  2409.  
  2410. rightshoulderz:Clone().Parent = me.Torso
  2411. leftshoulderz:Clone().Parent = me.Torso
  2412. grabbed = nil
  2413.  
  2414. if humanroot:FindFirstChild('Holder') then
  2415. humanroot.Holder:Destroy()
  2416. end
  2417.  
  2418. wait(0.2)
  2419. slightthrow:Remove()
  2420. slightthrow2:Remove()
  2421. for i = 0,1,0.05 do
  2422. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  2423. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5, 0, 0)* CFrame.Angles(0, 0, 0), i)
  2424. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5, 0, 0)* CFrame.Angles(0, 0, 0), i)
  2425. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0)
  2426. wait(0.01)
  2427. end
  2428.  
  2429. weld2:Destroy()
  2430. weld3:Destroy()
  2431. targetweld = nil
  2432. targetweld2 = nil
  2433. targetweld3 = nil
  2434. rightshoulderz:Clone().Parent = me.Torso
  2435. leftshoulderz:Clone().Parent = me.Torso
  2436. acting = false
  2437. canClick = true
  2438. doing = false
  2439. end)
  2440. doit()
  2441. end
  2442.  
  2443. function finish()
  2444. if finishing == true then return end
  2445. finishing = true
  2446. acting = true
  2447. decearingTHING = math.random(1, 100)
  2448. if decearingTHING == 4 then
  2449. decearingEGG = Instance.new("Sound", me.Torso)
  2450. decearingEGG.SoundId = "rbxassetid://138084557"
  2451. decearingEGG.PlaybackSpeed = math.random(10, 12) / 10
  2452. decearingEGG.TimePosition = 0.2
  2453. decearingEGG:Play()
  2454. end
  2455. me.Humanoid.WalkSpeed = 0
  2456. me.Humanoid.JumpPower = 0
  2457.  
  2458. local rightarm = Instance.new("Weld", me.Torso)
  2459. rightarm.Part0 = me.Torso
  2460. rightarm.Part1 = me["Right Arm"]
  2461. rightarm.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(1.5, 0, 0)
  2462.  
  2463. local tors = Instance.new("Weld", me.HumanoidRootPart)
  2464. tors.Part0 = me.HumanoidRootPart
  2465. tors.Part1 = me.Torso
  2466. tors.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0, 0, 0)
  2467.  
  2468. local rightleg = Instance.new("Weld", me.Torso)
  2469. rightleg.Part0 = me.Torso
  2470. rightleg.Part1 = me["Right Leg"]
  2471. rightleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0.5, -2, 0)
  2472.  
  2473. local leftleg = Instance.new("Weld", me.Torso)
  2474. leftleg.Part0 = me.Torso
  2475. leftleg.Part1 = me["Left Leg"]
  2476. leftleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-0.5, -2, 0)
  2477.  
  2478. for i = 0, 1, 0.05 do
  2479. tors.C0 = tors.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(15), 0, 0), i)
  2480. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -2, 0.2) * CFrame.Angles(math.rad(-15), 0, 0), i)
  2481. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -2, 0.2) * CFrame.Angles(math.rad(-15), 0, 0), i)
  2482. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 1.9, 0) * CFrame.Angles(math.rad(179), math.rad(179), 0), i)
  2483. wait()
  2484. end
  2485. for i=1,finishnum do
  2486. local num1 = 0.5
  2487. local num2 = 0.5
  2488. local num3 = 0.25
  2489. if finishnum ~= 1 then
  2490. num3 = 0
  2491. end
  2492. trail.Enabled = true
  2493. for i = 0, 1, num1 do
  2494. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-60), 0, 0), i)
  2495. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1.5, 0) * CFrame.Angles(math.rad(0), 0, 0), i)
  2496. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -0.7, -1) * CFrame.Angles(math.rad(10), 0, 0), i)
  2497. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 1.9, -1) * CFrame.Angles(math.rad(160), math.rad(150), 0), i)
  2498. wait()
  2499. end
  2500. wait()
  2501. for i = 0, 1, num2 do
  2502. tors.C0 = tors.C0:lerp(CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-20), 0, 0), i)
  2503. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1.5, 0) * CFrame.Angles(math.rad(-30), 0, 0), i)
  2504. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -0.7, -1) * CFrame.Angles(math.rad(-20), 0, 0), i)
  2505. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 1.9, 0.2) * CFrame.Angles(math.rad(250), math.rad(180), 0), i)
  2506. wait()
  2507. end
  2508. trail.Enabled = false
  2509. wait(num3)
  2510. end
  2511. wait()
  2512. for i = 0, 1, 0.05 do
  2513. tors.C0 = tors.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), i)
  2514. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -2, 0) * CFrame.Angles(0, 0, 0), i)
  2515. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -2, 0) * CFrame.Angles(0, 0, 0), i)
  2516. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 0, 0) * CFrame.Angles(0, 0, 0), i)
  2517. wait()
  2518. end
  2519. tors:Remove()
  2520. rightarm:Remove()
  2521. rightleg:Remove()
  2522. leftleg:Remove()
  2523. rightshoulderz:Clone().Parent = me.Torso
  2524. leftshoulderz:Clone().Parent = me.Torso
  2525. torsojoint:Clone().Parent = me.HumanoidRootPart
  2526. lefthipz:Clone().Parent = me.Torso
  2527. righthipz:Clone().Parent = me.Torso
  2528. me.Humanoid.JumpPower = 50
  2529. me.Humanoid.WalkSpeed = 16
  2530. acting = false
  2531. canClick = true
  2532. doing = false
  2533. hit = false
  2534. finishing = false
  2535. if decearingTHING == 4 then
  2536. decearingEGG:Remove()
  2537. end
  2538. end
  2539.  
  2540. function throw()
  2541. if grabbed.Torso:FindFirstChild("TargetWeld") == nil or grabbed:FindFirstChildOfClass('Humanoid').Health <= 0 then return end
  2542. paralyzed = false
  2543. targetweld = grabbed.Torso.TargetWeld
  2544. local ree = grabbed:FindFirstChild("Left Arm")
  2545. targetweld2 =nil
  2546. if ree and ree:FindFirstChild("Weld") then
  2547. targetweld2 = ree.Weld
  2548. end
  2549.  
  2550. for i, v in pairs(grabbed:GetChildren()) do
  2551. if v.Name == "Part" then
  2552. v.CanCollide = true
  2553. end
  2554. end
  2555.  
  2556.  
  2557. local doit = coroutine.wrap(function()
  2558. local arm = me["Right Arm"]
  2559. local tors = grabbed.Torso
  2560. local arm2 = me["Left Arm"]
  2561. local targrightshoulder = rightshoulder
  2562.  
  2563. local targleftshoulder = leftshoulder
  2564. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  2565. doing = true
  2566. local weld2 = arm:FindFirstChildOfClass('Weld')
  2567. local weld3 = arm2:FindFirstChildOfClass('Weld')
  2568. local humanroot = me.HumanoidRootPart
  2569.  
  2570. for i = 0,1,0.2 do
  2571. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  2572. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 1.7, -0.5)* CFrame.Angles(-0.25, 1, -1.4), i)
  2573. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1.6, -0.5)* CFrame.Angles(-1.5, -1, 1.1), i)
  2574. targetweld.C0 = targetweld.C0:lerp(CFrame.new(0, 1.5, 0)*CFrame.Angles(0, 0, 0), i)
  2575. if targetweld2 then
  2576. targetweld2.C0 = targetweld2.C0:lerp(CFrame.new(-1.5, 0, 0)*CFrame.Angles(0, 0, 0), i)
  2577. end
  2578. wait(0.01)
  2579. end
  2580.  
  2581. audio:Stop()
  2582. audio.SoundId = "rbxassetid://536642316"
  2583. tone = math.random(1, 3)
  2584. if tone == 1 then audio.PlaybackSpeed = 0.8 audio.TimePosition = 0.08 end
  2585. if tone == 2 then audio.PlaybackSpeed = 1 audio.TimePosition = 0.1 end
  2586. if tone == 3 then audio.PlaybackSpeed = 1.2 audio.TimePosition = 0.12 end
  2587. audio:Play()
  2588.  
  2589. local slightthrow = Instance.new("BodyVelocity", grabbed.Torso)
  2590. slightthrow.Velocity = Vector3.new(0,20,0)+(me.Torso.CFrame.lookVector*20)
  2591. slightthrow.P = 5000
  2592. slightthrow.MaxForce = Vector3.new(9000001,9000001,9000001)
  2593. local point = grabbed.Torso.Position
  2594. local aaaaaa = grabbed
  2595. liedown()
  2596.  
  2597. rightshoulderz:Clone().Parent = me.Torso
  2598. leftshoulderz:Clone().Parent = me.Torso
  2599. grabbed = nil
  2600.  
  2601. if humanroot:FindFirstChild('Holder') then
  2602. humanroot.Holder:Destroy()
  2603. end
  2604. local coru = coroutine.wrap(function()
  2605. while aaaaaa and aaaaaa:FindFirstChild('Torso') and (aaaaaa.Torso.Position-point).magnitude < 5 do wait(0.001) end
  2606. if aaaaaa:FindFirstChildOfClass('Humanoid') then
  2607. aaaaaa:FindFirstChildOfClass('Humanoid').Name = "Humanoid"
  2608. aaaaaa:FindFirstChildOfClass('Humanoid').JumpPower = 50
  2609. aaaaaa:FindFirstChildOfClass('Humanoid').WalkSpeed = 16
  2610. end
  2611. slightthrow:Remove()
  2612. end)
  2613. coru()
  2614.  
  2615. for i = 0,1,0.05 do
  2616. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  2617. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  2618. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0),i)
  2619. wait(0.01)
  2620. end
  2621. weld2:Destroy()
  2622. weld3:Destroy()
  2623. targetweld:Remove()
  2624. if targetweld2 then
  2625. targetweld2:Remove()
  2626. end
  2627. if rightshoulder then
  2628. rightshoulder:Clone().Parent = tors
  2629. end
  2630. if leftshoulder then
  2631. leftshoulder:Clone().Parent = tors
  2632. end
  2633. headweld:Clone().Parent = tors
  2634. rightshoulderz:Clone().Parent = me.Torso
  2635. leftshoulderz:Clone().Parent = me.Torso
  2636. acting = false
  2637. canClick = true
  2638. doing = false
  2639. end)
  2640. doit()
  2641. end
  2642.  
  2643. cfn,ang,mr,int=CFrame.new,CFrame.Angles,math.rad,Instance.new
  2644. bc=BrickColor.new
  2645. local minimumsize = Vector3.new(0.7,0.7,0.7)
  2646. local surface_between_splitted_parts = 'SmoothNoOutlines'
  2647. local fragmentable = workspace
  2648. local list = {}
  2649. local brickcount = 0
  2650. local storage = {}
  2651. local fillup = 1000
  2652. local maximumstorage = 2000
  2653. local storage_position = Vector3.new(0,0,5000)
  2654. local stored_partsize = Vector3.new(1,1,1)
  2655. local parts_created_per_frame = 5
  2656.  
  2657. local minimumsize = Vector3.new(0.7,0.7,0.7)
  2658. local surface_between_splitted_parts = 'SmoothNoOutlines'
  2659. local fragmentable = workspace
  2660. local list = {}
  2661. local brickcount = 0
  2662. local storage = {}
  2663. local fillup = 1000
  2664. local maximumstorage = 2000
  2665. local storage_position = Vector3.new(0,0,5000)
  2666. local stored_partsize = Vector3.new(1,1,1)
  2667. local parts_created_per_frame = 5
  2668.  
  2669.  
  2670. function fragmentate(cframe,size,color,explosion_position,explosion_blastradius,backsurface,bottomsurface,frontsurface,leftsurface,rightsurface,topsurface,transparency,reflectance,material)
  2671. local xi = size.X >= minimumsize.X*(1+explosion_blastradius/16) and 2 or 1
  2672. local yi = size.Y >= minimumsize.Y*(1+explosion_blastradius/16) and 2 or 1
  2673. local zi = size.Z >= minimumsize.Z*(1+explosion_blastradius/16) and 2 or 1
  2674. if xi == 1 and yi == 1 and zi == 1 or (cframe.p-explosion_position).magnitude > size.magnitude/2 + explosion_blastradius then
  2675. if xi == 1 and yi == 1 and zi == 1 then return end
  2676. if #storage > 0 then
  2677. local p = storage[1]
  2678. p.BrickColor = color
  2679. p.Size = size
  2680. p.Anchored = false
  2681. p.BackSurface = backsurface
  2682. p.BottomSurface = bottomsurface
  2683. p.FrontSurface = frontsurface
  2684. p.LeftSurface = leftsurface
  2685. p.RightSurface = rightsurface
  2686. p.TopSurface = topsurface
  2687. p.Transparency = transparency
  2688. p.CFrame = cframe
  2689. p.Reflectance = reflectance
  2690. p.Material = material
  2691. game:GetService('Debris'):AddItem(p,30)
  2692. p:BreakJoints()
  2693. table.remove(storage,1)
  2694. else
  2695. local p = Instance.new("Part",fragmentable)
  2696. p.BrickColor = color
  2697. p.FormFactor = "Custom"
  2698. p.Size = size
  2699. p.BackSurface = backsurface
  2700. p.BottomSurface = bottomsurface
  2701. p.FrontSurface = frontsurface
  2702. p.LeftSurface = leftsurface
  2703. p.RightSurface = rightsurface
  2704. p.TopSurface = topsurface
  2705. p.Transparency = transparency
  2706. p.Material = material
  2707. if p.Transparency>0.285 then
  2708. p.Anchored = false
  2709. else
  2710. p.Anchored=false
  2711. p.Material='Wood'
  2712. game:GetService('Debris'):AddItem(p,10)
  2713. end
  2714. p.CFrame = cframe
  2715. p.Reflectance = reflectance
  2716. p:BreakJoints()
  2717. end
  2718. return
  2719. end
  2720. local mody = math.random(-125,125)/1000
  2721. for y = 1,yi do
  2722. if math.random()> 0.5 then
  2723. local modx = math.random(-125,125)/1000
  2724. for x = 1,xi do
  2725. local modz = math.random(-125,125)/1000
  2726. for z = 1,zi do --offset = x/xi-0.75+modx)
  2727. 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)),
  2728. 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,
  2729. 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,
  2730. z~=zi and surface_between_splitted_parts or backsurface,y==2 and surface_between_splitted_parts or bottomsurface,
  2731. 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,
  2732. y~=yi and surface_between_splitted_parts or topsurface,transparency,reflectance,material)
  2733. end
  2734.  
  2735. end
  2736. else
  2737. local modz = math.random(-125,125)/1000
  2738. for z = 1,zi do
  2739. local modx = math.random(-125,125)/1000
  2740. for x = 1,xi do
  2741. 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)),
  2742. 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,
  2743. zi == 2 and size.Z*(1-2*math.abs(z/zi-0.75+modz)) or size.Z),color,explosion_position,explosion_blastradius,
  2744. z~=zi and surface_between_splitted_parts or backsurface,y==2 and surface_between_splitted_parts or bottomsurface,
  2745. 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,
  2746. y~=yi and surface_between_splitted_parts or topsurface,transparency,reflectance,material)
  2747. end
  2748. end
  2749. end
  2750. end
  2751. end
  2752.  
  2753. function start_fragmentation(position,radius,nuh)
  2754. local search = Region3.new(position-Vector3.new(radius,radius,radius)*1.1,position+Vector3.new(radius,radius,radius)*1.1)
  2755. repeat
  2756. local finish = false
  2757. local parts = workspace:FindPartsInRegion3WithIgnoreList(search,list,100)
  2758. for i = 1,#parts do
  2759. table.insert(list,1,parts[i])
  2760. end
  2761. finish = true
  2762. until #parts < 100 and finish
  2763. local t = tick()
  2764. for i = 1,#list do
  2765. local p = list[i]
  2766. 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
  2767. 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)
  2768. if #storage < maximumstorage and p.Shape == "Block" then
  2769. p.Anchored = false
  2770. p.FormFactor = "Custom"
  2771. p.Size = stored_partsize
  2772. p.Position = storage_position
  2773. table.insert(storage,1,p)
  2774. else
  2775. p:Destroy()
  2776. end
  2777. end
  2778. 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
  2779. 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)
  2780. if #storage < maximumstorage and p.Shape == "Block" then
  2781. p.Anchored = false
  2782. p.Material='Wood'
  2783. p.FormFactor = "Custom"
  2784. p.Size = stored_partsize
  2785. p.Position = storage_position
  2786. table.insert(storage,1,p)
  2787. else
  2788. p:Destroy()
  2789. end
  2790. end
  2791. end
  2792. list = {}
  2793. end
  2794.  
  2795.  
  2796. function fling()
  2797. local doit = coroutine.wrap(function()
  2798. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') and me:FindFirstChild('HumanoidRootPart') then
  2799. acting = true
  2800. for i=1,finishnum do
  2801. local weld2 = Instance.new('Weld',me["Right Arm"])
  2802. weld2.Part0 = me["Right Arm"]
  2803. weld2.Part1 = me["Torso"]
  2804. weld2.C0 = CFrame.new(-1.5,0,0)
  2805. if finishnum == 1 then
  2806. for i = 0,1,0.05 do
  2807. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  2808. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0),i)
  2809. wait(0.01)
  2810. end
  2811. end
  2812. audio.SoundId = "rbxassetid://166083610"
  2813. audio.PlaybackSpeed = 1
  2814. audio.TimePosition = 0.1
  2815. audio:Play()
  2816. if finishnum == 1 then
  2817. for i = 0,1,0.5 do
  2818. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  2819. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0),i)
  2820. wait(0.001)
  2821. end
  2822. end
  2823. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  2824. local knofe = obj1:Clone()
  2825. for i, v in pairs(obj1:GetChildren()) do
  2826. if v:IsA('BasePart') then
  2827. v.Transparency = 1
  2828. end
  2829. end
  2830. knofe.Parent = workspace
  2831. knofe.Name = "Projectile"
  2832. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  2833. knofe:FindFirstChild("Trail", true).Enabled = true
  2834. local heck = Instance.new('BodyVelocity',knofe.Grab)
  2835. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*120
  2836. local coru = coroutine.wrap(function()
  2837. wait(0.45)
  2838. if heck then
  2839. heck:Destroy()
  2840. end
  2841. end)
  2842. coru()
  2843. local able = true
  2844. knofe["big ass knife"].Touched:connect(function(hit)
  2845. 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
  2846. local thing = hit.Parent:FindFirstChildOfClass('Humanoid')
  2847. local ree = hit.Parent
  2848. if thing == nil then
  2849. ree = hit.Parent.Parent
  2850. end
  2851. if ree:FindFirstChildOfClass('Humanoid').Health > 0 then
  2852. knofe:FindFirstChild("Trail", true).Enabled = false
  2853. game:GetService('Debris'):AddItem(knofe,5)
  2854. tone = math.random(1, 3)
  2855. local sound = Instance.new('Sound',knofe.Grab)
  2856. if tone == 1 then sound.SoundId = "rbxassetid://220833967" end
  2857. if tone == 2 then sound.SoundId = "rbxassetid://220833976" end
  2858. if tone == 3 then sound.SoundId = "rbxassetid://220834000" end
  2859. sound.PlaybackSpeed = 1
  2860. sound:Play()
  2861. for i, v in pairs(knofe:GetChildren()) do
  2862. if v:IsA('BasePart') then
  2863. v.CanCollide = true
  2864. v.Anchored = true
  2865. end
  2866. end
  2867. hit.Anchored = true
  2868. if ree:FindFirstChildOfClass('Humanoid') and hit.Name == "Torso" or hit.Name == "Head" then
  2869. ree:FindFirstChildOfClass('Humanoid').Health = 0
  2870. end
  2871. wait()
  2872. killz(ree,hit.Name,knofe)
  2873. else
  2874. knofe:FindFirstChild("Trail", true).Enabled = false
  2875. heck.Velocity = Vector3.new(0,0,0)
  2876. heck:Destroy()
  2877. game:GetService('Debris'):AddItem(knofe,5)
  2878. tone = math.random(1, 3)
  2879. local sound = Instance.new('Sound',knofe.Grab)
  2880. if tone == 1 then sound.SoundId = "rbxassetid://220833967" end
  2881. if tone == 2 then sound.SoundId = "rbxassetid://220833976" end
  2882. if tone == 3 then sound.SoundId = "rbxassetid://220834000" end
  2883. sound.PlaybackSpeed = 1
  2884. sound:Play()
  2885. for i, v in pairs(knofe:GetChildren()) do
  2886. if v:IsA('BasePart') then
  2887. v.Anchored = false
  2888. end
  2889. end
  2890. hit.Anchored = true
  2891. wait(0.001)
  2892. hit.Anchored = false
  2893. for i, v in pairs(knofe:GetChildren()) do
  2894. if v:IsA('BasePart') then
  2895. v.Anchored = false
  2896. end
  2897. end
  2898. if knofe then
  2899. local coru = coroutine.wrap(function()
  2900. if hit then
  2901. local uno = Instance.new('Part',workspace)
  2902. local dos = Instance.new('Part',workspace)
  2903. uno.CFrame = hit.CFrame
  2904. dos.CFrame = knofe["big ass knife"].CFrame
  2905. local weld = Instance.new('Weld',knofe["big ass knife"])
  2906. weld.Part0 = hit
  2907. weld.Part1 = knofe["big ass knife"]
  2908. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  2909. uno:Destroy()
  2910. dos:Destroy()
  2911. end
  2912. end)
  2913. coru()
  2914. end
  2915. end
  2916. elseif hit.Parent and hit.Parent ~= me and hit.Parent.Parent ~= me and hit.CanCollide and knofe.Grab.CanCollide == false then
  2917. if hit.Transparency and (hit.Transparency<=0.285 or hit:GetMass()<=3000) then
  2918. knofe:FindFirstChild("Trail", true).Enabled = false
  2919. local sound = Instance.new('Sound',knofe.Grab)
  2920. sound.SoundId = 'rbxassetid://267585646'
  2921. sound:Play()
  2922. for i,v in pairs(knofe:GetChildren()) do
  2923. if v:IsA('BasePart') then
  2924. v.Anchored = true
  2925. end
  2926. end
  2927. wait()
  2928. heck.Velocity = Vector3.new(0,0,0)
  2929. heck:Destroy()
  2930. local uno = Instance.new('Part',workspace)
  2931. local dos = Instance.new('Part',workspace)
  2932. uno.CFrame = hit.CFrame
  2933. dos.CFrame = knofe["big ass knife"].CFrame
  2934. local weld = Instance.new('Weld',knofe["big ass knife"])
  2935. weld.Part0 = hit
  2936. weld.Part1 = knofe["big ass knife"]
  2937. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  2938. uno:Destroy()
  2939. dos:Destroy()
  2940. for i,v in pairs(knofe:GetChildren()) do
  2941. if v:IsA('BasePart') then
  2942. v.Anchored = false
  2943. end
  2944. end
  2945. game:GetService('Debris'):AddItem(knofe,5)
  2946. for i,v in pairs(knofe:GetChildren()) do
  2947. if v:IsA('BasePart') then
  2948. v.CanCollide = true
  2949. end
  2950. end
  2951. end
  2952. 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
  2953. knofe:FindFirstChild("Trail", true).Enabled = false
  2954. able = false
  2955. local sound = Instance.new('Sound',knofe.Grab)
  2956. sound.SoundId = 'rbxassetid://144884907'
  2957. sound:Play()
  2958. local coru = coroutine.wrap(function()
  2959. start_fragmentation(knofe["big ass knife"].Position,1.25,knofe)
  2960. end)
  2961. coru()
  2962. end
  2963. end
  2964. end)
  2965. if finishnum == 1 then
  2966. for i= 0,1,0.1 do
  2967. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  2968. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  2969. wait(0.001)
  2970. end
  2971. else
  2972. for i= 0,1,0.5 do
  2973. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  2974. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  2975. wait(0.001)
  2976. end
  2977. end
  2978. for i,v in pairs(obj1:GetChildren()) do
  2979. if v:IsA('BasePart') then
  2980. v.Transparency = 0
  2981. end
  2982. end
  2983. weld2:Destroy()
  2984. rightshoulderz:Clone().Parent = me.Torso
  2985. end
  2986. acting = false
  2987. canClick = true
  2988. end
  2989. end)
  2990. doit()
  2991. end
  2992.  
  2993. function instasplode()
  2994. local coru = coroutine.wrap(function()
  2995. acting = true
  2996. for i=1,1 do
  2997. local weld2 = Instance.new('Weld',me["Right Arm"])
  2998. weld2.Part0 = me["Right Arm"]
  2999. weld2.Part1 = me["Torso"]
  3000. weld2.C0 = CFrame.new(-1.5,0,0)
  3001. if finishnum == 1 then
  3002. for i = 0,1,0.05 do
  3003. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3004. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0),i)
  3005. wait(0.01)
  3006. end
  3007. end
  3008. weld2.C0 = CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0)
  3009. audio.SoundId = "rbxassetid://166083610"
  3010. audio.PlaybackSpeed = 1
  3011. audio.TimePosition = 0.1
  3012. audio:Play()
  3013. if finishnum == 1 then
  3014. for i = 0,1,0.5 do
  3015. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3016. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0),i)
  3017. wait(0.001)
  3018. end
  3019. end
  3020. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  3021. local knofe = obj1:Clone()
  3022. for i,v in pairs(obj1:GetChildren()) do
  3023. if v:IsA('BasePart') then
  3024. v.Transparency = 1
  3025. end
  3026. end
  3027. knofe.Parent = workspace
  3028. knofe.Name = "Projectile"
  3029. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  3030. knofe:FindFirstChild("Trail", true).Enabled = false
  3031. fireofjesUS = Instance.new("Fire", knofe.Grab)
  3032. local heck = Instance.new('BodyVelocity',knofe.Grab)
  3033. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*120
  3034. local coru = coroutine.wrap(function()
  3035. wait(0.45)
  3036. if heck then
  3037. heck:Destroy()
  3038. end
  3039. end)
  3040. coru()
  3041. knofe["big ass knife"].Touched:connect(function(hit)
  3042. if hit.Parent ~= me and hit.Parent.Parent ~= me and hit.Transparency < 1 and knofe.Grab.CanCollide == false then
  3043. heck.Velocity = Vector3.new(0,0,0)
  3044. heck:Destroy()
  3045. for i,v in pairs(knofe:GetChildren()) do
  3046. if v:IsA('BasePart') then
  3047. v.CanCollide = true
  3048. end
  3049. end
  3050. local hum = hit.Parent:FindFirstChildOfClass('Humanoid')
  3051. if hum == nil then
  3052. hum = hit.Parent.Parent:FindFirstChildOfClass('Humanoid')
  3053. end
  3054. if knofe then
  3055. local coru = coroutine.wrap(function()
  3056. if hit then
  3057. local uno = Instance.new('Part',workspace)
  3058. local dos = Instance.new('Part',workspace)
  3059. uno.CFrame = hit.CFrame
  3060. dos.CFrame = knofe["big ass knife"].CFrame
  3061. local weld = Instance.new('Weld',knofe["big ass knife"])
  3062. weld.Part0 = hit
  3063. weld.Part1 = knofe["big ass knife"]
  3064. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  3065. uno:Destroy()
  3066. dos:Destroy()
  3067. end
  3068. end)
  3069. coru()
  3070. end
  3071. local sound = Instance.new('Sound',knofe.Grab)
  3072. sound.Name = "BOOM"
  3073. sound.EmitterSize = 25
  3074. sound.SoundId = 'rbxassetid://476477344'
  3075. sound.Volume = 0.5
  3076. sound:Play()
  3077. local exppart = Instance.new("Part", game.Workspace)
  3078. exppart.Size = Vector3.new(0.2, 0.2, 0.2)
  3079. exppart.Anchored = true
  3080. exppart.CanCollide = false
  3081. exppart.CFrame = CFrame.new(knofe.Grab.CFrame.p)
  3082. exppart.Transparency = 1
  3083. local expaccent = Instance.new("ParticleEmitter", exppart)
  3084. expaccent.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 0)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 0, 0))})
  3085. expaccent.LightEmission = 0.2
  3086. expaccent.LightInfluence = 0.3
  3087. expaccent.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 0)})
  3088. expaccent.Acceleration = Vector3.new(0, 30, 0)
  3089. expaccent.Drag = 15
  3090. expaccent.LockedToPart = false
  3091. expaccent.Lifetime = NumberRange.new(0.5, 1.5)
  3092. expaccent.Rate = 2000
  3093. expaccent.Speed = NumberRange.new(0,0)
  3094. expaccent.SpreadAngle = Vector2.new(360, 360)
  3095. expaccent:Clone().Parent = exppart
  3096. expaccent:Clone().Parent = exppart
  3097. local exp = Instance.new('Explosion',game.Workspace)
  3098. exp.Position = knofe["big ass knife"].Position
  3099. exp.ExplosionType = Enum.ExplosionType.NoCraters
  3100. exp.BlastRadius = 5
  3101. exp.Visible = false
  3102. exp.BlastPressure = 0
  3103. exp.DestroyJointRadiusPercent = 0
  3104. exp.Hit:connect(function(hit)
  3105. if hit.Parent and hit.Parent ~= me and hit.Parent.Name ~= "bitch ass knife" then
  3106. wait(0.001)
  3107. tgt = hit
  3108. local coru=coroutine.wrap(function(tgtt)
  3109. local fireofgods = Instance.new("Fire", tgtt)
  3110. fireofgods.Size = 0
  3111. fireofgods.Heat = 0
  3112. local fireofgodsaccent = expaccent:Clone()
  3113. fireofgodsaccent.Parent = hit
  3114. fireofgodsaccent.Rate = 0
  3115. fireofgodsaccent.Speed = NumberRange.new(5, 50)
  3116. fireofgodsaccent.SpreadAngle = Vector2.new(45, 45)
  3117. fireofgodsaccent.Acceleration = Vector3.new(0, 20, 0)
  3118.  
  3119. while fireofgods.Size < 10 do
  3120. fireofgods.Size = fireofgods.Size + 0.1
  3121. fireofgods.Heat = fireofgods.Heat + 0.1
  3122. fireofgodsaccent.Rate = fireofgodsaccent.Rate + 1
  3123. wait()
  3124. end
  3125. if hit.Parent and hit.Parent:FindFirstChildOfClass('Humanoid') == nil and hit.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil then
  3126. hit:BreakJoints()
  3127. elseif hit.Parent and hit.Parent:IsA('Accessory') then
  3128. for i,v in pairs(hit:GetChildren()) do
  3129. if v:IsA('SpecialMesh') then
  3130. v.TextureId = ""
  3131. end
  3132. end
  3133. end
  3134. hit.BrickColor = BrickColor.new("Black")
  3135. for i,v in pairs(hit.Parent:GetChildren()) do
  3136. if v:IsA('Shirt') or v:IsA('Pants') then
  3137. v:Destroy()
  3138. end
  3139. end
  3140.  
  3141. while fireofgods.Size > 5 do
  3142. fireofgods.Size = fireofgods.Size - 0.1
  3143. fireofgods.Heat = fireofgods.Heat - 0.1
  3144. wait()
  3145. end
  3146. fireofgods:Destroy()
  3147. if hit.Parent then
  3148. if hit.Parent:FindFirstChildOfClass('Humanoid') == nil and hit.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil then
  3149. local p = hit
  3150. 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)
  3151. hit:Remove()
  3152. elseif hit.Parent:FindFirstChildOfClass('Humanoid') ~= nil then
  3153. print(hit.Name)
  3154. if hit.Name == "Torso" or hit.Name == "Head" then
  3155. print('ohhh YAAAA')
  3156. hit.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  3157. end
  3158. wait()
  3159. killz(hit.Parent,hit.Name,nil,nil,false,false,true)
  3160. end
  3161. end
  3162. end)
  3163. coru(tgt)
  3164. end
  3165. end)
  3166. local explosionaccenttimeout = coroutine.wrap(function()
  3167. wait(0.2)
  3168. for i, exploodn in pairs(exppart:GetChildren()) do
  3169. exploodn.Enabled = false
  3170. end
  3171. wait(2)
  3172. for i, exploodn in pairs(exppart:GetChildren()) do
  3173. exploodn:Remove()
  3174. end
  3175. end)
  3176. explosionaccenttimeout()
  3177. for i,v in pairs(knofe:GetChildren()) do
  3178. if v:IsA('BasePart') then
  3179. v.Transparency = 1
  3180. end
  3181. end
  3182. exp.AncestryChanged:connect(function() knofe:Destroy() end)
  3183. coru()
  3184. end
  3185. end)
  3186. if finishnum == 1 then
  3187. for i= 0,1,0.1 do
  3188. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3189. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  3190. wait(0.001)
  3191. end
  3192. else
  3193. wait(0.1)
  3194. end
  3195. weld2.C0 = CFrame.new(-1.5,0,0)
  3196. for i,v in pairs(obj1:GetChildren()) do
  3197. if v:IsA('BasePart') then
  3198. v.Transparency = 0
  3199. end
  3200. end
  3201. weld2:Destroy()
  3202. rightshoulderz:Clone().Parent = me.Torso
  3203. end
  3204. acting = false
  3205. canClick = true
  3206. end)
  3207. coru()
  3208. end
  3209.  
  3210. function fireworkit()
  3211. local coru = coroutine.wrap(function()
  3212. acting = true
  3213. local ree = 1
  3214. if finishnum > 1 then
  3215. ree = 3
  3216. end
  3217. for i=1,ree do
  3218. local weld2 = Instance.new('Weld',me["Right Arm"])
  3219. weld2.Part0 = me["Right Arm"]
  3220. weld2.Part1 = me["Torso"]
  3221. weld2.C0 = CFrame.new(-1.5,0,0)
  3222. weld2.C0 = CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0)
  3223. audio.SoundId = "rbxassetid://166083610"
  3224. audio.PlaybackSpeed = 1
  3225. audio.TimePosition = 0.1
  3226. audio:Play()
  3227. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  3228. local knofe = obj1:Clone()
  3229. for i,v in pairs(obj1:GetChildren()) do
  3230. if v:IsA('BasePart') then
  3231. v.Transparency = 1
  3232. end
  3233. end
  3234. local sound = Instance.new('Sound',knofe.Grab)
  3235. sound.Volume = 0.25
  3236. sound.EmitterSize = 200
  3237. sound.MaxDistance = 300
  3238. sound.SoundId = 'rbxassetid://551051176'
  3239. sound:Play()
  3240. knofe.Parent = workspace
  3241. knofe.Name = "Projectile"
  3242. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  3243. local partic = Instance.new('ParticleEmitter',knofe.Grab)
  3244. 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))})
  3245. partic.LightEmission = 0.5
  3246. partic.LightInfluence = 0
  3247. partic.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,0.5),NumberSequenceKeypoint.new(1,0.15)})
  3248. partic.Rotation = NumberRange.new(0,90)
  3249. partic.SpreadAngle = Vector2.new(5,5)
  3250. partic.Speed = NumberRange.new(20)
  3251. partic.Texture = 'rbxassetid://603193846'
  3252. partic.EmissionDirection = Enum.NormalId.Left
  3253. partic.Lifetime = NumberRange.new(0.5,1)
  3254. partic.Rate = 100
  3255. local heck = Instance.new('BodyVelocity',knofe.Grab)
  3256. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*240
  3257. local coru=coroutine.wrap(function()
  3258. wait(1.2)
  3259. sound:Destroy()
  3260. local sound2 = Instance.new('Sound',workspace)
  3261. sound2.SoundId = 'rbxassetid://138080762'
  3262. sound2:Play()
  3263. if heck then
  3264. heck:Destroy()
  3265. end
  3266. for i,v in pairs(knofe:GetChildren()) do
  3267. v.Anchored = true
  3268. end
  3269. partic.Enabled = false
  3270. local colorscheme = math.random(1,4)
  3271. --1 - red & orange
  3272. --2 - blue & pink
  3273. --3 - green & purple
  3274. --4 - blue, red, white
  3275. local colar1 = Color3.fromRGB(255,0,0)
  3276. local colar2 = Color3.fromRGB(255,125,0)
  3277. local colar3 = Color3.fromRGB(255,255,255)
  3278. if colorscheme == 2 then
  3279. colar1 = Color3.fromRGB(0,132,255)
  3280. colar2 = Color3.fromRGB(243,105,255)
  3281. elseif colorscheme == 3 then
  3282. colar1 = Color3.fromRGB(76,255,0)
  3283. colar2 = Color3.fromRGB(128,0,255)
  3284. elseif colorscheme == 4 then
  3285. colar2 = Color3.fromRGB(0,132,255)
  3286. end
  3287. local partic2 = Instance.new('ParticleEmitter',knofe.Grab)
  3288. partic2.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,colar1),ColorSequenceKeypoint.new(1,colar1)})
  3289. partic2.LightEmission = 0.5
  3290. partic2.LightInfluence = 0
  3291. partic2.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,0.5),NumberSequenceKeypoint.new(1,0.1)})
  3292. partic2.Rotation = NumberRange.new(0,90)
  3293. partic2.SpreadAngle = Vector2.new(180,180)
  3294. partic2.Speed = NumberRange.new(20)
  3295. partic2.Texture = 'rbxassetid://603193846'
  3296. partic2.EmissionDirection = Enum.NormalId.Right
  3297. partic2.Lifetime = NumberRange.new(2,2.5)
  3298. partic2.Rate = 1000
  3299. partic2.Drag = 1
  3300. local partic3 = partic2:Clone()
  3301. partic3.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,colar2),ColorSequenceKeypoint.new(1,colar2)})
  3302. partic3.Parent = knofe.Grab
  3303. if colorscheme == 4 then
  3304. local partic4 = partic2:Clone()
  3305. partic4.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,colar3),ColorSequenceKeypoint.new(1,colar3)})
  3306. partic4.Parent = knofe.Grab
  3307. end
  3308. wait(1)
  3309. for i,v in pairs(knofe.Grab:GetChildren()) do
  3310. if v:IsA('ParticleEmitter') then
  3311. v.Enabled = false
  3312. end
  3313. end
  3314. sound:Destroy()
  3315. wait(2)
  3316. knofe:Destroy()
  3317. end)
  3318. coru()
  3319. wait(0.1)
  3320. weld2.C0 = CFrame.new(-1.5,0,0)
  3321. for i,v in pairs(obj1:GetChildren()) do
  3322. if v:IsA('BasePart') then
  3323. v.Transparency = 0
  3324. end
  3325. end
  3326. weld2:Destroy()
  3327. rightshoulderz:Clone().Parent = me.Torso
  3328. end
  3329. acting = false
  3330. canClick = true
  3331. end)
  3332. coru()
  3333. end
  3334.  
  3335. function paralyze()
  3336. local coru = coroutine.wrap(function()
  3337. if paralyzed == true then return end
  3338. paralyzed = true
  3339. local arm = me["Right Arm"]
  3340. local tors = grabbed.Torso
  3341. local arm2 = me["Left Arm"]
  3342. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  3343. doing = true
  3344. local weld2 = arm:FindFirstChildOfClass('Weld')
  3345. local weld3 = arm2:FindFirstChildOfClass('Weld')
  3346. local humanroot = me.HumanoidRootPart
  3347. for i = 0,1,0.075 do
  3348. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-2, 0, -1.5), i)
  3349. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.4, 0, 1.1), i)
  3350. wait(0.01)
  3351. end
  3352. for i = 0,1,0.30 do
  3353. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-0.75, 0, -1.75), i)
  3354. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.4, 0, 1.1), i)
  3355. wait(0.01)
  3356. end
  3357. killz(grabbed,'Left Leg')
  3358. killz(grabbed,'Left Arm')
  3359. killz(grabbed,'Right Leg')
  3360. killz(grabbed,'Right Arm')
  3361.  
  3362. for i, v in pairs(grabbed:GetChildren()) do
  3363. if v.Name == "Part" then
  3364. v.CanCollide = false
  3365. end
  3366. end
  3367.  
  3368. audio:Stop()
  3369. audio.SoundId = "rbxassetid://2801263"
  3370. tone = math.random(1, 3)
  3371. if tone == 1 then audio.PlaybackSpeed = 0.8 audio.TimePosition = 0 end
  3372. if tone == 2 then audio.PlaybackSpeed = 1 audio.TimePosition = 0 end
  3373. if tone == 3 then audio.PlaybackSpeed = 1.2 audio.TimePosition = 0 end
  3374. audio:Play()
  3375.  
  3376. local bleedpart = Instance.new("Part", grabbed)
  3377. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  3378. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  3379. bleedpart.CanCollide = false
  3380. bleedpart.Position = grabbed.Head.Position + Vector3.new(0, 1, 0)
  3381. bleedpart.Transparency = 1
  3382.  
  3383. local bleedpartweld = Instance.new("Weld", grabbed.Torso)
  3384. bleedpartweld.Part0 = grabbed.Torso
  3385. bleedpartweld.Part1 = bleedpart
  3386. bleedpartweld.C0 = CFrame.Angles(-1, 0, -0.35) * CFrame.new(0, 1, 0.8)
  3387. local cuntruu=coroutine.wrap(function()
  3388. bleed(bleedpart)
  3389. end)
  3390. local thicc = coroutine.wrap(function()
  3391. wait(3)
  3392. bleedpart:Remove()
  3393. end)
  3394. cuntruu()
  3395. thicc()
  3396.  
  3397. for i = 0,1,0.075 do
  3398. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-1.5, 0, -1.3), i)
  3399. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.5, 0, 1.1), i)
  3400. wait(0.01)
  3401. end
  3402. acting = true
  3403. canClick = true
  3404. doing = false
  3405. end)
  3406. coru()
  3407. end
  3408.  
  3409. function explode()
  3410. local coru = coroutine.wrap(function()
  3411. acting = true
  3412. for i=1,finishnum do
  3413. local weld2 = Instance.new('Weld',me["Right Arm"])
  3414. weld2.Part0 = me["Right Arm"]
  3415. weld2.Part1 = me["Torso"]
  3416. weld2.C0 = CFrame.new(-1.5,0,0)
  3417. if finishnum == 1 then
  3418. for i = 0,1,0.05 do
  3419. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3420. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0),i)
  3421. wait(0.01)
  3422. end
  3423. end
  3424. weld2.C0 = CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0)
  3425. audio.SoundId = "rbxassetid://166083610"
  3426. audio.PlaybackSpeed = 1
  3427. audio.TimePosition = 0.1
  3428. audio:Play()
  3429. if finishnum == 1 then
  3430. for i = 0,1,0.5 do
  3431. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3432. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0),i)
  3433. wait(0.001)
  3434. end
  3435. end
  3436. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  3437. local knofe = obj1:Clone()
  3438. for i,v in pairs(obj1:GetChildren()) do
  3439. if v:IsA('BasePart') then
  3440. v.Transparency = 1
  3441. end
  3442. end
  3443. knofe.Parent = workspace
  3444. knofe.Name = "Projectile"
  3445. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  3446. knofe:FindFirstChild("Trail", true).Enabled = false
  3447. local heck = Instance.new('BodyVelocity',knofe.Grab)
  3448. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*120
  3449. local coru = coroutine.wrap(function()
  3450. wait(0.45)
  3451. if heck then
  3452. heck:Destroy()
  3453. end
  3454. end)
  3455. coru()
  3456. knofe["big ass knife"].Touched:connect(function(hit)
  3457. if hit.Parent ~= me and hit.Parent.Parent ~= me and hit.Transparency < 1 and knofe.Grab.CanCollide == false then
  3458. heck.Velocity = Vector3.new(0,0,0)
  3459. heck:Destroy()
  3460. for i,v in pairs(knofe:GetChildren()) do
  3461. if v:IsA('BasePart') then
  3462. v.CanCollide = true
  3463. end
  3464. end
  3465. local hum = hit.Parent:FindFirstChildOfClass('Humanoid')
  3466. if hum == nil then
  3467. hum = hit.Parent.Parent:FindFirstChildOfClass('Humanoid')
  3468. end
  3469. if hum then
  3470. tone = math.random(1, 3)
  3471. local sound = Instance.new('Sound',knofe.Grab)
  3472. if tone == 1 then sound.SoundId = "rbxassetid://220833967" end
  3473. if tone == 2 then sound.SoundId = "rbxassetid://220833976" end
  3474. if tone == 3 then sound.SoundId = "rbxassetid://220834000" end
  3475. sound.PlaybackSpeed = 1
  3476. sound:Play()
  3477. else
  3478. local sound = Instance.new('Sound',knofe.Grab)
  3479. sound.SoundId = 'rbxassetid://267585646'
  3480. sound:Play()
  3481. end
  3482. if knofe then
  3483. local coru = coroutine.wrap(function()
  3484. if hit then
  3485. local uno = Instance.new('Part',workspace)
  3486. local dos = Instance.new('Part',workspace)
  3487. uno.CFrame = hit.CFrame
  3488. dos.CFrame = knofe["big ass knife"].CFrame
  3489. local weld = Instance.new('Weld',knofe["big ass knife"])
  3490. weld.Part0 = hit
  3491. weld.Part1 = knofe["big ass knife"]
  3492. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  3493. uno:Destroy()
  3494. dos:Destroy()
  3495. end
  3496. end)
  3497. coru()
  3498. end
  3499. local coru = coroutine.wrap(function()
  3500. for i=1,15,0.7 do
  3501. local sound = Instance.new('Sound',knofe.Grab)
  3502. if knofe then
  3503. if knofe.serration.BrickColor == BrickColor.new('Really red') then
  3504. for i, v in pairs(knofe:GetChildren()) do
  3505. if v.Name == "big ass knife" or v.Name == "serration" or v.Name == "knifetip1" or v.Name == "fricc" then
  3506. v.BrickColor = BrickColor.new('Lily white')
  3507. v.Material = Enum.Material.SmoothPlastic
  3508. end
  3509. end
  3510. else
  3511. for i,v in pairs(knofe:GetChildren()) do
  3512. if v.Name == "big ass knife" or v.Name == "serration" or v.Name == "knifetip1" or v.Name == "fricc" then
  3513. v.BrickColor = BrickColor.new('Really red')
  3514. v.Material = Enum.Material.Neon
  3515. sound.SoundId = 'rbxassetid://300473653'
  3516. sound.Volume = 0.75
  3517. sound.TimePosition = 0.05
  3518. sound.EmitterSize = 25
  3519. sound.PlaybackSpeed = 1
  3520. sound:Play()
  3521. end
  3522. end
  3523. end
  3524. wait(1/i)
  3525. sound:Destroy()
  3526. end
  3527. end
  3528. local sound = Instance.new('Sound',knofe.Grab)
  3529. sound.Name = "BOOM"
  3530. sound.EmitterSize = 25
  3531. sound.SoundId = 'rbxassetid://12222084'
  3532. sound.TimePosition = 0.1
  3533. sound.Volume = 0.5
  3534. sound:Play()
  3535. local exppart = Instance.new("Part", game.Workspace)
  3536. exppart.Size = Vector3.new(0.2, 0.2, 0.2)
  3537. exppart.Anchored = true
  3538. exppart.CanCollide = false
  3539. exppart.CFrame = CFrame.new(knofe.Grab.CFrame.p)
  3540. exppart.Transparency = 1
  3541. local expaccent = Instance.new("ParticleEmitter", exppart)
  3542. expaccent.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 0)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 0, 0))})
  3543. expaccent.LightEmission = 0.2
  3544. expaccent.LightInfluence = 0.3
  3545. expaccent.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 0)})
  3546. expaccent.Acceleration = Vector3.new(0, -8, 0)
  3547. expaccent.Drag = 15
  3548. expaccent.LockedToPart = true
  3549. expaccent.Lifetime = NumberRange.new(0.5, 1.5)
  3550. expaccent.Rate = 2000
  3551. expaccent.Speed = NumberRange.new(10, 150)
  3552. expaccent.SpreadAngle = Vector2.new(360, 360)
  3553.  
  3554. local exp = Instance.new('Explosion',game.Workspace)
  3555. exp.Position = knofe["big ass knife"].Position
  3556. exp.ExplosionType = Enum.ExplosionType.NoCraters
  3557. exp.BlastRadius = 10
  3558. exp.BlastPressure = 100000
  3559. exp.DestroyJointRadiusPercent = 1
  3560. exp.Hit:connect(function(hit)
  3561. if hit.Parent and hit.Parent ~= me and hit.Parent:FindFirstChildOfClass('Humanoid') then
  3562. if hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Name == "Torso" or hit.Name == "Head" then
  3563. hit.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  3564. end
  3565. wait(0.001)
  3566. local coru=coroutine.wrap(function()
  3567. killz(hit.Parent,'Head',knofe,exp)
  3568. end)
  3569. coru()
  3570. elseif hit.Parent and hit.Parent ~= workspace and hit.Parent ~= me then
  3571. if hit.Parent.Name ~= "Projectile" then
  3572. hit.Parent:BreakJoints()
  3573. end
  3574. elseif hit.Parent and hit.Parent ~= me then
  3575. hit:BreakJoints()
  3576. end
  3577. end)
  3578. local explosionaccenttimeout = coroutine.wrap(function()
  3579. wait(0.2)
  3580. expaccent.Enabled = false
  3581. wait(2)
  3582. exppart:Remove()
  3583. end)
  3584. explosionaccenttimeout()
  3585. for i,v in pairs(knofe:GetChildren()) do
  3586. if v:IsA('BasePart') then
  3587. v.Transparency = 1
  3588. end
  3589. end
  3590. exp.AncestryChanged:connect(function() knofe:Destroy() end)
  3591. end)
  3592. coru()
  3593. end
  3594. end)
  3595. if finishnum == 1 then
  3596. for i= 0,1,0.1 do
  3597. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3598. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  3599. wait(0.001)
  3600. end
  3601. else
  3602. wait(0.1)
  3603. end
  3604. weld2.C0 = CFrame.new(-1.5,0,0)
  3605. for i,v in pairs(obj1:GetChildren()) do
  3606. if v:IsA('BasePart') then
  3607. v.Transparency = 0
  3608. end
  3609. end
  3610. weld2:Destroy()
  3611. rightshoulderz:Clone().Parent = me.Torso
  3612. end
  3613. acting = false
  3614. canClick = true
  3615. end)
  3616. coru()
  3617. end
  3618.  
  3619. function release()
  3620. if grabbed.Torso:FindFirstChild("TargetWeld") == nil or grabbed:FindFirstChildOfClass('Humanoid').Health <= 0 then return end
  3621. targetweld = grabbed.Torso.TargetWeld
  3622. local ree= grabbed:FindFirstChild("Left Arm")
  3623. targetweld2 = nil
  3624. if ree and ree:FindFirstChild("Weld") then
  3625. targetweld2 = ree.Weld
  3626. end
  3627. for i, v in pairs(grabbed:GetChildren()) do
  3628. if v.Name == "Part" then
  3629. v.CanCollide = true
  3630. end
  3631. end
  3632. paralyzed = false
  3633. local doit = coroutine.wrap(function()
  3634. local arm = me["Right Arm"]
  3635. local tors = grabbed.Torso
  3636. local arm2 = me["Left Arm"]
  3637. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  3638. doing = true
  3639. local weld2 = arm:FindFirstChildOfClass('Weld')
  3640. local weld3 = arm2:FindFirstChildOfClass('Weld')
  3641. local humanroot = me.HumanoidRootPart
  3642.  
  3643. if grabbed:FindFirstChildOfClass('Humanoid') then
  3644. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = false
  3645. end
  3646.  
  3647. rightshoulderz:Clone().Parent = me.Torso
  3648. leftshoulderz:Clone().Parent = me.Torso
  3649. if grabbed:FindFirstChildOfClass('Humanoid') then
  3650. grabbed:FindFirstChildOfClass('Humanoid').Name = "Humanoid"
  3651. grabbed:FindFirstChildOfClass('Humanoid').JumpPower = 50
  3652. grabbed:FindFirstChildOfClass('Humanoid').WalkSpeed = 16
  3653. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = false
  3654. end
  3655. grabbed = nil
  3656.  
  3657. if humanroot:FindFirstChild('Holder') then
  3658. humanroot.Holder:Destroy()
  3659. end
  3660.  
  3661. for i = 0,1,0.1 do
  3662. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  3663. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  3664. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0),i)
  3665. targetweld.C0 = targetweld.C0:lerp(CFrame.new(0, 1.5, 0)*CFrame.Angles(0, 0, 0), i)
  3666. if targetweld2 then
  3667. targetweld2.C0 = targetweld2.C0:lerp(CFrame.new(-1.5, 0, 0)*CFrame.Angles(0, 0, 0), i)
  3668. end
  3669. wait(0.01)
  3670. end
  3671.  
  3672. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0.2)
  3673. weld2:Destroy()
  3674. weld3:Destroy()
  3675. targetweld:Remove()
  3676. if targetweld2 then
  3677. targetweld2:Remove()
  3678. end
  3679. if rightshoulder then
  3680. rightshoulder:Clone().Parent = tors
  3681. end
  3682. if leftshoulder then
  3683. leftshoulder:Clone().Parent = tors
  3684. end
  3685. headweld:Clone().Parent = tors
  3686. rightshoulderz:Clone().Parent = me.Torso
  3687. leftshoulderz:Clone().Parent = me.Torso
  3688. acting = false
  3689. canClick = true
  3690. doing = false
  3691. end)
  3692. doit()
  3693. end
  3694.  
  3695. function stabwithpassion()
  3696. local doit = coroutine.wrap(function()
  3697. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') and me:FindFirstChild('HumanoidRootPart') and me:FindFirstChild('Left Arm') then
  3698. acting = true
  3699. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed + 10
  3700. local arm = me["Right Arm"]
  3701. local tors = me.Torso
  3702. local arm2 = me["Left Arm"]
  3703. local humanroot = me.HumanoidRootPart
  3704. local weld = Instance.new('Weld',tors)
  3705. weld.Part0 = tors
  3706. weld.Part1 = humanroot
  3707. weld.C0 = CFrame.new(0,0,0) * CFrame.Angles(0, 0, 0)
  3708. local weld2 = Instance.new('Weld',arm)
  3709. weld2.Part0 = arm
  3710. weld2.Part1 = tors
  3711. weld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  3712. local weld3 = Instance.new('Weld',arm2)
  3713. weld3.Part0 = arm2
  3714. weld3.Part1 = tors
  3715. weld3.C0 = CFrame.new(1.5,0,-0.3) * CFrame.Angles(0.3,0.1,0)
  3716.  
  3717. for i = 0,1,0.15 do
  3718. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3719. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(20),0),i)
  3720. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.2,1.3,0.4)*CFrame.Angles(0.5,0,-1.2),i)
  3721. knifeweld.C1 = knifeweld.C1:lerp(CFrame.fromEulerAnglesXYZ(1.55, math.rad(90), -1.55) * CFrame.new(0, 0.95, 0), i)
  3722. wait(0.01)
  3723. end
  3724. wait(0.001)
  3725. trail.Enabled = true
  3726. stabbing = true
  3727. audio2.SoundId = 'rbxassetid://608537390'
  3728. audio2:Play()
  3729. for i = 0,1,0.2 do
  3730. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3731. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(-45),0),i)
  3732. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.6,0.8,-1)*CFrame.Angles(math.rad(-90),0,-1),i)
  3733. wait(0.01)
  3734. end
  3735. trail.Enabled = false
  3736. wait(0.1)
  3737. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed - 10
  3738. stabbing = false
  3739. wait(0.001)
  3740. for i = 0,1,0.075 do
  3741. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3742. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0,0),i)
  3743. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0)*CFrame.Angles(0,0,0),i)
  3744. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0)*CFrame.Angles(0,0,0),i)
  3745. knifeweld.C1 = knifeweld.C1:lerp(CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0), i)
  3746. wait(0.01)
  3747. end
  3748. weld:Destroy()
  3749. weld2:Destroy()
  3750. weld3:Destroy()
  3751. torsojoint:Clone().Parent = humanroot
  3752. rightshoulderz:Clone().Parent = me.Torso
  3753. leftshoulderz:Clone().Parent = me.Torso
  3754. canClick = true
  3755. hit = false
  3756. acting = false
  3757. end
  3758. end)
  3759. doit()
  3760. end
  3761.  
  3762. function stab()
  3763. local doit = coroutine.wrap(function()
  3764. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') and me:FindFirstChild('HumanoidRootPart') and me:FindFirstChild('Left Arm') then
  3765. acting = true
  3766. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed + 3
  3767. local arm = me["Right Arm"]
  3768. local tors = me.Torso
  3769. local arm2 = me["Left Arm"]
  3770. local humanroot = me.HumanoidRootPart
  3771. local weld = Instance.new('Weld',tors)
  3772. weld.Part0 = tors
  3773. weld.Part1 = humanroot
  3774. weld.C0 = CFrame.new(0,0,0) * CFrame.Angles(0, 0, 0)
  3775. local weld2 = Instance.new('Weld',arm)
  3776. weld2.Part0 = arm
  3777. weld2.Part1 = tors
  3778. weld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  3779. local weld3 = Instance.new('Weld',arm2)
  3780. weld3.Part0 = arm2
  3781. weld3.Part1 = tors
  3782. weld3.C0 = CFrame.new(1.5,0,-0.3) * CFrame.Angles(0.3,0.1,0)
  3783.  
  3784. for i = 0,1,0.1 do
  3785. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3786. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0.3,0),i)
  3787. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.2,1.3,0.4)*CFrame.Angles(0.5,0,-1.2),i)
  3788. wait(0.01)
  3789. end
  3790. wait(0.001)
  3791. trail.Enabled = true
  3792. stabbing = true
  3793. audio2.SoundId = 'rbxassetid://608537390'
  3794. audio2:Play()
  3795. for i = 0,1,0.25 do
  3796. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3797. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,-0.3,0),i)
  3798. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.6,0.8,0.5)*CFrame.Angles(-0.5,0,-0.5),i)
  3799. wait(0.01)
  3800. end
  3801. trail.Enabled = false
  3802. wait(0.1)
  3803. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed - 3
  3804. for i = 0,1,0.25 do
  3805. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3806. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0.3,0),i)
  3807. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.6,-0.3)*CFrame.Angles(0.5,0,-0.5),i)
  3808. wait(0.01)
  3809. end
  3810. stabbing = false
  3811. wait(0.001)
  3812. for i = 0,1,0.05 do
  3813. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3814. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0,0),i)
  3815. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0)*CFrame.Angles(0,0,0),i)
  3816. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0)*CFrame.Angles(0,0,0),i)
  3817. wait(0.01)
  3818. end
  3819. weld:Destroy()
  3820. weld2:Destroy()
  3821. weld3:Destroy()
  3822. torsojoint:Clone().Parent = humanroot
  3823. rightshoulderz:Clone().Parent = me.Torso
  3824. leftshoulderz:Clone().Parent = me.Torso
  3825. canClick = true
  3826. hit = false
  3827. acting = false
  3828. end
  3829. end)
  3830. doit()
  3831. end
  3832. function hardrelease()
  3833. rightshoulderz:Clone().Parent = me.Torso
  3834. leftshoulderz:Clone().Parent = me.Torso
  3835. if me:FindFirstChild('Right Arm') then
  3836. for i,v in pairs(me["Right Arm"]:GetChildren()) do
  3837. if v:IsA('Weld') then
  3838. v:Destroy()
  3839. end
  3840. end
  3841. end
  3842. if me:FindFirstChild('Left Arm') then
  3843. for i,v in pairs(me["Left Arm"]:GetChildren()) do
  3844. if v:IsA('Weld') then
  3845. v:Destroy()
  3846. end
  3847. end
  3848. end
  3849. acting = false
  3850. canClick = true
  3851. doing = false
  3852. grabbed = nil
  3853. end
  3854. function unequip()
  3855. local doit = coroutine.wrap(function()
  3856. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') then
  3857. acting = true
  3858. local arm = me["Right Arm"]
  3859. local arm2 = me["Left Arm"]
  3860. local tors = me.Torso
  3861. local weld = Instance.new('Weld',arm)
  3862. weld.Part0 = arm
  3863. weld.Part1 = tors
  3864. weld.C0 = CFrame.new(-1.5,0,0)
  3865. local weld2 = Instance.new("Weld", arm2)
  3866. weld2.Part0 = arm2
  3867. weld2.Part1 = tors
  3868. weld2.C0 = CFrame.new(1.5, 0, 0)
  3869. wait(0.001)
  3870. trail.Enabled = true
  3871. for i = 0,1,0.1 do
  3872. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  3873. weld.C0 = weld.C0:lerp(CFrame.new(-0.2,0.2,-0.5)*CFrame.Angles(0,-3.1,0.9),i)
  3874. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0.6, 0) * CFrame.Angles(0,0,0.5),i)
  3875. wait(0.001)
  3876. end
  3877. trail.Enabled = false
  3878. wait(0.25)
  3879. for i = 0,1,0.1 do
  3880. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  3881. weld.C0 = weld.C0:lerp(CFrame.new(-1.5,0,0),i)
  3882. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0, 0), i)
  3883. wait(0.01)
  3884. end
  3885. weld:Destroy()
  3886. weld2:Remove()
  3887. if tors ~= nil then
  3888. rightshoulderz:Clone().Parent = me.Torso
  3889. leftshoulderz:Clone().Parent = me.Torso
  3890. end
  3891. acting = false
  3892. end
  3893. end)
  3894. doit()
  3895. end
  3896.  
  3897. mouse.KeyDown:connect(function(key)
  3898. if usable == true then
  3899. if key == "z" then
  3900. if active == false and acting == false then
  3901. active = true
  3902. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3903. notify("KNIFE EQUIPPED",false)
  3904. audio:Stop()
  3905. audio.SoundId = 'rbxassetid://608618332'
  3906. equip()
  3907. wait(0.6)
  3908. audio:Play()
  3909. knifeweld.Part0 = me["Right Arm"]
  3910. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0)
  3911. elseif acting == false then
  3912. active = false
  3913. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3914. audio:Stop()
  3915. audio.SoundId = 'rbxassetid://608538233'
  3916. unequip()
  3917. notify("KNIFE UNEQUIPPED",false)
  3918. wait(0.3)
  3919. audio:Play()
  3920. knifeweld.Part0 = me.Torso
  3921. knifeweld.C1 = CFrame.Angles(0,math.rad(90),0) * CFrame.new(1, 0.8, 0.55)
  3922. canClick = true
  3923. end
  3924. elseif key == "f" then
  3925. if mode == 'kill' or active == false then return end
  3926. mode = "kill"
  3927. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3928. notify("MODE || KILL || [F]",false)
  3929. elseif key == "e" then
  3930. if mode == 'throw' or active == false then return end
  3931. mode = "throw"
  3932. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3933. notify("MODE || PUSH || [E]",false)
  3934. elseif key == "q" then
  3935. if mode == 'release' or active == false then return end
  3936. mode = "release"
  3937. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3938. notify("MODE || RELEASE || [Q]",false)
  3939. elseif key == "x" then
  3940. if mode == 'stab' or active == false or acting == true then return end
  3941. mode = "stab"
  3942. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3943. notify("MODE || STAB || [X]",false)
  3944. elseif key == "c" then
  3945. if mode == 'fling' or active == false or acting == true then return end
  3946. mode = "fling"
  3947. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3948. notify("MODE || THROW || [C]",false)
  3949. elseif key == "b" then
  3950. if mode == 'instasplode' or active == false or acting == true then return end
  3951. mode = "instasplode"
  3952. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3953. notify("MODE || MOLOTOV || [B]",false)
  3954. elseif key == "r" then
  3955. if mode == 'paralyze' or active == false then return end
  3956. mode = "paralyze"
  3957. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3958. notify("MODE || PARALYZE || [R]",false)
  3959. elseif key == "v" then
  3960. if mode == 'explode' or active == false or acting == true then return end
  3961. mode = "explode"
  3962. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3963. notify("MODE || EXPLODE || [V]",false)
  3964. elseif key == "k" then
  3965. if mode == 'suicide' or active == false or acting == true then return end
  3966. mode = "suicide"
  3967. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3968. notify("MODE || SUICIDE || [K]",false)
  3969. elseif key == "h" then
  3970. if mode == 'firework' or active == false or acting == true then return end
  3971. mode = "firework"
  3972. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3973. notify("MODE || FIREWORK || [H]",false)
  3974. elseif key == "g" then
  3975. if mode == 'finish' or active == false then return end
  3976. mode = "finish"
  3977. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3978. local welp = "ON"
  3979. if finishnum == 1 then
  3980. welp = "OFF"
  3981. end
  3982. notify("MODE || FINISH || [G] || "..welp,false)
  3983. elseif key == "n" then
  3984. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3985. if zombiemode == false then
  3986. notify("ZOMBIE MODE ON || [N]",false)
  3987. zombiemode = true
  3988. else
  3989. notify("ZOMBIE MODE OFF || [N]",false)
  3990. zombiemode = false
  3991. end
  3992. elseif key == "m" then
  3993. if finishnum == 1 then
  3994. finishnum = 15
  3995. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3996. notify("PSYCHOPATH MODE ON || [M]",false)
  3997. if cancolorfilter then
  3998. local Sp00kyGui = Instance.new("ScreenGui")
  3999. local ImageLabel = Instance.new("ImageLabel")
  4000.  
  4001. -- Properties
  4002.  
  4003. Sp00kyGui.Parent = playergui
  4004. Sp00kyGui.Name = "REEEEEEEE"
  4005.  
  4006. ImageLabel.Parent = Sp00kyGui
  4007. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  4008. ImageLabel.BackgroundTransparency = 1
  4009. ImageLabel.Size = UDim2.new(1, 0, 1, 0)
  4010. ImageLabel.Image = "rbxassetid://74443700"
  4011. ImageLabel.ImageColor3 = Color3.new(1, 0, 0)
  4012. end
  4013. if canbackgroundmusic == true then
  4014. local sound = Instance.new('Sound',playergui)
  4015. sound.Name = 'PSYCHOPAAAATH'
  4016. sound.SoundId = 'rbxassetid://220875210'
  4017. sound.Looped = true
  4018. sound.Volume = 0.5
  4019. sound:Play()
  4020. end
  4021. else
  4022. finishnum = 1
  4023. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  4024. notify("PSYCHOPATH MODE OFF || [M]",false)
  4025. for i,v in pairs(playergui:GetChildren()) do
  4026. if v.Name == "REEEEEEEE" then
  4027. v:Destroy()
  4028. end
  4029. end
  4030. local thisniggarighthere = playergui:FindFirstChild('PSYCHOPAAAATH')
  4031. if thisniggarighthere then thisniggarighthere:Destroy() end
  4032. end
  4033. end
  4034. end
  4035. end)
  4036.  
  4037. mouse.Button1Down:connect(function()
  4038. if active == false or usable == false then return end
  4039. if canClick == true and acting == false then
  4040. if mode == "stab" and finishnum == 1 then
  4041. canClick = false
  4042. stab()
  4043. elseif mode == "stab" and finishnum == 15 then
  4044. canClick = false
  4045. stabwithpassion()
  4046. elseif mode == "fling" then
  4047. canClick = false
  4048. fling()
  4049. elseif mode == "explode" then
  4050. canClick = false
  4051. explode()
  4052. elseif mode == "instasplode" then
  4053. canClick = false
  4054. instasplode()
  4055. elseif mode == "finish" then
  4056. canClick = false
  4057. finish()
  4058. elseif mode == "suicide" then
  4059. canClick = false
  4060. kysnigga()
  4061. elseif mode == "firework" then
  4062. canClick = false
  4063. fireworkit()
  4064. else
  4065. canClick = false
  4066. grab()
  4067. end
  4068. else
  4069. if grabbed ~= nil and doing == false then
  4070. if mode == "release" then
  4071. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4072. release()
  4073. else
  4074. hardrelease()
  4075. end
  4076. elseif mode == "kill" then
  4077. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4078. kill()
  4079. else
  4080. hardrelease()
  4081. end
  4082. elseif mode == "paralyze" then
  4083. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4084. paralyze()
  4085. else
  4086. hardrelease()
  4087. end
  4088. elseif mode == "throw" then
  4089. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4090. throw()
  4091. else
  4092. hardrelease()
  4093. end
  4094. elseif mode == "explode" then
  4095. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4096. throw()
  4097. else
  4098. hardrelease()
  4099. end
  4100. end
  4101. end
  4102. end
  4103. end)
  4104.  
  4105. knife.Touched:connect(function(hitz)
  4106. if hitz.Parent and hitz.Parent:FindFirstChildOfClass("Humanoid") and hitz.Parent:FindFirstChild('Torso') and acting == true then
  4107. if mode == "stab" and stabbing == true and hit == false then
  4108. hit = true
  4109. tone = math.random(1, 3)
  4110. audio:Stop()
  4111. if tone == 1 then audio.SoundId = "rbxassetid://220833967" end
  4112. if tone == 2 then audio.SoundId = "rbxassetid://220833976" end
  4113. if tone == 3 then audio.SoundId = "rbxassetid://220834000" end
  4114. audio.PlaybackSpeed = 1
  4115. audio:Play()
  4116. killz(hitz.Parent,'Left Leg')
  4117. killz(hitz.Parent,'Left Arm')
  4118. killz(hitz.Parent,'Right Leg')
  4119. killz(hitz.Parent,'Right Arm')
  4120. elseif mode == "finish" and finishing == true then
  4121. print('PSYCHOPATH MODE REEEEEEEEEEEEEEEE')
  4122. tone = math.random(1, 3)
  4123. audio:Stop()
  4124. if tone == 1 then audio.SoundId = "rbxassetid://220833967" end
  4125. if tone == 2 then audio.SoundId = "rbxassetid://220833976" end
  4126. if tone == 3 then audio.SoundId = "rbxassetid://220834000" end
  4127. audio.PlaybackSpeed = 1
  4128. audio:Play()
  4129. if hit == false then
  4130. hitz.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  4131. wait()
  4132. killz(hitz.Parent,'Head',nil,false,true)
  4133. end
  4134. hit = true
  4135. elseif grabbed == nil and grabbing == true and hit == false then
  4136. if hitz.Parent:FindFirstChildOfClass("Humanoid").Health > 0 and hitz.Parent:FindFirstChild('Torso') and hitz.Parent.Torso:FindFirstChild('Neck') then
  4137. grabbed = hitz.Parent
  4138. local weldz = Instance.new('Weld',point)
  4139. weldz.Name = "Holder"
  4140. weldz.Part0 = point
  4141. weldz.Part1 = hitz.Parent.Torso
  4142. weldz.C0 = CFrame.new(0,0,-1.2)
  4143. end
  4144. end
  4145. end
  4146. end)
  4147.  
  4148. player.CharacterAdded:connect(function()
  4149. usable = false
  4150. for i,v in pairs(playergui:GetChildren()) do
  4151. if v.Name == "REEEEEEEE" or v.Name == 'PSYCHOPAAAATH' then
  4152. v:Destroy()
  4153. end
  4154. end
  4155. end)
  4156. while usable do
  4157. local coru = coroutine.wrap(function()
  4158. for i,v in pairs(knifeparts) do
  4159. local function try()
  4160. if v[1].Parent ~= v[2] then
  4161. v[1].Parent = v[2]
  4162. end
  4163. end
  4164. pcall(try)
  4165. end
  4166. if grabbed ~= nil then
  4167. if grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4168. for i,v in pairs(grabbed:GetChildren()) do
  4169. if v:IsA('Tool') then
  4170. local model = Instance.new('Model',workspace)
  4171. v.Parent = model
  4172. model:TranslateBy(Vector3.new(3,0,0))
  4173. end
  4174. end
  4175. grabbed:FindFirstChildOfClass('Humanoid').Name = "Hoomanoid"
  4176. grabbed:FindFirstChildOfClass('Humanoid').JumpPower = 0
  4177. grabbed:FindFirstChildOfClass('Humanoid').WalkSpeed = 0
  4178. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = true
  4179. grabweld = grabbed.Torso:FindFirstChild("TargetWeld")
  4180. if grabweld ~= nil then return end
  4181. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = true
  4182. if grabbed.Torso:FindFirstChild('Left Shoulder') then
  4183. leftshoulder = grabbed.Torso["Left Shoulder"]:Clone()
  4184. end
  4185. if grabbed.Torso:FindFirstChild('Right Shoulder') then
  4186. rightshoulder = grabbed.Torso["Right Shoulder"]:Clone()
  4187. end
  4188. headweld = grabbed.Torso["Neck"]:Clone()
  4189. local targetweld = Instance.new('Weld',grabbed.Torso)
  4190. targetweld.Part0 = grabbed.Torso
  4191. targetweld.Part1 = grabbed.Head
  4192. targetweld.Name = "TargetWeld"
  4193. targetweld.C0 = CFrame.new(0,1.5,0) * CFrame.Angles(0, 0, 0)
  4194. if grabbed:FindFirstChild('Left Arm') then
  4195. local targetweld2 = Instance.new('Weld',grabbed["Left Arm"])
  4196. targetweld2.Part0 = grabbed.Torso
  4197. targetweld2.Part1 = grabbed["Left Arm"]
  4198. targetweld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  4199. end
  4200.  
  4201. for i = 0,1,0.1 do
  4202. if me:FindFirstChild("Left Arm") == nil or me:FindFirstChild("Torso") == nil or targetweld == nil then return end
  4203. targetweld.C0 = targetweld.C0:lerp(CFrame.new(0, 1.5, 0)*CFrame.Angles(0.25, 0, 0), i)
  4204. if targetweld2 then
  4205. targetweld2.C0 = targetweld2.C0:lerp(CFrame.new(-1.5, 0.5, 0)*CFrame.Angles(0, 0, -0.55), i)
  4206. end
  4207. wait(0.001)
  4208. end
  4209. end
  4210. end
  4211. end)
  4212. coru()
  4213. wait()
  4214. end
  4215.  
  4216. end
  4217. local coru=coroutine.wrap(function()
  4218. nub()
  4219. end)
  4220. coru()
  4221.  
  4222. player.CharacterAppearanceLoaded:connect(function()
  4223. local coru =coroutine.wrap(function()
  4224. nub()
  4225. end)
  4226. coru()
  4227. end)
  4228.  
  4229. while true do
  4230. local coru=coroutine.wrap(function()
  4231. if grabbed then
  4232. v:FindFirstChildOfClass('Humanoid').Jump = false
  4233. v:FindFirstChildOfClass('Humanoid').Sit = false
  4234. v:FindFirstChildOfClass('Humanoid').JumpPower = 0
  4235. v:FindFirstChildOfClass('Humanoid').PlatformStand = true
  4236. v:FindFirstChildOfClass('Humanoid').Name = "No escape."
  4237. end
  4238. for i,v in pairs(rekt) do
  4239. if v and v:FindFirstChildOfClass('Humanoid') then
  4240. for a,c in pairs(v:GetChildren()) do
  4241. if c:IsA('Tool') then
  4242. local model = Instance.new('Model',workspace)
  4243. c.Parent = model
  4244. model:TranslateBy(Vector3.new(3,0,0))
  4245. end
  4246. end
  4247. v:FindFirstChildOfClass('Humanoid').Jump = false
  4248. v:FindFirstChildOfClass('Humanoid').Sit = false
  4249. v:FindFirstChildOfClass('Humanoid').JumpPower = 0
  4250. v:FindFirstChildOfClass('Humanoid').PlatformStand = true
  4251. v:FindFirstChildOfClass('Humanoid').Name = "No escape."
  4252. local thing = getplr(v)
  4253. if thing then
  4254. thing.CameraMinZoomDistance = 3
  4255. end
  4256. else
  4257. local thing = getplr(v)
  4258. if thing then
  4259. thing.CameraMinZoomDistance = 0.5
  4260. end
  4261. table.remove(rekt,i)
  4262. end
  4263. end
  4264. end)
  4265. coru()
  4266. local coru2 = coroutine.wrap(function()
  4267. if curpart then
  4268. curpoint = curpart.CFrame.p
  4269. end
  4270. if lastgui then
  4271. lastgui:Destroy()
  4272. lastgui = nil
  4273. end
  4274. if curpoint then
  4275. lastgui = Instance.new('BillboardGui',player.PlayerGui)
  4276. lastgui.AlwaysOnTop = true
  4277. lastgui.MaxDistance = 0
  4278. lastgui.Size = UDim2.new(5,0,5,0)
  4279. if curpart == nil then
  4280. lastgui.Adornee = workspace
  4281. lastgui.StudsOffsetWorldSpace = curpoint
  4282. else
  4283. lastgui.Adornee = curpart
  4284. end
  4285. local cross = Instance.new('ImageLabel',lastgui)
  4286. cross.BackgroundTransparency = 1
  4287. cross.Size = UDim2.new(1,0,1,0)
  4288. cross.Image = 'rbxassetid://316279304'
  4289. for i,v in pairs(zombies) do
  4290. if v:FindFirstChildOfClass('Humanoid') then
  4291. v:FindFirstChildOfClass('Humanoid').WalkToPoint = curpoint
  4292. end
  4293. end
  4294. else
  4295. for i,v in pairs(zombies) do
  4296. if v:FindFirstChildOfClass('Humanoid') and v:FindFirstChild('Head') then
  4297. v:FindFirstChildOfClass('Humanoid').WalkToPoint = v.Head.Position
  4298. end
  4299. end
  4300. end
  4301. end)
  4302. coru2()
  4303. wait()
  4304. end
  4305. end)
  4306.  
  4307.  
  4308.  
  4309. TextButton_2.Parent = TextButton
  4310. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  4311. TextButton_2.Position = UDim2.new(0, 105, 0, 0)
  4312. TextButton_2.Size = UDim2.new(0, 74, 0, 50)
  4313. TextButton_2.Font = Enum.Font.SourceSans
  4314. TextButton_2.Text = "Bomb Vest"
  4315. TextButton_2.TextSize = 14
  4316.  
  4317. TextButton_2.MouseButton1Down:connect(function()
  4318. local Me = game:GetService("Players").LocalPlayer
  4319. local Char = Me.Character
  4320. local Torso = Char.Torso
  4321. local TickWait = 1
  4322. local Color = "Medium stone gray"
  4323. local Dead = false
  4324.  
  4325. local Tool = Instance.new("HopperBin", Me.Backpack)
  4326. Tool.Name = "Bomb Vest"
  4327.  
  4328. local Position = Vector3.new(0,100,0)
  4329. function NewPart(Parent)
  4330. local Part = Instance.new("Part", Parent)
  4331. Part.CanCollide = false
  4332. Part.FormFactor = "Custom"
  4333. Part.Position = Position
  4334. Part.TopSurface = "Smooth"
  4335. Part.BottomSurface = "Smooth"
  4336. Part.BrickColor = BrickColor.new(Color)
  4337. Position = Position + Vector3.new(0,Part.Size.Y + 10,0)
  4338. return Part
  4339. end
  4340.  
  4341. local Model = Char:FindFirstChild("Bomb")
  4342. if Model then Model:Destroy() end
  4343.  
  4344. Model = Instance.new("Model", Char)
  4345. Model.Name = "Bomb"
  4346.  
  4347. local Belt = NewPart(Model)
  4348. Belt.Size = Vector3.new(2.2,0.5,1.2)
  4349. local Weld = Instance.new("Weld", Belt)
  4350. Weld.Part0 = Belt
  4351. Weld.Part1 = Torso
  4352. Weld.C0 = CFrame.new(0,1.1,0)
  4353. local Light = Instance.new("PointLight", Belt)
  4354. Light.Range = 15
  4355. Light.Brightness = 5
  4356. Light.Color = Color3.new(1,0,0)
  4357. local Beep = Instance.new("Sound", Belt)
  4358. Beep.SoundId = "http://www.roblox.com/asset/?id=188588790"
  4359. local ExplodeSound = Instance.new("Sound", Belt)
  4360. ExplodeSound.SoundId = "http://www.roblox.com/asset/?id="..(tonumber((math.ceil(1776.66^2)+17).."."..string.rep("36",3))*77)+0.00003 --144507765
  4361. ExplodeSound.Pitch = 2.8
  4362. ExplodeSound.Volume = 3
  4363.  
  4364. local Back = NewPart(Model)
  4365. Back.Size = Vector3.new(1.5,1.5,0.5)
  4366. local Weld = Instance.new("Weld", Back)
  4367. Weld.Part0 = Back
  4368. Weld.Part1 = Torso
  4369. Weld.C0 = CFrame.new(0,0.1,-0.75)
  4370.  
  4371. local StrapLeft = NewPart(Model)
  4372. StrapLeft.Size = Vector3.new(0.2,0.5,1.6)
  4373. local Weld = Instance.new("Weld", StrapLeft)
  4374. Weld.Part0 = StrapLeft
  4375. Weld.Part1 = Torso
  4376. Weld.C0 = CFrame.new(0.65,-0.9,-0.2)
  4377.  
  4378. local BuckleLeft = NewPart(Model)
  4379. BuckleLeft.Size = Vector3.new(0.2,1.5,0.2)
  4380. local Weld = Instance.new("Weld", BuckleLeft)
  4381. Weld.Part0 = BuckleLeft
  4382. Weld.Part1 = Torso
  4383. Weld.C0 = CFrame.new(0.65,0.1,0.5)
  4384.  
  4385. local StrapRight = NewPart(Model)
  4386. StrapRight.Size = Vector3.new(0.2,0.5,1.6)
  4387. local Weld = Instance.new("Weld", StrapRight)
  4388. Weld.Part0 = StrapRight
  4389. Weld.Part1 = Torso
  4390. Weld.C0 = CFrame.new(-0.65,-0.9,-0.2)
  4391.  
  4392. local BuckleRight = NewPart(Model)
  4393. BuckleRight.Size = Vector3.new(0.2,1.5,0.2)
  4394. local Weld = Instance.new("Weld", BuckleRight)
  4395. Weld.Part0 = BuckleRight
  4396. Weld.Part1 = Torso
  4397. Weld.C0 = CFrame.new(-0.65,0.1,0.5)
  4398.  
  4399. Tool.Selected:connect(function(Mouse)
  4400. TickWait = 0.3
  4401. Mouse.Icon = "http://www.roblox.com/asset/?id=9109985"
  4402.  
  4403. Mouse.Button1Down:connect(function()
  4404. if Dead == false then
  4405. Dead = true
  4406. ExplodeSound:Play()
  4407. wait(1.4)
  4408. local Explosion = Instance.new("Explosion", Workspace)
  4409. Explosion.Position = Belt.Position
  4410. Explosion.BlastPressure = 100000
  4411. Explosion.DestroyJointRadiusPercent = 0.7
  4412. Explosion.ExplosionType = "CratersAndDebris"
  4413. Explosion.BlastRadius = 1000
  4414. Explosion.Hit:connect(function(Part, Distance)
  4415. Part.Anchored = false
  4416. if Distance <= 10 then
  4417. Part:BreakJoints()
  4418. end
  4419. end)
  4420. end
  4421. end)
  4422. end)
  4423.  
  4424. Tool.Deselected:connect(function()
  4425. TickWait = 1
  4426. end)
  4427.  
  4428. coroutine.wrap(function()
  4429. repeat
  4430. wait(TickWait)
  4431. Light.Enabled = not Light.Enabled
  4432. Beep:Play()
  4433. until Dead == true
  4434. end)()
  4435. end)
  4436.  
  4437.  
  4438. TextButton_3.Parent = TextButton_2
  4439. TextButton_3.BackgroundColor3 = Color3.new(1, 1, 1)
  4440. TextButton_3.Position = UDim2.new(0, 92, 0, 0)
  4441. TextButton_3.Size = UDim2.new(0, 83, 0, 50)
  4442. TextButton_3.Font = Enum.Font.SourceSans
  4443. TextButton_3.Text = "Clown Van "
  4444. TextButton_3.TextSize = 14
  4445.  
  4446. TextButton_3.MouseButton1Down:connect(function()
  4447. --CLOWN VAN BY DMS
  4448. --its bad
  4449. --first the victim gets kidnapped in a van
  4450. --then they get r3ped
  4451. --then the get killed
  4452. --then the body is dumped on the street
  4453. Victim = "LocalPlayer"
  4454. o1 = Instance.new("Model")
  4455. o2 = Instance.new("Part")
  4456. o3 = Instance.new("CylinderMesh")
  4457. o4 = Instance.new("Part")
  4458. o5 = Instance.new("SpecialMesh")
  4459. o6 = Instance.new("Part")
  4460. o7 = Instance.new("SpecialMesh")
  4461. o8 = Instance.new("Part")
  4462. o9 = Instance.new("BlockMesh")
  4463. o10 = Instance.new("Part")
  4464. o11 = Instance.new("BlockMesh")
  4465. o12 = Instance.new("Part")
  4466. o13 = Instance.new("Part")
  4467. o14 = Instance.new("BlockMesh")
  4468. o15 = Instance.new("Part")
  4469. o16 = Instance.new("SpecialMesh")
  4470. o17 = Instance.new("Part")
  4471. o18 = Instance.new("SpecialMesh")
  4472. o19 = Instance.new("Part")
  4473. o20 = Instance.new("SpecialMesh")
  4474. o21 = Instance.new("Sound")
  4475. o22 = Instance.new("Part")
  4476. o23 = Instance.new("BlockMesh")
  4477. o24 = Instance.new("Part")
  4478. o25 = Instance.new("SpecialMesh")
  4479. o26 = Instance.new("Part")
  4480. o27 = Instance.new("BlockMesh")
  4481. o28 = Instance.new("Part")
  4482. o29 = Instance.new("SpecialMesh")
  4483. o30 = Instance.new("Part")
  4484. o31 = Instance.new("BlockMesh")
  4485. o32 = Instance.new("Part")
  4486. o33 = Instance.new("BlockMesh")
  4487. o34 = Instance.new("Part")
  4488. o35 = Instance.new("BlockMesh")
  4489. o36 = Instance.new("Part")
  4490. o37 = Instance.new("BlockMesh")
  4491. o38 = Instance.new("Part")
  4492. o39 = Instance.new("Part")
  4493. o40 = Instance.new("BlockMesh")
  4494. o41 = Instance.new("Part")
  4495. o42 = Instance.new("BlockMesh")
  4496. o43 = Instance.new("Part")
  4497. o44 = Instance.new("BlockMesh")
  4498. o45 = Instance.new("Part")
  4499. o46 = Instance.new("SpecialMesh")
  4500. o47 = Instance.new("Part")
  4501. o48 = Instance.new("BlockMesh")
  4502. o49 = Instance.new("Part")
  4503. o50 = Instance.new("BlockMesh")
  4504. o51 = Instance.new("Part")
  4505. o52 = Instance.new("BlockMesh")
  4506. o53 = Instance.new("Part")
  4507. o54 = Instance.new("SpecialMesh")
  4508. o55 = Instance.new("Part")
  4509. o56 = Instance.new("SpecialMesh")
  4510. o57 = Instance.new("Part")
  4511. o58 = Instance.new("BlockMesh")
  4512. o59 = Instance.new("Part")
  4513. o60 = Instance.new("BlockMesh")
  4514. o61 = Instance.new("Part")
  4515. o62 = Instance.new("BlockMesh")
  4516. o63 = Instance.new("Part")
  4517. o64 = Instance.new("Part")
  4518. o65 = Instance.new("Part")
  4519. o66 = Instance.new("BlockMesh")
  4520. o67 = Instance.new("Part")
  4521. o68 = Instance.new("BlockMesh")
  4522. o69 = Instance.new("Part")
  4523. o70 = Instance.new("BlockMesh")
  4524. o71 = Instance.new("Part")
  4525. o72 = Instance.new("BlockMesh")
  4526. o73 = Instance.new("Part")
  4527. o74 = Instance.new("SpecialMesh")
  4528. o75 = Instance.new("Decal")
  4529. o76 = Instance.new("Part")
  4530. o77 = Instance.new("Part")
  4531. o78 = Instance.new("BlockMesh")
  4532. o79 = Instance.new("Part")
  4533. o80 = Instance.new("SpecialMesh")
  4534. o81 = Instance.new("Decal")
  4535. o82 = Instance.new("Part")
  4536. o83 = Instance.new("SpecialMesh")
  4537. o84 = Instance.new("Humanoid")
  4538. o85 = Instance.new("Part")
  4539. o86 = Instance.new("Part")
  4540. o87 = Instance.new("Part")
  4541. o88 = Instance.new("Decal")
  4542. o89 = Instance.new("Motor6D")
  4543. o90 = Instance.new("Motor6D")
  4544. o91 = Instance.new("Motor6D")
  4545. o92 = Instance.new("Motor6D")
  4546. o93 = Instance.new("Motor6D")
  4547. o94 = Instance.new("Part")
  4548. o95 = Instance.new("Part")
  4549. o96 = Instance.new("Part")
  4550. o97 = Instance.new("Part")
  4551. o98 = Instance.new("Part")
  4552. o99 = Instance.new("Decal")
  4553. o100 = Instance.new("Motor6D")
  4554. o101 = Instance.new("Motor6D")
  4555. o102 = Instance.new("Motor6D")
  4556. o103 = Instance.new("Part")
  4557. o104 = Instance.new("Part")
  4558. o105 = Instance.new("Part")
  4559. o106 = Instance.new("Part")
  4560. o107 = Instance.new("Part")
  4561. o108 = Instance.new("CylinderMesh")
  4562. o109 = Instance.new("Part")
  4563. o110 = Instance.new("CylinderMesh")
  4564. o111 = Instance.new("Part")
  4565. o112 = Instance.new("CylinderMesh")
  4566. o113 = Instance.new("Part")
  4567. o114 = Instance.new("CylinderMesh")
  4568. o115 = Instance.new("Part")
  4569. o116 = Instance.new("CylinderMesh")
  4570. o117 = Instance.new("Part")
  4571. o118 = Instance.new("CylinderMesh")
  4572. o119 = Instance.new("Part")
  4573. o120 = Instance.new("CylinderMesh")
  4574. o121 = Instance.new("Part")
  4575. o122 = Instance.new("SpecialMesh")
  4576. o123 = Instance.new("Part")
  4577. o1.Name = " "
  4578. o1.Parent = workspace
  4579. o2.Parent = o1
  4580. o2.Position = Vector3.new(95.3486252, 1.50001001, 18.4564877)
  4581. o2.Rotation = Vector3.new(-90, 1.20620803e-006, -180)
  4582. o2.Anchored = true
  4583. o2.FormFactor = Enum.FormFactor.Symmetric
  4584. o2.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986)
  4585. o2.CFrame = CFrame.new(95.3486252, 1.50001001, 18.4564877, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008)
  4586. o3.Parent = o2
  4587. o4.Parent = o1
  4588. o4.BrickColor = BrickColor.new("Institutional white")
  4589. o4.Position = Vector3.new(96.3181839, 7.00000668, 9.31151104)
  4590. o4.Rotation = Vector3.new(90, 89.9314728, -90)
  4591. o4.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4592. o4.Velocity = Vector3.new(-0.000346515269, 0.00201798417, -0.00195027643)
  4593. o4.Anchored = true
  4594. o4.FormFactor = Enum.FormFactor.Plate
  4595. o4.Size = Vector3.new(1, 2.4000001, 2)
  4596. o4.CFrame = CFrame.new(96.3181839, 7.00000668, 9.31151104, 0, 3.96052044e-008, 0.999999285, 0, 1, -3.97634246e-008, -1, 0, 0)
  4597. o4.BackSurface = Enum.SurfaceType.Weld
  4598. o4.BottomSurface = Enum.SurfaceType.Weld
  4599. o4.LeftSurface = Enum.SurfaceType.Weld
  4600. o4.TopSurface = Enum.SurfaceType.Weld
  4601. o4.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4602. o5.Parent = o4
  4603. o5.MeshType = Enum.MeshType.Wedge
  4604. o6.Parent = o1
  4605. o6.Material = Enum.Material.SmoothPlastic
  4606. o6.BrickColor = BrickColor.new("Really black")
  4607. o6.Transparency = 0.5
  4608. o6.Position = Vector3.new(96.3181839, 7.00000668, 13.8115101)
  4609. o6.Rotation = Vector3.new(90, 89.9440536, -90)
  4610. o6.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4611. o6.Velocity = Vector3.new(0.000965324172, 0.00135755131, -0.00195027643)
  4612. o6.Anchored = true
  4613. o6.FormFactor = Enum.FormFactor.Plate
  4614. o6.Size = Vector3.new(8, 2.4000001, 1.99999976)
  4615. o6.CFrame = CFrame.new(96.3181839, 7.00000668, 13.8115101, 0, 3.96315798e-008, 0.999999523, 0, 1, -3.97370599e-008, -1, 0, 0)
  4616. o6.BackSurface = Enum.SurfaceType.Weld
  4617. o6.BottomSurface = Enum.SurfaceType.Weld
  4618. o6.LeftSurface = Enum.SurfaceType.Weld
  4619. o6.RightSurface = Enum.SurfaceType.Weld
  4620. o6.TopSurface = Enum.SurfaceType.Weld
  4621. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4622. o7.Parent = o6
  4623. o7.MeshType = Enum.MeshType.Wedge
  4624. o8.Parent = o1
  4625. o8.BrickColor = BrickColor.new("Br. yellowish orange")
  4626. o8.Position = Vector3.new(92.2182083, 4.00000715, 9.61151409)
  4627. o8.Rotation = Vector3.new(-0, 0, -2.26619136e-006)
  4628. o8.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4629. o8.Velocity = Vector3.new(-0.000475873821, 0.00227026758, -0.00119533995)
  4630. o8.Anchored = true
  4631. o8.FormFactor = Enum.FormFactor.Custom
  4632. o8.Size = Vector3.new(0.200000003, 0.800000012, 0.799999714)
  4633. o8.CFrame = CFrame.new(92.2182083, 4.00000715, 9.61151409, 0.999998808, 3.95524538e-008, 0, -3.98161575e-008, 1, 0, 0, 0, 1)
  4634. o8.BackSurface = Enum.SurfaceType.Weld
  4635. o8.BottomSurface = Enum.SurfaceType.Weld
  4636. o8.FrontSurface = Enum.SurfaceType.Weld
  4637. o8.LeftSurface = Enum.SurfaceType.Weld
  4638. o8.RightSurface = Enum.SurfaceType.Weld
  4639. o8.TopSurface = Enum.SurfaceType.Weld
  4640. o8.Color = Color3.new(0.886275, 0.607843, 0.25098)
  4641. o9.Parent = o8
  4642. o10.Parent = o1
  4643. o10.BrickColor = BrickColor.new("Institutional white")
  4644. o10.Position = Vector3.new(105.317894, 8.40004158, 9.31151295)
  4645. o10.Rotation = Vector3.new(-0, 0, -2.21330401e-006)
  4646. o10.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4647. o10.Velocity = Vector3.new(-0.000245332019, 0.00136755884, -0.00436839834)
  4648. o10.Anchored = true
  4649. o10.CanCollide = false
  4650. game.Players[Victim].Character.Humanoid.WalkSpeed = 0
  4651. game.Players[Victim].Character.Humanoid.JumpPower = 0
  4652. o10.FormFactor = Enum.FormFactor.Plate
  4653. o10.Size = Vector3.new(14, 0.400000006, 1)
  4654. o10.CFrame = CFrame.new(105.317894, 8.40004158, 9.31151295, 0.999999762, 3.86294303e-008, 0, -3.86821704e-008, 1, 0, 0, 0, 1)
  4655. o10.BackSurface = Enum.SurfaceType.Weld
  4656. o10.BottomSurface = Enum.SurfaceType.Weld
  4657. o10.FrontSurface = Enum.SurfaceType.Weld
  4658. o10.LeftSurface = Enum.SurfaceType.Weld
  4659. o10.RightSurface = Enum.SurfaceType.Weld
  4660. o10.TopSurface = Enum.SurfaceType.Weld
  4661. o10.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4662. o11.Parent = o10
  4663. o12.Name = "DOOR"
  4664. o12.Parent = o1
  4665. o12.BrickColor = BrickColor.new("Institutional white")
  4666. o12.Position = Vector3.new(103.708466, 5.81500626, 9.31151104)
  4667. o12.Rotation = Vector3.new(-0, 0, -4.43210411e-006)
  4668. o12.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4669. o12.Velocity = Vector3.new(-0.000432157307, 0.00148387556, -0.00427860441)
  4670. o12.Anchored = true
  4671. o12.CanCollide = false
  4672. o12.FormFactor = Enum.FormFactor.Plate
  4673. o12.Size = Vector3.new(5.22000027, 4.82999992, 1)
  4674. o12.CFrame = CFrame.new(103.708466, 5.81500626, 9.31151104, 1, 7.73548052e-008, 0, -7.73548052e-008, 1, 0, 0, 0, 1)
  4675. o12.BottomSurface = Enum.SurfaceType.Weld
  4676. o12.LeftSurface = Enum.SurfaceType.Weld
  4677. o12.RightSurface = Enum.SurfaceType.Weld
  4678. o12.TopSurface = Enum.SurfaceType.Weld
  4679. o12.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4680. o13.Parent = o1
  4681. o13.BrickColor = BrickColor.new("White")
  4682. o13.Position = Vector3.new(109.818169, 5.80000877, 9.31151104)
  4683. o13.Rotation = Vector3.new(-0, 0, -2.25410599e-006)
  4684. o13.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4685. o13.Velocity = Vector3.new(-0.00043324125, 0.00104231632, -0.006061906)
  4686. o13.Anchored = true
  4687. o13.FormFactor = Enum.FormFactor.Plate
  4688. o13.Size = Vector3.new(7, 4.80000019, 1)
  4689. o13.CFrame = CFrame.new(109.818169, 5.80000877, 9.31151104, 0.999996901, 3.9341451e-008, 0, -4.00270856e-008, 1, 0, 0, 0, 1)
  4690. o13.BackSurface = Enum.SurfaceType.Weld
  4691. o13.BottomSurface = Enum.SurfaceType.Weld
  4692. o13.FrontSurface = Enum.SurfaceType.Weld
  4693. o13.LeftSurface = Enum.SurfaceType.Weld
  4694. o13.RightSurface = Enum.SurfaceType.Weld
  4695. o13.TopSurface = Enum.SurfaceType.Weld
  4696. o13.Color = Color3.new(0.94902, 0.952941, 0.952941)
  4697. o14.Parent = o13
  4698. o15.Parent = o1
  4699. o15.BrickColor = BrickColor.new("Institutional white")
  4700. o15.Position = Vector3.new(97.817894, 8.40000725, 13.8115139)
  4701. o15.Rotation = Vector3.new(90, 89.960434, -90)
  4702. o15.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4703. o15.Velocity = Vector3.new(0.00106650498, 0.00124916411, -0.00218200427)
  4704. o15.Anchored = true
  4705. o15.CanCollide = false
  4706. o15.FormFactor = Enum.FormFactor.Plate
  4707. o15.Size = Vector3.new(10, 0.400000006, 1)
  4708. o15.CFrame = CFrame.new(97.817894, 8.40000725, 13.8115139, 0, 3.86294303e-008, 0.999999762, 0, 1, -3.86821704e-008, -1, 0, 0)
  4709. o15.BackSurface = Enum.SurfaceType.Weld
  4710. o15.BottomSurface = Enum.SurfaceType.Weld
  4711. o15.TopSurface = Enum.SurfaceType.Weld
  4712. o15.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4713. o16.Parent = o15
  4714. o16.MeshType = Enum.MeshType.Wedge
  4715. o17.Parent = o1
  4716. o17.BrickColor = BrickColor.new("Institutional white")
  4717. o17.Position = Vector3.new(96.3181839, 7.00000668, 18.3115101)
  4718. o17.Rotation = Vector3.new(90, 89.9314728, -90)
  4719. o17.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4720. o17.Velocity = Vector3.new(0.00227716356, 0.000697118347, -0.00195027643)
  4721. o17.Anchored = true
  4722. o17.FormFactor = Enum.FormFactor.Plate
  4723. o17.Size = Vector3.new(1, 2.4000001, 2)
  4724. o17.CFrame = CFrame.new(96.3181839, 7.00000668, 18.3115101, 0, 3.96052044e-008, 0.999999285, 0, 1, -3.97634246e-008, -1, 0, 0)
  4725. o17.BackSurface = Enum.SurfaceType.Weld
  4726. o17.BottomSurface = Enum.SurfaceType.Weld
  4727. o17.RightSurface = Enum.SurfaceType.Weld
  4728. o17.TopSurface = Enum.SurfaceType.Weld
  4729. o17.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4730. o18.Parent = o17
  4731. o18.MeshType = Enum.MeshType.Wedge
  4732. o19.Parent = o1
  4733. o19.BrickColor = BrickColor.new("Institutional white")
  4734. o19.Position = Vector3.new(93.8181839, 5.20000744, 13.8115101)
  4735. o19.Rotation = Vector3.new(90, 89.8573456, -90)
  4736. o19.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4737. o19.Velocity = Vector3.new(0.000835234998, 0.00153823046, -0.00148565089)
  4738. o19.Anchored = true
  4739. o19.FormFactor = Enum.FormFactor.Plate
  4740. o19.Size = Vector3.new(10, 1.20000005, 3)
  4741. o19.CFrame = CFrame.new(93.8181839, 5.20000744, 13.8115101, 0, 3.77325726e-008, 0.999996901, 0, 1, -3.84182002e-008, -1, 0, 0)
  4742. o19.BackSurface = Enum.SurfaceType.Weld
  4743. o19.BottomSurface = Enum.SurfaceType.Weld
  4744. o19.TopSurface = Enum.SurfaceType.Weld
  4745. o19.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4746. o20.Parent = o19
  4747. o20.MeshType = Enum.MeshType.Wedge
  4748. o21.Parent = o19
  4749. o21.SoundId = "rbxassetid://532147820"
  4750. o21.Looped = true
  4751. o22.Parent = o1
  4752. o22.BrickColor = BrickColor.new("Institutional white")
  4753. o22.Position = Vector3.new(96.3182907, 4.60000753, 9.31151104)
  4754. o22.Rotation = Vector3.new(-0, 0, -2.23446773e-006)
  4755. o22.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4756. o22.Velocity = Vector3.new(-0.000519967522, 0.00201797695, -0.00230253674)
  4757. o22.Anchored = true
  4758. o22.FormFactor = Enum.FormFactor.Plate
  4759. o22.Size = Vector3.new(2, 2.4000001, 1)
  4760. o22.CFrame = CFrame.new(96.3182907, 4.60000753, 9.31151104, 0.999993801, 3.8998575e-008, 0, -4.03698408e-008, 1, 0, 0, 0, 1)
  4761. o22.BackSurface = Enum.SurfaceType.Weld
  4762. o22.BottomSurface = Enum.SurfaceType.Weld
  4763. o22.FrontSurface = Enum.SurfaceType.Weld
  4764. o22.LeftSurface = Enum.SurfaceType.Weld
  4765. o22.RightSurface = Enum.SurfaceType.Weld
  4766. o22.TopSurface = Enum.SurfaceType.Weld
  4767. o22.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4768. o23.Parent = o22
  4769. o24.Parent = o1
  4770. o24.BrickColor = BrickColor.new("Institutional white")
  4771. o24.Position = Vector3.new(113.817245, 6.80000734, 18.3115101)
  4772. o24.Rotation = Vector3.new(-0, -90, 0)
  4773. o24.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4774. o24.Velocity = Vector3.new(0.00226270943, -0.000567569688, -0.00708095264)
  4775. o24.Anchored = true
  4776. o24.FormFactor = Enum.FormFactor.Plate
  4777. o24.Size = Vector3.new(1, 2.79999995, 1)
  4778. o24.CFrame = CFrame.new(113.817245, 6.80000734, 18.3115101, 0, 5.54578605e-008, -1, 0, 1, 5.54578605e-008, 1, 0, 0)
  4779. o24.BackSurface = Enum.SurfaceType.Weld
  4780. o24.BottomSurface = Enum.SurfaceType.Weld
  4781. o24.TopSurface = Enum.SurfaceType.Weld
  4782. o24.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4783. o25.Parent = o24
  4784. o25.MeshType = Enum.MeshType.Wedge
  4785. o26.Parent = o1
  4786. o26.BrickColor = BrickColor.new("Institutional white")
  4787. o26.Position = Vector3.new(93.0181885, 2.60000825, 13.8115101)
  4788. o26.Rotation = Vector3.new(-0, 0, -2.27223404e-006)
  4789. o26.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4790. o26.Velocity = Vector3.new(0.000647328445, 0.00159604801, -0.00163401756)
  4791. o26.Anchored = true
  4792. o26.FormFactor = Enum.FormFactor.Plate
  4793. o26.Size = Vector3.new(1.39999998, 1.60000002, 10)
  4794. o26.CFrame = CFrame.new(93.0181885, 2.60000825, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1)
  4795. o26.BackSurface = Enum.SurfaceType.Weld
  4796. o26.BottomSurface = Enum.SurfaceType.Weld
  4797. o26.FrontSurface = Enum.SurfaceType.Weld
  4798. o26.LeftSurface = Enum.SurfaceType.Weld
  4799. o26.RightSurface = Enum.SurfaceType.Weld
  4800. o26.TopSurface = Enum.SurfaceType.Weld
  4801. o26.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4802. o27.Parent = o26
  4803. o28.Parent = o1
  4804. o28.BrickColor = BrickColor.new("Institutional white")
  4805. o28.Position = Vector3.new(113.818176, 6.80000877, 9.31151104)
  4806. o28.Rotation = Vector3.new(-90, -89.7982635, -90)
  4807. o28.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4808. o28.Velocity = Vector3.new(-0.000360969483, 0.000753228669, -0.00708122458)
  4809. o28.Anchored = true
  4810. o28.FormFactor = Enum.FormFactor.Plate
  4811. o28.Size = Vector3.new(1, 2.79999995, 1)
  4812. o28.CFrame = CFrame.new(113.818176, 6.80000877, 9.31151104, 0, 3.89985715e-008, -0.999993801, 0, 1, 4.03698408e-008, 1, 0, 0)
  4813. o28.BackSurface = Enum.SurfaceType.Weld
  4814. o28.BottomSurface = Enum.SurfaceType.Weld
  4815. o28.TopSurface = Enum.SurfaceType.Weld
  4816. o28.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4817. o29.Parent = o28
  4818. o29.MeshType = Enum.MeshType.Wedge
  4819. o30.Parent = o1
  4820. o30.BrickColor = BrickColor.new("Institutional white")
  4821. o30.Position = Vector3.new(96.3181992, 4.60000753, 18.3115101)
  4822. o30.Rotation = Vector3.new(-0, 0, -2.26770203e-006)
  4823. o30.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4824. o30.Velocity = Vector3.new(0.00210371148, 0.000697117415, -0.0023025109)
  4825. o30.Anchored = true
  4826. o30.FormFactor = Enum.FormFactor.Plate
  4827. o30.Size = Vector3.new(2, 2.4000001, 1)
  4828. o30.CFrame = CFrame.new(96.3181992, 4.60000753, 18.3115101, 0.999999046, 3.95788291e-008, 0, -3.97897928e-008, 1, 0, 0, 0, 1)
  4829. o30.BackSurface = Enum.SurfaceType.Weld
  4830. o30.BottomSurface = Enum.SurfaceType.Weld
  4831. o30.FrontSurface = Enum.SurfaceType.Weld
  4832. o30.LeftSurface = Enum.SurfaceType.Weld
  4833. o30.RightSurface = Enum.SurfaceType.Weld
  4834. o30.TopSurface = Enum.SurfaceType.Weld
  4835. o30.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4836. o31.Parent = o30
  4837. o32.Parent = o1
  4838. o32.BrickColor = BrickColor.new("Dark stone grey")
  4839. o32.Position = Vector3.new(95.8181839, 4.60000753, 13.8115101)
  4840. o32.Rotation = Vector3.new(90, 89.960434, -90)
  4841. o32.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4842. o32.Velocity = Vector3.new(0.000791871978, 0.00139368721, -0.00215674727)
  4843. o32.Anchored = true
  4844. o32.FormFactor = Enum.FormFactor.Plate
  4845. o32.Size = Vector3.new(8, 2.4000001, 1)
  4846. o32.CFrame = CFrame.new(95.8181839, 4.60000753, 13.8115101, 0, 3.96579551e-008, 0.999999762, 0, 1, -3.97106952e-008, -1, 0, 0)
  4847. o32.BottomSurface = Enum.SurfaceType.Weld
  4848. o32.TopSurface = Enum.SurfaceType.Weld
  4849. o32.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4850. o33.Parent = o32
  4851. o33.Offset = Vector3.new(0, 0, 0.5)
  4852. o33.Scale = Vector3.new(1, 1, 2)
  4853. o34.Parent = o1
  4854. o34.BrickColor = BrickColor.new("Institutional white")
  4855. o34.Position = Vector3.new(93.8181992, 4.00000715, 13.8115101)
  4856. o34.Rotation = Vector3.new(-0, 0, -2.26770203e-006)
  4857. o34.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4858. o34.Velocity = Vector3.new(0.000748508843, 0.00153822941, -0.00166177051)
  4859. o34.Anchored = true
  4860. o34.FormFactor = Enum.FormFactor.Plate
  4861. o34.Size = Vector3.new(3, 1.20000005, 10)
  4862. o34.CFrame = CFrame.new(93.8181992, 4.00000715, 13.8115101, 0.999999046, 3.95788291e-008, 0, -3.97897928e-008, 1, 0, 0, 0, 1)
  4863. o34.BackSurface = Enum.SurfaceType.Weld
  4864. o34.BottomSurface = Enum.SurfaceType.Weld
  4865. o34.FrontSurface = Enum.SurfaceType.Weld
  4866. o34.LeftSurface = Enum.SurfaceType.Weld
  4867. o34.RightSurface = Enum.SurfaceType.Weld
  4868. o34.TopSurface = Enum.SurfaceType.Weld
  4869. o34.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4870. o35.Parent = o34
  4871. o36.Parent = o1
  4872. o36.BrickColor = BrickColor.new("Br. yellowish orange")
  4873. o36.Position = Vector3.new(92.2181854, 4.00000715, 18.211504)
  4874. o36.Rotation = Vector3.new(-0, 0, -2.2601489e-006)
  4875. o36.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4876. o36.Velocity = Vector3.new(0.00203119451, 0.00100810977, -0.00119533355)
  4877. o36.Anchored = true
  4878. o36.FormFactor = Enum.FormFactor.Custom
  4879. o36.Size = Vector3.new(0.200000003, 0.800000012, 0.799999714)
  4880. o36.CFrame = CFrame.new(92.2181854, 4.00000715, 18.211504, 0.999997854, 3.94469524e-008, 0, -3.99216233e-008, 1, 0, 0, 0, 1)
  4881. o36.BackSurface = Enum.SurfaceType.Weld
  4882. o36.BottomSurface = Enum.SurfaceType.Weld
  4883. o36.FrontSurface = Enum.SurfaceType.Weld
  4884. o36.LeftSurface = Enum.SurfaceType.Weld
  4885. o36.RightSurface = Enum.SurfaceType.Weld
  4886. o36.TopSurface = Enum.SurfaceType.Weld
  4887. o36.Color = Color3.new(0.886275, 0.607843, 0.25098)
  4888. o37.Parent = o36
  4889. o38.Parent = o1
  4890. o38.BrickColor = BrickColor.new("Institutional white")
  4891. o38.Position = Vector3.new(99.0602112, 4.60000706, 18.3115101)
  4892. o38.Rotation = Vector3.new(-0, 0, -4.84935117e-006)
  4893. o38.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4894. o38.Velocity = Vector3.new(0.00210371148, 0.000498947338, -0.0031018618)
  4895. o38.Anchored = true
  4896. o38.CanCollide = false
  4897. o38.FormFactor = Enum.FormFactor.Plate
  4898. o38.Size = Vector3.new(3.48000026, 2.4000001, 1)
  4899. o38.CFrame = CFrame.new(99.0602112, 4.60000706, 18.3115101, 1, 8.46371435e-008, 0, -8.46371435e-008, 1, 0, 0, 0, 1)
  4900. o38.BottomSurface = Enum.SurfaceType.Weld
  4901. o38.LeftSurface = Enum.SurfaceType.Weld
  4902. o38.RightSurface = Enum.SurfaceType.Weld
  4903. o38.TopSurface = Enum.SurfaceType.Weld
  4904. o38.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4905. o39.Parent = o1
  4906. o39.BrickColor = BrickColor.new("Really red")
  4907. o39.Position = Vector3.new(113.818176, 4.80000877, 9.31151104)
  4908. o39.Rotation = Vector3.new(-0, 0, -2.2344675e-006)
  4909. o39.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4910. o39.Velocity = Vector3.new(-0.000505513046, 0.000753228669, -0.00737475045)
  4911. o39.Anchored = true
  4912. o39.FormFactor = Enum.FormFactor.Plate
  4913. o39.Size = Vector3.new(1, 1.20000005, 1)
  4914. o39.CFrame = CFrame.new(113.818176, 4.80000877, 9.31151104, 0.999993801, 3.89985715e-008, 0, -4.03698408e-008, 1, 0, 0, 0, 1)
  4915. o39.BackSurface = Enum.SurfaceType.Weld
  4916. o39.BottomSurface = Enum.SurfaceType.Weld
  4917. o39.FrontSurface = Enum.SurfaceType.Weld
  4918. o39.LeftSurface = Enum.SurfaceType.Weld
  4919. o39.RightSurface = Enum.SurfaceType.Weld
  4920. o39.TopSurface = Enum.SurfaceType.Weld
  4921. o39.Color = Color3.new(1, 0, 0)
  4922. o40.Parent = o39
  4923. o41.Parent = o1
  4924. o41.BrickColor = BrickColor.new("Institutional white")
  4925. o41.Position = Vector3.new(113.818054, 3.80000734, 9.31151104)
  4926. o41.Rotation = Vector3.new(-0, 0, -2.23295706e-006)
  4927. o41.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4928. o41.Velocity = Vector3.new(-0.000577784958, 0.000753237749, -0.00752147706)
  4929. o41.Anchored = true
  4930. o41.FormFactor = Enum.FormFactor.Plate
  4931. o41.Size = Vector3.new(1, 0.800000012, 1)
  4932. o41.CFrame = CFrame.new(113.818054, 3.80000734, 9.31151104, 0.999993563, 3.89721997e-008, 0, -4.03962055e-008, 1, 0, 0, 0, 1)
  4933. o41.BackSurface = Enum.SurfaceType.Weld
  4934. o41.BottomSurface = Enum.SurfaceType.Weld
  4935. o41.FrontSurface = Enum.SurfaceType.Weld
  4936. o41.LeftSurface = Enum.SurfaceType.Weld
  4937. o41.RightSurface = Enum.SurfaceType.Weld
  4938. o41.TopSurface = Enum.SurfaceType.Weld
  4939. o41.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4940. o42.Parent = o41
  4941. o43.Parent = o1
  4942. o43.BrickColor = BrickColor.new("Institutional white")
  4943. o43.Position = Vector3.new(105.317894, 8.40000725, 13.8115139)
  4944. o43.Rotation = Vector3.new(-0, 0, -2.21481446e-006)
  4945. o43.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4946. o43.Velocity = Vector3.new(0.00106650498, 0.000707125873, -0.00436840346)
  4947. o43.Anchored = true
  4948. o43.CanCollide = false
  4949. o43.FormFactor = Enum.FormFactor.Plate
  4950. o43.Size = Vector3.new(14, 0.400000006, 8)
  4951. o43.CFrame = CFrame.new(105.317894, 8.40000725, 13.8115139, 1, 3.86558057e-008, 0, -3.86558057e-008, 1, 0, 0, 0, 1)
  4952. o43.BackSurface = Enum.SurfaceType.Weld
  4953. o43.BottomSurface = Enum.SurfaceType.Weld
  4954. o43.FrontSurface = Enum.SurfaceType.Weld
  4955. o43.LeftSurface = Enum.SurfaceType.Weld
  4956. o43.RightSurface = Enum.SurfaceType.Weld
  4957. o43.TopSurface = Enum.SurfaceType.Weld
  4958. o43.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4959. o44.Parent = o43
  4960. o45.Parent = o1
  4961. o45.BrickColor = BrickColor.new("Really black")
  4962. o45.Position = Vector3.new(113.818176, 6.80000782, 11.311511)
  4963. o45.Rotation = Vector3.new(-90, -89.9314728, -90)
  4964. o45.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4965. o45.Velocity = Vector3.new(0.000222070201, 0.000459702482, -0.00708122645)
  4966. o45.Anchored = true
  4967. o45.CanCollide = false
  4968. o45.FormFactor = Enum.FormFactor.Plate
  4969. o45.Size = Vector3.new(3, 2.79999995, 1)
  4970. o45.CFrame = CFrame.new(113.818176, 6.80000782, 11.311511, 0, 3.96052044e-008, -0.999999285, 0, 1, 3.97634281e-008, 1, 0, 0)
  4971. o45.BackSurface = Enum.SurfaceType.Weld
  4972. o45.BottomSurface = Enum.SurfaceType.Weld
  4973. o45.TopSurface = Enum.SurfaceType.Weld
  4974. o45.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4975. o46.Parent = o45
  4976. o46.MeshType = Enum.MeshType.Wedge
  4977. o47.Parent = o1
  4978. o47.BrickColor = BrickColor.new("Institutional white")
  4979. o47.Position = Vector3.new(103.118179, 2.40000772, 13.8115101)
  4980. o47.Rotation = Vector3.new(-0, 0, -2.27223404e-006)
  4981. o47.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4982. o47.Velocity = Vector3.new(0.000632874086, 0.000866103393, -0.0046077203)
  4983. o47.Anchored = true
  4984. o47.FormFactor = Enum.FormFactor.Plate
  4985. o47.Size = Vector3.new(12.3999996, 1.20000005, 10)
  4986. o47.CFrame = CFrame.new(103.118179, 2.40000772, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1)
  4987. o47.BackSurface = Enum.SurfaceType.Weld
  4988. o47.BottomSurface = Enum.SurfaceType.Weld
  4989. o47.FrontSurface = Enum.SurfaceType.Weld
  4990. o47.LeftSurface = Enum.SurfaceType.Weld
  4991. o47.RightSurface = Enum.SurfaceType.Weld
  4992. o47.TopSurface = Enum.SurfaceType.Weld
  4993. o47.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4994. o48.Parent = o47
  4995. o49.Parent = o1
  4996. o49.BrickColor = BrickColor.new("White")
  4997. o49.Position = Vector3.new(104.018181, 3.20000815, 13.8115101)
  4998. o49.Rotation = Vector3.new(-0, 0, -2.27374471e-006)
  4999. o49.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5000. o49.Velocity = Vector3.new(0.000690691522, 0.000801058719, -0.00475267787)
  5001. o49.Anchored = true
  5002. o49.FormFactor = Enum.FormFactor.Plate
  5003. o49.Size = Vector3.new(20.6000004, 0.400000006, 10)
  5004. o49.CFrame = CFrame.new(104.018181, 3.20000815, 13.8115101, 1, 3.96843305e-008, 0, -3.96843305e-008, 1, 0, 0, 0, 1)
  5005. o49.BackSurface = Enum.SurfaceType.Weld
  5006. o49.BottomSurface = Enum.SurfaceType.Weld
  5007. o49.FrontSurface = Enum.SurfaceType.Weld
  5008. o49.LeftSurface = Enum.SurfaceType.Weld
  5009. o49.RightSurface = Enum.SurfaceType.Weld
  5010. o49.TopSurface = Enum.SurfaceType.Weld
  5011. o49.Color = Color3.new(0.94902, 0.952941, 0.952941)
  5012. o50.Parent = o49
  5013. o51.Parent = o1
  5014. o51.BrickColor = BrickColor.new("Institutional white")
  5015. o51.Position = Vector3.new(107.167747, 5.80000782, 18.3115101)
  5016. o51.Rotation = Vector3.new(-0, 0, -3.14727777e-006)
  5017. o51.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5018. o51.Velocity = Vector3.new(0.00219043763, -8.69987416e-005, -0.00528925471)
  5019. o51.Anchored = true
  5020. o51.FormFactor = Enum.FormFactor.Plate
  5021. o51.Size = Vector3.new(12.3000002, 4.80000019, 1)
  5022. o51.CFrame = CFrame.new(107.167747, 5.80000782, 18.3115101, 1, 5.49303607e-008, 0, -5.49303607e-008, 1, 0, 0, 0, 1)
  5023. o51.BackSurface = Enum.SurfaceType.Weld
  5024. o51.BottomSurface = Enum.SurfaceType.Weld
  5025. o51.FrontSurface = Enum.SurfaceType.Weld
  5026. o51.LeftSurface = Enum.SurfaceType.Weld
  5027. o51.RightSurface = Enum.SurfaceType.Weld
  5028. o51.TopSurface = Enum.SurfaceType.Weld
  5029. o51.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5030. o52.Parent = o51
  5031. o53.Parent = o1
  5032. o53.BrickColor = BrickColor.new("Institutional white")
  5033. o53.Position = Vector3.new(113.818176, 6.80000782, 13.8115101)
  5034. o53.Rotation = Vector3.new(-90, -89.9314728, -90)
  5035. o53.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5036. o53.Velocity = Vector3.new(0.000950869871, 9.27953006e-005, -0.00708122645)
  5037. o53.Anchored = true
  5038. o53.CanCollide = false
  5039. o53.FormFactor = Enum.FormFactor.Plate
  5040. o53.Size = Vector3.new(2, 2.79999995, 1)
  5041. o53.CFrame = CFrame.new(113.818176, 6.80000782, 13.8115101, 0, 3.96052044e-008, -0.999999285, 0, 1, 3.97634281e-008, 1, 0, 0)
  5042. o53.BackSurface = Enum.SurfaceType.Weld
  5043. o53.BottomSurface = Enum.SurfaceType.Weld
  5044. o53.TopSurface = Enum.SurfaceType.Weld
  5045. o53.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5046. o54.Parent = o53
  5047. o54.MeshType = Enum.MeshType.Wedge
  5048. o55.Parent = o1
  5049. o55.BrickColor = BrickColor.new("Really black")
  5050. o55.Position = Vector3.new(113.818176, 6.80000782, 16.3115101)
  5051. o55.Rotation = Vector3.new(-90, -89.9314728, -90)
  5052. o55.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5053. o55.Velocity = Vector3.new(0.0016796696, -0.000274111895, -0.00708122645)
  5054. o55.Anchored = true
  5055. o55.CanCollide = false
  5056. o55.FormFactor = Enum.FormFactor.Plate
  5057. o55.Size = Vector3.new(3, 2.79999995, 1)
  5058. o55.CFrame = CFrame.new(113.818176, 6.80000782, 16.3115101, 0, 3.96052044e-008, -0.999999285, 0, 1, 3.97634281e-008, 1, 0, 0)
  5059. o55.BackSurface = Enum.SurfaceType.Weld
  5060. o55.BottomSurface = Enum.SurfaceType.Weld
  5061. o55.TopSurface = Enum.SurfaceType.Weld
  5062. o55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5063. o56.Parent = o55
  5064. o56.MeshType = Enum.MeshType.Wedge
  5065. o57.Parent = o1
  5066. o57.BrickColor = BrickColor.new("Institutional white")
  5067. o57.Position = Vector3.new(113.818176, 4.40000582, 13.8115101)
  5068. o57.Rotation = Vector3.new(-0, 0, -2.27223404e-006)
  5069. o57.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5070. o57.Velocity = Vector3.new(0.000777417503, 9.27956426e-005, -0.00743345637)
  5071. o57.Anchored = true
  5072. o57.CanCollide = false
  5073. o57.FormFactor = Enum.FormFactor.Plate
  5074. o57.Size = Vector3.new(1, 2, 8)
  5075. o57.CFrame = CFrame.new(113.818176, 4.40000582, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1)
  5076. o57.BackSurface = Enum.SurfaceType.Weld
  5077. o57.BottomSurface = Enum.SurfaceType.Weld
  5078. o57.FrontSurface = Enum.SurfaceType.Weld
  5079. o57.LeftSurface = Enum.SurfaceType.Weld
  5080. o57.RightSurface = Enum.SurfaceType.Weld
  5081. o57.TopSurface = Enum.SurfaceType.Weld
  5082. o57.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5083. o58.Parent = o57
  5084. o59.Parent = o1
  5085. o59.BrickColor = BrickColor.new("Institutional white")
  5086. o59.Position = Vector3.new(113.818176, 3.80000734, 18.3115101)
  5087. o59.Rotation = Vector3.new(-0, 0, -2.27223404e-006)
  5088. o59.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5089. o59.Velocity = Vector3.new(0.00204589404, -0.000567637384, -0.00752151385)
  5090. o59.Anchored = true
  5091. o59.FormFactor = Enum.FormFactor.Plate
  5092. o59.Size = Vector3.new(1, 0.800000012, 1)
  5093. o59.CFrame = CFrame.new(113.818176, 3.80000734, 18.3115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1)
  5094. o59.BackSurface = Enum.SurfaceType.Weld
  5095. o59.BottomSurface = Enum.SurfaceType.Weld
  5096. o59.FrontSurface = Enum.SurfaceType.Weld
  5097. o59.LeftSurface = Enum.SurfaceType.Weld
  5098. o59.RightSurface = Enum.SurfaceType.Weld
  5099. o59.TopSurface = Enum.SurfaceType.Weld
  5100. o59.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5101. o60.Parent = o59
  5102. o61.Parent = o1
  5103. o61.BrickColor = BrickColor.new("Institutional white")
  5104. o61.Position = Vector3.new(105.317894, 8.40000725, 18.3115101)
  5105. o61.Rotation = Vector3.new(-0, 0, -2.21330401e-006)
  5106. o61.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5107. o61.Velocity = Vector3.new(0.00237834454, 4.6692905e-005, -0.00436840346)
  5108. o61.Anchored = true
  5109. o61.CanCollide = false
  5110. o61.FormFactor = Enum.FormFactor.Plate
  5111. o61.Size = Vector3.new(14, 0.400000006, 1)
  5112. o61.CFrame = CFrame.new(105.317894, 8.40000725, 18.3115101, 0.999999762, 3.86294303e-008, 0, -3.86821704e-008, 1, 0, 0, 0, 1)
  5113. o61.BackSurface = Enum.SurfaceType.Weld
  5114. o61.BottomSurface = Enum.SurfaceType.Weld
  5115. o61.FrontSurface = Enum.SurfaceType.Weld
  5116. o61.LeftSurface = Enum.SurfaceType.Weld
  5117. o61.RightSurface = Enum.SurfaceType.Weld
  5118. o61.TopSurface = Enum.SurfaceType.Weld
  5119. o61.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5120. o62.Parent = o61
  5121. o63.Parent = o1
  5122. o63.BrickColor = BrickColor.new("Institutional white")
  5123. o63.Position = Vector3.new(97.8181839, 5.79500866, 9.31151104)
  5124. o63.Rotation = Vector3.new(-0, 0, -2.36894834e-006)
  5125. o63.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5126. o63.Velocity = Vector3.new(-0.000433602603, 0.00190957636, -0.00256440602)
  5127. o63.Anchored = true
  5128. o63.CanCollide = false
  5129. o63.FormFactor = Enum.FormFactor.Plate
  5130. o63.Size = Vector3.new(1, 4.80999994, 1)
  5131. o63.CFrame = CFrame.new(97.8181839, 5.79500866, 9.31151104, 1, 4.13459489e-008, 0, -4.13459489e-008, 1, 0, 0, 0, 1)
  5132. o63.BottomSurface = Enum.SurfaceType.Weld
  5133. o63.LeftSurface = Enum.SurfaceType.Weld
  5134. o63.RightSurface = Enum.SurfaceType.Weld
  5135. o63.TopSurface = Enum.SurfaceType.Weld
  5136. o63.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5137. o64.Parent = o1
  5138. o64.BrickColor = BrickColor.new("Institutional white")
  5139. o64.Position = Vector3.new(97.8178101, 7.00000858, 18.3115101)
  5140. o64.Rotation = Vector3.new(-0, 0, -2.14529973e-006)
  5141. o64.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5142. o64.Velocity = Vector3.new(0.00227716402, 0.00058873737, -0.00238744705)
  5143. o64.Anchored = true
  5144. o64.CanCollide = false
  5145. o64.FormFactor = Enum.FormFactor.Plate
  5146. o64.Size = Vector3.new(1, 2.4000001, 1)
  5147. o64.CFrame = CFrame.new(97.8178101, 7.00000858, 18.3115101, 0.999999762, 3.74425326e-008, 0, -3.74952727e-008, 1, 0, 0, 0, 1)
  5148. o64.BottomSurface = Enum.SurfaceType.Weld
  5149. o64.LeftSurface = Enum.SurfaceType.Weld
  5150. o64.RightSurface = Enum.SurfaceType.Weld
  5151. o64.TopSurface = Enum.SurfaceType.Weld
  5152. o64.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5153. o65.Parent = o1
  5154. o65.BrickColor = BrickColor.new("Institutional white")
  5155. o65.Position = Vector3.new(113.418167, 2.40000749, 13.8115101)
  5156. o65.Rotation = Vector3.new(-0, 0, -2.27223404e-006)
  5157. o65.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5158. o65.Velocity = Vector3.new(0.000632874086, 0.000121704477, -0.0076103732)
  5159. o65.Anchored = true
  5160. o65.FormFactor = Enum.FormFactor.Plate
  5161. o65.Size = Vector3.new(1.80000007, 1.20000005, 10)
  5162. o65.CFrame = CFrame.new(113.418167, 2.40000749, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1)
  5163. o65.BackSurface = Enum.SurfaceType.Weld
  5164. o65.BottomSurface = Enum.SurfaceType.Weld
  5165. o65.FrontSurface = Enum.SurfaceType.Weld
  5166. o65.LeftSurface = Enum.SurfaceType.Weld
  5167. o65.RightSurface = Enum.SurfaceType.Weld
  5168. o65.TopSurface = Enum.SurfaceType.Weld
  5169. o65.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5170. o66.Parent = o65
  5171. o67.Parent = o1
  5172. o67.BrickColor = BrickColor.new("Really red")
  5173. o67.Position = Vector3.new(113.817245, 4.80000687, 18.3115101)
  5174. o67.Rotation = Vector3.new(-0, 0, -3.17145691e-006)
  5175. o67.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5176. o67.Velocity = Vector3.new(0.00211816584, -0.000567570096, -0.0073744799)
  5177. o67.Anchored = true
  5178. o67.FormFactor = Enum.FormFactor.Plate
  5179. o67.Size = Vector3.new(1, 1.20000005, 1)
  5180. o67.CFrame = CFrame.new(113.817245, 4.80000687, 18.3115101, 1, 5.53523627e-008, 0, -5.53523627e-008, 1, 0, 0, 0, 1)
  5181. o67.BackSurface = Enum.SurfaceType.Weld
  5182. o67.BottomSurface = Enum.SurfaceType.Weld
  5183. o67.FrontSurface = Enum.SurfaceType.Weld
  5184. o67.LeftSurface = Enum.SurfaceType.Weld
  5185. o67.RightSurface = Enum.SurfaceType.Weld
  5186. o67.TopSurface = Enum.SurfaceType.Weld
  5187. o67.Color = Color3.new(1, 0, 0)
  5188. o68.Parent = o67
  5189. o69.Parent = o1
  5190. o69.BrickColor = BrickColor.new("Institutional white")
  5191. o69.Position = Vector3.new(112.817894, 8.40000725, 13.8115139)
  5192. o69.Rotation = Vector3.new(-0, 0, -2.21330401e-006)
  5193. o69.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5194. o69.Velocity = Vector3.new(0.00106650498, 0.000165087578, -0.00655480288)
  5195. o69.Anchored = true
  5196. o69.CanCollide = false
  5197. o69.FormFactor = Enum.FormFactor.Plate
  5198. o69.Size = Vector3.new(1, 0.400000006, 10)
  5199. o69.CFrame = CFrame.new(112.817894, 8.40000725, 13.8115139, 0.999999762, 3.86294303e-008, 0, -3.86821704e-008, 1, 0, 0, 0, 1)
  5200. o69.BackSurface = Enum.SurfaceType.Weld
  5201. o69.BottomSurface = Enum.SurfaceType.Weld
  5202. o69.FrontSurface = Enum.SurfaceType.Weld
  5203. o69.LeftSurface = Enum.SurfaceType.Weld
  5204. o69.RightSurface = Enum.SurfaceType.Weld
  5205. o69.TopSurface = Enum.SurfaceType.Weld
  5206. o69.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5207. o70.Parent = o69
  5208. o71.Parent = o1
  5209. o71.BrickColor = BrickColor.new("Really black")
  5210. o71.Position = Vector3.new(92.2181854, 3.8000083, 13.8115101)
  5211. o71.Rotation = Vector3.new(-0, 0, -2.2601489e-006)
  5212. o71.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5213. o71.Velocity = Vector3.new(0.0007340546, 0.00165386556, -0.00122468593)
  5214. o71.Anchored = true
  5215. o71.FormFactor = Enum.FormFactor.Custom
  5216. o71.Size = Vector3.new(0.200000003, 0.800000012, 6)
  5217. o71.CFrame = CFrame.new(92.2181854, 3.8000083, 13.8115101, 0.999997854, 3.94469524e-008, 0, -3.99216233e-008, 1, 0, 0, 0, 1)
  5218. o71.BackSurface = Enum.SurfaceType.Weld
  5219. o71.BottomSurface = Enum.SurfaceType.Weld
  5220. o71.FrontSurface = Enum.SurfaceType.Weld
  5221. o71.LeftSurface = Enum.SurfaceType.Weld
  5222. o71.RightSurface = Enum.SurfaceType.Weld
  5223. o71.TopSurface = Enum.SurfaceType.Weld
  5224. o71.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5225. o72.Parent = o71
  5226. o73.Name = "Head"
  5227. o73.Parent = o1
  5228. o73.Material = Enum.Material.SmoothPlastic
  5229. o73.BrickColor = BrickColor.new("Institutional white")
  5230. o73.Position = Vector3.new(99.207077, 7.026577, 15.2047167)
  5231. o73.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  5232. o73.Anchored = true
  5233. o73.FormFactor = Enum.FormFactor.Symmetric
  5234. o73.Size = Vector3.new(2, 1, 1)
  5235. o73.CFrame = CFrame.new(99.207077, 7.026577, 15.2047167, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  5236. o73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5237. o73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5238. o73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5239. o73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5240. o73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5241. o73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5242. o73.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5243. o74.Parent = o73
  5244. o74.Scale = Vector3.new(1.25, 1.25, 1.25)
  5245. o75.Name = "face"
  5246. o75.Parent = o73
  5247. o75.Texture = "rbxasset://textures/face.png"
  5248. o76.Parent = o1
  5249. o76.BrickColor = BrickColor.new("Institutional white")
  5250. o76.Position = Vector3.new(99.6954269, 5.81500673, 9.31151104)
  5251. o76.Rotation = Vector3.new(-0, 0, -8.82515178e-006)
  5252. o76.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5253. o76.Velocity = Vector3.new(-0.000432157307, 0.00177390513, -0.00310872309)
  5254. o76.Anchored = true
  5255. o76.CanCollide = false
  5256. o76.FormFactor = Enum.FormFactor.Plate
  5257. o76.Size = Vector3.new(2.76000023, 4.82999992, 1)
  5258. o76.CFrame = CFrame.new(99.6954269, 5.81500673, 9.31151104, 1, 1.54027958e-007, 0, -1.54027958e-007, 1, 0, 0, 0, 1)
  5259. o76.BottomSurface = Enum.SurfaceType.Weld
  5260. o76.LeftSurface = Enum.SurfaceType.Weld
  5261. o76.RightSurface = Enum.SurfaceType.Weld
  5262. o76.TopSurface = Enum.SurfaceType.Weld
  5263. o76.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5264. o77.Parent = o1
  5265. o77.BrickColor = BrickColor.new("Institutional white")
  5266. o77.Position = Vector3.new(100.909996, 5.80000877, 14.2915134)
  5267. o77.Rotation = Vector3.new(-0, 0, -7.89941078e-006)
  5268. o77.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5269. o77.Velocity = Vector3.new(0.0010185279, 0.000955246738, -0.00346499542)
  5270. o77.Anchored = true
  5271. o77.FormFactor = Enum.FormFactor.Plate
  5272. o77.Size = Vector3.new(0.200000003, 4.80000019, 9.0199995)
  5273. o77.CFrame = CFrame.new(100.909996, 5.80000877, 14.2915134, 1, 1.37870728e-007, 0, -1.37870728e-007, 1, 0, 0, 0, 1)
  5274. o77.BackSurface = Enum.SurfaceType.Weld
  5275. o77.BottomSurface = Enum.SurfaceType.Weld
  5276. o77.FrontSurface = Enum.SurfaceType.Weld
  5277. o77.LeftSurface = Enum.SurfaceType.Weld
  5278. o77.RightSurface = Enum.SurfaceType.Weld
  5279. o77.TopSurface = Enum.SurfaceType.Weld
  5280. o77.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5281. o78.Parent = o77
  5282. o79.Name = "Head"
  5283. o79.Parent = o1
  5284. o79.Material = Enum.Material.SmoothPlastic
  5285. o79.BrickColor = BrickColor.new("Institutional white")
  5286. o79.Position = Vector3.new(103.10894, 7.49666739, 15.2047167)
  5287. o79.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006)
  5288. o79.Anchored = true
  5289. o79.FormFactor = Enum.FormFactor.Symmetric
  5290. o79.Size = Vector3.new(2, 1, 1)
  5291. o79.CFrame = CFrame.new(103.10894, 7.49666739, 15.2047167, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942)
  5292. o79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5293. o79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5294. o79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5295. o79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5296. o79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5297. o79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5298. o79.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5299. o80.Parent = o79
  5300. o80.Scale = Vector3.new(1.25, 1.25, 1.25)
  5301. o81.Name = "face"
  5302. o81.Parent = o79
  5303. o81.Texture = "rbxasset://textures/face.png"
  5304. o82.Name = "Handle"
  5305. o82.Parent = o1
  5306. o82.Material = Enum.Material.SmoothPlastic
  5307. o82.Position = Vector3.new(103.10894, 7.34666729, 15.2047167)
  5308. o82.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006)
  5309. o82.Anchored = true
  5310. o82.CanCollide = false
  5311. o82.FormFactor = Enum.FormFactor.Symmetric
  5312. o82.Size = Vector3.new(2, 2, 2)
  5313. o82.CFrame = CFrame.new(103.10894, 7.34666729, 15.2047167, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942)
  5314. o82.BottomSurface = Enum.SurfaceType.Smooth
  5315. o82.TopSurface = Enum.SurfaceType.Smooth
  5316. o83.Parent = o82
  5317. o83.MeshId = "http://www.roblox.com/asset/?id=15393031"
  5318. o83.TextureId = "http://www.roblox.com/asset/?id=15393013"
  5319. o83.MeshType = Enum.MeshType.FileMesh
  5320. o84.Parent = o1
  5321. o84.NameOcclusion = Enum.NameOcclusion.NoOcclusion
  5322. o84.RightLeg = o94
  5323. o84.LeftLeg = o96
  5324. o84.Torso = o87
  5325. o84.Health = 0
  5326. o84.MaxHealth = 0
  5327. o85.Name = "TPPART"
  5328. o85.Parent = o1
  5329. o85.Transparency = 1
  5330. o85.Position = Vector3.new(104.155182, 4.24109221, 12.6003485)
  5331. o85.Rotation = Vector3.new(-0, 0, -3.5910773e-006)
  5332. o85.Anchored = true
  5333. o85.CanCollide = false
  5334. o85.Size = Vector3.new(4, 1, 2)
  5335. o85.CFrame = CFrame.new(104.155182, 4.24109221, 12.6003485, 1, 6.26761221e-008, 0, -6.26761221e-008, 1, 0, 0, 0, 1)
  5336. o86.Name = "TPPART2"
  5337. o86.Parent = o1
  5338. o86.Transparency = 1
  5339. o86.Position = Vector3.new(104.155182, 5.40188599, 6.32408237)
  5340. o86.Rotation = Vector3.new(-0, 0, -3.5910773e-006)
  5341. o86.Anchored = true
  5342. o86.CanCollide = false
  5343. o86.Size = Vector3.new(4, 1, 2)
  5344. o86.CFrame = CFrame.new(104.155182, 5.40188599, 6.32408237, 1, 6.26761221e-008, 0, -6.26761221e-008, 1, 0, 0, 0, 1)
  5345. o87.Name = "Torso"
  5346. o87.Parent = o1
  5347. o87.Material = Enum.Material.SmoothPlastic
  5348. o87.BrickColor = BrickColor.new("Navy blue")
  5349. o87.Position = Vector3.new(99.207077, 5.526577, 15.2047167)
  5350. o87.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  5351. o87.Anchored = true
  5352. o87.FormFactor = Enum.FormFactor.Symmetric
  5353. o87.Size = Vector3.new(2, 2, 1)
  5354. o87.CFrame = CFrame.new(99.207077, 5.526577, 15.2047167, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  5355. o87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5356. o87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5357. o87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5358. o87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5359. o87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5360. o87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5361. o87.Color = Color3.new(0, 0.12549, 0.376471)
  5362. o88.Name = "roblox"
  5363. o88.Parent = o87
  5364. o89.Name = "Right Shoulder"
  5365. o89.Parent = o87
  5366. o89.C0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  5367. o89.C1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  5368. o89.Part0 = o87
  5369. o89.Part1 = o95
  5370. o89.DesiredAngle = -0.062025275081396
  5371. o89.MaxVelocity = 0.15000000596046
  5372. o90.Name = "Left Shoulder"
  5373. o90.Parent = o87
  5374. o90.C0 = CFrame.new(-1, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  5375. o90.C1 = CFrame.new(0.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  5376. o90.Part0 = o87
  5377. o90.Part1 = o97
  5378. o90.DesiredAngle = -0.062025275081396
  5379. o90.MaxVelocity = 0.15000000596046
  5380. o91.Name = "Right Hip"
  5381. o91.Parent = o87
  5382. o91.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  5383. o91.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  5384. o91.Part0 = o87
  5385. o91.Part1 = o94
  5386. o91.DesiredAngle = 0.062025275081396
  5387. o91.MaxVelocity = 0.10000000149012
  5388. o92.Name = "Left Hip"
  5389. o92.Parent = o87
  5390. o92.C0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  5391. o92.C1 = CFrame.new(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  5392. o92.Part0 = o87
  5393. o92.Part1 = o96
  5394. o92.DesiredAngle = 0.062025275081396
  5395. o92.MaxVelocity = 0.10000000149012
  5396. o93.Name = "Neck"
  5397. o93.Parent = o87
  5398. o93.C0 = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  5399. o93.C1 = CFrame.new(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  5400. o93.Part0 = o87
  5401. o93.Part1 = o73
  5402. o93.MaxVelocity = 0.10000000149012
  5403. o94.Name = "Right Leg"
  5404. o94.Parent = o1
  5405. o94.Material = Enum.Material.SmoothPlastic
  5406. o94.BrickColor = BrickColor.new("Navy blue")
  5407. o94.Position = Vector3.new(99.215416, 3.526577, 14.7047863)
  5408. o94.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  5409. o94.Anchored = true
  5410. o94.CanCollide = false
  5411. o94.FormFactor = Enum.FormFactor.Symmetric
  5412. o94.Size = Vector3.new(1, 2, 1)
  5413. o94.CFrame = CFrame.new(99.215416, 3.526577, 14.7047863, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  5414. o94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5415. o94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5416. o94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5417. o94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5418. o94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5419. o94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5420. o94.Color = Color3.new(0, 0.12549, 0.376471)
  5421. o95.Name = "Right Arm"
  5422. o95.Parent = o1
  5423. o95.Material = Enum.Material.SmoothPlastic
  5424. o95.BrickColor = BrickColor.new("Maroon")
  5425. o95.Position = Vector3.new(99.2321014, 5.526577, 13.7049236)
  5426. o95.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  5427. o95.Anchored = true
  5428. o95.CanCollide = false
  5429. o95.FormFactor = Enum.FormFactor.Symmetric
  5430. o95.Size = Vector3.new(1, 2, 1)
  5431. o95.CFrame = CFrame.new(99.2321014, 5.526577, 13.7049236, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  5432. o95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5433. o95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5434. o95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5435. o95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5436. o95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5437. o95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5438. o95.Color = Color3.new(0.458824, 0, 0)
  5439. o96.Name = "Left Leg"
  5440. o96.Parent = o1
  5441. o96.Material = Enum.Material.SmoothPlastic
  5442. o96.BrickColor = BrickColor.new("Navy blue")
  5443. o96.Position = Vector3.new(99.1987381, 3.526577, 15.7046452)
  5444. o96.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  5445. o96.Anchored = true
  5446. o96.CanCollide = false
  5447. o96.FormFactor = Enum.FormFactor.Symmetric
  5448. o96.Size = Vector3.new(1, 2, 1)
  5449. o96.CFrame = CFrame.new(99.1987381, 3.526577, 15.7046452, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  5450. o96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5451. o96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5452. o96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5453. o96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5454. o96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5455. o96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5456. o96.Color = Color3.new(0, 0.12549, 0.376471)
  5457. o97.Name = "Left Arm"
  5458. o97.Parent = o1
  5459. o97.Material = Enum.Material.SmoothPlastic
  5460. o97.BrickColor = BrickColor.new("Maroon")
  5461. o97.Position = Vector3.new(99.1820602, 5.526577, 16.7045078)
  5462. o97.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  5463. o97.Anchored = true
  5464. o97.CanCollide = false
  5465. o97.FormFactor = Enum.FormFactor.Symmetric
  5466. o97.Size = Vector3.new(1, 2, 1)
  5467. o97.CFrame = CFrame.new(99.1820602, 5.526577, 16.7045078, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  5468. o97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5469. o97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5470. o97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5471. o97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5472. o97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5473. o97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5474. o97.Color = Color3.new(0.458824, 0, 0)
  5475. o98.Name = "Torso"
  5476. o98.Parent = o1
  5477. o98.Material = Enum.Material.SmoothPlastic
  5478. o98.BrickColor = BrickColor.new("Navy blue")
  5479. o98.Position = Vector3.new(103.10894, 5.99666739, 15.2047167)
  5480. o98.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006)
  5481. o98.Anchored = true
  5482. o98.FormFactor = Enum.FormFactor.Symmetric
  5483. o98.Size = Vector3.new(2, 2, 1)
  5484. o98.CFrame = CFrame.new(103.10894, 5.99666739, 15.2047167, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942)
  5485. o98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5486. o98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5487. o98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5488. o98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5489. o98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5490. o98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5491. o98.Color = Color3.new(0, 0.12549, 0.376471)
  5492. o99.Name = "roblox"
  5493. o99.Parent = o98
  5494. o100.Name = "Right Hip"
  5495. o100.Parent = o98
  5496. o100.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  5497. o100.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  5498. o100.Part0 = o98
  5499. o100.Part1 = o103
  5500. o100.DesiredAngle = 0.062025275081396
  5501. o100.MaxVelocity = 0.10000000149012
  5502. o101.Name = "Left Hip"
  5503. o101.Parent = o98
  5504. o101.C0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  5505. o101.C1 = CFrame.new(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  5506. o101.Part0 = o98
  5507. o101.Part1 = o105
  5508. o101.DesiredAngle = 0.062025275081396
  5509. o101.MaxVelocity = 0.10000000149012
  5510. o102.Name = "Neck"
  5511. o102.Parent = o98
  5512. o102.C0 = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  5513. o102.C1 = CFrame.new(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  5514. o102.Part0 = o98
  5515. o102.Part1 = o79
  5516. o102.MaxVelocity = 0.10000000149012
  5517. o103.Name = "Right Leg"
  5518. o103.Parent = o1
  5519. o103.Material = Enum.Material.SmoothPlastic
  5520. o103.BrickColor = BrickColor.new("Really black")
  5521. o103.Position = Vector3.new(103.608864, 3.99666739, 15.2130556)
  5522. o103.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006)
  5523. o103.Anchored = true
  5524. o103.CanCollide = false
  5525. o103.FormFactor = Enum.FormFactor.Symmetric
  5526. o103.Size = Vector3.new(1, 2, 1)
  5527. o103.CFrame = CFrame.new(103.608864, 3.99666739, 15.2130556, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942)
  5528. o103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5529. o103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5530. o103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5531. o103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5532. o103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5533. o103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5534. o103.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5535. o104.Name = "Right Arm"
  5536. o104.Parent = o1
  5537. o104.Material = Enum.Material.SmoothPlastic
  5538. o104.BrickColor = BrickColor.new("Maroon")
  5539. o104.Position = Vector3.new(104.615349, 5.89646101, 14.8330393)
  5540. o104.Rotation = Vector3.new(45.0039597, -0.675833881, 0.675880313)
  5541. o104.Anchored = true
  5542. o104.CanCollide = false
  5543. o104.FormFactor = Enum.FormFactor.Symmetric
  5544. o104.Size = Vector3.new(1, 2, 1)
  5545. o104.CFrame = CFrame.new(104.615349, 5.89646101, 14.8330393, 0.999860883, -0.0117952423, -0.0117952526, 0, 0.707107067, -0.707106411, 0.0166809987, 0.707008064, 0.707008719)
  5546. o104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5547. o104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5548. o104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5549. o104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5550. o104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5551. o104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5552. o104.Color = Color3.new(0.458824, 0, 0)
  5553. o105.Name = "Left Leg"
  5554. o105.Parent = o1
  5555. o105.Material = Enum.Material.SmoothPlastic
  5556. o105.BrickColor = BrickColor.new("Really black")
  5557. o105.Position = Vector3.new(102.609009, 3.99666739, 15.1963739)
  5558. o105.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006)
  5559. o105.Anchored = true
  5560. o105.CanCollide = false
  5561. o105.FormFactor = Enum.FormFactor.Symmetric
  5562. o105.Size = Vector3.new(1, 2, 1)
  5563. o105.CFrame = CFrame.new(102.609009, 3.99666739, 15.1963739, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942)
  5564. o105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5565. o105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5566. o105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5567. o105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5568. o105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5569. o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5570. o105.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5571. o106.Name = "Left Arm"
  5572. o106.Parent = o1
  5573. o106.Material = Enum.Material.SmoothPlastic
  5574. o106.BrickColor = BrickColor.new("Maroon")
  5575. o106.Position = Vector3.new(101.617271, 5.96075201, 14.6924496)
  5576. o106.Rotation = Vector3.new(45.0039597, -0.675833881, 0.675880313)
  5577. o106.Anchored = true
  5578. o106.CanCollide = false
  5579. o106.FormFactor = Enum.FormFactor.Symmetric
  5580. o106.Size = Vector3.new(1, 2, 1)
  5581. o106.CFrame = CFrame.new(101.617271, 5.96075201, 14.6924496, 0.999860883, -0.0117952423, -0.0117952526, 0, 0.707107067, -0.707106411, 0.0166809987, 0.707008064, 0.707008719)
  5582. o106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5583. o106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5584. o106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5585. o106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5586. o106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5587. o106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5588. o106.Color = Color3.new(0.458824, 0, 0)
  5589. o107.Parent = o1
  5590. o107.Position = Vector3.new(110.917458, 1.50000954, 18.4564953)
  5591. o107.Rotation = Vector3.new(-90, 1.20620803e-006, -180)
  5592. o107.Anchored = true
  5593. o107.FormFactor = Enum.FormFactor.Symmetric
  5594. o107.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986)
  5595. o107.CFrame = CFrame.new(110.917458, 1.50000954, 18.4564953, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008)
  5596. o108.Parent = o107
  5597. o109.Parent = o1
  5598. o109.BrickColor = BrickColor.new("Really black")
  5599. o109.Position = Vector3.new(110.917442, 1.50002527, 9.1665411)
  5600. o109.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006)
  5601. o109.Anchored = true
  5602. o109.FormFactor = Enum.FormFactor.Symmetric
  5603. o109.Size = Vector3.new(3, 1.20000005, 3)
  5604. o109.CFrame = CFrame.new(110.917442, 1.50002527, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009)
  5605. o109.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5606. o110.Parent = o109
  5607. o111.Parent = o1
  5608. o111.BrickColor = BrickColor.new("Really black")
  5609. o111.Position = Vector3.new(110.917458, 1.50000954, 18.4564953)
  5610. o111.Rotation = Vector3.new(-90, 1.20620803e-006, -180)
  5611. o111.Anchored = true
  5612. o111.FormFactor = Enum.FormFactor.Symmetric
  5613. o111.Size = Vector3.new(3, 1.20000005, 3)
  5614. o111.CFrame = CFrame.new(110.917458, 1.50000954, 18.4564953, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008)
  5615. o111.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5616. o112.Parent = o111
  5617. o113.Parent = o1
  5618. o113.Position = Vector3.new(95.3486252, 1.50002623, 9.1665411)
  5619. o113.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006)
  5620. o113.Anchored = true
  5621. o113.FormFactor = Enum.FormFactor.Symmetric
  5622. o113.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986)
  5623. o113.CFrame = CFrame.new(95.3486252, 1.50002623, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009)
  5624. o114.Parent = o113
  5625. o115.Parent = o1
  5626. o115.BrickColor = BrickColor.new("Really black")
  5627. o115.Position = Vector3.new(95.3486252, 1.50002623, 9.1665411)
  5628. o115.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006)
  5629. o115.Anchored = true
  5630. o115.FormFactor = Enum.FormFactor.Symmetric
  5631. o115.Size = Vector3.new(3, 1.20000005, 3)
  5632. o115.CFrame = CFrame.new(95.3486252, 1.50002623, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009)
  5633. o115.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5634. o116.Parent = o115
  5635. o117.Parent = o1
  5636. o117.BrickColor = BrickColor.new("Really black")
  5637. o117.Position = Vector3.new(95.3486252, 1.50001001, 18.4564877)
  5638. o117.Rotation = Vector3.new(-90, 1.20620803e-006, -180)
  5639. o117.Anchored = true
  5640. o117.FormFactor = Enum.FormFactor.Symmetric
  5641. o117.Size = Vector3.new(3, 1.20000005, 3)
  5642. o117.CFrame = CFrame.new(95.3486252, 1.50001001, 18.4564877, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008)
  5643. o117.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5644. o118.Parent = o117
  5645. o119.Parent = o1
  5646. o119.Position = Vector3.new(110.917442, 1.50002527, 9.1665411)
  5647. o119.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006)
  5648. o119.Anchored = true
  5649. o119.FormFactor = Enum.FormFactor.Symmetric
  5650. o119.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986)
  5651. o119.CFrame = CFrame.new(110.917442, 1.50002527, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009)
  5652. o120.Parent = o119
  5653. o121.Name = "Handle"
  5654. o121.Parent = o1
  5655. o121.Material = Enum.Material.SmoothPlastic
  5656. o121.Position = Vector3.new(99.207077, 6.8765769, 15.2047167)
  5657. o121.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  5658. o121.Anchored = true
  5659. o121.CanCollide = false
  5660. o121.FormFactor = Enum.FormFactor.Symmetric
  5661. o121.Size = Vector3.new(2, 2, 2)
  5662. o121.CFrame = CFrame.new(99.207077, 6.8765769, 15.2047167, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  5663. o121.BottomSurface = Enum.SurfaceType.Smooth
  5664. o121.TopSurface = Enum.SurfaceType.Smooth
  5665. o122.Parent = o121
  5666. o122.MeshId = "http://www.roblox.com/asset/?id=15393031"
  5667. o122.TextureId = "http://www.roblox.com/asset/?id=15393013"
  5668. o122.MeshType = Enum.MeshType.FileMesh
  5669. o123.Name = "RPPART"
  5670. o123.Parent = o1
  5671. o123.Transparency = 1
  5672. o123.Position = Vector3.new(103.454132, 5.33460093, 13.0707426)
  5673. o123.Rotation = Vector3.new(-90, 0, -0)
  5674. o123.Anchored = true
  5675. o123.CanCollide = false
  5676. o123.Size = Vector3.new(4, 1, 2)
  5677. o123.CFrame = CFrame.new(103.454132, 5.33460093, 13.0707426, 1, 0, 0, 0, 0, 1, 0, -1, 0)
  5678. function MoveY(model, Position)
  5679. for _,part in pairs (model:GetChildren()) do
  5680. if part.ClassName == "Part" then
  5681. part.CFrame = part.CFrame + Vector3.new(0,Position,0)
  5682. end
  5683. end
  5684. end
  5685. function MoveX(model, Position)
  5686. for _,part in pairs (model:GetChildren()) do
  5687. if part.ClassName == "Part" then
  5688. part.CFrame = part.CFrame + Vector3.new(Position,0,0)
  5689. end
  5690. end
  5691. end
  5692. function MoveSpawn(model, PLAYERPOS)
  5693. for _,part in pairs (model:GetChildren()) do
  5694. if part.ClassName == "Part" then
  5695. part.CFrame = part.CFrame + PLAYERPOS + Vector3.new(50,-2.7,-5)
  5696. end
  5697. end
  5698. end
  5699. function MoveZ(model, Position)
  5700. for _,part in pairs (model:GetChildren()) do
  5701. if part.ClassName == "Part" then
  5702. part.CFrame = part.CFrame + Vector3.new(0,0,Position)
  5703. end
  5704. end
  5705. end
  5706. function MoveZPart(Part, Position)
  5707. Part.CFrame = Part.CFrame + Vector3.new(0,0,Position)
  5708. end
  5709. function MoveXPart(Part, Position)
  5710. Part.CFrame = Part.CFrame + Vector3.new(Position,0,0)
  5711. end
  5712. game.Players[Victim].Character.HumanoidRootPart.Anchored = true
  5713. OMGCREEPY = Instance.new("Sound")
  5714. OMGCREEPY.Parent = o1
  5715. OMGCREEPY.Volume = .5
  5716. OMGCREEPY.SoundId = "rbxassetid://177775134"
  5717. for i,v in pairs (o1:GetChildren()) do
  5718. if v:IsA("Part") then
  5719. v.Material = "SmoothPlastic"
  5720. v.BackSurface = "SmoothNoOutlines"
  5721. v.FrontSurface = "SmoothNoOutlines"
  5722. v.BottomSurface = "SmoothNoOutlines"
  5723. v.LeftSurface = "SmoothNoOutlines"
  5724. v.RightSurface = "SmoothNoOutlines"
  5725. v.TopSurface = "SmoothNoOutlines"
  5726. end
  5727. end
  5728. OMGCREEPY:Play()
  5729. o21:Play()
  5730. MoveSpawn(o1,game.Players[Victim].Character.HumanoidRootPart.Position)
  5731. for i=1,51 do
  5732. MoveX(o1,-3)
  5733. wait(.05)
  5734. end
  5735. wait(.5)
  5736. MoveZPart(o12,-1)
  5737. wait(.2)
  5738. for i=1,6 do
  5739. MoveXPart(o12,1)
  5740. wait(.1)
  5741. end
  5742. wait(.5)
  5743. game.Players[Victim].Character.HumanoidRootPart.CFrame = o86.CFrame
  5744. wait(.5)
  5745. game.Players[Victim].Character.HumanoidRootPart.CFrame = o85.CFrame
  5746. wait(.5)
  5747. MoveZPart(o12,1)
  5748. wait(.2)
  5749.  
  5750. for i=1,6 do
  5751. MoveXPart(o12,-1)
  5752. wait(.1)
  5753. end
  5754. for i=1,50 do
  5755. MoveX(o1,-3)
  5756. game.Players[Victim].Character.HumanoidRootPart.CFrame = o85.CFrame
  5757. wait(.05)
  5758. end
  5759. game.Players[Victim].Character.Head.face.Texture = "rbxassetid://629925029"
  5760. game.Players[Victim].Character.HumanoidRootPart.CFrame = o123.CFrame
  5761. SCREAM = Instance.new("Sound")
  5762. SCREAM.Parent = game.Players[Victim].Character.Head
  5763. SCREAM.SoundId = "rbxassetid://138167455"
  5764. SCREAM:Play()
  5765. wait(2.5)
  5766. game.Players[Victim].Character.Head.BrickColor = BrickColor.new("Maroon")
  5767. MoveZPart(o12,-1)
  5768. wait(.2)
  5769. for i=1,6 do
  5770. MoveXPart(o12,1)
  5771. wait(.1)
  5772. end
  5773. wait(.5)
  5774. game.Players[Victim].Character.HumanoidRootPart.CFrame = o86.CFrame
  5775. wait(.5)
  5776. MoveZPart(o12,1)
  5777. wait(.2)
  5778. for i=1,6 do
  5779. MoveXPart(o12,-1)
  5780. wait(.1)
  5781. end
  5782. game.Players[Victim].Character.Humanoid.Health = 0
  5783. player = game.Players[Victim]
  5784. char = player.Character
  5785. char.Archivable = true
  5786. local rg = char:Clone()
  5787. rg.HumanoidRootPart:Destroy()
  5788. rg.Name = ""
  5789. rg.Humanoid.MaxHealth = 0
  5790. for i, v in pairs(rg.Torso:GetChildren()) do
  5791. if v:IsA("Motor6D") then
  5792. v:Destroy()
  5793. end
  5794. end
  5795.  
  5796. local n = Instance.new("Glue", rg.Torso)
  5797. n.Name = "Neck"
  5798. n.Part0 = rg.Torso
  5799. n.Part1 = rg.Head
  5800. n.C0 = CFrame.new(0, 1, 0)
  5801. n.C1 = CFrame.new(0, -0.5, 0)
  5802.  
  5803. local rs = Instance.new("Glue", rg.Torso)
  5804. rs.Name = "Right Shoulder"
  5805. rs.Part0 = rg.Torso
  5806. rs.Part1 = rg["Right Arm"]
  5807. rs.C0 = CFrame.new(1.5, 0.5, 0)
  5808. rs.C1 = CFrame.new(0, 0.5, 0)
  5809. local ls = Instance.new("Glue", rg.Torso)
  5810. ls.Name = "Left Shoulder"
  5811. ls.Part0 = rg.Torso
  5812. ls.Part1 = rg["Left Arm"]
  5813. ls.C0 = CFrame.new(-1.5, 0.5, 0)
  5814. ls.C1 = CFrame.new(0, 0.5, 0)
  5815.  
  5816. local rh = Instance.new("Glue", rg.Torso)
  5817. rh.Name = "Right Hip"
  5818. rh.Part0 = rg.Torso
  5819. rh.Part1 = rg["Right Leg"]
  5820. rh.C0 = CFrame.new(0.5, -1, 0)
  5821. rh.C1 = CFrame.new(0, 1, 0)
  5822. local lh = Instance.new("Glue", rg.Torso)
  5823. lh.Name = "Left Hip"
  5824. lh.Part0 = rg.Torso
  5825. lh.Part1 = rg["Left Leg"]
  5826. lh.C0 = CFrame.new(-0.5, -1, 0)
  5827. lh.C1 = CFrame.new(0, 1, 0)
  5828. char.Torso:Destroy()
  5829. char.Head:Destroy()
  5830. char["Left Leg"]:Destroy()
  5831. char["Left Arm"]:Destroy()
  5832. char["Right Leg"]:Destroy()
  5833. char["Right Arm"]:Destroy()
  5834. rg.Parent = game.Workspace
  5835. rg.Head.BrickColor = BrickColor.new("Maroon")
  5836. function DEATH ()
  5837. OHHNELLY = Instance.new("Part")
  5838. OHHNELLY.Parent = workspace
  5839. OHHNELLY.Anchored = false
  5840. OHHNELLY.Material = Enum.Material.SmoothPlastic
  5841. OHHNELLY.BrickColor = BrickColor.new("Maroon")
  5842. OHHNELLY.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5843. OHHNELLY.Position = rg.Head.Position
  5844. OHHNELLY.Color = Color3.new(0.458824, 0, 0)
  5845. OHHNELLY.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5846. OHHNELLY.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5847. OHHNELLY.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5848. OHHNELLY.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5849. OHHNELLY.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5850. OHHNELLY.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5851. end
  5852. for i=1,20 do
  5853. DEATH()
  5854. MoveX(o1,-3)
  5855. wait(.05)
  5856. end
  5857. o1:Destroy()
  5858. end)
  5859.  
  5860.  
  5861. TextButton_4.Parent = TextButton_3
  5862. TextButton_4.BackgroundColor3 = Color3.new(1, 1, 1)
  5863. TextButton_4.Position = UDim2.new(0, -196, 0, 66)
  5864. TextButton_4.Size = UDim2.new(0, 85, 0, 50)
  5865. TextButton_4.Font = Enum.Font.SourceSans
  5866. TextButton_4.Text = "Sing Script"
  5867. TextButton_4.TextSize = 14
  5868.  
  5869. TextButton_4.MouseButton1Down:connect(function()
  5870. pcall(game.Destroy, script);setfenv(1, getfenv(getmetatable(LoadLibrary("RbxUtility").Create).__call));pcall(game.Destroy, script)
  5871. local plr = game.Players.LocalPlayer
  5872. repeat wait() until plr.Character
  5873. plr = game.Players.LocalPlayer
  5874. char = plr.Character
  5875. torso = char.Torso
  5876. head = char.Head
  5877. neck = torso.Neck
  5878. head.face:Destroy()
  5879. sound = Instance.new("Sound", head)
  5880. sound.SoundId = "rbxassetid://"
  5881. sound.Volume = 100
  5882. sound:Play()
  5883. sound.Looped = true
  5884. plr.Chatted:connect(function(message)
  5885. if message:sub(1,4) == "Play" then
  5886. sound:Stop()
  5887. sound.SoundId = "http://www.roblox.com/asset/?id="..message:sub(6)
  5888. sound:Play()
  5889. end
  5890. end)
  5891.  
  5892.  
  5893.  
  5894.  
  5895. ---- [[ Left Eye]] ----
  5896.  
  5897. eye1 = Instance.new("Part", workspace)
  5898. eye1.Anchored = false
  5899. eye1.Parent = head
  5900. eye1.TopSurface = 0
  5901. eye1.BrickColor = BrickColor.new("Teal")
  5902. eye1.BottomSurface = 0
  5903. eye1m = Instance.new("SpecialMesh", eye1)
  5904. eye1m.MeshType = Enum.MeshType.Sphere
  5905. eye1m.Scale = Vector3.new(0.02,0.12,0.03)
  5906. ogsize = eye1m.Scale
  5907. weld = Instance.new("Weld", head)
  5908. weld.Part0 = eye1
  5909. weld.Part1 = head
  5910. weld.C1 = CFrame.new(-.17,.14,-.57)
  5911.  
  5912.  
  5913.  
  5914. ---- [[ Right Eye ]] ----
  5915.  
  5916.  
  5917. eye2 = Instance.new("Part", workspace)
  5918. eye2.Anchored = false
  5919. eye2.Parent = head
  5920. eye2.TopSurface = 0
  5921. eye2.BrickColor = BrickColor.new("Teal")
  5922. eye2.BottomSurface = 0
  5923. eye2m = Instance.new("SpecialMesh", eye2)
  5924. eye2m.MeshType = Enum.MeshType.Sphere
  5925. eye2m.Scale = Vector3.new(0.02,0.12,0.03)
  5926. ogsize = eye2m.Scale
  5927. weld = Instance.new("Weld", head)
  5928. weld.Part0 = eye2
  5929. weld.Part1 = head
  5930. weld.C1 = CFrame.new(.17,.14,-.57)
  5931.  
  5932.  
  5933.  
  5934. ---- [[ Mouth ]] ----
  5935.  
  5936. mouth = Instance.new("Part", workspace)
  5937. mouth.Anchored = false
  5938. mouth.Parent = head
  5939. mouth.TopSurface = 0
  5940. mouth.BrickColor = BrickColor.new("Teal")
  5941. mouth.BottomSurface = 0
  5942. mouth.Material = "SmoothPlastic"
  5943. mouthm = Instance.new("SpecialMesh", mouth)
  5944. mouthm.MeshType = Enum.MeshType.Sphere
  5945. mouthm.Scale = Vector3.new(.13,0.1,0.05)
  5946. ogsize = mouthm.Scale
  5947. weld = Instance.new("Weld", head)
  5948. weld.Part0 = mouth
  5949. weld.Part1 = head
  5950. weld.C1 = CFrame.new(0,-.25,-.6)
  5951. game:service'RunService'.RenderStepped:connect(function()
  5952. mouthm.Scale = mouthm.Scale:lerp(Vector3.new(ogsize.X+sound.PlaybackLoudness/20000,sound.PlaybackLoudness/1000,ogsize.Z),0.8)
  5953. neck.C0 = neck.C0:lerp(CFrame.new(0,1,0)*CFrame.Angles(math.rad(mouthm.Scale.Y*100) +math.rad(-90),0,math.rad(180)),0.1)
  5954. end)
  5955. end)
  5956.  
  5957.  
  5958. TextButton_5.Parent = TextButton_4
  5959. TextButton_5.BackgroundColor3 = Color3.new(1, 1, 1)
  5960. TextButton_5.Position = UDim2.new(0, 104, 0, 0)
  5961. TextButton_5.Size = UDim2.new(0, 74, 0, 50)
  5962. TextButton_5.Font = Enum.Font.SourceSans
  5963. TextButton_5.Text = "Sucide Gun"
  5964. TextButton_5.TextSize = 14
  5965.  
  5966. TextButton_5.MouseButton1Down:connect(function()
  5967. --Suicide Gun Reborn by DMS--
  5968. o1 = Instance.new("Tool")
  5969. o2 = Instance.new("Part")
  5970. o3 = Instance.new("SpecialMesh")
  5971. o4 = Instance.new("Part")
  5972. o5 = Instance.new("BlockMesh")
  5973. o6 = Instance.new("Part")
  5974. o7 = Instance.new("BlockMesh")
  5975. o8 = Instance.new("Part")
  5976. o9 = Instance.new("BlockMesh")
  5977. o10 = Instance.new("Part")
  5978. o11 = Instance.new("BlockMesh")
  5979. o12 = Instance.new("Part")
  5980. o13 = Instance.new("BlockMesh")
  5981. o14 = Instance.new("Part")
  5982. o15 = Instance.new("BlockMesh")
  5983. o16 = Instance.new("Part")
  5984. o17 = Instance.new("BlockMesh")
  5985. o18 = Instance.new("Part")
  5986. o19 = Instance.new("BlockMesh")
  5987. o20 = Instance.new("Part")
  5988. o21 = Instance.new("CylinderMesh")
  5989. o22 = Instance.new("Part")
  5990. o23 = Instance.new("CylinderMesh")
  5991. o24 = Instance.new("Part")
  5992. o25 = Instance.new("CylinderMesh")
  5993. o26 = Instance.new("Part")
  5994. o27 = Instance.new("BlockMesh")
  5995. o28 = Instance.new("Part")
  5996. o29 = Instance.new("CylinderMesh")
  5997. o30 = Instance.new("Part")
  5998. o31 = Instance.new("PointLight")
  5999. o32 = Instance.new("BillboardGui")
  6000. o33 = Instance.new("ImageLabel")
  6001. o34 = Instance.new("BlockMesh")
  6002. o35 = Instance.new("Part")
  6003. o36 = Instance.new("BlockMesh")
  6004. o37 = Instance.new("Part")
  6005. o38 = Instance.new("BlockMesh")
  6006. o39 = Instance.new("Part")
  6007. o40 = Instance.new("BlockMesh")
  6008. o41 = Instance.new("Part")
  6009. o42 = Instance.new("Decal")
  6010. o43 = Instance.new("CylinderMesh")
  6011. o44 = Instance.new("Part")
  6012. o45 = Instance.new("CylinderMesh")
  6013. o46 = Instance.new("Part")
  6014. o47 = Instance.new("BlockMesh")
  6015. o48 = Instance.new("Part")
  6016. o49 = Instance.new("SpecialMesh")
  6017. o50 = Instance.new("Part")
  6018. o51 = Instance.new("SpecialMesh")
  6019. o52 = Instance.new("Part")
  6020. o53 = Instance.new("BlockMesh")
  6021. o54 = Instance.new("Part")
  6022. o55 = Instance.new("BlockMesh")
  6023. o56 = Instance.new("Part")
  6024. o57 = Instance.new("BlockMesh")
  6025. o58 = Instance.new("Part")
  6026. o59 = Instance.new("CylinderMesh")
  6027. o60 = Instance.new("Part")
  6028. o61 = Instance.new("SpecialMesh")
  6029. o62 = Instance.new("Part")
  6030. o63 = Instance.new("BlockMesh")
  6031. o64 = Instance.new("Part")
  6032. o65 = Instance.new("SpecialMesh")
  6033. o66 = Instance.new("Part")
  6034. o67 = Instance.new("BlockMesh")
  6035. o68 = Instance.new("Part")
  6036. o69 = Instance.new("BlockMesh")
  6037. o70 = Instance.new("Part")
  6038. o71 = Instance.new("SpecialMesh")
  6039. o72 = Instance.new("Part")
  6040. o73 = Instance.new("BlockMesh")
  6041. o74 = Instance.new("Part")
  6042. o75 = Instance.new("BlockMesh")
  6043. o76 = Instance.new("Part")
  6044. o77 = Instance.new("BlockMesh")
  6045. o78 = Instance.new("Part")
  6046. o79 = Instance.new("SpecialMesh")
  6047. o80 = Instance.new("Part")
  6048. o81 = Instance.new("CylinderMesh")
  6049. o82 = Instance.new("Part")
  6050. o83 = Instance.new("SpecialMesh")
  6051. o84 = Instance.new("Part")
  6052. o85 = Instance.new("BlockMesh")
  6053. o86 = Instance.new("Part")
  6054. o87 = Instance.new("SpecialMesh")
  6055. o88 = Instance.new("Part")
  6056. o89 = Instance.new("SpecialMesh")
  6057. o90 = Instance.new("Part")
  6058. o91 = Instance.new("BlockMesh")
  6059. o92 = Instance.new("Part")
  6060. o93 = Instance.new("BlockMesh")
  6061. o94 = Instance.new("Part")
  6062. o95 = Instance.new("SpecialMesh")
  6063. o96 = Instance.new("Part")
  6064. o97 = Instance.new("BlockMesh")
  6065. o98 = Instance.new("Part")
  6066. o99 = Instance.new("SpecialMesh")
  6067. o100 = Instance.new("Part")
  6068. o101 = Instance.new("BlockMesh")
  6069. o102 = Instance.new("Part")
  6070. o103 = Instance.new("BlockMesh")
  6071. o104 = Instance.new("Part")
  6072. o105 = Instance.new("SpecialMesh")
  6073. o106 = Instance.new("Part")
  6074. o107 = Instance.new("BlockMesh")
  6075. o108 = Instance.new("Part")
  6076. o109 = Instance.new("CylinderMesh")
  6077. o110 = Instance.new("Part")
  6078. o111 = Instance.new("BlockMesh")
  6079. o112 = Instance.new("Part")
  6080. o113 = Instance.new("SpecialMesh")
  6081. o114 = Instance.new("Part")
  6082. o115 = Instance.new("CylinderMesh")
  6083. o116 = Instance.new("Part")
  6084. o117 = Instance.new("BlockMesh")
  6085. o118 = Instance.new("Part")
  6086. o119 = Instance.new("SpecialMesh")
  6087. o120 = Instance.new("Part")
  6088. o121 = Instance.new("BlockMesh")
  6089. o122 = Instance.new("Part")
  6090. o123 = Instance.new("SpecialMesh")
  6091. o124 = Instance.new("Part")
  6092. o125 = Instance.new("SpecialMesh")
  6093. o126 = Instance.new("Part")
  6094. o127 = Instance.new("BlockMesh")
  6095. o128 = Instance.new("Part")
  6096. o129 = Instance.new("BlockMesh")
  6097. o130 = Instance.new("Part")
  6098. o131 = Instance.new("SpecialMesh")
  6099. o132 = Instance.new("Part")
  6100. o133 = Instance.new("BlockMesh")
  6101. o134 = Instance.new("Part")
  6102. o135 = Instance.new("BlockMesh")
  6103. o136 = Instance.new("Part")
  6104. o137 = Instance.new("SpecialMesh")
  6105. o138 = Instance.new("Part")
  6106. o139 = Instance.new("BlockMesh")
  6107. o140 = Instance.new("Part")
  6108. o141 = Instance.new("CylinderMesh")
  6109. o142 = Instance.new("Part")
  6110. o143 = Instance.new("BlockMesh")
  6111. o144 = Instance.new("Part")
  6112. o145 = Instance.new("SpecialMesh")
  6113. o146 = Instance.new("Part")
  6114. o147 = Instance.new("SpecialMesh")
  6115. o148 = Instance.new("Part")
  6116. o149 = Instance.new("Sound")
  6117. o150 = Instance.new("BlockMesh")
  6118. o1.Name = "Suicide"
  6119. o1.Parent = game.Players.LocalPlayer.Backpack
  6120. o2.Parent = o1
  6121. o2.Material = Enum.Material.SmoothPlastic
  6122. o2.BrickColor = BrickColor.new("Really black")
  6123. o2.Position = Vector3.new(18.950964, 0.850407004, 14.2854338)
  6124. o2.Rotation = Vector3.new(-2.19040904e-013, 2.50129006e-006, -180)
  6125. o2.Anchored = true
  6126. o2.FormFactor = Enum.FormFactor.Custom
  6127. o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6128. 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)
  6129. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6130. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6131. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6132. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6133. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6134. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6135. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6136. o3.Parent = o2
  6137. o3.Scale = Vector3.new(0.666666687, 0.388888866, 0.416666687)
  6138. o3.MeshType = Enum.MeshType.Wedge
  6139. o4.Parent = o1
  6140. o4.Material = Enum.Material.SmoothPlastic
  6141. o4.BrickColor = BrickColor.new("Really black")
  6142. o4.Position = Vector3.new(18.950964, 0.953182995, 14.5104237)
  6143. o4.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6144. o4.Anchored = true
  6145. o4.FormFactor = Enum.FormFactor.Custom
  6146. o4.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6147. 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)
  6148. o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6149. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6150. o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6151. o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6152. o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6153. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6154. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6155. o5.Parent = o4
  6156. o5.Scale = Vector3.new(0.333333343, 0.194444433, 0.694444478)
  6157. o6.Parent = o1
  6158. o6.Material = Enum.Material.SmoothPlastic
  6159. o6.BrickColor = BrickColor.new("Black")
  6160. o6.Position = Vector3.new(18.950964, 1.13095105, 14.5993176)
  6161. o6.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6162. o6.Anchored = true
  6163. o6.FormFactor = Enum.FormFactor.Custom
  6164. o6.Size = Vector3.new(0.566666663, 0.200000003, 0.200000003)
  6165. 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)
  6166. o6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6167. o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6168. o6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6169. o6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6170. o6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6171. o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6172. o6.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6173. o7.Parent = o6
  6174. o7.Scale = Vector3.new(1, 0.583333313, 0.722222269)
  6175. o8.Name = "SightBack"
  6176. o8.Parent = o1
  6177. o8.Material = Enum.Material.SmoothPlastic
  6178. o8.Position = Vector3.new(18.950964, 1.23151195, 14.4882116)
  6179. o8.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6180. o8.Anchored = true
  6181. o8.FormFactor = Enum.FormFactor.Custom
  6182. o8.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6183. 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)
  6184. o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6185. o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6186. o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6187. o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6188. o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6189. o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6190. o9.Parent = o8
  6191. o9.Scale = Vector3.new(0.166666672, 0.111111112, 0.411111116)
  6192. o10.Parent = o1
  6193. o10.Material = Enum.Material.SmoothPlastic
  6194. o10.BrickColor = BrickColor.new("Really black")
  6195. o10.Position = Vector3.new(18.950964, 0.961513996, 14.5937595)
  6196. o10.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6197. o10.Anchored = true
  6198. o10.FormFactor = Enum.FormFactor.Custom
  6199. o10.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6200. 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)
  6201. o10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6202. o10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6203. o10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6204. o10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6205. o10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6206. o10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6207. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6208. o11.Parent = o10
  6209. o11.Scale = Vector3.new(0.49999997, 0.277777761, 0.694444478)
  6210. o12.Parent = o1
  6211. o12.Material = Enum.Material.SmoothPlastic
  6212. o12.BrickColor = BrickColor.new("Really black")
  6213. o12.Position = Vector3.new(18.950964, 1.19539297, 14.5993176)
  6214. o12.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6215. o12.Anchored = true
  6216. o12.FormFactor = Enum.FormFactor.Custom
  6217. o12.Size = Vector3.new(0.566666663, 0.200000003, 0.200000003)
  6218. 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)
  6219. o12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6220. o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6221. o12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6222. o12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6223. o12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6224. o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6225. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6226. o13.Parent = o12
  6227. o13.Scale = Vector3.new(1, 0.249999985, 0.411111116)
  6228. o14.Parent = o1
  6229. o14.Material = Enum.Material.SmoothPlastic
  6230. o14.BrickColor = BrickColor.new("Really black")
  6231. o14.Position = Vector3.new(18.908186, 1.19095695, 14.5993176)
  6232. o14.Rotation = Vector3.new(-90, 44.9999962, 90)
  6233. o14.Anchored = true
  6234. o14.FormFactor = Enum.FormFactor.Custom
  6235. o14.Size = Vector3.new(0.566666663, 0.200000003, 0.200000003)
  6236. 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)
  6237. o14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6238. o14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6239. o14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6240. o14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6241. o14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6242. o14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6243. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6244. o15.Parent = o14
  6245. o15.Scale = Vector3.new(1, 0.194444433, 0.222222224)
  6246. o16.Name = "SightBack"
  6247. o16.Parent = o1
  6248. o16.Material = Enum.Material.SmoothPlastic
  6249. o16.Position = Vector3.new(18.9787407, 1.25372696, 14.4882116)
  6250. o16.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6251. o16.Anchored = true
  6252. o16.FormFactor = Enum.FormFactor.Custom
  6253. o16.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6254. 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)
  6255. o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6256. o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6257. o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6258. o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6259. o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6260. o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6261. o17.Parent = o16
  6262. o17.Scale = Vector3.new(0.166666672, 0.111111112, 0.13333334)
  6263. o18.Name = "SightBack"
  6264. o18.Parent = o1
  6265. o18.Material = Enum.Material.SmoothPlastic
  6266. o18.Position = Vector3.new(18.9231701, 1.25372696, 14.4882002)
  6267. o18.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6268. o18.Anchored = true
  6269. o18.FormFactor = Enum.FormFactor.Custom
  6270. o18.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6271. 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)
  6272. o18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6273. o18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6274. o18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6275. o18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6276. o18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6277. o18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6278. o19.Parent = o18
  6279. o19.Scale = Vector3.new(0.166666672, 0.111111112, 0.13333334)
  6280. o20.Parent = o1
  6281. o20.Material = Enum.Material.SmoothPlastic
  6282. o20.BrickColor = BrickColor.new("Black")
  6283. o20.Position = Vector3.new(18.950964, 0.886528015, 14.5798664)
  6284. o20.Rotation = Vector3.new(-90, -2.50447761e-006, -90)
  6285. o20.Anchored = true
  6286. o20.FormFactor = Enum.FormFactor.Custom
  6287. o20.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6288. 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)
  6289. o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6290. o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6291. o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6292. o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6293. o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6294. o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6295. o20.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6296. o21.Parent = o20
  6297. o21.Scale = Vector3.new(0.416666687, 0.722222269, 0.416666687)
  6298. o22.Name = "SightLine"
  6299. o22.Parent = o1
  6300. o22.Material = Enum.Material.SmoothPlastic
  6301. o22.BrickColor = BrickColor.new("Smoky grey")
  6302. o22.Position = Vector3.new(18.950964, 1.21539295, 15.7804356)
  6303. o22.Rotation = Vector3.new(90, -2.50447761e-006, -90)
  6304. o22.Anchored = true
  6305. o22.FormFactor = Enum.FormFactor.Custom
  6306. o22.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6307. 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)
  6308. o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6309. o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6310. o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6311. o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6312. o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6313. o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6314. o22.Color = Color3.new(0.356863, 0.364706, 0.411765)
  6315. o23.Parent = o22
  6316. o23.Scale = Vector3.new(0.505999982, 0.150000006, 0.505999982)
  6317. o24.Parent = o1
  6318. o24.Material = Enum.Material.SmoothPlastic
  6319. o24.BrickColor = BrickColor.new("Black")
  6320. o24.Position = Vector3.new(18.950964, 0.96707201, 15.7326679)
  6321. o24.Rotation = Vector3.new(-90, -2.50447761e-006, -180)
  6322. o24.Anchored = true
  6323. o24.FormFactor = Enum.FormFactor.Custom
  6324. o24.Size = Vector3.new(0.200000003, 0.344444454, 0.200000003)
  6325. 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)
  6326. o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6327. o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6328. o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6329. o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6330. o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6331. o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6332. o24.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6333. o25.Parent = o24
  6334. o25.Scale = Vector3.new(0.405599982, 1, 0.405599982)
  6335. o26.Parent = o1
  6336. o26.Material = Enum.Material.SmoothPlastic
  6337. o26.BrickColor = BrickColor.new("Black")
  6338. o26.Position = Vector3.new(18.950964, 1.01984501, 15.7298756)
  6339. o26.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6340. o26.Anchored = true
  6341. o26.FormFactor = Enum.FormFactor.Custom
  6342. o26.Size = Vector3.new(0.338888884, 0.200000003, 0.200000003)
  6343. 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)
  6344. o26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6345. o26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6346. o26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6347. o26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6348. o26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6349. o26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6350. o26.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6351. o27.Parent = o26
  6352. o27.Scale = Vector3.new(1, 0.527777731, 0.611111104)
  6353. o28.Parent = o1
  6354. o28.Material = Enum.Material.SmoothPlastic
  6355. o28.BrickColor = BrickColor.new("Black")
  6356. o28.Position = Vector3.new(18.950964, 0.96707201, 15.7298756)
  6357. o28.Rotation = Vector3.new(-90, -2.50447761e-006, -180)
  6358. o28.Anchored = true
  6359. o28.FormFactor = Enum.FormFactor.Custom
  6360. o28.Size = Vector3.new(0.200000003, 0.338888884, 0.200000003)
  6361. 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)
  6362. o28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6363. o28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6364. o28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6365. o28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6366. o28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6367. o28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6368. o28.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6369. o29.Parent = o28
  6370. o29.Scale = Vector3.new(0.611111104, 1, 0.611111104)
  6371. o30.Name = "Main"
  6372. o30.Parent = o1
  6373. o30.Material = Enum.Material.SmoothPlastic
  6374. o30.BrickColor = BrickColor.new("Really black")
  6375. o30.Transparency = 1
  6376. o30.Position = Vector3.new(18.950964, 1.12816894, 15.9493256)
  6377. o30.Rotation = Vector3.new(90, -2.50447761e-006, 2.50796006e-006)
  6378. o30.Anchored = true
  6379. o30.FormFactor = Enum.FormFactor.Custom
  6380. o30.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6381. 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)
  6382. o30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6383. o30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6384. o30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6385. o30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6386. o30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6387. o30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6388. o30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6389. o31.Name = "FlashFX"
  6390. o31.Parent = o30
  6391. o31.Color = Color3.new(1, 1, 0)
  6392. o31.Enabled = false
  6393. o31.Brightness = 10
  6394. o31.Range = 6
  6395. o31.Shadows = true
  6396. o32.Name = "FlashGui"
  6397. o32.Parent = o30
  6398. o32.Size = UDim2.new(1.1000000238419,0,1.1000000238419,0)
  6399. o32.Enabled = false
  6400. o33.Name = "Label"
  6401. o33.Parent = o32
  6402. o33.Size = UDim2.new(1,0,1,0)
  6403. o33.BackgroundTransparency = 1
  6404. o33.Image = "http://www.roblox.com/asset/?id=117472237"
  6405. o34.Parent = o30
  6406. o34.Scale = Vector3.new(0.99999994, 0.99999994, 0.99999994)
  6407. o35.Parent = o1
  6408. o35.Material = Enum.Material.SmoothPlastic
  6409. o35.BrickColor = BrickColor.new("Black")
  6410. o35.Position = Vector3.new(18.908186, 1.19095695, 15.5132236)
  6411. o35.Rotation = Vector3.new(-90, 44.9999962, 90)
  6412. o35.Anchored = true
  6413. o35.FormFactor = Enum.FormFactor.Custom
  6414. o35.Size = Vector3.new(0.772222221, 0.200000003, 0.200000003)
  6415. 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)
  6416. o35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6417. o35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6418. o35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6419. o35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6420. o35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6421. o35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6422. o35.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6423. o36.Parent = o35
  6424. o36.Scale = Vector3.new(1, 0.194444433, 0.222222224)
  6425. o37.Parent = o1
  6426. o37.Material = Enum.Material.SmoothPlastic
  6427. o37.BrickColor = BrickColor.new("Black")
  6428. o37.Position = Vector3.new(18.950964, 1.19539297, 15.5132236)
  6429. o37.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6430. o37.Anchored = true
  6431. o37.FormFactor = Enum.FormFactor.Custom
  6432. o37.Size = Vector3.new(0.772222221, 0.200000003, 0.200000003)
  6433. 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)
  6434. o37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6435. o37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6436. o37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6437. o37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6438. o37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6439. o37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6440. o37.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6441. o38.Parent = o37
  6442. o38.Scale = Vector3.new(1, 0.249999985, 0.411111116)
  6443. o39.Parent = o1
  6444. o39.Material = Enum.Material.SmoothPlastic
  6445. o39.BrickColor = BrickColor.new("Black")
  6446. o39.Position = Vector3.new(18.950964, 1.13095105, 15.5132236)
  6447. o39.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6448. o39.Anchored = true
  6449. o39.FormFactor = Enum.FormFactor.Custom
  6450. o39.Size = Vector3.new(0.772222221, 0.200000003, 0.200000003)
  6451. 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)
  6452. o39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6453. o39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6454. o39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6455. o39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6456. o39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6457. o39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6458. o39.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6459. o40.Parent = o39
  6460. o40.Scale = Vector3.new(1, 0.583333313, 0.722222269)
  6461. o41.Parent = o1
  6462. o41.Material = Enum.Material.SmoothPlastic
  6463. o41.BrickColor = BrickColor.new("Black")
  6464. o41.Position = Vector3.new(18.950964, 1.12816894, 15.3854284)
  6465. o41.Rotation = Vector3.new(-90, -2.50447761e-006, -180)
  6466. o41.Anchored = true
  6467. o41.FormFactor = Enum.FormFactor.Custom
  6468. o41.Size = Vector3.new(0.200000003, 1.06111109, 0.200000003)
  6469. 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)
  6470. o41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6471. o41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6472. o41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6473. o41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6474. o41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6475. o41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6476. o41.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6477. o42.Parent = o41
  6478. o42.Texture = "http://www.roblox.com/asset/?id=47760372"
  6479. o42.Face = Enum.NormalId.Top
  6480. o43.Parent = o41
  6481. o43.Scale = Vector3.new(0.49999997, 1, 0.49999997)
  6482. o44.Parent = o1
  6483. o44.Material = Enum.Material.SmoothPlastic
  6484. o44.BrickColor = BrickColor.new("Black")
  6485. o44.Position = Vector3.new(18.950964, 0.961513996, 15.352108)
  6486. o44.Rotation = Vector3.new(-90, -2.50447761e-006, -180)
  6487. o44.Anchored = true
  6488. o44.FormFactor = Enum.FormFactor.Custom
  6489. o44.Size = Vector3.new(0.200000003, 0.416666627, 0.200000003)
  6490. 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)
  6491. o44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6492. o44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6493. o44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6494. o44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6495. o44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6496. o44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6497. o44.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6498. o45.Parent = o44
  6499. o45.Scale = Vector3.new(0.666666687, 1, 0.666666687)
  6500. o46.Name = "Mag"
  6501. o46.Parent = o1
  6502. o46.Material = Enum.Material.SmoothPlastic
  6503. o46.BrickColor = BrickColor.new("Black")
  6504. o46.Position = Vector3.new(18.950964, 0.129971996, 14.3866644)
  6505. o46.Rotation = Vector3.new(101, 90, 0)
  6506. o46.Anchored = true
  6507. o46.FormFactor = Enum.FormFactor.Custom
  6508. o46.Size = Vector3.new(0.200000003, 0.333333343, 0.200000003)
  6509. 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)
  6510. o46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6511. o46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6512. o46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6513. o46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6514. o46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6515. o46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6516. o46.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6517. o47.Parent = o46
  6518. o47.Scale = Vector3.new(0.027777778, 1, 0.666666687)
  6519. o48.Parent = o1
  6520. o48.Material = Enum.Material.SmoothPlastic
  6521. o48.BrickColor = BrickColor.new("Black")
  6522. o48.Position = Vector3.new(18.950964, 0.161533996, 14.3493176)
  6523. o48.Rotation = Vector3.new(0.019784553, -6.66929267e-009, 180)
  6524. o48.Anchored = true
  6525. o48.FormFactor = Enum.FormFactor.Custom
  6526. o48.Size = Vector3.new(0.200000003, 0.200000003, 0.266666681)
  6527. 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)
  6528. o48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6529. o48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6530. o48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6531. o48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6532. o48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6533. o48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6534. o48.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6535. o49.Parent = o48
  6536. o49.Scale = Vector3.new(0.694444478, 0.222222224, 1)
  6537. o49.MeshType = Enum.MeshType.Wedge
  6538. o50.Parent = o1
  6539. o50.Material = Enum.Material.SmoothPlastic
  6540. o50.BrickColor = BrickColor.new("Really black")
  6541. o50.Position = Vector3.new(18.950964, 0.155975997, 14.3354216)
  6542. o50.Rotation = Vector3.new(3.08320072e-016, 0, -180)
  6543. o50.Anchored = true
  6544. o50.FormFactor = Enum.FormFactor.Custom
  6545. o50.Size = Vector3.new(0.200000003, 0.200000003, 0.438888878)
  6546. 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)
  6547. o50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6548. o50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6549. o50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6550. o50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6551. o50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6552. o50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6553. o50.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6554. o51.Parent = o50
  6555. o51.Scale = Vector3.new(0.666666687, 0.333333343, 1)
  6556. o51.MeshType = Enum.MeshType.Wedge
  6557. o52.Parent = o1
  6558. o52.Material = Enum.Material.SmoothPlastic
  6559. o52.BrickColor = BrickColor.new("Black")
  6560. o52.Position = Vector3.new(18.950964, 0.239300996, 14.1882057)
  6561. o52.Rotation = Vector3.new(105, 90, 0)
  6562. o52.Anchored = true
  6563. o52.FormFactor = Enum.FormFactor.Custom
  6564. o52.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6565. 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)
  6566. o52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6567. o52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6568. o52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6569. o52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6570. o52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6571. o52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6572. o52.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6573. o53.Parent = o52
  6574. o53.Scale = Vector3.new(0.944444478, 0.111111112, 0.611111104)
  6575. o54.Parent = o1
  6576. o54.Material = Enum.Material.SmoothPlastic
  6577. o54.BrickColor = BrickColor.new("Really black")
  6578. o54.Position = Vector3.new(18.950964, 0.225419, 14.3520937)
  6579. o54.Rotation = Vector3.new(-3.25256337e-007, 90, 0)
  6580. o54.Anchored = true
  6581. o54.FormFactor = Enum.FormFactor.Custom
  6582. o54.Size = Vector3.new(0.26111111, 0.200000003, 0.200000003)
  6583. 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)
  6584. o54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6585. o54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6586. o54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6587. o54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6588. o54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6589. o54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6590. o54.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6591. o55.Parent = o54
  6592. o55.Scale = Vector3.new(1, 0.416666687, 0.694444478)
  6593. o56.Parent = o1
  6594. o56.Material = Enum.Material.SmoothPlastic
  6595. o56.BrickColor = BrickColor.new("Really black")
  6596. o56.Position = Vector3.new(18.950964, 0.197641, 14.2215319)
  6597. o56.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6598. o56.Anchored = true
  6599. o56.FormFactor = Enum.FormFactor.Custom
  6600. o56.Size = Vector3.new(0.211111099, 0.200000003, 0.200000003)
  6601. 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)
  6602. o56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6603. o56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6604. o56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6605. o56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6606. o56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6607. o56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6608. o56.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6609. o57.Parent = o56
  6610. o57.Scale = Vector3.new(1, 0.0833333358, 0.666666687)
  6611. o58.Parent = o1
  6612. o58.Material = Enum.Material.SmoothPlastic
  6613. o58.BrickColor = BrickColor.new("Really black")
  6614. o58.Position = Vector3.new(18.950964, 0.258204013, 14.3493176)
  6615. o58.Rotation = Vector3.new(-90, -2.50447761e-006, -90)
  6616. o58.Anchored = true
  6617. o58.FormFactor = Enum.FormFactor.Custom
  6618. o58.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6619. 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)
  6620. o58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6621. o58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6622. o58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6623. o58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6624. o58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6625. o58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6626. o58.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6627. o59.Parent = o58
  6628. o59.Scale = Vector3.new(0.49999997, 0.722222269, 0.472222239)
  6629. o60.Parent = o1
  6630. o60.Material = Enum.Material.SmoothPlastic
  6631. o60.BrickColor = BrickColor.new("Really black")
  6632. o60.Position = Vector3.new(18.950964, 0.244874001, 14.1993141)
  6633. o60.Rotation = Vector3.new(0.019784553, -6.66929267e-009, 180)
  6634. o60.Anchored = true
  6635. o60.FormFactor = Enum.FormFactor.Custom
  6636. o60.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6637. 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)
  6638. o60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6639. o60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6640. o60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6641. o60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6642. o60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6643. o60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6644. o60.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6645. o61.Parent = o60
  6646. o61.Scale = Vector3.new(0.694444478, 0.222222224, 0.222222224)
  6647. o61.MeshType = Enum.MeshType.Wedge
  6648. o62.Parent = o1
  6649. o62.Material = Enum.Material.SmoothPlastic
  6650. o62.BrickColor = BrickColor.new("Black")
  6651. o62.Position = Vector3.new(18.993742, 1.19095695, 15.1076584)
  6652. o62.Rotation = Vector3.new(90, 44.9999962, -90)
  6653. o62.Anchored = true
  6654. o62.FormFactor = Enum.FormFactor.Custom
  6655. o62.Size = Vector3.new(1.58333337, 0.200000003, 0.200000003)
  6656. 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)
  6657. o62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6658. o62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6659. o62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6660. o62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6661. o62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6662. o62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6663. o62.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6664. o63.Parent = o62
  6665. o63.Scale = Vector3.new(1, 0.194444433, 0.222222224)
  6666. o64.Parent = o1
  6667. o64.Material = Enum.Material.SmoothPlastic
  6668. o64.Position = Vector3.new(18.950964, 0.867092013, 15.1298876)
  6669. o64.Rotation = Vector3.new(180, 2.50796006e-006, 8.65142192e-006)
  6670. o64.Anchored = true
  6671. o64.FormFactor = Enum.FormFactor.Custom
  6672. o64.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6673. 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)
  6674. o64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6675. o64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6676. o64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6677. o64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6678. o64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6679. o64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6680. o65.Parent = o64
  6681. o65.Scale = Vector3.new(0.611111104, 0.333333343, 0.138888881)
  6682. o65.MeshType = Enum.MeshType.Wedge
  6683. o66.Parent = o1
  6684. o66.Material = Enum.Material.SmoothPlastic
  6685. o66.Position = Vector3.new(18.950964, 0.83930999, 15.1048679)
  6686. o66.Rotation = Vector3.new(89.9999771, 90, 0)
  6687. o66.Anchored = true
  6688. o66.FormFactor = Enum.FormFactor.Custom
  6689. o66.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6690. 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)
  6691. o66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6692. o66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6693. o66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6694. o66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6695. o66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6696. o66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6697. o67.Parent = o66
  6698. o67.Scale = Vector3.new(0.944444478, 0.111111112, 0.611111104)
  6699. o68.Parent = o1
  6700. o68.Material = Enum.Material.SmoothPlastic
  6701. o68.BrickColor = BrickColor.new("Fossil")
  6702. o68.Position = Vector3.new(18.950964, 0.716949999, 15.0719404)
  6703. o68.Rotation = Vector3.new(-45, 90, 0)
  6704. o68.Anchored = true
  6705. o68.FormFactor = Enum.FormFactor.Custom
  6706. o68.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6707. 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)
  6708. o68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6709. o68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6710. o68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6711. o68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6712. o68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6713. o68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6714. o68.Color = Color3.new(0.623529, 0.631373, 0.67451)
  6715. o69.Parent = o68
  6716. o69.Scale = Vector3.new(0.527777731, 0.111111112, 0.611111104)
  6717. o70.Parent = o1
  6718. o70.Material = Enum.Material.SmoothPlastic
  6719. o70.BrickColor = BrickColor.new("Black")
  6720. o70.Position = Vector3.new(18.950964, 0.875427008, 15.0743237)
  6721. o70.Rotation = Vector3.new(3.08320072e-016, 0, -180)
  6722. o70.Anchored = true
  6723. o70.FormFactor = Enum.FormFactor.Custom
  6724. o70.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6725. 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)
  6726. o70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6727. o70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6728. o70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6729. o70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6730. o70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6731. o70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6732. o70.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6733. o71.Parent = o70
  6734. o71.Scale = Vector3.new(0.611111104, 0.249999985, 0.194444433)
  6735. o71.MeshType = Enum.MeshType.Wedge
  6736. o72.Parent = o1
  6737. o72.Material = Enum.Material.SmoothPlastic
  6738. o72.BrickColor = BrickColor.new("Black")
  6739. o72.Position = Vector3.new(18.9315281, 1.09817195, 15.0048761)
  6740. o72.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6741. o72.Anchored = true
  6742. o72.FormFactor = Enum.FormFactor.Custom
  6743. o72.Size = Vector3.new(0.244444445, 0.200000003, 0.200000003)
  6744. 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)
  6745. o72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6746. o72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6747. o72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6748. o72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6749. o72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6750. o72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6751. o72.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6752. o73.Parent = o72
  6753. o73.Scale = Vector3.new(1, 0.277777761, 0.527777731)
  6754. o74.Parent = o1
  6755. o74.Material = Enum.Material.SmoothPlastic
  6756. o74.BrickColor = BrickColor.new("Black")
  6757. o74.Position = Vector3.new(18.9870701, 1.13095105, 15.0048761)
  6758. o74.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6759. o74.Anchored = true
  6760. o74.FormFactor = Enum.FormFactor.Custom
  6761. o74.Size = Vector3.new(0.244444445, 0.200000003, 0.200000003)
  6762. 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)
  6763. o74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6764. o74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6765. o74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6766. o74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6767. o74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6768. o74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6769. o74.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6770. o75.Parent = o74
  6771. o75.Scale = Vector3.new(1, 0.583333313, 0.361111134)
  6772. o76.Parent = o1
  6773. o76.Material = Enum.Material.SmoothPlastic
  6774. o76.BrickColor = BrickColor.new("Black")
  6775. o76.Position = Vector3.new(18.970396, 1.17595196, 15.0048761)
  6776. o76.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6777. o76.Anchored = true
  6778. o76.FormFactor = Enum.FormFactor.Custom
  6779. o76.Size = Vector3.new(0.244444445, 0.200000003, 0.200000003)
  6780. 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)
  6781. o76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6782. o76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6783. o76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6784. o76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6785. o76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6786. o76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6787. o76.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6788. o77.Parent = o76
  6789. o77.Scale = Vector3.new(1, 0.444444448, 0.216666669)
  6790. o78.Parent = o1
  6791. o78.Material = Enum.Material.SmoothPlastic
  6792. o78.BrickColor = BrickColor.new("Black")
  6793. o78.Position = Vector3.new(18.950964, 0.39764601, 14.6493216)
  6794. o78.Rotation = Vector3.new(180, 2.50796006e-006, 5.00895612e-006)
  6795. o78.Anchored = true
  6796. o78.FormFactor = Enum.FormFactor.Custom
  6797. o78.Size = Vector3.new(0.200000003, 0.550000012, 0.200000003)
  6798. 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)
  6799. o78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6800. o78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6801. o78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6802. o78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6803. o78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6804. o78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6805. o78.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6806. o79.Parent = o78
  6807. o79.Scale = Vector3.new(0.666666687, 1, 0.944444478)
  6808. o79.MeshType = Enum.MeshType.Wedge
  6809. o80.Parent = o1
  6810. o80.Material = Enum.Material.SmoothPlastic
  6811. o80.BrickColor = BrickColor.new("Black")
  6812. o80.Position = Vector3.new(18.8859501, 0.96707201, 15.0021019)
  6813. o80.Rotation = Vector3.new(-90, -2.50447761e-006, -90.0000076)
  6814. o80.Anchored = true
  6815. o80.FormFactor = Enum.FormFactor.Custom
  6816. o80.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6817. 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)
  6818. o80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6819. o80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6820. o80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6821. o80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6822. o80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6823. o80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6824. o80.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6825. o81.Parent = o80
  6826. o81.Scale = Vector3.new(0.249999985, 0.027777778, 0.249999985)
  6827. o82.Parent = o1
  6828. o82.Material = Enum.Material.SmoothPlastic
  6829. o82.BrickColor = BrickColor.new("Dark stone grey")
  6830. o82.Position = Vector3.new(18.950964, 0.858749986, 14.8770924)
  6831. o82.Rotation = Vector3.new(-180, -2.50796256e-006, 5.00895703e-006)
  6832. o82.Anchored = true
  6833. o82.FormFactor = Enum.FormFactor.Custom
  6834. o82.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6835. 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)
  6836. o82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6837. o82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6838. o82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6839. o82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6840. o82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6841. o82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6842. o82.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6843. o83.Parent = o82
  6844. o83.Scale = Vector3.new(0.472222239, 0.416666687, 0.222222224)
  6845. o83.MeshType = Enum.MeshType.Wedge
  6846. o84.Parent = o1
  6847. o84.Material = Enum.Material.SmoothPlastic
  6848. o84.BrickColor = BrickColor.new("Black")
  6849. o84.Position = Vector3.new(18.950964, 1.05040395, 14.9382162)
  6850. o84.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6851. o84.Anchored = true
  6852. o84.FormFactor = Enum.FormFactor.Custom
  6853. o84.Size = Vector3.new(1.24444449, 0.200000003, 0.200000003)
  6854. 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)
  6855. o84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6856. o84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6857. o84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6858. o84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6859. o84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6860. o84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6861. o84.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6862. o85.Parent = o84
  6863. o85.Scale = Vector3.new(1, 0.222222224, 0.722222269)
  6864. o86.Parent = o1
  6865. o86.Material = Enum.Material.SmoothPlastic
  6866. o86.BrickColor = BrickColor.new("Black")
  6867. o86.Position = Vector3.new(18.950964, 0.469879985, 14.2215319)
  6868. o86.Rotation = Vector3.new(2.05579065e-016, -2.50796006e-006, 6.27987314e-020)
  6869. o86.Anchored = true
  6870. o86.FormFactor = Enum.FormFactor.Custom
  6871. o86.Size = Vector3.new(0.200000003, 0.527777791, 0.211111099)
  6872. 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)
  6873. o86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6874. o86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6875. o86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6876. o86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6877. o86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6878. o86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6879. o86.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6880. o87.Parent = o86
  6881. o87.Scale = Vector3.new(0.666666687, 1, 1)
  6882. o87.MeshType = Enum.MeshType.Wedge
  6883. o88.Parent = o1
  6884. o88.Material = Enum.Material.SmoothPlastic
  6885. o88.BrickColor = BrickColor.new("Dark stone grey")
  6886. o88.Position = Vector3.new(18.950964, 0.736557007, 14.8798761)
  6887. o88.Rotation = Vector3.new(180, -2.50129006e-006, 180)
  6888. o88.Anchored = true
  6889. o88.FormFactor = Enum.FormFactor.Custom
  6890. o88.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6891. 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)
  6892. o88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6893. o88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6894. o88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6895. o88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6896. o88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6897. o88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6898. o88.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6899. o89.Parent = o88
  6900. o89.Scale = Vector3.new(0.472222239, 0.416666687, 0.249999985)
  6901. o89.MeshType = Enum.MeshType.Wedge
  6902. o90.Parent = o1
  6903. o90.Material = Enum.Material.SmoothPlastic
  6904. o90.BrickColor = BrickColor.new("Smoky grey")
  6905. o90.Position = Vector3.new(18.950964, 0.683766007, 14.9020796)
  6906. o90.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6907. o90.Anchored = true
  6908. o90.FormFactor = Enum.FormFactor.Custom
  6909. o90.Size = Vector3.new(0.283333331, 0.200000003, 0.200000003)
  6910. 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)
  6911. o90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6912. o90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6913. o90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6914. o90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6915. o90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6916. o90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6917. o90.Color = Color3.new(0.356863, 0.364706, 0.411765)
  6918. o91.Parent = o90
  6919. o91.Scale = Vector3.new(1, 0.111111112, 0.611111104)
  6920. o92.Parent = o1
  6921. o92.Material = Enum.Material.SmoothPlastic
  6922. o92.BrickColor = BrickColor.new("Black")
  6923. o92.Position = Vector3.new(18.950964, 0.992074013, 14.9382162)
  6924. o92.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  6925. o92.Anchored = true
  6926. o92.FormFactor = Enum.FormFactor.Custom
  6927. o92.Size = Vector3.new(1.24444449, 0.200000003, 0.200000003)
  6928. 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)
  6929. o92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6930. o92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6931. o92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6932. o92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6933. o92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6934. o92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6935. o92.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6936. o93.Parent = o92
  6937. o93.Scale = Vector3.new(1, 0.361111134, 0.666666687)
  6938. o94.Parent = o1
  6939. o94.Material = Enum.Material.SmoothPlastic
  6940. o94.BrickColor = BrickColor.new("Black")
  6941. o94.Position = Vector3.new(18.950964, 0.708733976, 14.827096)
  6942. o94.Rotation = Vector3.new(-180, 0.0927856117, 180)
  6943. o94.Anchored = true
  6944. o94.FormFactor = Enum.FormFactor.Custom
  6945. o94.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6946. 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)
  6947. o94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6948. o94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6949. o94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6950. o94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6951. o94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6952. o94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6953. o94.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6954. o95.Parent = o94
  6955. o95.Scale = Vector3.new(0.611111104, 0.138888881, 0.249999985)
  6956. o95.MeshType = Enum.MeshType.Wedge
  6957. o96.Parent = o1
  6958. o96.Material = Enum.Material.SmoothPlastic
  6959. o96.BrickColor = BrickColor.new("Black")
  6960. o96.Position = Vector3.new(18.950964, 0.797657013, 14.8104324)
  6961. o96.Rotation = Vector3.new(180, -2.50129006e-006, 180)
  6962. o96.Anchored = true
  6963. o96.FormFactor = Enum.FormFactor.Custom
  6964. o96.Size = Vector3.new(0.200000003, 0.205555543, 0.200000003)
  6965. 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)
  6966. o96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6967. o96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6968. o96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6969. o96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6970. o96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6971. o96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6972. o96.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6973. o97.Parent = o96
  6974. o97.Scale = Vector3.new(0.472222239, 1, 0.444444448)
  6975. o98.Parent = o1
  6976. o98.Material = Enum.Material.SmoothPlastic
  6977. o98.BrickColor = BrickColor.new("Black")
  6978. o98.Position = Vector3.new(18.950964, 0.875427008, 14.8298864)
  6979. o98.Rotation = Vector3.new(-180, 0, -6.27987314e-020)
  6980. o98.Anchored = true
  6981. o98.FormFactor = Enum.FormFactor.Custom
  6982. o98.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6983. 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)
  6984. o98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6985. o98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6986. o98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6987. o98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6988. o98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6989. o98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6990. o98.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6991. o99.Parent = o98
  6992. o99.Scale = Vector3.new(0.666666687, 0.249999985, 0.194444433)
  6993. o99.MeshType = Enum.MeshType.Wedge
  6994. o100.Parent = o1
  6995. o100.Material = Enum.Material.SmoothPlastic
  6996. o100.BrickColor = BrickColor.new("Black")
  6997. o100.Position = Vector3.new(18.988184, 0.986526012, 14.8076496)
  6998. o100.Rotation = Vector3.new(3.00000024, 90, 0)
  6999. o100.Anchored = true
  7000. o100.FormFactor = Enum.FormFactor.Custom
  7001. o100.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7002. 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)
  7003. o100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7004. o100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7005. o100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7006. o100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7007. o100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7008. o100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7009. o100.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7010. o101.Parent = o100
  7011. o101.Scale = Vector3.new(0.694444478, 0.249999985, 0.361111134)
  7012. o102.Parent = o1
  7013. o102.Material = Enum.Material.SmoothPlastic
  7014. o102.BrickColor = BrickColor.new("Black")
  7015. o102.Position = Vector3.new(18.950964, 0.875427008, 14.8020916)
  7016. o102.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  7017. o102.Anchored = true
  7018. o102.FormFactor = Enum.FormFactor.Custom
  7019. o102.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7020. 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)
  7021. o102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7022. o102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7023. o102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7024. o102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7025. o102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7026. o102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7027. o102.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7028. o103.Parent = o102
  7029. o103.Scale = Vector3.new(0.0833333358, 0.249999985, 0.666666687)
  7030. o104.Parent = o1
  7031. o104.Material = Enum.Material.SmoothPlastic
  7032. o104.BrickColor = BrickColor.new("Really black")
  7033. o104.Position = Vector3.new(18.950964, 0.536549985, 14.6048756)
  7034. o104.Rotation = Vector3.new(180, 2.50796006e-006, 5.00895612e-006)
  7035. o104.Anchored = true
  7036. o104.FormFactor = Enum.FormFactor.Custom
  7037. o104.Size = Vector3.new(0.200000003, 0.794444382, 0.244444445)
  7038. 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)
  7039. o104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7040. o104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7041. o104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7042. o104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7043. o104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7044. o104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7045. o104.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7046. o105.Parent = o104
  7047. o105.Scale = Vector3.new(0.694444478, 1, 1)
  7048. o105.MeshType = Enum.MeshType.Wedge
  7049. o106.Name = "Mag"
  7050. o106.Parent = o1
  7051. o106.Material = Enum.Material.SmoothPlastic
  7052. o106.BrickColor = BrickColor.new("Really black")
  7053. o106.Position = Vector3.new(18.950964, 0.56080699, 14.4704056)
  7054. o106.Rotation = Vector3.new(101, 90, 0)
  7055. o106.Anchored = true
  7056. o106.FormFactor = Enum.FormFactor.Custom
  7057. o106.Size = Vector3.new(0.872222185, 0.322222203, 0.200000003)
  7058. 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)
  7059. o106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7060. o106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7061. o106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7062. o106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7063. o106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7064. o106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7065. o106.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7066. o107.Parent = o106
  7067. o107.Scale = Vector3.new(1, 1, 0.611111104)
  7068. o108.Parent = o1
  7069. o108.Material = Enum.Material.SmoothPlastic
  7070. o108.BrickColor = BrickColor.new("Smoky grey")
  7071. o108.Position = Vector3.new(18.950964, 0.731004, 14.7326536)
  7072. o108.Rotation = Vector3.new(-90, 4.32571142e-006, -90.0000076)
  7073. o108.Anchored = true
  7074. o108.FormFactor = Enum.FormFactor.Custom
  7075. o108.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7076. 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)
  7077. o108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7078. o108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7079. o108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7080. o108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7081. o108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7082. o108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7083. o108.Color = Color3.new(0.356863, 0.364706, 0.411765)
  7084. o109.Parent = o108
  7085. o109.Scale = Vector3.new(0.416666687, 0.694444478, 0.416666687)
  7086. o110.Parent = o1
  7087. o110.Material = Enum.Material.SmoothPlastic
  7088. o110.BrickColor = BrickColor.new("Black")
  7089. o110.Position = Vector3.new(18.950964, 0.544876993, 14.4409838)
  7090. o110.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  7091. o110.Anchored = true
  7092. o110.FormFactor = Enum.FormFactor.Custom
  7093. o110.Size = Vector3.new(0.227777779, 0.711111128, 0.200000003)
  7094. 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)
  7095. o110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7096. o110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7097. o110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7098. o110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7099. o110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7100. o110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7101. o110.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7102. o111.Parent = o110
  7103. o111.Scale = Vector3.new(1, 1, 0.666666687)
  7104. o112.Parent = o1
  7105. o112.Material = Enum.Material.SmoothPlastic
  7106. o112.BrickColor = BrickColor.new("Black")
  7107. o112.Position = Vector3.new(18.950964, 0.775434017, 14.7993164)
  7108. o112.Rotation = Vector3.new(180, -2.50129006e-006, 180)
  7109. o112.Anchored = true
  7110. o112.FormFactor = Enum.FormFactor.Custom
  7111. o112.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7112. 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)
  7113. o112.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7114. o112.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7115. o112.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7116. o112.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7117. o112.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7118. o112.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7119. o112.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7120. o113.Parent = o112
  7121. o113.Scale = Vector3.new(0.666666687, 0.249999985, 0.111111112)
  7122. o113.MeshType = Enum.MeshType.Wedge
  7123. o114.Parent = o1
  7124. o114.Material = Enum.Material.SmoothPlastic
  7125. o114.BrickColor = BrickColor.new("Black")
  7126. o114.Position = Vector3.new(18.950964, 0.730996013, 14.7298584)
  7127. o114.Rotation = Vector3.new(180, 0, -90.0000076)
  7128. o114.Anchored = true
  7129. o114.FormFactor = Enum.FormFactor.Custom
  7130. o114.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7131. 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)
  7132. o114.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7133. o114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7134. o114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7135. o114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7136. o114.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7137. o114.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7138. o114.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7139. o115.Parent = o114
  7140. o115.Scale = Vector3.new(0.833333373, 0.666666687, 0.805555522)
  7141. o116.Parent = o1
  7142. o116.Material = Enum.Material.SmoothPlastic
  7143. o116.BrickColor = BrickColor.new("Black")
  7144. o116.Position = Vector3.new(18.950964, 0.928192973, 14.7298584)
  7145. o116.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  7146. o116.Anchored = true
  7147. o116.FormFactor = Enum.FormFactor.Custom
  7148. o116.Size = Vector3.new(0.827777743, 0.200000003, 0.200000003)
  7149. 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)
  7150. o116.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7151. o116.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7152. o116.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7153. o116.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7154. o116.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7155. o116.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7156. o116.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7157. o117.Parent = o116
  7158. o117.Scale = Vector3.new(1, 0.277777761, 0.666666687)
  7159. o118.Parent = o1
  7160. o118.Material = Enum.Material.SmoothPlastic
  7161. o118.BrickColor = BrickColor.new("Black")
  7162. o118.Position = Vector3.new(18.950964, 0.825424016, 14.7993164)
  7163. o118.Rotation = Vector3.new(-180, 0, -6.27987314e-020)
  7164. o118.Anchored = true
  7165. o118.FormFactor = Enum.FormFactor.Custom
  7166. o118.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7167. 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)
  7168. o118.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7169. o118.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7170. o118.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7171. o118.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7172. o118.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7173. o118.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7174. o118.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7175. o119.Parent = o118
  7176. o119.Scale = Vector3.new(0.666666687, 0.249999985, 0.111111112)
  7177. o119.MeshType = Enum.MeshType.Wedge
  7178. o120.Parent = o1
  7179. o120.Material = Enum.Material.SmoothPlastic
  7180. o120.BrickColor = BrickColor.new("Black")
  7181. o120.Position = Vector3.new(18.950964, 0.600430012, 14.4798584)
  7182. o120.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  7183. o120.Anchored = true
  7184. o120.FormFactor = Enum.FormFactor.Custom
  7185. o120.Size = Vector3.new(0.200000003, 0.666666687, 0.200000003)
  7186. 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)
  7187. o120.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7188. o120.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7189. o120.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7190. o120.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7191. o120.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7192. o120.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7193. o120.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7194. o121.Parent = o120
  7195. o121.Scale = Vector3.new(0.027777778, 1, 0.694444478)
  7196. o122.Parent = o1
  7197. o122.Material = Enum.Material.SmoothPlastic
  7198. o122.BrickColor = BrickColor.new("Black")
  7199. o122.Position = Vector3.new(18.950964, 0.980957985, 14.5104237)
  7200. o122.Rotation = Vector3.new(2.05579065e-016, -2.50796006e-006, 6.27987314e-020)
  7201. o122.Anchored = true
  7202. o122.FormFactor = Enum.FormFactor.Custom
  7203. o122.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7204. 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)
  7205. o122.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7206. o122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7207. o122.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7208. o122.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7209. o122.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7210. o122.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7211. o122.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7212. o123.Parent = o122
  7213. o123.Scale = Vector3.new(0.694444478, 0.0833333358, 0.333333343)
  7214. o123.MeshType = Enum.MeshType.Wedge
  7215. o124.Parent = o1
  7216. o124.Material = Enum.Material.SmoothPlastic
  7217. o124.BrickColor = BrickColor.new("Black")
  7218. o124.Position = Vector3.new(18.950964, 0.961513996, 14.6854324)
  7219. o124.Rotation = Vector3.new(180, -2.50129006e-006, 180)
  7220. o124.Anchored = true
  7221. o124.FormFactor = Enum.FormFactor.Custom
  7222. o124.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7223. 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)
  7224. o124.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7225. o124.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7226. o124.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7227. o124.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7228. o124.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7229. o124.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7230. o124.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7231. o125.Parent = o124
  7232. o125.Scale = Vector3.new(0.694444478, 0.277777761, 0.416666687)
  7233. o125.MeshType = Enum.MeshType.Wedge
  7234. o126.Parent = o1
  7235. o126.Material = Enum.Material.SmoothPlastic
  7236. o126.BrickColor = BrickColor.new("Really black")
  7237. o126.Position = Vector3.new(18.950964, 0.803216994, 14.6715384)
  7238. o126.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  7239. o126.Anchored = true
  7240. o126.FormFactor = Enum.FormFactor.Custom
  7241. o126.Size = Vector3.new(0.244444445, 0.200000003, 0.200000003)
  7242. 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)
  7243. o126.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7244. o126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7245. o126.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7246. o126.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7247. o126.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7248. o126.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7249. o126.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7250. o127.Parent = o126
  7251. o127.Scale = Vector3.new(1, 0.972222209, 0.666666687)
  7252. o128.Parent = o1
  7253. o128.Material = Enum.Material.SmoothPlastic
  7254. o128.BrickColor = BrickColor.new("Really black")
  7255. o128.Position = Vector3.new(18.950964, 0.672379017, 14.6450357)
  7256. o128.Rotation = Vector3.new(-30.0000038, 90, 0)
  7257. o128.Anchored = true
  7258. o128.FormFactor = Enum.FormFactor.Custom
  7259. o128.Size = Vector3.new(0.205555543, 0.200000003, 0.200000003)
  7260. 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)
  7261. o128.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7262. o128.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7263. o128.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7264. o128.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7265. o128.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7266. o128.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7267. o128.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7268. o129.Parent = o128
  7269. o129.Scale = Vector3.new(1, 0.722222269, 0.666666687)
  7270. o130.Parent = o1
  7271. o130.Material = Enum.Material.SmoothPlastic
  7272. o130.BrickColor = BrickColor.new("Really black")
  7273. o130.Position = Vector3.new(18.950964, 0.619874001, 14.3270836)
  7274. o130.Rotation = Vector3.new(2.05579065e-016, -2.50796006e-006, 6.27987314e-020)
  7275. o130.Anchored = true
  7276. o130.FormFactor = Enum.FormFactor.Custom
  7277. o130.Size = Vector3.new(0.200000003, 0.705555558, 0.300000012)
  7278. 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)
  7279. o130.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7280. o130.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7281. o130.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7282. o130.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7283. o130.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7284. o130.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7285. o130.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7286. o131.Parent = o130
  7287. o131.Scale = Vector3.new(0.694444478, 1, 1)
  7288. o131.MeshType = Enum.MeshType.Wedge
  7289. o132.Parent = o1
  7290. o132.Material = Enum.Material.SmoothPlastic
  7291. o132.BrickColor = BrickColor.new("Black")
  7292. o132.Position = Vector3.new(18.950964, 1.15317094, 14.2876415)
  7293. o132.Rotation = Vector3.new(30.0000019, 90, 0)
  7294. o132.Anchored = true
  7295. o132.FormFactor = Enum.FormFactor.Custom
  7296. o132.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7297. 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)
  7298. o132.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7299. o132.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7300. o132.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7301. o132.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7302. o132.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7303. o132.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7304. o132.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7305. o133.Parent = o132
  7306. o133.Scale = Vector3.new(0.388888866, 0.194444433, 0.416666687)
  7307. o134.Parent = o1
  7308. o134.Material = Enum.Material.SmoothPlastic
  7309. o134.BrickColor = BrickColor.new("Black")
  7310. o134.Position = Vector3.new(18.950964, 1.10315704, 14.3126564)
  7311. o134.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  7312. o134.Anchored = true
  7313. o134.FormFactor = Enum.FormFactor.Custom
  7314. o134.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7315. 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)
  7316. o134.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7317. o134.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7318. o134.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7319. o134.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7320. o134.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7321. o134.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7322. o134.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7323. o135.Parent = o134
  7324. o135.Scale = Vector3.new(0.027777778, 0.861111045, 0.416666687)
  7325. o136.Parent = o1
  7326. o136.Material = Enum.Material.SmoothPlastic
  7327. o136.BrickColor = BrickColor.new("Black")
  7328. o136.Position = Vector3.new(18.950964, 0.969842017, 14.2187424)
  7329. o136.Rotation = Vector3.new(2.05579065e-016, -2.50796006e-006, 6.27987314e-020)
  7330. o136.Anchored = true
  7331. o136.FormFactor = Enum.FormFactor.Custom
  7332. o136.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7333. 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)
  7334. o136.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7335. o136.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7336. o136.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7337. o136.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7338. o136.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7339. o136.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7340. o136.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7341. o137.Parent = o136
  7342. o137.Scale = Vector3.new(0.666666687, 0.249999985, 0.74999994)
  7343. o137.MeshType = Enum.MeshType.Wedge
  7344. o138.Parent = o1
  7345. o138.Material = Enum.Material.SmoothPlastic
  7346. o138.BrickColor = BrickColor.new("Black")
  7347. o138.Position = Vector3.new(18.950964, 0.919857979, 14.2271004)
  7348. o138.Rotation = Vector3.new(-0.600734293, 89.980217, -5.99351438e-007)
  7349. o138.Anchored = true
  7350. o138.FormFactor = Enum.FormFactor.Custom
  7351. o138.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7352. 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)
  7353. o138.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7354. o138.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7355. o138.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7356. o138.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7357. o138.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7358. o138.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7359. o138.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7360. o139.Parent = o138
  7361. o139.Scale = Vector3.new(0.888888896, 0.249999985, 0.666666687)
  7362. o140.Parent = o1
  7363. o140.Material = Enum.Material.SmoothPlastic
  7364. o140.BrickColor = BrickColor.new("Black")
  7365. o140.Position = Vector3.new(18.950964, 1.17262495, 14.2539701)
  7366. o140.Rotation = Vector3.new(30.0000038, 1.24663654e-006, -90)
  7367. o140.Anchored = true
  7368. o140.FormFactor = Enum.FormFactor.Custom
  7369. o140.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7370. 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)
  7371. o140.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7372. o140.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7373. o140.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7374. o140.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7375. o140.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7376. o140.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7377. o140.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7378. o141.Parent = o140
  7379. o141.Scale = Vector3.new(0.194444433, 0.416666687, 0.194444433)
  7380. o142.Parent = o1
  7381. o142.Material = Enum.Material.SmoothPlastic
  7382. o142.BrickColor = BrickColor.new("Really black")
  7383. o142.Position = Vector3.new(18.950964, 1.10038495, 14.3182096)
  7384. o142.Rotation = Vector3.new(3.08320072e-016, 90, 0)
  7385. o142.Anchored = true
  7386. o142.FormFactor = Enum.FormFactor.Custom
  7387. o142.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7388. 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)
  7389. o142.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7390. o142.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7391. o142.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7392. o142.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7393. o142.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7394. o142.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7395. o142.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7396. o143.Parent = o142
  7397. o143.Scale = Vector3.new(0.027777778, 0.722222269, 0.388888866)
  7398. o144.Parent = o1
  7399. o144.Material = Enum.Material.SmoothPlastic
  7400. o144.BrickColor = BrickColor.new("Black")
  7401. o144.Position = Vector3.new(18.950964, 0.986526012, 14.2826424)
  7402. o144.Rotation = Vector3.new(3.08320072e-016, 0, 6.27987314e-020)
  7403. o144.Anchored = true
  7404. o144.FormFactor = Enum.FormFactor.Custom
  7405. o144.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7406. 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)
  7407. o144.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7408. o144.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7409. o144.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7410. o144.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7411. o144.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7412. o144.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7413. o144.Color = Color3.new(0.105882, 0.164706, 0.207843)
  7414. o145.Parent = o144
  7415. o145.Scale = Vector3.new(0.666666687, 0.416666687, 0.333333343)
  7416. o145.MeshType = Enum.MeshType.Wedge
  7417. o146.Parent = o1
  7418. o146.Material = Enum.Material.SmoothPlastic
  7419. o146.BrickColor = BrickColor.new("Really black")
  7420. o146.Position = Vector3.new(18.950964, 0.872651994, 14.2770796)
  7421. o146.Rotation = Vector3.new(2.18855899e-013, 2.50129006e-006, 180)
  7422. o146.Anchored = true
  7423. o146.FormFactor = Enum.FormFactor.Custom
  7424. o146.Size = Vector3.new(0.200000003, 0.200000003, 0.211111099)
  7425. 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)
  7426. o146.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7427. o146.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7428. o146.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7429. o146.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7430. o146.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7431. o146.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7432. o146.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7433. o147.Parent = o146
  7434. o147.Scale = Vector3.new(0.666666687, 0.277777761, 1)
  7435. o147.MeshType = Enum.MeshType.Wedge
  7436. o148.Name = "Handle"
  7437. o148.Parent = o1
  7438. o148.Material = Enum.Material.SmoothPlastic
  7439. o148.BrickColor = BrickColor.new("Really black")
  7440. o148.Transparency = 1
  7441. o148.Position = Vector3.new(18.9506321, 0.598004997, 14.4106464)
  7442. o148.Rotation = Vector3.new(180, -2.50129006e-006, 180)
  7443. o148.Anchored = true
  7444. o148.FormFactor = Enum.FormFactor.Custom
  7445. o148.Size = Vector3.new(0.200000003, 0.205555543, 0.200000003)
  7446. 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)
  7447. o148.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7448. o148.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7449. o148.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7450. o148.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7451. o148.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7452. o148.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7453. o148.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7454. o149.Name = "FireSound"
  7455. o149.Parent = o148
  7456. o149.SoundId = "rbxassetid://330704232"
  7457. o149.Volume = 10
  7458. o150.Parent = o148
  7459. o150.Scale = Vector3.new(0.99999994, 1, 0.99999994)
  7460. Victim = game.Players.LocalPlayer.Character
  7461. function Suicide ()
  7462. Victim.Torso.Neck.C0 = CFrame.new(0,1.5,0) * CFrame.Angles(math.rad(25), -math.rad(0),-math.rad(0))
  7463. Victim.Torso.Neck.C1 = CFrame.new(0,0,0)
  7464. wait(.02)
  7465. Victim.Torso["Right Shoulder"].C0 = CFrame.new(2.3,.5,0) * CFrame.Angles(math.rad(-90), -math.rad(160),-math.rad(-70))
  7466. Victim.Torso["Right Shoulder"].C1 = CFrame.new(0,0,0)
  7467. ANGLE = -70
  7468. ANGLE2 = -20
  7469. for i=1,7 do
  7470. ANGLE = ANGLE + 10
  7471. ANGLE2 = ANGLE2 + 10
  7472. Victim.Torso["Right Shoulder"].C0 = CFrame.new(2.3,.5,0) * CFrame.Angles(math.rad(-90), -math.rad(160),-math.rad(ANGLE))
  7473. Victim.Torso["Right Shoulder"].C1 = CFrame.new(0,0,0)
  7474. wait(1/30)
  7475. end
  7476. wait(.3)
  7477. o1.Handle.FireSound.Parent = workspace
  7478. workspace.FireSound:Play()
  7479. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  7480. game.Players.LocalPlayer.Character.Head.BrickColor = BrickColor.new("Maroon")
  7481. player = game.Players[Victim.Name]
  7482. char = player.Character
  7483. char.Archivable = true
  7484. local rg = char:Clone()
  7485. rg.HumanoidRootPart:Destroy()
  7486. rg.Name = ""
  7487. rg.Humanoid.MaxHealth = 0
  7488.  
  7489. for i, v in pairs(rg.Torso:GetChildren()) do
  7490. if v:IsA("Glue") or v:IsA("Motor6D") then
  7491. v:Destroy()
  7492. end
  7493. end
  7494.  
  7495. local n = Instance.new("Glue", rg.Torso)
  7496. n.Name = "Neck"
  7497. n.Part0 = rg.Torso
  7498. n.Part1 = rg.Head
  7499. n.C0 = CFrame.new(0, 1, 0)
  7500. n.C1 = CFrame.new(0, -0.5, 0)
  7501.  
  7502.  
  7503. local rs = Instance.new("Glue", rg.Torso)
  7504. rs.Name = "Right Shoulder"
  7505. rs.Part0 = rg.Torso
  7506. rs.Part1 = rg["Right Arm"]
  7507. rs.C0 = CFrame.new(1.5, 0.5, 0)
  7508. rs.C1 = CFrame.new(0, 0.5, 0)
  7509. local ls = Instance.new("Glue", rg.Torso)
  7510. ls.Name = "Left Shoulder"
  7511. ls.Part0 = rg.Torso
  7512. ls.Part1 = rg["Left Arm"]
  7513. ls.C0 = CFrame.new(-1.5, 0.5, 0)
  7514. ls.C1 = CFrame.new(0, 0.5, 0)
  7515.  
  7516. local rh = Instance.new("Glue", rg.Torso)
  7517. rh.Name = "Right Hip"
  7518. rh.Part0 = rg.Torso
  7519. rh.Part1 = rg["Right Leg"]
  7520. rh.C0 = CFrame.new(0.5, -1, 0)
  7521. rh.C1 = CFrame.new(0, 1, 0)
  7522. local lh = Instance.new("Glue", rg.Torso)
  7523. lh.Name = "Left Hip"
  7524. lh.Part0 = rg.Torso
  7525. lh.Part1 = rg["Left Leg"]
  7526. lh.C0 = CFrame.new(-0.5, -1, 0)
  7527. lh.C1 = CFrame.new(0, 1, 0)
  7528. char.Torso:Destroy()
  7529. char.Head:Destroy()
  7530. char["Left Leg"]:Destroy()
  7531. char["Left Arm"]:Destroy()
  7532. char["Right Leg"]:Destroy()
  7533. char["Right Arm"]:Destroy()
  7534. rg.Parent = game.Workspace
  7535. rg.Head.BrickColor = BrickColor.new("Maroon")
  7536. rg.Torso.Neck:Destroy()
  7537. for i, v in pairs(rg.Torso:GetChildren()) do
  7538. if v:IsA("Motor6D") then
  7539. v:Destroy()
  7540. end
  7541. end
  7542. function DEATH ()
  7543. OHHNELLY = Instance.new("Part")
  7544. OHHNELLY.Parent = rg
  7545. OHHNELLY.Anchored = false
  7546. OHHNELLY.Material = Enum.Material.SmoothPlastic
  7547. OHHNELLY.BrickColor = BrickColor.new("Maroon")
  7548. OHHNELLY.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7549. OHHNELLY.Position = rg.Head.Position
  7550. OHHNELLY.Color = Color3.new(0.458824, 0, 0)
  7551. OHHNELLY.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7552. OHHNELLY.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7553. OHHNELLY.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7554. OHHNELLY.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7555. OHHNELLY.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7556. OHHNELLY.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7557. end
  7558. for i=1, 10 do
  7559. DEATH()
  7560. print"BLOODY"
  7561. wait()
  7562. end
  7563. end
  7564. function Weld(x,y)
  7565. local W = Instance.new("Weld")
  7566. W.Part0 = x
  7567. W.Part1 = y
  7568. local CJ = CFrame.new(x.Position)
  7569. local C0 = x.CFrame:inverse()*CJ
  7570. local C1 = y.CFrame:inverse()*CJ
  7571. W.C0 = C0
  7572. W.C1 = C1
  7573. W.Parent = x
  7574. end
  7575.  
  7576. function Get(A)
  7577. if A.className == "Part" then
  7578. Weld(o1.Handle, A)
  7579. A.Anchored = false
  7580. else
  7581. local C = A:GetChildren()
  7582. for i=1, #C do
  7583. Get(C[i])
  7584. end
  7585. end
  7586. end
  7587.  
  7588. function Finale()
  7589. Get(o1)
  7590. end
  7591.  
  7592. o1.Equipped:connect(Finale)
  7593. o1.Unequipped:connect(Finale)
  7594. o1.Activated:connect(Suicide)
  7595. Finale()
  7596. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement