Advertisement
GabeTheDog

Knife V1 script

Mar 7th, 2018
1,523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 345.07 KB | None | 0 0
  1. --Made By Bartus2009_Bro/GabeTheDog
  2. --Credits: giantgamingchannel, Bartus2009_Bro
  3. --Discord: Gabe#2408
  4.  
  5. function onKeyPress(inputObject, gameProcessedEvent)
  6. if inputObject.KeyCode == Enum.KeyCode.B then
  7. -- Location: Players.Cronizete.Character.BODYGUARDSV2
  8. -- Synapse Decompiler
  9. -- Purchase Here: https://brack4712.xyz/synapse/purchase
  10.  
  11. --// Controls
  12. --// X = Summon a bodyguard
  13. --// M = Change Types of bodyguards (Snipers, riflers) Sniper is the default
  14. --// Q = Aim
  15. --// C = Makes all the bodyguards disappear.
  16. --// Click = Shoot (You have to aim at somebody for snipers, you don't have to for the rifles)
  17.  
  18. plr = game:service'Players'.LocalPlayer
  19. char = plr.Character
  20.  
  21. --// Anti double
  22. script.Name = "BODYGUARDSV2_TEMP"
  23. for _, a in pairs(char:GetDescendants()) do
  24. if a.Name == "BODYGUARDSV2" then
  25. a:Destroy()
  26. elseif a.Name == "" then
  27. a:Destroy()
  28. end
  29. end
  30. script.Name = "BODYGUARDSV2"
  31. --// Main Script
  32.  
  33. head = char.Head
  34. mouse = plr:GetMouse()
  35. sam = 0
  36. char.Archivable = true
  37. arms = nil
  38. torso = nil
  39. follow = false
  40. current = nil
  41. curfollow = nil
  42. rifleshoot = false
  43. targ, huma = nil,nil
  44.  
  45. --// points
  46. point1 = Instance.new('Part', char)
  47. point1.Anchored = false
  48. point1.CanCollide = false
  49. point1.Transparency = 1
  50. point1.Size = Vector3.new(0.2,0.2,0.2)
  51.  
  52. Weld = Instance.new("Weld",game.Players.LocalPlayer.Character)
  53. Weld.Part0 = game.Players.LocalPlayer.Character["Torso"]
  54. Weld.Part1 = point1
  55. Weld.C1 = CFrame.new(10, 0, 0) * CFrame.fromEulerAnglesXYZ(0, 0, 0)
  56.  
  57. point2 = Instance.new('Part', char)
  58. point2.Anchored = false
  59. point2.CanCollide = false
  60. point2.Transparency = 1
  61. point2.Size = Vector3.new(0.2,0.2,0.2)
  62.  
  63. Weld = Instance.new("Weld",game.Players.LocalPlayer.Character)
  64. Weld.Part0 = game.Players.LocalPlayer.Character["Torso"]
  65. Weld.Part1 = point2
  66. Weld.C1 = CFrame.new(-10, 0, 0) * CFrame.fromEulerAnglesXYZ(0, 0, 0)
  67. --// points
  68.  
  69. --// Configuration
  70.  
  71. max = 15
  72. max1 = 2
  73. maxammo = 30
  74. mode = "Snipers"
  75.  
  76. --//
  77.  
  78. snipers,riflers,welds = {},{},{}
  79.  
  80. skinc = {
  81. 'Rust',
  82. 'Cool yellow',
  83. 'Br. yellowish orange',
  84. 'Pastel yellow',
  85. 'CGA brown'
  86. }
  87.  
  88. props = {
  89. 'HeadColor',
  90. 'LeftArmColor',
  91. 'RightArmColor',
  92. 'TorsoColor',
  93. 'RightLegColor',
  94. 'LeftLegColor'
  95. }
  96.  
  97. snpr = char:Clone()
  98. snpr.Name = ""
  99.  
  100. for _, a in pairs(snpr:children()) do
  101. if a:IsA'CharacterMesh' or a:IsA'Accessory' or a:IsA'Shirt' or a:IsA'Pants' then
  102. a:Destroy()
  103. end
  104. end
  105.  
  106. snpr.Parent = nil
  107.  
  108. bg = Instance.new("BodyGyro", snpr.HumanoidRootPart)
  109. bg.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  110. bg.Name = "FOLLOW"
  111. bg.P = 10000
  112. bg.D = 100
  113.  
  114. sfx = Instance.new('Sound', snpr.Head)
  115. sfx.SoundId = "rbxassetid://740599871"
  116. sfx.Volume = 3
  117. sfx2 = Instance.new('Sound', snpr)
  118. sfx2.Name = "SNIPERSOUND"
  119. sfx2.SoundId = "rbxassetid://136523485"
  120. sfx2.Volume = 3
  121.  
  122. lazor = Instance.new('Part', snpr)
  123. lazor.Name = "Laser"
  124. lazor.Anchored = true
  125. lazor.Shape = Enum.PartType.Ball
  126. lazor.Size = Vector3.new(0.3,0.3,0.3)
  127. lazor.BrickColor = BrickColor.new('Really red')
  128. lazor.Transparency = 0.4
  129. lazor.CanCollide = false
  130.  
  131. shirt = Instance.new('Shirt', snpr)
  132. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=139465409"
  133. pants = Instance.new('Pants', snpr)
  134. pants.PantsTemplate = "http://www.roblox.com/asset/?id=139466214"
  135. ----------------------------------------------------------------
  136. hat = Instance.new('Part', snpr)
  137. hat.Name = 'Hat'
  138. hat.Anchored = false
  139. hat.CanCollide = false
  140. mesh = Instance.new('SpecialMesh', hat)
  141. mesh.MeshId = "http://www.roblox.com/asset/?id=31152467"
  142. mesh.TextureId = "http://www.roblox.com/asset/?id=32002857"
  143. mesh.Scale = Vector3.new(1,1,1)
  144. weld = Instance.new('Weld', hat)
  145. weld.Part0 = hat
  146. weld.Part1 = snpr.Head
  147. weld.C0 = CFrame.new(0,-0.2,0)
  148. --------------------------------------------
  149. sniper = Instance.new('Part', snpr)
  150. sniper.Anchored = false
  151. sniper.CanCollide = false
  152. sniper.Name = "Sniper"
  153. sniper.Size = Vector3.new(7.88, 1.77, 1)
  154. mesh = Instance.new('SpecialMesh', sniper)
  155. mesh.MeshId = "rbxassetid://462309398"
  156. mesh.TextureId = "rbxassetid://462309404"
  157. mesh.Scale = Vector3.new(0.006, 0.006, 0.006)
  158. weld = Instance.new('Weld', sniper)
  159. weld.Part0 = sniper
  160. weld.Part1 = snpr.Head
  161. weld.C0 = CFrame.new(-2,0.5,-0.2) * CFrame.Angles(math.rad(0),math.rad(-90),math.rad(0))
  162.  
  163. arms = {snpr:FindFirstChild("Left Arm"), snpr:FindFirstChild("Right Arm")}
  164. torso = snpr:FindFirstChild("Torso")
  165.  
  166. if arms ~= nil and torso ~= nil then
  167. local sh = {torso:FindFirstChild("Left Shoulder"), torso:FindFirstChild("Right Shoulder")}
  168. if sh ~= nil then
  169. local yes = true
  170. if yes then
  171. yes = false
  172. sh[1].Part1 = nil
  173. sh[2].Part1 = nil
  174. local weld1 = Instance.new("Weld")
  175. weld1.Part0 = torso
  176. weld1.Parent = torso
  177. weld1.Part1 = arms[1]
  178. weld1.C1 = CFrame.new(-0.249, 1.35, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90))
  179. welds[1] = weld1
  180. local weld2 = Instance.new("Weld")
  181. weld2.Part0 = torso
  182. weld2.Parent = torso
  183. weld2.Part1 = arms[2]
  184. weld2.C1 = CFrame.new(-1, -0.2, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  185. welds[2] = weld2
  186. end
  187. end
  188. end
  189.  
  190. function sniper(pos)
  191. if sam <= max - 1 then
  192. local sniper = snpr:Clone()
  193. local bodyc = sniper:FindFirstChildOfClass'BodyColors'
  194. local skincolor = skinc[math.random(1,5)]
  195.  
  196. for _, a in pairs(props) do
  197. bodyc[a] = BrickColor.new(skincolor)
  198. end
  199.  
  200. sniper.Parent = char
  201. sniper:MoveTo(pos)
  202. sniper.Torso.CFrame = CFrame.new(sniper.Torso.Position, head.Position)
  203. table.insert(snipers, sniper)
  204. sam = sam + 1
  205. end
  206. end
  207.  
  208. function rifler(pos)
  209. if sam <= max1 - 1 then
  210. local rifler = snpr:Clone()
  211. local bodyc = rifler:FindFirstChildOfClass'BodyColors'
  212. local skincolor = skinc[math.random(1,5)]
  213.  
  214. for _, a in pairs(props) do
  215. bodyc[a] = BrickColor.new(skincolor)
  216. end
  217.  
  218. for _, a in pairs(rifler:GetDescendants()) do
  219. if a:IsA'BodyGyro' then
  220. a:Destroy()
  221. end
  222. end
  223.  
  224. rifler.Parent = char
  225. rifler:MoveTo(pos)
  226. rifler.Torso.CFrame = CFrame.new(rifler.Torso.Position, head.Position)
  227. rifler:FindFirstChild'SNIPERSOUND'.Pitch = 1.2
  228. rifle = rifler:FindFirstChild'Sniper'
  229. rifle.Name = "Rifle"
  230. rifle:FindFirstChildOfClass'SpecialMesh'.TextureId = "rbxassetid://546505949"
  231. rifle:FindFirstChildOfClass'SpecialMesh'.MeshId = "rbxassetid://546505802"
  232. rifle:FindFirstChildOfClass'SpecialMesh'.Scale = Vector3.new(0.2, 0.2, 0.2)
  233. rifle:FindFirstChildOfClass'Weld'.C0 = CFrame.new(-.4,.6,1.6) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  234. table.insert(riflers, rifler)
  235. sam = sam + 1
  236. end
  237. end
  238.  
  239. function ray(a,b)
  240. local ray = Ray.new(a.CFrame.p, (b - a.CFrame.p).unit * 700)
  241. local part, position = workspace:FindPartOnRay(ray, char, false, true)
  242.  
  243. local beam = Instance.new("Part", workspace)
  244. beam.FormFactor = "Custom"
  245. beam.Material = "Plastic"
  246. beam.Transparency = 0.25
  247. beam.Anchored = true
  248. beam.Locked = true
  249. beam.CanCollide = false
  250. beam.BrickColor = BrickColor.new('Really black')
  251.  
  252. local distance = (a.CFrame.p - position).magnitude
  253. beam.Size = Vector3.new(0.08, 0.08, distance)
  254. beam.CFrame = CFrame.new(a.CFrame.p, position) * CFrame.new(0, 0, -distance / 2)
  255.  
  256. game:GetService('Debris'):AddItem(beam, 0.1)
  257. end
  258.  
  259. mouse.KeyDown:connect(function(k)
  260. local key = k:lower()
  261. if key == "x" then
  262. follow = false
  263. if mode == "Snipers" then
  264. sniper(mouse.Hit.p)
  265. elseif mode == "Riflers" then
  266. rifler(mouse.Hit.p)
  267. end
  268. wait(.3)
  269. if curfollow then
  270. follow = true
  271. elseif not curfollow then
  272. follow = false
  273. end
  274. elseif key == "c" then
  275. for _, a in pairs(char:children()) do
  276. if a.Name == "" then
  277. for i = 1,10 do
  278. a:FindFirstChild'HumanoidRootPart'.CFrame = a:FindFirstChild'HumanoidRootPart'.CFrame * CFrame.new(0,-i + 0.8,0)
  279. wait()
  280. end
  281. wait(.15)
  282. a:Destroy()
  283. sam = sam - 1
  284. end
  285. end
  286. elseif key == "m" then
  287. if mode == "Snipers" then
  288. mode = "Riflers"
  289. elseif mode == "Riflers" then
  290. mode = "Snipers"
  291. end
  292. elseif key == "q" then
  293. if not follow then
  294. follow = true
  295. curfollow = true
  296. on = false
  297. for i = 1, sam / 2 do
  298. wait(.6)
  299. local now
  300. ypcall(function()
  301. if mode == "Snipers" then
  302. now = snipers[math.random(1,#snipers)]
  303. elseif mode == "Riflers" then
  304. now = riflers[math.random(1,#riflers)]
  305. end
  306. end)
  307. for _, a in pairs(riflers) do
  308. bg = Instance.new("BodyGyro", a.HumanoidRootPart)
  309. bg.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  310. bg.Name = "FOLLOW"
  311. bg.P = 10000
  312. bg.D = 100
  313. end
  314. now.Head.Sound:Resume()
  315. current = now.Head.Sound.SoundId
  316. end
  317. elseif follow then
  318. for _, a in pairs(riflers) do
  319. for _, b in pairs(a:GetDescendants()) do
  320. if b:IsA'BodyGyro' then
  321. b:Destroy()
  322. end
  323. end
  324. end
  325. follow = false
  326. curfollow = false
  327. end
  328. end
  329. end)
  330.  
  331. mouse.Button1Down:connect(function()
  332. if follow and mode ~= "Riflers" and mouse.Target and mouse.Target.Parent and mouse.Target.Parent:FindFirstChildOfClass'Humanoid' then
  333. follow = false
  334. local targ = mouse.Target
  335. huma = targ.Parent:FindFirstChildOfClass'Humanoid'
  336. for _, a in pairs(targ.Parent:children()) do
  337. if a:IsA'ForceField' then
  338. a:Destroy()
  339. end
  340. end
  341. huma.MaxHealth = 100
  342. huma.Name = "Humanoid"
  343. if mode == "Snipers" then
  344. for _, a in pairs(snipers) do
  345. if a:FindFirstChild'HumanoidRootPart' then
  346. wait(.2)
  347. rootpart = a.HumanoidRootPart
  348. snd = rootpart.Parent:FindFirstChild'SNIPERSOUND'
  349. snd:Play()
  350. ray(a:FindFirstChild'Sniper',targ.Parent.Head.Position)
  351. huma:TakeDamage(huma.MaxHealth/2/2/2)
  352. end
  353. end
  354. follow = true
  355. end
  356. end
  357. end)
  358.  
  359. mouse.Button1Down:connect(function()
  360. if mode == "Riflers" then
  361. rifleshoot = true
  362. end
  363. end)
  364.  
  365. mouse.Button1Up:connect(function()
  366. if mode == "Riflers" then
  367. rifleshoot = false
  368. end
  369. end)
  370.  
  371. while wait() do
  372. ypcall(function()
  373. riflers[1]:FindFirstChildOfClass'Humanoid':MoveTo(point1.Position)
  374. riflers[2]:FindFirstChildOfClass'Humanoid':MoveTo(point2.Position)
  375. end)
  376. if follow then
  377. if mode == "Snipers" then
  378. for _, a in pairs(snipers) do
  379. if a:FindFirstChild'HumanoidRootPart' then
  380. rootpart = a.HumanoidRootPart
  381. rootpart.FOLLOW.CFrame = CFrame.new(rootpart.Position, mouse.Hit.p * Vector3.new(1,0,1) + rootpart.Position * Vector3.new(0,1,0))
  382. rootpart.Parent:WaitForChild'Laser'.CFrame = mouse.Hit
  383. end
  384. end
  385. elseif mode == "Riflers" then
  386. for _, a in pairs(riflers) do
  387. if a:FindFirstChild'HumanoidRootPart' then
  388. rootpart = a.HumanoidRootPart
  389. ypcall(function() rootpart.FOLLOW.CFrame = CFrame.new(rootpart.Position, mouse.Hit.p * Vector3.new(1,0,1) + rootpart.Position * Vector3.new(0,1,0)) end)
  390. rootpart.Parent:WaitForChild'Laser'.CFrame = mouse.Hit
  391. end
  392. end
  393. end
  394. end
  395. if rifleshoot and follow and mouse.Target and mouse.Target.Parent then
  396. local targ = mouse.Target
  397. local huma = nil
  398. if targ.Parent:FindFirstChildOfClass'Humanoid' then
  399. huma = targ.Parent:FindFirstChildOfClass'Humanoid'
  400. else
  401. huma = nil
  402. end
  403. if huma ~= nil then
  404. for _, a in pairs(riflers) do
  405. if a:FindFirstChild'HumanoidRootPart' and huma.Health ~= 0 then
  406. wait(.02)
  407. rootpart = a.HumanoidRootPart
  408. snd = rootpart.Parent:FindFirstChild'SNIPERSOUND'
  409. snd.Pitch = 80
  410. snd:Resume()
  411. ray(a:FindFirstChild'Rifle',targ.Parent.Head.Position)
  412. huma:TakeDamage(huma.MaxHealth/2/2/2/2/2)
  413. end
  414. end
  415. else
  416. for _, a in pairs(riflers) do
  417. snd = rootpart.Parent:FindFirstChild'SNIPERSOUND'
  418. snd.Pitch = 80
  419. snd:Resume()
  420. ray(a:FindFirstChild'Rifle',mouse.Hit.p)
  421. end
  422. end
  423. end
  424. end
  425. end
  426. end
  427.  
  428. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  429.  
  430. function onKeyPress(inputObject, gameProcessedEvent)
  431. if inputObject.KeyCode == Enum.KeyCode.G then
  432. --M4A1 Customizable by DMS
  433. --[[
  434. Suggested LoadOuts:
  435. -Sniper (ACOG, ANGLEGRIP, Laser, Silencer, Really black)
  436. -Support (HOLOSIGHT, BIPOD, FlashLight, Drum, Black)
  437. -Assualt (REFLEX, GRIP, FlashLight, Black)
  438. --]]
  439. --[[
  440. CONTROLS:
  441. F = FlashLight On/Off
  442. Q = Aim on MainSight
  443. --]]
  444. Sight = "IRONSIGHT" --ACOG, C79, M145, SUSAT, REFLEX, HOLOSIGHT, IRONSIGHT (IRONSIGHT ANYTHING ELSE)
  445. Grip = "NOTHING" -- VERTGRIP, BIPOD, ANGLEGRIP OR NOTHING (NOTHING ANYTHING ELSE)
  446. Drum = false --true or false
  447. FlashLight = false --same as drum
  448. Silencer = false --same as flashlight
  449. Laser = false --same as silencer
  450. Bayonet = false --same as laser
  451. CUSTOMCOLOR = "Black" --BrickColor plz
  452. local GGNORE = function(f,scri)
  453. local oldenv = getfenv(f)
  454. local newenv = setmetatable({}, {
  455. __index = function(_, k)
  456. if k:lower() == 'script' then
  457. return scri
  458. else
  459. return oldenv[k]
  460. end
  461. end
  462. })
  463. setfenv(f, newenv)
  464. ypcall(function() f() end)
  465. end
  466. cors = {}
  467. o1 = Instance.new("Tool")
  468. o2 = Instance.new("LocalScript")
  469. o3 = Instance.new("LocalScript")
  470. o4 = Instance.new("NumberValue")
  471. o5 = Instance.new("LocalScript")
  472. o6 = Instance.new("NumberValue")
  473. o7 = Instance.new("NumberValue")
  474. o8 = Instance.new("Script")
  475. o9 = Instance.new("NumberValue")
  476. o10 = Instance.new("LocalScript")
  477. o11 = Instance.new("NumberValue")
  478. o12 = Instance.new("LocalScript")
  479. o13 = Instance.new("LocalScript")
  480. o14 = Instance.new("LocalScript")
  481. o15 = Instance.new("BoolValue")
  482. o16 = Instance.new("Part")
  483. o17 = Instance.new("BlockMesh")
  484. o18 = Instance.new("Part")
  485. o19 = Instance.new("BlockMesh")
  486. o20 = Instance.new("Part")
  487. o21 = Instance.new("BlockMesh")
  488. o22 = Instance.new("Part")
  489. o23 = Instance.new("BlockMesh")
  490. o24 = Instance.new("Part")
  491. o25 = Instance.new("CylinderMesh")
  492. o26 = Instance.new("Part")
  493. o27 = Instance.new("BlockMesh")
  494. o28 = Instance.new("Sound")
  495. o29 = Instance.new("Sound")
  496. o30 = Instance.new("Sound")
  497. o31 = Instance.new("Sound")
  498. o32 = Instance.new("Sound")
  499. o33 = Instance.new("Sound")
  500. o35 = Instance.new("Part")
  501. o36 = Instance.new("BlockMesh")
  502. o37 = Instance.new("Part")
  503. o38 = Instance.new("SpecialMesh")
  504. o39 = Instance.new("Part")
  505. o40 = Instance.new("BlockMesh")
  506. o41 = Instance.new("Part")
  507. o42 = Instance.new("BlockMesh")
  508. o43 = Instance.new("Part")
  509. o44 = Instance.new("BlockMesh")
  510. o45 = Instance.new("Part")
  511. o46 = Instance.new("BlockMesh")
  512. o47 = Instance.new("Part")
  513. o48 = Instance.new("BlockMesh")
  514. o49 = Instance.new("Part")
  515. o50 = Instance.new("CylinderMesh")
  516. o51 = Instance.new("Part")
  517. o52 = Instance.new("CylinderMesh")
  518. o53 = Instance.new("Part")
  519. o54 = Instance.new("CylinderMesh")
  520. o55 = Instance.new("Part")
  521. o56 = Instance.new("SpecialMesh")
  522. o57 = Instance.new("Part")
  523. o58 = Instance.new("CylinderMesh")
  524. o59 = Instance.new("Part")
  525. o60 = Instance.new("CylinderMesh")
  526. o61 = Instance.new("Part")
  527. o62 = Instance.new("SpecialMesh")
  528. o63 = Instance.new("Part")
  529. o64 = Instance.new("CylinderMesh")
  530. o65 = Instance.new("Part")
  531. o66 = Instance.new("SpecialMesh")
  532. o67 = Instance.new("Part")
  533. o68 = Instance.new("CylinderMesh")
  534. o69 = Instance.new("Part")
  535. o70 = Instance.new("SpecialMesh")
  536. o71 = Instance.new("Part")
  537. o72 = Instance.new("BlockMesh")
  538. o73 = Instance.new("Part")
  539. o74 = Instance.new("CylinderMesh")
  540. o75 = Instance.new("Part")
  541. o76 = Instance.new("BlockMesh")
  542. o77 = Instance.new("Part")
  543. o78 = Instance.new("BlockMesh")
  544. o79 = Instance.new("Part")
  545. o80 = Instance.new("BlockMesh")
  546. o81 = Instance.new("Part")
  547. o82 = Instance.new("CylinderMesh")
  548. o83 = Instance.new("Part")
  549. o84 = Instance.new("SpecialMesh")
  550. o85 = Instance.new("Part")
  551. o86 = Instance.new("SpecialMesh")
  552. o87 = Instance.new("Part")
  553. o88 = Instance.new("BlockMesh")
  554. o89 = Instance.new("Part")
  555. o90 = Instance.new("SpecialMesh")
  556. o91 = Instance.new("Part")
  557. o92 = Instance.new("CylinderMesh")
  558. o93 = Instance.new("Part")
  559. o94 = Instance.new("CylinderMesh")
  560. o95 = Instance.new("Part")
  561. o96 = Instance.new("BlockMesh")
  562. o97 = Instance.new("Part")
  563. o98 = Instance.new("CylinderMesh")
  564. o99 = Instance.new("Part")
  565. o100 = Instance.new("CylinderMesh")
  566. o101 = Instance.new("Part")
  567. o102 = Instance.new("BlockMesh")
  568. o103 = Instance.new("Part")
  569. o104 = Instance.new("CylinderMesh")
  570. o105 = Instance.new("Part")
  571. o106 = Instance.new("SpecialMesh")
  572. o107 = Instance.new("Part")
  573. o108 = Instance.new("SpecialMesh")
  574. o109 = Instance.new("Part")
  575. o110 = Instance.new("BlockMesh")
  576. o111 = Instance.new("Part")
  577. o112 = Instance.new("BlockMesh")
  578. o113 = Instance.new("Part")
  579. o114 = Instance.new("CylinderMesh")
  580. o115 = Instance.new("Part")
  581. o116 = Instance.new("CylinderMesh")
  582. o117 = Instance.new("Part")
  583. o118 = Instance.new("SpecialMesh")
  584. o119 = Instance.new("Part")
  585. o120 = Instance.new("BlockMesh")
  586. o121 = Instance.new("Part")
  587. o122 = Instance.new("SpecialMesh")
  588. o123 = Instance.new("Part")
  589. o124 = Instance.new("BlockMesh")
  590. o125 = Instance.new("Part")
  591. o126 = Instance.new("SpecialMesh")
  592. o127 = Instance.new("Part")
  593. o128 = Instance.new("SpecialMesh")
  594. o129 = Instance.new("Part")
  595. o130 = Instance.new("SpecialMesh")
  596. o131 = Instance.new("Part")
  597. o132 = Instance.new("CylinderMesh")
  598. o133 = Instance.new("Part")
  599. o134 = Instance.new("BlockMesh")
  600. o135 = Instance.new("Part")
  601. o136 = Instance.new("BlockMesh")
  602. o137 = Instance.new("Part")
  603. o138 = Instance.new("SpecialMesh")
  604. o139 = Instance.new("Part")
  605. o140 = Instance.new("SpecialMesh")
  606. o141 = Instance.new("Part")
  607. o142 = Instance.new("SpecialMesh")
  608. o143 = Instance.new("Part")
  609. o144 = Instance.new("CylinderMesh")
  610. o145 = Instance.new("Part")
  611. o146 = Instance.new("CylinderMesh")
  612. o147 = Instance.new("Part")
  613. o148 = Instance.new("SpecialMesh")
  614. o149 = Instance.new("Part")
  615. o150 = Instance.new("BlockMesh")
  616. o151 = Instance.new("Part")
  617. o152 = Instance.new("SpecialMesh")
  618. o153 = Instance.new("Part")
  619. o154 = Instance.new("BlockMesh")
  620. o155 = Instance.new("Part")
  621. o156 = Instance.new("BlockMesh")
  622. o157 = Instance.new("Part")
  623. o158 = Instance.new("CylinderMesh")
  624. o159 = Instance.new("Part")
  625. o160 = Instance.new("BlockMesh")
  626. o161 = Instance.new("Part")
  627. o162 = Instance.new("BlockMesh")
  628. o163 = Instance.new("Part")
  629. o164 = Instance.new("SpecialMesh")
  630. o165 = Instance.new("Part")
  631. o166 = Instance.new("SpecialMesh")
  632. o167 = Instance.new("Part")
  633. o168 = Instance.new("BlockMesh")
  634. o169 = Instance.new("Part")
  635. o170 = Instance.new("BlockMesh")
  636. o171 = Instance.new("Part")
  637. o172 = Instance.new("BlockMesh")
  638. o173 = Instance.new("Part")
  639. o174 = Instance.new("CylinderMesh")
  640. o175 = Instance.new("Part")
  641. o176 = Instance.new("SpecialMesh")
  642. o1.Name = "M4A1"
  643. o1.GripForward = Vector3.new(-0.252553493, -0, -0.967582941)
  644. o1.GripPos = Vector3.new(0, -0.300000012, 0.300000012)
  645. o1.GripRight = Vector3.new(0.967582941, 0, -0.252553493)
  646. o2.Name = "BackupWeld"
  647. o2.Parent = o1
  648. table.insert(cors,coroutine.create(function()
  649. wait()
  650. GGNORE(function()
  651. function Weld(x,y)
  652. local W = Instance.new("Weld")
  653. W.Part0 = x
  654. W.Part1 = y
  655. local CJ = CFrame.new(x.Position)
  656. local C0 = x.CFrame:inverse()*CJ
  657. local C1 = y.CFrame:inverse()*CJ
  658. W.C0 = C0
  659. W.C1 = C1
  660. W.Parent = x
  661. end
  662.  
  663. function Get(A)
  664. if A.className == "Part" then
  665. Weld(script.Parent.Handle, A)
  666. A.Anchored = false
  667. else
  668. local C = A:GetChildren()
  669. for i=1, #C do
  670. Get(C[i])
  671. end
  672. end
  673. end
  674.  
  675. function Finale()
  676. Get(script.Parent)
  677. end
  678.  
  679. script.Parent.Equipped:connect(Finale)
  680. script.Parent.Unequipped:connect(Finale)
  681. Finale()
  682. end,o2)
  683. end))
  684. o3.Name = "BackupWeld"
  685. o3.Parent = o1
  686. table.insert(cors,coroutine.create(function()
  687. wait()
  688. GGNORE(function()
  689. function Weld(x,y)
  690. local W = Instance.new("Weld")
  691. W.Part0 = x
  692. W.Part1 = y
  693. local CJ = CFrame.new(x.Position)
  694. local C0 = x.CFrame:inverse()*CJ
  695. local C1 = y.CFrame:inverse()*CJ
  696. W.C0 = C0
  697. W.C1 = C1
  698. W.Parent = x
  699. end
  700.  
  701. function Get(A)
  702. if A.className == "Part" then
  703. Weld(script.Parent.Handle, A)
  704. A.Anchored = false
  705. else
  706. local C = A:GetChildren()
  707. for i=1, #C do
  708. Get(C[i])
  709. end
  710. end
  711. end
  712.  
  713. function Finale()
  714. Get(script.Parent)
  715. end
  716.  
  717. script.Parent.Equipped:connect(Finale)
  718. script.Parent.Unequipped:connect(Finale)
  719. Finale()
  720. end,o3)
  721. end))
  722. o4.Name = "Ammo"
  723. o4.Parent = o1
  724. o4.Value = 30
  725. o5.Name = "GuiScript"
  726. o5.Parent = o1
  727. table.insert(cors,coroutine.create(function()
  728. wait()
  729. GGNORE(function()
  730. -- Thanks for SonicUnleashedXY & Manofthelol for this script.
  731. -- To remove the orginial script just go into shooter & right at the bottem you will see something like this:
  732. -- script.Parent.Tool.Name = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  733. -- Remove only that & add this to the tool.
  734. -- Remember this was designed for Manofthelol weapons so any other weapons might not work.
  735. -- You have no permission to repubish this in you model even if it edited.
  736. -- If your found then you will be ban from my place.
  737.  
  738. local Tool = script.Parent
  739. local Ammo = Tool.Ammo
  740. local MaxAmmo = Ammo.Value
  741.  
  742. local vPlayer
  743. local Gui
  744. local Text
  745.  
  746. function onChanged(value)
  747. if value == "Value" or value == Ammo.Value then
  748. if Gui ~= nil and Text ~= nil then
  749. if Ammo.Value >= 1 then
  750. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  751. elseif math.floor(Ammo.Value) == 0 then
  752. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  753. elseif Ammo.Value < 0 then
  754. for i = 0, 1, 0.03 / 2 do
  755. local Num = math.floor(i * MaxAmmo + 0.5)
  756.  
  757. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  758. wait()
  759. end
  760. end
  761. end
  762. end
  763. end
  764.  
  765. function on2Changed()
  766. if Gui ~= nil and Text ~= nil then
  767.  
  768. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  769. wait()
  770. end
  771. end
  772.  
  773. function setUpGui()
  774. if vPlayer == nil or vPlayer:findFirstChild("PlayerGui") == nil then
  775. return
  776. end
  777.  
  778. Gui = Instance.new("ScreenGui")
  779. Text = Instance.new("TextLabel")
  780.  
  781. Gui.Name = "DEDisplay"
  782. Gui.Parent = vPlayer.PlayerGui
  783.  
  784. Text.BackgroundColor3 = BrickColor.Black().Color
  785. Text.BackgroundTransparency = 1
  786. Text.BorderColor3 = BrickColor.White().Color
  787. Text.BorderSizePixel = 0
  788. Text.Name = "Ammo"
  789. Text.Parent = Gui
  790. Text.Position = UDim2.new(0.15, 0, 0.825, 0)
  791. Text.Size = UDim2.new(0, -60, 0, 64)
  792. Text.FontSize = "Size18"
  793. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  794. Text.TextColor3 = BrickColor.White().Color
  795. end
  796.  
  797. function onEquippedLocal(mouse)
  798. vPlayer = game.Players.LocalPlayer
  799.  
  800. setUpGui()
  801. end
  802.  
  803. function onUnequippedLocal(mouse)
  804. if Gui then
  805. Gui:remove()
  806. end
  807.  
  808. Gui = nil
  809. Text = nil
  810. vPlayer = nil
  811. end
  812.  
  813. Tool.Equipped:connect(onEquippedLocal)
  814. Tool.Unequipped:connect(onUnequippedLocal)
  815.  
  816. Ammo.Changed:connect(onChanged)
  817. Tool.StoredAmmo.Changed:connect(on2Changed)
  818. end,o5)
  819. end))
  820. o6.Name = "MaxAmmo"
  821. o6.Parent = o1
  822. o6.Value = 30
  823. o7.Name = "Recoil"
  824. o7.Parent = o1
  825. o7.Value = 3
  826. o8.Parent = o7
  827. o9.Name = "StoredAmmo"
  828. o9.Parent = o1
  829. o9.Value = 200
  830. o10.Name = "GuiScript(backup)"
  831. o10.Parent = o1
  832. table.insert(cors,coroutine.create(function()
  833. wait()
  834. GGNORE(function()
  835.  
  836. local Tool = script.Parent
  837. local Ammo = Tool.Ammo
  838. local MaxAmmo = Ammo.Value
  839.  
  840. local vPlayer
  841. local Gui
  842. local Text
  843.  
  844. function onChanged(value)
  845. if value == "Value" or value == Ammo.Value then
  846. if Gui ~= nil and Text ~= nil then
  847. if Ammo.Value >= 1 then
  848. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  849. elseif math.floor(Ammo.Value) == 0 then
  850. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  851. elseif Ammo.Value < 0 then
  852. for i = 0, 1, 0.03 / 2 do
  853. local Num = math.floor(i * MaxAmmo + 0.5)
  854.  
  855. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  856. wait()
  857. end
  858. end
  859. end
  860. end
  861. end
  862.  
  863. function on2Changed()
  864. if Gui ~= nil and Text ~= nil then
  865.  
  866. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  867. wait()
  868. end
  869. end
  870.  
  871. function setUpGui()
  872. if vPlayer == nil or vPlayer:findFirstChild("PlayerGui") == nil then
  873. return
  874. end
  875.  
  876. Gui = Instance.new("ScreenGui")
  877. Text = Instance.new("TextLabel")
  878.  
  879. Gui.Name = "DEDisplay"
  880. Gui.Parent = vPlayer.PlayerGui
  881.  
  882. Text.BackgroundColor3 = BrickColor.Black().Color
  883. Text.BackgroundTransparency = 1
  884. Text.BorderColor3 = BrickColor.White().Color
  885. Text.BorderSizePixel = 0
  886. Text.Name = "Ammo"
  887. Text.Parent = Gui
  888. Text.Position = UDim2.new(0.15, 0, 0.825, 0)
  889. Text.Size = UDim2.new(0, -60, 0, 64)
  890. Text.FontSize = "Size18"
  891. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  892. Text.TextColor3 = BrickColor.White().Color
  893. end
  894.  
  895. function onEquippedLocal(mouse)
  896. vPlayer = game.Players.LocalPlayer
  897.  
  898. setUpGui()
  899. end
  900.  
  901. function onUnequippedLocal(mouse)
  902. if Gui then
  903. Gui:remove()
  904. end
  905.  
  906. Gui = nil
  907. Text = nil
  908. vPlayer = nil
  909. end
  910.  
  911. Tool.Equipped:connect(onEquippedLocal)
  912. Tool.Unequipped:connect(onUnequippedLocal)
  913.  
  914. Ammo.Changed:connect(onChanged)
  915. Tool.StoredAmmo.Changed:connect(on2Changed)
  916. end,o10)
  917. end))
  918. o11.Name = "VAL"
  919. o11.Parent = o1
  920. o12.Name = "Shooter"
  921. o12.Parent = o1
  922. table.insert(cors,coroutine.create(function()
  923. wait()
  924. GGNORE(function()
  925. Tool = script.Parent
  926.  
  927. local arms = nil
  928. local torso = nil
  929. local weld33 = nil -- right arm
  930. local weld55 = nil -- left arm
  931. local welds = {}
  932. local reloading = false
  933. local firing = false
  934. local canreload = true
  935. local canshoot = true
  936. local damage = 20
  937.  
  938. function ReloadSequence() -- this will be a pain in my blocky butt.
  939. wait(.01)
  940. Tool.Mag.Transparency = 1
  941. local mag = Tool.Mag:clone()
  942. mag.Parent = game.Workspace
  943. mag.CanCollide = false
  944. mag.Transparency = 0
  945. Tool.Mag2.Transparency = 1
  946. local mag = Tool.Mag2:clone()
  947. mag.Parent = game.Workspace
  948. mag.CanCollide = false
  949. mag.Transparency = 0
  950. Tool.Handle.M1:play()
  951. wait(.15)
  952. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-92), math.rad(-15), 0.05)
  953. weld55.C1 = CFrame.new(-0.45, 1, 1.1) * CFrame.fromEulerAnglesXYZ(math.rad(315), -0.1, math.rad(-87))
  954. wait(.01)
  955. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-95), math.rad(-15), 0.1)
  956. weld55.C1 = CFrame.new(-0.45, 0.8, 1) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.2, math.rad(-84))
  957. wait(.01)
  958. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.3, math.rad(-81))
  959. wait(.01)
  960. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.4, math.rad(-78))
  961. wait(.01)
  962. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.5, math.rad(-75))
  963. wait(.01)
  964. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.6, math.rad(-72))
  965. wait(.2)
  966. Tool.Mag.Transparency = 0
  967. Tool.Mag2.Transparency = 0
  968. Tool.Mag.Mesh.Offset = Vector3.new(0, -0.6, 0)
  969. Tool.Mag2.Mesh.Offset = Vector3.new(0, -0.66, 0.15)
  970. wait(.01)
  971. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.5, math.rad(-75))
  972. Tool.Mag.Mesh.Offset = Vector3.new(0, -0.5, 0)
  973. Tool.Mag2.Mesh.Offset = Vector3.new(0, -0.55, 0.125)
  974. wait(.01)
  975. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.4, math.rad(-78))
  976. Tool.Mag.Mesh.Offset = Vector3.new(0, -0.4, 0)
  977. Tool.Mag2.Mesh.Offset = Vector3.new(0, -0.44, 0.1)
  978. wait(.01)
  979. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.3, math.rad(-81))
  980. Tool.Mag.Mesh.Offset = Vector3.new(0, -0.3, 0)
  981. Tool.Mag2.Mesh.Offset = Vector3.new(0, -0.33, 0.075)
  982. wait(.01)
  983. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.2, math.rad(-84))
  984. Tool.Mag.Mesh.Offset = Vector3.new(0, -0.2, 0)
  985. Tool.Mag2.Mesh.Offset = Vector3.new(0, -0.22, 0.05)
  986. wait(.3)
  987. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.1, math.rad(-87))
  988. Tool.Mag.Mesh.Offset = Vector3.new(0, -0.1, 0)
  989. Tool.Mag2.Mesh.Offset = Vector3.new(0, -0.11, 0.025)
  990. wait(.01)
  991. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), 0, math.rad(-90))
  992. Tool.Mag.Mesh.Offset = Vector3.new(0, 0, 0)
  993. Tool.Mag2.Mesh.Offset = Vector3.new(0, 0, 0)
  994. Tool.Handle.M2:play()
  995. wait(.03)
  996. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.1, math.rad(-87))
  997. wait(.03)
  998. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), 0, math.rad(-90))
  999. wait(.2)
  1000. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(295), 0.075, math.rad(-90))
  1001. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0.1)
  1002. wait(.03)
  1003. weld55.C1 = CFrame.new(-0.35, 0.8, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0.15, math.rad(-90))
  1004. weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  1005. wait(.03)
  1006. weld55.C1 = CFrame.new(-0.35, 0.6, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0.225, math.rad(-90))
  1007. weld33.C1 = CFrame.new(-0.75, -0.2, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-85), math.rad(-15), 0)
  1008. wait(.03)
  1009. weld55.C1 = CFrame.new(-0.35, 0.6, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0.225, math.rad(-90))
  1010. weld33.C1 = CFrame.new(-0.75, -0.2, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-85), math.rad(-15), 0)
  1011. wait(.03)
  1012. weld55.C1 = CFrame.new(-0.35, 0.3, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(300), 0.375, math.rad(-90))
  1013. wait(.3)
  1014. Tool.Handle.M3:play()
  1015. weld55.C1 = CFrame.new(-0.35, 0.3, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(300), 0.375, math.rad(-90))
  1016. Tool.A2.Mesh.Offset = Vector3.new(0, 0, -0.1)
  1017. Tool.A3.Mesh.Offset = Vector3.new(0, 0, -0.1)
  1018. wait(.02)
  1019. weld55.C1 = CFrame.new(-0.35, 0.4, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(300), 0.3, math.rad(-90))
  1020. Tool.A2.Mesh.Offset = Vector3.new(0, 0, -0)
  1021. Tool.A3.Mesh.Offset = Vector3.new(0, 0, -0)
  1022. wait(.02)
  1023. weld33.C1 = CFrame.new(-0.75, -0.25, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-85), math.rad(-15), 0)
  1024. weld55.C1 = CFrame.new(-0.35, 0.7, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(295), 0.15, math.rad(-90))
  1025. wait(.02)
  1026. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  1027. weld55.C1 = CFrame.new(-0.35, 1.4, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90))
  1028. end
  1029.  
  1030. function Reload()
  1031. if script.Parent.Ammo.Value < script.Parent.MaxAmmo.Value and reloading == false and script.Parent.StoredAmmo.Value >= 1 then
  1032. reloading = true
  1033. script.Parent.Ammo.Value = 0
  1034. ReloadSequence()
  1035. if script.Parent.StoredAmmo.Value >= script.Parent.MaxAmmo.Value then
  1036. script.Parent.Ammo.Value = script.Parent.MaxAmmo.Value
  1037. script.Parent.StoredAmmo.Value = script.Parent.StoredAmmo.Value - script.Parent.MaxAmmo.Value
  1038. script.Parent.Recoil.Value = 5
  1039. elseif script.Parent.StoredAmmo.Value < script.Parent.MaxAmmo.Value and script.Parent.StoredAmmo.Value >= 1 then
  1040. script.Parent.Ammo.Value = script.Parent.StoredAmmo.Value
  1041. script.Parent.StoredAmmo.Value = 0
  1042. script.Parent.Recoil.Value = 5
  1043. end
  1044. reloading = false
  1045. end
  1046. end
  1047.  
  1048. function Takeout()
  1049. wait(.01)
  1050. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-85), math.rad(-15), 0)
  1051. weld55.C1 = CFrame.new(-0.48, 0.9, 1.2) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  1052. wait(.3)
  1053. weld55.C1 = CFrame.new(-0.35, 0.3, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(300), 0.375, math.rad(-90))
  1054. Tool.A2.Mesh.Offset = Vector3.new(0, 0, -0.1)
  1055. Tool.A3.Mesh.Offset = Vector3.new(0, 0, -0.1)
  1056. wait(.4)
  1057. Tool.Handle.M3:play()
  1058. weld55.C1 = CFrame.new(-0.35, 0.4, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(300), 0.3, math.rad(-90))
  1059. Tool.A2.Mesh.Offset = Vector3.new(0, 0, -0)
  1060. Tool.A3.Mesh.Offset = Vector3.new(0, 0, -0)
  1061. wait(.2)
  1062. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-87), math.rad(-15), 0)
  1063. weld55.C1 = CFrame.new(-0.46, 1.05, 1.2) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  1064. wait(.01)
  1065. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  1066. weld55.C1 = CFrame.new(-0.45, 1.2, 1.2) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  1067. end
  1068.  
  1069. function Equip(mouse)
  1070. wait(0.01)
  1071. arms = {Tool.Parent:FindFirstChild("Left Arm"), Tool.Parent:FindFirstChild("Right Arm")}
  1072. torso = Tool.Parent:FindFirstChild("Torso")
  1073. if arms ~= nil and torso ~= nil then
  1074. local sh = {torso:FindFirstChild("Left Shoulder"), torso:FindFirstChild("Right Shoulder")}
  1075. if sh ~= nil then
  1076. local yes = true
  1077. if yes then
  1078. yes = false
  1079. sh[1].Part1 = nil
  1080. sh[2].Part1 = nil
  1081. falsearm1 = arms[1]:clone()
  1082. local mesh1 = Instance.new("BlockMesh")
  1083. mesh1.Scale = Vector3.new(.9,.9,.9)
  1084. mesh1.Parent = falsearm1
  1085. local armweld1 = Instance.new("Weld")
  1086. falsearm1.BrickColor = BrickColor.new(26)
  1087. falsearm1.Parent = Tool
  1088. armweld1.Parent = falsearm1
  1089. armweld1.Part0 = falsearm1
  1090. armweld1.Part1 = arms[1]
  1091. falsearm2 = arms[2]:clone()
  1092. local mesh2 = Instance.new("BlockMesh")
  1093. mesh2.Scale = Vector3.new(.9,.9,.9)
  1094. mesh2.Parent = falsearm2
  1095. local armweld2 = Instance.new("Weld")
  1096. falsearm2.BrickColor = BrickColor.new(26)
  1097. falsearm2.Parent = Tool
  1098. armweld2.Parent = falsearm2
  1099. armweld2.Part0 = falsearm2
  1100. armweld2.Part1 = arms[2]
  1101. local weld1 = Instance.new("Weld") -- left arm
  1102. weld55 = weld1
  1103. weld1.Part0 = torso
  1104. weld1.Parent = torso
  1105. weld1.Part1 = arms[1]
  1106. weld55.C1 = CFrame.new(-0.45, 1.2, 1.2) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  1107. welds[1] = weld1
  1108. local weld2 = Instance.new("Weld") -- right arm
  1109. weld33 = weld2
  1110. weld2.Part0 = torso
  1111. weld2.Parent = torso
  1112. weld2.Part1 = arms[2]
  1113. weld2.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  1114. welds[2] = weld2
  1115. Takeout()
  1116. end
  1117. else
  1118. print("sh")
  1119. end
  1120. else
  1121. print("arms")
  1122. end
  1123. end
  1124.  
  1125. local legs = nil
  1126. local torso2 = nil
  1127. local welds2 = {}
  1128. local bodyforce = nil
  1129.  
  1130. function Unequip(mouse)
  1131. if arms ~= nil and torso ~= nil then
  1132. local sh = {torso:FindFirstChild("Left Shoulder"), torso:FindFirstChild("Right Shoulder")}
  1133. if sh ~= nil then
  1134. local yes = true
  1135. if yes then
  1136. yes = false
  1137. sh[1].Part1 = arms[1]
  1138. sh[2].Part1 = arms[2]
  1139. welds[1].Parent = nil
  1140. welds[2].Parent = nil
  1141. falsearm1:remove()
  1142. falsearm2:remove()
  1143. end
  1144. else
  1145. print("sh")
  1146. end
  1147. else
  1148. print("arms")
  1149. end
  1150. end
  1151.  
  1152. function fire(v)
  1153. p = script.Parent.VAL
  1154. if p.Value == 0 then
  1155. Tool.Handle.Fire:play()
  1156. p.Value = p.Value + 1
  1157. elseif p.Value == 1 then
  1158. Tool.Handle.Fire2:play()
  1159. p.Value = p.Value + 1
  1160. else
  1161. Tool.Handle.Fire3:play()
  1162. p.Value = 0
  1163. end
  1164.  
  1165.  
  1166. local vCharacter = Tool.Parent
  1167. local vPlayer = game.Players:playerFromCharacter(vCharacter)
  1168.  
  1169. local missile = Instance.new("Part")
  1170.  
  1171.  
  1172.  
  1173. local spawnPos = o1.Flash.Position
  1174.  
  1175.  
  1176.  
  1177. spawnPos = spawnPos + (v * 8)
  1178.  
  1179. missile.Position = spawnPos
  1180. missile.Size = Vector3.new(1,1,1)
  1181. missile.Velocity = v * 600
  1182. missile.BrickColor = BrickColor.new(26)
  1183. missile.Shape = 0
  1184. missile.BottomSurface = 0
  1185. missile.TopSurface = 0
  1186. missile.Name = "Bullet"
  1187. missile.Elasticity = 0
  1188. missile.Reflectance = 0
  1189. missile.Friction = .9
  1190. missile.CanCollide = false
  1191.  
  1192. local force = Instance.new("BodyForce")
  1193. force.force = Vector3.new(0,missile:getMass() * 196,0)
  1194. force.Parent = missile
  1195.  
  1196. local mesh = Instance.new("SpecialMesh")
  1197. mesh.Scale = Vector3.new(.01,.01,.01)
  1198. mesh.MeshType = "Sphere"
  1199. mesh.Parent = missile
  1200.  
  1201. function onTouched(part)
  1202. local h = part.Parent:findFirstChild("Humanoid")
  1203. if h~=nil then
  1204. h.Health = h.Health -100
  1205. wait(.01)
  1206. h.Health = h.Health -100
  1207. wait(.01)
  1208.  
  1209. end
  1210. end
  1211.  
  1212. missile.Touched:connect(onTouched)
  1213.  
  1214. local creator_tag = Instance.new("ObjectValue")
  1215. creator_tag.Value = vPlayer
  1216. creator_tag.Name = "creator"
  1217. creator_tag.Parent = missile
  1218.  
  1219.  
  1220.  
  1221. missile.Parent = game.Workspace
  1222.  
  1223. cam = game.Workspace.CurrentCamera
  1224. local cam_rot = cam.CoordinateFrame - cam.CoordinateFrame.p
  1225. local cam_scroll = (cam.CoordinateFrame.p - cam.Focus.p).magnitude
  1226. local ncf = CFrame.new(cam.Focus.p)*cam_rot*CFrame.fromEulerAnglesXYZ(0.005, 0.005, 0)
  1227. cam.CoordinateFrame = ncf*CFrame.new(0, 0, cam_scroll)
  1228. weld33.C1 = CFrame.new(-0.75, -0.5, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  1229. weld55.C1 = CFrame.new(-0.45, 1.07, 1.12) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  1230. Tool.Flash.Mesh.Scale = Vector3.new(1.9, 2, 2.2)
  1231. Tool.Flash.Transparency = .3
  1232. Tool.A2.Mesh.Offset = Vector3.new(0, 0, 0)
  1233. Tool.A3.Mesh.Offset = Vector3.new(0, 0, 0)
  1234. wait()
  1235. local cam_rot = cam.CoordinateFrame - cam.CoordinateFrame.p
  1236. local cam_scroll = (cam.CoordinateFrame.p - cam.Focus.p).magnitude
  1237. local ncf = CFrame.new(cam.Focus.p)*cam_rot*CFrame.fromEulerAnglesXYZ(-0.01, -0.01, 0)
  1238. cam.CoordinateFrame = ncf*CFrame.new(0, 0, cam_scroll)
  1239. weld33.C1 = CFrame.new(-0.75, -0.45, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  1240. weld55.C1 = CFrame.new(-0.45, 1.14, 1.16) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  1241. Tool.Flash.Mesh.Scale = Vector3.new(1.5, 2, 1.8)
  1242. Tool.Flash.Transparency = .8
  1243. Tool.A2.Mesh.Offset = Vector3.new(0, 0, 0)
  1244. Tool.A3.Mesh.Offset = Vector3.new(0, 0, 0)
  1245. wait()
  1246. local cam_rot = cam.CoordinateFrame - cam.CoordinateFrame.p
  1247. local cam_scroll = (cam.CoordinateFrame.p - cam.Focus.p).magnitude
  1248. local ncf = CFrame.new(cam.Focus.p)*cam_rot*CFrame.fromEulerAnglesXYZ(0.005, 0.005, 0)
  1249. cam.CoordinateFrame = ncf*CFrame.new(0, 0, cam_scroll)
  1250. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  1251. weld55.C1 = CFrame.new(-0.45, 1.2, 1.2) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  1252. Tool.Flash.Transparency = 1
  1253. Tool.A2.Mesh.Offset = Vector3.new(0, 0, 0)
  1254. Tool.A3.Mesh.Offset = Vector3.new(0, 0, 0)
  1255. end
  1256.  
  1257. function KeyDownFunctions(key)
  1258. if key == "r" then
  1259. Reload()
  1260. end
  1261. end
  1262.  
  1263. Tool.Enabled = true
  1264. function onActivated()
  1265.  
  1266. if not Tool.Enabled then
  1267. return
  1268. end
  1269.  
  1270. Tool.Enabled = false
  1271.  
  1272. local character = Tool.Parent;
  1273. local humanoid = character.Humanoid
  1274. if humanoid == nil then
  1275. print("Humanoid not found")
  1276. return
  1277. end
  1278. local ammo = script.Parent.Ammo
  1279. local maxammo = script.Parent.MaxAmmo
  1280. firing = true
  1281. while firing == true do
  1282. if reloading == false and humanoid.Health >= 1 then
  1283. if ammo.Value >= 1 then
  1284. ammo.Value = ammo.Value - 1
  1285. local targetPos = humanoid.TargetPoint
  1286. local lookAt = (targetPos - character.Head.Position).unit
  1287. if script.Parent.Recoil.Value < 10 then
  1288. script.Parent.Recoil.Value = script.Parent.Recoil.Value + 1
  1289. end
  1290. fire(lookAt)
  1291. else
  1292. Reload()
  1293. break
  1294. end
  1295. elseif reloading == false and humanoid.Health < 1 then
  1296. Tool:remove()
  1297. end
  1298. end
  1299. Tool.Enabled = true
  1300. end
  1301.  
  1302. function nofiar(mouse)
  1303. firing = false
  1304. end
  1305.  
  1306. function onEquippedLocal(mouse)
  1307.  
  1308. if mouse == nil then
  1309. print("Mouse not found")
  1310. return
  1311. end
  1312.  
  1313. mouse.Icon = "http://www.roblox.com/asset/?id=2966012"
  1314. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  1315. mouse.Button1Up:connect(function() nofiar(mouse) end)
  1316. mouse.KeyDown:connect(KeyDownFunctions)
  1317. while true do
  1318. wait()
  1319. end
  1320. end
  1321.  
  1322.  
  1323. Tool.Equipped:connect(onEquippedLocal)
  1324.  
  1325.  
  1326. script.Parent.Activated:connect(onActivated)
  1327. Tool.Equipped:connect(Equip)
  1328. Tool.Unequipped:connect(Unequip)
  1329. end,o12)
  1330. end))
  1331. o13.Parent = o1
  1332. o14.Name = "ZoomScript"
  1333. o14.Parent = o1
  1334. g = game.workspace.Camera.CameraType
  1335. o15.Name = "ZoomedIn"
  1336. o15.Parent = o1
  1337. o16.Parent = o1
  1338. o16.Material = Enum.Material.SmoothPlastic
  1339. o16.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1340. o16.Position = Vector3.new(-47.0289497, 2.03901005, -23.0169888)
  1341. o16.Rotation = Vector3.new(-0.734529912, -89.7451248, -168.690018)
  1342. o16.Anchored = true
  1343. o16.FormFactor = Enum.FormFactor.Custom
  1344. o16.Size = Vector3.new(0.200000003, 0.540000021, 0.200000003)
  1345. o16.CFrame = CFrame.new(-47.0289497, 2.03901005, -23.0169888, -1.49008656e-007, 2.98018819e-008, -0.999990106, -4.37109797e-008, 0.999995053, 2.9802111e-008, 1, 4.37108518e-008, 2.32453658e-006)
  1346. o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1347. o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1348. o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1349. o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1350. o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1351. o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1352. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1353. o17.Parent = o16
  1354. o17.Scale = Vector3.new(0.75, 1, 0.149999991)
  1355. o18.Parent = o1
  1356. o18.Material = Enum.Material.SmoothPlastic
  1357. o18.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1358. o18.Position = Vector3.new(-46.5669594, 2.16499996, -23.0169888)
  1359. o18.Rotation = Vector3.new(0.367277682, -89.7451248, 174.289368)
  1360. o18.Anchored = true
  1361. o18.FormFactor = Enum.FormFactor.Custom
  1362. o18.Size = Vector3.new(0.200000003, 0.200000003, 0.540000021)
  1363. o18.CFrame = CFrame.new(-46.5669594, 2.16499996, -23.0169888, -1.49008656e-007, -1.49009685e-008, -0.999990106, -4.37109797e-008, 0.999995053, -1.49009614e-008, 1, 4.37109478e-008, 2.32453681e-006)
  1364. o18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1365. o18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1366. o18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1367. o18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1368. o18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1369. o18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1370. o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1371. o19.Parent = o18
  1372. o19.Offset = Vector3.new(0, 0, 0.00300000003)
  1373. o19.Scale = Vector3.new(0.450000018, 0.900000036, 1)
  1374. o20.Name = "A2"
  1375. o20.Parent = o1
  1376. o20.Material = Enum.Material.SmoothPlastic
  1377. o20.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1378. o20.Position = Vector3.new(-45.7209969, 2.44980097, -23.0169888)
  1379. o20.Rotation = Vector3.new(6.1066652e-013, 90, 0)
  1380. o20.Anchored = true
  1381. o20.FormFactor = Enum.FormFactor.Custom
  1382. o20.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1383. o20.CFrame = CFrame.new(-45.7209969, 2.44980097, -23.0169888, 8.94049208e-008, -2.66461657e-015, 1, 1.0658141e-014, 1, 2.66460302e-015, -1, 1.06581139e-014, 8.94049208e-008)
  1384. o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1385. o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1386. o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1387. o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1388. o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1389. o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1390. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1391. o21.Parent = o20
  1392. o21.Scale = Vector3.new(0.450000018, 0.149999991, 1.19999993)
  1393. o22.Parent = o1
  1394. o22.Material = Enum.Material.SmoothPlastic
  1395. o22.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1396. o22.Position = Vector3.new(-45.6399918, 2.36968803, -23.0100002)
  1397. o22.Rotation = Vector3.new(-0, -90, 0)
  1398. o22.Anchored = true
  1399. o22.FormFactor = Enum.FormFactor.Custom
  1400. o22.Size = Vector3.new(0.209999993, 0.360000014, 0.200000003)
  1401. o22.CFrame = CFrame.new(-45.6399918, 2.36968803, -23.0100002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1402. o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1403. o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1404. o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1405. o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1406. o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1407. o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1408. o22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1409. o23.Parent = o22
  1410. o23.Scale = Vector3.new(1, 1, 0.599999964)
  1411. o24.Parent = o1
  1412. o24.Material = Enum.Material.SmoothPlastic
  1413. o24.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1414. o24.Position = Vector3.new(-46.5279694, 2.29995394, -23.0169888)
  1415. o24.Rotation = Vector3.new(-3.17548106e-011, 0.000271500176, 90)
  1416. o24.Anchored = true
  1417. o24.FormFactor = Enum.FormFactor.Custom
  1418. o24.Size = Vector3.new(0.200000003, 0.972000062, 0.270000011)
  1419. o24.CFrame = CFrame.new(-46.5279694, 2.29995394, -23.0169888, -4.44097341e-015, -1, 4.73857199e-006, 1, -4.43833067e-015, 5.5422599e-013, -5.54226044e-013, 4.73857199e-006, 1)
  1420. o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1421. o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1422. o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1423. o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1424. o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1425. o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1426. o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1427. o25.Parent = o24
  1428. o25.Scale = Vector3.new(1.19999993, 1, 1.60000002)
  1429. o26.Name = "Handle"
  1430. o26.Parent = o1
  1431. o26.Material = Enum.Material.SmoothPlastic
  1432. o26.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1433. o26.Position = Vector3.new(-45.2919655, 1.92951596, -23.0169888)
  1434. o26.Rotation = Vector3.new(1.01777712e-012, -90, 0)
  1435. o26.Anchored = true
  1436. o26.FormFactor = Enum.FormFactor.Custom
  1437. o26.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1438. o26.CFrame = CFrame.new(-45.2919655, 1.92951596, -23.0169888, -1.49008656e-007, -4.44105473e-015, -1, -1.77635616e-014, 1, -4.44102762e-015, 1, 1.77635684e-014, -1.49008883e-007)
  1439. o26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1440. o26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1441. o26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1442. o26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1443. o26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1444. o26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1445. o26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1446. o27.Parent = o26
  1447. o27.Offset = Vector3.new(0, 0, 0.00900000054)
  1448. o27.Scale = Vector3.new(0.450000018, 0.450000018, 0.225000009)
  1449. o28.Name = "Fire3"
  1450. o28.Parent = o26
  1451. o28.Pitch = 1.2999999523163
  1452. o28.SoundId = "rbxassetid://137983646"
  1453. o28.Volume = 5
  1454. o29.Name = "M1"
  1455. o29.Parent = o26
  1456. o29.Pitch = 1.2000000476837
  1457. o29.SoundId = "rbxassetid://147323220"
  1458. o29.Volume = 1
  1459. o29.PlayOnRemove = true
  1460. o30.Name = "M2"
  1461. o30.Parent = o26
  1462. o30.SoundId = "rbxassetid://0"
  1463. o30.Volume = 1
  1464. o30.PlayOnRemove = true
  1465. o31.Name = "M3"
  1466. o31.Parent = o26
  1467. o31.Pitch = 1.1000000238419
  1468. o31.SoundId = "rbxassetid://152206337"
  1469. o31.Volume = 1
  1470. o31.PlayOnRemove = true
  1471. o32.Name = "Fire"
  1472. o32.Parent = o26
  1473. o32.Pitch = 1.2999999523163
  1474. o32.SoundId = "rbxassetid://137983646"
  1475. o32.Volume = 5
  1476. o33.Name = "Fire2"
  1477. o33.Parent = o26
  1478. o33.Pitch = 1.2999999523163
  1479. o33.SoundId = "rbxassetid://137983646"
  1480. o33.Volume = 5
  1481. o35.Name = "A3"
  1482. o35.Parent = o1
  1483. o35.Material = Enum.Material.SmoothPlastic
  1484. o35.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1485. o35.Position = Vector3.new(-45.7959862, 2.44980097, -23.0169888)
  1486. o35.Rotation = Vector3.new(6.1066652e-013, 90, 0)
  1487. o35.Anchored = true
  1488. o35.FormFactor = Enum.FormFactor.Custom
  1489. o35.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1490. o35.CFrame = CFrame.new(-45.7959862, 2.44980097, -23.0169888, 8.94049208e-008, -2.66461657e-015, 1, 1.0658141e-014, 1, 2.66460302e-015, -1, 1.06581139e-014, 8.94049208e-008)
  1491. o35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1492. o35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1493. o35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1494. o35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1495. o35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1496. o35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1497. o35.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1498. o36.Parent = o35
  1499. o36.Scale = Vector3.new(1.5, 0.225000009, 0.450000018)
  1500. o37.Name = "Flash"
  1501. o37.Parent = o1
  1502. o37.Material = Enum.Material.SmoothPlastic
  1503. o37.BrickColor = BrickColor.new("Bright orange")
  1504. o37.Transparency = 1
  1505. o37.Position = Vector3.new(-41.6767159, 2.32680488, -23.017004)
  1506. o37.Rotation = Vector3.new(-90, 8.08488086e-012, 89.9999924)
  1507. o37.Anchored = true
  1508. o37.FormFactor = Enum.FormFactor.Custom
  1509. o37.Size = Vector3.new(0.200000003, 0.449999988, 0.200000003)
  1510. o37.CFrame = CFrame.new(-41.6767159, 2.32680488, -23.017004, 1.49008656e-007, -1, 1.41107788e-013, 1.77635616e-014, 1.41107801e-013, 1, -1, -1.49008883e-007, 1.77636429e-014)
  1511. o37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1512. o37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1513. o37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1514. o37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1515. o37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1516. o37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1517. o37.Color = Color3.new(0.854902, 0.521569, 0.254902)
  1518. o38.Parent = o37
  1519. o38.Scale = Vector3.new(1.5, 2, 1.80000007)
  1520. o38.MeshType = Enum.MeshType.Sphere
  1521. o39.Name = "Mag"
  1522. o39.Parent = o1
  1523. o39.Material = Enum.Material.SmoothPlastic
  1524. o39.BrickColor = BrickColor.new("Dark stone grey")
  1525. o39.Position = Vector3.new(-44.8005791, 1.51697195, -23.0169888)
  1526. o39.Rotation = Vector3.new(90.0000305, -71.0001678, 90.0000305)
  1527. o39.Anchored = true
  1528. o39.FormFactor = Enum.FormFactor.Custom
  1529. o39.Size = Vector3.new(0.200000003, 0.239999995, 0.419999987)
  1530. o39.CFrame = CFrame.new(-44.8005791, 1.51697195, -23.0169888, -1.78810069e-007, -0.325565368, -0.945519507, 3.5527147e-014, 0.945519507, -0.325565368, 1, -5.82144608e-008, -1.69068741e-007)
  1531. o39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1532. o39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1533. o39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1534. o39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1535. o39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1536. o39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1537. o39.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1538. o40.Parent = o39
  1539. o40.Scale = Vector3.new(0.900000036, 1.62, 1)
  1540. o41.Name = "Mag2"
  1541. o41.Parent = o1
  1542. o41.Material = Enum.Material.SmoothPlastic
  1543. o41.BrickColor = BrickColor.new("Dark stone grey")
  1544. o41.Position = Vector3.new(-44.8972816, 1.93139601, -23.0169888)
  1545. o41.Rotation = Vector3.new(90.0000687, -81.0000992, 90.0000687)
  1546. o41.Anchored = true
  1547. o41.FormFactor = Enum.FormFactor.Custom
  1548. o41.Size = Vector3.new(0.200000003, 0.449999988, 0.419999987)
  1549. o41.CFrame = CFrame.new(-44.8972816, 1.93139601, -23.0169888, -1.78810296e-007, -0.156433001, -0.987688601, -2.48689856e-014, 0.987688541, -0.156433001, 1, -2.79718186e-008, -1.76608907e-007)
  1550. o41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1551. o41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1552. o41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1553. o41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1554. o41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1555. o41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1556. o41.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1557. o42.Parent = o41
  1558. o42.Scale = Vector3.new(0.900000036, 1.20000005, 1)
  1559. o43.Parent = o1
  1560. o43.Material = Enum.Material.SmoothPlastic
  1561. o43.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1562. o43.Position = Vector3.new(-45.621994, 2.13499188, -23.0169888)
  1563. o43.Rotation = Vector3.new(-180, 90, 0)
  1564. o43.Anchored = true
  1565. o43.FormFactor = Enum.FormFactor.Custom
  1566. o43.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  1567. o43.CFrame = CFrame.new(-45.621994, 2.13499188, -23.0169888, -1.78810296e-007, 5.3292467e-015, 1, -2.48689856e-014, -1, 5.3292467e-015, 1, -2.48690025e-014, 1.78810751e-007)
  1568. o43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1569. o43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1570. o43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1571. o43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1572. o43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1573. o43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1574. o43.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1575. o44.Parent = o43
  1576. o44.Scale = Vector3.new(1, 0.149999991, 0.149999991)
  1577. o45.Parent = o1
  1578. o45.Material = Enum.Material.SmoothPlastic
  1579. o45.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1580. o45.Position = Vector3.new(-45.6999893, 2.19498205, -23.0199947)
  1581. o45.Rotation = Vector3.new(1.42488799e-012, -90, 0)
  1582. o45.Anchored = true
  1583. o45.FormFactor = Enum.FormFactor.Custom
  1584. o45.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  1585. o45.CFrame = CFrame.new(-45.6999893, 2.19498205, -23.0199947, -1.78810296e-007, -5.32926025e-015, -1, -2.48689856e-014, 1, -5.32926025e-015, 1, 2.48690025e-014, -1.78810296e-007)
  1586. o45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1587. o45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1588. o45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1589. o45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1590. o45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1591. o45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1592. o45.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1593. o46.Parent = o45
  1594. o46.Scale = Vector3.new(1, 0.450000018, 0.900000036)
  1595. o47.Parent = o1
  1596. o47.Material = Enum.Material.SmoothPlastic
  1597. o47.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1598. o47.Position = Vector3.new(-45.4449959, 1.937011, -23.0199947)
  1599. o47.Rotation = Vector3.new(1.42488799e-012, -90, 0)
  1600. o47.Anchored = true
  1601. o47.FormFactor = Enum.FormFactor.Custom
  1602. o47.Size = Vector3.new(0.209999993, 0.200000003, 0.270000011)
  1603. o47.CFrame = CFrame.new(-45.4449959, 1.937011, -23.0199947, -1.78810296e-007, -1.49010191e-007, -1, -2.48689856e-014, 1, -1.49010191e-007, 1, -1.77557079e-015, -1.78810296e-007)
  1604. o47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1605. o47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1606. o47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1607. o47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1608. o47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1609. o47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1610. o47.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1611. o48.Parent = o47
  1612. o48.Offset = Vector3.new(0.00300000003, 0, 0)
  1613. o48.Scale = Vector3.new(1, 0.720000029, 1)
  1614. o49.Parent = o1
  1615. o49.Material = Enum.Material.SmoothPlastic
  1616. o49.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1617. o49.Position = Vector3.new(-45.4699135, 2.34168005, -22.886404)
  1618. o49.Rotation = Vector3.new(90, -4.32576189e-006, 75.0002823)
  1619. o49.Anchored = true
  1620. o49.FormFactor = Enum.FormFactor.Custom
  1621. o49.Size = Vector3.new(0.200000003, 0.449999988, 0.200000003)
  1622. o49.CFrame = CFrame.new(-45.4699135, 2.34168005, -22.886404, 0.258814394, -0.965927064, -7.54987894e-008, -1.95402148e-008, 7.29263192e-008, -1, 0.965927064, 0.258814394, -4.04779563e-014)
  1623. o49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1624. o49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1625. o49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1626. o49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1627. o49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1628. o49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1629. o49.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1630. o50.Parent = o49
  1631. o50.Scale = Vector3.new(0.450000018, 1, 0.450000018)
  1632. o51.Parent = o1
  1633. o51.Material = Enum.Material.SmoothPlastic
  1634. o51.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1635. o51.Position = Vector3.new(-42.9219856, 2.32981491, -23.017004)
  1636. o51.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  1637. o51.Anchored = true
  1638. o51.FormFactor = Enum.FormFactor.Custom
  1639. o51.Size = Vector3.new(0.270000011, 0.200000003, 0.200000003)
  1640. o51.CFrame = CFrame.new(-42.9219856, 2.32981491, -23.017004, -1.49008656e-007, 1, 1.41107788e-013, -1.77635616e-014, -1.41107801e-013, 1, 1, 1.49008883e-007, 1.77636429e-014)
  1641. o51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1642. o51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1643. o51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1644. o51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1645. o51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1646. o51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1647. o51.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1648. o52.Parent = o51
  1649. o52.Scale = Vector3.new(1, 0.900000036, 0.50999999)
  1650. o53.Parent = o1
  1651. o53.Material = Enum.Material.SmoothPlastic
  1652. o53.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1653. o53.Position = Vector3.new(-42.32201, 2.33277702, -23.017004)
  1654. o53.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  1655. o53.Anchored = true
  1656. o53.FormFactor = Enum.FormFactor.Custom
  1657. o53.Size = Vector3.new(0.270000011, 0.200000003, 0.200000003)
  1658. o53.CFrame = CFrame.new(-42.32201, 2.33277702, -23.017004, -1.49008656e-007, 1, 1.41107788e-013, -1.77635616e-014, -1.41107801e-013, 1, 1, 1.49008883e-007, 1.77636429e-014)
  1659. o53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1660. o53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1661. o53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1662. o53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1663. o53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1664. o53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1665. o53.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1666. o54.Parent = o53
  1667. o54.Scale = Vector3.new(1, 0.0749999955, 0.75)
  1668. o55.Parent = o1
  1669. o55.Material = Enum.Material.SmoothPlastic
  1670. o55.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1671. o55.Position = Vector3.new(-47.028965, 2.03898501, -22.9119778)
  1672. o55.Rotation = Vector3.new(180, -0.000269792567, 8.01008652e-012)
  1673. o55.Anchored = true
  1674. o55.FormFactor = Enum.FormFactor.Custom
  1675. o55.Size = Vector3.new(0.200000003, 0.540000021, 0.200000003)
  1676. o55.CFrame = CFrame.new(-47.028965, 2.03898501, -22.9119778, 1, -1.39802381e-013, -4.70876876e-006, -1.3980497e-013, -1, -5.50673222e-013, -4.70876876e-006, 5.50673873e-013, -1)
  1677. o55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1678. o55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1679. o55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1680. o55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1681. o55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1682. o55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1683. o55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1684. o56.Parent = o55
  1685. o56.Scale = Vector3.new(0.149999991, 1, 0.299999982)
  1686. o56.MeshType = Enum.MeshType.Wedge
  1687. o57.Parent = o1
  1688. o57.Material = Enum.Material.SmoothPlastic
  1689. o57.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1690. o57.Position = Vector3.new(-45.6849937, 2.32968688, -23.0605068)
  1691. o57.Rotation = Vector3.new(-3.19583734e-011, 0.000273207726, 90)
  1692. o57.Anchored = true
  1693. o57.FormFactor = Enum.FormFactor.Custom
  1694. o57.Size = Vector3.new(0.209999993, 0.200000003, 0.209999993)
  1695. o57.CFrame = CFrame.new(-45.6849937, 2.32968688, -23.0605068, -5.32916539e-015, -1, 4.76837431e-006, 1, -5.32649554e-015, 5.57778812e-013, -5.57778758e-013, 4.76837431e-006, 1)
  1696. o57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1697. o57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1698. o57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1699. o57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1700. o57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1701. o57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1702. o57.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1703. o58.Parent = o57
  1704. o58.Scale = Vector3.new(1.1500001, 0.75, 1.04999995)
  1705. o59.Parent = o1
  1706. o59.Material = Enum.Material.SmoothPlastic
  1707. o59.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1708. o59.Position = Vector3.new(-47.025959, 2.28498602, -23.0169888)
  1709. o59.Rotation = Vector3.new(-1.62844304e-011, 0.000132276866, 90)
  1710. o59.Anchored = true
  1711. o59.FormFactor = Enum.FormFactor.Custom
  1712. o59.Size = Vector3.new(0.270000011, 0.200000003, 0.270000011)
  1713. o59.CFrame = CFrame.new(-47.025959, 2.28498602, -23.0169888, 2.9801889e-008, -0.999990106, 2.30866681e-006, 0.999995053, 2.9802111e-008, 2.84216932e-013, -7.14980538e-013, 4.78223637e-006, 1)
  1714. o59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1715. o59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1716. o59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1717. o59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1718. o59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1719. o59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1720. o59.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1721. o60.Parent = o59
  1722. o60.Scale = Vector3.new(1, 0.180000007, 1)
  1723. o61.Parent = o1
  1724. o61.Material = Enum.Material.SmoothPlastic
  1725. o61.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1726. o61.Position = Vector3.new(-45.5949974, 2.06598401, -23.0169888)
  1727. o61.Rotation = Vector3.new(-180, 90, 0)
  1728. o61.Anchored = true
  1729. o61.FormFactor = Enum.FormFactor.Custom
  1730. o61.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  1731. o61.CFrame = CFrame.new(-45.5949974, 2.06598401, -23.0169888, -1.78810296e-007, 5.32926025e-015, 1, -2.48689856e-014, -1, 5.32926025e-015, 1, -2.48690025e-014, 1.78810296e-007)
  1732. o61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1733. o61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1734. o61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1735. o61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1736. o61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1737. o61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1738. o61.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1739. o62.Parent = o61
  1740. o62.Scale = Vector3.new(1, 0.299999982, 0.149999991)
  1741. o62.MeshType = Enum.MeshType.Wedge
  1742. o63.Parent = o1
  1743. o63.Material = Enum.Material.SmoothPlastic
  1744. o63.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1745. o63.Position = Vector3.new(-45.701725, 2.34168005, -22.8242855)
  1746. o63.Rotation = Vector3.new(-2.31819899e-006, 15.000556, 90)
  1747. o63.Anchored = true
  1748. o63.FormFactor = Enum.FormFactor.Custom
  1749. o63.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1750. o63.CFrame = CFrame.new(-45.701725, 2.34168005, -22.8242855, 6.37342268e-009, -0.965923309, 0.258828402, 1, 1.70705192e-008, 3.90814527e-008, -4.2168022e-008, 0.258828402, 0.965923309)
  1751. o63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1752. o63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1753. o63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1754. o63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1755. o63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1756. o63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1757. o63.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1758. o64.Parent = o63
  1759. o64.Scale = Vector3.new(0.337500006, 0.149999991, 0.337500006)
  1760. o65.Parent = o1
  1761. o65.Material = Enum.Material.SmoothPlastic
  1762. o65.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1763. o65.Position = Vector3.new(-44.6739845, 1.96097994, -23.017004)
  1764. o65.Rotation = Vector3.new(90, -8.08488086e-012, -89.9999924)
  1765. o65.Anchored = true
  1766. o65.FormFactor = Enum.FormFactor.Custom
  1767. o65.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  1768. o65.CFrame = CFrame.new(-44.6739845, 1.96097994, -23.017004, 1.49008656e-007, 1, -1.41107788e-013, 1.77635616e-014, -1.41107801e-013, -1, -1, 1.49008883e-007, -1.77636429e-014)
  1769. o65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1770. o65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1771. o65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1772. o65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1773. o65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1774. o65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1775. o65.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1776. o66.Parent = o65
  1777. o66.Scale = Vector3.new(1, 0.180000007, 0.149999991)
  1778. o66.MeshType = Enum.MeshType.Wedge
  1779. o67.Parent = o1
  1780. o67.Material = Enum.Material.SmoothPlastic
  1781. o67.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1782. o67.Position = Vector3.new(-42.6519814, 2.33281589, -23.017004)
  1783. o67.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  1784. o67.Anchored = true
  1785. o67.FormFactor = Enum.FormFactor.Custom
  1786. o67.Size = Vector3.new(0.270000011, 0.360000014, 0.200000003)
  1787. o67.CFrame = CFrame.new(-42.6519814, 2.33281589, -23.017004, -1.49008656e-007, 1, 1.41107788e-013, -1.77635616e-014, -1.41107801e-013, 1, 1, 1.49008883e-007, 1.77636429e-014)
  1788. o67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1789. o67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1790. o67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1791. o67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1792. o67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1793. o67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1794. o67.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1795. o68.Parent = o67
  1796. o68.Scale = Vector3.new(1, 1, 0.599999964)
  1797. o69.Parent = o1
  1798. o69.Material = Enum.Material.SmoothPlastic
  1799. o69.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1800. o69.Position = Vector3.new(-46.7319527, 1.99998295, -23.0169888)
  1801. o69.Rotation = Vector3.new(-180, -90, 0)
  1802. o69.Anchored = true
  1803. o69.FormFactor = Enum.FormFactor.Custom
  1804. o69.Size = Vector3.new(0.200000003, 0.209999993, 0.200000003)
  1805. o69.CFrame = CFrame.new(-46.7319527, 1.99998295, -23.0169888, 1.49008656e-007, 4.44105473e-015, -1, 1.77635616e-014, -1, -4.44102762e-015, -1, -1.77635684e-014, -1.49008883e-007)
  1806. o69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1807. o69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1808. o69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1809. o69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1810. o69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1811. o69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1812. o69.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1813. o70.Parent = o69
  1814. o70.Scale = Vector3.new(0.450000018, 1, 1.35000002)
  1815. o70.MeshType = Enum.MeshType.Wedge
  1816. o71.Parent = o1
  1817. o71.Material = Enum.Material.SmoothPlastic
  1818. o71.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1819. o71.Position = Vector3.new(-45.12397, 2.12598205, -23.0169888)
  1820. o71.Rotation = Vector3.new(8.14221791e-013, -90, 0)
  1821. o71.Anchored = true
  1822. o71.FormFactor = Enum.FormFactor.Custom
  1823. o71.Size = Vector3.new(0.209999993, 0.300000012, 0.959999979)
  1824. o71.CFrame = CFrame.new(-45.12397, 2.12598205, -23.0169888, -1.19206788e-007, -3.55283565e-015, -1, -1.42108513e-014, 1, -3.5528221e-015, 1, 1.42108547e-014, -1.19207243e-007)
  1825. o71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1826. o71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1827. o71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1828. o71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1829. o71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1830. o71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1831. o71.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1832. o72.Parent = o71
  1833. o72.Scale = Vector3.new(1, 1, 0.950000048)
  1834. o73.Parent = o1
  1835. o73.Material = Enum.Material.SmoothPlastic
  1836. o73.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1837. o73.Position = Vector3.new(-45.9759941, 2.32979393, -23.0169888)
  1838. o73.Rotation = Vector3.new(2.50446283e-006, 0.000129772379, 90)
  1839. o73.Anchored = true
  1840. o73.FormFactor = Enum.FormFactor.Custom
  1841. o73.Size = Vector3.new(0.200000003, 0.324000001, 0.270000011)
  1842. o73.CFrame = CFrame.new(-45.9759941, 2.32979393, -23.0169888, 2.98018819e-008, -0.999990106, 2.26495536e-006, 0.999995053, 2.98020062e-008, -4.37111218e-008, 4.37109158e-008, 4.73852469e-006, 1)
  1843. o73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1844. o73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1845. o73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1846. o73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1847. o73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1848. o73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1849. o73.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1850. o74.Parent = o73
  1851. o74.Scale = Vector3.new(0.900000036, 1.10000002, 1)
  1852. o75.Parent = o1
  1853. o75.Material = Enum.Material.SmoothPlastic
  1854. o75.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1855. o75.Position = Vector3.new(-44.8719826, 2.27287102, -22.8969936)
  1856. o75.Rotation = Vector3.new(78.0001221, 4.33610621e-005, -0.000249171426)
  1857. o75.Anchored = true
  1858. o75.FormFactor = Enum.FormFactor.Custom
  1859. o75.Size = Vector3.new(0.330000013, 0.200000003, 0.200000003)
  1860. o75.CFrame = CFrame.new(-44.8719826, 2.27287102, -22.8969936, 1, 4.34886169e-006, 7.5679327e-007, -1.63914535e-007, 0.207909659, -0.978148043, -4.41117481e-006, 0.978147984, 0.207909659)
  1861. o75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1862. o75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1863. o75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1864. o75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1865. o75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1866. o75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1867. o75.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1868. o76.Parent = o75
  1869. o76.Scale = Vector3.new(1, 0.149999991, 0.599999964)
  1870. o77.Parent = o1
  1871. o77.Material = Enum.Material.SmoothPlastic
  1872. o77.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1873. o77.Position = Vector3.new(-43.113987, 2.49480104, -23.017004)
  1874. o77.Rotation = Vector3.new(-180, 90, 0)
  1875. o77.Anchored = true
  1876. o77.FormFactor = Enum.FormFactor.Custom
  1877. o77.Size = Vector3.new(0.200000003, 0.324000001, 0.200000003)
  1878. o77.CFrame = CFrame.new(-43.113987, 2.49480104, -23.017004, -1.49008656e-007, 4.44105473e-015, 1, -1.77635616e-014, -1, 4.44102762e-015, 1, -1.77635684e-014, 1.49008883e-007)
  1879. o77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1880. o77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1881. o77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1882. o77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1883. o77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1884. o77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1885. o77.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1886. o78.Parent = o77
  1887. o78.Scale = Vector3.new(0.450000018, 1, 0.149999991)
  1888. o79.Parent = o1
  1889. o79.Material = Enum.Material.SmoothPlastic
  1890. o79.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1891. o79.Position = Vector3.new(-46.6629639, 2.00900698, -23.0169888)
  1892. o79.Rotation = Vector3.new(90.0000076, -45.0002785, 90.0000076)
  1893. o79.Anchored = true
  1894. o79.FormFactor = Enum.FormFactor.Custom
  1895. o79.Size = Vector3.new(0.200000003, 0.200000003, 0.300000012)
  1896. o79.CFrame = CFrame.new(-46.6629639, 2.00900698, -23.0169888, -1.49008656e-007, -0.707103372, -0.707110226, -4.37109797e-008, 0.707110286, -0.707103312, 1, -7.4455933e-008, -1.36273982e-007)
  1897. o79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1898. o79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1899. o79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1900. o79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1901. o79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1902. o79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1903. o79.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1904. o80.Parent = o79
  1905. o80.Scale = Vector3.new(0.75, 0.540000021, 1)
  1906. o81.Parent = o1
  1907. o81.Material = Enum.Material.SmoothPlastic
  1908. o81.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1909. o81.Position = Vector3.new(-47.025959, 1.78401804, -23.0169888)
  1910. o81.Rotation = Vector3.new(2.50446283e-006, 0.000129772379, 90)
  1911. o81.Anchored = true
  1912. o81.FormFactor = Enum.FormFactor.Custom
  1913. o81.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1914. o81.CFrame = CFrame.new(-47.025959, 1.78401804, -23.0169888, 2.98018819e-008, -0.999990106, 2.26495536e-006, 0.999995053, 2.98020062e-008, -4.37111218e-008, 4.37109158e-008, 4.73852469e-006, 1)
  1915. o81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1916. o81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1917. o81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1918. o81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1919. o81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1920. o81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1921. o81.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1922. o82.Parent = o81
  1923. o82.Scale = Vector3.new(0.75, 0.180000007, 0.75)
  1924. o83.Parent = o1
  1925. o83.Material = Enum.Material.SmoothPlastic
  1926. o83.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1927. o83.Position = Vector3.new(-45.666996, 2.1379981, -23.0169888)
  1928. o83.Rotation = Vector3.new(-180, 90, 0)
  1929. o83.Anchored = true
  1930. o83.FormFactor = Enum.FormFactor.Custom
  1931. o83.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  1932. o83.CFrame = CFrame.new(-45.666996, 2.1379981, -23.0169888, -1.78810296e-007, 5.3292467e-015, 1, -2.48689856e-014, -1, 5.3292467e-015, 1, -2.48690025e-014, 1.78810751e-007)
  1933. o83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1934. o83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1935. o83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1936. o83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1937. o83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1938. o83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1939. o83.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1940. o84.Parent = o83
  1941. o84.Scale = Vector3.new(1, 0.149999991, 0.299999982)
  1942. o84.MeshType = Enum.MeshType.Wedge
  1943. o85.Parent = o1
  1944. o85.Material = Enum.Material.SmoothPlastic
  1945. o85.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1946. o85.Position = Vector3.new(-45.3786354, 1.77153397, -23.0169888)
  1947. o85.Rotation = Vector3.new(90, -28.6877403, -89.9999924)
  1948. o85.Anchored = true
  1949. o85.FormFactor = Enum.FormFactor.Custom
  1950. o85.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  1951. o85.CFrame = CFrame.new(-45.3786354, 1.77153397, -23.0169888, 1.78810296e-007, 0.877248883, -0.480035812, 2.48689856e-014, -0.480035812, -0.877248883, -1, 1.56861944e-007, -8.58354028e-008)
  1952. o85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1953. o85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1954. o85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1955. o85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1956. o85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1957. o85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1958. o85.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1959. o86.Parent = o85
  1960. o86.Scale = Vector3.new(1, 0.180000007, 0.112500004)
  1961. o86.MeshType = Enum.MeshType.Wedge
  1962. o87.Parent = o1
  1963. o87.Material = Enum.Material.SmoothPlastic
  1964. o87.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1965. o87.Position = Vector3.new(-43.1559792, 2.65682006, -23.017004)
  1966. o87.Rotation = Vector3.new(-90, 8.08488086e-012, 89.9999924)
  1967. o87.Anchored = true
  1968. o87.FormFactor = Enum.FormFactor.Custom
  1969. o87.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1970. o87.CFrame = CFrame.new(-43.1559792, 2.65682006, -23.017004, 1.49008656e-007, -1, 1.41107788e-013, 1.77635616e-014, 1.41107801e-013, 1, -1, -1.49008883e-007, 1.77636429e-014)
  1971. o87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1972. o87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1973. o87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1974. o87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1975. o87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1976. o87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1977. o87.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1978. o88.Parent = o87
  1979. o88.Scale = Vector3.new(0.450000018, 0.540000021, 0.149999991)
  1980. o89.Parent = o1
  1981. o89.Material = Enum.Material.SmoothPlastic
  1982. o89.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1983. o89.Position = Vector3.new(-43.1469765, 2.686795, -22.9809933)
  1984. o89.Rotation = Vector3.new(180, -0.000271500176, -180)
  1985. o89.Anchored = true
  1986. o89.FormFactor = Enum.FormFactor.Custom
  1987. o89.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1988. o89.CFrame = CFrame.new(-43.1469765, 2.686795, -22.9809933, -1, 1.41105064e-013, -4.73857199e-006, 1.41107707e-013, 1, -5.54225882e-013, 4.73857199e-006, -5.54226695e-013, -1)
  1989. o89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1990. o89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1991. o89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1992. o89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1993. o89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1994. o89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1995. o89.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1996. o90.Parent = o89
  1997. o90.MeshId = "http://www.roblox.com/asset/?id=12221344"
  1998. o90.Scale = Vector3.new(0.209999993, 0.224999994, 0.00450000027)
  1999. o90.MeshType = Enum.MeshType.FileMesh
  2000. o91.Parent = o1
  2001. o91.Material = Enum.Material.SmoothPlastic
  2002. o91.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2003. o91.Position = Vector3.new(-45.1899757, 2.32971406, -23.0169888)
  2004. o91.Rotation = Vector3.new(-2.5044726e-006, 6.31783696e-005, 90)
  2005. o91.Anchored = true
  2006. o91.FormFactor = Enum.FormFactor.Custom
  2007. o91.Size = Vector3.new(0.209999993, 1.20000005, 0.209999993)
  2008. o91.CFrame = CFrame.new(-45.1899757, 2.32971406, -23.0169888, 1.47809596e-008, -0.999990106, 1.10267058e-006, 0.999995053, 1.4781155e-008, 4.37112924e-008, -4.37118537e-008, 3.57622821e-006, 1)
  2009. o91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2010. o91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2011. o91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2012. o91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2013. o91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2014. o91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2015. o91.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2016. o92.Parent = o91
  2017. o92.Scale = Vector3.new(1.10000002, 1, 1.10000002)
  2018. o93.Parent = o1
  2019. o93.Material = Enum.Material.SmoothPlastic
  2020. o93.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2021. o93.Position = Vector3.new(-43.3420143, 2.33281589, -23.0020046)
  2022. o93.Rotation = Vector3.new(-90, 7.1009457e-012, -89.9999771)
  2023. o93.Anchored = true
  2024. o93.FormFactor = Enum.FormFactor.Custom
  2025. o93.Size = Vector3.new(0.270000011, 0.200000003, 0.239999995)
  2026. o93.CFrame = CFrame.new(-43.3420143, 2.33281589, -23.0020046, 4.4702756e-007, 1, 1.23934879e-013, 5.32906645e-014, -1.23934906e-013, 1, 1, -4.47027332e-007, -5.32907323e-014)
  2027. o93.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2028. o93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2029. o93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2030. o93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2031. o93.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2032. o93.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2033. o93.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2034. o94.Parent = o93
  2035. o94.Scale = Vector3.new(1, 0.599999964, 1)
  2036. o95.Parent = o1
  2037. o95.Material = Enum.Material.SmoothPlastic
  2038. o95.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2039. o95.Position = Vector3.new(-46.6569557, 2.12600803, -23.0169888)
  2040. o95.Rotation = Vector3.new(-0.734529912, -89.7451248, -168.690018)
  2041. o95.Anchored = true
  2042. o95.FormFactor = Enum.FormFactor.Custom
  2043. o95.Size = Vector3.new(0.200000003, 0.200000003, 0.720000029)
  2044. o95.CFrame = CFrame.new(-46.6569557, 2.12600803, -23.0169888, -1.49008656e-007, 2.98018819e-008, -0.999990106, -4.37109797e-008, 0.999995053, 2.9802111e-008, 1, 4.37108518e-008, 2.32453658e-006)
  2045. o95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2046. o95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2047. o95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2048. o95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2049. o95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2050. o95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2051. o95.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2052. o96.Parent = o95
  2053. o96.Offset = Vector3.new(0, 0, 0.00300000003)
  2054. o96.Scale = Vector3.new(0.450000018, 0.360000014, 1)
  2055. o97.Parent = o1
  2056. o97.Material = Enum.Material.SmoothPlastic
  2057. o97.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2058. o97.Position = Vector3.new(-42.3670082, 2.33281589, -23.017004)
  2059. o97.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  2060. o97.Anchored = true
  2061. o97.FormFactor = Enum.FormFactor.Custom
  2062. o97.Size = Vector3.new(0.270000011, 0.200000003, 0.200000003)
  2063. o97.CFrame = CFrame.new(-42.3670082, 2.33281589, -23.017004, -1.49008656e-007, 1, 1.41107788e-013, -1.77635616e-014, -1.41107801e-013, 1, 1, 1.49008883e-007, 1.77636429e-014)
  2064. o97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2065. o97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2066. o97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2067. o97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2068. o97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2069. o97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2070. o97.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2071. o98.Parent = o97
  2072. o98.Scale = Vector3.new(1, 0.0749999955, 0.75)
  2073. o99.Parent = o1
  2074. o99.Material = Enum.Material.SmoothPlastic
  2075. o99.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2076. o99.Position = Vector3.new(-46.4619598, 2.17700005, -23.0169888)
  2077. o99.Rotation = Vector3.new(-180, -0.000132276851, 6.83023381e-006)
  2078. o99.Anchored = true
  2079. o99.FormFactor = Enum.FormFactor.Custom
  2080. o99.Size = Vector3.new(0.209999993, 0.396000028, 0.200000003)
  2081. o99.CFrame = CFrame.new(-46.4619598, 2.17700005, -23.0169888, 0.999990106, -1.19208885e-007, -2.30866658e-006, -1.19209446e-007, -0.999995053, 4.3711136e-008, -4.78223637e-006, -4.37104859e-008, -1)
  2082. o99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2083. o99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2084. o99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2085. o99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2086. o99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2087. o99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2088. o99.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2089. o100.Parent = o99
  2090. o100.Scale = Vector3.new(1, 1, 0.599999964)
  2091. o101.Parent = o1
  2092. o101.Material = Enum.Material.SmoothPlastic
  2093. o101.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2094. o101.Position = Vector3.new(-45.5919991, 2.11999488, -23.0169888)
  2095. o101.Rotation = Vector3.new(-180, 90, 0)
  2096. o101.Anchored = true
  2097. o101.FormFactor = Enum.FormFactor.Custom
  2098. o101.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2099. o101.CFrame = CFrame.new(-45.5919991, 2.11999488, -23.0169888, -1.78810296e-007, 5.3292467e-015, 1, -2.48689856e-014, -1, 5.3292467e-015, 1, -2.48690025e-014, 1.78810751e-007)
  2100. o101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2101. o101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2102. o101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2103. o101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2104. o101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2105. o101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2106. o101.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2107. o102.Parent = o101
  2108. o102.Scale = Vector3.new(1, 0.299999982, 0.149999991)
  2109. o103.Parent = o1
  2110. o103.Material = Enum.Material.SmoothPlastic
  2111. o103.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2112. o103.Position = Vector3.new(-45.7307053, 2.34168005, -22.816534)
  2113. o103.Rotation = Vector3.new(-180, -15.000556, 90)
  2114. o103.Anchored = true
  2115. o103.FormFactor = Enum.FormFactor.Custom
  2116. o103.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2117. o103.CFrame = CFrame.new(-45.7307053, 2.34168005, -22.816534, -2.36663933e-008, -0.965923309, -0.258828402, -1, 1.99318464e-008, 1.70528285e-008, -1.13127969e-008, 0.258828402, -0.965923309)
  2118. o103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2119. o103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2120. o103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2121. o103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2122. o103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2123. o103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2124. o103.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2125. o104.Parent = o103
  2126. o104.Scale = Vector3.new(0.450000018, 0.149999991, 0.450000018)
  2127. o105.Parent = o1
  2128. o105.Material = Enum.Material.SmoothPlastic
  2129. o105.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2130. o105.Position = Vector3.new(-44.9019737, 1.90552294, -23.0169888)
  2131. o105.Rotation = Vector3.new(-180, -90, 0)
  2132. o105.Anchored = true
  2133. o105.FormFactor = Enum.FormFactor.Custom
  2134. o105.Size = Vector3.new(0.209999993, 0.200000003, 0.449999988)
  2135. o105.CFrame = CFrame.new(-44.9019737, 1.90552294, -23.0169888, 1.78810296e-007, 5.32926025e-015, -1, 2.48689856e-014, -1, -5.32926025e-015, -1, -2.48690025e-014, -1.78810296e-007)
  2136. o105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2137. o105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2138. o105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2139. o105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2140. o105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2141. o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2142. o105.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2143. o106.Parent = o105
  2144. o106.Scale = Vector3.new(1, 0.419999987, 1)
  2145. o106.MeshType = Enum.MeshType.Wedge
  2146. o107.Parent = o1
  2147. o107.Material = Enum.Material.SmoothPlastic
  2148. o107.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2149. o107.Position = Vector3.new(-45.1389694, 1.96101201, -23.0169888)
  2150. o107.Rotation = Vector3.new(-90, 8.10863442e-012, 89.9999924)
  2151. o107.Anchored = true
  2152. o107.FormFactor = Enum.FormFactor.Custom
  2153. o107.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2154. o107.CFrame = CFrame.new(-45.1389694, 1.96101201, -23.0169888, 1.78810296e-007, -1, 1.4152236e-013, 2.48689856e-014, 1.41522373e-013, 1, -1, -1.78810751e-007, 2.48690432e-014)
  2155. o107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2156. o107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2157. o107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2158. o107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2159. o107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2160. o107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2161. o107.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2162. o108.Parent = o107
  2163. o108.Scale = Vector3.new(1, 0.180000007, 0.149999991)
  2164. o108.MeshType = Enum.MeshType.Wedge
  2165. o109.Parent = o1
  2166. o109.Material = Enum.Material.SmoothPlastic
  2167. o109.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2168. o109.Position = Vector3.new(-46.4469643, 2.09900498, -23.0169888)
  2169. o109.Rotation = Vector3.new(-0.734529912, -89.7451248, -168.690018)
  2170. o109.Anchored = true
  2171. o109.FormFactor = Enum.FormFactor.Custom
  2172. o109.Size = Vector3.new(0.200000003, 0.200000003, 0.300000012)
  2173. o109.CFrame = CFrame.new(-46.4469643, 2.09900498, -23.0169888, -1.49008656e-007, 2.98018819e-008, -0.999990106, -4.37109797e-008, 0.999995053, 2.9802111e-008, 1, 4.37108518e-008, 2.32453658e-006)
  2174. o109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2175. o109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2176. o109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2177. o109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2178. o109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2179. o109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2180. o109.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2181. o110.Parent = o109
  2182. o110.Scale = Vector3.new(0.75, 0.540000021, 1)
  2183. o111.Parent = o1
  2184. o111.Material = Enum.Material.SmoothPlastic
  2185. o111.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2186. o111.Position = Vector3.new(-43.9570198, 2.33281589, -22.8369961)
  2187. o111.Rotation = Vector3.new(-3.05333016e-012, -90, 0)
  2188. o111.Anchored = true
  2189. o111.FormFactor = Enum.FormFactor.Custom
  2190. o111.Size = Vector3.new(0.200000003, 0.200000003, 1.11000001)
  2191. o111.CFrame = CFrame.new(-43.9570198, 2.33281589, -22.8369961, 4.4702756e-007, 1.23934879e-013, -1, 5.32906645e-014, 1, 1.23934906e-013, 1, -5.32907323e-014, 4.47027332e-007)
  2192. o111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2193. o111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2194. o111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2195. o111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2196. o111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2197. o111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2198. o111.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2199. o112.Parent = o111
  2200. o112.Offset = Vector3.new(-0.00600000005, 0, 0)
  2201. o112.Scale = Vector3.new(0.299999982, 0.599999964, 0.999000013)
  2202. o113.Parent = o1
  2203. o113.Material = Enum.Material.SmoothPlastic
  2204. o113.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2205. o113.Position = Vector3.new(-42.1870003, 2.32981491, -23.017004)
  2206. o113.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  2207. o113.Anchored = true
  2208. o113.FormFactor = Enum.FormFactor.Custom
  2209. o113.Size = Vector3.new(0.270000011, 0.209999993, 0.200000003)
  2210. o113.CFrame = CFrame.new(-42.1870003, 2.32981491, -23.017004, -1.49008656e-007, 1, 1.41107788e-013, -1.77635616e-014, -1.41107801e-013, 1, 1, 1.49008883e-007, 1.77636429e-014)
  2211. o113.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2212. o113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2213. o113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2214. o113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2215. o113.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2216. o113.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2217. o113.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2218. o114.Parent = o113
  2219. o114.Scale = Vector3.new(1, 1, 0.75)
  2220. o115.Parent = o1
  2221. o115.Material = Enum.Material.SmoothPlastic
  2222. o115.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2223. o115.Position = Vector3.new(-45.5949974, 2.32968688, -23.0529995)
  2224. o115.Rotation = Vector3.new(-3.19583734e-011, 0.000273207726, 90)
  2225. o115.Anchored = true
  2226. o115.FormFactor = Enum.FormFactor.Custom
  2227. o115.Size = Vector3.new(0.209999993, 0.200000003, 0.209999993)
  2228. o115.CFrame = CFrame.new(-45.5949974, 2.32968688, -23.0529995, -5.32916539e-015, -1, 4.76837431e-006, 1, -5.32649554e-015, 5.57778812e-013, -5.57778758e-013, 4.76837431e-006, 1)
  2229. o115.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2230. o115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2231. o115.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2232. o115.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2233. o115.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2234. o115.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2235. o115.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2236. o116.Parent = o115
  2237. o116.Scale = Vector3.new(1.10000002, 0.75, 1.02499998)
  2238. o117.Parent = o1
  2239. o117.Material = Enum.Material.SmoothPlastic
  2240. o117.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2241. o117.Position = Vector3.new(-45.7720146, 2.29656005, -23.0257607)
  2242. o117.Rotation = Vector3.new(0.000260027009, -90, 0)
  2243. o117.Anchored = true
  2244. o117.FormFactor = Enum.FormFactor.Custom
  2245. o117.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2246. o117.CFrame = CFrame.new(-45.7720146, 2.29656005, -23.0257607, -1.78810296e-007, 6.27533882e-006, -1, -4.53832718e-006, 1, 6.27533973e-006, 1, 4.53832808e-006, -1.78782102e-007)
  2247. o117.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2248. o117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2249. o117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2250. o117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2251. o117.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2252. o117.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2253. o117.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2254. o118.Parent = o117
  2255. o118.MeshId = "http://www.roblox.com/asset/?id=12221344"
  2256. o118.Scale = Vector3.new(0.479999989, 0.629999995, 0.0149999997)
  2257. o118.MeshType = Enum.MeshType.FileMesh
  2258. o119.Parent = o1
  2259. o119.Material = Enum.Material.SmoothPlastic
  2260. o119.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2261. o119.Position = Vector3.new(-43.9570045, 2.33281589, -23.1970119)
  2262. o119.Rotation = Vector3.new(1.01777712e-012, -90, 0)
  2263. o119.Anchored = true
  2264. o119.FormFactor = Enum.FormFactor.Custom
  2265. o119.Size = Vector3.new(0.200000003, 0.200000003, 1.11000001)
  2266. o119.CFrame = CFrame.new(-43.9570045, 2.33281589, -23.1970119, -1.49008656e-007, -4.44105473e-015, -1, -1.77635616e-014, 1, -4.44102762e-015, 1, 1.77635684e-014, -1.49008883e-007)
  2267. o119.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2268. o119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2269. o119.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2270. o119.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2271. o119.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2272. o119.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2273. o119.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2274. o120.Parent = o119
  2275. o120.Offset = Vector3.new(0.00600000005, 0, 0)
  2276. o120.Scale = Vector3.new(0.299999982, 0.599999964, 0.999000013)
  2277. o121.Parent = o1
  2278. o121.Material = Enum.Material.SmoothPlastic
  2279. o121.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2280. o121.Position = Vector3.new(-44.6409874, 2.16198707, -23.017004)
  2281. o121.Rotation = Vector3.new(-89.9985504, -1.70046644e-006, -90)
  2282. o121.Anchored = true
  2283. o121.FormFactor = Enum.FormFactor.Custom
  2284. o121.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2285. o121.CFrame = CFrame.new(-44.6409874, 2.16198707, -23.017004, -6.33863237e-008, 1, -2.96787377e-008, -2.53360668e-005, 2.96771319e-008, 1, 1, 6.33874606e-008, 2.53360668e-005)
  2286. o121.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2287. o121.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2288. o121.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2289. o121.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2290. o121.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2291. o121.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2292. o121.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2293. o122.Parent = o121
  2294. o122.Scale = Vector3.new(1, 0.360000014, 0.299999982)
  2295. o122.MeshType = Enum.MeshType.Wedge
  2296. o123.Parent = o1
  2297. o123.Material = Enum.Material.SmoothPlastic
  2298. o123.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2299. o123.Position = Vector3.new(-45.08498, 2.44970989, -23.0169888)
  2300. o123.Rotation = Vector3.new(-0.236811787, -89.7451248, -0.767986298)
  2301. o123.Anchored = true
  2302. o123.FormFactor = Enum.FormFactor.Custom
  2303. o123.Size = Vector3.new(0.200000003, 0.200000003, 0.99000001)
  2304. o123.CFrame = CFrame.new(-45.08498, 2.44970989, -23.0169888, 1.10267058e-006, 1.47809596e-008, -0.999990106, 4.37112924e-008, 0.999995053, 1.4781155e-008, 1, -4.37118537e-008, 3.57622821e-006)
  2305. o123.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2306. o123.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2307. o123.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2308. o123.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2309. o123.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2310. o123.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2311. o123.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2312. o124.Parent = o123
  2313. o124.Scale = Vector3.new(0.75, 0.599999964, 1)
  2314. o125.Parent = o1
  2315. o125.Material = Enum.Material.SmoothPlastic
  2316. o125.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2317. o125.Position = Vector3.new(-45.5094337, 1.53326499, -23.0169888)
  2318. o125.Rotation = Vector3.new(90, -28.6877403, -89.9999924)
  2319. o125.Anchored = true
  2320. o125.FormFactor = Enum.FormFactor.Custom
  2321. o125.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2322. o125.CFrame = CFrame.new(-45.5094337, 1.53326499, -23.0169888, 1.78810296e-007, 0.877248883, -0.480035782, 2.48689856e-014, -0.480035782, -0.877248883, -1, 1.56861489e-007, -8.58355733e-008)
  2323. o125.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2324. o125.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2325. o125.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2326. o125.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2327. o125.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2328. o125.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2329. o125.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2330. o126.Parent = o125
  2331. o126.Scale = Vector3.new(1, 0.180000007, 0.149999991)
  2332. o126.MeshType = Enum.MeshType.Wedge
  2333. o127.Parent = o1
  2334. o127.Material = Enum.Material.SmoothPlastic
  2335. o127.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2336. o127.Position = Vector3.new(-45.1449661, 1.89352095, -23.0169888)
  2337. o127.Rotation = Vector3.new(90, -1.70757198e-006, 90.0000076)
  2338. o127.Anchored = true
  2339. o127.FormFactor = Enum.FormFactor.Custom
  2340. o127.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2341. o127.CFrame = CFrame.new(-45.1449661, 1.89352095, -23.0169888, -1.78810296e-007, -1, -2.98027523e-008, -2.48689856e-014, 2.98027523e-008, -1, 1, -1.78810751e-007, -3.01979917e-014)
  2342. o127.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2343. o127.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2344. o127.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2345. o127.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2346. o127.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2347. o127.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2348. o127.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2349. o128.Parent = o127
  2350. o128.Scale = Vector3.new(1, 0.180000007, 0.149999991)
  2351. o128.MeshType = Enum.MeshType.Wedge
  2352. o129.Parent = o1
  2353. o129.Material = Enum.Material.SmoothPlastic
  2354. o129.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2355. o129.Position = Vector3.new(-45.3900337, 1.75122094, -23.0169888)
  2356. o129.Rotation = Vector3.new(-90, 28.6877403, -90.0000076)
  2357. o129.Anchored = true
  2358. o129.FormFactor = Enum.FormFactor.Custom
  2359. o129.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2360. o129.CFrame = CFrame.new(-45.3900337, 1.75122094, -23.0169888, -1.78810296e-007, 0.877248883, 0.480035782, -2.48689856e-014, -0.480035782, 0.877248883, 1, 1.56861489e-007, 8.58355733e-008)
  2361. o129.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2362. o129.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2363. o129.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2364. o129.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2365. o129.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2366. o129.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2367. o129.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2368. o130.Parent = o129
  2369. o130.Scale = Vector3.new(1, 0.180000007, 0.112500004)
  2370. o130.MeshType = Enum.MeshType.Wedge
  2371. o131.Parent = o1
  2372. o131.Material = Enum.Material.SmoothPlastic
  2373. o131.BrickColor = BrickColor.new("Dark stone grey")
  2374. o131.Position = Vector3.new(-44.8719826, 2.33270693, -23.0019875)
  2375. o131.Rotation = Vector3.new(-1.52666525e-011, 0.00013147993, 90)
  2376. o131.Anchored = true
  2377. o131.FormFactor = Enum.FormFactor.Custom
  2378. o131.Size = Vector3.new(0.209999993, 0.330000013, 0.209999993)
  2379. o131.CFrame = CFrame.new(-44.8719826, 2.33270693, -23.0019875, 6.80958789e-014, -1, 2.29475768e-006, 1, 6.80964887e-014, 2.66453363e-013, -2.66453526e-013, 2.29475745e-006, 1)
  2380. o131.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2381. o131.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2382. o131.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2383. o131.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2384. o131.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2385. o131.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2386. o131.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2387. o132.Parent = o131
  2388. o132.Scale = Vector3.new(1.10000002, 1, 1)
  2389. o133.Parent = o1
  2390. o133.Material = Enum.Material.SmoothPlastic
  2391. o133.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2392. o133.Position = Vector3.new(-45.5253639, 1.79166996, -23.0169888)
  2393. o133.Rotation = Vector3.new(-90.0000153, -61.3127441, -90.0000229)
  2394. o133.Anchored = true
  2395. o133.FormFactor = Enum.FormFactor.Custom
  2396. o133.Size = Vector3.new(0.209999993, 0.468000025, 0.239999995)
  2397. o133.CFrame = CFrame.new(-45.5253639, 1.79166996, -23.0169888, -1.78810296e-007, 0.480028421, -0.877252936, -2.48689856e-014, 0.877252877, 0.480028421, 1, 8.58341522e-008, -1.56862399e-007)
  2398. o133.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2399. o133.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2400. o133.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2401. o133.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2402. o133.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2403. o133.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2404. o133.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2405. o134.Parent = o133
  2406. o135.Parent = o1
  2407. o135.Material = Enum.Material.SmoothPlastic
  2408. o135.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2409. o135.Position = Vector3.new(-45.2349663, 1.87251794, -23.0169888)
  2410. o135.Rotation = Vector3.new(-90, -5.97646749e-006, -90.0000076)
  2411. o135.Anchored = true
  2412. o135.FormFactor = Enum.FormFactor.Custom
  2413. o135.Size = Vector3.new(0.209999993, 0.324000001, 0.200000003)
  2414. o135.CFrame = CFrame.new(-45.2349663, 1.87251794, -23.0169888, -1.78810296e-007, 1, -1.04309038e-007, -2.48689856e-014, 1.04309038e-007, 1, 1, 1.78810524e-007, 6.21742512e-015)
  2415. o135.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2416. o135.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2417. o135.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2418. o135.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2419. o135.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2420. o135.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2421. o135.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2422. o136.Parent = o135
  2423. o136.Scale = Vector3.new(1, 1, 0.0749999955)
  2424. o137.Parent = o1
  2425. o137.Material = Enum.Material.SmoothPlastic
  2426. o137.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2427. o137.Position = Vector3.new(-44.9019814, 2.03599, -23.0169888)
  2428. o137.Rotation = Vector3.new(1.01777712e-012, -90, 0)
  2429. o137.Anchored = true
  2430. o137.FormFactor = Enum.FormFactor.Custom
  2431. o137.Size = Vector3.new(0.209999993, 0.200000003, 0.419999987)
  2432. o137.CFrame = CFrame.new(-44.9019814, 2.03599, -23.0169888, -1.49008656e-007, -4.44105473e-015, -1, -1.77635616e-014, 1, -4.44102762e-015, 1, 1.77635684e-014, -1.49008883e-007)
  2433. o137.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2434. o137.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2435. o137.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2436. o137.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2437. o137.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2438. o137.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2439. o137.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2440. o138.Parent = o137
  2441. o138.Scale = Vector3.new(1, 0.900000036, 1.10000002)
  2442. o138.MeshType = Enum.MeshType.Brick
  2443. o139.Parent = o1
  2444. o139.Material = Enum.Material.SmoothPlastic
  2445. o139.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2446. o139.Position = Vector3.new(-45.2949638, 1.96252096, -23.0169888)
  2447. o139.Rotation = Vector3.new(-90, 8.10863442e-012, -90.0000076)
  2448. o139.Anchored = true
  2449. o139.FormFactor = Enum.FormFactor.Custom
  2450. o139.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2451. o139.CFrame = CFrame.new(-45.2949638, 1.96252096, -23.0169888, -1.78810296e-007, 1, 1.4152236e-013, -2.48689856e-014, -1.41522373e-013, 1, 1, 1.78810751e-007, 2.48690432e-014)
  2452. o139.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2453. o139.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2454. o139.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2455. o139.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2456. o139.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2457. o139.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2458. o139.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2459. o140.Parent = o139
  2460. o140.Scale = Vector3.new(1, 0.180000007, 0.149999991)
  2461. o140.MeshType = Enum.MeshType.Wedge
  2462. o141.Parent = o1
  2463. o141.Material = Enum.Material.SmoothPlastic
  2464. o141.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2465. o141.Position = Vector3.new(-44.4249878, 2.32082105, -23.017004)
  2466. o141.Rotation = Vector3.new(-3.16530691e-011, 0.000271500117, -90)
  2467. o141.Anchored = true
  2468. o141.FormFactor = Enum.FormFactor.Custom
  2469. o141.Size = Vector3.new(0.200000003, 0.300000012, 0.200000003)
  2470. o141.CFrame = CFrame.new(-44.4249878, 2.32082105, -23.017004, -2.98020346e-008, 1, 4.73857108e-006, -1, -2.98020364e-008, 5.52450284e-013, 6.93669406e-013, -4.73857108e-006, 1)
  2471. o141.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2472. o141.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2473. o141.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2474. o141.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2475. o141.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2476. o141.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2477. o141.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2478. o142.Parent = o141
  2479. o142.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2480. o142.Scale = Vector3.new(0.150000006, 0.440999985, 0.150000006)
  2481. o142.MeshType = Enum.MeshType.FileMesh
  2482. o143.Parent = o1
  2483. o143.Material = Enum.Material.SmoothPlastic
  2484. o143.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2485. o143.Position = Vector3.new(-42.3520088, 2.33281589, -23.017004)
  2486. o143.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  2487. o143.Anchored = true
  2488. o143.FormFactor = Enum.FormFactor.Custom
  2489. o143.Size = Vector3.new(0.270000011, 0.300000012, 0.200000003)
  2490. o143.CFrame = CFrame.new(-42.3520088, 2.33281589, -23.017004, -1.49008656e-007, 1, 1.41107788e-013, -1.77635616e-014, -1.41107801e-013, 1, 1, 1.49008883e-007, 1.77636429e-014)
  2491. o143.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2492. o143.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2493. o143.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2494. o143.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2495. o143.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2496. o143.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2497. o143.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2498. o144.Parent = o143
  2499. o144.Scale = Vector3.new(1, 1, 0.50999999)
  2500. o145.Parent = o1
  2501. o145.Material = Enum.Material.SmoothPlastic
  2502. o145.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2503. o145.Position = Vector3.new(-42.096714, 2.33280206, -23.017004)
  2504. o145.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  2505. o145.Anchored = true
  2506. o145.FormFactor = Enum.FormFactor.Custom
  2507. o145.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2508. o145.CFrame = CFrame.new(-42.096714, 2.33280206, -23.017004, -1.49008656e-007, 1, 1.41107788e-013, -1.77635616e-014, -1.41107801e-013, 1, 1, 1.49008883e-007, 1.77636429e-014)
  2509. o145.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2510. o145.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2511. o145.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2512. o145.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2513. o145.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2514. o145.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2515. o145.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2516. o146.Parent = o145
  2517. o146.Scale = Vector3.new(0.450000018, 0.149999991, 0.50999999)
  2518. o147.Parent = o1
  2519. o147.Material = Enum.Material.SmoothPlastic
  2520. o147.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2521. o147.Position = Vector3.new(-43.1469765, 2.686795, -23.0530148)
  2522. o147.Rotation = Vector3.new(180, -0.000271500117, -180)
  2523. o147.Anchored = true
  2524. o147.FormFactor = Enum.FormFactor.Custom
  2525. o147.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2526. o147.CFrame = CFrame.new(-43.1469765, 2.686795, -23.0530148, -1, 1.41105064e-013, -4.73857108e-006, 1.41107707e-013, 1, -5.5422599e-013, 4.73857108e-006, -5.54226695e-013, -1)
  2527. o147.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2528. o147.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2529. o147.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2530. o147.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2531. o147.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2532. o147.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2533. o147.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2534. o148.Parent = o147
  2535. o148.MeshId = "http://www.roblox.com/asset/?id=12221344"
  2536. o148.Scale = Vector3.new(0.209999993, 0.224999994, 0.00450000027)
  2537. o148.MeshType = Enum.MeshType.FileMesh
  2538. o149.Parent = o1
  2539. o149.Material = Enum.Material.SmoothPlastic
  2540. o149.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2541. o149.Position = Vector3.new(-43.304081, 2.51094389, -23.017004)
  2542. o149.Rotation = Vector3.new(89.9999924, 54.8440132, 90.0000153)
  2543. o149.Anchored = true
  2544. o149.FormFactor = Enum.FormFactor.Custom
  2545. o149.Size = Vector3.new(0.200000003, 0.360000014, 0.200000003)
  2546. o149.CFrame = CFrame.new(-43.304081, 2.51094389, -23.017004, -1.49008656e-007, -0.575804472, 0.817587435, -1.77635616e-014, -0.817587495, -0.575804472, 1, -8.57999538e-008, 1.21827782e-007)
  2547. o149.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2548. o149.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2549. o149.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2550. o149.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2551. o149.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2552. o149.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2553. o149.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2554. o150.Parent = o149
  2555. o150.Scale = Vector3.new(0.450000018, 1, 0.149999991)
  2556. o151.Parent = o1
  2557. o151.Material = Enum.Material.SmoothPlastic
  2558. o151.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2559. o151.Position = Vector3.new(-45.621994, 2.11099911, -23.0169888)
  2560. o151.Rotation = Vector3.new(-180, 90, 0)
  2561. o151.Anchored = true
  2562. o151.FormFactor = Enum.FormFactor.Custom
  2563. o151.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2564. o151.CFrame = CFrame.new(-45.621994, 2.11099911, -23.0169888, -1.78810296e-007, 5.3292467e-015, 1, -2.48689856e-014, -1, 5.3292467e-015, 1, -2.48690025e-014, 1.78810751e-007)
  2565. o151.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2566. o151.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2567. o151.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2568. o151.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2569. o151.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2570. o151.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2571. o151.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2572. o152.Parent = o151
  2573. o152.Scale = Vector3.new(1, 0.149999991, 0.149999991)
  2574. o152.MeshType = Enum.MeshType.Wedge
  2575. o153.Parent = o1
  2576. o153.Material = Enum.Material.SmoothPlastic
  2577. o153.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2578. o153.Position = Vector3.new(-43.1379738, 2.638798, -23.017004)
  2579. o153.Rotation = Vector3.new(-180, 90, 0)
  2580. o153.Anchored = true
  2581. o153.FormFactor = Enum.FormFactor.Custom
  2582. o153.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2583. o153.CFrame = CFrame.new(-43.1379738, 2.638798, -23.017004, -1.49008656e-007, 4.44105473e-015, 1, -1.77635616e-014, -1, 4.44102762e-015, 1, -1.77635684e-014, 1.49008883e-007)
  2584. o153.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2585. o153.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2586. o153.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2587. o153.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2588. o153.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2589. o153.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2590. o153.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2591. o154.Parent = o153
  2592. o154.Scale = Vector3.new(0.299999982, 0.360000014, 0.299999982)
  2593. o155.Parent = o1
  2594. o155.Material = Enum.Material.SmoothPlastic
  2595. o155.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2596. o155.Position = Vector3.new(-43.1560097, 2.69881988, -23.017004)
  2597. o155.Rotation = Vector3.new(1.01777712e-012, -90, 0)
  2598. o155.Anchored = true
  2599. o155.FormFactor = Enum.FormFactor.Custom
  2600. o155.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2601. o155.CFrame = CFrame.new(-43.1560097, 2.69881988, -23.017004, -1.49008656e-007, -4.44105473e-015, -1, -1.77635616e-014, 1, -4.44102762e-015, 1, 1.77635684e-014, -1.49008883e-007)
  2602. o155.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2603. o155.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2604. o155.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2605. o155.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2606. o155.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2607. o155.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2608. o155.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2609. o156.Parent = o155
  2610. o156.Scale = Vector3.new(0.0299999993, 0.240000024, 0.0299999993)
  2611. o157.Parent = o1
  2612. o157.Material = Enum.Material.SmoothPlastic
  2613. o157.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2614. o157.Position = Vector3.new(-43.2220192, 2.33281589, -23.017004)
  2615. o157.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  2616. o157.Anchored = true
  2617. o157.FormFactor = Enum.FormFactor.Custom
  2618. o157.Size = Vector3.new(0.270000011, 0.540000021, 0.200000003)
  2619. o157.CFrame = CFrame.new(-43.2220192, 2.33281589, -23.017004, -1.49008656e-007, 1, 1.41107788e-013, -1.77635616e-014, -1.41107801e-013, 1, 1, 1.49008883e-007, 1.77636429e-014)
  2620. o157.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2621. o157.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2622. o157.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2623. o157.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2624. o157.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2625. o157.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2626. o157.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2627. o158.Parent = o157
  2628. o158.Scale = Vector3.new(1, 1, 0.599999964)
  2629. o159.Parent = o1
  2630. o159.Material = Enum.Material.SmoothPlastic
  2631. o159.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2632. o159.Position = Vector3.new(-44.6379814, 2.28186107, -23.017004)
  2633. o159.Rotation = Vector3.new(1.42488799e-012, -90, 0)
  2634. o159.Anchored = true
  2635. o159.FormFactor = Enum.FormFactor.Custom
  2636. o159.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2637. o159.CFrame = CFrame.new(-44.6379814, 2.28186107, -23.017004, -1.78810296e-007, -5.3292467e-015, -1, -2.48689856e-014, 1, -5.3292467e-015, 1, 2.48690025e-014, -1.78810751e-007)
  2638. o159.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2639. o159.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2640. o159.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2641. o159.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2642. o159.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2643. o159.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2644. o159.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2645. o160.Parent = o159
  2646. o160.Scale = Vector3.new(1.01999998, 0.900000036, 0.329999983)
  2647. o161.Parent = o1
  2648. o161.Material = Enum.Material.SmoothPlastic
  2649. o161.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2650. o161.Position = Vector3.new(-46.9419594, 1.99700594, -23.0169888)
  2651. o161.Rotation = Vector3.new(-0.734529912, -89.7451248, -168.690018)
  2652. o161.Anchored = true
  2653. o161.FormFactor = Enum.FormFactor.Custom
  2654. o161.Size = Vector3.new(0.200000003, 0.216000006, 0.200000003)
  2655. o161.CFrame = CFrame.new(-46.9419594, 1.99700594, -23.0169888, -1.49008656e-007, 2.98018819e-008, -0.999990106, -4.37109797e-008, 0.999995053, 2.9802111e-008, 1, 4.37108518e-008, 2.32453658e-006)
  2656. o161.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2657. o161.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2658. o161.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2659. o161.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2660. o161.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2661. o161.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2662. o161.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2663. o162.Parent = o161
  2664. o162.Scale = Vector3.new(0.450000018, 1, 0.75)
  2665. o163.Parent = o1
  2666. o163.Material = Enum.Material.SmoothPlastic
  2667. o163.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2668. o163.Position = Vector3.new(-47.0289497, 2.04499006, -23.1219997)
  2669. o163.Rotation = Vector3.new(-3.15512512e-011, 0.000269792567, 180)
  2670. o163.Anchored = true
  2671. o163.FormFactor = Enum.FormFactor.Custom
  2672. o163.Size = Vector3.new(0.200000003, 0.540000021, 0.200000003)
  2673. o163.CFrame = CFrame.new(-47.0289497, 2.04499006, -23.1219997, -1, -1.39802381e-013, 4.70876876e-006, 1.3980497e-013, -1, 5.50673222e-013, 4.70876876e-006, 5.50673873e-013, 1)
  2674. o163.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2675. o163.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2676. o163.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2677. o163.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2678. o163.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2679. o163.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2680. o163.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2681. o164.Parent = o163
  2682. o164.Scale = Vector3.new(0.149999991, 1, 0.299999982)
  2683. o164.MeshType = Enum.MeshType.Wedge
  2684. o165.Parent = o1
  2685. o165.Material = Enum.Material.SmoothPlastic
  2686. o165.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2687. o165.Position = Vector3.new(-45.2952766, 1.89501095, -23.0169888)
  2688. o165.Rotation = Vector3.new(90, -8.10863442e-012, -89.9999924)
  2689. o165.Anchored = true
  2690. o165.FormFactor = Enum.FormFactor.Custom
  2691. o165.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2692. o165.CFrame = CFrame.new(-45.2952766, 1.89501095, -23.0169888, 1.78810296e-007, 1, -1.4152236e-013, 2.48689856e-014, -1.41522373e-013, -1, -1, 1.78810524e-007, -2.48690161e-014)
  2693. o165.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2694. o165.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2695. o165.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2696. o165.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2697. o165.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2698. o165.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2699. o165.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2700. o166.Parent = o165
  2701. o166.Scale = Vector3.new(1, 0.180000007, 0.149999991)
  2702. o166.MeshType = Enum.MeshType.Wedge
  2703. o167.Parent = o1
  2704. o167.Material = Enum.Material.SmoothPlastic
  2705. o167.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2706. o167.Position = Vector3.new(-43.9570045, 2.49781394, -23.017004)
  2707. o167.Rotation = Vector3.new(1.01777712e-012, -90, 0)
  2708. o167.Anchored = true
  2709. o167.FormFactor = Enum.FormFactor.Custom
  2710. o167.Size = Vector3.new(0.200000003, 0.200000003, 1.11000001)
  2711. o167.CFrame = CFrame.new(-43.9570045, 2.49781394, -23.017004, -1.49008656e-007, -4.44105473e-015, -1, -1.77635616e-014, 1, -4.44102762e-015, 1, 1.77635684e-014, -1.49008883e-007)
  2712. o167.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2713. o167.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2714. o167.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2715. o167.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2716. o167.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2717. o167.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2718. o167.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2719. o168.Parent = o167
  2720. o168.Scale = Vector3.new(0.75, 0.337500006, 0.999000013)
  2721. o169.Parent = o1
  2722. o169.Material = Enum.Material.SmoothPlastic
  2723. o169.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2724. o169.Position = Vector3.new(-43.9570045, 2.13797688, -23.017004)
  2725. o169.Rotation = Vector3.new(1.01777712e-012, -90, 0)
  2726. o169.Anchored = true
  2727. o169.FormFactor = Enum.FormFactor.Custom
  2728. o169.Size = Vector3.new(0.200000003, 0.200000003, 1.11000001)
  2729. o169.CFrame = CFrame.new(-43.9570045, 2.13797688, -23.017004, -1.49008656e-007, -4.44105473e-015, -1, -1.77635616e-014, 1, -4.44102762e-015, 1, 1.77635684e-014, -1.49008883e-007)
  2730. o169.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2731. o169.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2732. o169.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2733. o169.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2734. o169.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2735. o169.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2736. o169.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2737. o170.Parent = o169
  2738. o170.Offset = Vector3.new(0, 0.00600000005, 0)
  2739. o170.Scale = Vector3.new(0.75, 0.299999982, 0.999000013)
  2740. o171.Parent = o1
  2741. o171.Material = Enum.Material.SmoothPlastic
  2742. o171.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2743. o171.Position = Vector3.new(-47.0109558, 2.17999005, -23.0169888)
  2744. o171.Rotation = Vector3.new(-0.734529912, -89.7451248, -168.690018)
  2745. o171.Anchored = true
  2746. o171.FormFactor = Enum.FormFactor.Custom
  2747. o171.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2748. o171.CFrame = CFrame.new(-47.0109558, 2.17999005, -23.0169888, -1.49008656e-007, 2.98018819e-008, -0.999990106, -4.37109797e-008, 0.999995053, 2.9802111e-008, 1, 4.37108518e-008, 2.32453658e-006)
  2749. o171.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2750. o171.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2751. o171.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2752. o171.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2753. o171.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2754. o171.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2755. o171.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2756. o172.Parent = o171
  2757. o172.Scale = Vector3.new(0.450000018, 0.900000036, 0.299999982)
  2758. o173.Parent = o1
  2759. o173.Material = Enum.Material.SmoothPlastic
  2760. o173.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2761. o173.Position = Vector3.new(-43.9570045, 2.31786799, -23.017004)
  2762. o173.Rotation = Vector3.new(-90, 7.59291241e-012, -89.9999924)
  2763. o173.Anchored = true
  2764. o173.FormFactor = Enum.FormFactor.Custom
  2765. o173.Size = Vector3.new(0.330000013, 1.11000001, 0.330000013)
  2766. o173.CFrame = CFrame.new(-43.9570045, 2.31786799, -23.017004, 1.49009111e-007, 1, 1.32521313e-013, 1.7763565e-014, -1.32521313e-013, 1, 1, -1.49008883e-007, -1.77635853e-014)
  2767. o173.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2768. o173.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2769. o173.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2770. o173.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2771. o173.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2772. o173.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2773. o173.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2774. o174.Parent = o173
  2775. o175.Parent = o1
  2776. o175.Material = Enum.Material.SmoothPlastic
  2777. o175.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2778. o175.Position = Vector3.new(-46.8672638, 1.86865795, -23.0169888)
  2779. o175.Rotation = Vector3.new(-91.3824005, -12.9276743, -96.1565094)
  2780. o175.Anchored = true
  2781. o175.FormFactor = Enum.FormFactor.Custom
  2782. o175.Size = Vector3.new(0.200000003, 0.252000004, 0.200000003)
  2783. o175.CFrame = CFrame.new(-46.8672638, 1.86865795, -23.0169888, -0.104526445, 0.969032109, -0.223720908, -3.66310928e-008, 0.22495316, 0.974369586, 0.994522095, 0.10184741, -0.0235135201)
  2784. o175.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2785. o175.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2786. o175.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2787. o175.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2788. o175.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2789. o175.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2790. o175.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2791. o176.Parent = o175
  2792. o176.Scale = Vector3.new(0.599999964, 1.26000011, 0.75)
  2793. o176.MeshType = Enum.MeshType.Wedge
  2794. for i=1,#cors do
  2795. coroutine.resume(cors[i])
  2796. end
  2797. if Silencer == true then
  2798. o1.Flash:Destroy()
  2799. o1.Handle.Fire.SoundId = "rbxassetid://162043120"
  2800. o1.Handle.Fire2.SoundId = "rbxassetid://162043120"
  2801. o1.Handle.Fire3.SoundId = "rbxassetid://162043120"
  2802. o2 = Instance.new("Part")
  2803. o3 = Instance.new("CylinderMesh")
  2804. o4 = Instance.new("Part")
  2805. o5 = Instance.new("CylinderMesh")
  2806. o6 = Instance.new("Part")
  2807. o7 = Instance.new("CylinderMesh")
  2808. o8 = Instance.new("Part")
  2809. o9 = Instance.new("SpecialMesh")
  2810. o2.Name = "part"
  2811. o2.Parent = o1
  2812. o2.BrickColor = BrickColor.new("Really black")
  2813. o2.Reflectance = 0.10000000149012
  2814. o2.Position = Vector3.new(-42.1407204, 2.32828784, -23.0075817)
  2815. o2.Rotation = Vector3.new(-90, 0, -90)
  2816. o2.Anchored = true
  2817. o2.Size = Vector3.new(1, 1.20000005, 1)
  2818. o2.CFrame = CFrame.new(-42.1407204, 2.32828784, -23.0075817, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2819. o2.BottomSurface = Enum.SurfaceType.Smooth
  2820. o2.TopSurface = Enum.SurfaceType.Smooth
  2821. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2822. o3.Parent = o2
  2823. o3.Scale = Vector3.new(0.333333343, 0.25, 0.333333343)
  2824. o4.Name = "part"
  2825. o4.Parent = o1
  2826. o4.BrickColor = BrickColor.new("Really black")
  2827. o4.Reflectance = 0.10000000149012
  2828. o4.Position = Vector3.new(-41.4907265, 2.32828689, -23.0075779)
  2829. o4.Rotation = Vector3.new(-90, 0, -90)
  2830. o4.Anchored = true
  2831. o4.Size = Vector3.new(1, 1.20000005, 1)
  2832. o4.CFrame = CFrame.new(-41.4907265, 2.32828689, -23.0075779, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2833. o4.BottomSurface = Enum.SurfaceType.Smooth
  2834. o4.TopSurface = Enum.SurfaceType.Smooth
  2835. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2836. o5.Parent = o4
  2837. o5.Scale = Vector3.new(0.333333343, 0.666666627, 0.333333343)
  2838. o6.Name = "part"
  2839. o6.Parent = o1
  2840. o6.BrickColor = BrickColor.new("Bright red")
  2841. o6.Reflectance = 0.10000000149012
  2842. o6.Position = Vector3.new(-41.9407234, 2.32828784, -23.0075779)
  2843. o6.Rotation = Vector3.new(-180, 0, 90)
  2844. o6.Anchored = true
  2845. o6.Size = Vector3.new(1, 1.20000005, 1)
  2846. o6.CFrame = CFrame.new(-41.9407234, 2.32828784, -23.0075779, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  2847. o6.BottomSurface = Enum.SurfaceType.Smooth
  2848. o6.TopSurface = Enum.SurfaceType.Smooth
  2849. o6.Color = Color3.new(0.768628, 0.156863, 0.109804)
  2850. o7.Parent = o6
  2851. o7.Scale = Vector3.new(0.333333343, 0.0833333284, 0.333333343)
  2852. o8.Name = "Flash"
  2853. o8.Parent = o1
  2854. o8.Material = Enum.Material.SmoothPlastic
  2855. o8.BrickColor = BrickColor.new("Bright orange")
  2856. o8.Transparency = 1
  2857. o8.Position = Vector3.new(-40.8776131, 2.32680488, -23.017004)
  2858. o8.Rotation = Vector3.new(-90, 8.08488086e-012, 89.9999924)
  2859. o8.Anchored = true
  2860. o8.FormFactor = Enum.FormFactor.Custom
  2861. o8.Size = Vector3.new(0.200000003, 0.449999988, 0.200000003)
  2862. o8.CFrame = CFrame.new(-40.8776131, 2.32680488, -23.017004, 1.49008656e-007, -1, 1.41107788e-013, 1.77635616e-014, 1.41107801e-013, 1, -1, -1.49008883e-007, 1.77636429e-014)
  2863. o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2864. o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2865. o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2866. o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2867. o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2868. o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2869. o8.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2870. o9.Parent = o8
  2871. o9.Scale = Vector3.new(1.5, 2, 1.80000007)
  2872. o9.MeshType = Enum.MeshType.Sphere
  2873. end
  2874. if Bayonet == true then
  2875. o2 = Instance.new("Part")
  2876. o3 = Instance.new("SpecialMesh")
  2877. o4 = Instance.new("Part")
  2878. o5 = Instance.new("Part")
  2879. o6 = Instance.new("Part")
  2880. o8 = Instance.new("SpecialMesh")
  2881. o9 = Instance.new("Part")
  2882. o2.Name = "KNF2"
  2883. o2.Parent = o1
  2884. o2.Material = Enum.Material.SmoothPlastic
  2885. o2.BrickColor = BrickColor.new("Light stone grey")
  2886. o2.Position = Vector3.new(-41.2967644, 2.00816202, -23.040699)
  2887. o2.Rotation = Vector3.new(-90, 0, -90)
  2888. o2.Anchored = true
  2889. o2.FormFactor = Enum.FormFactor.Custom
  2890. o2.Size = Vector3.new(0.156190887, 0.468572587, 0.0937145352)
  2891. o2.CFrame = CFrame.new(-41.2967644, 2.00816202, -23.040699, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2892. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2893. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2894. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2895. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2896. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2897. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2898. o2.Color = Color3.new(0.898039, 0.894118, 0.87451)
  2899. o3.Parent = o2
  2900. o3.MeshType = Enum.MeshType.Wedge
  2901. o4.Name = "KNF1"
  2902. o4.Parent = o1
  2903. o4.Material = Enum.Material.SmoothPlastic
  2904. o4.BrickColor = BrickColor.new("Light stone grey")
  2905. o4.Position = Vector3.new(-41.9995346, 2.05501676, -23.0407009)
  2906. o4.Rotation = Vector3.new(-180, 0, -90)
  2907. o4.Anchored = true
  2908. o4.FormFactor = Enum.FormFactor.Symmetric
  2909. o4.Size = Vector3.new(0.18742907, 0.937145114, 0.156190887)
  2910. o4.CFrame = CFrame.new(-41.9995346, 2.05501676, -23.0407009, 0, 1, 0, 1, 0, 0, 0, 0, -1)
  2911. o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2912. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2913. o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2914. o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2915. o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2916. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2917. o4.Color = Color3.new(0.898039, 0.894118, 0.87451)
  2918. o5.Parent = o1
  2919. o5.Material = Enum.Material.SmoothPlastic
  2920. o5.BrickColor = BrickColor.new("Black")
  2921. o5.Position = Vector3.new(-42.5242958, 2.20311594, -23.0407009)
  2922. o5.Rotation = Vector3.new(-180, 0, -90)
  2923. o5.Anchored = true
  2924. o5.FormFactor = Enum.FormFactor.Symmetric
  2925. o5.Size = Vector3.new(0.546096325, 0.200000003, 0.218667254)
  2926. o5.CFrame = CFrame.new(-42.5242958, 2.20311594, -23.0407009, 0, 1, 0, 1, 0, 0, 0, 0, -1)
  2927. o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2928. o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2929. o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2930. o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2931. o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2932. o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2933. o5.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2934. o6.Parent = o1
  2935. o6.Material = Enum.Material.SmoothPlastic
  2936. o6.BrickColor = BrickColor.new("Black")
  2937. o6.Position = Vector3.new(-43.0098267, 2.18811393, -23.040699)
  2938. o6.Rotation = Vector3.new(-180, 0, -90)
  2939. o6.Anchored = true
  2940. o6.FormFactor = Enum.FormFactor.Symmetric
  2941. o6.Size = Vector3.new(0.516096354, 0.200000003, 0.218667254)
  2942. o6.CFrame = CFrame.new(-43.0098267, 2.18811393, -23.040699, 0, 1, 0, 1, 0, 0, 0, 0, -1)
  2943. o6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2944. o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2945. o6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2946. o6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2947. o6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2948. o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2949. o6.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2950. o8.Parent = o7
  2951. o8.MeshType = Enum.MeshType.Wedge
  2952. o9.Parent = o1
  2953. o9.Material = Enum.Material.SmoothPlastic
  2954. o9.BrickColor = BrickColor.new("Really black")
  2955. o9.Position = Vector3.new(-42.7666817, 2.05501771, -23.0407009)
  2956. o9.Rotation = Vector3.new(-180, 0, -90)
  2957. o9.Anchored = true
  2958. o9.FormFactor = Enum.FormFactor.Symmetric
  2959. o9.Size = Vector3.new(0.249905437, 0.284763545, 0.218667254)
  2960. o9.CFrame = CFrame.new(-42.7666817, 2.05501771, -23.0407009, 0, 1, 0, 1, 0, 0, 0, 0, -1)
  2961. o9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2962. o9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2963. o9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2964. o9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2965. o9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2966. o9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2967. o9.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2968. function onTouched(part)
  2969. local h = part.Parent:findFirstChild("Humanoid")
  2970. if h~=nil then
  2971. h.Health = h.Health -100
  2972. wait(.01)
  2973. h.Health = h.Health -100
  2974. wait(.01)
  2975.  
  2976. end
  2977. end
  2978. o1.KNF2.Touched:connect(onTouched)
  2979. o1.KNF1.Touched:connect(onTouched)
  2980. end
  2981. if Laser == true then
  2982. o2 = Instance.new("Part")
  2983. o3h = Instance.new("Part")
  2984. o4 = Instance.new("CylinderMesh")
  2985. o5 = Instance.new("Part")
  2986. o2.Parent = o1
  2987. o2.Material = Enum.Material.SmoothPlastic
  2988. o2.BrickColor = BrickColor.new("Smoky grey")
  2989. o2.Position = Vector3.new(-43.500782, 2.25119901, -23.2754421)
  2990. o2.Anchored = true
  2991. o2.Shape = Enum.PartType.Cylinder
  2992. o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2993. o2.CFrame = CFrame.new(-43.500782, 2.25119901, -23.2754421, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2994. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2995. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2996. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2997. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2998. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2999. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3000. o2.Color = Color3.new(0.356863, 0.364706, 0.411765)
  3001. o3h.Name = "LASER"
  3002. o3h.Parent = o1
  3003. o3h.Material = Enum.Material.SmoothPlastic
  3004. o3h.BrickColor = BrickColor.new("Maroon")
  3005. o3h.Position = Vector3.new(-43.500782, 2.25119901, -23.2754421)
  3006. o3h.Rotation = Vector3.new(-0, 0, 90)
  3007. o3h.Anchored = true
  3008. o3h.Shape = Enum.PartType.Cylinder
  3009. o3h.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3010. o3h.CFrame = CFrame.new(-43.500782, 2.25119901, -23.2754421, 0, -1, 0, 1, 0, 0, 0, 0, 1)
  3011. o3h.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3012. o3h.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3013. o3h.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3014. o3h.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3015. o3h.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3016. o3h.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3017. o3h.Color = Color3.new(0.458824, 0, 0)
  3018. o4.Parent = o3h
  3019. o4.Offset = Vector3.new(0, -200, 0)
  3020. o4.Scale = Vector3.new(0.075000003, 2000, 0.444000006)
  3021. o5.Parent = o1
  3022. o5.Material = Enum.Material.SmoothPlastic
  3023. o5.BrickColor = BrickColor.new("Really black")
  3024. o5.Position = Vector3.new(-43.8711853, 2.26074958, -23.2754421)
  3025. o5.Anchored = true
  3026. o5.Size = Vector3.new(0.930000186, 0.200000003, 0.200000003)
  3027. o5.CFrame = CFrame.new(-43.8711853, 2.26074958, -23.2754421, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3028. o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3029. o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3030. o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3031. o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3032. o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3033. o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3034. o5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3035. end
  3036. if Drum == true then
  3037. o1.Mag:Destroy()
  3038. AMMA = Instance.new("Part")
  3039. o2 = Instance.new("CylinderMesh")
  3040. AMMA.Name = "Mag"
  3041. AMMA.Parent = o1
  3042. AMMA.BrickColor = BrickColor.new("Dark stone grey")
  3043. AMMA.Position = Vector3.new(-44.7867393, 1.52765965, -23.0326481)
  3044. AMMA.Rotation = Vector3.new(-179.327454, 0.000156550159, -105.36084)
  3045. AMMA.Anchored = true
  3046. AMMA.FormFactor = Enum.FormFactor.Custom
  3047. AMMA.Size = Vector3.new(0.578095257, 0.464761913, 0.714285731)
  3048. AMMA.CFrame = CFrame.new(-44.7867393, 1.52765965, -23.0326481, -0.264897078, 0.964276731, 2.73231581e-006, 0.964210331, 0.264878809, 0.0117380489, 0.0113180038, 0.00311200949, -0.999931097)
  3049. AMMA.Material = "SmoothPlastic"
  3050. AMMA.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3051. AMMA.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3052. AMMA.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3053. AMMA.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3054. AMMA.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3055. AMMA.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3056. AMMA.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3057. o2.Parent = AMMA
  3058. o1.Ammo.Value = 50
  3059. o1.MaxAmmo.Value = 50
  3060. o1.StoredAmmo.Value = 500
  3061. end
  3062. if Grip == "BIPOD" then
  3063. o2 = Instance.new("Part")
  3064. o3 = Instance.new("CylinderMesh")
  3065. o4 = Instance.new("Part")
  3066. o5 = Instance.new("CylinderMesh")
  3067. o6 = Instance.new("Part")
  3068. o7 = Instance.new("CylinderMesh")
  3069. o8 = Instance.new("Part")
  3070. o9 = Instance.new("CylinderMesh")
  3071. o10 = Instance.new("Part")
  3072. o11 = Instance.new("CylinderMesh")
  3073. o12 = Instance.new("Part")
  3074. o13 = Instance.new("CylinderMesh")
  3075. o2.BrickColor = BrickColor.new("Really black")
  3076. o2.Position = Vector3.new(-43.6581421, 1.260432, -22.7018719)
  3077. o2.Rotation = Vector3.new(-90, 88.374054, 90)
  3078. o2.CanCollide = false
  3079. o2.FormFactor = Enum.FormFactor.Custom
  3080. o2.Size = Vector3.new(0.719999969, 0.719999969, 0.719999969)
  3081. o2.CFrame = CFrame.new(-43.6581421, 1.260432, -22.7018719, 0, -0.0283740088, 0.999597371, 0, 0.999597371, 0.028374007, -1, 0, 0)
  3082. o2.BottomSurface = Enum.SurfaceType.Smooth
  3083. o2.TopSurface = Enum.SurfaceType.Smooth
  3084. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3085. o3.Parent = o2
  3086. o3.Scale = Vector3.new(0.357142866, 0.0714285746, 0.178571433)
  3087. o4.Parent = o1
  3088. o4.BrickColor = BrickColor.new("Really black")
  3089. o4.Position = Vector3.new(-43.6703453, 1.69079101, -22.8541527)
  3090. o4.Rotation = Vector3.new(160.007111, 0.55604285, 178.472076)
  3091. o4.CanCollide = false
  3092. o4.FormFactor = Enum.FormFactor.Custom
  3093. o4.Size = Vector3.new(0.719999969, 0.719999969, 0.719999969)
  3094. o4.CFrame = CFrame.new(-43.6703453, 1.69079101, -22.8541527, -0.999597371, -0.0266627967, 0.00970462617, -0.0283740088, 0.939312518, -0.341887474, 0, -0.34202522, -0.939690828)
  3095. o4.BottomSurface = Enum.SurfaceType.Smooth
  3096. o4.TopSurface = Enum.SurfaceType.Smooth
  3097. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3098. o5.Parent = o4
  3099. o5.Scale = Vector3.new(0.0714285746, 1.2571429, 0.0714285746)
  3100. o6.Parent = o1
  3101. o6.BrickColor = BrickColor.new("Really black")
  3102. o6.Position = Vector3.new(-43.6662483, 1.54586697, -22.8013821)
  3103. o6.Rotation = Vector3.new(160.007111, 0.55604285, 178.472076)
  3104. o6.CanCollide = false
  3105. o6.FormFactor = Enum.FormFactor.Custom
  3106. o6.Size = Vector3.new(0.719999969, 0.719999969, 0.719999969)
  3107. o6.CFrame = CFrame.new(-43.6662483, 1.54586697, -22.8013821, -0.999597371, -0.0266627967, 0.00970462617, -0.0283740088, 0.939312518, -0.341887474, 0, -0.34202522, -0.939690828)
  3108. o6.BottomSurface = Enum.SurfaceType.Smooth
  3109. o6.TopSurface = Enum.SurfaceType.Smooth
  3110. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3111. o7.Parent = o6
  3112. o7.Scale = Vector3.new(0.0928571373, 0.428571433, 0.0928571373)
  3113. o8.Parent = o1
  3114. o8.BrickColor = BrickColor.new("Really black")
  3115. o8.Position = Vector3.new(-43.6706467, 1.70105505, -23.166748)
  3116. o8.Rotation = Vector3.new(19.9928169, 0.556040883, 1.52791929)
  3117. o8.CanCollide = false
  3118. o8.FormFactor = Enum.FormFactor.Custom
  3119. o8.Size = Vector3.new(0.719999969, 0.719999969, 0.719999969)
  3120. o8.CFrame = CFrame.new(-43.6706467, 1.70105505, -23.166748, 0.999597371, -0.026662806, 0.00970459171, 0.0283740088, 0.939312875, -0.341886282, 0, 0.342023969, 0.939691305)
  3121. o8.BottomSurface = Enum.SurfaceType.Smooth
  3122. o8.TopSurface = Enum.SurfaceType.Smooth
  3123. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3124. o9.Parent = o8
  3125. o9.Scale = Vector3.new(0.0714285746, 1.2571429, 0.0714285746)
  3126. o10.Parent = o1
  3127. o10.BrickColor = BrickColor.new("Really black")
  3128. o10.Position = Vector3.new(-43.6581421, 1.26043296, -23.319025)
  3129. o10.Rotation = Vector3.new(90, -88.374054, 90)
  3130. o10.CanCollide = false
  3131. o10.FormFactor = Enum.FormFactor.Custom
  3132. o10.Size = Vector3.new(0.719999969, 0.719999969, 0.719999969)
  3133. o10.CFrame = CFrame.new(-43.6581421, 1.26043296, -23.319025, 0, -0.0283740088, -0.999597371, 0, 0.999597371, -0.028374007, 1, 0, 0)
  3134. o10.BottomSurface = Enum.SurfaceType.Smooth
  3135. o10.TopSurface = Enum.SurfaceType.Smooth
  3136. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3137. o11.Parent = o10
  3138. o11.Scale = Vector3.new(0.357142866, 0.0714285746, 0.178571433)
  3139. o12.Parent = o1
  3140. o12.BrickColor = BrickColor.new("Really black")
  3141. o12.Position = Vector3.new(-43.6665268, 1.55614102, -23.2195148)
  3142. o12.Rotation = Vector3.new(19.9928169, 0.556040883, 1.52791929)
  3143. o12.CanCollide = false
  3144. o12.FormFactor = Enum.FormFactor.Custom
  3145. o12.Size = Vector3.new(0.719999969, 0.719999969, 0.719999969)
  3146. o12.CFrame = CFrame.new(-43.6665268, 1.55614102, -23.2195148, 0.999597371, -0.026662806, 0.00970459171, 0.0283740088, 0.939312875, -0.341886282, 0, 0.342023969, 0.939691305)
  3147. o12.BottomSurface = Enum.SurfaceType.Smooth
  3148. o12.TopSurface = Enum.SurfaceType.Smooth
  3149. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3150. o13.Parent = o12
  3151. o13.Scale = Vector3.new(0.0928571373, 0.428571433, 0.0928571373)
  3152. elseif Grip == "ANGLEGRIP" then
  3153. o2 = Instance.new("Part")
  3154. o3 = Instance.new("Part")
  3155. o4 = Instance.new("Part")
  3156. o5 = Instance.new("Part")
  3157. o6 = Instance.new("Part")
  3158. o7 = Instance.new("Part")
  3159. o8 = Instance.new("Part")
  3160. o9 = Instance.new("Part")
  3161. o10 = Instance.new("Part")
  3162. o11 = Instance.new("Part")
  3163. o12 = Instance.new("SpecialMesh")
  3164. o13 = Instance.new("Part")
  3165. o14 = Instance.new("Part")
  3166. o15 = Instance.new("SpecialMesh")
  3167. o16 = Instance.new("Part")
  3168. o17 = Instance.new("SpecialMesh")
  3169. o18 = Instance.new("Part")
  3170. o19 = Instance.new("Part")
  3171. o20 = Instance.new("Part")
  3172. o21 = Instance.new("SpecialMesh")
  3173. o22 = Instance.new("Part")
  3174. o23 = Instance.new("SpecialMesh")
  3175. o24 = Instance.new("Part")
  3176. o25 = Instance.new("Part")
  3177. o2.Parent = o1
  3178. o2.Material = Enum.Material.SmoothPlastic
  3179. o2.BrickColor = BrickColor.new("Really black")
  3180. o2.Position = Vector3.new(-43.7079277, 2.10686278, -23.0070534)
  3181. o2.Rotation = Vector3.new(0.870935917, -89.8813095, 0.87093389)
  3182. o2.Anchored = true
  3183. o2.CanCollide = false
  3184. o2.FormFactor = Enum.FormFactor.Custom
  3185. o2.Size = Vector3.new(0.156378269, 0.0721745938, 0.228552848)
  3186. o2.CFrame = CFrame.new(-43.7079277, 2.10686278, -23.0070534, 0.00210499973, -3.1999858e-005, -0.999997854, 0, 1, -3.19999308e-005, 0.999997854, 6.73598493e-008, 0.00210499973)
  3187. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3188. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3189. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3190. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3191. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3192. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3193. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3194. o3.Parent = o1
  3195. o3.Material = Enum.Material.SmoothPlastic
  3196. o3.BrickColor = BrickColor.new("Really black")
  3197. o3.Position = Vector3.new(-44.2702217, 1.98938179, -23.0059261)
  3198. o3.Rotation = Vector3.new(90.0916443, 37.2289009, 89.848526)
  3199. o3.Anchored = true
  3200. o3.CanCollide = false
  3201. o3.FormFactor = Enum.FormFactor.Custom
  3202. o3.Size = Vector3.new(0.204494655, 0.0601454861, 0.264640152)
  3203. o3.CFrame = CFrame.new(-44.2702217, 1.98938179, -23.0059261, 0.00210499973, -0.79622215, 0.605000794, 0, -0.605002105, -0.796223879, 0.999997854, 0.00167605095, -0.00127352902)
  3204. o3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3205. o3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3206. o3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3207. o3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3208. o3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3209. o3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3210. o3.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3211. o4.Parent = o1
  3212. o4.Material = Enum.Material.SmoothPlastic
  3213. o4.BrickColor = BrickColor.new("Really black")
  3214. o4.Position = Vector3.new(-44.1654472, 1.86643887, -23.0061512)
  3215. o4.Rotation = Vector3.new(90.1556473, 52.2288246, 89.803093)
  3216. o4.Anchored = true
  3217. o4.CanCollide = false
  3218. o4.FormFactor = Enum.FormFactor.Custom
  3219. o4.Size = Vector3.new(0.204494655, 0.0601454861, 0.0775876865)
  3220. o4.CFrame = CFrame.new(-44.1654472, 1.86643887, -23.0061512, 0.00210499973, -0.612505972, 0.790463269, 0, -0.790464997, -0.612507343, 0.999997854, 0.00128932775, -0.00166392862)
  3221. o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3222. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3223. o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3224. o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3225. o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3226. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3227. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3228. o5.Parent = o1
  3229. o5.Material = Enum.Material.SmoothPlastic
  3230. o5.BrickColor = BrickColor.new("Really black")
  3231. o5.Position = Vector3.new(-44.0593262, 2.07438278, -23.0063744)
  3232. o5.Rotation = Vector3.new(90.1205978, 44.9970665, 89.8294449)
  3233. o5.Anchored = true
  3234. o5.CanCollide = false
  3235. o5.FormFactor = Enum.FormFactor.Custom
  3236. o5.Size = Vector3.new(0.204494655, 0.0481163897, 0.0601454861)
  3237. o5.CFrame = CFrame.new(-44.0593262, 2.07438278, -23.0063744, 0.00210499973, -0.707140028, 0.707070529, 0, -0.707072079, -0.707141578, 0.999997854, 0.00148853287, -0.00148838642)
  3238. o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3239. o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3240. o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3241. o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3242. o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3243. o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3244. o5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3245. o6.Parent = o1
  3246. o6.Material = Enum.Material.SmoothPlastic
  3247. o6.BrickColor = BrickColor.new("Really black")
  3248. o6.Position = Vector3.new(-44.0290871, 2.04886079, -23.006443)
  3249. o6.Rotation = Vector3.new(89.9303665, -30.0025082, 89.8607254)
  3250. o6.Anchored = true
  3251. o6.CanCollide = false
  3252. o6.FormFactor = Enum.FormFactor.Custom
  3253. o6.Size = Vector3.new(0.204494655, 0.0601454861, 0.108261876)
  3254. o6.CFrame = CFrame.new(-44.0290871, 2.04886079, -23.006443, 0.00210499973, -0.86600101, -0.500037909, 0, 0.500038981, -0.866002917, 0.999997854, 0.00182293588, 0.00105258182)
  3255. o6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3256. o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3257. o6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3258. o6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3259. o6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3260. o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3261. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3262. o7.Parent = o1
  3263. o7.Material = Enum.Material.SmoothPlastic
  3264. o7.BrickColor = BrickColor.new("Really black")
  3265. o7.Position = Vector3.new(-44.2125015, 2.08517194, -23.0060539)
  3266. o7.Rotation = Vector3.new(-0.843723118, -89.8813095, -0.843721151)
  3267. o7.Anchored = true
  3268. o7.CanCollide = false
  3269. o7.FormFactor = Enum.FormFactor.Custom
  3270. o7.Size = Vector3.new(0.204494655, 0.0481163934, 0.288698345)
  3271. o7.CFrame = CFrame.new(-44.2125015, 2.08517194, -23.0060539, 0.00210499973, 3.09998613e-005, -0.999997854, 0, 1, 3.09999341e-005, 0.999997854, -6.52548522e-008, 0.00210499973)
  3272. o7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3273. o7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3274. o7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3275. o7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3276. o7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3277. o7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3278. o7.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3279. o8.Parent = o1
  3280. o8.Material = Enum.Material.SmoothPlastic
  3281. o8.BrickColor = BrickColor.new("Really black")
  3282. o8.Position = Vector3.new(-43.9994507, 2.02802086, -23.0065079)
  3283. o8.Rotation = Vector3.new(89.7910843, -60.0023575, 89.7587662)
  3284. o8.Anchored = true
  3285. o8.CanCollide = false
  3286. o8.FormFactor = Enum.FormFactor.Custom
  3287. o8.Size = Vector3.new(0.204494655, 0.0601454861, 0.493192971)
  3288. o8.CFrame = CFrame.new(-43.9994507, 2.02802086, -23.0065079, 0.00210499973, -0.499959946, -0.866045952, 0, 0.866047859, -0.499961078, 0.999997854, 0.00105241779, 0.00182303041)
  3289. o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3290. o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3291. o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3292. o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3293. o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3294. o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3295. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3296. o9.Parent = o1
  3297. o9.Material = Enum.Material.SmoothPlastic
  3298. o9.BrickColor = BrickColor.new("Really black")
  3299. o9.Position = Vector3.new(-43.9869766, 2.09096074, -23.0065212)
  3300. o9.Rotation = Vector3.new(90, -0.00269289524, 89.8793945)
  3301. o9.Anchored = true
  3302. o9.CanCollide = false
  3303. o9.FormFactor = Enum.FormFactor.Custom
  3304. o9.Size = Vector3.new(0.204494655, 0.144349173, 0.0481163859)
  3305. o9.CFrame = CFrame.new(-43.9869766, 2.09096074, -23.0065212, 0.00210499973, -0.999997854, -4.69998886e-005, 0, 4.69999941e-005, -1, 0.999997854, 0.00210499973, 9.89349758e-008)
  3306. o9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3307. o9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3308. o9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3309. o9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3310. o9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3311. o9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3312. o9.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3313. o10.Parent = o1
  3314. o10.Material = Enum.Material.SmoothPlastic
  3315. o10.BrickColor = BrickColor.new("Really black")
  3316. o10.Position = Vector3.new(-44.1809196, 2.12215877, -23.0061283)
  3317. o10.Rotation = Vector3.new(-0.843723118, -89.8813095, -0.843721151)
  3318. o10.Anchored = true
  3319. o10.CanCollide = false
  3320. o10.FormFactor = Enum.FormFactor.Custom
  3321. o10.Size = Vector3.new(0.204494655, 0.0258625615, 0.550331175)
  3322. o10.CFrame = CFrame.new(-44.1809196, 2.12215877, -23.0061283, 0.00210499973, 3.09998613e-005, -0.999997854, 0, 1, 3.09999341e-005, 0.999997854, -6.52548522e-008, 0.00210499973)
  3323. o10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3324. o10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3325. o10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3326. o10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3327. o10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3328. o10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3329. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3330. o11.Parent = o1
  3331. o11.Material = Enum.Material.SmoothPlastic
  3332. o11.BrickColor = BrickColor.new("Really black")
  3333. o11.Position = Vector3.new(-43.9057503, 2.14530373, -23.0066986)
  3334. o11.Rotation = Vector3.new(179.156281, 89.8813095, -179.156281)
  3335. o11.Anchored = true
  3336. o11.CanCollide = false
  3337. o11.FormFactor = Enum.FormFactor.Custom
  3338. o11.Size = Vector3.new(0.204494655, 0.0721745864, 0.132320076)
  3339. o11.CFrame = CFrame.new(-43.9057503, 2.14530373, -23.0066986, -0.00210499973, 3.09998613e-005, 0.999997854, 0, 1, -3.09999341e-005, -0.999997854, -6.52548522e-008, -0.00210499973)
  3340. o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3341. o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3342. o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3343. o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3344. o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3345. o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3346. o11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3347. o12.Parent = o11
  3348. o12.MeshType = Enum.MeshType.Wedge
  3349. o13.Parent = o1
  3350. o13.Material = Enum.Material.SmoothPlastic
  3351. o13.BrickColor = BrickColor.new("Really black")
  3352. o13.Position = Vector3.new(-43.6952477, 2.15130782, -23.0071468)
  3353. o13.Rotation = Vector3.new(-0.843723118, -89.8813095, -0.843721151)
  3354. o13.Anchored = true
  3355. o13.CanCollide = false
  3356. o13.FormFactor = Enum.FormFactor.Custom
  3357. o13.Size = Vector3.new(0.204494655, 0.0601454861, 0.288698316)
  3358. o13.CFrame = CFrame.new(-43.6952477, 2.15130782, -23.0071468, 0.00210499973, 3.09998613e-005, -0.999997854, 0, 1, 3.09999341e-005, 0.999997854, -6.52548522e-008, 0.00210499973)
  3359. o13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3360. o13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3361. o13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3362. o13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3363. o13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3364. o13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3365. o13.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3366. o14.Parent = o1
  3367. o14.Material = Enum.Material.SmoothPlastic
  3368. o14.BrickColor = BrickColor.new("Really black")
  3369. o14.Position = Vector3.new(-43.6110344, 2.10920095, -23.0073242)
  3370. o14.Rotation = Vector3.new(179.156281, 89.8813095, 0.843721151)
  3371. o14.Anchored = true
  3372. o14.CanCollide = false
  3373. o14.FormFactor = Enum.FormFactor.Custom
  3374. o14.Size = Vector3.new(0.204494655, 0.024058193, 0.024058193)
  3375. o14.CFrame = CFrame.new(-43.6110344, 2.10920095, -23.0073242, 0.00210499973, -3.09998613e-005, 0.999997854, 0, -1, -3.09999341e-005, 0.999997854, 6.52548522e-008, -0.00210499973)
  3376. o14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3377. o14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3378. o14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3379. o14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3380. o14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3381. o14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3382. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3383. o15.Parent = o14
  3384. o15.MeshType = Enum.MeshType.Wedge
  3385. o16.Parent = o1
  3386. o16.Material = Enum.Material.SmoothPlastic
  3387. o16.BrickColor = BrickColor.new("Really black")
  3388. o16.Position = Vector3.new(-43.5930023, 2.05506992, -23.0073662)
  3389. o16.Rotation = Vector3.new(179.156281, 89.8813095, 0.843721151)
  3390. o16.Anchored = true
  3391. o16.CanCollide = false
  3392. o16.FormFactor = Enum.FormFactor.Custom
  3393. o16.Size = Vector3.new(0.204494655, 0.132320076, 0.0360872932)
  3394. o16.CFrame = CFrame.new(-43.5930023, 2.05506992, -23.0073662, 0.00210499973, -3.09998613e-005, 0.999997854, 0, -1, -3.09999341e-005, 0.999997854, 6.52548522e-008, -0.00210499973)
  3395. o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3396. o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3397. o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3398. o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3399. o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3400. o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3401. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3402. o17.Parent = o16
  3403. o17.MeshType = Enum.MeshType.Wedge
  3404. o18.Parent = o1
  3405. o18.Material = Enum.Material.SmoothPlastic
  3406. o18.BrickColor = BrickColor.new("Really black")
  3407. o18.Position = Vector3.new(-43.5508919, 2.05506778, -23.0074501)
  3408. o18.Rotation = Vector3.new(-90, 0.00269289524, -89.8793945)
  3409. o18.Anchored = true
  3410. o18.CanCollide = false
  3411. o18.FormFactor = Enum.FormFactor.Custom
  3412. o18.Size = Vector3.new(0.204494655, 0.0481163934, 0.132320076)
  3413. o18.CFrame = CFrame.new(-43.5508919, 2.05506778, -23.0074501, 0.00210499973, 0.999997854, 4.69998886e-005, 0, -4.69999941e-005, 1, 0.999997854, -0.00210499973, -9.89349758e-008)
  3414. o18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3415. o18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3416. o18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3417. o18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3418. o18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3419. o18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3420. o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3421. o19.Parent = o1
  3422. o19.Material = Enum.Material.SmoothPlastic
  3423. o19.BrickColor = BrickColor.new("Really black")
  3424. o19.Position = Vector3.new(-43.5328445, 2.13926983, -23.0074863)
  3425. o19.Rotation = Vector3.new(-0.843723118, -89.8813095, -0.843721151)
  3426. o19.Anchored = true
  3427. o19.CanCollide = false
  3428. o19.FormFactor = Enum.FormFactor.Custom
  3429. o19.Size = Vector3.new(0.204494655, 0.0360872932, 0.0360872857)
  3430. o19.CFrame = CFrame.new(-43.5328445, 2.13926983, -23.0074863, 0.00210499973, 3.09998613e-005, -0.999997854, 0, 1, 3.09999341e-005, 0.999997854, -6.52548522e-008, 0.00210499973)
  3431. o19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3432. o19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3433. o19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3434. o19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3435. o19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3436. o19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3437. o19.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3438. o20.Parent = o1
  3439. o20.Material = Enum.Material.SmoothPlastic
  3440. o20.BrickColor = BrickColor.new("Really black")
  3441. o20.Position = Vector3.new(-43.5208168, 2.05506587, -23.0075073)
  3442. o20.Rotation = Vector3.new(-90, 0.00269289524, -89.8793945)
  3443. o20.Anchored = true
  3444. o20.CanCollide = false
  3445. o20.FormFactor = Enum.FormFactor.Custom
  3446. o20.Size = Vector3.new(0.204494655, 0.0120290974, 0.132320076)
  3447. o20.CFrame = CFrame.new(-43.5208168, 2.05506587, -23.0075073, 0.00210499973, 0.999997854, 4.69998886e-005, 0, -4.69999941e-005, 1, 0.999997854, -0.00210499973, -9.89349758e-008)
  3448. o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3449. o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3450. o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3451. o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3452. o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3453. o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3454. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3455. o21.Parent = o20
  3456. o21.MeshType = Enum.MeshType.Wedge
  3457. o22.Parent = o1
  3458. o22.Material = Enum.Material.SmoothPlastic
  3459. o22.BrickColor = BrickColor.new("Really black")
  3460. o22.Position = Vector3.new(-43.5328407, 2.16934395, -23.0074863)
  3461. o22.Rotation = Vector3.new(-0.843723118, -89.8813095, -0.843721151)
  3462. o22.Anchored = true
  3463. o22.CanCollide = false
  3464. o22.FormFactor = Enum.FormFactor.Custom
  3465. o22.Size = Vector3.new(0.204494655, 0.0240581967, 0.0360872857)
  3466. o22.CFrame = CFrame.new(-43.5328407, 2.16934395, -23.0074863, 0.00210499973, 3.09998613e-005, -0.999997854, 0, 1, 3.09999341e-005, 0.999997854, -6.52548522e-008, 0.00210499973)
  3467. o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3468. o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3469. o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3470. o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3471. o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3472. o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3473. o22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3474. o23.Parent = o22
  3475. o23.MeshType = Enum.MeshType.Wedge
  3476. o24.Parent = o1
  3477. o24.Material = Enum.Material.SmoothPlastic
  3478. o24.BrickColor = BrickColor.new("Really black")
  3479. o24.Position = Vector3.new(-43.9694099, 1.99636579, -23.0065041)
  3480. o24.Rotation = Vector3.new(89.7911301, -59.9968758, 89.758812)
  3481. o24.Anchored = true
  3482. o24.CanCollide = false
  3483. o24.FormFactor = Enum.FormFactor.Custom
  3484. o24.Size = Vector3.new(0.156378269, 0.0721745938, 0.470939159)
  3485. o24.CFrame = CFrame.new(-43.9694099, 1.99636579, -23.0065041, 0.00210499973, -0.500042975, -0.865998089, 0, 0.865999997, -0.500044107, 0.999997854, 0.00105259253, 0.00182292971)
  3486. o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3487. o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3488. o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3489. o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3490. o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3491. o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3492. o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3493. o25.Parent = o1
  3494. o25.Material = Enum.Material.SmoothPlastic
  3495. o25.BrickColor = BrickColor.new("Really black")
  3496. o25.Position = Vector3.new(-44.3612099, 2.10910392, -23.0057392)
  3497. o25.Rotation = Vector3.new(90.0916443, 37.2289009, 89.848526)
  3498. o25.Anchored = true
  3499. o25.CanCollide = false
  3500. o25.FormFactor = Enum.FormFactor.Custom
  3501. o25.Size = Vector3.new(0.204494596, 0.0601454675, 0.0601454675)
  3502. o25.CFrame = CFrame.new(-44.3612099, 2.10910392, -23.0057392, 0.00210499973, -0.79622215, 0.605000794, 0, -0.605002105, -0.796223879, 0.999997854, 0.00167605095, -0.00127352902)
  3503. o25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3504. o25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3505. o25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3506. o25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3507. o25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3508. o25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3509. o25.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3510. elseif Grip == "VERTGRIP" then
  3511. o2 = Instance.new("Part")
  3512. o3 = Instance.new("CylinderMesh")
  3513. o4 = Instance.new("Part")
  3514. o5 = Instance.new("CylinderMesh")
  3515. o2.Parent = o1
  3516. o2.Material = Enum.Material.SmoothPlastic
  3517. o2.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3518. o2.Position = Vector3.new(-43.8131485, 1.94014311, -23.021431)
  3519. o2.Anchored = true
  3520. o2.FormFactor = Enum.FormFactor.Symmetric
  3521. o2.Size = Vector3.new(1, 1, 1)
  3522. o2.CFrame = CFrame.new(-43.8131485, 1.94014311, -23.021431, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3523. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3524. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3525. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3526. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3527. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3528. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3529. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3530. o3.Parent = o2
  3531. o3.Scale = Vector3.new(0.181818187, 0.636363626, 0.227272734)
  3532. o4.Parent = o1
  3533. o4.Material = Enum.Material.SmoothPlastic
  3534. o4.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3535. o4.Position = Vector3.new(-43.8131485, 1.61286783, -23.021431)
  3536. o4.Anchored = true
  3537. o4.FormFactor = Enum.FormFactor.Symmetric
  3538. o4.Size = Vector3.new(1, 1, 1)
  3539. o4.CFrame = CFrame.new(-43.8131485, 1.61286783, -23.021431, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3540. o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3541. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3542. o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3543. o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3544. o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3545. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3546. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3547. o5.Parent = o4
  3548. o5.Scale = Vector3.new(0.272727281, 0.0909090936, 0.227272734)
  3549. else
  3550. end
  3551. if FlashLight == true then
  3552. o2 = Instance.new("Part")
  3553. o3 = Instance.new("SpotLight")
  3554. o4 = Instance.new("Part")
  3555. o2.Name = "LIGHT"
  3556. o2.Parent = o1
  3557. o2.Material = Enum.Material.SmoothPlastic
  3558. o2.BrickColor = BrickColor.new("Deep orange")
  3559. o2.Position = Vector3.new(-43.500782, 2.23753619, -22.7379551)
  3560. o2.Shape = Enum.PartType.Cylinder
  3561. o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3562. o2.CFrame = CFrame.new(-43.500782, 2.23753619, -22.7379551, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3563. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3564. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3565. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3566. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3567. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3568. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3569. o2.Color = Color3.new(1, 0.686275, 0)
  3570. o3.Name = "LIGHT"
  3571. o3.Brightness = 3
  3572. o3.Parent = o2
  3573. o3.Face = Enum.NormalId.Right
  3574. o4.Parent = o1
  3575. o4.Material = Enum.Material.SmoothPlastic
  3576. o4.BrickColor = BrickColor.new("Really black")
  3577. o4.Position = Vector3.new(-43.8711853, 2.24708676, -22.7379551)
  3578. o4.Size = Vector3.new(0.930000186, 0.200000003, 0.200000003)
  3579. o4.CFrame = CFrame.new(-43.8711853, 2.24708676, -22.7379551, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3580. o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3581. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3582. o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3583. o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3584. o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3585. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3586. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3587.  
  3588. end
  3589. if Sight == "HOLOSIGHT" then
  3590. o2 = Instance.new("Part")
  3591. o3 = Instance.new("BlockMesh")
  3592. o4 = Instance.new("Part")
  3593. o5 = Instance.new("SpecialMesh")
  3594. o6 = Instance.new("Part")
  3595. o7 = Instance.new("BlockMesh")
  3596. o8 = Instance.new("Part")
  3597. o9 = Instance.new("SpecialMesh")
  3598. o10 = Instance.new("Part")
  3599. o11 = Instance.new("BlockMesh")
  3600. o12 = Instance.new("Part")
  3601. o13 = Instance.new("Decal")
  3602. o14 = Instance.new("BlockMesh")
  3603. o15 = Instance.new("Part")
  3604. o16 = Instance.new("BlockMesh")
  3605. o17 = Instance.new("Part")
  3606. o18 = Instance.new("SpecialMesh")
  3607. o19 = Instance.new("Part")
  3608. o20 = Instance.new("BlockMesh")
  3609. o21 = Instance.new("Part")
  3610. o22 = Instance.new("SpecialMesh")
  3611. o23 = Instance.new("Part")
  3612. o24 = Instance.new("SpecialMesh")
  3613. o25 = Instance.new("Part")
  3614. o26 = Instance.new("SpecialMesh")
  3615. o27 = Instance.new("Part")
  3616. o28 = Instance.new("SpecialMesh")
  3617. o29 = Instance.new("Part")
  3618. o30 = Instance.new("BlockMesh")
  3619. o31 = Instance.new("Part")
  3620. o32 = Instance.new("BlockMesh")
  3621. o33 = Instance.new("Part")
  3622. o34 = Instance.new("SpecialMesh")
  3623. o35 = Instance.new("Part")
  3624. o36 = Instance.new("CylinderMesh")
  3625. o37 = Instance.new("Part")
  3626. o38 = Instance.new("Decal")
  3627. o39 = Instance.new("CylinderMesh")
  3628. o40 = Instance.new("Part")
  3629. o41 = Instance.new("BlockMesh")
  3630. o42 = Instance.new("Part")
  3631. o43 = Instance.new("SpecialMesh")
  3632. o44 = Instance.new("Part")
  3633. o45 = Instance.new("SpecialMesh")
  3634. o46 = Instance.new("Part")
  3635. o47 = Instance.new("Decal")
  3636. o48 = Instance.new("BlockMesh")
  3637. o49 = Instance.new("Part")
  3638. o50 = Instance.new("SpecialMesh")
  3639. o51 = Instance.new("Part")
  3640. o52 = Instance.new("BlockMesh")
  3641. o53 = Instance.new("Part")
  3642. o54 = Instance.new("SpecialMesh")
  3643. o55 = Instance.new("Part")
  3644. o56 = Instance.new("BlockMesh")
  3645. o57 = Instance.new("Part")
  3646. o58 = Instance.new("SpecialMesh")
  3647. o59 = Instance.new("Part")
  3648. o60 = Instance.new("BlockMesh")
  3649. o61 = Instance.new("Part")
  3650. o62 = Instance.new("Decal")
  3651. o63 = Instance.new("BlockMesh")
  3652. o64 = Instance.new("Part")
  3653. o65 = Instance.new("BlockMesh")
  3654. o66 = Instance.new("Part")
  3655. o67 = Instance.new("BlockMesh")
  3656. o68 = Instance.new("Part")
  3657. o69 = Instance.new("BlockMesh")
  3658. o70 = Instance.new("Part")
  3659. o71 = Instance.new("SpecialMesh")
  3660. o72 = Instance.new("Part")
  3661. o73 = Instance.new("SpecialMesh")
  3662. o74 = Instance.new("Part")
  3663. o75 = Instance.new("Decal")
  3664. o76 = Instance.new("BlockMesh")
  3665. o77 = Instance.new("Part")
  3666. o78 = Instance.new("BlockMesh")
  3667. o79 = Instance.new("Part")
  3668. o80 = Instance.new("BlockMesh")
  3669. o81 = Instance.new("Part")
  3670. o82 = Instance.new("BlockMesh")
  3671. o83 = Instance.new("Part")
  3672. o84 = Instance.new("SpecialMesh")
  3673. o85 = Instance.new("Part")
  3674. o86 = Instance.new("SpecialMesh")
  3675. o87 = Instance.new("Part")
  3676. o88 = Instance.new("BlockMesh")
  3677. o89 = Instance.new("Part")
  3678. o90 = Instance.new("BlockMesh")
  3679. o91 = Instance.new("Part")
  3680. o92 = Instance.new("SpecialMesh")
  3681. o93 = Instance.new("Part")
  3682. o94 = Instance.new("BlockMesh")
  3683. o95 = Instance.new("Part")
  3684. o96 = Instance.new("SpecialMesh")
  3685. o97 = Instance.new("Part")
  3686. o98 = Instance.new("BlockMesh")
  3687. o99 = Instance.new("Part")
  3688. o100 = Instance.new("CylinderMesh")
  3689. o101 = Instance.new("Part")
  3690. o102 = Instance.new("CylinderMesh")
  3691. o103 = Instance.new("Part")
  3692. o104 = Instance.new("BlockMesh")
  3693. o105 = Instance.new("Part")
  3694. o106 = Instance.new("BlockMesh")
  3695. o107 = Instance.new("Part")
  3696. o108 = Instance.new("SpecialMesh")
  3697. o109 = Instance.new("Part")
  3698. o110 = Instance.new("BlockMesh")
  3699. o111 = Instance.new("Part")
  3700. o112 = Instance.new("SpecialMesh")
  3701. o113 = Instance.new("Part")
  3702. o114 = Instance.new("SpecialMesh")
  3703. o115 = Instance.new("Part")
  3704. o116 = Instance.new("SpecialMesh")
  3705. o117 = Instance.new("Part")
  3706. o118 = Instance.new("BlockMesh")
  3707. o119 = Instance.new("Part")
  3708. o120 = Instance.new("Decal")
  3709. o121 = Instance.new("BlockMesh")
  3710. o122 = Instance.new("Part")
  3711. o123 = Instance.new("BlockMesh")
  3712. o124 = Instance.new("Part")
  3713. o125 = Instance.new("SpecialMesh")
  3714. o126 = Instance.new("Part")
  3715. o127 = Instance.new("SpecialMesh")
  3716. o128 = Instance.new("Part")
  3717. o129 = Instance.new("SpecialMesh")
  3718. o130 = Instance.new("Part")
  3719. o131 = Instance.new("SpecialMesh")
  3720. o132 = Instance.new("Part")
  3721. o133 = Instance.new("SpecialMesh")
  3722. o134 = Instance.new("Part")
  3723. o135 = Instance.new("SpecialMesh")
  3724. o136 = Instance.new("Part")
  3725. o137 = Instance.new("BlockMesh")
  3726. o138 = Instance.new("Part")
  3727. o139 = Instance.new("SpecialMesh")
  3728. o140 = Instance.new("Part")
  3729. o141 = Instance.new("SpecialMesh")
  3730. o142 = Instance.new("Part")
  3731. o143 = Instance.new("SpecialMesh")
  3732. o144 = Instance.new("Part")
  3733. o145 = Instance.new("SpecialMesh")
  3734. o146 = Instance.new("Part")
  3735. o147 = Instance.new("BlockMesh")
  3736. o2.Parent = o1
  3737. o2.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3738. o2.Position = Vector3.new(-45.2369041, 2.81570745, -23.0101967)
  3739. o2.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3740. o2.Anchored = true
  3741. o2.FormFactor = Enum.FormFactor.Custom
  3742. o2.Size = Vector3.new(0.200000003, 0.200000003, 0.223999992)
  3743. o2.CFrame = CFrame.new(-45.2369041, 2.81570745, -23.0101967, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  3744. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3745. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3746. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3747. o3.Parent = o2
  3748. o3.Scale = Vector3.new(0.879999995, 0.0960000008, 1)
  3749. o4.Parent = o1
  3750. o4.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3751. o4.Position = Vector3.new(-45.3379478, 2.67370844, -23.1152229)
  3752. o4.Rotation = Vector3.new(-0.00200535241, 90, 0)
  3753. o4.Anchored = true
  3754. o4.FormFactor = Enum.FormFactor.Custom
  3755. o4.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3756. o4.CFrame = CFrame.new(-45.3379478, 2.67370844, -23.1152229, -3.19999999e-005, -3.50000009e-005, 1, -3.50000009e-005, 1, 3.49988804e-005, -1, -3.49988804e-005, -3.20012259e-005)
  3757. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3758. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3759. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3760. o5.Parent = o4
  3761. o5.Scale = Vector3.new(0.0800000057, 0.400000095, 0.159999952)
  3762. o5.MeshType = Enum.MeshType.Wedge
  3763. o6.Parent = o1
  3764. o6.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3765. o6.Position = Vector3.new(-45.242939, 2.70176029, -22.9381714)
  3766. o6.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3767. o6.Anchored = true
  3768. o6.FormFactor = Enum.FormFactor.Custom
  3769. o6.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3770. o6.CFrame = CFrame.new(-45.242939, 2.70176029, -22.9381714, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  3771. o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3772. o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3773. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3774. o7.Parent = o6
  3775. o7.Scale = Vector3.new(0.640000045, 0.672000051, 0.0800000057)
  3776. o8.Parent = o1
  3777. o8.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3778. o8.Position = Vector3.new(-45.337944, 2.8157053, -23.0102005)
  3779. o8.Rotation = Vector3.new(-0.00200535241, 90, 0)
  3780. o8.Anchored = true
  3781. o8.FormFactor = Enum.FormFactor.Custom
  3782. o8.Size = Vector3.new(0.223999962, 0.200000003, 0.200000003)
  3783. o8.CFrame = CFrame.new(-45.337944, 2.8157053, -23.0102005, -3.19999999e-005, -3.50000009e-005, 1, -3.50000009e-005, 1, 3.49988804e-005, -1, -3.49988804e-005, -3.20012259e-005)
  3784. o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3785. o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3786. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3787. o9.Parent = o8
  3788. o9.Scale = Vector3.new(1, 0.0960001424, 0.159999952)
  3789. o9.MeshType = Enum.MeshType.Wedge
  3790. o10.Parent = o1
  3791. o10.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3792. o10.Position = Vector3.new(-45.2519188, 2.77775049, -23.0121861)
  3793. o10.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3794. o10.Anchored = true
  3795. o10.FormFactor = Enum.FormFactor.Custom
  3796. o10.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3797. o10.CFrame = CFrame.new(-45.2519188, 2.77775049, -23.0121861, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  3798. o10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3799. o10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3800. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3801. o11.Parent = o10
  3802. o11.Scale = Vector3.new(0.719999969, 0.0960000008, 0.799999952)
  3803. o12.Parent = o1
  3804. o12.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3805. o12.Position = Vector3.new(-45.3429451, 2.57272339, -22.9691792)
  3806. o12.Rotation = Vector3.new(89.9979935, 0.00131786719, 89.9981689)
  3807. o12.Anchored = true
  3808. o12.FormFactor = Enum.FormFactor.Custom
  3809. o12.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3810. o12.CFrame = CFrame.new(-45.3429451, 2.57272339, -22.9691792, 3.19999999e-005, -1, 2.3001121e-005, 3.50000009e-005, -2.30000005e-005, -1, 1, 3.20008039e-005, 3.49992661e-005)
  3811. o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3812. o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3813. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3814. o13.Parent = o12
  3815. o13.Texture = "http://www.roblox.com/asset/?id=46738391"
  3816. o13.Face = Enum.NormalId.Top
  3817. o14.Parent = o12
  3818. o14.Scale = Vector3.new(0.239999995, 0.0400000028, 0.160000011)
  3819. o15.Parent = o1
  3820. o15.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3821. o15.Position = Vector3.new(-45.2499352, 2.79672241, -22.9061947)
  3822. o15.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3823. o15.Anchored = true
  3824. o15.FormFactor = Enum.FormFactor.Custom
  3825. o15.Size = Vector3.new(0.207999989, 0.200000003, 0.200000003)
  3826. o15.CFrame = CFrame.new(-45.2499352, 2.79672241, -22.9061947, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  3827. o15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3828. o15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3829. o15.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3830. o16.Parent = o15
  3831. o16.Scale = Vector3.new(1, 0.0960000008, 0.0800000057)
  3832. o17.Parent = o1
  3833. o17.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3834. o17.Position = Vector3.new(-45.3389473, 2.67370629, -22.9061985)
  3835. o17.Rotation = Vector3.new(-0.00200535241, 90, 0)
  3836. o17.Anchored = true
  3837. o17.FormFactor = Enum.FormFactor.Custom
  3838. o17.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3839. o17.CFrame = CFrame.new(-45.3389473, 2.67370629, -22.9061985, -3.19999999e-005, -3.50000009e-005, 1, -3.50000009e-005, 1, 3.49988804e-005, -1, -3.49988804e-005, -3.20012259e-005)
  3840. o17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3841. o17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3842. o17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3843. o18.Parent = o17
  3844. o18.Scale = Vector3.new(0.0800000057, 0.400000095, 0.159999952)
  3845. o18.MeshType = Enum.MeshType.Wedge
  3846. o19.Parent = o1
  3847. o19.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3848. o19.Position = Vector3.new(-45.2439537, 2.7007184, -23.0821514)
  3849. o19.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3850. o19.Anchored = true
  3851. o19.FormFactor = Enum.FormFactor.Custom
  3852. o19.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3853. o19.CFrame = CFrame.new(-45.2439537, 2.7007184, -23.0821514, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  3854. o19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3855. o19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3856. o19.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3857. o20.Parent = o19
  3858. o20.Scale = Vector3.new(0.640000045, 0.672000051, 0.0800000057)
  3859. o21.Parent = o1
  3860. o21.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3861. o21.Position = Vector3.new(-45.0039558, 2.60572433, -23.1142025)
  3862. o21.Rotation = Vector3.new(-0.00200535241, -90, 0)
  3863. o21.Anchored = true
  3864. o21.FormFactor = Enum.FormFactor.Custom
  3865. o21.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3866. o21.CFrame = CFrame.new(-45.0039558, 2.60572433, -23.1142025, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  3867. o21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3868. o21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3869. o21.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3870. o22.Parent = o21
  3871. o22.Scale = Vector3.new(0.0800000057, 0.671999872, 0.639999866)
  3872. o22.MeshType = Enum.MeshType.Wedge
  3873. o23.Parent = o1
  3874. o23.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3875. o23.Position = Vector3.new(-45.1629601, 2.71073437, -23.0841694)
  3876. o23.Rotation = Vector3.new(-0.00200535241, -90, 0)
  3877. o23.Anchored = true
  3878. o23.FormFactor = Enum.FormFactor.Custom
  3879. o23.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3880. o23.CFrame = CFrame.new(-45.1629601, 2.71073437, -23.0841694, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  3881. o23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3882. o23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3883. o23.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3884. o24.Parent = o23
  3885. o24.Scale = Vector3.new(0.0800000057, 0.768000007, 0.159999952)
  3886. o24.MeshType = Enum.MeshType.Wedge
  3887. o25.Parent = o1
  3888. o25.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3889. o25.Position = Vector3.new(-45.1219406, 2.80674434, -23.0111694)
  3890. o25.Rotation = Vector3.new(-0.00200535241, -90, 0)
  3891. o25.Anchored = true
  3892. o25.FormFactor = Enum.FormFactor.Custom
  3893. o25.Size = Vector3.new(0.223999962, 0.200000003, 0.200000003)
  3894. o25.CFrame = CFrame.new(-45.1219406, 2.80674434, -23.0111694, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  3895. o25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3896. o25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3897. o25.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3898. o26.Parent = o25
  3899. o26.Scale = Vector3.new(1, 0.192000151, 0.239999965)
  3900. o26.MeshType = Enum.MeshType.Wedge
  3901. o27.Parent = o1
  3902. o27.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3903. o27.Position = Vector3.new(-45.3229294, 2.67670345, -23.0821533)
  3904. o27.Rotation = Vector3.new(-0.00200535241, 90, 0)
  3905. o27.Anchored = true
  3906. o27.FormFactor = Enum.FormFactor.Custom
  3907. o27.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3908. o27.CFrame = CFrame.new(-45.3229294, 2.67670345, -23.0821533, -3.19999999e-005, -3.50000009e-005, 1, -3.50000009e-005, 1, 3.49988804e-005, -1, -3.49988804e-005, -3.20012259e-005)
  3909. o27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3910. o27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3911. o27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3912. o28.Parent = o27
  3913. o28.Scale = Vector3.new(0.0800000057, 0.256000072, 0.159999952)
  3914. o28.MeshType = Enum.MeshType.Wedge
  3915. o29.Parent = o1
  3916. o29.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3917. o29.Position = Vector3.new(-45.242939, 2.59570932, -22.9381714)
  3918. o29.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3919. o29.Anchored = true
  3920. o29.FormFactor = Enum.FormFactor.Custom
  3921. o29.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3922. o29.CFrame = CFrame.new(-45.242939, 2.59570932, -22.9381714, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  3923. o29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3924. o29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3925. o29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3926. o30.Parent = o29
  3927. o30.Scale = Vector3.new(0.959999979, 0.384000003, 0.0800000057)
  3928. o31.Parent = o1
  3929. o31.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3930. o31.Position = Vector3.new(-45.2099571, 2.66275644, -22.9071884)
  3931. o31.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3932. o31.Anchored = true
  3933. o31.FormFactor = Enum.FormFactor.Custom
  3934. o31.Size = Vector3.new(0.223999992, 0.249600008, 0.200000003)
  3935. o31.CFrame = CFrame.new(-45.2099571, 2.66275644, -22.9071884, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  3936. o31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3937. o31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3938. o31.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3939. o32.Parent = o31
  3940. o32.Scale = Vector3.new(1, 1, 0.0800000057)
  3941. o33.Parent = o1
  3942. o33.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3943. o33.Position = Vector3.new(-45.3139572, 2.73575234, -22.9401321)
  3944. o33.Rotation = Vector3.new(179.998001, 90, 0)
  3945. o33.Anchored = true
  3946. o33.FormFactor = Enum.FormFactor.Custom
  3947. o33.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3948. o33.CFrame = CFrame.new(-45.3139572, 2.73575234, -22.9401321, 3.19999999e-005, 3.50000009e-005, 1, 3.50000009e-005, -1, 3.49988804e-005, 1, 3.49988804e-005, -3.20012259e-005)
  3949. o33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3950. o33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3951. o33.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3952. o34.Parent = o33
  3953. o34.Scale = Vector3.new(0.0800000057, 0.320000082, 0.0799999312)
  3954. o34.MeshType = Enum.MeshType.Wedge
  3955. o35.Parent = o1
  3956. o35.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3957. o35.Position = Vector3.new(-45.2509651, 2.59371829, -22.8981628)
  3958. o35.Rotation = Vector3.new(-90.0020065, -0.00131786917, -179.998108)
  3959. o35.Anchored = true
  3960. o35.FormFactor = Enum.FormFactor.Custom
  3961. o35.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3962. o35.CFrame = CFrame.new(-45.2509651, 2.59371829, -22.8981628, -1, 3.29991963e-005, -2.30011556e-005, -2.30000005e-005, 3.50000009e-005, 1, 3.30000003e-005, 1, -3.49992406e-005)
  3963. o35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3964. o35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3965. o35.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3966. o36.Parent = o35
  3967. o36.Scale = Vector3.new(0.239999995, 0.0400000028, 0.239999995)
  3968. o37.Parent = o1
  3969. o37.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3970. o37.Position = Vector3.new(-45.3419685, 2.61172843, -23.0101986)
  3971. o37.Rotation = Vector3.new(-90.0020065, -0.00131786719, 90.0018311)
  3972. o37.Anchored = true
  3973. o37.FormFactor = Enum.FormFactor.Custom
  3974. o37.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3975. o37.CFrame = CFrame.new(-45.3419685, 2.61172843, -23.0101986, -3.19999999e-005, -1, -2.3001121e-005, -3.50000009e-005, -2.30000005e-005, 1, -1, 3.20008039e-005, -3.49992661e-005)
  3976. o37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3977. o37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3978. o37.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3979. o38.Parent = o37
  3980. o38.Texture = "http://www.roblox.com/asset/?id=46738405"
  3981. o38.Face = Enum.NormalId.Top
  3982. o39.Parent = o37
  3983. o39.Scale = Vector3.new(0.192000002, 0.0400000028, 0.160000011)
  3984. o40.Parent = o1
  3985. o40.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3986. o40.Position = Vector3.new(-45.31493, 2.59570527, -23.0101986)
  3987. o40.Rotation = Vector3.new(-0.00200535241, -90, 0)
  3988. o40.Anchored = true
  3989. o40.FormFactor = Enum.FormFactor.Custom
  3990. o40.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3991. o40.CFrame = CFrame.new(-45.31493, 2.59570527, -23.0101986, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  3992. o40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3993. o40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3994. o40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3995. o41.Parent = o40
  3996. o41.Scale = Vector3.new(0.640000045, 0.384000003, 0.239999995)
  3997. o42.Parent = o1
  3998. o42.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3999. o42.Position = Vector3.new(-45.313961, 2.7357533, -23.0831966)
  4000. o42.Rotation = Vector3.new(179.998001, 90, 0)
  4001. o42.Anchored = true
  4002. o42.FormFactor = Enum.FormFactor.Custom
  4003. o42.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4004. o42.CFrame = CFrame.new(-45.313961, 2.7357533, -23.0831966, 3.19999999e-005, 3.50000009e-005, 1, 3.50000009e-005, -1, 3.49988804e-005, 1, 3.49988804e-005, -3.20012259e-005)
  4005. o42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4006. o42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4007. o42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4008. o43.Parent = o42
  4009. o43.Scale = Vector3.new(0.0800000057, 0.320000082, 0.0799999312)
  4010. o43.MeshType = Enum.MeshType.Wedge
  4011. o44.Parent = o1
  4012. o44.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4013. o44.Position = Vector3.new(-45.0839424, 2.7297163, -23.1152077)
  4014. o44.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4015. o44.Anchored = true
  4016. o44.FormFactor = Enum.FormFactor.Custom
  4017. o44.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4018. o44.CFrame = CFrame.new(-45.0839424, 2.7297163, -23.1152077, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  4019. o44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4020. o44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4021. o44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4022. o45.Parent = o44
  4023. o45.Scale = Vector3.new(0.0800000057, 0.575999975, 0.159999952)
  4024. o45.MeshType = Enum.MeshType.Wedge
  4025. o46.Parent = o1
  4026. o46.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4027. o46.Position = Vector3.new(-45.3429413, 2.57272434, -23.0491276)
  4028. o46.Rotation = Vector3.new(-90.0020065, -0.00131786719, 90.0018311)
  4029. o46.Anchored = true
  4030. o46.FormFactor = Enum.FormFactor.Custom
  4031. o46.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4032. o46.CFrame = CFrame.new(-45.3429413, 2.57272434, -23.0491276, -3.19999999e-005, -1, -2.3001121e-005, -3.50000009e-005, -2.30000005e-005, 1, -1, 3.20008039e-005, -3.49992661e-005)
  4033. o46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4034. o46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4035. o46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4036. o47.Parent = o46
  4037. o47.Texture = "http://www.roblox.com/asset/?id=46738391"
  4038. o47.Face = Enum.NormalId.Top
  4039. o48.Parent = o46
  4040. o48.Scale = Vector3.new(0.239999995, 0.0400000028, 0.160000011)
  4041. o49.Parent = o1
  4042. o49.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4043. o49.Position = Vector3.new(-45.3619232, 2.58566928, -23.1142006)
  4044. o49.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4045. o49.Anchored = true
  4046. o49.FormFactor = Enum.FormFactor.Custom
  4047. o49.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4048. o49.CFrame = CFrame.new(-45.3619232, 2.58566928, -23.1142006, -3.19999999e-005, -3.50000009e-005, 1, -3.50000009e-005, 1, 3.49988804e-005, -1, -3.49988804e-005, -3.20012259e-005)
  4049. o49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4050. o49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4051. o49.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4052. o50.Parent = o49
  4053. o50.Scale = Vector3.new(0.0800000057, 0.479999989, 0.0799999312)
  4054. o50.MeshType = Enum.MeshType.Wedge
  4055. o51.Parent = o1
  4056. o51.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4057. o51.Position = Vector3.new(-45.249939, 2.79672432, -23.1142063)
  4058. o51.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  4059. o51.Anchored = true
  4060. o51.FormFactor = Enum.FormFactor.Custom
  4061. o51.Size = Vector3.new(0.207999989, 0.200000003, 0.200000003)
  4062. o51.CFrame = CFrame.new(-45.249939, 2.79672432, -23.1142063, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  4063. o51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4064. o51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4065. o51.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4066. o52.Parent = o51
  4067. o52.Scale = Vector3.new(1, 0.0960000008, 0.0800000057)
  4068. o53.Parent = o1
  4069. o53.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4070. o53.Position = Vector3.new(-45.3619232, 2.58566928, -22.9031391)
  4071. o53.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4072. o53.Anchored = true
  4073. o53.FormFactor = Enum.FormFactor.Custom
  4074. o53.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4075. o53.CFrame = CFrame.new(-45.3619232, 2.58566928, -22.9031391, -3.19999999e-005, -3.50000009e-005, 1, -3.50000009e-005, 1, 3.49988804e-005, -1, -3.49988804e-005, -3.20012259e-005)
  4076. o53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4077. o53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4078. o53.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4079. o54.Parent = o53
  4080. o54.Scale = Vector3.new(0.0800000057, 0.479999989, 0.0799999312)
  4081. o54.MeshType = Enum.MeshType.Wedge
  4082. o55.Parent = o1
  4083. o55.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4084. o55.Transparency = 0.80000001192093
  4085. o55.Position = Vector3.new(-45.2039452, 2.7007184, -23.0101948)
  4086. o55.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4087. o55.Anchored = true
  4088. o55.FormFactor = Enum.FormFactor.Custom
  4089. o55.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4090. o55.CFrame = CFrame.new(-45.2039452, 2.7007184, -23.0101948, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  4091. o55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4092. o55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4093. o55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4094. o56.Parent = o55
  4095. o56.Scale = Vector3.new(0.640000045, 0.672000051, 0.0800000057)
  4096. o57.Parent = o1
  4097. o57.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4098. o57.Position = Vector3.new(-45.0019417, 2.6047473, -22.9072094)
  4099. o57.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4100. o57.Anchored = true
  4101. o57.FormFactor = Enum.FormFactor.Custom
  4102. o57.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4103. o57.CFrame = CFrame.new(-45.0019417, 2.6047473, -22.9072094, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  4104. o57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4105. o57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4106. o57.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4107. o58.Parent = o57
  4108. o58.Scale = Vector3.new(0.0800000057, 0.671999872, 0.639999866)
  4109. o58.MeshType = Enum.MeshType.Wedge
  4110. o59.Parent = o1
  4111. o59.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4112. o59.Position = Vector3.new(-45.3379364, 2.58567333, -23.1152058)
  4113. o59.Rotation = Vector3.new(-0.00143243792, 0.00189072778, 0.00131785031)
  4114. o59.Anchored = true
  4115. o59.FormFactor = Enum.FormFactor.Custom
  4116. o59.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4117. o59.CFrame = CFrame.new(-45.3379364, 2.58567333, -23.1152058, 1, -2.30008263e-005, 3.29994255e-005, 2.30000005e-005, 1, 2.50007579e-005, -3.30000003e-005, -2.49999994e-005, 1)
  4118. o59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4119. o59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4120. o59.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4121. o60.Parent = o59
  4122. o60.Scale = Vector3.new(0.160000011, 0.479999989, 0.0800000057)
  4123. o61.Parent = o1
  4124. o61.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4125. o61.Transparency = 1
  4126. o61.Position = Vector3.new(-45.2019577, 2.60175633, -23.125206)
  4127. o61.Rotation = Vector3.new(-90.0020065, -0.00131786917, 0.00189071475)
  4128. o61.Anchored = true
  4129. o61.FormFactor = Enum.FormFactor.Custom
  4130. o61.Size = Vector3.new(0.30399999, 0.200000003, 0.200000003)
  4131. o61.CFrame = CFrame.new(-45.2019577, 2.60175633, -23.125206, 1, -3.29991963e-005, -2.30011556e-005, 2.30000005e-005, -3.50000009e-005, 1, -3.30000003e-005, -1, -3.49992406e-005)
  4132. o61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4133. o61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4134. o61.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4135. o62.Parent = o61
  4136. o62.Texture = "http://www.roblox.com/asset/?id=46737426"
  4137. o62.Face = Enum.NormalId.Top
  4138. o63.Parent = o61
  4139. o63.Scale = Vector3.new(1, 0.0400000028, 0.160000011)
  4140. o64.Parent = o1
  4141. o64.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4142. o64.Position = Vector3.new(-45.08395, 2.60474443, -22.9062023)
  4143. o64.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  4144. o64.Anchored = true
  4145. o64.FormFactor = Enum.FormFactor.Custom
  4146. o64.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4147. o64.CFrame = CFrame.new(-45.08395, 2.60474443, -22.9062023, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  4148. o64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4149. o64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4150. o64.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4151. o65.Parent = o64
  4152. o65.Scale = Vector3.new(0.160000011, 0.672000051, 0.0800000057)
  4153. o66.Parent = o1
  4154. o66.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4155. o66.Position = Vector3.new(-45.0839386, 2.6047473, -23.1152096)
  4156. o66.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  4157. o66.Anchored = true
  4158. o66.FormFactor = Enum.FormFactor.Custom
  4159. o66.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4160. o66.CFrame = CFrame.new(-45.0839386, 2.6047473, -23.1152096, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  4161. o66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4162. o66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4163. o66.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4164. o67.Parent = o66
  4165. o67.Scale = Vector3.new(0.160000011, 0.672000051, 0.0800000057)
  4166. o68.Parent = o1
  4167. o68.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4168. o68.Position = Vector3.new(-45.3389435, 2.58566928, -22.9061947)
  4169. o68.Rotation = Vector3.new(-0.00143243792, 0.00189072778, 0.00131785031)
  4170. o68.Anchored = true
  4171. o68.FormFactor = Enum.FormFactor.Custom
  4172. o68.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4173. o68.CFrame = CFrame.new(-45.3389435, 2.58566928, -22.9061947, 1, -2.30008263e-005, 3.29994255e-005, 2.30000005e-005, 1, 2.50007579e-005, -3.30000003e-005, -2.49999994e-005, 1)
  4174. o68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4175. o68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4176. o68.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4177. o69.Parent = o68
  4178. o69.Scale = Vector3.new(0.160000011, 0.479999989, 0.0800000057)
  4179. o70.Parent = o1
  4180. o70.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4181. o70.Position = Vector3.new(-45.08395, 2.72971439, -22.9061928)
  4182. o70.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4183. o70.Anchored = true
  4184. o70.FormFactor = Enum.FormFactor.Custom
  4185. o70.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4186. o70.CFrame = CFrame.new(-45.08395, 2.72971439, -22.9061928, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  4187. o70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4188. o70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4189. o70.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4190. o71.Parent = o70
  4191. o71.Scale = Vector3.new(0.0800000057, 0.575999975, 0.159999952)
  4192. o71.MeshType = Enum.MeshType.Wedge
  4193. o72.Parent = o1
  4194. o72.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4195. o72.Position = Vector3.new(-44.9459419, 2.62071228, -23.0111694)
  4196. o72.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4197. o72.Anchored = true
  4198. o72.FormFactor = Enum.FormFactor.Custom
  4199. o72.Size = Vector3.new(0.200000003, 0.200000003, 0.447999984)
  4200. o72.CFrame = CFrame.new(-44.9459419, 2.62071228, -23.0111694, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  4201. o72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4202. o72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4203. o72.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4204. o73.Parent = o72
  4205. o73.Scale = Vector3.new(0.799999833, 0.0959998742, 1)
  4206. o73.MeshType = Enum.MeshType.Wedge
  4207. o74.Parent = o1
  4208. o74.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4209. o74.Transparency = 1
  4210. o74.Position = Vector3.new(-45.1889229, 2.70771027, -23.0111656)
  4211. o74.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4212. o74.Anchored = true
  4213. o74.FormFactor = Enum.FormFactor.Custom
  4214. o74.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4215. o74.CFrame = CFrame.new(-45.1889229, 2.70771027, -23.0111656, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  4216. o74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4217. o74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4218. o74.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4219. o75.Parent = o74
  4220. o75.Texture = "http://www.roblox.com/asset/?id=46737081"
  4221. o75.Face = Enum.NormalId.Back
  4222. o76.Parent = o74
  4223. o76.Scale = Vector3.new(0.320000023, 0.320000023, 0.0400000028)
  4224. o77.Parent = o1
  4225. o77.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4226. o77.Position = Vector3.new(-45.2099571, 2.66275549, -23.1161442)
  4227. o77.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  4228. o77.Anchored = true
  4229. o77.FormFactor = Enum.FormFactor.Custom
  4230. o77.Size = Vector3.new(0.223999992, 0.249600008, 0.200000003)
  4231. o77.CFrame = CFrame.new(-45.2099571, 2.66275549, -23.1161442, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  4232. o77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4233. o77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4234. o77.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4235. o78.Parent = o77
  4236. o78.Scale = Vector3.new(1, 1, 0.0800000057)
  4237. o79.Parent = o1
  4238. o79.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4239. o79.Position = Vector3.new(-45.3239632, 2.64374638, -23.0111847)
  4240. o79.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4241. o79.Anchored = true
  4242. o79.FormFactor = Enum.FormFactor.Custom
  4243. o79.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4244. o79.CFrame = CFrame.new(-45.3239632, 2.64374638, -23.0111847, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  4245. o79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4246. o79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4247. o79.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4248. o80.Parent = o79
  4249. o80.Scale = Vector3.new(0.799999952, 0.0960000008, 0.160000011)
  4250. o81.Parent = o1
  4251. o81.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4252. o81.Position = Vector3.new(-45.2439537, 2.59570742, -23.0821571)
  4253. o81.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  4254. o81.Anchored = true
  4255. o81.FormFactor = Enum.FormFactor.Custom
  4256. o81.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4257. o81.CFrame = CFrame.new(-45.2439537, 2.59570742, -23.0821571, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  4258. o81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4259. o81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4260. o81.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4261. o82.Parent = o81
  4262. o82.Scale = Vector3.new(0.959999979, 0.384000003, 0.0800000057)
  4263. o83.Parent = o1
  4264. o83.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4265. o83.Position = Vector3.new(-45.3389511, 2.77475429, -22.9061871)
  4266. o83.Rotation = Vector3.new(179.998001, 90, 0)
  4267. o83.Anchored = true
  4268. o83.FormFactor = Enum.FormFactor.Custom
  4269. o83.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4270. o83.CFrame = CFrame.new(-45.3389511, 2.77475429, -22.9061871, 3.19999999e-005, 3.50000009e-005, 1, 3.50000009e-005, -1, 3.49988804e-005, 1, 3.49988804e-005, -3.20012259e-005)
  4271. o83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4272. o83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4273. o83.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4274. o84.Parent = o83
  4275. o84.Scale = Vector3.new(0.0799997672, 0.12800014, 0.159999952)
  4276. o84.MeshType = Enum.MeshType.Wedge
  4277. o85.Parent = o1
  4278. o85.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4279. o85.Position = Vector3.new(-45.3219528, 2.67871833, -22.939188)
  4280. o85.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4281. o85.Anchored = true
  4282. o85.FormFactor = Enum.FormFactor.Custom
  4283. o85.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4284. o85.CFrame = CFrame.new(-45.3219528, 2.67871833, -22.939188, -3.19999999e-005, -3.50000009e-005, 1, -3.50000009e-005, 1, 3.49988804e-005, -1, -3.49988804e-005, -3.20012259e-005)
  4285. o85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4286. o85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4287. o85.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4288. o86.Parent = o85
  4289. o86.Scale = Vector3.new(0.0800000057, 0.256000072, 0.159999952)
  4290. o86.MeshType = Enum.MeshType.Wedge
  4291. o87.Parent = o1
  4292. o87.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4293. o87.Position = Vector3.new(-45.2519035, 2.57575631, -23.0121822)
  4294. o87.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4295. o87.Anchored = true
  4296. o87.FormFactor = Enum.FormFactor.Custom
  4297. o87.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4298. o87.CFrame = CFrame.new(-45.2519035, 2.57575631, -23.0121822, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  4299. o87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4300. o87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4301. o87.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4302. o88.Parent = o87
  4303. o88.Scale = Vector3.new(0.640000045, 0.192000002, 0.399999976)
  4304. o89.Parent = o1
  4305. o89.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4306. o89.Transparency = 0.80000001192093
  4307. o89.Position = Vector3.new(-45.297966, 2.70175934, -23.0101871)
  4308. o89.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4309. o89.Anchored = true
  4310. o89.FormFactor = Enum.FormFactor.Custom
  4311. o89.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4312. o89.CFrame = CFrame.new(-45.297966, 2.70175934, -23.0101871, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  4313. o89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4314. o89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4315. o89.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4316. o90.Parent = o89
  4317. o90.Scale = Vector3.new(0.640000045, 0.672000051, 0.0800000057)
  4318. o91.Parent = o1
  4319. o91.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4320. o91.Position = Vector3.new(-45.1649666, 2.71073341, -22.9381714)
  4321. o91.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4322. o91.Anchored = true
  4323. o91.FormFactor = Enum.FormFactor.Custom
  4324. o91.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4325. o91.CFrame = CFrame.new(-45.1649666, 2.71073341, -22.9381714, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  4326. o91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4327. o91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4328. o91.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4329. o92.Parent = o91
  4330. o92.Scale = Vector3.new(0.0800000057, 0.768000007, 0.159999952)
  4331. o92.MeshType = Enum.MeshType.Wedge
  4332. o93.Parent = o1
  4333. o93.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4334. o93.Position = Vector3.new(-45.1859055, 2.64374733, -23.0102024)
  4335. o93.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4336. o93.Anchored = true
  4337. o93.FormFactor = Enum.FormFactor.Custom
  4338. o93.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4339. o93.CFrame = CFrame.new(-45.1859055, 2.64374733, -23.0102024, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  4340. o93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4341. o93.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4342. o93.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4343. o94.Parent = o93
  4344. o94.Scale = Vector3.new(0.640000045, 0.0960000008, 0.0800000057)
  4345. o95.Parent = o1
  4346. o95.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4347. o95.Position = Vector3.new(-45.3379478, 2.77475429, -23.1151962)
  4348. o95.Rotation = Vector3.new(179.998001, 90, 0)
  4349. o95.Anchored = true
  4350. o95.FormFactor = Enum.FormFactor.Custom
  4351. o95.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4352. o95.CFrame = CFrame.new(-45.3379478, 2.77475429, -23.1151962, 3.19999999e-005, 3.50000009e-005, 1, 3.50000009e-005, -1, 3.49988804e-005, 1, 3.49988804e-005, -3.20012259e-005)
  4353. o95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4354. o95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4355. o95.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4356. o96.Parent = o95
  4357. o96.Scale = Vector3.new(0.0799997672, 0.12800014, 0.159999952)
  4358. o96.MeshType = Enum.MeshType.Wedge
  4359. o97.Parent = o1
  4360. o97.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4361. o97.Position = Vector3.new(-45.1779633, 2.59570837, -23.0111656)
  4362. o97.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4363. o97.Anchored = true
  4364. o97.FormFactor = Enum.FormFactor.Custom
  4365. o97.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4366. o97.CFrame = CFrame.new(-45.1779633, 2.59570837, -23.0111656, 3.19999999e-005, -3.50000009e-005, -1, 3.50000009e-005, 1, -3.49988804e-005, 1, -3.49988804e-005, 3.20012259e-005)
  4367. o97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4368. o97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4369. o97.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4370. o98.Parent = o97
  4371. o98.Scale = Vector3.new(0.640000045, 0.384000003, 0.320000023)
  4372. o99.Parent = o1
  4373. o99.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4374. o99.Position = Vector3.new(-45.1059189, 2.56171727, -22.8961964)
  4375. o99.Rotation = Vector3.new(-90.0020065, -0.00131786917, -179.998108)
  4376. o99.Anchored = true
  4377. o99.FormFactor = Enum.FormFactor.Custom
  4378. o99.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4379. o99.CFrame = CFrame.new(-45.1059189, 2.56171727, -22.8961964, -1, 3.29991963e-005, -2.30011556e-005, -2.30000005e-005, 3.50000009e-005, 1, 3.30000003e-005, 1, -3.49992406e-005)
  4380. o99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4381. o99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4382. o99.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4383. o100.Parent = o99
  4384. o100.Scale = Vector3.new(0.239999995, 0.0400000028, 0.239999995)
  4385. o101.Parent = o1
  4386. o101.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4387. o101.Position = Vector3.new(-45.1629524, 2.55375028, -23.1252136)
  4388. o101.Rotation = Vector3.new(89.9979935, 0.00131786917, 179.998108)
  4389. o101.Anchored = true
  4390. o101.FormFactor = Enum.FormFactor.Custom
  4391. o101.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4392. o101.CFrame = CFrame.new(-45.1629524, 2.55375028, -23.1252136, -1, -3.29991963e-005, 2.30011556e-005, -2.30000005e-005, -3.50000009e-005, -1, 3.30000003e-005, -1, 3.49992406e-005)
  4393. o101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4394. o101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4395. o101.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4396. o102.Parent = o101
  4397. o102.Scale = Vector3.new(0.320000023, 0.0400000028, 0.320000023)
  4398. o103.Parent = o1
  4399. o103.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4400. o103.Position = Vector3.new(-44.9219513, 2.58475542, -23.0111656)
  4401. o103.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  4402. o103.Anchored = true
  4403. o103.FormFactor = Enum.FormFactor.Custom
  4404. o103.Size = Vector3.new(0.447999984, 0.200000003, 0.200000003)
  4405. o103.CFrame = CFrame.new(-44.9219513, 2.58475542, -23.0111656, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  4406. o103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4407. o103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4408. o103.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4409. o104.Parent = o103
  4410. o104.Scale = Vector3.new(1, 0.288000017, 0.799999952)
  4411. o105.Parent = o1
  4412. o105.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4413. o105.Position = Vector3.new(-45.0199165, 2.52772045, -23.0121689)
  4414. o105.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  4415. o105.Anchored = true
  4416. o105.FormFactor = Enum.FormFactor.Custom
  4417. o105.Size = Vector3.new(0.639999986, 0.200000003, 0.200000003)
  4418. o105.CFrame = CFrame.new(-45.0199165, 2.52772045, -23.0121689, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  4419. o105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4420. o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4421. o105.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4422. o106.Parent = o105
  4423. o106.Scale = Vector3.new(1, 0.288000017, 0.799999952)
  4424. o107.Parent = o1
  4425. o107.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4426. o107.Position = Vector3.new(-44.9509392, 2.51874828, -23.0071964)
  4427. o107.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4428. o107.Anchored = true
  4429. o107.CanCollide = false
  4430. o107.FormFactor = Enum.FormFactor.Custom
  4431. o107.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4432. o107.CFrame = CFrame.new(-44.9509392, 2.51874828, -23.0071964, -3.19999999e-005, -3.50000009e-005, 1, -3.50000009e-005, 1, 3.49988804e-005, -1, -3.49988804e-005, -3.20012259e-005)
  4433. o107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4434. o107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4435. o107.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4436. o108.Parent = o107
  4437. o108.Scale = Vector3.new(0.5, 0.099999994, 0.25)
  4438. o108.MeshType = Enum.MeshType.Torso
  4439. o109.Parent = o1
  4440. o109.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4441. o109.Position = Vector3.new(-45.0418892, 2.51572728, -23.0951881)
  4442. o109.Rotation = Vector3.new(-90.0020065, -0.00131786917, 0.00189071475)
  4443. o109.Anchored = true
  4444. o109.FormFactor = Enum.FormFactor.Custom
  4445. o109.Size = Vector3.new(0.624000013, 0.200000003, 0.200000003)
  4446. o109.CFrame = CFrame.new(-45.0418892, 2.51572728, -23.0951881, 1, -3.29991963e-005, -2.30011556e-005, 2.30000005e-005, -3.50000009e-005, 1, -3.30000003e-005, -1, -3.49992406e-005)
  4447. o109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4448. o109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4449. o109.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4450. o110.Parent = o109
  4451. o110.Scale = Vector3.new(1, 0.0400000028, 0.160000011)
  4452. o111.Parent = o1
  4453. o111.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4454. o111.Position = Vector3.new(-45.2519112, 2.51874328, -23.0072002)
  4455. o111.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4456. o111.Anchored = true
  4457. o111.CanCollide = false
  4458. o111.FormFactor = Enum.FormFactor.Custom
  4459. o111.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4460. o111.CFrame = CFrame.new(-45.2519112, 2.51874328, -23.0072002, -3.19999999e-005, -3.50000009e-005, 1, -3.50000009e-005, 1, 3.49988804e-005, -1, -3.49988804e-005, -3.20012259e-005)
  4461. o111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4462. o111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4463. o111.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4464. o112.Parent = o111
  4465. o112.Scale = Vector3.new(0.5, 0.099999994, 0.25)
  4466. o112.MeshType = Enum.MeshType.Torso
  4467. o113.Parent = o1
  4468. o113.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4469. o113.Position = Vector3.new(-44.8509331, 2.51875043, -23.0072041)
  4470. o113.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4471. o113.Anchored = true
  4472. o113.CanCollide = false
  4473. o113.FormFactor = Enum.FormFactor.Custom
  4474. o113.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4475. o113.CFrame = CFrame.new(-44.8509331, 2.51875043, -23.0072041, -3.19999999e-005, -3.50000009e-005, 1, -3.50000009e-005, 1, 3.49988804e-005, -1, -3.49988804e-005, -3.20012259e-005)
  4476. o113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4477. o113.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4478. o113.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4479. o114.Parent = o113
  4480. o114.Scale = Vector3.new(0.5, 0.099999994, 0.25)
  4481. o114.MeshType = Enum.MeshType.Torso
  4482. o115.Parent = o1
  4483. o115.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4484. o115.Position = Vector3.new(-45.0539436, 2.51874828, -23.008131)
  4485. o115.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4486. o115.Anchored = true
  4487. o115.CanCollide = false
  4488. o115.FormFactor = Enum.FormFactor.Custom
  4489. o115.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4490. o115.CFrame = CFrame.new(-45.0539436, 2.51874828, -23.008131, -3.19999999e-005, -3.50000009e-005, 1, -3.50000009e-005, 1, 3.49988804e-005, -1, -3.49988804e-005, -3.20012259e-005)
  4491. o115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4492. o115.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4493. o115.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4494. o116.Parent = o115
  4495. o116.Scale = Vector3.new(0.5, 0.099999994, 0.25)
  4496. o116.MeshType = Enum.MeshType.Torso
  4497. o117.Parent = o1
  4498. o117.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4499. o117.Position = Vector3.new(-45.1538887, 2.51874328, -22.9062023)
  4500. o117.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  4501. o117.Anchored = true
  4502. o117.FormFactor = Enum.FormFactor.Custom
  4503. o117.Size = Vector3.new(0.432000011, 0.200000003, 0.200000003)
  4504. o117.CFrame = CFrame.new(-45.1538887, 2.51874328, -22.9062023, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  4505. o117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4506. o117.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4507. o117.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4508. o118.Parent = o117
  4509. o118.Scale = Vector3.new(1, 0.192000002, 0.0800000057)
  4510. o119.Parent = o1
  4511. o119.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4512. o119.Transparency = 1
  4513. o119.Position = Vector3.new(-44.8339386, 2.5557704, -23.094183)
  4514. o119.Rotation = Vector3.new(-90.0020065, -0.00131786917, 0.00189071475)
  4515. o119.Anchored = true
  4516. o119.FormFactor = Enum.FormFactor.Custom
  4517. o119.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4518. o119.CFrame = CFrame.new(-44.8339386, 2.5557704, -23.094183, 1, -3.29991963e-005, -2.30011556e-005, 2.30000005e-005, -3.50000009e-005, 1, -3.30000003e-005, -1, -3.49992406e-005)
  4519. o119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4520. o119.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4521. o119.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4522. o120.Parent = o119
  4523. o120.Texture = "http://www.roblox.com/asset/?id=46738506"
  4524. o120.Face = Enum.NormalId.Top
  4525. o121.Parent = o119
  4526. o121.Scale = Vector3.new(0.879999995, 0.0400000028, 0.239999995)
  4527. o122.Parent = o1
  4528. o122.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4529. o122.Position = Vector3.new(-45.0439224, 2.51572728, -22.9261646)
  4530. o122.Rotation = Vector3.new(-90.0020065, -0.00131786917, -179.998108)
  4531. o122.Anchored = true
  4532. o122.FormFactor = Enum.FormFactor.Custom
  4533. o122.Size = Vector3.new(0.624000013, 0.200000003, 0.200000003)
  4534. o122.CFrame = CFrame.new(-45.0439224, 2.51572728, -22.9261646, -1, 3.29991963e-005, -2.30011556e-005, -2.30000005e-005, 3.50000009e-005, 1, 3.30000003e-005, 1, -3.49992406e-005)
  4535. o122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4536. o122.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4537. o122.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4538. o123.Parent = o122
  4539. o123.Scale = Vector3.new(1, 0.0400000028, 0.160000011)
  4540. o124.Parent = o1
  4541. o124.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4542. o124.Position = Vector3.new(-44.7529488, 2.51875329, -23.0081348)
  4543. o124.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4544. o124.Anchored = true
  4545. o124.CanCollide = false
  4546. o124.FormFactor = Enum.FormFactor.Custom
  4547. o124.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4548. o124.CFrame = CFrame.new(-44.7529488, 2.51875329, -23.0081348, -3.19999999e-005, -3.50000009e-005, 1, -3.50000009e-005, 1, 3.49988804e-005, -1, -3.49988804e-005, -3.20012259e-005)
  4549. o124.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4550. o124.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4551. o124.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4552. o125.Parent = o124
  4553. o125.Scale = Vector3.new(0.5, 0.099999994, 0.25)
  4554. o125.MeshType = Enum.MeshType.Torso
  4555. o126.Parent = o1
  4556. o126.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4557. o126.Position = Vector3.new(-45.1509209, 2.51874232, -23.0071945)
  4558. o126.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4559. o126.Anchored = true
  4560. o126.CanCollide = false
  4561. o126.FormFactor = Enum.FormFactor.Custom
  4562. o126.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4563. o126.CFrame = CFrame.new(-45.1509209, 2.51874232, -23.0071945, -3.19999999e-005, -3.50000009e-005, 1, -3.50000009e-005, 1, 3.49988804e-005, -1, -3.49988804e-005, -3.20012259e-005)
  4564. o126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4565. o126.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4566. o126.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4567. o127.Parent = o126
  4568. o127.Scale = Vector3.new(0.5, 0.099999994, 0.25)
  4569. o127.MeshType = Enum.MeshType.Torso
  4570. o128.Parent = o1
  4571. o128.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4572. o128.Position = Vector3.new(-45.1529388, 2.4967463, -23.0111752)
  4573. o128.Rotation = Vector3.new(-0.00217723963, 90, 0)
  4574. o128.Anchored = true
  4575. o128.FormFactor = Enum.FormFactor.Custom
  4576. o128.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4577. o128.CFrame = CFrame.new(-45.1529388, 2.4967463, -23.0111752, -3.19999999e-005, -3.89999987e-005, 1, -3.79999983e-005, 1, 3.89987836e-005, -1, -3.79987505e-005, -3.20014806e-005)
  4578. o128.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4579. o128.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4580. o128.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4581. o129.Parent = o128
  4582. o129.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4583. o129.MeshType = Enum.MeshType.Torso
  4584. o130.Parent = o1
  4585. o130.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4586. o130.Position = Vector3.new(-45.2179108, 2.49674535, -23.0101929)
  4587. o130.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4588. o130.Anchored = true
  4589. o130.FormFactor = Enum.FormFactor.Custom
  4590. o130.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4591. o130.CFrame = CFrame.new(-45.2179108, 2.49674535, -23.0101929, -3.19999999e-005, -3.30000003e-005, 1, -3.30000003e-005, 1, 3.29989452e-005, -1, -3.29989452e-005, -3.20010877e-005)
  4592. o130.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4593. o130.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4594. o130.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4595. o131.Parent = o130
  4596. o131.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4597. o131.MeshType = Enum.MeshType.Torso
  4598. o132.Parent = o1
  4599. o132.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4600. o132.Position = Vector3.new(-45.2839508, 2.49674535, -23.0101948)
  4601. o132.Rotation = Vector3.new(-0.00154698605, 90, 0)
  4602. o132.Anchored = true
  4603. o132.FormFactor = Enum.FormFactor.Custom
  4604. o132.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4605. o132.CFrame = CFrame.new(-45.2839508, 2.49674535, -23.0101948, -3.30000003e-005, -2.80000004e-005, 1, -2.7e-005, 1, 2.79991091e-005, -1, -2.6999076e-005, -3.3000757e-005)
  4606. o132.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4607. o132.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4608. o132.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4609. o133.Parent = o132
  4610. o133.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4611. o133.MeshType = Enum.MeshType.Torso
  4612. o134.Parent = o1
  4613. o134.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4614. o134.Position = Vector3.new(-45.0889397, 2.49674749, -23.0111771)
  4615. o134.Rotation = Vector3.new(-0.00177616917, 90, 0)
  4616. o134.Anchored = true
  4617. o134.FormFactor = Enum.FormFactor.Custom
  4618. o134.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4619. o134.CFrame = CFrame.new(-45.0889397, 2.49674749, -23.0111771, -3.30000003e-005, -2.99999992e-005, 1, -3.09999996e-005, 1, 2.9998977e-005, -1, -3.09990101e-005, -3.30009316e-005)
  4620. o134.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4621. o134.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4622. o134.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4623. o135.Parent = o134
  4624. o135.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4625. o135.MeshType = Enum.MeshType.Torso
  4626. o136.Parent = o1
  4627. o136.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4628. o136.Position = Vector3.new(-45.1538887, 2.51874328, -23.1142063)
  4629. o136.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  4630. o136.Anchored = true
  4631. o136.FormFactor = Enum.FormFactor.Custom
  4632. o136.Size = Vector3.new(0.432000011, 0.200000003, 0.200000003)
  4633. o136.CFrame = CFrame.new(-45.1538887, 2.51874328, -23.1142063, -1, -2.30008263e-005, -3.29994255e-005, -2.30000005e-005, 1, -2.50007579e-005, 3.30000003e-005, -2.49999994e-005, -1)
  4634. o136.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4635. o136.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4636. o136.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4637. o137.Parent = o136
  4638. o137.Scale = Vector3.new(1, 0.192000002, 0.0800000057)
  4639. o138.Parent = o1
  4640. o138.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4641. o138.Position = Vector3.new(-45.0229073, 2.49675035, -23.0111771)
  4642. o138.Rotation = Vector3.new(-0.00194805651, 90, 0)
  4643. o138.Anchored = true
  4644. o138.FormFactor = Enum.FormFactor.Custom
  4645. o138.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4646. o138.CFrame = CFrame.new(-45.0229073, 2.49675035, -23.0111771, -3.30000003e-005, -3.30000003e-005, 1, -3.40000006e-005, 1, 3.29988798e-005, -1, -3.39989128e-005, -3.30011208e-005)
  4647. o138.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4648. o138.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4649. o138.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4650. o139.Parent = o138
  4651. o139.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4652. o139.MeshType = Enum.MeshType.Torso
  4653. o140.Parent = o1
  4654. o140.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4655. o140.Position = Vector3.new(-44.9549446, 2.49675035, -23.0101929)
  4656. o140.Rotation = Vector3.new(-0.00194805651, 90, 0)
  4657. o140.Anchored = true
  4658. o140.FormFactor = Enum.FormFactor.Custom
  4659. o140.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4660. o140.CFrame = CFrame.new(-44.9549446, 2.49675035, -23.0101929, -3.30000003e-005, -3.30000003e-005, 1, -3.40000006e-005, 1, 3.29988798e-005, -1, -3.39989128e-005, -3.30011208e-005)
  4661. o140.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4662. o140.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4663. o140.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4664. o141.Parent = o140
  4665. o141.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4666. o141.MeshType = Enum.MeshType.Torso
  4667. o142.Parent = o1
  4668. o142.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4669. o142.Position = Vector3.new(-44.8889275, 2.49675131, -23.0101967)
  4670. o142.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4671. o142.Anchored = true
  4672. o142.FormFactor = Enum.FormFactor.Custom
  4673. o142.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4674. o142.CFrame = CFrame.new(-44.8889275, 2.49675131, -23.0101967, -3.30000003e-005, -3.30000003e-005, 1, -3.30000003e-005, 1, 3.29989125e-005, -1, -3.29989125e-005, -3.3001088e-005)
  4675. o142.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4676. o142.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4677. o142.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4678. o143.Parent = o142
  4679. o143.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4680. o143.MeshType = Enum.MeshType.Torso
  4681. o144.Parent = o1
  4682. o144.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4683. o144.Position = Vector3.new(-44.8239632, 2.49675727, -23.0102005)
  4684. o144.Rotation = Vector3.new(18.3667545, 89.9515457, -18.3702984)
  4685. o144.Anchored = true
  4686. o144.FormFactor = Enum.FormFactor.Custom
  4687. o144.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4688. o144.CFrame = CFrame.new(-44.8239632, 2.49675727, -23.0102005, 0.000797999848, 0.000264999835, 0.999999642, -6.19999846e-005, 1, -0.000264950446, -0.999999762, -6.17885307e-005, 0.000798016146)
  4689. o144.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4690. o144.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4691. o144.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4692. o145.Parent = o144
  4693. o145.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4694. o145.MeshType = Enum.MeshType.Torso
  4695. o146.Name = "Zoom"
  4696. o146.Parent = o1
  4697. o146.Material = Enum.Material.SmoothPlastic
  4698. o146.Transparency = 1
  4699. o146.Position = Vector3.new(-45.4513054, 2.7256608, -23.0179634)
  4700. o146.Rotation = Vector3.new(-90, -88.876564, -90)
  4701. o146.Anchored = true
  4702. o146.FormFactor = Enum.FormFactor.Custom
  4703. o146.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4704. o146.CFrame = CFrame.new(-45.4513054, 2.7256608, -23.0179634, 0, 0.0196069945, -0.999807775, 0, 0.999807775, 0.0196069926, 1, 0, 0)
  4705. o146.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4706. o146.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4707. o146.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4708. o146.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4709. o146.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4710. o146.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4711. o147.Parent = o146
  4712. o147.Scale = Vector3.new(0.142307684, 0.170769244, 0.284615368)
  4713. ZoomFOV = 70
  4714. elseif Sight == "REFLEX" then
  4715. o2 = Instance.new("Part")
  4716. o3 = Instance.new("CylinderMesh")
  4717. o4 = Instance.new("Part")
  4718. o5 = Instance.new("SpecialMesh")
  4719. o6 = Instance.new("Part")
  4720. o7 = Instance.new("SpecialMesh")
  4721. o8 = Instance.new("Part")
  4722. o9 = Instance.new("SpecialMesh")
  4723. o10 = Instance.new("Part")
  4724. o11 = Instance.new("SpecialMesh")
  4725. o12 = Instance.new("Part")
  4726. o13 = Instance.new("BlockMesh")
  4727. o14 = Instance.new("Part")
  4728. o15 = Instance.new("BlockMesh")
  4729. o16 = Instance.new("Part")
  4730. o17 = Instance.new("SpecialMesh")
  4731. o18 = Instance.new("Part")
  4732. o19 = Instance.new("SpecialMesh")
  4733. o20 = Instance.new("Part")
  4734. o21 = Instance.new("SpecialMesh")
  4735. o22 = Instance.new("Part")
  4736. o23 = Instance.new("BlockMesh")
  4737. o24 = Instance.new("Part")
  4738. o25 = Instance.new("BlockMesh")
  4739. o26 = Instance.new("Part")
  4740. o27 = Instance.new("BlockMesh")
  4741. o28 = Instance.new("Part")
  4742. o29 = Instance.new("SpecialMesh")
  4743. o30 = Instance.new("Part")
  4744. o31 = Instance.new("SpecialMesh")
  4745. o32 = Instance.new("Part")
  4746. o33 = Instance.new("BlockMesh")
  4747. o34 = Instance.new("Part")
  4748. o35 = Instance.new("BlockMesh")
  4749. o36 = Instance.new("Part")
  4750. o37 = Instance.new("SpecialMesh")
  4751. o38 = Instance.new("Part")
  4752. o39 = Instance.new("SpecialMesh")
  4753. o40 = Instance.new("Part")
  4754. o41 = Instance.new("SpecialMesh")
  4755. o42 = Instance.new("Part")
  4756. o43 = Instance.new("BlockMesh")
  4757. o44 = Instance.new("Part")
  4758. o45 = Instance.new("SpecialMesh")
  4759. o46 = Instance.new("Part")
  4760. o47 = Instance.new("SpecialMesh")
  4761. o48 = Instance.new("Part")
  4762. o49 = Instance.new("SpecialMesh")
  4763. o50 = Instance.new("Part")
  4764. o51 = Instance.new("Decal")
  4765. o52 = Instance.new("CylinderMesh")
  4766. o53 = Instance.new("Part")
  4767. o54 = Instance.new("BlockMesh")
  4768. o55 = Instance.new("Part")
  4769. o56 = Instance.new("BlockMesh")
  4770. o57 = Instance.new("Part")
  4771. o58 = Instance.new("BlockMesh")
  4772. o59 = Instance.new("Part")
  4773. o60 = Instance.new("SpecialMesh")
  4774. o61 = Instance.new("Part")
  4775. o62 = Instance.new("SpecialMesh")
  4776. o63 = Instance.new("Part")
  4777. o64 = Instance.new("SpecialMesh")
  4778. o65 = Instance.new("Part")
  4779. o66 = Instance.new("SpecialMesh")
  4780. o67 = Instance.new("Part")
  4781. o68 = Instance.new("CylinderMesh")
  4782. o69 = Instance.new("Part")
  4783. o70 = Instance.new("BlockMesh")
  4784. o2.Parent = o1
  4785. o2.BrickColor = BrickColor.new("Really black")
  4786. o2.Position = Vector3.new(-45.2765083, 2.46846628, -23.0166702)
  4787. o2.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4788. o2.Anchored = true
  4789. o2.FormFactor = Enum.FormFactor.Symmetric
  4790. o2.Size = Vector3.new(1, 1, 1)
  4791. o2.CFrame = CFrame.new(-45.2765083, 2.46846628, -23.0166702, -3.19999999e-005, 0, 1, -3.30000003e-005, 1, -1.05599995e-009, -1, -3.30000003e-005, -3.19999999e-005)
  4792. o2.BottomSurface = Enum.SurfaceType.Smooth
  4793. o2.TopSurface = Enum.SurfaceType.Smooth
  4794. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4795. o3.Parent = o2
  4796. o3.Offset = Vector3.new(0, 0, 0.0325925909)
  4797. o3.Scale = Vector3.new(0.162962973, 0.0570370369, 0.195555568)
  4798. o4.Parent = o1
  4799. o4.BrickColor = BrickColor.new("Really black")
  4800. o4.Position = Vector3.new(-45.3094978, 2.55647826, -23.0146866)
  4801. o4.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4802. o4.Anchored = true
  4803. o4.FormFactor = Enum.FormFactor.Plate
  4804. o4.Size = Vector3.new(1, 0.400000006, 1)
  4805. o4.CFrame = CFrame.new(-45.3094978, 2.55647826, -23.0146866, -3.19999999e-005, 0, 1, -3.30000003e-005, 1, -1.05599995e-009, -1, -3.30000003e-005, -3.19999999e-005)
  4806. o4.BottomSurface = Enum.SurfaceType.Smooth
  4807. o4.TopSurface = Enum.SurfaceType.Smooth
  4808. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4809. o5.Parent = o4
  4810. o5.Scale = Vector3.new(0.187407404, 0.0325925909, 0.162962973)
  4811. o5.MeshType = Enum.MeshType.Brick
  4812. o6.Parent = o1
  4813. o6.BrickColor = BrickColor.new("Really black")
  4814. o6.Position = Vector3.new(-45.3095016, 2.57641029, -23.0146942)
  4815. o6.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4816. o6.Anchored = true
  4817. o6.FormFactor = Enum.FormFactor.Plate
  4818. o6.Size = Vector3.new(1, 0.400000006, 1)
  4819. o6.CFrame = CFrame.new(-45.3095016, 2.57641029, -23.0146942, -3.19999999e-005, 0, 1, -3.30000003e-005, 1, -1.05599995e-009, -1, -3.30000003e-005, -3.19999999e-005)
  4820. o6.BottomSurface = Enum.SurfaceType.Smooth
  4821. o6.TopSurface = Enum.SurfaceType.Smooth
  4822. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4823. o7.Parent = o6
  4824. o7.Scale = Vector3.new(0.187407404, 0.0651851818, 0.162962973)
  4825. o7.MeshType = Enum.MeshType.Torso
  4826. o8.Parent = o1
  4827. o8.BrickColor = BrickColor.new("Really black")
  4828. o8.Position = Vector3.new(-45.3425179, 2.51747727, -23.0166683)
  4829. o8.Rotation = Vector3.new(179.998108, 90, 0)
  4830. o8.Anchored = true
  4831. o8.FormFactor = Enum.FormFactor.Symmetric
  4832. o8.Size = Vector3.new(1, 1, 1)
  4833. o8.CFrame = CFrame.new(-45.3425179, 2.51747727, -23.0166683, 3.19999999e-005, 0, 1, 3.30000003e-005, -1, -1.05599995e-009, 1, 3.30000003e-005, -3.19999999e-005)
  4834. o8.BottomSurface = Enum.SurfaceType.Smooth
  4835. o8.TopSurface = Enum.SurfaceType.Smooth
  4836. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4837. o9.Parent = o8
  4838. o9.Scale = Vector3.new(0.187407404, 0.0651851818, 0.0977777839)
  4839. o9.MeshType = Enum.MeshType.Wedge
  4840. o10.Parent = o1
  4841. o10.BrickColor = BrickColor.new("Really black")
  4842. o10.Position = Vector3.new(-44.920517, 2.59844327, -23.146698)
  4843. o10.Rotation = Vector3.new(89.9981079, 5.6722822e-008, -0.00171887339)
  4844. o10.Anchored = true
  4845. o10.FormFactor = Enum.FormFactor.Plate
  4846. o10.Size = Vector3.new(1, 0.400000006, 1)
  4847. o10.CFrame = CFrame.new(-44.920517, 2.59844327, -23.146698, 1, 2.99999992e-005, 9.89999971e-010, 0, 3.30000003e-005, -1, -2.99999992e-005, 1, 3.30000003e-005)
  4848. o10.BottomSurface = Enum.SurfaceType.Smooth
  4849. o10.TopSurface = Enum.SurfaceType.Smooth
  4850. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4851. o11.Parent = o10
  4852. o11.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  4853. o11.MeshType = Enum.MeshType.Wedge
  4854. o12.Parent = o1
  4855. o12.BrickColor = BrickColor.new("Really black")
  4856. o12.Position = Vector3.new(-45.0995064, 2.51747632, -23.015686)
  4857. o12.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4858. o12.Anchored = true
  4859. o12.FormFactor = Enum.FormFactor.Symmetric
  4860. o12.Size = Vector3.new(1, 1, 1)
  4861. o12.CFrame = CFrame.new(-45.0995064, 2.51747632, -23.015686, -3.19999999e-005, 0, 1, -3.30000003e-005, 1, -1.05599995e-009, -1, -3.30000003e-005, -3.19999999e-005)
  4862. o12.BottomSurface = Enum.SurfaceType.Smooth
  4863. o12.TopSurface = Enum.SurfaceType.Smooth
  4864. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4865. o13.Parent = o12
  4866. o13.Scale = Vector3.new(0.187407404, 0.0651851818, 0.391111135)
  4867. o14.Parent = o1
  4868. o14.BrickColor = BrickColor.new("Really black")
  4869. o14.Position = Vector3.new(-44.920517, 2.79448128, -23.0146942)
  4870. o14.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4871. o14.Anchored = true
  4872. o14.FormFactor = Enum.FormFactor.Symmetric
  4873. o14.Size = Vector3.new(1, 1, 1)
  4874. o14.CFrame = CFrame.new(-44.920517, 2.79448128, -23.0146942, -3.19999999e-005, 0, 1, -3.30000003e-005, 1, -1.05599995e-009, -1, -3.30000003e-005, -3.19999999e-005)
  4875. o14.BottomSurface = Enum.SurfaceType.Smooth
  4876. o14.TopSurface = Enum.SurfaceType.Smooth
  4877. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4878. o15.Parent = o14
  4879. o15.Scale = Vector3.new(0.260740727, 0.0325925909, 0.0325925909)
  4880. o16.Parent = o1
  4881. o16.BrickColor = BrickColor.new("Really black")
  4882. o16.Position = Vector3.new(-44.9205208, 2.79448128, -23.1576691)
  4883. o16.Rotation = Vector3.new(89.9981079, 5.6722822e-008, 179.998291)
  4884. o16.Anchored = true
  4885. o16.FormFactor = Enum.FormFactor.Plate
  4886. o16.Size = Vector3.new(1, 0.400000006, 1)
  4887. o16.CFrame = CFrame.new(-44.9205208, 2.79448128, -23.1576691, -1, -2.99999992e-005, 9.89999971e-010, 0, -3.30000003e-005, -1, 2.99999992e-005, -1, 3.30000003e-005)
  4888. o16.BottomSurface = Enum.SurfaceType.Smooth
  4889. o16.TopSurface = Enum.SurfaceType.Smooth
  4890. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4891. o17.Parent = o16
  4892. o17.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  4893. o17.MeshType = Enum.MeshType.Wedge
  4894. o18.Parent = o1
  4895. o18.BrickColor = BrickColor.new("Really black")
  4896. o18.Position = Vector3.new(-44.9185371, 2.74543738, -22.8476753)
  4897. o18.Rotation = Vector3.new(89.9981079, 5.6722822e-008, -0.00171887339)
  4898. o18.Anchored = true
  4899. o18.FormFactor = Enum.FormFactor.Plate
  4900. o18.Size = Vector3.new(1, 0.400000006, 1)
  4901. o18.CFrame = CFrame.new(-44.9185371, 2.74543738, -22.8476753, 1, 2.99999992e-005, 9.89999971e-010, 0, 3.30000003e-005, -1, -2.99999992e-005, 1, 3.30000003e-005)
  4902. o18.BottomSurface = Enum.SurfaceType.Smooth
  4903. o18.TopSurface = Enum.SurfaceType.Smooth
  4904. o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4905. o19.Parent = o18
  4906. o19.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0651851818)
  4907. o19.MeshType = Enum.MeshType.Wedge
  4908. o20.Parent = o1
  4909. o20.BrickColor = BrickColor.new("Really black")
  4910. o20.Position = Vector3.new(-44.9195137, 2.72948027, -23.1646042)
  4911. o20.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  4912. o20.Anchored = true
  4913. o20.FormFactor = Enum.FormFactor.Plate
  4914. o20.Size = Vector3.new(1, 0.400000006, 1)
  4915. o20.CFrame = CFrame.new(-44.9195137, 2.72948027, -23.1646042, -1, 2.99999992e-005, -9.89999971e-010, 0, 3.30000003e-005, 1, 2.99999992e-005, 1, -3.30000003e-005)
  4916. o20.BottomSurface = Enum.SurfaceType.Smooth
  4917. o20.TopSurface = Enum.SurfaceType.Smooth
  4918. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4919. o21.Parent = o20
  4920. o21.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  4921. o21.MeshType = Enum.MeshType.Wedge
  4922. o22.Parent = o1
  4923. o22.BrickColor = BrickColor.new("Really black")
  4924. o22.Position = Vector3.new(-44.9195137, 2.59844542, -22.8646832)
  4925. o22.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  4926. o22.Anchored = true
  4927. o22.FormFactor = Enum.FormFactor.Plate
  4928. o22.Size = Vector3.new(1, 0.400000006, 1)
  4929. o22.CFrame = CFrame.new(-44.9195137, 2.59844542, -22.8646832, -1, 2.99999992e-005, -9.89999971e-010, 0, 3.30000003e-005, 1, 2.99999992e-005, 1, -3.30000003e-005)
  4930. o22.BottomSurface = Enum.SurfaceType.Smooth
  4931. o22.TopSurface = Enum.SurfaceType.Smooth
  4932. o22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4933. o23.Parent = o22
  4934. o23.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  4935. o24.Parent = o1
  4936. o24.BrickColor = BrickColor.new("Really black")
  4937. o24.Position = Vector3.new(-44.9185371, 2.68046641, -22.8476543)
  4938. o24.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  4939. o24.Anchored = true
  4940. o24.FormFactor = Enum.FormFactor.Plate
  4941. o24.Size = Vector3.new(1, 0.400000006, 1)
  4942. o24.CFrame = CFrame.new(-44.9185371, 2.68046641, -22.8476543, -1, 2.99999992e-005, -9.89999971e-010, 0, 3.30000003e-005, 1, 2.99999992e-005, 1, -3.30000003e-005)
  4943. o24.BottomSurface = Enum.SurfaceType.Smooth
  4944. o24.TopSurface = Enum.SurfaceType.Smooth
  4945. o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4946. o25.Parent = o24
  4947. o25.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0651851818)
  4948. o26.Parent = o1
  4949. o26.BrickColor = BrickColor.new("Really black")
  4950. o26.Position = Vector3.new(-44.920517, 2.56648326, -23.0146809)
  4951. o26.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4952. o26.Anchored = true
  4953. o26.FormFactor = Enum.FormFactor.Symmetric
  4954. o26.Size = Vector3.new(1, 1, 1)
  4955. o26.CFrame = CFrame.new(-44.920517, 2.56648326, -23.0146809, -3.19999999e-005, 0, 1, -3.30000003e-005, 1, -1.05599995e-009, -1, -3.30000003e-005, -3.19999999e-005)
  4956. o26.BottomSurface = Enum.SurfaceType.Smooth
  4957. o26.TopSurface = Enum.SurfaceType.Smooth
  4958. o26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4959. o27.Parent = o26
  4960. o27.Scale = Vector3.new(0.260740727, 0.0325925909, 0.0325925909)
  4961. o28.Parent = o1
  4962. o28.BrickColor = BrickColor.new("Really black")
  4963. o28.Position = Vector3.new(-44.9195099, 2.63146138, -22.8646927)
  4964. o28.Rotation = Vector3.new(89.9981079, 5.6722822e-008, 179.998291)
  4965. o28.Anchored = true
  4966. o28.FormFactor = Enum.FormFactor.Plate
  4967. o28.Size = Vector3.new(1, 0.400000006, 1)
  4968. o28.CFrame = CFrame.new(-44.9195099, 2.63146138, -22.8646927, -1, -2.99999992e-005, 9.89999971e-010, 0, -3.30000003e-005, -1, 2.99999992e-005, -1, 3.30000003e-005)
  4969. o28.BottomSurface = Enum.SurfaceType.Smooth
  4970. o28.TopSurface = Enum.SurfaceType.Smooth
  4971. o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4972. o29.Parent = o28
  4973. o29.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  4974. o29.MeshType = Enum.MeshType.Wedge
  4975. o30.Parent = o1
  4976. o30.BrickColor = BrickColor.new("Really black")
  4977. o30.Position = Vector3.new(-44.9205208, 2.56648326, -22.8716412)
  4978. o30.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  4979. o30.Anchored = true
  4980. o30.FormFactor = Enum.FormFactor.Plate
  4981. o30.Size = Vector3.new(1, 0.400000006, 1)
  4982. o30.CFrame = CFrame.new(-44.9205208, 2.56648326, -22.8716412, -1, 2.99999992e-005, -9.89999971e-010, 0, 3.30000003e-005, 1, 2.99999992e-005, 1, -3.30000003e-005)
  4983. o30.BottomSurface = Enum.SurfaceType.Smooth
  4984. o30.TopSurface = Enum.SurfaceType.Smooth
  4985. o30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4986. o31.Parent = o30
  4987. o31.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  4988. o31.MeshType = Enum.MeshType.Wedge
  4989. o32.Parent = o1
  4990. o32.BrickColor = BrickColor.new("Really black")
  4991. o32.Position = Vector3.new(-44.920517, 2.68046427, -23.1846619)
  4992. o32.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  4993. o32.Anchored = true
  4994. o32.FormFactor = Enum.FormFactor.Plate
  4995. o32.Size = Vector3.new(1, 0.400000006, 1)
  4996. o32.CFrame = CFrame.new(-44.920517, 2.68046427, -23.1846619, -1, 2.99999992e-005, -9.89999971e-010, 0, 3.30000003e-005, 1, 2.99999992e-005, 1, -3.30000003e-005)
  4997. o32.BottomSurface = Enum.SurfaceType.Smooth
  4998. o32.TopSurface = Enum.SurfaceType.Smooth
  4999. o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5000. o33.Parent = o32
  5001. o33.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0651851818)
  5002. o34.Parent = o1
  5003. o34.BrickColor = BrickColor.new("Really black")
  5004. o34.Position = Vector3.new(-44.9195099, 2.59844327, -23.1646118)
  5005. o34.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  5006. o34.Anchored = true
  5007. o34.FormFactor = Enum.FormFactor.Plate
  5008. o34.Size = Vector3.new(1, 0.400000006, 1)
  5009. o34.CFrame = CFrame.new(-44.9195099, 2.59844327, -23.1646118, -1, 2.99999992e-005, -9.89999971e-010, 0, 3.30000003e-005, 1, 2.99999992e-005, 1, -3.30000003e-005)
  5010. o34.BottomSurface = Enum.SurfaceType.Smooth
  5011. o34.TopSurface = Enum.SurfaceType.Smooth
  5012. o34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5013. o35.Parent = o34
  5014. o35.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  5015. o36.Parent = o1
  5016. o36.BrickColor = BrickColor.new("Really black")
  5017. o36.Position = Vector3.new(-44.920517, 2.7614634, -23.1467056)
  5018. o36.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  5019. o36.Anchored = true
  5020. o36.FormFactor = Enum.FormFactor.Plate
  5021. o36.Size = Vector3.new(1, 0.400000006, 1)
  5022. o36.CFrame = CFrame.new(-44.920517, 2.7614634, -23.1467056, -1, 2.99999992e-005, -9.89999971e-010, 0, 3.30000003e-005, 1, 2.99999992e-005, 1, -3.30000003e-005)
  5023. o36.BottomSurface = Enum.SurfaceType.Smooth
  5024. o36.TopSurface = Enum.SurfaceType.Smooth
  5025. o36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5026. o37.Parent = o36
  5027. o37.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  5028. o37.MeshType = Enum.MeshType.Wedge
  5029. o38.Parent = o1
  5030. o38.BrickColor = BrickColor.new("Really black")
  5031. o38.Position = Vector3.new(-44.9185295, 2.59844041, -22.8846474)
  5032. o38.Rotation = Vector3.new(89.9981079, 5.6722822e-008, 179.998291)
  5033. o38.Anchored = true
  5034. o38.FormFactor = Enum.FormFactor.Plate
  5035. o38.Size = Vector3.new(1, 0.400000006, 1)
  5036. o38.CFrame = CFrame.new(-44.9185295, 2.59844041, -22.8846474, -1, -2.99999992e-005, 9.89999971e-010, 0, -3.30000003e-005, -1, 2.99999992e-005, -1, 3.30000003e-005)
  5037. o38.BottomSurface = Enum.SurfaceType.Smooth
  5038. o38.TopSurface = Enum.SurfaceType.Smooth
  5039. o38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5040. o39.Parent = o38
  5041. o39.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  5042. o39.MeshType = Enum.MeshType.Wedge
  5043. o40.Parent = o1
  5044. o40.BrickColor = BrickColor.new("Really black")
  5045. o40.Position = Vector3.new(-44.9195137, 2.72948027, -22.8646832)
  5046. o40.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, 0.00171887339)
  5047. o40.Anchored = true
  5048. o40.FormFactor = Enum.FormFactor.Plate
  5049. o40.Size = Vector3.new(1, 0.400000006, 1)
  5050. o40.CFrame = CFrame.new(-44.9195137, 2.72948027, -22.8646832, 1, -2.99999992e-005, -9.89999971e-010, 0, -3.30000003e-005, 1, -2.99999992e-005, -1, -3.30000003e-005)
  5051. o40.BottomSurface = Enum.SurfaceType.Smooth
  5052. o40.TopSurface = Enum.SurfaceType.Smooth
  5053. o40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5054. o41.Parent = o40
  5055. o41.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  5056. o41.MeshType = Enum.MeshType.Wedge
  5057. o42.Parent = o1
  5058. o42.BrickColor = BrickColor.new("Really black")
  5059. o42.Position = Vector3.new(-45.0815277, 2.46846628, -23.014679)
  5060. o42.Rotation = Vector3.new(-0.00189076073, 90, 0)
  5061. o42.Anchored = true
  5062. o42.FormFactor = Enum.FormFactor.Symmetric
  5063. o42.Size = Vector3.new(1, 1, 1)
  5064. o42.CFrame = CFrame.new(-45.0815277, 2.46846628, -23.014679, -3.19999999e-005, 0, 1, -3.30000003e-005, 1, -1.05599995e-009, -1, -3.30000003e-005, -3.19999999e-005)
  5065. o42.BottomSurface = Enum.SurfaceType.Smooth
  5066. o42.TopSurface = Enum.SurfaceType.Smooth
  5067. o42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5068. o43.Parent = o42
  5069. o43.Scale = Vector3.new(0.162962973, 0.0325925909, 0.358518541)
  5070. o44.Parent = o1
  5071. o44.BrickColor = BrickColor.new("Really black")
  5072. o44.Position = Vector3.new(-44.920517, 2.56648326, -23.1576462)
  5073. o44.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, 0.00171887339)
  5074. o44.Anchored = true
  5075. o44.FormFactor = Enum.FormFactor.Plate
  5076. o44.Size = Vector3.new(1, 0.400000006, 1)
  5077. o44.CFrame = CFrame.new(-44.920517, 2.56648326, -23.1576462, 1, -2.99999992e-005, -9.89999971e-010, 0, -3.30000003e-005, 1, -2.99999992e-005, -1, -3.30000003e-005)
  5078. o44.BottomSurface = Enum.SurfaceType.Smooth
  5079. o44.TopSurface = Enum.SurfaceType.Smooth
  5080. o44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5081. o45.Parent = o44
  5082. o45.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  5083. o45.MeshType = Enum.MeshType.Wedge
  5084. o46.Parent = o1
  5085. o46.BrickColor = BrickColor.new("Really black")
  5086. o46.Position = Vector3.new(-44.9185295, 2.61543727, -22.8476543)
  5087. o46.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  5088. o46.Anchored = true
  5089. o46.FormFactor = Enum.FormFactor.Plate
  5090. o46.Size = Vector3.new(1, 0.400000006, 1)
  5091. o46.CFrame = CFrame.new(-44.9185295, 2.61543727, -22.8476543, -1, 2.99999992e-005, -9.89999971e-010, 0, 3.30000003e-005, 1, 2.99999992e-005, 1, -3.30000003e-005)
  5092. o46.BottomSurface = Enum.SurfaceType.Smooth
  5093. o46.TopSurface = Enum.SurfaceType.Smooth
  5094. o46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5095. o47.Parent = o46
  5096. o47.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0651851818)
  5097. o47.MeshType = Enum.MeshType.Wedge
  5098. o48.Parent = o1
  5099. o48.BrickColor = BrickColor.new("Really black")
  5100. o48.Position = Vector3.new(-44.920517, 2.74543428, -23.1846676)
  5101. o48.Rotation = Vector3.new(89.9981079, 5.6722822e-008, 179.998291)
  5102. o48.Anchored = true
  5103. o48.FormFactor = Enum.FormFactor.Plate
  5104. o48.Size = Vector3.new(1, 0.400000006, 1)
  5105. o48.CFrame = CFrame.new(-44.920517, 2.74543428, -23.1846676, -1, -2.99999992e-005, 9.89999971e-010, 0, -3.30000003e-005, -1, 2.99999992e-005, -1, 3.30000003e-005)
  5106. o48.BottomSurface = Enum.SurfaceType.Smooth
  5107. o48.TopSurface = Enum.SurfaceType.Smooth
  5108. o48.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5109. o49.Parent = o48
  5110. o49.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0651851818)
  5111. o49.MeshType = Enum.MeshType.Wedge
  5112. o50.Parent = o1
  5113. o50.BrickColor = BrickColor.new("Really black")
  5114. o50.Position = Vector3.new(-45.0815277, 2.56648827, -23.014679)
  5115. o50.Rotation = Vector3.new(-0.00189076073, 90, 0)
  5116. o50.Anchored = true
  5117. o50.FormFactor = Enum.FormFactor.Symmetric
  5118. o50.Size = Vector3.new(1, 1, 1)
  5119. o50.CFrame = CFrame.new(-45.0815277, 2.56648827, -23.014679, -3.19999999e-005, 0, 1, -3.30000003e-005, 1, -1.05599995e-009, -1, -3.30000003e-005, -3.19999999e-005)
  5120. o50.BottomSurface = Enum.SurfaceType.Smooth
  5121. o50.TopSurface = Enum.SurfaceType.Smooth
  5122. o50.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5123. o51.Parent = o50
  5124. o51.Texture = "http://www.roblox.com/asset/?id=48228292"
  5125. o51.Face = Enum.NormalId.Bottom
  5126. o52.Parent = o50
  5127. o52.Scale = Vector3.new(0.162962973, 0.0651851818, 0.228148147)
  5128. o53.Parent = o1
  5129. o53.BrickColor = BrickColor.new("Dark stone grey")
  5130. o53.Transparency = 0.75
  5131. o53.Position = Vector3.new(-44.9205246, 2.85942245, -23.0146713)
  5132. o53.Rotation = Vector3.new(-0.00189076073, 90, 0)
  5133. o53.Anchored = true
  5134. o53.FormFactor = Enum.FormFactor.Symmetric
  5135. o53.Size = Vector3.new(1, 1, 1)
  5136. o53.CFrame = CFrame.new(-44.9205246, 2.85942245, -23.0146713, -3.19999999e-005, 0, 1, -3.30000003e-005, 1, -1.05599995e-009, -1, -3.30000003e-005, -3.19999999e-005)
  5137. o53.BottomSurface = Enum.SurfaceType.Smooth
  5138. o53.TopSurface = Enum.SurfaceType.Smooth
  5139. o53.Color = Color3.new(0.388235, 0.372549, 0.384314)
  5140. o54.Parent = o53
  5141. o54.Offset = Vector3.new(0, -0.17925927, 0)
  5142. o54.Scale = Vector3.new(0.312888891, 0.195555568, 0.0162962954)
  5143. o55.Parent = o1
  5144. o55.BrickColor = BrickColor.new("Really black")
  5145. o55.Position = Vector3.new(-44.9195099, 2.76146626, -22.8646927)
  5146. o55.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  5147. o55.Anchored = true
  5148. o55.FormFactor = Enum.FormFactor.Plate
  5149. o55.Size = Vector3.new(1, 0.400000006, 1)
  5150. o55.CFrame = CFrame.new(-44.9195099, 2.76146626, -22.8646927, -1, 2.99999992e-005, -9.89999971e-010, 0, 3.30000003e-005, 1, 2.99999992e-005, 1, -3.30000003e-005)
  5151. o55.BottomSurface = Enum.SurfaceType.Smooth
  5152. o55.TopSurface = Enum.SurfaceType.Smooth
  5153. o55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5154. o56.Parent = o55
  5155. o56.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  5156. o57.Parent = o1
  5157. o57.BrickColor = BrickColor.new("Really black")
  5158. o57.Position = Vector3.new(-44.9195099, 2.76146626, -23.1646233)
  5159. o57.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  5160. o57.Anchored = true
  5161. o57.FormFactor = Enum.FormFactor.Plate
  5162. o57.Size = Vector3.new(1, 0.400000006, 1)
  5163. o57.CFrame = CFrame.new(-44.9195099, 2.76146626, -23.1646233, -1, 2.99999992e-005, -9.89999971e-010, 0, 3.30000003e-005, 1, 2.99999992e-005, 1, -3.30000003e-005)
  5164. o57.BottomSurface = Enum.SurfaceType.Smooth
  5165. o57.TopSurface = Enum.SurfaceType.Smooth
  5166. o57.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5167. o58.Parent = o57
  5168. o58.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  5169. o59.Parent = o1
  5170. o59.BrickColor = BrickColor.new("Really black")
  5171. o59.Position = Vector3.new(-44.9195099, 2.63145828, -23.1646233)
  5172. o59.Rotation = Vector3.new(89.9981079, 5.6722822e-008, -0.00171887339)
  5173. o59.Anchored = true
  5174. o59.FormFactor = Enum.FormFactor.Plate
  5175. o59.Size = Vector3.new(1, 0.400000006, 1)
  5176. o59.CFrame = CFrame.new(-44.9195099, 2.63145828, -23.1646233, 1, 2.99999992e-005, 9.89999971e-010, 0, 3.30000003e-005, -1, -2.99999992e-005, 1, 3.30000003e-005)
  5177. o59.BottomSurface = Enum.SurfaceType.Smooth
  5178. o59.TopSurface = Enum.SurfaceType.Smooth
  5179. o59.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5180. o60.Parent = o59
  5181. o60.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  5182. o60.MeshType = Enum.MeshType.Wedge
  5183. o61.Parent = o1
  5184. o61.BrickColor = BrickColor.new("Really black")
  5185. o61.Position = Vector3.new(-44.920517, 2.79448128, -22.8716507)
  5186. o61.Rotation = Vector3.new(89.9981079, 5.6722822e-008, -0.00171887339)
  5187. o61.Anchored = true
  5188. o61.FormFactor = Enum.FormFactor.Plate
  5189. o61.Size = Vector3.new(1, 0.400000006, 1)
  5190. o61.CFrame = CFrame.new(-44.920517, 2.79448128, -22.8716507, 1, 2.99999992e-005, 9.89999971e-010, 0, 3.30000003e-005, -1, -2.99999992e-005, 1, 3.30000003e-005)
  5191. o61.BottomSurface = Enum.SurfaceType.Smooth
  5192. o61.TopSurface = Enum.SurfaceType.Smooth
  5193. o61.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5194. o62.Parent = o61
  5195. o62.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  5196. o62.MeshType = Enum.MeshType.Wedge
  5197. o63.Parent = o1
  5198. o63.BrickColor = BrickColor.new("Really black")
  5199. o63.Position = Vector3.new(-44.9205246, 2.61543727, -23.1846619)
  5200. o63.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, 0.00171887339)
  5201. o63.Anchored = true
  5202. o63.FormFactor = Enum.FormFactor.Plate
  5203. o63.Size = Vector3.new(1, 0.400000006, 1)
  5204. o63.CFrame = CFrame.new(-44.9205246, 2.61543727, -23.1846619, 1, -2.99999992e-005, -9.89999971e-010, 0, -3.30000003e-005, 1, -2.99999992e-005, -1, -3.30000003e-005)
  5205. o63.BottomSurface = Enum.SurfaceType.Smooth
  5206. o63.TopSurface = Enum.SurfaceType.Smooth
  5207. o63.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5208. o64.Parent = o63
  5209. o64.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0651851818)
  5210. o64.MeshType = Enum.MeshType.Wedge
  5211. o65.Parent = o1
  5212. o65.BrickColor = BrickColor.new("Really black")
  5213. o65.Position = Vector3.new(-44.9185371, 2.7614634, -22.8846512)
  5214. o65.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, 0.00171887339)
  5215. o65.Anchored = true
  5216. o65.FormFactor = Enum.FormFactor.Plate
  5217. o65.Size = Vector3.new(1, 0.400000006, 1)
  5218. o65.CFrame = CFrame.new(-44.9185371, 2.7614634, -22.8846512, 1, -2.99999992e-005, -9.89999971e-010, 0, -3.30000003e-005, 1, -2.99999992e-005, -1, -3.30000003e-005)
  5219. o65.BottomSurface = Enum.SurfaceType.Smooth
  5220. o65.TopSurface = Enum.SurfaceType.Smooth
  5221. o65.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5222. o66.Parent = o65
  5223. o66.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  5224. o66.MeshType = Enum.MeshType.Wedge
  5225. o67.Parent = o1
  5226. o67.BrickColor = BrickColor.new("Really red")
  5227. o67.Position = Vector3.new(-44.920517, 2.82747245, -23.0146713)
  5228. o67.Rotation = Vector3.new(89.9981079, 6.05043411e-008, -90.0018311)
  5229. o67.Anchored = true
  5230. o67.FormFactor = Enum.FormFactor.Symmetric
  5231. o67.Size = Vector3.new(1, 1, 1)
  5232. o67.CFrame = CFrame.new(-44.920517, 2.82747245, -23.0146713, -3.19999999e-005, 1, 1.05599995e-009, -3.30000003e-005, 0, -1, -1, -3.19999999e-005, 3.30000003e-005)
  5233. o67.BottomSurface = Enum.SurfaceType.Smooth
  5234. o67.TopSurface = Enum.SurfaceType.Smooth
  5235. o67.Color = Color3.new(1, 0, 0)
  5236. o68.Parent = o67
  5237. o68.Offset = Vector3.new(0, 0, 0.146666661)
  5238. o68.Scale = Vector3.new(0.0260740742, 0, 0.0130370371)
  5239. o69.Name = "Zoom"
  5240. o69.Parent = o1
  5241. o69.Material = Enum.Material.SmoothPlastic
  5242. o69.Transparency = 1
  5243. o69.Position = Vector3.new(-45.6629868, 2.71499324, -23.013567)
  5244. o69.Rotation = Vector3.new(-90, -88.3242722, -90)
  5245. o69.Anchored = true
  5246. o69.FormFactor = Enum.FormFactor.Custom
  5247. o69.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5248. o69.CFrame = CFrame.new(-45.6629868, 2.71499324, -23.013567, 0, 0.0292440113, -0.999572337, 0, 0.999572337, 0.0292440113, 1, 0, 0)
  5249. o69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5250. o69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5251. o69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5252. o69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5253. o69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5254. o69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5255. o70.Parent = o69
  5256. o70.Scale = Vector3.new(0.142307684, 0.170769244, 0.284615368)
  5257. ZoomFOV = 70
  5258. elseif Sight == "SUSAT" then
  5259. o2 = Instance.new("Part")
  5260. o3 = Instance.new("SpecialMesh")
  5261. o4 = Instance.new("Part")
  5262. o5 = Instance.new("SpecialMesh")
  5263. o6 = Instance.new("Part")
  5264. o7 = Instance.new("SpecialMesh")
  5265. o8 = Instance.new("Part")
  5266. o9 = Instance.new("SpecialMesh")
  5267. o10 = Instance.new("Part")
  5268. o11 = Instance.new("SpecialMesh")
  5269. o12 = Instance.new("Part")
  5270. o13 = Instance.new("SpecialMesh")
  5271. o14 = Instance.new("Part")
  5272. o15 = Instance.new("SpecialMesh")
  5273. o16 = Instance.new("Part")
  5274. o17 = Instance.new("SpecialMesh")
  5275. o18 = Instance.new("Part")
  5276. o19 = Instance.new("SpecialMesh")
  5277. o20 = Instance.new("Part")
  5278. o21 = Instance.new("SpecialMesh")
  5279. o22 = Instance.new("Part")
  5280. o23 = Instance.new("BlockMesh")
  5281. o2.Parent = o1
  5282. o2.BrickColor = BrickColor.new("Really black")
  5283. o2.Position = Vector3.new(-45.1861954, 2.5412097, -23.016592)
  5284. o2.Rotation = Vector3.new(0.00237952056, 0.109017432, -0.497739434)
  5285. o2.CanCollide = false
  5286. o2.FormFactor = Enum.FormFactor.Custom
  5287. o2.Size = Vector3.new(0.650000036, 0.200000003, 0.200000003)
  5288. o2.CFrame = CFrame.new(-45.1861954, 2.5412097, -23.016592, 0.999960482, 0.00868706685, 0.00190271193, -0.00868700352, 0.99996233, -4.15303948e-005, -0.00190300087, 2.49998866e-005, 0.999998212)
  5289. o2.BottomSurface = Enum.SurfaceType.Smooth
  5290. o2.TopSurface = Enum.SurfaceType.Smooth
  5291. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5292. o3.Parent = o2
  5293. o3.Scale = Vector3.new(1, 0.649999976, 1)
  5294. o3.MeshType = Enum.MeshType.Brick
  5295. o4.Parent = o1
  5296. o4.BrickColor = BrickColor.new("Really black")
  5297. o4.Position = Vector3.new(-45.1765442, 2.58076906, -23.0162792)
  5298. o4.Rotation = Vector3.new(0.00237461296, 0.109017119, -0.497632325)
  5299. o4.CanCollide = false
  5300. o4.FormFactor = Enum.FormFactor.Custom
  5301. o4.Size = Vector3.new(0.200000003, 0.24000001, 0.200000003)
  5302. o4.CFrame = CFrame.new(-45.1765442, 2.58076906, -23.0162792, 0.999960482, 0.00868519768, 0.00190270646, -0.00868513249, 0.999961793, -4.14447422e-005, -0.00190299295, 2.49179648e-005, 0.999998212)
  5303. o4.BottomSurface = Enum.SurfaceType.Smooth
  5304. o4.TopSurface = Enum.SurfaceType.Smooth
  5305. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5306. o5.Parent = o4
  5307. o5.Scale = Vector3.new(1, 0.75, 0.699999988)
  5308. o5.MeshType = Enum.MeshType.Brick
  5309. o6.Parent = o1
  5310. o6.BrickColor = BrickColor.new("Really red")
  5311. o6.Position = Vector3.new(-45.254982, 2.67309928, -23.0156555)
  5312. o6.Rotation = Vector3.new(77.6394653, -89.4906311, 77.6413651)
  5313. o6.CanCollide = false
  5314. o6.FormFactor = Enum.FormFactor.Custom
  5315. o6.Size = Vector3.new(0.200000048, 0.200000003, 0.200000003)
  5316. o6.CFrame = CFrame.new(-45.254982, 2.67309928, -23.0156555, 0.00190301181, -0.00868528709, -0.999960482, 4.1445368e-005, 0.999962091, -0.0086852219, 0.999998212, -2.4915631e-005, 0.00190329948)
  5317. o6.BottomSurface = Enum.SurfaceType.Smooth
  5318. o6.TopSurface = Enum.SurfaceType.Smooth
  5319. o6.Color = Color3.new(1, 0, 0)
  5320. o7.Parent = o6
  5321. o7.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5322. o7.Scale = Vector3.new(0.0799999982, 0.800000012, 0.0799999982)
  5323. o7.MeshType = Enum.MeshType.Sphere
  5324. o8.Parent = o1
  5325. o8.BrickColor = BrickColor.new("Really black")
  5326. o8.Position = Vector3.new(-45.4392166, 2.7532146, -23.0155544)
  5327. o8.Rotation = Vector3.new(-90, 0, 90)
  5328. o8.CanCollide = false
  5329. o8.FormFactor = Enum.FormFactor.Custom
  5330. o8.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5331. o8.CFrame = CFrame.new(-45.4392166, 2.7532146, -23.0155544, 0, -1, 0, 0, 0, 1, -1, 0, 0)
  5332. o8.BottomSurface = Enum.SurfaceType.Smooth
  5333. o8.TopSurface = Enum.SurfaceType.Smooth
  5334. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5335. o9.Parent = o8
  5336. o9.MeshId = "http://www.roblox.com/asset/?id=16659502"
  5337. o9.Scale = Vector3.new(0.200000003, 0.400000006, 0.200000003)
  5338. o9.MeshType = Enum.MeshType.FileMesh
  5339. o10.Parent = o1
  5340. o10.BrickColor = BrickColor.new("Really black")
  5341. o10.Position = Vector3.new(-45.1811943, 2.75321054, -23.0156231)
  5342. o10.Rotation = Vector3.new(77.6419296, -89.4910126, 77.6437988)
  5343. o10.CanCollide = false
  5344. o10.FormFactor = Enum.FormFactor.Custom
  5345. o10.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5346. o10.CFrame = CFrame.new(-45.1811943, 2.75321054, -23.0156231, 0.0019030004, -0.00868700352, -0.999960542, 4.10000102e-005, 0.99996233, -0.00868694112, 0.999998212, -2.44671373e-005, 0.00190328481)
  5347. o10.BottomSurface = Enum.SurfaceType.Smooth
  5348. o10.TopSurface = Enum.SurfaceType.Smooth
  5349. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5350. o11.Parent = o10
  5351. o11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5352. o11.Scale = Vector3.new(0.200000003, 0.200000003, 3)
  5353. o11.MeshType = Enum.MeshType.FileMesh
  5354. o12.Parent = o1
  5355. o12.BrickColor = BrickColor.new("Really black")
  5356. o12.Position = Vector3.new(-45.4522209, 2.7532146, -23.0155544)
  5357. o12.Rotation = Vector3.new(102.362206, 89.4906311, -102.360336)
  5358. o12.CanCollide = false
  5359. o12.FormFactor = Enum.FormFactor.Custom
  5360. o12.Size = Vector3.new(0.200000048, 0.200000003, 0.200000003)
  5361. o12.CFrame = CFrame.new(-45.4522209, 2.7532146, -23.0155544, -0.0019030004, 0.00868400373, 0.999960482, 4.10000102e-005, 0.99996233, -0.0086839404, -0.999998212, 2.44728471e-005, -0.00190328457)
  5362. o12.BottomSurface = Enum.SurfaceType.Smooth
  5363. o12.TopSurface = Enum.SurfaceType.Smooth
  5364. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5365. o13.Parent = o12
  5366. o13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5367. o13.Scale = Vector3.new(0.25, 0.25, 2.5999999)
  5368. o13.MeshType = Enum.MeshType.FileMesh
  5369. o14.Parent = o1
  5370. o14.BrickColor = BrickColor.new("Mid gray")
  5371. o14.Reflectance = 0.10000000149012
  5372. o14.Transparency = 0.89999997615814
  5373. o14.Position = Vector3.new(-45.3052483, 2.75419259, -23.0156231)
  5374. o14.Rotation = Vector3.new(89.9985962, 0.497508794, 89.8909607)
  5375. o14.CanCollide = false
  5376. o14.FormFactor = Enum.FormFactor.Custom
  5377. o14.Size = Vector3.new(0.200000003, 0.730000019, 0.200000003)
  5378. o14.CFrame = CFrame.new(-45.3052483, 2.75419259, -23.0156231, 0.0019030004, -0.999960542, 0.0086830575, 4.10000102e-005, -0.00868299603, -0.99996233, 0.999998212, 0.00190328469, 2.44746461e-005)
  5379. o14.BottomSurface = Enum.SurfaceType.Smooth
  5380. o14.TopSurface = Enum.SurfaceType.Smooth
  5381. o14.Color = Color3.new(0.803922, 0.803922, 0.803922)
  5382. o15.Parent = o14
  5383. o16.Parent = o1
  5384. o16.BrickColor = BrickColor.new("Really black")
  5385. o16.Position = Vector3.new(-45.2762527, 2.75321364, -23.015564)
  5386. o16.Rotation = Vector3.new(102.362206, 89.4910126, -102.360336)
  5387. o16.CanCollide = false
  5388. o16.FormFactor = Enum.FormFactor.Custom
  5389. o16.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5390. o16.CFrame = CFrame.new(-45.2762527, 2.75321364, -23.015564, -0.0019030004, 0.00868400373, 0.999960542, 4.10000102e-005, 0.99996233, -0.00868394226, -0.999998212, 2.44728471e-005, -0.00190328469)
  5391. o16.BottomSurface = Enum.SurfaceType.Smooth
  5392. o16.TopSurface = Enum.SurfaceType.Smooth
  5393. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5394. o17.Parent = o16
  5395. o17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5396. o17.Scale = Vector3.new(0.189999998, 0.189999998, 3)
  5397. o17.MeshType = Enum.MeshType.FileMesh
  5398. o18.Parent = o1
  5399. o18.BrickColor = BrickColor.new("Really black")
  5400. o18.Position = Vector3.new(-44.9112358, 2.77421069, -23.015625)
  5401. o18.Rotation = Vector3.new(-90, -7.49987459, 90)
  5402. o18.CanCollide = false
  5403. o18.FormFactor = Enum.FormFactor.Custom
  5404. o18.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5405. o18.CFrame = CFrame.new(-44.9112358, 2.77421069, -23.015625, 0, -0.991445243, -0.130524024, 0, -0.130524024, 0.991445243, -1, 0, 0)
  5406. o18.BottomSurface = Enum.SurfaceType.Smooth
  5407. o18.TopSurface = Enum.SurfaceType.Smooth
  5408. o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5409. o19.Parent = o18
  5410. o19.MeshId = "http://www.roblox.com/asset/?id=16659502"
  5411. o19.Scale = Vector3.new(0.25, 1, 0.25)
  5412. o19.MeshType = Enum.MeshType.FileMesh
  5413. o20.Parent = o1
  5414. o20.BrickColor = BrickColor.new("Really black")
  5415. o20.Position = Vector3.new(-45.6412468, 2.7532146, -23.0156231)
  5416. o20.Rotation = Vector3.new(-90, 2.50009346, -90)
  5417. o20.CanCollide = false
  5418. o20.FormFactor = Enum.FormFactor.Custom
  5419. o20.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5420. o20.CFrame = CFrame.new(-45.6412468, 2.7532146, -23.0156231, 0, 0.999048233, 0.0436210148, 0, -0.0436210111, 0.999048233, 1, 0, 0)
  5421. o20.BottomSurface = Enum.SurfaceType.Smooth
  5422. o20.TopSurface = Enum.SurfaceType.Smooth
  5423. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5424. o21.Parent = o20
  5425. o21.MeshId = "http://www.roblox.com/asset/?id=16659502"
  5426. o21.Scale = Vector3.new(0.200000003, 0.100000001, 0.200000003)
  5427. o21.MeshType = Enum.MeshType.FileMesh
  5428. o22.Name = "Zoom"
  5429. o22.Parent = o1
  5430. o22.Material = Enum.Material.SmoothPlastic
  5431. o22.Transparency = 1
  5432. o22.Position = Vector3.new(-45.6619682, 2.74977922, -23.013567)
  5433. o22.Rotation = Vector3.new(-90, -88.3242722, -90)
  5434. o22.Anchored = true
  5435. o22.FormFactor = Enum.FormFactor.Custom
  5436. o22.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5437. o22.CFrame = CFrame.new(-45.6619682, 2.74977922, -23.013567, 0, 0.0292440113, -0.999572337, 0, 0.999572337, 0.0292440113, 1, 0, 0)
  5438. o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5439. o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5440. o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5441. o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5442. o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5443. o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5444. o23.Parent = o22
  5445. o23.Scale = Vector3.new(0.142307684, 0.170769244, 0.284615368)
  5446. ZoomFOV = 10
  5447. elseif Sight == "C79" then
  5448. o2 = Instance.new("Part")
  5449. o3 = Instance.new("SpecialMesh")
  5450. o4 = Instance.new("Part")
  5451. o5 = Instance.new("SpecialMesh")
  5452. o6 = Instance.new("Part")
  5453. o7 = Instance.new("CylinderMesh")
  5454. o8 = Instance.new("Part")
  5455. o9 = Instance.new("CylinderMesh")
  5456. o10 = Instance.new("Part")
  5457. o11 = Instance.new("SpecialMesh")
  5458. o12 = Instance.new("Part")
  5459. o13 = Instance.new("CylinderMesh")
  5460. o14 = Instance.new("Part")
  5461. o15 = Instance.new("BlockMesh")
  5462. o16 = Instance.new("Part")
  5463. o17 = Instance.new("BlockMesh")
  5464. o18 = Instance.new("Part")
  5465. o19 = Instance.new("BlockMesh")
  5466. o20 = Instance.new("Part")
  5467. o21 = Instance.new("CylinderMesh")
  5468. o22 = Instance.new("Part")
  5469. o23 = Instance.new("CylinderMesh")
  5470. o24 = Instance.new("Part")
  5471. o25 = Instance.new("BlockMesh")
  5472. o26 = Instance.new("Part")
  5473. o27 = Instance.new("CylinderMesh")
  5474. o28 = Instance.new("Part")
  5475. o29 = Instance.new("BlockMesh")
  5476. o30 = Instance.new("Part")
  5477. o31 = Instance.new("BlockMesh")
  5478. o32 = Instance.new("Part")
  5479. o33 = Instance.new("SpecialMesh")
  5480. o34 = Instance.new("Part")
  5481. o35 = Instance.new("CylinderMesh")
  5482. o36 = Instance.new("Part")
  5483. o37 = Instance.new("CylinderMesh")
  5484. o38 = Instance.new("Part")
  5485. o39 = Instance.new("SpecialMesh")
  5486. o40 = Instance.new("Part")
  5487. o41 = Instance.new("BlockMesh")
  5488. o42 = Instance.new("Part")
  5489. o43 = Instance.new("CylinderMesh")
  5490. o44 = Instance.new("Part")
  5491. o45 = Instance.new("SpecialMesh")
  5492. o46 = Instance.new("Part")
  5493. o47 = Instance.new("BlockMesh")
  5494. o2.Parent = o1
  5495. o2.BrickColor = BrickColor.new("Really black")
  5496. o2.Position = Vector3.new(-45.5156708, 2.81176472, -23.0132618)
  5497. o2.Rotation = Vector3.new(179.997528, 90, 0)
  5498. o2.Anchored = true
  5499. o2.CanCollide = false
  5500. o2.FormFactor = Enum.FormFactor.Custom
  5501. o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5502. o2.CFrame = CFrame.new(-45.5156708, 2.81176472, -23.0132618, 3.30000003e-005, 0, 1, 4.3e-005, -1, -1.41900003e-009, 1, 4.3e-005, -3.30000003e-005)
  5503. o2.BottomSurface = Enum.SurfaceType.Smooth
  5504. o2.TopSurface = Enum.SurfaceType.Smooth
  5505. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5506. o3.Parent = o2
  5507. o3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5508. o3.Scale = Vector3.new(0.246153846, 0.246153846, 1.07692313)
  5509. o3.MeshType = Enum.MeshType.FileMesh
  5510. o4.Parent = o1
  5511. o4.BrickColor = BrickColor.new("Really black")
  5512. o4.Position = Vector3.new(-45.2076645, 2.81176472, -23.0152378)
  5513. o4.Rotation = Vector3.new(179.997528, 90, 0)
  5514. o4.Anchored = true
  5515. o4.CanCollide = false
  5516. o4.FormFactor = Enum.FormFactor.Custom
  5517. o4.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5518. o4.CFrame = CFrame.new(-45.2076645, 2.81176472, -23.0152378, 3.30000003e-005, 0, 1, 4.3e-005, -1, -1.41900003e-009, 1, 4.3e-005, -3.30000003e-005)
  5519. o4.BottomSurface = Enum.SurfaceType.Smooth
  5520. o4.TopSurface = Enum.SurfaceType.Smooth
  5521. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5522. o5.Parent = o4
  5523. o5.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5524. o5.Scale = Vector3.new(0.246153846, 0.246153846, 3.53846145)
  5525. o5.MeshType = Enum.MeshType.FileMesh
  5526. o6.Parent = o1
  5527. o6.BrickColor = BrickColor.new("Really black")
  5528. o6.Position = Vector3.new(-45.3536568, 2.6807878, -23.0142326)
  5529. o6.Rotation = Vector3.new(-0.00252101431, 0.00189076073, -180)
  5530. o6.Anchored = true
  5531. o6.CanCollide = false
  5532. o6.FormFactor = Enum.FormFactor.Custom
  5533. o6.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5534. o6.CFrame = CFrame.new(-45.3536568, 2.6807878, -23.0142326, -1, 1.45200008e-009, 3.30000003e-005, 0, -1, 4.40000003e-005, 3.30000003e-005, 4.40000003e-005, 1)
  5535. o6.BottomSurface = Enum.SurfaceType.Smooth
  5536. o6.TopSurface = Enum.SurfaceType.Smooth
  5537. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5538. o7.Parent = o6
  5539. o7.Scale = Vector3.new(0.769230783, 0.153846145, 0.769230783)
  5540. o8.Parent = o1
  5541. o8.BrickColor = BrickColor.new("Really black")
  5542. o8.Position = Vector3.new(-45.3476791, 2.6157527, -23.0142155)
  5543. o8.Rotation = Vector3.new(-0.00246371864, 0.00189076073, -180)
  5544. o8.Anchored = true
  5545. o8.CanCollide = false
  5546. o8.FormFactor = Enum.FormFactor.Custom
  5547. o8.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5548. o8.CFrame = CFrame.new(-45.3476791, 2.6157527, -23.0142155, -1, 1.41900003e-009, 3.30000003e-005, 0, -1, 4.3e-005, 3.30000003e-005, 4.3e-005, 1)
  5549. o8.BottomSurface = Enum.SurfaceType.Smooth
  5550. o8.TopSurface = Enum.SurfaceType.Smooth
  5551. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5552. o9.Parent = o8
  5553. o9.Scale = Vector3.new(0.692307711, 0.692307711, 0.692307711)
  5554. o10.Parent = o1
  5555. o10.BrickColor = BrickColor.new("Really black")
  5556. o10.Reflectance = 0.30000001192093
  5557. o10.Transparency = 0.39999997615814
  5558. o10.Position = Vector3.new(-45.2016716, 2.81176472, -23.0132561)
  5559. o10.Rotation = Vector3.new(89.9975357, 8.13027157e-008, 89.9981079)
  5560. o10.Anchored = true
  5561. o10.CanCollide = false
  5562. o10.FormFactor = Enum.FormFactor.Custom
  5563. o10.Size = Vector3.new(0.215384617, 0.800000012, 0.215384617)
  5564. o10.CFrame = CFrame.new(-45.2016716, 2.81176472, -23.0132561, 3.30000003e-005, -1, 1.41900003e-009, 4.3e-005, 0, -1, 1, 3.30000003e-005, 4.3e-005)
  5565. o10.BottomSurface = Enum.SurfaceType.Smooth
  5566. o10.TopSurface = Enum.SurfaceType.Smooth
  5567. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5568. o11.Parent = o10
  5569. o11.Scale = Vector3.new(1.10000002, 1, 1.10000002)
  5570. o12.Parent = o1
  5571. o12.Material = Enum.Material.SmoothPlastic
  5572. o12.BrickColor = BrickColor.new("Really black")
  5573. o12.Position = Vector3.new(-45.3476791, 2.6157527, -23.0142155)
  5574. o12.Rotation = Vector3.new(-0.00252101431, 0.00189076073, -180)
  5575. o12.Anchored = true
  5576. o12.CanCollide = false
  5577. o12.FormFactor = Enum.FormFactor.Custom
  5578. o12.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5579. o12.CFrame = CFrame.new(-45.3476791, 2.6157527, -23.0142155, -1, 1.45200008e-009, 3.30000003e-005, 0, -1, 4.40000003e-005, 3.30000003e-005, 4.40000003e-005, 1)
  5580. o12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5581. o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5582. o12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5583. o12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5584. o12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5585. o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5586. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5587. o13.Parent = o12
  5588. o13.Scale = Vector3.new(0.769230783, 0.153846145, 0.769230783)
  5589. o14.Parent = o1
  5590. o14.BrickColor = BrickColor.new("Really black")
  5591. o14.Position = Vector3.new(-45.0166855, 2.87274075, -23.0132542)
  5592. o14.Rotation = Vector3.new(-90.0024643, -8.13027157e-008, 90.0018921)
  5593. o14.Anchored = true
  5594. o14.CanCollide = false
  5595. o14.FormFactor = Enum.FormFactor.Custom
  5596. o14.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5597. o14.CFrame = CFrame.new(-45.0166855, 2.87274075, -23.0132542, -3.30000003e-005, -1, -1.41900003e-009, -4.3e-005, 0, 1, -1, 3.30000003e-005, -4.3e-005)
  5598. o14.BottomSurface = Enum.SurfaceType.Smooth
  5599. o14.TopSurface = Enum.SurfaceType.Smooth
  5600. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5601. o15.Parent = o14
  5602. o15.Scale = Vector3.new(0.0384615362, 0.153846145, 0.461538464)
  5603. o16.Parent = o1
  5604. o16.BrickColor = BrickColor.new("Really black")
  5605. o16.Position = Vector3.new(-45.0616646, 2.63177776, -23.0142288)
  5606. o16.Rotation = Vector3.new(179.997482, -0.00189076073, 90)
  5607. o16.Anchored = true
  5608. o16.CanCollide = false
  5609. o16.FormFactor = Enum.FormFactor.Custom
  5610. o16.Size = Vector3.new(0.200000003, 0.523076952, 0.200000003)
  5611. o16.CFrame = CFrame.new(-45.0616646, 2.63177776, -23.0142288, 0, -1, -3.30000003e-005, -1, 1.45200008e-009, -4.40000003e-005, 4.40000003e-005, 3.30000003e-005, -1)
  5612. o16.BottomSurface = Enum.SurfaceType.Smooth
  5613. o16.TopSurface = Enum.SurfaceType.Smooth
  5614. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5615. o17.Parent = o16
  5616. o17.Scale = Vector3.new(0.615384579, 1, 0.769230783)
  5617. o18.Parent = o1
  5618. o18.BrickColor = BrickColor.new("Really black")
  5619. o18.Position = Vector3.new(-45.0166855, 2.74978971, -23.0132542)
  5620. o18.Rotation = Vector3.new(-90.0024643, -8.13027157e-008, 90.0018921)
  5621. o18.Anchored = true
  5622. o18.CanCollide = false
  5623. o18.FormFactor = Enum.FormFactor.Custom
  5624. o18.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5625. o18.CFrame = CFrame.new(-45.0166855, 2.74978971, -23.0132542, -3.30000003e-005, -1, -1.41900003e-009, -4.3e-005, 0, 1, -1, 3.30000003e-005, -4.3e-005)
  5626. o18.BottomSurface = Enum.SurfaceType.Smooth
  5627. o18.TopSurface = Enum.SurfaceType.Smooth
  5628. o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5629. o19.Parent = o18
  5630. o19.Scale = Vector3.new(0.0384615362, 0.153846145, 0.461538464)
  5631. o20.Parent = o1
  5632. o20.Material = Enum.Material.SmoothPlastic
  5633. o20.BrickColor = BrickColor.new("Really black")
  5634. o20.Position = Vector3.new(-45.1856918, 2.55477977, -22.8992996)
  5635. o20.Rotation = Vector3.new(-90.0024643, -90, 0)
  5636. o20.Anchored = true
  5637. o20.CanCollide = false
  5638. o20.FormFactor = Enum.FormFactor.Custom
  5639. o20.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5640. o20.CFrame = CFrame.new(-45.1856918, 2.55477977, -22.8992996, 0, -3.30000003e-005, -1, 1, -4.3e-005, 1.41900003e-009, -4.3e-005, -1, 3.30000003e-005)
  5641. o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5642. o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5643. o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5644. o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5645. o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5646. o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5647. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5648. o21.Parent = o20
  5649. o21.Scale = Vector3.new(0.461538464, 0.307692289, 0.461538464)
  5650. o22.Parent = o1
  5651. o22.BrickColor = BrickColor.new("Bright red")
  5652. o22.Position = Vector3.new(-45.0166817, 2.81176472, -23.0132523)
  5653. o22.Rotation = Vector3.new(89.9975357, 8.13027157e-008, 89.9981079)
  5654. o22.Anchored = true
  5655. o22.CanCollide = false
  5656. o22.FormFactor = Enum.FormFactor.Custom
  5657. o22.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5658. o22.CFrame = CFrame.new(-45.0166817, 2.81176472, -23.0132523, 3.30000003e-005, -1, 1.41900003e-009, 4.3e-005, 0, -1, 1, 3.30000003e-005, 4.3e-005)
  5659. o22.BottomSurface = Enum.SurfaceType.Smooth
  5660. o22.TopSurface = Enum.SurfaceType.Smooth
  5661. o22.Color = Color3.new(0.768628, 0.156863, 0.109804)
  5662. o23.Parent = o22
  5663. o23.Scale = Vector3.new(0.0769230723, 0.153846145, 0.0769230723)
  5664. o24.Parent = o1
  5665. o24.BrickColor = BrickColor.new("Really black")
  5666. o24.Position = Vector3.new(-45.0166817, 2.81176472, -23.075264)
  5667. o24.Rotation = Vector3.new(179.997482, -0.00189076073, 90)
  5668. o24.Anchored = true
  5669. o24.CanCollide = false
  5670. o24.FormFactor = Enum.FormFactor.Custom
  5671. o24.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5672. o24.CFrame = CFrame.new(-45.0166817, 2.81176472, -23.075264, 0, -1, -3.30000003e-005, -1, 1.45200008e-009, -4.40000003e-005, 4.40000003e-005, 3.30000003e-005, -1)
  5673. o24.BottomSurface = Enum.SurfaceType.Smooth
  5674. o24.TopSurface = Enum.SurfaceType.Smooth
  5675. o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5676. o25.Parent = o24
  5677. o25.Scale = Vector3.new(0.0384615362, 0.153846145, 0.461538464)
  5678. o26.Parent = o1
  5679. o26.Material = Enum.Material.SmoothPlastic
  5680. o26.BrickColor = BrickColor.new("Really black")
  5681. o26.Position = Vector3.new(-45.1846809, 2.55478072, -23.1292896)
  5682. o26.Rotation = Vector3.new(-90.0024643, -90, 0)
  5683. o26.Anchored = true
  5684. o26.CanCollide = false
  5685. o26.FormFactor = Enum.FormFactor.Custom
  5686. o26.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5687. o26.CFrame = CFrame.new(-45.1846809, 2.55478072, -23.1292896, 0, -3.30000003e-005, -1, 1, -4.3e-005, 1.41900003e-009, -4.3e-005, -1, 3.30000003e-005)
  5688. o26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5689. o26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5690. o26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5691. o26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5692. o26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5693. o26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5694. o26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5695. o27.Parent = o26
  5696. o27.Scale = Vector3.new(0.461538464, 0.307692289, 0.461538464)
  5697. o28.Parent = o1
  5698. o28.BrickColor = BrickColor.new("Really black")
  5699. o28.Position = Vector3.new(-45.0156746, 2.81176472, -22.9512405)
  5700. o28.Rotation = Vector3.new(179.997482, -0.00189076073, 90)
  5701. o28.Anchored = true
  5702. o28.CanCollide = false
  5703. o28.FormFactor = Enum.FormFactor.Custom
  5704. o28.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5705. o28.CFrame = CFrame.new(-45.0156746, 2.81176472, -22.9512405, 0, -1, -3.30000003e-005, -1, 1.45200008e-009, -4.40000003e-005, 4.40000003e-005, 3.30000003e-005, -1)
  5706. o28.BottomSurface = Enum.SurfaceType.Smooth
  5707. o28.TopSurface = Enum.SurfaceType.Smooth
  5708. o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5709. o29.Parent = o28
  5710. o29.Scale = Vector3.new(0.0384615362, 0.153846145, 0.461538464)
  5711. o30.Parent = o1
  5712. o30.BrickColor = BrickColor.new("Really black")
  5713. o30.Position = Vector3.new(-45.1096992, 2.5397718, -23.0132465)
  5714. o30.Rotation = Vector3.new(179.997528, -0.00189076073, 90)
  5715. o30.Anchored = true
  5716. o30.CanCollide = false
  5717. o30.FormFactor = Enum.FormFactor.Custom
  5718. o30.Size = Vector3.new(0.200000003, 0.615384638, 0.200000003)
  5719. o30.CFrame = CFrame.new(-45.1096992, 2.5397718, -23.0132465, 0, -1, -3.30000003e-005, -1, 1.41900003e-009, -4.3e-005, 4.3e-005, 3.30000003e-005, -1)
  5720. o30.BottomSurface = Enum.SurfaceType.Smooth
  5721. o30.TopSurface = Enum.SurfaceType.Smooth
  5722. o30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5723. o31.Parent = o30
  5724. o31.Scale = Vector3.new(0.307692289, 1, 0.846153855)
  5725. o32.Parent = o1
  5726. o32.BrickColor = BrickColor.new("Really black")
  5727. o32.Position = Vector3.new(-44.8696785, 2.81176472, -23.0132446)
  5728. o32.Rotation = Vector3.new(179.997528, 90, 0)
  5729. o32.Anchored = true
  5730. o32.CanCollide = false
  5731. o32.FormFactor = Enum.FormFactor.Custom
  5732. o32.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5733. o32.CFrame = CFrame.new(-44.8696785, 2.81176472, -23.0132446, 3.30000003e-005, 0, 1, 4.3e-005, -1, -1.41900003e-009, 1, 4.3e-005, -3.30000003e-005)
  5734. o32.BottomSurface = Enum.SurfaceType.Smooth
  5735. o32.TopSurface = Enum.SurfaceType.Smooth
  5736. o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5737. o33.Parent = o32
  5738. o33.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5739. o33.Scale = Vector3.new(0.246153846, 0.246153846, 1.07692313)
  5740. o33.MeshType = Enum.MeshType.FileMesh
  5741. o34.Parent = o1
  5742. o34.Material = Enum.Material.SmoothPlastic
  5743. o34.BrickColor = BrickColor.new("Really black")
  5744. o34.Position = Vector3.new(-44.9236374, 2.55478072, -22.8982334)
  5745. o34.Rotation = Vector3.new(-90.0024643, -90, 0)
  5746. o34.Anchored = true
  5747. o34.CanCollide = false
  5748. o34.FormFactor = Enum.FormFactor.Custom
  5749. o34.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5750. o34.CFrame = CFrame.new(-44.9236374, 2.55478072, -22.8982334, 0, -3.30000003e-005, -1, 1, -4.3e-005, 1.41900003e-009, -4.3e-005, -1, 3.30000003e-005)
  5751. o34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5752. o34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5753. o34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5754. o34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5755. o34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5756. o34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5757. o34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5758. o35.Parent = o34
  5759. o35.Scale = Vector3.new(0.461538464, 0.307692289, 0.461538464)
  5760. o36.Parent = o1
  5761. o36.Material = Enum.Material.SmoothPlastic
  5762. o36.BrickColor = BrickColor.new("Black")
  5763. o36.Position = Vector3.new(-44.9226875, 2.55477881, -23.129282)
  5764. o36.Rotation = Vector3.new(-90.0024643, -90, 0)
  5765. o36.Anchored = true
  5766. o36.CanCollide = false
  5767. o36.FormFactor = Enum.FormFactor.Custom
  5768. o36.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5769. o36.CFrame = CFrame.new(-44.9226875, 2.55477881, -23.129282, 0, -3.30000003e-005, -1, 1, -4.3e-005, 1.41900003e-009, -4.3e-005, -1, 3.30000003e-005)
  5770. o36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5771. o36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5772. o36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5773. o36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5774. o36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5775. o36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5776. o36.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5777. o37.Parent = o36
  5778. o37.Scale = Vector3.new(0.461538464, 0.307692289, 0.461538464)
  5779. o38.Parent = o1
  5780. o38.BrickColor = BrickColor.new("Really black")
  5781. o38.Position = Vector3.new(-44.8106842, 2.81176472, -23.0142307)
  5782. o38.Rotation = Vector3.new(90.0095291, 81.0001602, 89.987915)
  5783. o38.Anchored = true
  5784. o38.CanCollide = false
  5785. o38.FormFactor = Enum.FormFactor.Custom
  5786. o38.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5787. o38.CFrame = CFrame.new(-44.8106842, 2.81176472, -23.0142307, 3.30000003e-005, -0.156431958, 0.98768878, 4.19999997e-005, -0.98768878, -0.156431958, 1, 4.6645182e-005, -2.60235865e-005)
  5788. o38.BottomSurface = Enum.SurfaceType.Smooth
  5789. o38.TopSurface = Enum.SurfaceType.Smooth
  5790. o38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5791. o39.Parent = o38
  5792. o39.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5793. o39.Scale = Vector3.new(0.246153846, 0.230769232, 0.461538464)
  5794. o39.MeshType = Enum.MeshType.FileMesh
  5795. o40.Parent = o1
  5796. o40.BrickColor = BrickColor.new("Really black")
  5797. o40.Position = Vector3.new(-44.7456856, 2.6157527, -23.0132465)
  5798. o40.Rotation = Vector3.new(179.997528, -0.00189076073, 90)
  5799. o40.Anchored = true
  5800. o40.CanCollide = false
  5801. o40.FormFactor = Enum.FormFactor.Custom
  5802. o40.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5803. o40.CFrame = CFrame.new(-44.7456856, 2.6157527, -23.0132465, 0, -1, -3.30000003e-005, -1, 1.41900003e-009, -4.3e-005, 4.3e-005, 3.30000003e-005, -1)
  5804. o40.BottomSurface = Enum.SurfaceType.Smooth
  5805. o40.TopSurface = Enum.SurfaceType.Smooth
  5806. o40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5807. o41.Parent = o40
  5808. o41.Scale = Vector3.new(0.923076928, 0.538461506, 0.538461506)
  5809. o42.Parent = o1
  5810. o42.Material = Enum.Material.SmoothPlastic
  5811. o42.BrickColor = BrickColor.new("Really black")
  5812. o42.Position = Vector3.new(-44.731678, 2.65176678, -23.0132427)
  5813. o42.Rotation = Vector3.new(-90.0024643, -90, 0)
  5814. o42.Anchored = true
  5815. o42.CanCollide = false
  5816. o42.FormFactor = Enum.FormFactor.Custom
  5817. o42.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5818. o42.CFrame = CFrame.new(-44.731678, 2.65176678, -23.0132427, 0, -3.30000003e-005, -1, 1, -4.3e-005, 1.41900003e-009, -4.3e-005, -1, 3.30000003e-005)
  5819. o42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5820. o42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5821. o42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5822. o42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5823. o42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5824. o42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5825. o42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5826. o43.Parent = o42
  5827. o43.Scale = Vector3.new(0.461538464, 0.615384579, 0.461538464)
  5828. o44.Parent = o1
  5829. o44.BrickColor = BrickColor.new("Really black")
  5830. o44.Position = Vector3.new(-44.6716805, 2.61574984, -23.014225)
  5831. o44.Rotation = Vector3.new(179.997528, -90, 0)
  5832. o44.Anchored = true
  5833. o44.CanCollide = false
  5834. o44.FormFactor = Enum.FormFactor.Custom
  5835. o44.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5836. o44.CFrame = CFrame.new(-44.6716805, 2.61574984, -23.014225, -3.30000003e-005, 0, -1, -4.3e-005, -1, 1.41900003e-009, -1, 4.3e-005, 3.30000003e-005)
  5837. o44.BottomSurface = Enum.SurfaceType.Smooth
  5838. o44.TopSurface = Enum.SurfaceType.Smooth
  5839. o44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5840. o45.Parent = o44
  5841. o45.Scale = Vector3.new(0.538461506, 0.923076928, 0.230769232)
  5842. o45.MeshType = Enum.MeshType.Wedge
  5843. o46.Name = "Zoom"
  5844. o46.Parent = o1
  5845. o46.Material = Enum.Material.SmoothPlastic
  5846. o46.Transparency = 1
  5847. o46.Position = Vector3.new(-45.6602287, 2.80918193, -23.013567)
  5848. o46.Rotation = Vector3.new(-90, -88.3242722, -90)
  5849. o46.Anchored = true
  5850. o46.FormFactor = Enum.FormFactor.Custom
  5851. o46.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5852. o46.CFrame = CFrame.new(-45.6602287, 2.80918193, -23.013567, 0, 0.0292440113, -0.999572337, 0, 0.999572337, 0.0292440113, 1, 0, 0)
  5853. o46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5854. o46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5855. o46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5856. o46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5857. o46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5858. o46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5859. o47.Parent = o46
  5860. o47.Scale = Vector3.new(0.142307684, 0.170769244, 0.284615368)
  5861. ZoomFOV = 20
  5862. elseif Sight == "ACOG" then
  5863. o2 = Instance.new("Part")
  5864. o3 = Instance.new("BlockMesh")
  5865. o4 = Instance.new("Part")
  5866. o5 = Instance.new("CylinderMesh")
  5867. o6 = Instance.new("Part")
  5868. o7 = Instance.new("CylinderMesh")
  5869. o8 = Instance.new("Part")
  5870. o9 = Instance.new("BlockMesh")
  5871. o10 = Instance.new("Part")
  5872. o11 = Instance.new("SpecialMesh")
  5873. o12 = Instance.new("Part")
  5874. o13 = Instance.new("SpecialMesh")
  5875. o14 = Instance.new("Part")
  5876. o15 = Instance.new("SpecialMesh")
  5877. o16 = Instance.new("Part")
  5878. o17 = Instance.new("Decal")
  5879. o18 = Instance.new("Decal")
  5880. o19 = Instance.new("BlockMesh")
  5881. o20 = Instance.new("Part")
  5882. o21 = Instance.new("BlockMesh")
  5883. o22 = Instance.new("Part")
  5884. o23 = Instance.new("SpecialMesh")
  5885. o2.Name = "Zoom"
  5886. o2.Parent = o1
  5887. o2.Material = Enum.Material.SmoothPlastic
  5888. o2.Transparency = 1
  5889. o2.Position = Vector3.new(-45.7289391, 2.73110533, -23.0179634)
  5890. o2.Rotation = Vector3.new(-90, -88.876564, -90)
  5891. o2.Anchored = true
  5892. o2.FormFactor = Enum.FormFactor.Custom
  5893. o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5894. o2.CFrame = CFrame.new(-45.7289391, 2.73110533, -23.0179634, 0, 0.0196069945, -0.999807775, 0, 0.999807775, 0.0196069926, 1, 0, 0)
  5895. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5896. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5897. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5898. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5899. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5900. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5901. o3.Parent = o2
  5902. o3.Scale = Vector3.new(0.142307684, 0.170769244, 0.284615368)
  5903. o4.Name = "ACOG"
  5904. o4.Parent = o1
  5905. o4.BrickColor = BrickColor.new("Bright red")
  5906. o4.Position = Vector3.new(-45.1566238, 2.8208468, -23.020977)
  5907. o4.Rotation = Vector3.new(90.0104294, -89.9720306, -90)
  5908. o4.Anchored = true
  5909. o4.CanCollide = false
  5910. o4.FormFactor = Enum.FormFactor.Custom
  5911. o4.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5912. o4.CFrame = CFrame.new(-45.1566238, 2.8208468, -23.020977, 0, 0.000485999946, -0.999999881, 0.000182000003, -0.999999881, -0.000485999917, -1, -0.000181999989, -8.84519977e-008)
  5913. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5914. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5915. o4.Color = Color3.new(0.768628, 0.156863, 0.109804)
  5916. o5.Parent = o4
  5917. o5.Scale = Vector3.new(1.33333337, 0.0333333351, 0.699999988)
  5918. o6.Name = "ACOG"
  5919. o6.Parent = o1
  5920. o6.BrickColor = BrickColor.new(CUSTOMCOLOR)
  5921. o6.Position = Vector3.new(-45.1566238, 2.8208468, -23.020977)
  5922. o6.Rotation = Vector3.new(90.0104294, -89.9720306, -90)
  5923. o6.Anchored = true
  5924. o6.CanCollide = false
  5925. o6.FormFactor = Enum.FormFactor.Custom
  5926. o6.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5927. o6.CFrame = CFrame.new(-45.1566238, 2.8208468, -23.020977, 0, 0.000485999946, -0.999999881, 0.000182000003, -0.999999881, -0.000485999917, -1, -0.000181999989, -8.84519977e-008)
  5928. o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5929. o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5930. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5931. o7.Parent = o6
  5932. o7.Scale = Vector3.new(1.33333337, 0.333333343, 0.666666687)
  5933. o8.Name = "ACOG"
  5934. o8.Parent = o1
  5935. o8.BrickColor = BrickColor.new(CUSTOMCOLOR)
  5936. o8.Position = Vector3.new(-45.1224823, 2.58768368, -23.0217686)
  5937. o8.Rotation = Vector3.new(-179.996613, -1.65642064e-006, 179.971924)
  5938. o8.Anchored = true
  5939. o8.CanCollide = false
  5940. o8.FormFactor = Enum.FormFactor.Custom
  5941. o8.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5942. o8.CFrame = CFrame.new(-45.1224823, 2.58768368, -23.0217686, -0.999999881, -0.000489999948, -2.89099926e-008, -0.000489999948, 0.999999881, 5.89999836e-005, 0, 5.89999909e-005, -1)
  5943. o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5944. o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5945. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5946. o9.Parent = o8
  5947. o9.Scale = Vector3.new(1, 0.533333361, 0.533333302)
  5948. o10.Name = "ACOG"
  5949. o10.Parent = o1
  5950. o10.BrickColor = BrickColor.new(CUSTOMCOLOR)
  5951. o10.Position = Vector3.new(-44.9295502, 2.72090769, -23.0211411)
  5952. o10.Rotation = Vector3.new(90.0256882, 75.0440826, 89.9820175)
  5953. o10.Anchored = true
  5954. o10.CanCollide = false
  5955. o10.FormFactor = Enum.FormFactor.Symmetric
  5956. o10.Size = Vector3.new(1, 1, 1)
  5957. o10.CFrame = CFrame.new(-44.9295502, 2.72090769, -23.0211411, 8.09999983e-005, -0.258075923, 0.966124654, -0.000144999998, -0.966124654, -0.258075893, 1, -0.000119183926, -0.000115677103)
  5958. o10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5959. o10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5960. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5961. o11.Parent = o10
  5962. o11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5963. o11.Scale = Vector3.new(0.200000003, 0.200000003, 0.666666687)
  5964. o11.MeshType = Enum.MeshType.FileMesh
  5965. o12.Name = "ACOG"
  5966. o12.Parent = o1
  5967. o12.BrickColor = BrickColor.new(CUSTOMCOLOR)
  5968. o12.Position = Vector3.new(-45.3565521, 2.72070885, -23.0211391)
  5969. o12.Rotation = Vector3.new(-94.5800171, 89.9720306, -85.4120255)
  5970. o12.Anchored = true
  5971. o12.CanCollide = false
  5972. o12.FormFactor = Enum.FormFactor.Symmetric
  5973. o12.Size = Vector3.new(1, 1, 1)
  5974. o12.CFrame = CFrame.new(-45.3565521, 2.72070885, -23.0211391, 3.89999987e-005, 0.000485999946, 0.999999881, -0.000138999996, -0.999999881, 0.00048600536, 1, -0.000139018943, -3.89324414e-005)
  5975. o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5976. o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5977. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5978. o13.Parent = o12
  5979. o13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5980. o13.Scale = Vector3.new(0.173333332, 0.173333332, 0.666666687)
  5981. o13.MeshType = Enum.MeshType.FileMesh
  5982. o14.Name = "ACOG"
  5983. o14.Parent = o1
  5984. o14.BrickColor = BrickColor.new(CUSTOMCOLOR)
  5985. o14.Position = Vector3.new(-44.956562, 2.72089267, -23.021225)
  5986. o14.Rotation = Vector3.new(-97.6506424, 89.9720306, -82.3413925)
  5987. o14.Anchored = true
  5988. o14.CanCollide = false
  5989. o14.FormFactor = Enum.FormFactor.Symmetric
  5990. o14.Size = Vector3.new(1, 1, 1)
  5991. o14.CFrame = CFrame.new(-44.956562, 2.72089267, -23.021225, 7.10000022e-005, 0.000527999946, 0.999999881, -0.000138999996, -0.999999881, 0.000528009783, 1, -0.000139037467, -7.09266023e-005)
  5992. o14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5993. o14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5994. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5995. o15.Parent = o14
  5996. o15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5997. o15.Scale = Vector3.new(0.200000003, 0.200000003, 0.666666687)
  5998. o15.MeshType = Enum.MeshType.FileMesh
  5999. o16.Name = "ACOG1"
  6000. o16.Parent = o1
  6001. o16.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6002. o16.Transparency = 1
  6003. o16.Position = Vector3.new(-45.2625923, 2.72075582, -23.0216827)
  6004. o16.Rotation = Vector3.new(-179.996613, -1.65642064e-006, 179.971924)
  6005. o16.Anchored = true
  6006. o16.CanCollide = false
  6007. o16.FormFactor = Enum.FormFactor.Custom
  6008. o16.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6009. o16.CFrame = CFrame.new(-45.2625923, 2.72075582, -23.0216827, -0.999999881, -0.000489999948, -2.89099926e-008, -0.000489999948, 0.999999881, 5.89999836e-005, 0, 5.89999909e-005, -1)
  6010. o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6011. o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6012. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6013. o17.Parent = o16
  6014. o17.Texture = "http://www.roblox.com/asset/?id=95639324"
  6015. o17.Face = Enum.NormalId.Right
  6016. o18.Parent = o16
  6017. o18.Texture = "http://www.roblox.com/asset/?id=95639324"
  6018. o18.Face = Enum.NormalId.Left
  6019. o19.Parent = o16
  6020. o19.Scale = Vector3.new(0.0666666701, 1, 1)
  6021. o20.Name = "ACOG"
  6022. o20.Parent = o1
  6023. o20.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6024. o20.Position = Vector3.new(-45.0894966, 2.53364778, -23.0207634)
  6025. o20.Rotation = Vector3.new(-179.996613, -1.65642064e-006, 179.971924)
  6026. o20.Anchored = true
  6027. o20.CanCollide = false
  6028. o20.FormFactor = Enum.FormFactor.Custom
  6029. o20.Size = Vector3.new(0.333333343, 0.200000003, 0.200000003)
  6030. o20.CFrame = CFrame.new(-45.0894966, 2.53364778, -23.0207634, -0.999999881, -0.000489999948, -2.89099926e-008, -0.000489999948, 0.999999881, 5.89999836e-005, 0, 5.89999909e-005, -1)
  6031. o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6032. o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6033. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6034. o21.Parent = o20
  6035. o21.Scale = Vector3.new(1, 0.533333361, 0.866666675)
  6036. o22.Name = "ACOG2"
  6037. o22.Parent = o1
  6038. o22.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6039. o22.Position = Vector3.new(-45.1225471, 2.72081685, -23.0214977)
  6040. o22.Rotation = Vector3.new(-97.6506424, 89.9720306, -82.3413925)
  6041. o22.Anchored = true
  6042. o22.CanCollide = false
  6043. o22.FormFactor = Enum.FormFactor.Symmetric
  6044. o22.Size = Vector3.new(1, 1, 1)
  6045. o22.CFrame = CFrame.new(-45.1225471, 2.72081685, -23.0214977, 7.10000022e-005, 0.000527999946, 0.999999881, -0.000138999996, -0.999999881, 0.000528009783, 1, -0.000139037467, -7.09266023e-005)
  6046. o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6047. o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6048. o22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6049. o23.Parent = o22
  6050. o23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6051. o23.Scale = Vector3.new(0.166666672, 0.166666672, 2.66666675)
  6052. o23.MeshType = Enum.MeshType.FileMesh
  6053. ZoomFOV = 5
  6054. elseif Sight == "M145" then
  6055.  
  6056. o2 = Instance.new("Part")
  6057. o3 = Instance.new("CylinderMesh")
  6058. o4 = Instance.new("Part")
  6059. o5 = Instance.new("CylinderMesh")
  6060. o6 = Instance.new("Part")
  6061. o7 = Instance.new("CylinderMesh")
  6062. o8 = Instance.new("Part")
  6063. o9 = Instance.new("BlockMesh")
  6064. o10 = Instance.new("Part")
  6065. o11 = Instance.new("SpecialMesh")
  6066. o12 = Instance.new("Part")
  6067. o13 = Instance.new("BlockMesh")
  6068. o14 = Instance.new("Part")
  6069. o15 = Instance.new("BlockMesh")
  6070. o16 = Instance.new("Part")
  6071. o17 = Instance.new("SpecialMesh")
  6072. o18 = Instance.new("Part")
  6073. o19 = Instance.new("BlockMesh")
  6074. o20 = Instance.new("Part")
  6075. o21 = Instance.new("BlockMesh")
  6076. o22 = Instance.new("Part")
  6077. o23 = Instance.new("SpecialMesh")
  6078. o24 = Instance.new("Part")
  6079. o25 = Instance.new("SpecialMesh")
  6080. o26 = Instance.new("Part")
  6081. o27 = Instance.new("BlockMesh")
  6082. o28 = Instance.new("Part")
  6083. o29 = Instance.new("BlockMesh")
  6084. o30 = Instance.new("Part")
  6085. o31 = Instance.new("BlockMesh")
  6086. o32 = Instance.new("Part")
  6087. o33 = Instance.new("BlockMesh")
  6088. o34 = Instance.new("Part")
  6089. o35 = Instance.new("SpecialMesh")
  6090. o36 = Instance.new("Part")
  6091. o37 = Instance.new("SpecialMesh")
  6092. o38 = Instance.new("Part")
  6093. o39 = Instance.new("BlockMesh")
  6094. o2.Parent = o1
  6095. o2.Reflectance = 0.050000000745058
  6096. o2.Transparency = 0.89999997615814
  6097. o2.Position = Vector3.new(-45.0308838, 2.90189338, -23.0160847)
  6098. o2.Rotation = Vector3.new(-0.00252101431, 0.00189076073, 90)
  6099. o2.Anchored = true
  6100. o2.FormFactor = Enum.FormFactor.Symmetric
  6101. o2.Size = Vector3.new(1, 1, 1)
  6102. o2.CFrame = CFrame.new(-45.0308838, 2.90189338, -23.0160847, 0, -1, 3.30000003e-005, 1, 1.45200008e-009, 4.40000003e-005, -4.40000003e-005, 3.30000003e-005, 1)
  6103. o2.BottomSurface = Enum.SurfaceType.Smooth
  6104. o2.TopSurface = Enum.SurfaceType.Smooth
  6105. o3.Parent = o2
  6106. o3.Offset = Vector3.new(-0.180000007, -0.0299999993, 0)
  6107. o3.Scale = Vector3.new(0.209999993, 0.00479999976, 0.194999993)
  6108. o4.Parent = o1
  6109. o4.Reflectance = 0.050000000745058
  6110. o4.Transparency = 0.89999997615814
  6111. o4.Position = Vector3.new(-45.5848656, 2.72892451, -23.0160999)
  6112. o4.Rotation = Vector3.new(89.9975357, 8.13027157e-008, 89.9981079)
  6113. o4.Anchored = true
  6114. o4.FormFactor = Enum.FormFactor.Symmetric
  6115. o4.Size = Vector3.new(1, 1, 1)
  6116. o4.CFrame = CFrame.new(-45.5848656, 2.72892451, -23.0160999, 3.30000003e-005, -1, 1.41900003e-009, 4.3e-005, 0, -1, 1, 3.30000003e-005, 4.3e-005)
  6117. o4.BottomSurface = Enum.SurfaceType.Smooth
  6118. o4.TopSurface = Enum.SurfaceType.Smooth
  6119. o5.Parent = o4
  6120. o5.Offset = Vector3.new(0, -0.0480000004, 0)
  6121. o5.Scale = Vector3.new(0.180000007, 0.00479999976, 0.180000007)
  6122. o6.Parent = o1
  6123. o6.BrickColor = BrickColor.new("Really black")
  6124. o6.Position = Vector3.new(-45.4388695, 2.54694438, -23.0180969)
  6125. o6.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  6126. o6.Anchored = true
  6127. o6.FormFactor = Enum.FormFactor.Symmetric
  6128. o6.Size = Vector3.new(1, 1, 1)
  6129. o6.CFrame = CFrame.new(-45.4388695, 2.54694438, -23.0180969, 1, 1.45200008e-009, -3.30000003e-005, 0, -1, -4.40000003e-005, -3.30000003e-005, 4.40000003e-005, -1)
  6130. o6.BottomSurface = Enum.SurfaceType.Smooth
  6131. o6.TopSurface = Enum.SurfaceType.Smooth
  6132. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6133. o7.Parent = o6
  6134. o7.Offset = Vector3.new(0.0480000004, 0, 0)
  6135. o7.Scale = Vector3.new(0.143999994, 0.150000006, 0.143999994)
  6136. o8.Parent = o1
  6137. o8.BrickColor = BrickColor.new("Really black")
  6138. o8.Position = Vector3.new(-45.2008667, 2.54694438, -23.0160828)
  6139. o8.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  6140. o8.Anchored = true
  6141. o8.FormFactor = Enum.FormFactor.Symmetric
  6142. o8.Size = Vector3.new(1, 1, 1)
  6143. o8.CFrame = CFrame.new(-45.2008667, 2.54694438, -23.0160828, 1, 1.45200008e-009, -3.30000003e-005, 0, -1, -4.40000003e-005, -3.30000003e-005, 4.40000003e-005, -1)
  6144. o8.BottomSurface = Enum.SurfaceType.Smooth
  6145. o8.TopSurface = Enum.SurfaceType.Smooth
  6146. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6147. o9.Parent = o8
  6148. o9.Offset = Vector3.new(0.0240000002, 0, 0)
  6149. o9.Scale = Vector3.new(0.42009002, 0.150000006, 0.143999994)
  6150. o10.Parent = o1
  6151. o10.BrickColor = BrickColor.new("Really black")
  6152. o10.Position = Vector3.new(-45.0068626, 2.54694152, -23.0171223)
  6153. o10.Rotation = Vector3.new(-0.00246371864, 90, 0)
  6154. o10.Anchored = true
  6155. o10.FormFactor = Enum.FormFactor.Symmetric
  6156. o10.Size = Vector3.new(1, 1, 1)
  6157. o10.CFrame = CFrame.new(-45.0068626, 2.54694152, -23.0171223, -3.30000003e-005, 0, 1, -4.3e-005, 1, -1.41900003e-009, -1, -4.3e-005, -3.30000003e-005)
  6158. o10.BottomSurface = Enum.SurfaceType.Smooth
  6159. o10.TopSurface = Enum.SurfaceType.Smooth
  6160. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6161. o11.Parent = o10
  6162. o11.Scale = Vector3.new(0.239999995, 0.150000006, 0.0480000004)
  6163. o11.MeshType = Enum.MeshType.Wedge
  6164. o12.Parent = o1
  6165. o12.BrickColor = BrickColor.new("Really black")
  6166. o12.Position = Vector3.new(-44.9609032, 2.54694152, -23.0180988)
  6167. o12.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  6168. o12.Anchored = true
  6169. o12.FormFactor = Enum.FormFactor.Symmetric
  6170. o12.Size = Vector3.new(1, 1, 1)
  6171. o12.CFrame = CFrame.new(-44.9609032, 2.54694152, -23.0180988, 1, 1.45200008e-009, -3.30000003e-005, 0, -1, -4.40000003e-005, -3.30000003e-005, 4.40000003e-005, -1)
  6172. o12.BottomSurface = Enum.SurfaceType.Smooth
  6173. o12.TopSurface = Enum.SurfaceType.Smooth
  6174. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6175. o13.Parent = o12
  6176. o13.Scale = Vector3.new(0.0480000004, 0.150000006, 0.239999995)
  6177. o14.Parent = o1
  6178. o14.BrickColor = BrickColor.new("Really black")
  6179. o14.Position = Vector3.new(-45.3188782, 2.72089553, -22.9411163)
  6180. o14.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  6181. o14.Anchored = true
  6182. o14.FormFactor = Enum.FormFactor.Symmetric
  6183. o14.Size = Vector3.new(1, 1, 1)
  6184. o14.CFrame = CFrame.new(-45.3188782, 2.72089553, -22.9411163, 1, 1.45200008e-009, -3.30000003e-005, 0, -1, -4.40000003e-005, -3.30000003e-005, 4.40000003e-005, -1)
  6185. o14.BottomSurface = Enum.SurfaceType.Smooth
  6186. o14.TopSurface = Enum.SurfaceType.Smooth
  6187. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6188. o15.Parent = o14
  6189. o15.Scale = Vector3.new(0.00300000003, 0.00300000003, 0.057599999)
  6190. o16.Parent = o1
  6191. o16.BrickColor = BrickColor.new("Really black")
  6192. o16.Position = Vector3.new(-44.9648743, 2.72694039, -23.0171223)
  6193. o16.Rotation = Vector3.new(90.0085602, 80.2704544, -90.0111923)
  6194. o16.Anchored = true
  6195. o16.Size = Vector3.new(1, 1.20000005, 1)
  6196. o16.CFrame = CFrame.new(-44.9648743, 2.72694039, -23.0171223, -3.30000003e-005, 0.168998078, 0.985616446, -4.3e-005, 0.985616446, -0.168998078, -1, -4.79584414e-005, -2.52584268e-005)
  6197. o16.BottomSurface = Enum.SurfaceType.Smooth
  6198. o16.TopSurface = Enum.SurfaceType.Smooth
  6199. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6200. o17.Parent = o16
  6201. o17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6202. o17.Scale = Vector3.new(0.230400011, 0.230400011, 0.479999989)
  6203. o17.MeshType = Enum.MeshType.FileMesh
  6204. o18.Parent = o1
  6205. o18.BrickColor = BrickColor.new("Really black")
  6206. o18.Position = Vector3.new(-45.3208618, 2.92493939, -23.016077)
  6207. o18.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  6208. o18.Anchored = true
  6209. o18.FormFactor = Enum.FormFactor.Symmetric
  6210. o18.Size = Vector3.new(1, 1, 1)
  6211. o18.CFrame = CFrame.new(-45.3208618, 2.92493939, -23.016077, 1, 1.45200008e-009, -3.30000003e-005, 0, -1, -4.40000003e-005, -3.30000003e-005, 4.40000003e-005, -1)
  6212. o18.BottomSurface = Enum.SurfaceType.Smooth
  6213. o18.TopSurface = Enum.SurfaceType.Smooth
  6214. o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6215. o19.Parent = o18
  6216. o19.Offset = Vector3.new(0, 0.1875, 0)
  6217. o19.Scale = Vector3.new(0, 0.00150000001, 0.0329999998)
  6218. o20.Parent = o1
  6219. o20.BrickColor = BrickColor.new("Really black")
  6220. o20.Position = Vector3.new(-45.3208618, 2.89493656, -23.0160847)
  6221. o20.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  6222. o20.Anchored = true
  6223. o20.FormFactor = Enum.FormFactor.Symmetric
  6224. o20.Size = Vector3.new(1, 1, 1)
  6225. o20.CFrame = CFrame.new(-45.3208618, 2.89493656, -23.0160847, 1, 1.45200008e-009, -3.30000003e-005, 0, -1, -4.40000003e-005, -3.30000003e-005, 4.40000003e-005, -1)
  6226. o20.BottomSurface = Enum.SurfaceType.Smooth
  6227. o20.TopSurface = Enum.SurfaceType.Smooth
  6228. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6229. o21.Parent = o20
  6230. o21.Offset = Vector3.new(0, 0.17400001, 0)
  6231. o21.Scale = Vector3.new(0, 0.00150000001, 0.0990000069)
  6232. o22.Parent = o1
  6233. o22.BrickColor = BrickColor.new("Really black")
  6234. o22.Position = Vector3.new(-45.2548485, 2.7238884, -23.016077)
  6235. o22.Rotation = Vector3.new(-0.00246371864, 90, 0)
  6236. o22.Anchored = true
  6237. o22.Size = Vector3.new(1, 1.20000005, 1)
  6238. o22.CFrame = CFrame.new(-45.2548485, 2.7238884, -23.016077, -3.30000003e-005, 0, 1, -4.3e-005, 1, -1.41900003e-009, -1, -4.3e-005, -3.30000003e-005)
  6239. o22.BottomSurface = Enum.SurfaceType.Smooth
  6240. o22.TopSurface = Enum.SurfaceType.Smooth
  6241. o22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6242. o23.Parent = o22
  6243. o23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6244. o23.Scale = Vector3.new(0.209999993, 0.209999993, 3.5999999)
  6245. o23.MeshType = Enum.MeshType.FileMesh
  6246. o24.Parent = o1
  6247. o24.BrickColor = BrickColor.new("Really black")
  6248. o24.Position = Vector3.new(-44.9108505, 2.54694438, -23.0160923)
  6249. o24.Rotation = Vector3.new(179.997528, -90, 0)
  6250. o24.Anchored = true
  6251. o24.FormFactor = Enum.FormFactor.Symmetric
  6252. o24.Size = Vector3.new(1, 1, 1)
  6253. o24.CFrame = CFrame.new(-44.9108505, 2.54694438, -23.0160923, -3.30000003e-005, 0, -1, -4.3e-005, -1, 1.41900003e-009, -1, 4.3e-005, 3.30000003e-005)
  6254. o24.BottomSurface = Enum.SurfaceType.Smooth
  6255. o24.TopSurface = Enum.SurfaceType.Smooth
  6256. o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6257. o25.Parent = o24
  6258. o25.Scale = Vector3.new(0.239999995, 0.150000006, 0.0480000004)
  6259. o25.MeshType = Enum.MeshType.Wedge
  6260. o26.Parent = o1
  6261. o26.BrickColor = BrickColor.new("Really black")
  6262. o26.Position = Vector3.new(-45.3188705, 2.72089553, -23.0911293)
  6263. o26.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  6264. o26.Anchored = true
  6265. o26.FormFactor = Enum.FormFactor.Symmetric
  6266. o26.Size = Vector3.new(1, 1, 1)
  6267. o26.CFrame = CFrame.new(-45.3188705, 2.72089553, -23.0911293, 1, 1.45200008e-009, -3.30000003e-005, 0, -1, -4.40000003e-005, -3.30000003e-005, 4.40000003e-005, -1)
  6268. o26.BottomSurface = Enum.SurfaceType.Smooth
  6269. o26.TopSurface = Enum.SurfaceType.Smooth
  6270. o26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6271. o27.Parent = o26
  6272. o27.Scale = Vector3.new(0.00300000003, 0.00300000003, 0.057599999)
  6273. o28.Parent = o1
  6274. o28.BrickColor = BrickColor.new("Really black")
  6275. o28.Position = Vector3.new(-45.3208618, 2.80793452, -23.016077)
  6276. o28.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  6277. o28.Anchored = true
  6278. o28.FormFactor = Enum.FormFactor.Symmetric
  6279. o28.Size = Vector3.new(1, 1, 1)
  6280. o28.CFrame = CFrame.new(-45.3208618, 2.80793452, -23.016077, 1, 1.45200008e-009, -3.30000003e-005, 0, -1, -4.40000003e-005, -3.30000003e-005, 4.40000003e-005, -1)
  6281. o28.BottomSurface = Enum.SurfaceType.Smooth
  6282. o28.TopSurface = Enum.SurfaceType.Smooth
  6283. o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6284. o29.Parent = o28
  6285. o29.Scale = Vector3.new(0.00300000003, 0.0599999987, 0.00300000003)
  6286. o30.Parent = o1
  6287. o30.BrickColor = BrickColor.new("Really black")
  6288. o30.Position = Vector3.new(-45.3208656, 2.86490941, -23.0160904)
  6289. o30.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  6290. o30.Anchored = true
  6291. o30.FormFactor = Enum.FormFactor.Symmetric
  6292. o30.Size = Vector3.new(1, 1, 1)
  6293. o30.CFrame = CFrame.new(-45.3208656, 2.86490941, -23.0160904, 1, 1.45200008e-009, -3.30000003e-005, 0, -1, -4.40000003e-005, -3.30000003e-005, 4.40000003e-005, -1)
  6294. o30.BottomSurface = Enum.SurfaceType.Smooth
  6295. o30.TopSurface = Enum.SurfaceType.Smooth
  6296. o30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6297. o31.Parent = o30
  6298. o31.Offset = Vector3.new(0, 0.135000005, 0)
  6299. o31.Scale = Vector3.new(0, 0.0989999995, 0.00150000001)
  6300. o32.Parent = o1
  6301. o32.BrickColor = BrickColor.new("Really black")
  6302. o32.Position = Vector3.new(-45.320858, 2.65193152, -23.0160847)
  6303. o32.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  6304. o32.Anchored = true
  6305. o32.FormFactor = Enum.FormFactor.Symmetric
  6306. o32.Size = Vector3.new(1, 1, 1)
  6307. o32.CFrame = CFrame.new(-45.320858, 2.65193152, -23.0160847, 1, 1.45200008e-009, -3.30000003e-005, 0, -1, -4.40000003e-005, -3.30000003e-005, 4.40000003e-005, -1)
  6308. o32.BottomSurface = Enum.SurfaceType.Smooth
  6309. o32.TopSurface = Enum.SurfaceType.Smooth
  6310. o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6311. o33.Parent = o32
  6312. o33.Scale = Vector3.new(0.00300000003, 0.0599999987, 0.00300000003)
  6313. o34.Parent = o1
  6314. o34.BrickColor = BrickColor.new("Really black")
  6315. o34.Position = Vector3.new(-45.5238876, 2.72389054, -23.0180988)
  6316. o34.Rotation = Vector3.new(-0.00246371864, 90, 0)
  6317. o34.Anchored = true
  6318. o34.Size = Vector3.new(1, 1.20000005, 1)
  6319. o34.CFrame = CFrame.new(-45.5238876, 2.72389054, -23.0180988, -3.30000003e-005, 0, 1, -4.3e-005, 1, -1.41900003e-009, -1, -4.3e-005, -3.30000003e-005)
  6320. o34.BottomSurface = Enum.SurfaceType.Smooth
  6321. o34.TopSurface = Enum.SurfaceType.Smooth
  6322. o34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6323. o35.Parent = o34
  6324. o35.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6325. o35.Scale = Vector3.new(0.215999991, 0.215999991, 0.576000035)
  6326. o35.MeshType = Enum.MeshType.FileMesh
  6327. o36.Parent = o1
  6328. o36.BrickColor = BrickColor.new("Really black")
  6329. o36.Position = Vector3.new(-45.0038757, 2.71586657, -23.0160828)
  6330. o36.Rotation = Vector3.new(-0.00246371864, 90, 0)
  6331. o36.Anchored = true
  6332. o36.Size = Vector3.new(1, 1.20000005, 1)
  6333. o36.CFrame = CFrame.new(-45.0038757, 2.71586657, -23.0160828, -3.30000003e-005, 0, 1, -4.3e-005, 1, -1.41900003e-009, -1, -4.3e-005, -3.30000003e-005)
  6334. o36.BottomSurface = Enum.SurfaceType.Smooth
  6335. o36.TopSurface = Enum.SurfaceType.Smooth
  6336. o36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6337. o37.Parent = o36
  6338. o37.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6339. o37.Scale = Vector3.new(0.224999994, 0.224999994, 0.75)
  6340. o37.MeshType = Enum.MeshType.FileMesh
  6341. o38.Name = "Zoom"
  6342. o38.Parent = o1
  6343. o38.Material = Enum.Material.SmoothPlastic
  6344. o38.Transparency = 1
  6345. o38.Position = Vector3.new(-45.6625099, 2.73130202, -23.013567)
  6346. o38.Rotation = Vector3.new(-90, -88.3242722, -90)
  6347. o38.Anchored = true
  6348. o38.FormFactor = Enum.FormFactor.Custom
  6349. o38.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6350. o38.CFrame = CFrame.new(-45.6625099, 2.73130202, -23.013567, 0, 0.0292440113, -0.999572337, 0, 0.999572337, 0.0292440113, 1, 0, 0)
  6351. o38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6352. o38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6353. o38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6354. o38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6355. o38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6356. o38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6357. o39.Parent = o38
  6358. o39.Scale = Vector3.new(0.142307684, 0.170769244, 0.284615368)
  6359. ZoomFOV = 15
  6360. else
  6361. o2 = Instance.new("Part")
  6362. o3 = Instance.new("SpecialMesh")
  6363. o4 = Instance.new("Part")
  6364. o5 = Instance.new("BlockMesh")
  6365. o6 = Instance.new("Part")
  6366. o7 = Instance.new("SpecialMesh")
  6367. o8 = Instance.new("Part")
  6368. o9 = Instance.new("SpecialMesh")
  6369. o10 = Instance.new("Part")
  6370. o11 = Instance.new("BlockMesh")
  6371. o12 = Instance.new("Part")
  6372. o13 = Instance.new("BlockMesh")
  6373. o14 = Instance.new("Part")
  6374. o15 = Instance.new("BlockMesh")
  6375. o16 = Instance.new("Part")
  6376. o17 = Instance.new("SpecialMesh")
  6377. o18 = Instance.new("Part")
  6378. o19 = Instance.new("SpecialMesh")
  6379. o20 = Instance.new("Part")
  6380. o21 = Instance.new("BlockMesh")
  6381. o22 = Instance.new("Part")
  6382. o23 = Instance.new("CylinderMesh")
  6383. o24 = Instance.new("Part")
  6384. o25 = Instance.new("SpecialMesh")
  6385. o26 = Instance.new("Part")
  6386. o27 = Instance.new("BlockMesh")
  6387. o28 = Instance.new("Part")
  6388. o29 = Instance.new("BlockMesh")
  6389. o30 = Instance.new("Part")
  6390. o31 = Instance.new("CylinderMesh")
  6391. o32 = Instance.new("Part")
  6392. o33 = Instance.new("BlockMesh")
  6393. o34 = Instance.new("Part")
  6394. o35 = Instance.new("BlockMesh")
  6395. o36 = Instance.new("Part")
  6396. o37 = Instance.new("BlockMesh")
  6397. o38 = Instance.new("Part")
  6398. o39 = Instance.new("SpecialMesh")
  6399. o40 = Instance.new("Part")
  6400. o41 = Instance.new("BlockMesh")
  6401. o42 = Instance.new("Part")
  6402. o43 = Instance.new("SpecialMesh")
  6403. o2.Name = "IRONSIGHT"
  6404. o2.Parent = o1
  6405. o2.Material = Enum.Material.SmoothPlastic
  6406. o2.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6407. o2.Position = Vector3.new(-45.1299782, 2.73781204, -22.9749947)
  6408. o2.Rotation = Vector3.new(90, -8.08488086e-012, -89.9999924)
  6409. o2.Anchored = true
  6410. o2.FormFactor = Enum.FormFactor.Custom
  6411. o2.Size = Vector3.new(0.200000003, 0.864000022, 0.200000003)
  6412. o2.CFrame = CFrame.new(-45.1299782, 2.73781204, -22.9749947, 1.49008656e-007, 1, -1.41107788e-013, 1.77635616e-014, -1.41107801e-013, -1, -1, 1.49008883e-007, -1.77636429e-014)
  6413. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6414. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6415. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6416. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6417. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6418. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6419. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6420. o3.Parent = o2
  6421. o3.Scale = Vector3.new(0.149999991, 1, 0.329999983)
  6422. o3.MeshType = Enum.MeshType.Wedge
  6423. o4.Name = "IRONSIGHT"
  6424. o4.Parent = o1
  6425. o4.Material = Enum.Material.SmoothPlastic
  6426. o4.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6427. o4.Position = Vector3.new(-45.6069984, 2.7168169, -22.9749947)
  6428. o4.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6429. o4.Anchored = true
  6430. o4.FormFactor = Enum.FormFactor.Custom
  6431. o4.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6432. o4.CFrame = CFrame.new(-45.6069984, 2.7168169, -22.9749947, 1.49008656e-007, -4.44105473e-015, 1, 1.77635616e-014, 1, 4.44102762e-015, -1, 1.77635684e-014, 1.49008883e-007)
  6433. o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6434. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6435. o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6436. o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6437. o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6438. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6439. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6440. o5.Parent = o4
  6441. o5.Scale = Vector3.new(0.151499987, 0.180000007, 0.450000018)
  6442. o6.Name = "IRONSIGHT"
  6443. o6.Parent = o1
  6444. o6.Material = Enum.Material.SmoothPlastic
  6445. o6.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6446. o6.Position = Vector3.new(-45.6759911, 2.59981394, -23.0199947)
  6447. o6.Rotation = Vector3.new(90, -8.08488086e-012, 90.0000076)
  6448. o6.Anchored = true
  6449. o6.FormFactor = Enum.FormFactor.Custom
  6450. o6.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6451. o6.CFrame = CFrame.new(-45.6759911, 2.59981394, -23.0199947, -1.49008656e-007, -1, -1.41107788e-013, -1.77635616e-014, 1.41107801e-013, -1, 1, -1.49008883e-007, -1.77636429e-014)
  6452. o6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6453. o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6454. o6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6455. o6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6456. o6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6457. o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6458. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6459. o7.Parent = o6
  6460. o7.Scale = Vector3.new(0.599999964, 0.239999995, 0.990000069)
  6461. o7.MeshType = Enum.MeshType.Wedge
  6462. o8.Name = "IRONSIGHT"
  6463. o8.Parent = o1
  6464. o8.Material = Enum.Material.SmoothPlastic
  6465. o8.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6466. o8.Position = Vector3.new(-45.6369934, 2.75281191, -22.9749794)
  6467. o8.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6468. o8.Anchored = true
  6469. o8.FormFactor = Enum.FormFactor.Custom
  6470. o8.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6471. o8.CFrame = CFrame.new(-45.6369934, 2.75281191, -22.9749794, 1.49008656e-007, -4.44105473e-015, 1, 1.77635616e-014, 1, 4.44102762e-015, -1, 1.77635684e-014, 1.49008883e-007)
  6472. o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6473. o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6474. o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6475. o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6476. o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6477. o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6478. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6479. o9.Parent = o8
  6480. o9.Scale = Vector3.new(0.151499987, 0.180000007, 0.149999991)
  6481. o9.MeshType = Enum.MeshType.Wedge
  6482. o10.Name = "IRONSIGHT"
  6483. o10.Parent = o1
  6484. o10.Material = Enum.Material.SmoothPlastic
  6485. o10.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6486. o10.Position = Vector3.new(-45.6069984, 2.60881591, -23.0199947)
  6487. o10.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6488. o10.Anchored = true
  6489. o10.FormFactor = Enum.FormFactor.Custom
  6490. o10.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6491. o10.CFrame = CFrame.new(-45.6069984, 2.60881591, -23.0199947, 1.49008656e-007, -4.44105473e-015, 1, 1.77635616e-014, 1, 4.44102762e-015, -1, 1.77635684e-014, 1.49008883e-007)
  6492. o10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6493. o10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6494. o10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6495. o10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6496. o10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6497. o10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6498. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6499. o11.Parent = o10
  6500. o11.Offset = Vector3.new(0, -0.00450000027, 0)
  6501. o11.Scale = Vector3.new(0.599999964, 0.944999993, 0.450000018)
  6502. o12.Name = "IRONSIGHT"
  6503. o12.Parent = o1
  6504. o12.Material = Enum.Material.SmoothPlastic
  6505. o12.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6506. o12.Position = Vector3.new(-45.6099968, 2.71678591, -23.0650082)
  6507. o12.Rotation = Vector3.new(179.902588, 89.7451248, -0.991545081)
  6508. o12.Anchored = true
  6509. o12.FormFactor = Enum.FormFactor.Custom
  6510. o12.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6511. o12.CFrame = CFrame.new(-45.6099968, 2.71678591, -23.0650082, 2.21249138e-007, 3.82925913e-009, 0.999990106, -4.37107595e-008, 0.999995053, -3.82934262e-009, -1, -4.3711271e-008, -2.25229542e-006)
  6512. o12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6513. o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6514. o12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6515. o12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6516. o12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6517. o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6518. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6519. o13.Parent = o12
  6520. o13.Scale = Vector3.new(0.151499987, 0.180000007, 0.450000018)
  6521. o14.Name = "IRONSIGHT"
  6522. o14.Parent = o1
  6523. o14.Material = Enum.Material.SmoothPlastic
  6524. o14.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6525. o14.Position = Vector3.new(-44.6169853, 2.59981394, -23.02001)
  6526. o14.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6527. o14.Anchored = true
  6528. o14.FormFactor = Enum.FormFactor.Custom
  6529. o14.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6530. o14.CFrame = CFrame.new(-44.6169853, 2.59981394, -23.02001, 1.49008656e-007, -4.44105473e-015, 1, 1.77635616e-014, 1, 4.44102762e-015, -1, 1.77635684e-014, 1.49008883e-007)
  6531. o14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6532. o14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6533. o14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6534. o14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6535. o14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6536. o14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6537. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6538. o15.Parent = o14
  6539. o15.Offset = Vector3.new(0, -0.0180000011, -0.00300000003)
  6540. o15.Scale = Vector3.new(0.599999964, 0.791999996, 0.299999982)
  6541. o16.Name = "IRONSIGHT"
  6542. o16.Parent = o1
  6543. o16.Material = Enum.Material.SmoothPlastic
  6544. o16.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6545. o16.Position = Vector3.new(-45.3610039, 2.65676594, -23.0199947)
  6546. o16.Rotation = Vector3.new(-90, -2.14500069e-005, -90.0000076)
  6547. o16.Anchored = true
  6548. o16.FormFactor = Enum.FormFactor.Custom
  6549. o16.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6550. o16.CFrame = CFrame.new(-45.3610039, 2.65676594, -23.0199947, -2.08318397e-007, 0.999990106, -3.74373229e-007, 2.98018463e-008, 3.74374991e-007, 0.999995053, 1, -2.26522616e-006, -2.98014395e-008)
  6551. o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6552. o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6553. o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6554. o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6555. o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6556. o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6557. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6558. o17.Parent = o16
  6559. o17.Scale = Vector3.new(0.599999964, 0.540000021, 0.450000018)
  6560. o17.MeshType = Enum.MeshType.Wedge
  6561. o18.Name = "IRONSIGHT"
  6562. o18.Parent = o1
  6563. o18.Material = Enum.Material.SmoothPlastic
  6564. o18.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6565. o18.Position = Vector3.new(-45.6399918, 2.75281191, -23.0650082)
  6566. o18.Rotation = Vector3.new(179.902588, 89.7451248, -0.991545081)
  6567. o18.Anchored = true
  6568. o18.FormFactor = Enum.FormFactor.Custom
  6569. o18.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6570. o18.CFrame = CFrame.new(-45.6399918, 2.75281191, -23.0650082, 2.21249138e-007, 3.82925913e-009, 0.999990106, -4.37107595e-008, 0.999995053, -3.82934262e-009, -1, -4.3711271e-008, -2.25229542e-006)
  6571. o18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6572. o18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6573. o18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6574. o18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6575. o18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6576. o18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6577. o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6578. o19.Parent = o18
  6579. o19.Scale = Vector3.new(0.151499987, 0.180000007, 0.149999991)
  6580. o19.MeshType = Enum.MeshType.Wedge
  6581. o20.Name = "IRONSIGHT"
  6582. o20.Parent = o1
  6583. o20.Material = Enum.Material.SmoothPlastic
  6584. o20.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6585. o20.Position = Vector3.new(-45.5949974, 2.75281191, -23.0650082)
  6586. o20.Rotation = Vector3.new(179.902588, 89.7451248, -0.991545081)
  6587. o20.Anchored = true
  6588. o20.FormFactor = Enum.FormFactor.Custom
  6589. o20.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6590. o20.CFrame = CFrame.new(-45.5949974, 2.75281191, -23.0650082, 2.21249138e-007, 3.82925913e-009, 0.999990106, -4.37107595e-008, 0.999995053, -3.82934262e-009, -1, -4.3711271e-008, -2.25229542e-006)
  6591. o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6592. o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6593. o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6594. o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6595. o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6596. o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6597. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6598. o21.Parent = o20
  6599. o21.Scale = Vector3.new(0.151499987, 0.180000007, 0.299999982)
  6600. o22.Name = "IRONSIGHT"
  6601. o22.Parent = o1
  6602. o22.Material = Enum.Material.SmoothPlastic
  6603. o22.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6604. o22.Position = Vector3.new(-45.5320015, 2.66876698, -23.0199947)
  6605. o22.Rotation = Vector3.new(180, -0.00013253183, 180)
  6606. o22.Anchored = true
  6607. o22.FormFactor = Enum.FormFactor.Custom
  6608. o22.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6609. o22.CFrame = CFrame.new(-45.5320015, 2.66876698, -23.0199947, -0.999990106, -3.16935846e-008, -2.31311674e-006, -3.16936557e-008, 0.999995053, -3.44613064e-013, 4.78668653e-006, -4.81492775e-013, -1)
  6610. o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6611. o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6612. o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6613. o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6614. o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6615. o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6616. o22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6617. o23.Parent = o22
  6618. o23.Scale = Vector3.new(0.75, 0.149999991, 0.9375)
  6619. o24.Name = "IRONSIGHT"
  6620. o24.Parent = o1
  6621. o24.Material = Enum.Material.SmoothPlastic
  6622. o24.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6623. o24.Position = Vector3.new(-45.5470009, 2.76181388, -23.0199947)
  6624. o24.Rotation = Vector3.new(1.01777712e-012, -90, 0)
  6625. o24.Anchored = true
  6626. o24.FormFactor = Enum.FormFactor.Custom
  6627. o24.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6628. o24.CFrame = CFrame.new(-45.5470009, 2.76181388, -23.0199947, -1.49008656e-007, -4.44105473e-015, -1, -1.77635616e-014, 1, -4.44102762e-015, 1, 1.77635684e-014, -1.49008883e-007)
  6629. o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6630. o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6631. o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6632. o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6633. o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6634. o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6635. o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6636. o25.Parent = o24
  6637. o25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6638. o25.Scale = Vector3.new(0.0599999987, 0.0599999987, 0.0149999997)
  6639. o25.MeshType = Enum.MeshType.FileMesh
  6640. o26.Name = "IRONSIGHT"
  6641. o26.Parent = o1
  6642. o26.Material = Enum.Material.SmoothPlastic
  6643. o26.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6644. o26.Position = Vector3.new(-45.4719963, 2.60581398, -23.0199947)
  6645. o26.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6646. o26.Anchored = true
  6647. o26.FormFactor = Enum.FormFactor.Custom
  6648. o26.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6649. o26.CFrame = CFrame.new(-45.4719963, 2.60581398, -23.0199947, 1.49008656e-007, -4.44105473e-015, 1, 1.77635616e-014, 1, 4.44102762e-015, -1, 1.77635684e-014, 1.49008883e-007)
  6650. o26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6651. o26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6652. o26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6653. o26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6654. o26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6655. o26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6656. o26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6657. o27.Parent = o26
  6658. o27.Scale = Vector3.new(0.599999964, 1.16999996, 0.599999964)
  6659. o28.Name = "IRONSIGHT"
  6660. o28.Parent = o1
  6661. o28.Material = Enum.Material.SmoothPlastic
  6662. o28.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6663. o28.Position = Vector3.new(-45.5470009, 2.61781597, -23.0199947)
  6664. o28.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6665. o28.Anchored = true
  6666. o28.FormFactor = Enum.FormFactor.Custom
  6667. o28.Size = Vector3.new(0.200000003, 0.216000006, 0.200000003)
  6668. o28.CFrame = CFrame.new(-45.5470009, 2.61781597, -23.0199947, 1.49008656e-007, -4.44105473e-015, 1, 1.77635616e-014, 1, 4.44102762e-015, -1, 1.77635684e-014, 1.49008883e-007)
  6669. o28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6670. o28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6671. o28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6672. o28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6673. o28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6674. o28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6675. o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6676. o29.Parent = o28
  6677. o29.Scale = Vector3.new(0.599999964, 1.10000002, 0.149999991)
  6678. o30.Name = "IRONSIGHT"
  6679. o30.Parent = o1
  6680. o30.Material = Enum.Material.SmoothPlastic
  6681. o30.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6682. o30.Position = Vector3.new(-45.6069908, 2.73477697, -22.9629879)
  6683. o30.Rotation = Vector3.new(-90, -5.22833534e-006, -179.999878)
  6684. o30.Anchored = true
  6685. o30.FormFactor = Enum.FormFactor.Custom
  6686. o30.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6687. o30.CFrame = CFrame.new(-45.6069908, 2.73477697, -22.9629879, -0.999990106, 2.33719743e-006, -9.1251664e-008, -9.12519411e-008, 4.37109904e-008, 0.999995053, 4.81076722e-006, 1, -4.3711065e-008)
  6688. o30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6689. o30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6690. o30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6691. o30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6692. o30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6693. o30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6694. o30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6695. o31.Parent = o30
  6696. o31.Scale = Vector3.new(0.299999982, 0.149999991, 0.299999982)
  6697. o32.Name = "IRONSIGHT"
  6698. o32.Parent = o1
  6699. o32.Material = Enum.Material.SmoothPlastic
  6700. o32.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6701. o32.Position = Vector3.new(-45.5919991, 2.75281191, -22.9749947)
  6702. o32.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6703. o32.Anchored = true
  6704. o32.FormFactor = Enum.FormFactor.Custom
  6705. o32.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6706. o32.CFrame = CFrame.new(-45.5919991, 2.75281191, -22.9749947, 1.49008656e-007, -4.44105473e-015, 1, 1.77635616e-014, 1, 4.44102762e-015, -1, 1.77635684e-014, 1.49008883e-007)
  6707. o32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6708. o32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6709. o32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6710. o32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6711. o32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6712. o32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6713. o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6714. o33.Parent = o32
  6715. o33.Scale = Vector3.new(0.151499987, 0.180000007, 0.299999982)
  6716. o34.Name = "IRONSIGHT"
  6717. o34.Parent = o1
  6718. o34.Material = Enum.Material.SmoothPlastic
  6719. o34.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6720. o34.Position = Vector3.new(-45.0519753, 2.68981695, -23.0199947)
  6721. o34.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6722. o34.Anchored = true
  6723. o34.FormFactor = Enum.FormFactor.Custom
  6724. o34.Size = Vector3.new(0.200000003, 0.200000003, 0.720000029)
  6725. o34.CFrame = CFrame.new(-45.0519753, 2.68981695, -23.0199947, 1.49008656e-007, -4.44105473e-015, 1, 1.77635616e-014, 1, 4.44102762e-015, -1, 1.77635684e-014, 1.49008883e-007)
  6726. o34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6727. o34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6728. o34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6729. o34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6730. o34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6731. o34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6732. o34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6733. o35.Parent = o34
  6734. o35.Scale = Vector3.new(0.599999964, 0.180000007, 1)
  6735. o36.Name = "IRONSIGHT"
  6736. o36.Parent = o1
  6737. o36.Material = Enum.Material.SmoothPlastic
  6738. o36.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6739. o36.Position = Vector3.new(-44.6529884, 2.67176604, -23.02001)
  6740. o36.Rotation = Vector3.new(89.999939, -26.9998341, 90.0000153)
  6741. o36.Anchored = true
  6742. o36.FormFactor = Enum.FormFactor.Custom
  6743. o36.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6744. o36.CFrame = CFrame.new(-44.6529884, 2.67176604, -23.02001, -2.21249138e-007, -0.890996754, -0.453987896, -1.45661247e-013, 0.453990191, -0.891001165, 1, 2.00680779e-006, 1.022525e-006)
  6745. o36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6746. o36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6747. o36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6748. o36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6749. o36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6750. o36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6751. o36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6752. o37.Parent = o36
  6753. o37.Offset = Vector3.new(0, -0.0057000001, 0.00329999998)
  6754. o37.Scale = Vector3.new(0.599999964, 0.566999972, 0.180000007)
  6755. o38.Name = "IRONSIGHT"
  6756. o38.Parent = o1
  6757. o38.Material = Enum.Material.SmoothPlastic
  6758. o38.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6759. o38.Position = Vector3.new(-44.6619835, 2.53976989, -23.02001)
  6760. o38.Rotation = Vector3.new(90, 2.72386387e-006, 90.0000076)
  6761. o38.Anchored = true
  6762. o38.FormFactor = Enum.FormFactor.Custom
  6763. o38.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6764. o38.CFrame = CFrame.new(-44.6619835, 2.53976989, -23.02001, -2.21249138e-007, -0.999990106, 4.7540393e-008, -1.45661247e-013, -4.75405564e-008, -0.999995053, 1, 2.25229542e-006, 3.65661176e-014)
  6765. o38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6766. o38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6767. o38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6768. o38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6769. o38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6770. o38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6771. o38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6772. o39.Parent = o38
  6773. o39.Scale = Vector3.new(0.599999964, 0.180000007, 0.299999982)
  6774. o39.MeshType = Enum.MeshType.Wedge
  6775. o40.Name = "Zoom"
  6776. o40.Parent = o1
  6777. o40.Material = Enum.Material.SmoothPlastic
  6778. o40.Transparency = 1
  6779. o40.Position = Vector3.new(-45.7273788, 2.75334311, -23.0179634)
  6780. o40.Rotation = Vector3.new(-90, -88.876564, -90)
  6781. o40.Anchored = true
  6782. o40.FormFactor = Enum.FormFactor.Custom
  6783. o40.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6784. o40.CFrame = CFrame.new(-45.7273788, 2.75334311, -23.0179634, 0, 0.0196069945, -0.999807775, 0, 0.999807775, 0.0196069926, 1, 0, 0)
  6785. o40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6786. o40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6787. o40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6788. o40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6789. o40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6790. o40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6791. o41.Parent = o40
  6792. o41.Scale = Vector3.new(0.142307684, 0.170769244, 0.284615368)
  6793. o42.Name = "IRONSIGHT"
  6794. o42.Parent = o1
  6795. o42.Material = Enum.Material.SmoothPlastic
  6796. o42.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6797. o42.Position = Vector3.new(-45.1359749, 2.73778296, -23.0650082)
  6798. o42.Rotation = Vector3.new(90, 9.07952369e-007, -89.9999924)
  6799. o42.Anchored = true
  6800. o42.FormFactor = Enum.FormFactor.Custom
  6801. o42.Size = Vector3.new(0.200000003, 0.864000022, 0.200000003)
  6802. o42.CFrame = CFrame.new(-45.1359749, 2.73778296, -23.0650082, 1.73088893e-007, 0.999990106, 1.58467586e-008, 6.39488327e-014, 1.58467586e-008, -0.999995053, -1, -2.30045589e-006, 1.91007719e-013)
  6803. o42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6804. o42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6805. o42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6806. o42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6807. o42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6808. o42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6809. o42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6810. o43.Parent = o42
  6811. o43.Scale = Vector3.new(0.149999991, 1, 0.329999983)
  6812. o43.MeshType = Enum.MeshType.Wedge
  6813. ZoomFOV = 70
  6814. end
  6815. function onKeyDown(key)
  6816. key:lower()
  6817. if key == "f" and FlashLight == true then
  6818. if o1.LIGHT.LIGHT.Enabled == false then
  6819. o1.LIGHT.LIGHT.Enabled = true
  6820. else
  6821. o1.LIGHT.LIGHT.Enabled = false
  6822. end
  6823. end
  6824. if key == "q" then
  6825. local check = o1:findFirstChild("ZoomedIn")
  6826. if check.Value == true then
  6827. game.workspace.Camera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid
  6828. game.workspace.Camera.FieldOfView = 70
  6829. game.workspace.Camera.CameraType = g
  6830. check.Value = false
  6831. else
  6832. zoomb = o1.Zoom
  6833. game.workspace.Camera.CameraSubject = zoomb
  6834. game.workspace.Camera.FieldOfView = ZoomFOV
  6835. game.workspace.Camera.CameraType = 1
  6836. check.Value = true
  6837. end
  6838. end
  6839. end
  6840.  
  6841.  
  6842. function onS(mouse)
  6843. mouse.KeyDown:connect(onKeyDown)
  6844. end
  6845. for i,v in pairs (o1:GetChildren()) do
  6846. if v:IsA("Part") or v:IsA("WedgePart") then
  6847. v.Material = "SmoothPlastic"
  6848. v.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6849. v.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6850. v.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6851. v.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6852. v.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6853. v.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6854. if v.BrickColor == BrickColor.new("Really black") then
  6855. v.BrickColor = BrickColor.New(CUSTOMCOLOR)
  6856. end
  6857. end
  6858. end
  6859.  
  6860. o1.Equipped:connect(onS)
  6861.  
  6862. o1.Parent = game.Players.LocalPlayer.Backpack
  6863. end
  6864. end
  6865.  
  6866. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  6867.  
  6868. local tool=Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  6869. tool.Name="Knife V1"
  6870.  
  6871. wait()
  6872. script.Parent=tool
  6873.  
  6874. --Murderer knife action script, original code from The Mad Murderer, by loleris.
  6875.  
  6876. wait()
  6877. local camera = game.Workspace.CurrentCamera
  6878. local player = game.Players.LocalPlayer
  6879. local character = player.Character
  6880. local humanoid = character.Humanoid
  6881. local head = character.Head
  6882. local torso = character.Torso
  6883. local pl_mouse = player:GetMouse()
  6884.  
  6885. local rs = game:GetService("RunService")
  6886.  
  6887. local stab_damage = 110
  6888. local walkspeeds = {16, 19}
  6889.  
  6890. Settings = {
  6891. Equip_time = 0.4,
  6892. Idle_speed = 5,
  6893. Attack_speed = 0.65,
  6894. }
  6895.  
  6896. local assetlink = "http://www.roblox.com/asset/?id="
  6897. local hit_sounds = {"153647516", "153647519", "153647522", "153647526"}
  6898. local death_sounds = {"146594640", "146594648", "146457047"}
  6899. function Clean(obj)
  6900. spawn(function()
  6901. wait(6)
  6902. obj:remove()
  6903. end)
  6904. end
  6905.  
  6906. function HIT_HANDLE(hit, dmg, pos)
  6907. if hit == nil then return end
  6908. local h = hit.Parent:findFirstChild("Humanoid")
  6909. if h == nil then
  6910. h = hit.Parent.Parent:findFirstChild("Humanoid")
  6911. end
  6912. if h == nil then return end
  6913. if h.Health <= 0 then return end
  6914.  
  6915. local head = h.Parent:findFirstChild("Head")
  6916. if head == nil then return end
  6917.  
  6918. local sound_part = Instance.new("Part")
  6919. sound_part.formFactor = "Custom"
  6920. sound_part.Size = Vector3.new(0.2, 0.2, 0.2)
  6921. sound_part.Transparency = 1
  6922. sound_part.CanCollide = false
  6923. sound_part.Anchored = true
  6924. sound_part.CFrame = head.CFrame
  6925. Clean(sound_part)
  6926. sound_part.Parent = Workspace
  6927. local s_hit = Instance.new("Sound")
  6928. s_hit.Volume = 1
  6929. s_hit.SoundId = assetlink .. hit_sounds[math.random(1, #hit_sounds)]
  6930. s_hit.Parent = sound_part
  6931. local s_die = Instance.new("Sound")
  6932. s_die.Volume = 1
  6933. s_die.SoundId = assetlink .. death_sounds[math.random(1, #death_sounds)]
  6934. s_die.Parent = sound_part
  6935.  
  6936. s_hit:play()
  6937.  
  6938. local c_tag = Instance.new("ObjectValue")
  6939. c_tag.Name = "creator"
  6940. c_tag.Value = player
  6941. c_tag.Parent = h
  6942. h.Health=0
  6943. s_die:play()
  6944. end
  6945.  
  6946. function GENERATE_IGNORELIST()
  6947. local result = {character, camera}
  6948. local plr = game.Players:GetPlayers()
  6949. for i = 1, #plr do
  6950. if plr[i] ~= player then
  6951. local char = plr[i].Character
  6952. if char ~= nil then
  6953. local ch = char:GetChildren()
  6954. for i = 1, #ch do
  6955. if ch[i]:IsA("Hat") or ch[i]:IsA("Tool") then
  6956. result[#result + 1] = ch[i]
  6957. end
  6958. end
  6959. end
  6960. end
  6961. end
  6962. return result
  6963. end
  6964.  
  6965. function RayCast(pos1, pos2, dist, ign)
  6966. local ray = Ray.new(
  6967. pos1,
  6968. (pos2 - pos1).unit * math.abs(dist)
  6969. )
  6970. local hit, hpos = Workspace:FindPartOnRayWithIgnoreList(ray, ign, false)
  6971. return hit, hpos
  6972. end
  6973.  
  6974. local larm = character:findFirstChild("Left Arm")
  6975. local rarm = character:findFirstChild("Right Arm")
  6976. function Slash(del)
  6977. coroutine.resume(coroutine.create(function()
  6978. local hits = {}
  6979.  
  6980. local start = tick()
  6981. local actv = true
  6982.  
  6983. local function ishitted(obj)
  6984. for i = 1, #hits do
  6985. if obj:IsDescendantOf(hits[i]) then
  6986. return true
  6987. end
  6988. end
  6989. return false
  6990. end
  6991.  
  6992. local function hitp(hit)
  6993. if ishitted(hit) then return end
  6994. local h = hit.Parent:findFirstChild("Humanoid")
  6995. if h == nil then
  6996. h = hit.Parent.Parent:findFirstChild("Humanoid")
  6997. end
  6998. if h == nil then return end
  6999. hits[#hits + 1] = h.Parent
  7000. HIT_HANDLE(hit, stab_damage)
  7001. end
  7002.  
  7003. local con = {
  7004. larm.Touched:connect(hitp),
  7005. rarm.Touched:connect(hitp),
  7006. }
  7007.  
  7008. while tick() - start <= Settings.Attack_speed do wait() end
  7009. actv = false
  7010. con[1]:disconnect()
  7011. con[2]:disconnect()
  7012. end))
  7013. end
  7014.  
  7015. local dg_sounds = {
  7016. equip = {
  7017. "153647514"
  7018. },
  7019. hit = {
  7020. "153647516",
  7021. "153647519",
  7022. "153647522",
  7023. "153647526"
  7024. },
  7025. swing = {
  7026. "153647529",
  7027. "153647534",
  7028. "153647539",
  7029. "153647540"
  7030. }
  7031. }
  7032.  
  7033. local dg_soundobj = {}
  7034. for k, v in pairs(dg_sounds) do
  7035. dg_soundobj[k] = {}
  7036. for i = 1, #v do
  7037. local ns = Instance.new("Sound")
  7038. ns.SoundId = assetlink .. v[i]
  7039. ns.Volume = 1
  7040. dg_soundobj[k][#dg_soundobj[k] + 1] = ns
  7041. end
  7042. end
  7043.  
  7044. function LoadSounds()
  7045. for __, v in pairs(dg_soundobj) do
  7046. for i = 1, #v do
  7047. v[i].Parent = head
  7048. end
  7049. end
  7050. end
  7051. function RemoveSounds()
  7052. for __, v in pairs(dg_soundobj) do
  7053. for i = 1, #v do
  7054. v[i].Parent = nil
  7055. end
  7056. end
  7057. end
  7058. function PlaySound(nm, dl)
  7059. if dl == nil then
  7060. dg_soundobj[nm][math.random(1, #dg_soundobj[nm])]:play()
  7061. else
  7062. coroutine.resume(coroutine.create(function()
  7063. wait(dl)
  7064. dg_soundobj[nm][math.random(1, #dg_soundobj[nm])]:play()
  7065. end))
  7066. end
  7067. end
  7068.  
  7069. _G.MurderKnife_AnimType = "Default"
  7070. _G.MurderKnife_AnimState = 0
  7071.  
  7072. function Animate(tp, st)
  7073. _G.MurderKnife_AnimType = tp
  7074. _G.MurderKnife_AnimState = st
  7075. end
  7076.  
  7077. tool.Selected:connect(function(mouse) --Default, Idle1, Idle2, Attack1, Attack2
  7078. humanoid.WalkSpeed = walkspeeds[2]
  7079. mouse.Icon = assetlink .. "54019936"
  7080. Animate("Equip", 0)
  7081. LoadSounds()
  7082. PlaySound("equip", 0.1)
  7083.  
  7084. local anim_equip = 1
  7085. local last_action = tick()
  7086. local idle_rand = math.random(4, 7)
  7087. local idle_perform = 0
  7088. local idle_type = 1
  7089.  
  7090. local attack_perform = 0
  7091. local attack_type = 1
  7092.  
  7093. local running = true
  7094. local last_c = tick()
  7095.  
  7096. local click_start = tick()
  7097. mouse.Button1Down:connect(function()
  7098. if not running or anim_equip > 0 then return end
  7099. if tick() - attack_perform <= Settings.Attack_speed then return end
  7100. attack_perform = tick()
  7101. last_action = tick()
  7102. attack_type = math.random(1, 3)
  7103. idle_perform = 0
  7104. PlaySound("swing", 0.15)
  7105. Slash(0.17)
  7106. end)
  7107.  
  7108. local conn = rs.RenderStepped:connect(function()
  7109. if not running then return end
  7110. local delta = tick() - last_c
  7111. last_c = tick()
  7112.  
  7113. if anim_equip > 0 then
  7114. anim_equip = math.max(0, anim_equip - (delta / Settings.Equip_time))
  7115. Animate("Equip", 1 - anim_equip)
  7116. elseif tick() - attack_perform <= Settings.Attack_speed then
  7117. Animate("Attack" .. attack_type, (tick() - attack_perform) / Settings.Attack_speed)
  7118. idle_perform = 0
  7119. elseif tick() - idle_perform <= Settings.Idle_speed then
  7120. Animate("Idle" .. idle_type, (tick() - idle_perform) / Settings.Idle_speed)
  7121. else
  7122. Animate("Default", 0)
  7123. end
  7124.  
  7125. if tick() - last_action >= idle_rand then
  7126. idle_rand = math.random(12, 20)
  7127. last_action = tick()
  7128. idle_perform = tick()
  7129. idle_type = math.random(1, 2)
  7130. end
  7131.  
  7132. end)
  7133. tool.Deselected:connect(function() running = false conn:disconnect() end)
  7134. end)
  7135. tool.Deselected:connect(function()
  7136. RemoveSounds()
  7137. humanoid.WalkSpeed = walkspeeds[1]
  7138. end)
  7139.  
  7140. --Murderer knife animation module, original code from The Mad Murderer, by loleris.
  7141.  
  7142. local mouse = pl_mouse
  7143.  
  7144. local conn_type = "Snap"
  7145.  
  7146. local anim_head = false
  7147.  
  7148. weapon_properties = {
  7149. mesh_id = "http://www.roblox.com/asset/?id=121944778",
  7150. texture_id = "http://www.roblox.com/asset/?id=121944805",
  7151. scale = Vector3.new(0.6, 0.6, 0.6),
  7152. transparency = 0,
  7153. reflectance = 0,
  7154. brick_color = BrickColor.new("Really black"),
  7155. }
  7156.  
  7157. --How did I make all of this? Magic. Didn't even need an animation editor :)
  7158. Animations = {
  7159. Default = {
  7160. {{}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-0.873, 0, 0.698), CFrame.new(-0.201, 0, 0) * CFrame.Angles(-0.175, 0.349, -0.262), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)}
  7161. },
  7162. Equip = {
  7163. {{}, 0, CFrame.new(0, 0, 0) * CFrame.Angles(-1.571, 0, 0), CFrame.new(0, 0, 0) * CFrame.Angles(-1.571, 0, 0), CFrame.new(0, -1.3, -0.5) * CFrame.Angles(-2.618, 0, 0)},
  7164. {{0.8, 2}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-0.524, 0, 0.698), CFrame.new(-0.201, 0, 0) * CFrame.Angles(0, 0.349, -0.262), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)},
  7165. {{0.2, 2}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-0.873, 0, 0.698), CFrame.new(-0.201, 0, 0) * CFrame.Angles(-0.175, 0.349, -0.262), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)},
  7166. },
  7167. Idle1 = {
  7168. {{}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-0.873, 0, 0.698), CFrame.new(-0.201, 0, 0) * CFrame.Angles(-0.175, 0.349, -0.262), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)},
  7169. {{0.3, 2}, 0, CFrame.new(0.8, -0.301, 0.2) * CFrame.Angles(-0.35, 0, 0.872), CFrame.new(-0.201, 0, 0) * CFrame.Angles(0.523, 1.221, -0.699), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 1.221, 0)},
  7170. {{0.55, 2}, 0, CFrame.new(0.2, -0.5, 0.2) * CFrame.Angles(-0.14, 0, 0.698), CFrame.new(-0.201, 0, 0) * CFrame.Angles(0, 1.221, -0.175), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.746, 1.221, 0.174)},
  7171. {{0.15, 2}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-0.873, 0, 0.698), CFrame.new(-0.201, 0, 0) * CFrame.Angles(-0.175, 0.349, -0.262), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)},
  7172. },
  7173. Idle2 = {
  7174. {{}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-0.873, 0, 0.698), CFrame.new(-0.201, 0, 0) * CFrame.Angles(-0.175, 0.349, -0.262), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)},
  7175. {{0.3, 2}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-0.524, 0, 0.872), CFrame.new(-0.201, 0, 0) * CFrame.Angles(-0.175, -0.175, -0.262), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0.523, 0)},
  7176. {{0.3, 2}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(0.349, 0, 0.523), CFrame.new(-0.201, 0, 0) * CFrame.Angles(0.174, 0.698, -0.524), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, -1.222, 0)},
  7177. {{0.2, 2}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(0.61, 0, 0.349), CFrame.new(-0.201, 0, 0) * CFrame.Angles(0.139, 0.663, -0.489), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, -1.222, 0)},
  7178. {{0.2, 2}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-0.873, 0, 0.698), CFrame.new(-0.201, 0, 0) * CFrame.Angles(-0.175, 0.349, -0.262), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)}
  7179. },
  7180. Attack1 = {
  7181. {{}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-0.873, 0, 0.698), CFrame.new(-0.201, 0, 0) * CFrame.Angles(-0.175, 0.349, -0.262), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)},
  7182. {{0.25, 2}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-1.048, 0, 0.349), CFrame.new(-0.201, 0, 0) * CFrame.Angles(0.872, 0.349, 0.087), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)},
  7183. {{0.15, 2}, 0, CFrame.new(0.4, -0.101, 0.1) * CFrame.Angles(-1.571, 0, -0.35), CFrame.new(-0.301, -0.301, 0.1) * CFrame.Angles(-1.048, -0.175, -0.524), CFrame.new(0, -1.201, -0.801) * CFrame.Angles(-2.095, 0, 0)},
  7184. {{0.6, 2}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-0.873, 0, 0.698), CFrame.new(-0.201, 0, 0) * CFrame.Angles(-0.175, 0.349, -0.262), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)}
  7185. },
  7186. Attack2 = {
  7187. {{}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-0.873, 0, 0.698), CFrame.new(-0.201, 0, 0) * CFrame.Angles(-0.175, 0.349, -0.262), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)},
  7188. {{0.25, 2}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-0.699, 0, 0.872), CFrame.new(-0.401, 0.3, 0.1) * CFrame.Angles(1.919, 2.443, -1.222), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)},
  7189. {{0.15, 2}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-1.048, 0, -0.524), CFrame.new(-0.5, -0.201, -0.101) * CFrame.Angles(0.523, 1.396, -0.873), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)},
  7190. {{0.6, 2}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-0.873, 0, 0.698), CFrame.new(-0.201, 0, 0) * CFrame.Angles(-0.175, 0.349, -0.262), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)}
  7191. },
  7192. Attack3 = {
  7193. {{}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-0.873, 0, 0.698), CFrame.new(-0.201, 0, 0) * CFrame.Angles(-0.175, 0.349, -0.262), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)},
  7194. {{0.25, 2}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-1.397, 0, 0.174), CFrame.new(-0.401, -0.201, 0) * CFrame.Angles(1.396, 0.698, -1.571), CFrame.new(0, -1.3, -0.401) * CFrame.Angles(-2.444, 0, 0)},
  7195. {{0.15, 2}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-1.397, 0, 0.174), CFrame.new(-0.401, 0.1, 0) * CFrame.Angles(0.349, 2.094, -0.524), CFrame.new(0, -1.3, 0.1) * CFrame.Angles(-3.84, 0, 0)},
  7196. {{0.6, 2}, 0, CFrame.new(0.4, -0.201, 0.2) * CFrame.Angles(-0.873, 0, 0.698), CFrame.new(-0.201, 0, 0) * CFrame.Angles(-0.175, 0.349, -0.262), CFrame.new(0, -0.95, -0.801) * CFrame.Angles(-1.571, 0, 0)} --Psst. Create a dummy, try setting position and angles of limbs and the weapon, save CFrame data to code. Easy? Yes. When making a single knife tool, it was all you needed.
  7197. }
  7198. }
  7199.  
  7200.  
  7201. function CFrameTrans(GetCFrame1, GetCFrame2, GetNumber)
  7202. local Diff2 = GetCFrame2.p - GetCFrame1.p
  7203. GetCFrame1_s = GetCFrame1 - GetCFrame1.p
  7204. GetCFrame2 = GetCFrame2 - GetCFrame2.p
  7205. local Diff = GetCFrame1_s:inverse() * GetCFrame2
  7206. local x1, y1, z1 = Diff:toEulerAnglesXYZ()
  7207. return (GetCFrame1 + (Diff2 * GetNumber)) * CFrame.Angles(x1 * GetNumber, y1 * GetNumber, z1 * GetNumber)
  7208. end
  7209.  
  7210. function TransEff(x, type)
  7211. if type == 1 then
  7212. return x
  7213. elseif type == 2 then
  7214. return x*x*(3 - 2*x)
  7215. elseif type == 3 then
  7216. return math.sin(math.rad(x * 90))
  7217. elseif type == 4 then
  7218. return 1 - math.sin(math.rad((1 - x) * 90))
  7219. end
  7220. end
  7221.  
  7222. function num_trans(n1, n2, x)
  7223. return n1 + ((n2 - n1) * x)
  7224. end
  7225.  
  7226. function PlayAnimation(anim_name, tm) --return {left, right, wep, trans}
  7227. tm = math.min(1, math.max(0, tm))
  7228. local animd = Animations[anim_name]
  7229. if #animd == 1 then
  7230. return {animd[1][3], animd[1][4], animd[1][5], animd[1][2]}
  7231. else
  7232. local trans_from = 1
  7233. local trans_to = 1
  7234. local tm_left = tm
  7235. for i = 2, #animd do
  7236. tm_left = tm_left - animd[i][1][1]
  7237. if tm_left <= 0 then
  7238. trans_from = i - 1
  7239. trans_to = i
  7240. break
  7241. end
  7242. end
  7243. local trans_amm = TransEff((animd[trans_to][1][1] + tm_left) / animd[trans_to][1][1], animd[trans_to][1][2])
  7244. return {
  7245. CFrameTrans(animd[trans_from][3], animd[trans_to][3], trans_amm),
  7246. CFrameTrans(animd[trans_from][4], animd[trans_to][4], trans_amm),
  7247. CFrameTrans(animd[trans_from][5], animd[trans_to][5], trans_amm),
  7248. num_trans(animd[trans_from][2], animd[trans_to][2], trans_amm)
  7249. }
  7250. end
  7251. end
  7252.  
  7253. rot_amplitude_head = 20
  7254. rot_amplitude_chest = 15
  7255.  
  7256. anim_p = {
  7257. cam_offset = CFrame.new(0.2, -0.37, 0.91) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)),
  7258. aim_amp = 0.5,
  7259. aim_max_change = 4,
  7260. aim_retract = 15,
  7261. aim_max_deg = 20,
  7262. }
  7263.  
  7264. local weapon_model = Instance.new("Part")
  7265. weapon_model.CanCollide = false
  7266. weapon_model.Name = "WeaponObject"
  7267. weapon_model.formFactor = "Custom"
  7268. weapon_model.Size = Vector3.new(0.2, 0.2, 0.2)
  7269. weapon_model.TopSurface = 0
  7270. weapon_model.BottomSurface = 0
  7271. weapon_model.BrickColor = weapon_properties.brick_color
  7272. weapon_model.Transparency = weapon_properties.transparency
  7273. weapon_model.Reflectance = weapon_properties.reflectance
  7274. local mesh = Instance.new("SpecialMesh", weapon_model)
  7275. mesh.Scale = weapon_properties.scale
  7276. mesh.MeshId = weapon_properties.mesh_id
  7277. mesh.TextureId = weapon_properties.texture_id
  7278.  
  7279. torso = character.Torso
  7280. head = character.Head
  7281.  
  7282. motors = {torso:findFirstChild("Left Shoulder"), torso:findFirstChild("Right Shoulder"), torso:findFirstChild("Neck")}
  7283. welds = {nil, nil, nil}
  7284. weapon_parts = {weapon_model:clone(), weapon_model:clone()}
  7285. weapon_model = nil
  7286.  
  7287. function EndAnimation()
  7288. if motors[1] then
  7289. motors[1].Part1 = character:findFirstChild("Left Arm")
  7290. end
  7291. if motors[2] then
  7292. motors[2].Part1 = character:findFirstChild("Right Arm")
  7293. end
  7294. if motors[3] then
  7295. motors[3].Part1 = character:findFirstChild("Head")
  7296. end
  7297. if welds[1] then
  7298. welds[1]:remove()
  7299. welds[1] = nil
  7300. end
  7301. if welds[2] then
  7302. welds[2]:remove()
  7303. welds[2] = nil
  7304. end
  7305. if welds[3] then
  7306. welds[3]:remove()
  7307. welds[3] = nil
  7308. end
  7309. weapon_parts[1].Parent = nil
  7310. if weapon_model then
  7311. weapon_model.Parent = nil
  7312. end
  7313. coroutine.resume(coroutine.create(function()
  7314. local swm = weapon_model
  7315. wait()
  7316. swm.Parent = nil
  7317. wait(0.1)
  7318. swm.Parent = nil
  7319. wait(0.5)
  7320. swm.Parent = nil
  7321. end))
  7322. end
  7323.  
  7324. local anim_model = Instance.new("Model")
  7325. anim_model.Name = "WeaponAnimation"
  7326. weapon_model = anim_model
  7327.  
  7328. local cam_larm = Instance.new("Part")
  7329. cam_larm.Parent = anim_model
  7330. cam_larm.BrickColor = BrickColor.new("Really black")
  7331. cam_larm.formFactor = "Custom"
  7332. cam_larm.Size = Vector3.new(0.2, 0.2, 0.2)
  7333. cam_larm.TopSurface = 0
  7334. cam_larm.BottomSurface = 0
  7335. cam_larm.Transparency = 0.4
  7336. cam_larm.CanCollide = false
  7337. local hmesh = Instance.new("BlockMesh", cam_larm)
  7338. hmesh.Scale = Vector3.new(5, 10, 5)
  7339.  
  7340. local cam_rarm = cam_larm:clone()
  7341. cam_rarm.Parent = anim_model
  7342.  
  7343. function StartAnimation()
  7344. local check = {torso:findFirstChild("LeftWeld"), torso:findFirstChild("RightWeld"), torso:findFirstChild("HeadWeld")}
  7345. if check[1] then check[1]:remove() end
  7346. if check[2] then check[2]:remove() end
  7347. if check[3] then check[3]:remove() end
  7348. local check2 = {character:findFirstChild("WeaponObject"), camera:findFirstChild("WeaponAnimation")}
  7349. if check2[1] then check2[1].Parent = nil end
  7350. if check2[2] then check2[2].Parent = nil end
  7351. if motors[1] then
  7352. motors[1].Part1 = nil
  7353. end
  7354. if motors[2] then
  7355. motors[2].Part1 = nil
  7356. end
  7357. if motors[3] then
  7358. motors[3].Part1 = nil
  7359. end
  7360. welds = {Instance.new(conn_type), Instance.new(conn_type), Instance.new(conn_type)}
  7361. welds[1].Part0 = torso
  7362. welds[2].Part0 = torso
  7363. welds[3].Part0 = torso
  7364. welds[1].Part1 = character:findFirstChild("Left Arm")
  7365. welds[2].Part1 = character:findFirstChild("Right Arm")
  7366. welds[3].Part1 = character:findFirstChild("Head")
  7367. welds[1].Name = "LeftWeld"
  7368. welds[2].Name = "RightWeld"
  7369. welds[2].Name = "HeadWeld"
  7370. welds[1].C0 = CFrame.new(-1.5, 0, 0)
  7371. welds[2].C0 = CFrame.new(1.5, 0, 0)
  7372. welds[3].C0 = CFrame.new(0, 1.5, 0)
  7373. welds[1].Parent = torso
  7374. welds[2].Parent = torso
  7375. welds[3].Parent = torso
  7376.  
  7377. weapon_parts[1].Parent = character
  7378. local wep_weld = Instance.new(conn_type)
  7379. wep_weld.Part0 = character:findFirstChild("Right Arm")
  7380. wep_weld.Part1 = weapon_parts[1]
  7381. wep_weld.C0 = CFrame.new()
  7382. wep_weld.Parent = weapon_parts[1]
  7383.  
  7384. local weld1 = welds[1]
  7385. local weld2 = welds[2]
  7386. local weld3 = welds[3]
  7387.  
  7388. local cam_welds = {Instance.new(conn_type), Instance.new(conn_type), Instance.new(conn_type)}
  7389. cam_welds[1].Part0 = torso
  7390. cam_welds[1].Part1 = cam_larm
  7391. cam_welds[1].Parent = cam_larm
  7392. cam_welds[2].Part0 = torso
  7393. cam_welds[2].Part1 = cam_rarm
  7394. cam_welds[2].Parent = cam_rarm
  7395. cam_welds[3].Part0 = cam_rarm
  7396. cam_welds[3].Part1 = weapon_parts[2]
  7397. cam_welds[3].Parent = weapon_parts[2]
  7398. weapon_parts[2].Parent = anim_model
  7399.  
  7400. local move_anim_speed = 3
  7401. local last_p = Vector3.new()
  7402. local move_amm = 0
  7403. coroutine.resume(coroutine.create(function()
  7404. while weld1.Parent ~= nil do
  7405. local delta = wait(1/25)
  7406. local cur_p = torso.Position
  7407. if (cur_p - last_p).magnitude >= 0.1 then
  7408. move_amm = math.min(1, move_amm + delta * move_anim_speed)
  7409. else
  7410. move_amm = math.max(0, move_amm - delta * move_anim_speed)
  7411. end
  7412. last_p = cur_p
  7413. end
  7414. end))
  7415.  
  7416. local r_serv = game:GetService("RunService")
  7417.  
  7418. --EASTER EGG
  7419. function easein(x)
  7420. return math.sin(math.rad(x * 90))
  7421. end
  7422.  
  7423. local a_horse = (character:findFirstChild("HorseHead") ~= nil)
  7424. local horse_displace = {0, 0}
  7425. local horse_cf = CFrame.Angles(0.0001, 0.0001, 0)
  7426. if a_horse then
  7427. coroutine.resume(coroutine.create(function()
  7428. while weld1.Parent ~= nil do
  7429. local rndwait = (math.random(100, 1000) / 1000) * 4
  7430. wait(rndwait)
  7431. local oldd = {horse_displace[1], horse_displace[2]}
  7432. local disp2 = {math.random(-60, 60), math.random(0, 25)}
  7433.  
  7434. local ld = 0
  7435. while ld ~= 1 do
  7436. local st = tick()
  7437. r_serv.RenderStepped:wait()
  7438. ld = math.min(1, ld + ((tick() - st) * 4))
  7439. local eff = easein(ld)
  7440.  
  7441. local x = oldd[1] - ((oldd[1] - disp2[1]) * eff)
  7442. local y = oldd[2] - ((oldd[2] - disp2[2]) * eff)
  7443. horse_displace = {x, y}
  7444. horse_cf = CFrame.Angles(math.rad(y), math.rad(x) , 0)
  7445. end
  7446. end
  7447. end))
  7448. end
  7449.  
  7450. --EASTER EGG
  7451.  
  7452. local last_va = 0
  7453. local last_va2 = 0
  7454. local view_velocity = {0, 0}
  7455.  
  7456. coroutine.resume(coroutine.create(function()
  7457. local last_time = tick()
  7458. while weld1.Parent ~= nil do
  7459. r_serv.RenderStepped:wait() ------------------------------------------------
  7460. local delta = tick() - last_time
  7461. last_time = tick()
  7462.  
  7463. local breathe_amp = 2
  7464. local breathe_freq = 0.8
  7465. local breathe = math.sin(math.rad(tick() * 90 * breathe_freq)) * breathe_amp
  7466.  
  7467. local shake_freq = 5
  7468. local shake_amp = {0.05, 0.05}
  7469. local arm_shake = CFrame.new(
  7470. math.sin(math.rad(tick() * 90 * shake_freq)) * move_amm * shake_amp[1],
  7471. 0,
  7472. math.abs(math.sin(math.rad(tick() * 90 * shake_freq)) * move_amm * shake_amp[2]))
  7473.  
  7474.  
  7475. --ANIMATION LOOP
  7476. local p_distance = (head.Position - mouse.Hit.p).magnitude
  7477. if p_distance == 0 then p_distance = 0.0001 end
  7478. local p_height = mouse.Hit.p.y - head.Position.y
  7479. local view_angle
  7480. if p_height ~= 0 then
  7481. view_angle = math.deg(math.asin(math.abs(p_height) / p_distance)) * (math.abs(p_height) / p_height)
  7482. else
  7483. view_angle = 0
  7484. end
  7485.  
  7486. local cam_cf = camera.CoordinateFrame
  7487. local looking_at = cam_cf * CFrame.new(0, 0, -100)
  7488. local view_angle2 = math.deg(math.atan2(cam_cf.p.x - looking_at.p.x, cam_cf.p.z - looking_at.p.z)) + 180
  7489.  
  7490. local v_delta1, v_delta2
  7491. local dir1 = 0
  7492. local dir2 = 0
  7493. v_delta1 = math.abs(view_angle - last_va)
  7494. if v_delta1 ~= 0 then
  7495. dir1 = (view_angle - last_va) / v_delta1
  7496. end
  7497. local va_check = {math.abs(view_angle2 - last_va2), 360 - math.abs(view_angle2 - last_va2)}
  7498. if view_angle2 == last_va2 then
  7499. dir2 = 0
  7500. v_delta2 = 0
  7501. elseif va_check[1] < va_check[2] then
  7502. v_delta2 = va_check[1]
  7503. dir2 = (view_angle2 - last_va2) / va_check[1]
  7504. else
  7505. v_delta2 = va_check[2]
  7506. if last_va2 > view_angle2 then
  7507. dir2 = 1
  7508. else
  7509. dir2 = -1
  7510. end
  7511. end
  7512. last_va = view_angle
  7513. last_va2 = view_angle2
  7514.  
  7515. view_velocity[1] = view_velocity[1] / (1 + (delta * anim_p.aim_retract))
  7516. view_velocity[2] = view_velocity[2] / (1 + (delta * anim_p.aim_retract))
  7517.  
  7518. local calc1 = v_delta1 * dir1 * anim_p.aim_amp
  7519. if calc1 ~= 0 then
  7520. view_velocity[1] = view_velocity[1] + (math.min(anim_p.aim_max_change, math.abs(calc1)) * (calc1 / math.abs(calc1)))
  7521. end
  7522. local calc2 = v_delta2 * dir2 * anim_p.aim_amp
  7523. if calc2 ~= 0 then
  7524. view_velocity[2] = view_velocity[2] + (math.min(anim_p.aim_max_change, math.abs(calc2)) * (calc2 / math.abs(calc2)))
  7525. end
  7526.  
  7527. if view_velocity[1] ~= 0 then
  7528. view_velocity[1] = math.min(anim_p.aim_max_deg, math.abs(view_velocity[1])) * (math.abs(view_velocity[1]) / view_velocity[1])
  7529. end
  7530. if view_velocity[2] ~= 0 then
  7531. view_velocity[2] = math.min(anim_p.aim_max_deg, math.abs(view_velocity[2])) * (math.abs(view_velocity[2]) / view_velocity[2])
  7532. end
  7533.  
  7534. local anmtp = _G.MurderKnife_AnimType
  7535. local anmst = _G.MurderKnife_AnimState
  7536.  
  7537. if anmst == nil then
  7538. anmst = 0
  7539. end
  7540.  
  7541. if anmtp ~= nil then
  7542. if Animations[anmtp] == nil then
  7543. anmtp = "Default"
  7544. end
  7545. else
  7546. anmtp = "Default"
  7547. end
  7548. local curr_anim = PlayAnimation(anmtp, anmst) --left, right, weapon, wep trans
  7549.  
  7550. --curr_anim = {Animations.Default[1][3], Animations.Default[1][4], Animations.Default[1][5], 0}
  7551.  
  7552. local chestCF = CFrame.new(0, 0.5, 0) * CFrame.Angles(math.rad(math.max(-rot_amplitude_chest, math.min(rot_amplitude_chest, view_angle)) + 90 + breathe), 0, 0)
  7553. weld1.C1 = (chestCF * curr_anim[1] * CFrame.new(0, -0.5, 0)):inverse()
  7554. weld2.C1 = (chestCF * curr_anim[2] * CFrame.new(0, -0.5, 0)):inverse()
  7555. wep_weld.C1 = (curr_anim[3]):inverse()
  7556. weapon_parts[1].Transparency = curr_anim[4]
  7557. if anim_head then
  7558. weld3.C1 = (CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(math.max(-rot_amplitude_head, math.min(rot_amplitude_head, view_angle))), 0, 0) * horse_cf):inverse()
  7559. else
  7560. weld3.C1 = (CFrame.new(0, 0, 0)):inverse()
  7561. end
  7562.  
  7563. if (head.Position - camera.CoordinateFrame.p).magnitude < 3 then
  7564. if anim_model.Parent == nil then
  7565. anim_model.Parent = camera
  7566. end
  7567. cam_welds[1].Parent = cam_larm
  7568. cam_welds[2].Parent = cam_rarm
  7569. cam_welds[3].Parent = weapon_parts[2]
  7570. local cam_cf = camera.CoordinateFrame * CFrame.Angles(math.rad(90 + (breathe / 2) - view_velocity[1]), 0, math.rad(view_velocity[2])) * arm_shake * anim_p.cam_offset
  7571. cam_welds[1].C1 = (torso.CFrame:inverse() * cam_cf * CFrame.new(-1.5, 0, 0) * curr_anim[1] * CFrame.new(0, -0.5, 0)):inverse()
  7572. cam_welds[2].C1 = (torso.CFrame:inverse() * cam_cf * CFrame.new(1.5, 0, 0) * curr_anim[2] * CFrame.new(0, -0.5, 0)):inverse()
  7573. cam_welds[3].C1 = (curr_anim[3]):inverse()
  7574. weapon_parts[2].Transparency = curr_anim[4]
  7575. else
  7576. if anim_model.Parent ~= nil then
  7577. anim_model.Parent = nil
  7578. end
  7579. end
  7580. --ANIMATION LOOP
  7581. end
  7582. end))
  7583. end
  7584.  
  7585. local last_st = 0
  7586. local eq = false
  7587. tool.Selected:connect(function(mouse)
  7588. if eq then return end
  7589. eq = true
  7590. wait()
  7591. StartAnimation()
  7592. end)
  7593.  
  7594. tool.Deselected:connect(function()
  7595. eq = false
  7596. EndAnimation()
  7597. end)
  7598.  
  7599. function onKeyPress(inputObject, gameProcessedEvent)
  7600. if inputObject.KeyCode == Enum.KeyCode.N then
  7601. --Left Click to kill yourself
  7602.  
  7603. local player = game.Players.LocalPlayer
  7604. repeat wait() until player.Character.Humanoid
  7605. local humanoid = player.Character.Humanoid
  7606. local mouse = player:GetMouse()
  7607. --game.Players.LocalPlayer.Character.Shirt.ShirtTemplate='rbxassetid://473465498'
  7608. local player=game.Players.LocalPlayer;
  7609. local char=game.Players.LocalPlayer.Character;
  7610. local humanoid = player.Character.Humanoid;
  7611. Tool=Instance.new('Tool', game.Players.LocalPlayer.Backpack);
  7612. Tool.GripRight=Vector3.new(-0.816, 0, 0.577);
  7613. Tool.GripUp=Vector3.new(-0.027, 0.996, -0.089);
  7614. Tool.GripPos=Vector3.new(-0.3, -0.4, 0.4);
  7615. Tool.GripForward=Vector3.new(-1, 0, -0); --0.485, 0.14, -0.863
  7616. Tool.Name='kys';
  7617. Handle=Instance.new('Part', Tool);
  7618. Handle.Name = 'Handle';
  7619. Handle.BrickColor=BrickColor.new('Really black')
  7620. Handle.Size=Vector3.new(0.26, 1.11, 4.85);
  7621. Handle.Position=Vector3.new(-18.53, 0.555, -16.825)
  7622. gunfire=Instance.new('Part', Tool)
  7623. gunfire.Name='GunFire'
  7624. gunfire.Size=Vector3.new(0.2, 0.2, 0.2)
  7625. gunfire.Transparency=1
  7626. gunfire.Position=Vector3.new(-18.56, 1.1, -19.35)
  7627. gunfirefx=Instance.new('BillboardGui', gunfire)
  7628. gunfirefx.Enabled=false
  7629. gunfirefx.Adornee = gunfire
  7630. gunfirefx.Size=UDim2.new(1.1, 0, 1.1, 0)
  7631. gunfirefx2=Instance.new('ImageLabel', gunfirefx)
  7632. gunfirefx2.Image='http://www.roblox.com/asset/?id=117472237'
  7633. gunfirefx2.BackgroundTransparency=1
  7634. gunfirefx2.Size=UDim2.new(1.2, 0, 1.2, 0)
  7635.  
  7636. shootsound=Instance.new('Sound', char.Torso)
  7637. shootsound.Volume=8
  7638. shootsound.SoundId='rbxassetid://230622620'
  7639. c4mesh=Instance.new('SpecialMesh', Handle);
  7640. c4mesh.MeshType = 'FileMesh';
  7641. c4mesh.MeshId='http://www.roblox.com/asset/?id=95356090';
  7642. c4mesh.TextureId='http://www.roblox.com/asset/?id=95387789';
  7643. c4mesh.Scale=Vector3.new(1.8, 1.8, 1.8);
  7644.  
  7645. local anim5 = Instance.new("Animation", player.Character)
  7646. anim5.AnimationId = "http://www.roblox.com/asset/?id=95383474"
  7647. local playAnim10 = humanoid:LoadAnimation(anim5)
  7648.  
  7649. Tool.GripRight=Vector3.new(-0.816, 0, 0.577)
  7650.  
  7651. function equipped()
  7652. wait()
  7653. playAnim10:Play()
  7654. end
  7655.  
  7656. function unequipped()
  7657. wait()
  7658. playAnim10:Stop()
  7659. end
  7660.  
  7661. Tool.Equipped:connect(equipped)
  7662. Tool.Unequipped:connect(unequipped)
  7663.  
  7664. light=Instance.new('PointLight', Handle);
  7665. light.Color = Color3.new(255, 255, 0)
  7666. light.Range=10;
  7667. light.Enabled=false;
  7668.  
  7669.  
  7670. function Shoot()
  7671. shootsound:Play()
  7672. light.Enabled=true
  7673. wait(0.1)
  7674. light.Enabled=false
  7675. player.Character.Humanoid.Health=0
  7676. wait()
  7677. Tool:Destroy()
  7678. end
  7679. Tool.Activated:connect(Shoot)
  7680.  
  7681. --ragdoll
  7682.  
  7683. print("Loaded.")
  7684. --You don't need to edit this!
  7685.  
  7686. Character = player.Character
  7687. Humanoid = Character.Humanoid
  7688. Torso = Character.Torso
  7689. mode = Instance.new("Model")
  7690. mode.Name = ""
  7691. mode.Parent = game.Workspace
  7692.  
  7693. function OnDeath()
  7694.  
  7695. print("Death")
  7696. wait(0.00000001)
  7697. Humanoid.Parent = nil
  7698. if Torso then
  7699. zam=Torso:Clone()
  7700. zam.Parent=mode
  7701. x=Character:GetChildren()
  7702. for i=1,#x do
  7703. if ((x[i].Name=="Shirt") or (x[i].Name=="Pants")) then
  7704. local zor=x[i]:Clone()
  7705. zor.Parent=mode
  7706. end
  7707. if x[i].Name=="Head" then
  7708. local zem=x[i]:Clone()
  7709. zem.Parent=mode --Made by MatrixComplexity
  7710. local Neck = Instance.new("Weld")
  7711. Neck.Name = "Neck"
  7712. Neck.Part0 = zam
  7713. Neck.Part1 = zem
  7714. Neck.C0 = CFrame.new(0, 1.5, 0)
  7715. Neck.C1 = CFrame.new()
  7716. Neck.Parent = zam
  7717. end
  7718. if x[i].Name=="Right Arm" then
  7719. local Limb=x[i]:Clone()
  7720. Limb.Parent=mode
  7721. Limb.CFrame = zam.CFrame * CFrame.new(1.5, 0, 0)
  7722. local Joint = Instance.new("Glue")
  7723. Joint.Name = "RightShoulder"
  7724. Joint.Part0 = zam
  7725. Joint.Part1 = Limb
  7726. Joint.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  7727. Joint.C1 = CFrame.new(-0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  7728. Joint.Parent = zam
  7729.  
  7730. local B = Instance.new("Part")
  7731. B.TopSurface = 0
  7732. B.BottomSurface = 0
  7733. B.formFactor = "Symmetric"
  7734. B.Size = Vector3.new(1, 1, 1)
  7735. B.Transparency = 1
  7736. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  7737. B.Parent = mode
  7738. local W = Instance.new("Weld")
  7739. W.Part0 = Limb
  7740. W.Part1 = B
  7741. W.C0 = CFrame.new(0, -0.5, 0)
  7742. W.Parent = Limb
  7743.  
  7744. end
  7745. if x[i].Name=="Left Arm" then
  7746. local Limb=x[i]:Clone()
  7747. Limb.Parent=mode
  7748.  
  7749. Limb.CFrame = zam.CFrame * CFrame.new(-1.5, 0, 0)
  7750. local Joint = Instance.new("Glue")
  7751. Joint.Name = "LeftShoulder"
  7752. Joint.Part0 = zam
  7753. Joint.Part1 = Limb
  7754. Joint.C0 = CFrame.new(-1.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  7755. Joint.C1 = CFrame.new(0, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  7756. Joint.Parent = zam
  7757.  
  7758. local B = Instance.new("Part")
  7759. B.TopSurface = 0
  7760. B.BottomSurface = 0
  7761. B.formFactor = "Symmetric"
  7762. B.Size = Vector3.new(1, 1, 1)
  7763. B.Transparency = 1
  7764. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  7765. B.Parent = mode
  7766. local W = Instance.new("Weld")
  7767. W.Part0 = Limb
  7768. W.Part1 = B
  7769. W.C0 = CFrame.new(0, -0.5, 0)
  7770. W.Parent = Limb
  7771.  
  7772. end
  7773. if x[i].Name=="Right Leg" then
  7774. local Limb=x[i]:Clone()
  7775. Limb.Parent=mode
  7776.  
  7777. Limb.CFrame = zam.CFrame * CFrame.new(0.5, -2, 0)
  7778. local Joint = Instance.new("Glue")
  7779. Joint.Name = "RightHip"
  7780. Joint.Part0 = zam
  7781. Joint.Part1 = Limb
  7782. Joint.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  7783. Joint.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  7784. Joint.Parent = zam
  7785.  
  7786. local B = Instance.new("Part")
  7787. B.TopSurface = 0
  7788. B.BottomSurface = 0
  7789. B.formFactor = "Symmetric"
  7790. B.Size = Vector3.new(1, 1, 1)
  7791. B.Transparency = 1
  7792. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  7793. B.Parent = mode
  7794. local W = Instance.new("Weld")
  7795. W.Part0 = Limb
  7796. W.Part1 = B
  7797. W.C0 = CFrame.new(0, -0.5, 0)
  7798. W.Parent = Limb
  7799.  
  7800. end
  7801. if x[i].Name=="Left Leg" then
  7802. local Limb=x[i]:Clone()
  7803. Limb.Parent=mode
  7804.  
  7805. Limb.CFrame = zam.CFrame * CFrame.new(-0.5, -2, 0)
  7806. local Joint = Instance.new("Glue")
  7807. Joint.Name = "LeftHip"
  7808. Joint.Part0 = zam
  7809. Joint.Part1 = Limb
  7810. Joint.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  7811. Joint.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  7812. Joint.Parent = zam
  7813.  
  7814. local B = Instance.new("Part")
  7815. B.TopSurface = 0
  7816. B.BottomSurface = 0
  7817. B.formFactor = "Symmetric"
  7818. B.Size = Vector3.new(1, 1, 1)
  7819. B.Transparency = 1
  7820. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  7821. B.Parent = mode
  7822. local W = Instance.new("Weld")
  7823. W.Part0 = Limb
  7824. W.Part1 = B
  7825. W.C0 = CFrame.new(0, -0.5, 0)
  7826. W.Parent = Limb
  7827.  
  7828. end
  7829. bland=Instance.new("Humanoid")
  7830. bland.Health = 0
  7831. bland.MaxHealth = 0
  7832. bland.Parent=mode
  7833. if ((x[i].Name=="Shirt") or (x[i].Name=="Pants")) then
  7834. local zor=x[i]:Clone()
  7835. zor.Parent=mode
  7836. end
  7837. --[
  7838. if (x[i].ClassName=="CharacterMesh") then
  7839. local zor=x[i]:Clone()
  7840. zor.Parent=mode
  7841. end
  7842. if (x[i].ClassName=="Hat") then
  7843. local zor=x[i]:Clone()
  7844. zor.Parent=mode
  7845. end
  7846. local cam = Instance.new("Camera")
  7847. cam.Parent = game.Players:FindFirstChild(Character.Name)
  7848. cam.CameraSubject = mode.Humanoid
  7849. local Bar = Instance.new("Part")
  7850. Bar.TopSurface = 0
  7851. Bar.BottomSurface = 0
  7852. Bar.formFactor = "Symmetric"
  7853. Bar.Size = Vector3.new(1, 1, 1)
  7854. Bar.Transparency = 1
  7855. Bar.CFrame = zam.CFrame * CFrame.new(0, 0.5, 0)
  7856. Bar.Parent = mode
  7857. local Weld = Instance.new("Weld")
  7858. Weld.Part0 = zam
  7859. Weld.Part1 = Bar
  7860. Weld.C0 = CFrame.new(0, 0.5, 0)
  7861. Weld.Parent = zam
  7862. --]]
  7863. end
  7864. end
  7865. wait()
  7866. Character:Remove()
  7867. wait(6)
  7868. mode:Destroy()
  7869. end
  7870.  
  7871. Humanoid.Died:connect(OnDeath)
  7872. end
  7873. end
  7874.  
  7875. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement