Advertisement
Robloxian_Scripter

Untitled

Mar 28th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152.  
  153.  
  154.  
  155. --M4A1 Customizable by DMS
  156. --[[
  157. Suggested LoadOuts:
  158. -Sniper (ACOG, ANGLEGRIP, Laser, Silencer, Really black)
  159. -Support (HOLOSIGHT, BIPOD, FlashLight, Drum, Black)
  160. -Assualt (REFLEX, GRIP, FlashLight, Black)
  161. --]]
  162. --[[
  163. CONTROLS:
  164. F = FlashLight On/Off
  165. Q = Aim on MainSight
  166. --]]
  167. Sight = "IRONSIGHT" --ACOG, C79, M145, SUSAT, REFLEX, HOLOSIGHT, IRONSIGHT (IRONSIGHT ANYTHING ELSE)
  168. Grip = "NOTHING" -- VERTGRIP, BIPOD, ANGLEGRIP OR NOTHING (NOTHING ANYTHING ELSE)
  169. Drum = false --true or false
  170. FlashLight = false --same as drum
  171. Silencer = false --same as flashlight
  172. Laser = false --same as silencer
  173. Bayonet = false --same as laser
  174. CUSTOMCOLOR = "Black" --BrickColor plz
  175. local GGNORE = function(f,scri)
  176. local oldenv = getfenv(f)
  177. local newenv = setmetatable({}, {
  178. __index = function(_, k)
  179. if k:lower() == 'script' then
  180. return scri
  181. else
  182. return oldenv[k]
  183. end
  184. end
  185. })
  186. setfenv(f, newenv)
  187. ypcall(function() f() end)
  188. end
  189. cors = {}
  190. o1 = Instance.new("Tool")
  191. o2 = Instance.new("LocalScript")
  192. o3 = Instance.new("LocalScript")
  193. o4 = Instance.new("NumberValue")
  194. o5 = Instance.new("LocalScript")
  195. o6 = Instance.new("NumberValue")
  196. o7 = Instance.new("NumberValue")
  197. o8 = Instance.new("Script")
  198. o9 = Instance.new("NumberValue")
  199. o10 = Instance.new("LocalScript")
  200. o11 = Instance.new("NumberValue")
  201. o12 = Instance.new("LocalScript")
  202. o13 = Instance.new("LocalScript")
  203. o14 = Instance.new("LocalScript")
  204. o15 = Instance.new("BoolValue")
  205. o16 = Instance.new("Part")
  206. o17 = Instance.new("BlockMesh")
  207. o18 = Instance.new("Part")
  208. o19 = Instance.new("BlockMesh")
  209. o20 = Instance.new("Part")
  210. o21 = Instance.new("BlockMesh")
  211. o22 = Instance.new("Part")
  212. o23 = Instance.new("BlockMesh")
  213. o24 = Instance.new("Part")
  214. o25 = Instance.new("CylinderMesh")
  215. o26 = Instance.new("Part")
  216. o27 = Instance.new("BlockMesh")
  217. o28 = Instance.new("Sound")
  218. o29 = Instance.new("Sound")
  219. o30 = Instance.new("Sound")
  220. o31 = Instance.new("Sound")
  221. o32 = Instance.new("Sound")
  222. o33 = Instance.new("Sound")
  223. o35 = Instance.new("Part")
  224. o36 = Instance.new("BlockMesh")
  225. o37 = Instance.new("Part")
  226. o38 = Instance.new("SpecialMesh")
  227. o39 = Instance.new("Part")
  228. o40 = Instance.new("BlockMesh")
  229. o41 = Instance.new("Part")
  230. o42 = Instance.new("BlockMesh")
  231. o43 = Instance.new("Part")
  232. o44 = Instance.new("BlockMesh")
  233. o45 = Instance.new("Part")
  234. o46 = Instance.new("BlockMesh")
  235. o47 = Instance.new("Part")
  236. o48 = Instance.new("BlockMesh")
  237. o49 = Instance.new("Part")
  238. o50 = Instance.new("CylinderMesh")
  239. o51 = Instance.new("Part")
  240. o52 = Instance.new("CylinderMesh")
  241. o53 = Instance.new("Part")
  242. o54 = Instance.new("CylinderMesh")
  243. o55 = Instance.new("Part")
  244. o56 = Instance.new("SpecialMesh")
  245. o57 = Instance.new("Part")
  246. o58 = Instance.new("CylinderMesh")
  247. o59 = Instance.new("Part")
  248. o60 = Instance.new("CylinderMesh")
  249. o61 = Instance.new("Part")
  250. o62 = Instance.new("SpecialMesh")
  251. o63 = Instance.new("Part")
  252. o64 = Instance.new("CylinderMesh")
  253. o65 = Instance.new("Part")
  254. o66 = Instance.new("SpecialMesh")
  255. o67 = Instance.new("Part")
  256. o68 = Instance.new("CylinderMesh")
  257. o69 = Instance.new("Part")
  258. o70 = Instance.new("SpecialMesh")
  259. o71 = Instance.new("Part")
  260. o72 = Instance.new("BlockMesh")
  261. o73 = Instance.new("Part")
  262. o74 = Instance.new("CylinderMesh")
  263. o75 = Instance.new("Part")
  264. o76 = Instance.new("BlockMesh")
  265. o77 = Instance.new("Part")
  266. o78 = Instance.new("BlockMesh")
  267. o79 = Instance.new("Part")
  268. o80 = Instance.new("BlockMesh")
  269. o81 = Instance.new("Part")
  270. o82 = Instance.new("CylinderMesh")
  271. o83 = Instance.new("Part")
  272. o84 = Instance.new("SpecialMesh")
  273. o85 = Instance.new("Part")
  274. o86 = Instance.new("SpecialMesh")
  275. o87 = Instance.new("Part")
  276. o88 = Instance.new("BlockMesh")
  277. o89 = Instance.new("Part")
  278. o90 = Instance.new("SpecialMesh")
  279. o91 = Instance.new("Part")
  280. o92 = Instance.new("CylinderMesh")
  281. o93 = Instance.new("Part")
  282. o94 = Instance.new("CylinderMesh")
  283. o95 = Instance.new("Part")
  284. o96 = Instance.new("BlockMesh")
  285. o97 = Instance.new("Part")
  286. o98 = Instance.new("CylinderMesh")
  287. o99 = Instance.new("Part")
  288. o100 = Instance.new("CylinderMesh")
  289. o101 = Instance.new("Part")
  290. o102 = Instance.new("BlockMesh")
  291. o103 = Instance.new("Part")
  292. o104 = Instance.new("CylinderMesh")
  293. o105 = Instance.new("Part")
  294. o106 = Instance.new("SpecialMesh")
  295. o107 = Instance.new("Part")
  296. o108 = Instance.new("SpecialMesh")
  297. o109 = Instance.new("Part")
  298. o110 = Instance.new("BlockMesh")
  299. o111 = Instance.new("Part")
  300. o112 = Instance.new("BlockMesh")
  301. o113 = Instance.new("Part")
  302. o114 = Instance.new("CylinderMesh")
  303. o115 = Instance.new("Part")
  304. o116 = Instance.new("CylinderMesh")
  305. o117 = Instance.new("Part")
  306. o118 = Instance.new("SpecialMesh")
  307. o119 = Instance.new("Part")
  308. o120 = Instance.new("BlockMesh")
  309. o121 = Instance.new("Part")
  310. o122 = Instance.new("SpecialMesh")
  311. o123 = Instance.new("Part")
  312. o124 = Instance.new("BlockMesh")
  313. o125 = Instance.new("Part")
  314. o126 = Instance.new("SpecialMesh")
  315. o127 = Instance.new("Part")
  316. o128 = Instance.new("SpecialMesh")
  317. o129 = Instance.new("Part")
  318. o130 = Instance.new("SpecialMesh")
  319. o131 = Instance.new("Part")
  320. o132 = Instance.new("CylinderMesh")
  321. o133 = Instance.new("Part")
  322. o134 = Instance.new("BlockMesh")
  323. o135 = Instance.new("Part")
  324. o136 = Instance.new("BlockMesh")
  325. o137 = Instance.new("Part")
  326. o138 = Instance.new("SpecialMesh")
  327. o139 = Instance.new("Part")
  328. o140 = Instance.new("SpecialMesh")
  329. o141 = Instance.new("Part")
  330. o142 = Instance.new("SpecialMesh")
  331. o143 = Instance.new("Part")
  332. o144 = Instance.new("CylinderMesh")
  333. o145 = Instance.new("Part")
  334. o146 = Instance.new("CylinderMesh")
  335. o147 = Instance.new("Part")
  336. o148 = Instance.new("SpecialMesh")
  337. o149 = Instance.new("Part")
  338. o150 = Instance.new("BlockMesh")
  339. o151 = Instance.new("Part")
  340. o152 = Instance.new("SpecialMesh")
  341. o153 = Instance.new("Part")
  342. o154 = Instance.new("BlockMesh")
  343. o155 = Instance.new("Part")
  344. o156 = Instance.new("BlockMesh")
  345. o157 = Instance.new("Part")
  346. o158 = Instance.new("CylinderMesh")
  347. o159 = Instance.new("Part")
  348. o160 = Instance.new("BlockMesh")
  349. o161 = Instance.new("Part")
  350. o162 = Instance.new("BlockMesh")
  351. o163 = Instance.new("Part")
  352. o164 = Instance.new("SpecialMesh")
  353. o165 = Instance.new("Part")
  354. o166 = Instance.new("SpecialMesh")
  355. o167 = Instance.new("Part")
  356. o168 = Instance.new("BlockMesh")
  357. o169 = Instance.new("Part")
  358. o170 = Instance.new("BlockMesh")
  359. o171 = Instance.new("Part")
  360. o172 = Instance.new("BlockMesh")
  361. o173 = Instance.new("Part")
  362. o174 = Instance.new("CylinderMesh")
  363. o175 = Instance.new("Part")
  364. o176 = Instance.new("SpecialMesh")
  365. o1.Name = "M4A1"
  366. o1.GripForward = Vector3.new(-0.252553493, -0, -0.967582941)
  367. o1.GripPos = Vector3.new(0, -0.300000012, 0.300000012)
  368. o1.GripRight = Vector3.new(0.967582941, 0, -0.252553493)
  369. o2.Name = "BackupWeld"
  370. o2.Parent = o1
  371. table.insert(cors,coroutine.create(function()
  372. wait()
  373. GGNORE(function()
  374. function Weld(x,y)
  375. local W = Instance.new("Weld")
  376. W.Part0 = x
  377. W.Part1 = y
  378. local CJ = CFrame.new(x.Position)
  379. local C0 = x.CFrame:inverse()*CJ
  380. local C1 = y.CFrame:inverse()*CJ
  381. W.C0 = C0
  382. W.C1 = C1
  383. W.Parent = x
  384. end
  385.  
  386. function Get(A)
  387. if A.className == "Part" then
  388. Weld(script.Parent.Handle, A)
  389. A.Anchored = false
  390. else
  391. local C = A:GetChildren()
  392. for i=1, #C do
  393. Get(C[i])
  394. end
  395. end
  396. end
  397.  
  398. function Finale()
  399. Get(script.Parent)
  400. end
  401.  
  402. script.Parent.Equipped:connect(Finale)
  403. script.Parent.Unequipped:connect(Finale)
  404. Finale()
  405. end,o2)
  406. end))
  407. o3.Name = "BackupWeld"
  408. o3.Parent = o1
  409. table.insert(cors,coroutine.create(function()
  410. wait()
  411. GGNORE(function()
  412. function Weld(x,y)
  413. local W = Instance.new("Weld")
  414. W.Part0 = x
  415. W.Part1 = y
  416. local CJ = CFrame.new(x.Position)
  417. local C0 = x.CFrame:inverse()*CJ
  418. local C1 = y.CFrame:inverse()*CJ
  419. W.C0 = C0
  420. W.C1 = C1
  421. W.Parent = x
  422. end
  423.  
  424. function Get(A)
  425. if A.className == "Part" then
  426. Weld(script.Parent.Handle, A)
  427. A.Anchored = false
  428. else
  429. local C = A:GetChildren()
  430. for i=1, #C do
  431. Get(C[i])
  432. end
  433. end
  434. end
  435.  
  436. function Finale()
  437. Get(script.Parent)
  438. end
  439.  
  440. script.Parent.Equipped:connect(Finale)
  441. script.Parent.Unequipped:connect(Finale)
  442. Finale()
  443. end,o3)
  444. end))
  445. o4.Name = "Ammo"
  446. o4.Parent = o1
  447. o4.Value = 30
  448. o5.Name = "GuiScript"
  449. o5.Parent = o1
  450. table.insert(cors,coroutine.create(function()
  451. wait()
  452. GGNORE(function()
  453. -- Thanks for SonicUnleashedXY & Manofthelol for this script.
  454. -- To remove the orginial script just go into shooter & right at the bottem you will see something like this:
  455. -- script.Parent.Tool.Name = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  456. -- Remove only that & add this to the tool.
  457. -- Remember this was designed for Manofthelol weapons so any other weapons might not work.
  458. -- You have no permission to repubish this in you model even if it edited.
  459. -- If your found then you will be ban from my place.
  460.  
  461. local Tool = script.Parent
  462. local Ammo = Tool.Ammo
  463. local MaxAmmo = Ammo.Value
  464.  
  465. local vPlayer
  466. local Gui
  467. local Text
  468.  
  469. function onChanged(value)
  470. if value == "Value" or value == Ammo.Value then
  471. if Gui ~= nil and Text ~= nil then
  472. if Ammo.Value >= 1 then
  473. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  474. elseif math.floor(Ammo.Value) == 0 then
  475. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  476. elseif Ammo.Value < 0 then
  477. for i = 0, 1, 0.03 / 2 do
  478. local Num = math.floor(i * MaxAmmo + 0.5)
  479.  
  480. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  481. wait()
  482. end
  483. end
  484. end
  485. end
  486. end
  487.  
  488. function on2Changed()
  489. if Gui ~= nil and Text ~= nil then
  490.  
  491. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  492. wait()
  493. end
  494. end
  495.  
  496. function setUpGui()
  497. if vPlayer == nil or vPlayer:findFirstChild("PlayerGui") == nil then
  498. return
  499. end
  500.  
  501. Gui = Instance.new("ScreenGui")
  502. Text = Instance.new("TextLabel")
  503.  
  504. Gui.Name = "DEDisplay"
  505. Gui.Parent = vPlayer.PlayerGui
  506.  
  507. Text.BackgroundColor3 = BrickColor.Black().Color
  508. Text.BackgroundTransparency = 1
  509. Text.BorderColor3 = BrickColor.White().Color
  510. Text.BorderSizePixel = 0
  511. Text.Name = "Ammo"
  512. Text.Parent = Gui
  513. Text.Position = UDim2.new(0.15, 0, 0.825, 0)
  514. Text.Size = UDim2.new(0, -60, 0, 64)
  515. Text.FontSize = "Size18"
  516. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  517. Text.TextColor3 = BrickColor.White().Color
  518. end
  519.  
  520. function onEquippedLocal(mouse)
  521. vPlayer = game.Players.LocalPlayer
  522.  
  523. setUpGui()
  524. end
  525.  
  526. function onUnequippedLocal(mouse)
  527. if Gui then
  528. Gui:remove()
  529. end
  530.  
  531. Gui = nil
  532. Text = nil
  533. vPlayer = nil
  534. end
  535.  
  536. Tool.Equipped:connect(onEquippedLocal)
  537. Tool.Unequipped:connect(onUnequippedLocal)
  538.  
  539. Ammo.Changed:connect(onChanged)
  540. Tool.StoredAmmo.Changed:connect(on2Changed)
  541. end,o5)
  542. end))
  543. o6.Name = "MaxAmmo"
  544. o6.Parent = o1
  545. o6.Value = 30
  546. o7.Name = "Recoil"
  547. o7.Parent = o1
  548. o7.Value = 3
  549. o8.Parent = o7
  550. o9.Name = "StoredAmmo"
  551. o9.Parent = o1
  552. o9.Value = 200
  553. o10.Name = "GuiScript(backup)"
  554. o10.Parent = o1
  555. table.insert(cors,coroutine.create(function()
  556. wait()
  557. GGNORE(function()
  558.  
  559. local Tool = script.Parent
  560. local Ammo = Tool.Ammo
  561. local MaxAmmo = Ammo.Value
  562.  
  563. local vPlayer
  564. local Gui
  565. local Text
  566.  
  567. function onChanged(value)
  568. if value == "Value" or value == Ammo.Value then
  569. if Gui ~= nil and Text ~= nil then
  570. if Ammo.Value >= 1 then
  571. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  572. elseif math.floor(Ammo.Value) == 0 then
  573. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  574. elseif Ammo.Value < 0 then
  575. for i = 0, 1, 0.03 / 2 do
  576. local Num = math.floor(i * MaxAmmo + 0.5)
  577.  
  578. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  579. wait()
  580. end
  581. end
  582. end
  583. end
  584. end
  585.  
  586. function on2Changed()
  587. if Gui ~= nil and Text ~= nil then
  588.  
  589. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  590. wait()
  591. end
  592. end
  593.  
  594. function setUpGui()
  595. if vPlayer == nil or vPlayer:findFirstChild("PlayerGui") == nil then
  596. return
  597. end
  598.  
  599. Gui = Instance.new("ScreenGui")
  600. Text = Instance.new("TextLabel")
  601.  
  602. Gui.Name = "DEDisplay"
  603. Gui.Parent = vPlayer.PlayerGui
  604.  
  605. Text.BackgroundColor3 = BrickColor.Black().Color
  606. Text.BackgroundTransparency = 1
  607. Text.BorderColor3 = BrickColor.White().Color
  608. Text.BorderSizePixel = 0
  609. Text.Name = "Ammo"
  610. Text.Parent = Gui
  611. Text.Position = UDim2.new(0.15, 0, 0.825, 0)
  612. Text.Size = UDim2.new(0, -60, 0, 64)
  613. Text.FontSize = "Size18"
  614. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  615. Text.TextColor3 = BrickColor.White().Color
  616. end
  617.  
  618. function onEquippedLocal(mouse)
  619. vPlayer = game.Players.LocalPlayer
  620.  
  621. setUpGui()
  622. end
  623.  
  624. function onUnequippedLocal(mouse)
  625. if Gui then
  626. Gui:remove()
  627. end
  628.  
  629. Gui = nil
  630. Text = nil
  631. vPlayer = nil
  632. end
  633.  
  634. Tool.Equipped:connect(onEquippedLocal)
  635. Tool.Unequipped:connect(onUnequippedLocal)
  636.  
  637. Ammo.Changed:connect(onChanged)
  638. Tool.StoredAmmo.Changed:connect(on2Changed)
  639. end,o10)
  640. end))
  641. o11.Name = "VAL"
  642. o11.Parent = o1
  643. o12.Name = "Shooter"
  644. o12.Parent = o1
  645. table.insert(cors,coroutine.create(function()
  646. wait()
  647. GGNORE(function()
  648. Tool = script.Parent
  649.  
  650. local arms = nil
  651. local torso = nil
  652. local weld33 = nil -- right arm
  653. local weld55 = nil -- left arm
  654. local welds = {}
  655. local reloading = false
  656. local firing = false
  657. local canreload = true
  658. local canshoot = true
  659. local damage = 20
  660.  
  661. function ReloadSequence() -- this will be a pain in my blocky butt.
  662. wait(.01)
  663. Tool.Mag.Transparency = 1
  664. local mag = Tool.Mag:clone()
  665. mag.Parent = game.Workspace
  666. mag.CanCollide = false
  667. mag.Transparency = 0
  668. Tool.Mag2.Transparency = 1
  669. local mag = Tool.Mag2:clone()
  670. mag.Parent = game.Workspace
  671. mag.CanCollide = false
  672. mag.Transparency = 0
  673. Tool.Handle.M1:play()
  674. wait(.15)
  675. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-92), math.rad(-15), 0.05)
  676. weld55.C1 = CFrame.new(-0.45, 1, 1.1) * CFrame.fromEulerAnglesXYZ(math.rad(315), -0.1, math.rad(-87))
  677. wait(.01)
  678. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-95), math.rad(-15), 0.1)
  679. weld55.C1 = CFrame.new(-0.45, 0.8, 1) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.2, math.rad(-84))
  680. wait(.01)
  681. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.3, math.rad(-81))
  682. wait(.01)
  683. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.4, math.rad(-78))
  684. wait(.01)
  685. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.5, math.rad(-75))
  686. wait(.01)
  687. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.6, math.rad(-72))
  688. wait(.2)
  689. Tool.Mag.Transparency = 0
  690. Tool.Mag2.Transparency = 0
  691. Tool.Mag.Mesh.Offset = Vector3.new(0, -0.6, 0)
  692. Tool.Mag2.Mesh.Offset = Vector3.new(0, -0.66, 0.15)
  693. wait(.01)
  694. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.5, math.rad(-75))
  695. Tool.Mag.Mesh.Offset = Vector3.new(0, -0.5, 0)
  696. Tool.Mag2.Mesh.Offset = Vector3.new(0, -0.55, 0.125)
  697. wait(.01)
  698. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.4, math.rad(-78))
  699. Tool.Mag.Mesh.Offset = Vector3.new(0, -0.4, 0)
  700. Tool.Mag2.Mesh.Offset = Vector3.new(0, -0.44, 0.1)
  701. wait(.01)
  702. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.3, math.rad(-81))
  703. Tool.Mag.Mesh.Offset = Vector3.new(0, -0.3, 0)
  704. Tool.Mag2.Mesh.Offset = Vector3.new(0, -0.33, 0.075)
  705. wait(.01)
  706. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.2, math.rad(-84))
  707. Tool.Mag.Mesh.Offset = Vector3.new(0, -0.2, 0)
  708. Tool.Mag2.Mesh.Offset = Vector3.new(0, -0.22, 0.05)
  709. wait(.3)
  710. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.1, math.rad(-87))
  711. Tool.Mag.Mesh.Offset = Vector3.new(0, -0.1, 0)
  712. Tool.Mag2.Mesh.Offset = Vector3.new(0, -0.11, 0.025)
  713. wait(.01)
  714. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), 0, math.rad(-90))
  715. Tool.Mag.Mesh.Offset = Vector3.new(0, 0, 0)
  716. Tool.Mag2.Mesh.Offset = Vector3.new(0, 0, 0)
  717. Tool.Handle.M2:play()
  718. wait(.03)
  719. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), -0.1, math.rad(-87))
  720. wait(.03)
  721. weld55.C1 = CFrame.new(-0.45, 0.6, 0.9) * CFrame.fromEulerAnglesXYZ(math.rad(320), 0, math.rad(-90))
  722. wait(.2)
  723. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(295), 0.075, math.rad(-90))
  724. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0.1)
  725. wait(.03)
  726. weld55.C1 = CFrame.new(-0.35, 0.8, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0.15, math.rad(-90))
  727. weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  728. wait(.03)
  729. weld55.C1 = CFrame.new(-0.35, 0.6, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0.225, math.rad(-90))
  730. weld33.C1 = CFrame.new(-0.75, -0.2, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-85), math.rad(-15), 0)
  731. wait(.03)
  732. weld55.C1 = CFrame.new(-0.35, 0.6, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0.225, math.rad(-90))
  733. weld33.C1 = CFrame.new(-0.75, -0.2, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-85), math.rad(-15), 0)
  734. wait(.03)
  735. weld55.C1 = CFrame.new(-0.35, 0.3, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(300), 0.375, math.rad(-90))
  736. wait(.3)
  737. Tool.Handle.M3:play()
  738. weld55.C1 = CFrame.new(-0.35, 0.3, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(300), 0.375, math.rad(-90))
  739. Tool.A2.Mesh.Offset = Vector3.new(0, 0, -0.1)
  740. Tool.A3.Mesh.Offset = Vector3.new(0, 0, -0.1)
  741. wait(.02)
  742. weld55.C1 = CFrame.new(-0.35, 0.4, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(300), 0.3, math.rad(-90))
  743. Tool.A2.Mesh.Offset = Vector3.new(0, 0, -0)
  744. Tool.A3.Mesh.Offset = Vector3.new(0, 0, -0)
  745. wait(.02)
  746. weld33.C1 = CFrame.new(-0.75, -0.25, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-85), math.rad(-15), 0)
  747. weld55.C1 = CFrame.new(-0.35, 0.7, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(295), 0.15, math.rad(-90))
  748. wait(.02)
  749. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  750. weld55.C1 = CFrame.new(-0.35, 1.4, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90))
  751. end
  752.  
  753. function Reload()
  754. if script.Parent.Ammo.Value < script.Parent.MaxAmmo.Value and reloading == false and script.Parent.StoredAmmo.Value >= 1 then
  755. reloading = true
  756. script.Parent.Ammo.Value = 0
  757. ReloadSequence()
  758. if script.Parent.StoredAmmo.Value >= script.Parent.MaxAmmo.Value then
  759. script.Parent.Ammo.Value = script.Parent.MaxAmmo.Value
  760. script.Parent.StoredAmmo.Value = script.Parent.StoredAmmo.Value - script.Parent.MaxAmmo.Value
  761. script.Parent.Recoil.Value = 5
  762. elseif script.Parent.StoredAmmo.Value < script.Parent.MaxAmmo.Value and script.Parent.StoredAmmo.Value >= 1 then
  763. script.Parent.Ammo.Value = script.Parent.StoredAmmo.Value
  764. script.Parent.StoredAmmo.Value = 0
  765. script.Parent.Recoil.Value = 5
  766. end
  767. reloading = false
  768. end
  769. end
  770.  
  771. function Takeout()
  772. wait(.01)
  773. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-85), math.rad(-15), 0)
  774. weld55.C1 = CFrame.new(-0.48, 0.9, 1.2) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  775. wait(.3)
  776. weld55.C1 = CFrame.new(-0.35, 0.3, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(300), 0.375, math.rad(-90))
  777. Tool.A2.Mesh.Offset = Vector3.new(0, 0, -0.1)
  778. Tool.A3.Mesh.Offset = Vector3.new(0, 0, -0.1)
  779. wait(.4)
  780. Tool.Handle.M3:play()
  781. weld55.C1 = CFrame.new(-0.35, 0.4, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(300), 0.3, math.rad(-90))
  782. Tool.A2.Mesh.Offset = Vector3.new(0, 0, -0)
  783. Tool.A3.Mesh.Offset = Vector3.new(0, 0, -0)
  784. wait(.2)
  785. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-87), math.rad(-15), 0)
  786. weld55.C1 = CFrame.new(-0.46, 1.05, 1.2) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  787. wait(.01)
  788. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  789. weld55.C1 = CFrame.new(-0.45, 1.2, 1.2) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  790. end
  791.  
  792. function Equip(mouse)
  793. wait(0.01)
  794. arms = {Tool.Parent:FindFirstChild("Left Arm"), Tool.Parent:FindFirstChild("Right Arm")}
  795. torso = Tool.Parent:FindFirstChild("Torso")
  796. if arms ~= nil and torso ~= nil then
  797. local sh = {torso:FindFirstChild("Left Shoulder"), torso:FindFirstChild("Right Shoulder")}
  798. if sh ~= nil then
  799. local yes = true
  800. if yes then
  801. yes = false
  802. sh[1].Part1 = nil
  803. sh[2].Part1 = nil
  804. falsearm1 = arms[1]:clone()
  805. local mesh1 = Instance.new("BlockMesh")
  806. mesh1.Scale = Vector3.new(.9,.9,.9)
  807. mesh1.Parent = falsearm1
  808. local armweld1 = Instance.new("Weld")
  809. falsearm1.BrickColor = BrickColor.new(26)
  810. falsearm1.Parent = Tool
  811. armweld1.Parent = falsearm1
  812. armweld1.Part0 = falsearm1
  813. armweld1.Part1 = arms[1]
  814. falsearm2 = arms[2]:clone()
  815. local mesh2 = Instance.new("BlockMesh")
  816. mesh2.Scale = Vector3.new(.9,.9,.9)
  817. mesh2.Parent = falsearm2
  818. local armweld2 = Instance.new("Weld")
  819. falsearm2.BrickColor = BrickColor.new(26)
  820. falsearm2.Parent = Tool
  821. armweld2.Parent = falsearm2
  822. armweld2.Part0 = falsearm2
  823. armweld2.Part1 = arms[2]
  824. local weld1 = Instance.new("Weld") -- left arm
  825. weld55 = weld1
  826. weld1.Part0 = torso
  827. weld1.Parent = torso
  828. weld1.Part1 = arms[1]
  829. weld55.C1 = CFrame.new(-0.45, 1.2, 1.2) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  830. welds[1] = weld1
  831. local weld2 = Instance.new("Weld") -- right arm
  832. weld33 = weld2
  833. weld2.Part0 = torso
  834. weld2.Parent = torso
  835. weld2.Part1 = arms[2]
  836. weld2.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  837. welds[2] = weld2
  838. Takeout()
  839. end
  840. else
  841. print("sh")
  842. end
  843. else
  844. print("arms")
  845. end
  846. end
  847.  
  848. local legs = nil
  849. local torso2 = nil
  850. local welds2 = {}
  851. local bodyforce = nil
  852.  
  853. function Unequip(mouse)
  854. if arms ~= nil and torso ~= nil then
  855. local sh = {torso:FindFirstChild("Left Shoulder"), torso:FindFirstChild("Right Shoulder")}
  856. if sh ~= nil then
  857. local yes = true
  858. if yes then
  859. yes = false
  860. sh[1].Part1 = arms[1]
  861. sh[2].Part1 = arms[2]
  862. welds[1].Parent = nil
  863. welds[2].Parent = nil
  864. falsearm1:remove()
  865. falsearm2:remove()
  866. end
  867. else
  868. print("sh")
  869. end
  870. else
  871. print("arms")
  872. end
  873. end
  874.  
  875. function fire(v)
  876. p = script.Parent.VAL
  877. if p.Value == 0 then
  878. Tool.Handle.Fire:play()
  879. p.Value = p.Value + 1
  880. elseif p.Value == 1 then
  881. Tool.Handle.Fire2:play()
  882. p.Value = p.Value + 1
  883. else
  884. Tool.Handle.Fire3:play()
  885. p.Value = 0
  886. end
  887.  
  888.  
  889. local vCharacter = Tool.Parent
  890. local vPlayer = game.Players:playerFromCharacter(vCharacter)
  891.  
  892. local missile = Instance.new("Part")
  893.  
  894.  
  895.  
  896. local spawnPos = o1.Flash.Position
  897.  
  898.  
  899.  
  900. spawnPos = spawnPos + (v * 8)
  901.  
  902. missile.Position = spawnPos
  903. missile.Size = Vector3.new(1,1,1)
  904. missile.Velocity = v * 600
  905. missile.BrickColor = BrickColor.new(26)
  906. missile.Shape = 0
  907. missile.BottomSurface = 0
  908. missile.TopSurface = 0
  909. missile.Name = "Bullet"
  910. missile.Elasticity = 0
  911. missile.Reflectance = 0
  912. missile.Friction = .9
  913. missile.CanCollide = false
  914.  
  915. local force = Instance.new("BodyForce")
  916. force.force = Vector3.new(0,missile:getMass() * 196,0)
  917. force.Parent = missile
  918.  
  919. local mesh = Instance.new("SpecialMesh")
  920. mesh.Scale = Vector3.new(.01,.01,.01)
  921. mesh.MeshType = "Sphere"
  922. mesh.Parent = missile
  923.  
  924. function onTouched(part)
  925. local h = part.Parent:findFirstChild("Humanoid")
  926. if h~=nil then
  927. h.Health = h.Health -100
  928. wait(.01)
  929. h.Health = h.Health -100
  930. wait(.01)
  931.  
  932. end
  933. end
  934.  
  935. missile.Touched:connect(onTouched)
  936.  
  937. local creator_tag = Instance.new("ObjectValue")
  938. creator_tag.Value = vPlayer
  939. creator_tag.Name = "creator"
  940. creator_tag.Parent = missile
  941.  
  942.  
  943.  
  944. missile.Parent = game.Workspace
  945.  
  946. cam = game.Workspace.CurrentCamera
  947. local cam_rot = cam.CoordinateFrame - cam.CoordinateFrame.p
  948. local cam_scroll = (cam.CoordinateFrame.p - cam.Focus.p).magnitude
  949. local ncf = CFrame.new(cam.Focus.p)*cam_rot*CFrame.fromEulerAnglesXYZ(0.005, 0.005, 0)
  950. cam.CoordinateFrame = ncf*CFrame.new(0, 0, cam_scroll)
  951. weld33.C1 = CFrame.new(-0.75, -0.5, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  952. weld55.C1 = CFrame.new(-0.45, 1.07, 1.12) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  953. Tool.Flash.Mesh.Scale = Vector3.new(1.9, 2, 2.2)
  954. Tool.Flash.Transparency = .3
  955. Tool.A2.Mesh.Offset = Vector3.new(0, 0, 0)
  956. Tool.A3.Mesh.Offset = Vector3.new(0, 0, 0)
  957. wait()
  958. local cam_rot = cam.CoordinateFrame - cam.CoordinateFrame.p
  959. local cam_scroll = (cam.CoordinateFrame.p - cam.Focus.p).magnitude
  960. local ncf = CFrame.new(cam.Focus.p)*cam_rot*CFrame.fromEulerAnglesXYZ(-0.01, -0.01, 0)
  961. cam.CoordinateFrame = ncf*CFrame.new(0, 0, cam_scroll)
  962. weld33.C1 = CFrame.new(-0.75, -0.45, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  963. weld55.C1 = CFrame.new(-0.45, 1.14, 1.16) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  964. Tool.Flash.Mesh.Scale = Vector3.new(1.5, 2, 1.8)
  965. Tool.Flash.Transparency = .8
  966. Tool.A2.Mesh.Offset = Vector3.new(0, 0, 0)
  967. Tool.A3.Mesh.Offset = Vector3.new(0, 0, 0)
  968. wait()
  969. local cam_rot = cam.CoordinateFrame - cam.CoordinateFrame.p
  970. local cam_scroll = (cam.CoordinateFrame.p - cam.Focus.p).magnitude
  971. local ncf = CFrame.new(cam.Focus.p)*cam_rot*CFrame.fromEulerAnglesXYZ(0.005, 0.005, 0)
  972. cam.CoordinateFrame = ncf*CFrame.new(0, 0, cam_scroll)
  973. weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  974. weld55.C1 = CFrame.new(-0.45, 1.2, 1.2) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  975. Tool.Flash.Transparency = 1
  976. Tool.A2.Mesh.Offset = Vector3.new(0, 0, 0)
  977. Tool.A3.Mesh.Offset = Vector3.new(0, 0, 0)
  978. end
  979.  
  980. function KeyDownFunctions(key)
  981. if key == "r" then
  982. Reload()
  983. end
  984. end
  985.  
  986. Tool.Enabled = true
  987. function onActivated()
  988.  
  989. if not Tool.Enabled then
  990. return
  991. end
  992.  
  993. Tool.Enabled = false
  994.  
  995. local character = Tool.Parent;
  996. local humanoid = character.Humanoid
  997. if humanoid == nil then
  998. print("Humanoid not found")
  999. return
  1000. end
  1001. local ammo = script.Parent.Ammo
  1002. local maxammo = script.Parent.MaxAmmo
  1003. firing = true
  1004. while firing == true do
  1005. if reloading == false and humanoid.Health >= 1 then
  1006. if ammo.Value >= 1 then
  1007. ammo.Value = ammo.Value - 1
  1008. local targetPos = humanoid.TargetPoint
  1009. local lookAt = (targetPos - character.Head.Position).unit
  1010. if script.Parent.Recoil.Value < 10 then
  1011. script.Parent.Recoil.Value = script.Parent.Recoil.Value + 1
  1012. end
  1013. fire(lookAt)
  1014. else
  1015. Reload()
  1016. break
  1017. end
  1018. elseif reloading == false and humanoid.Health < 1 then
  1019. Tool:remove()
  1020. end
  1021. end
  1022. Tool.Enabled = true
  1023. end
  1024.  
  1025. function nofiar(mouse)
  1026. firing = false
  1027. end
  1028.  
  1029. function onEquippedLocal(mouse)
  1030.  
  1031. if mouse == nil then
  1032. print("Mouse not found")
  1033. return
  1034. end
  1035.  
  1036. mouse.Icon = "http://www.roblox.com/asset/?id=2966012"
  1037. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  1038. mouse.Button1Up:connect(function() nofiar(mouse) end)
  1039. mouse.KeyDown:connect(KeyDownFunctions)
  1040. while true do
  1041. wait()
  1042. end
  1043. end
  1044.  
  1045.  
  1046. Tool.Equipped:connect(onEquippedLocal)
  1047.  
  1048.  
  1049. script.Parent.Activated:connect(onActivated)
  1050. Tool.Equipped:connect(Equip)
  1051. Tool.Unequipped:connect(Unequip)
  1052. end,o12)
  1053. end))
  1054. o13.Parent = o1
  1055. o14.Name = "ZoomScript"
  1056. o14.Parent = o1
  1057. g = game.workspace.Camera.CameraType
  1058. o15.Name = "ZoomedIn"
  1059. o15.Parent = o1
  1060. o16.Parent = o1
  1061. o16.Material = Enum.Material.SmoothPlastic
  1062. o16.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1063. o16.Position = Vector3.new(-47.0289497, 2.03901005, -23.0169888)
  1064. o16.Rotation = Vector3.new(-0.734529912, -89.7451248, -168.690018)
  1065. o16.Anchored = true
  1066. o16.FormFactor = Enum.FormFactor.Custom
  1067. o16.Size = Vector3.new(0.200000003, 0.540000021, 0.200000003)
  1068. 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)
  1069. o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1070. o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1071. o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1072. o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1073. o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1074. o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1075. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1076. o17.Parent = o16
  1077. o17.Scale = Vector3.new(0.75, 1, 0.149999991)
  1078. o18.Parent = o1
  1079. o18.Material = Enum.Material.SmoothPlastic
  1080. o18.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1081. o18.Position = Vector3.new(-46.5669594, 2.16499996, -23.0169888)
  1082. o18.Rotation = Vector3.new(0.367277682, -89.7451248, 174.289368)
  1083. o18.Anchored = true
  1084. o18.FormFactor = Enum.FormFactor.Custom
  1085. o18.Size = Vector3.new(0.200000003, 0.200000003, 0.540000021)
  1086. 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)
  1087. o18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1088. o18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1089. o18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1090. o18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1091. o18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1092. o18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1093. o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1094. o19.Parent = o18
  1095. o19.Offset = Vector3.new(0, 0, 0.00300000003)
  1096. o19.Scale = Vector3.new(0.450000018, 0.900000036, 1)
  1097. o20.Name = "A2"
  1098. o20.Parent = o1
  1099. o20.Material = Enum.Material.SmoothPlastic
  1100. o20.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1101. o20.Position = Vector3.new(-45.7209969, 2.44980097, -23.0169888)
  1102. o20.Rotation = Vector3.new(6.1066652e-013, 90, 0)
  1103. o20.Anchored = true
  1104. o20.FormFactor = Enum.FormFactor.Custom
  1105. o20.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1106. 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)
  1107. o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1108. o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1109. o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1110. o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1111. o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1112. o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1113. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1114. o21.Parent = o20
  1115. o21.Scale = Vector3.new(0.450000018, 0.149999991, 1.19999993)
  1116. o22.Parent = o1
  1117. o22.Material = Enum.Material.SmoothPlastic
  1118. o22.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1119. o22.Position = Vector3.new(-45.6399918, 2.36968803, -23.0100002)
  1120. o22.Rotation = Vector3.new(-0, -90, 0)
  1121. o22.Anchored = true
  1122. o22.FormFactor = Enum.FormFactor.Custom
  1123. o22.Size = Vector3.new(0.209999993, 0.360000014, 0.200000003)
  1124. o22.CFrame = CFrame.new(-45.6399918, 2.36968803, -23.0100002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1125. o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1126. o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1127. o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1128. o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1129. o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1130. o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1131. o22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1132. o23.Parent = o22
  1133. o23.Scale = Vector3.new(1, 1, 0.599999964)
  1134. o24.Parent = o1
  1135. o24.Material = Enum.Material.SmoothPlastic
  1136. o24.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1137. o24.Position = Vector3.new(-46.5279694, 2.29995394, -23.0169888)
  1138. o24.Rotation = Vector3.new(-3.17548106e-011, 0.000271500176, 90)
  1139. o24.Anchored = true
  1140. o24.FormFactor = Enum.FormFactor.Custom
  1141. o24.Size = Vector3.new(0.200000003, 0.972000062, 0.270000011)
  1142. 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)
  1143. o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1144. o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1145. o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1146. o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1147. o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1148. o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1149. o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1150. o25.Parent = o24
  1151. o25.Scale = Vector3.new(1.19999993, 1, 1.60000002)
  1152. o26.Name = "Handle"
  1153. o26.Parent = o1
  1154. o26.Material = Enum.Material.SmoothPlastic
  1155. o26.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1156. o26.Position = Vector3.new(-45.2919655, 1.92951596, -23.0169888)
  1157. o26.Rotation = Vector3.new(1.01777712e-012, -90, 0)
  1158. o26.Anchored = true
  1159. o26.FormFactor = Enum.FormFactor.Custom
  1160. o26.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1161. 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)
  1162. o26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1163. o26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1164. o26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1165. o26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1166. o26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1167. o26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1168. o26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1169. o27.Parent = o26
  1170. o27.Offset = Vector3.new(0, 0, 0.00900000054)
  1171. o27.Scale = Vector3.new(0.450000018, 0.450000018, 0.225000009)
  1172. o28.Name = "Fire3"
  1173. o28.Parent = o26
  1174. o28.Pitch = 1.2999999523163
  1175. o28.SoundId = "rbxassetid://137983646"
  1176. o28.Volume = 5
  1177. o29.Name = "M1"
  1178. o29.Parent = o26
  1179. o29.Pitch = 1.2000000476837
  1180. o29.SoundId = "rbxassetid://147323220"
  1181. o29.Volume = 1
  1182. o29.PlayOnRemove = true
  1183. o30.Name = "M2"
  1184. o30.Parent = o26
  1185. o30.SoundId = "rbxassetid://0"
  1186. o30.Volume = 1
  1187. o30.PlayOnRemove = true
  1188. o31.Name = "M3"
  1189. o31.Parent = o26
  1190. o31.Pitch = 1.1000000238419
  1191. o31.SoundId = "rbxassetid://152206337"
  1192. o31.Volume = 1
  1193. o31.PlayOnRemove = true
  1194. o32.Name = "Fire"
  1195. o32.Parent = o26
  1196. o32.Pitch = 1.2999999523163
  1197. o32.SoundId = "rbxassetid://137983646"
  1198. o32.Volume = 5
  1199. o33.Name = "Fire2"
  1200. o33.Parent = o26
  1201. o33.Pitch = 1.2999999523163
  1202. o33.SoundId = "rbxassetid://137983646"
  1203. o33.Volume = 5
  1204. o35.Name = "A3"
  1205. o35.Parent = o1
  1206. o35.Material = Enum.Material.SmoothPlastic
  1207. o35.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1208. o35.Position = Vector3.new(-45.7959862, 2.44980097, -23.0169888)
  1209. o35.Rotation = Vector3.new(6.1066652e-013, 90, 0)
  1210. o35.Anchored = true
  1211. o35.FormFactor = Enum.FormFactor.Custom
  1212. o35.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1213. 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)
  1214. o35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1215. o35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1216. o35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1217. o35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1218. o35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1219. o35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1220. o35.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1221. o36.Parent = o35
  1222. o36.Scale = Vector3.new(1.5, 0.225000009, 0.450000018)
  1223. o37.Name = "Flash"
  1224. o37.Parent = o1
  1225. o37.Material = Enum.Material.SmoothPlastic
  1226. o37.BrickColor = BrickColor.new("Bright orange")
  1227. o37.Transparency = 1
  1228. o37.Position = Vector3.new(-41.6767159, 2.32680488, -23.017004)
  1229. o37.Rotation = Vector3.new(-90, 8.08488086e-012, 89.9999924)
  1230. o37.Anchored = true
  1231. o37.FormFactor = Enum.FormFactor.Custom
  1232. o37.Size = Vector3.new(0.200000003, 0.449999988, 0.200000003)
  1233. 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)
  1234. o37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1235. o37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1236. o37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1237. o37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1238. o37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1239. o37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1240. o37.Color = Color3.new(0.854902, 0.521569, 0.254902)
  1241. o38.Parent = o37
  1242. o38.Scale = Vector3.new(1.5, 2, 1.80000007)
  1243. o38.MeshType = Enum.MeshType.Sphere
  1244. o39.Name = "Mag"
  1245. o39.Parent = o1
  1246. o39.Material = Enum.Material.SmoothPlastic
  1247. o39.BrickColor = BrickColor.new("Dark stone grey")
  1248. o39.Position = Vector3.new(-44.8005791, 1.51697195, -23.0169888)
  1249. o39.Rotation = Vector3.new(90.0000305, -71.0001678, 90.0000305)
  1250. o39.Anchored = true
  1251. o39.FormFactor = Enum.FormFactor.Custom
  1252. o39.Size = Vector3.new(0.200000003, 0.239999995, 0.419999987)
  1253. 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)
  1254. o39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1255. o39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1256. o39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1257. o39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1258. o39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1259. o39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1260. o39.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1261. o40.Parent = o39
  1262. o40.Scale = Vector3.new(0.900000036, 1.62, 1)
  1263. o41.Name = "Mag2"
  1264. o41.Parent = o1
  1265. o41.Material = Enum.Material.SmoothPlastic
  1266. o41.BrickColor = BrickColor.new("Dark stone grey")
  1267. o41.Position = Vector3.new(-44.8972816, 1.93139601, -23.0169888)
  1268. o41.Rotation = Vector3.new(90.0000687, -81.0000992, 90.0000687)
  1269. o41.Anchored = true
  1270. o41.FormFactor = Enum.FormFactor.Custom
  1271. o41.Size = Vector3.new(0.200000003, 0.449999988, 0.419999987)
  1272. 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)
  1273. o41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1274. o41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1275. o41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1276. o41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1277. o41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1278. o41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1279. o41.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1280. o42.Parent = o41
  1281. o42.Scale = Vector3.new(0.900000036, 1.20000005, 1)
  1282. o43.Parent = o1
  1283. o43.Material = Enum.Material.SmoothPlastic
  1284. o43.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1285. o43.Position = Vector3.new(-45.621994, 2.13499188, -23.0169888)
  1286. o43.Rotation = Vector3.new(-180, 90, 0)
  1287. o43.Anchored = true
  1288. o43.FormFactor = Enum.FormFactor.Custom
  1289. o43.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  1290. 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)
  1291. o43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1292. o43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1293. o43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1294. o43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1295. o43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1296. o43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1297. o43.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1298. o44.Parent = o43
  1299. o44.Scale = Vector3.new(1, 0.149999991, 0.149999991)
  1300. o45.Parent = o1
  1301. o45.Material = Enum.Material.SmoothPlastic
  1302. o45.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1303. o45.Position = Vector3.new(-45.6999893, 2.19498205, -23.0199947)
  1304. o45.Rotation = Vector3.new(1.42488799e-012, -90, 0)
  1305. o45.Anchored = true
  1306. o45.FormFactor = Enum.FormFactor.Custom
  1307. o45.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  1308. 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)
  1309. o45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1310. o45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1311. o45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1312. o45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1313. o45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1314. o45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1315. o45.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1316. o46.Parent = o45
  1317. o46.Scale = Vector3.new(1, 0.450000018, 0.900000036)
  1318. o47.Parent = o1
  1319. o47.Material = Enum.Material.SmoothPlastic
  1320. o47.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1321. o47.Position = Vector3.new(-45.4449959, 1.937011, -23.0199947)
  1322. o47.Rotation = Vector3.new(1.42488799e-012, -90, 0)
  1323. o47.Anchored = true
  1324. o47.FormFactor = Enum.FormFactor.Custom
  1325. o47.Size = Vector3.new(0.209999993, 0.200000003, 0.270000011)
  1326. 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)
  1327. o47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1328. o47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1329. o47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1330. o47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1331. o47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1332. o47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1333. o47.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1334. o48.Parent = o47
  1335. o48.Offset = Vector3.new(0.00300000003, 0, 0)
  1336. o48.Scale = Vector3.new(1, 0.720000029, 1)
  1337. o49.Parent = o1
  1338. o49.Material = Enum.Material.SmoothPlastic
  1339. o49.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1340. o49.Position = Vector3.new(-45.4699135, 2.34168005, -22.886404)
  1341. o49.Rotation = Vector3.new(90, -4.32576189e-006, 75.0002823)
  1342. o49.Anchored = true
  1343. o49.FormFactor = Enum.FormFactor.Custom
  1344. o49.Size = Vector3.new(0.200000003, 0.449999988, 0.200000003)
  1345. 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)
  1346. o49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1347. o49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1348. o49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1349. o49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1350. o49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1351. o49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1352. o49.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1353. o50.Parent = o49
  1354. o50.Scale = Vector3.new(0.450000018, 1, 0.450000018)
  1355. o51.Parent = o1
  1356. o51.Material = Enum.Material.SmoothPlastic
  1357. o51.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1358. o51.Position = Vector3.new(-42.9219856, 2.32981491, -23.017004)
  1359. o51.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  1360. o51.Anchored = true
  1361. o51.FormFactor = Enum.FormFactor.Custom
  1362. o51.Size = Vector3.new(0.270000011, 0.200000003, 0.200000003)
  1363. 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)
  1364. o51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1365. o51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1366. o51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1367. o51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1368. o51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1369. o51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1370. o51.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1371. o52.Parent = o51
  1372. o52.Scale = Vector3.new(1, 0.900000036, 0.50999999)
  1373. o53.Parent = o1
  1374. o53.Material = Enum.Material.SmoothPlastic
  1375. o53.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1376. o53.Position = Vector3.new(-42.32201, 2.33277702, -23.017004)
  1377. o53.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  1378. o53.Anchored = true
  1379. o53.FormFactor = Enum.FormFactor.Custom
  1380. o53.Size = Vector3.new(0.270000011, 0.200000003, 0.200000003)
  1381. 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)
  1382. o53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1383. o53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1384. o53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1385. o53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1386. o53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1387. o53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1388. o53.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1389. o54.Parent = o53
  1390. o54.Scale = Vector3.new(1, 0.0749999955, 0.75)
  1391. o55.Parent = o1
  1392. o55.Material = Enum.Material.SmoothPlastic
  1393. o55.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1394. o55.Position = Vector3.new(-47.028965, 2.03898501, -22.9119778)
  1395. o55.Rotation = Vector3.new(180, -0.000269792567, 8.01008652e-012)
  1396. o55.Anchored = true
  1397. o55.FormFactor = Enum.FormFactor.Custom
  1398. o55.Size = Vector3.new(0.200000003, 0.540000021, 0.200000003)
  1399. 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)
  1400. o55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1401. o55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1402. o55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1403. o55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1404. o55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1405. o55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1406. o55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1407. o56.Parent = o55
  1408. o56.Scale = Vector3.new(0.149999991, 1, 0.299999982)
  1409. o56.MeshType = Enum.MeshType.Wedge
  1410. o57.Parent = o1
  1411. o57.Material = Enum.Material.SmoothPlastic
  1412. o57.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1413. o57.Position = Vector3.new(-45.6849937, 2.32968688, -23.0605068)
  1414. o57.Rotation = Vector3.new(-3.19583734e-011, 0.000273207726, 90)
  1415. o57.Anchored = true
  1416. o57.FormFactor = Enum.FormFactor.Custom
  1417. o57.Size = Vector3.new(0.209999993, 0.200000003, 0.209999993)
  1418. 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)
  1419. o57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1420. o57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1421. o57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1422. o57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1423. o57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1424. o57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1425. o57.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1426. o58.Parent = o57
  1427. o58.Scale = Vector3.new(1.1500001, 0.75, 1.04999995)
  1428. o59.Parent = o1
  1429. o59.Material = Enum.Material.SmoothPlastic
  1430. o59.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1431. o59.Position = Vector3.new(-47.025959, 2.28498602, -23.0169888)
  1432. o59.Rotation = Vector3.new(-1.62844304e-011, 0.000132276866, 90)
  1433. o59.Anchored = true
  1434. o59.FormFactor = Enum.FormFactor.Custom
  1435. o59.Size = Vector3.new(0.270000011, 0.200000003, 0.270000011)
  1436. 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)
  1437. o59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1438. o59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1439. o59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1440. o59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1441. o59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1442. o59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1443. o59.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1444. o60.Parent = o59
  1445. o60.Scale = Vector3.new(1, 0.180000007, 1)
  1446. o61.Parent = o1
  1447. o61.Material = Enum.Material.SmoothPlastic
  1448. o61.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1449. o61.Position = Vector3.new(-45.5949974, 2.06598401, -23.0169888)
  1450. o61.Rotation = Vector3.new(-180, 90, 0)
  1451. o61.Anchored = true
  1452. o61.FormFactor = Enum.FormFactor.Custom
  1453. o61.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  1454. 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)
  1455. o61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1456. o61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1457. o61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1458. o61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1459. o61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1460. o61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1461. o61.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1462. o62.Parent = o61
  1463. o62.Scale = Vector3.new(1, 0.299999982, 0.149999991)
  1464. o62.MeshType = Enum.MeshType.Wedge
  1465. o63.Parent = o1
  1466. o63.Material = Enum.Material.SmoothPlastic
  1467. o63.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1468. o63.Position = Vector3.new(-45.701725, 2.34168005, -22.8242855)
  1469. o63.Rotation = Vector3.new(-2.31819899e-006, 15.000556, 90)
  1470. o63.Anchored = true
  1471. o63.FormFactor = Enum.FormFactor.Custom
  1472. o63.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1473. 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)
  1474. o63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1475. o63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1476. o63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1477. o63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1478. o63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1479. o63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1480. o63.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1481. o64.Parent = o63
  1482. o64.Scale = Vector3.new(0.337500006, 0.149999991, 0.337500006)
  1483. o65.Parent = o1
  1484. o65.Material = Enum.Material.SmoothPlastic
  1485. o65.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1486. o65.Position = Vector3.new(-44.6739845, 1.96097994, -23.017004)
  1487. o65.Rotation = Vector3.new(90, -8.08488086e-012, -89.9999924)
  1488. o65.Anchored = true
  1489. o65.FormFactor = Enum.FormFactor.Custom
  1490. o65.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  1491. 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)
  1492. o65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1493. o65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1494. o65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1495. o65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1496. o65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1497. o65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1498. o65.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1499. o66.Parent = o65
  1500. o66.Scale = Vector3.new(1, 0.180000007, 0.149999991)
  1501. o66.MeshType = Enum.MeshType.Wedge
  1502. o67.Parent = o1
  1503. o67.Material = Enum.Material.SmoothPlastic
  1504. o67.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1505. o67.Position = Vector3.new(-42.6519814, 2.33281589, -23.017004)
  1506. o67.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  1507. o67.Anchored = true
  1508. o67.FormFactor = Enum.FormFactor.Custom
  1509. o67.Size = Vector3.new(0.270000011, 0.360000014, 0.200000003)
  1510. 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)
  1511. o67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1512. o67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1513. o67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1514. o67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1515. o67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1516. o67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1517. o67.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1518. o68.Parent = o67
  1519. o68.Scale = Vector3.new(1, 1, 0.599999964)
  1520. o69.Parent = o1
  1521. o69.Material = Enum.Material.SmoothPlastic
  1522. o69.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1523. o69.Position = Vector3.new(-46.7319527, 1.99998295, -23.0169888)
  1524. o69.Rotation = Vector3.new(-180, -90, 0)
  1525. o69.Anchored = true
  1526. o69.FormFactor = Enum.FormFactor.Custom
  1527. o69.Size = Vector3.new(0.200000003, 0.209999993, 0.200000003)
  1528. 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)
  1529. o69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1530. o69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1531. o69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1532. o69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1533. o69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1534. o69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1535. o69.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1536. o70.Parent = o69
  1537. o70.Scale = Vector3.new(0.450000018, 1, 1.35000002)
  1538. o70.MeshType = Enum.MeshType.Wedge
  1539. o71.Parent = o1
  1540. o71.Material = Enum.Material.SmoothPlastic
  1541. o71.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1542. o71.Position = Vector3.new(-45.12397, 2.12598205, -23.0169888)
  1543. o71.Rotation = Vector3.new(8.14221791e-013, -90, 0)
  1544. o71.Anchored = true
  1545. o71.FormFactor = Enum.FormFactor.Custom
  1546. o71.Size = Vector3.new(0.209999993, 0.300000012, 0.959999979)
  1547. 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)
  1548. o71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1549. o71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1550. o71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1551. o71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1552. o71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1553. o71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1554. o71.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1555. o72.Parent = o71
  1556. o72.Scale = Vector3.new(1, 1, 0.950000048)
  1557. o73.Parent = o1
  1558. o73.Material = Enum.Material.SmoothPlastic
  1559. o73.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1560. o73.Position = Vector3.new(-45.9759941, 2.32979393, -23.0169888)
  1561. o73.Rotation = Vector3.new(2.50446283e-006, 0.000129772379, 90)
  1562. o73.Anchored = true
  1563. o73.FormFactor = Enum.FormFactor.Custom
  1564. o73.Size = Vector3.new(0.200000003, 0.324000001, 0.270000011)
  1565. 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)
  1566. o73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1567. o73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1568. o73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1569. o73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1570. o73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1571. o73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1572. o73.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1573. o74.Parent = o73
  1574. o74.Scale = Vector3.new(0.900000036, 1.10000002, 1)
  1575. o75.Parent = o1
  1576. o75.Material = Enum.Material.SmoothPlastic
  1577. o75.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1578. o75.Position = Vector3.new(-44.8719826, 2.27287102, -22.8969936)
  1579. o75.Rotation = Vector3.new(78.0001221, 4.33610621e-005, -0.000249171426)
  1580. o75.Anchored = true
  1581. o75.FormFactor = Enum.FormFactor.Custom
  1582. o75.Size = Vector3.new(0.330000013, 0.200000003, 0.200000003)
  1583. 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)
  1584. o75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1585. o75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1586. o75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1587. o75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1588. o75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1589. o75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1590. o75.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1591. o76.Parent = o75
  1592. o76.Scale = Vector3.new(1, 0.149999991, 0.599999964)
  1593. o77.Parent = o1
  1594. o77.Material = Enum.Material.SmoothPlastic
  1595. o77.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1596. o77.Position = Vector3.new(-43.113987, 2.49480104, -23.017004)
  1597. o77.Rotation = Vector3.new(-180, 90, 0)
  1598. o77.Anchored = true
  1599. o77.FormFactor = Enum.FormFactor.Custom
  1600. o77.Size = Vector3.new(0.200000003, 0.324000001, 0.200000003)
  1601. 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)
  1602. o77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1603. o77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1604. o77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1605. o77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1606. o77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1607. o77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1608. o77.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1609. o78.Parent = o77
  1610. o78.Scale = Vector3.new(0.450000018, 1, 0.149999991)
  1611. o79.Parent = o1
  1612. o79.Material = Enum.Material.SmoothPlastic
  1613. o79.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1614. o79.Position = Vector3.new(-46.6629639, 2.00900698, -23.0169888)
  1615. o79.Rotation = Vector3.new(90.0000076, -45.0002785, 90.0000076)
  1616. o79.Anchored = true
  1617. o79.FormFactor = Enum.FormFactor.Custom
  1618. o79.Size = Vector3.new(0.200000003, 0.200000003, 0.300000012)
  1619. 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)
  1620. o79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1621. o79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1622. o79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1623. o79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1624. o79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1625. o79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1626. o79.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1627. o80.Parent = o79
  1628. o80.Scale = Vector3.new(0.75, 0.540000021, 1)
  1629. o81.Parent = o1
  1630. o81.Material = Enum.Material.SmoothPlastic
  1631. o81.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1632. o81.Position = Vector3.new(-47.025959, 1.78401804, -23.0169888)
  1633. o81.Rotation = Vector3.new(2.50446283e-006, 0.000129772379, 90)
  1634. o81.Anchored = true
  1635. o81.FormFactor = Enum.FormFactor.Custom
  1636. o81.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1637. 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)
  1638. o81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1639. o81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1640. o81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1641. o81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1642. o81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1643. o81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1644. o81.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1645. o82.Parent = o81
  1646. o82.Scale = Vector3.new(0.75, 0.180000007, 0.75)
  1647. o83.Parent = o1
  1648. o83.Material = Enum.Material.SmoothPlastic
  1649. o83.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1650. o83.Position = Vector3.new(-45.666996, 2.1379981, -23.0169888)
  1651. o83.Rotation = Vector3.new(-180, 90, 0)
  1652. o83.Anchored = true
  1653. o83.FormFactor = Enum.FormFactor.Custom
  1654. o83.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  1655. 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)
  1656. o83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1657. o83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1658. o83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1659. o83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1660. o83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1661. o83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1662. o83.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1663. o84.Parent = o83
  1664. o84.Scale = Vector3.new(1, 0.149999991, 0.299999982)
  1665. o84.MeshType = Enum.MeshType.Wedge
  1666. o85.Parent = o1
  1667. o85.Material = Enum.Material.SmoothPlastic
  1668. o85.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1669. o85.Position = Vector3.new(-45.3786354, 1.77153397, -23.0169888)
  1670. o85.Rotation = Vector3.new(90, -28.6877403, -89.9999924)
  1671. o85.Anchored = true
  1672. o85.FormFactor = Enum.FormFactor.Custom
  1673. o85.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  1674. 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)
  1675. o85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1676. o85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1677. o85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1678. o85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1679. o85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1680. o85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1681. o85.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1682. o86.Parent = o85
  1683. o86.Scale = Vector3.new(1, 0.180000007, 0.112500004)
  1684. o86.MeshType = Enum.MeshType.Wedge
  1685. o87.Parent = o1
  1686. o87.Material = Enum.Material.SmoothPlastic
  1687. o87.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1688. o87.Position = Vector3.new(-43.1559792, 2.65682006, -23.017004)
  1689. o87.Rotation = Vector3.new(-90, 8.08488086e-012, 89.9999924)
  1690. o87.Anchored = true
  1691. o87.FormFactor = Enum.FormFactor.Custom
  1692. o87.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1693. 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)
  1694. o87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1695. o87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1696. o87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1697. o87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1698. o87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1699. o87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1700. o87.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1701. o88.Parent = o87
  1702. o88.Scale = Vector3.new(0.450000018, 0.540000021, 0.149999991)
  1703. o89.Parent = o1
  1704. o89.Material = Enum.Material.SmoothPlastic
  1705. o89.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1706. o89.Position = Vector3.new(-43.1469765, 2.686795, -22.9809933)
  1707. o89.Rotation = Vector3.new(180, -0.000271500176, -180)
  1708. o89.Anchored = true
  1709. o89.FormFactor = Enum.FormFactor.Custom
  1710. o89.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1711. 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)
  1712. o89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1713. o89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1714. o89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1715. o89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1716. o89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1717. o89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1718. o89.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1719. o90.Parent = o89
  1720. o90.MeshId = "http://www.roblox.com/asset/?id=12221344"
  1721. o90.Scale = Vector3.new(0.209999993, 0.224999994, 0.00450000027)
  1722. o90.MeshType = Enum.MeshType.FileMesh
  1723. o91.Parent = o1
  1724. o91.Material = Enum.Material.SmoothPlastic
  1725. o91.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1726. o91.Position = Vector3.new(-45.1899757, 2.32971406, -23.0169888)
  1727. o91.Rotation = Vector3.new(-2.5044726e-006, 6.31783696e-005, 90)
  1728. o91.Anchored = true
  1729. o91.FormFactor = Enum.FormFactor.Custom
  1730. o91.Size = Vector3.new(0.209999993, 1.20000005, 0.209999993)
  1731. 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)
  1732. o91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1733. o91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1734. o91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1735. o91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1736. o91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1737. o91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1738. o91.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1739. o92.Parent = o91
  1740. o92.Scale = Vector3.new(1.10000002, 1, 1.10000002)
  1741. o93.Parent = o1
  1742. o93.Material = Enum.Material.SmoothPlastic
  1743. o93.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1744. o93.Position = Vector3.new(-43.3420143, 2.33281589, -23.0020046)
  1745. o93.Rotation = Vector3.new(-90, 7.1009457e-012, -89.9999771)
  1746. o93.Anchored = true
  1747. o93.FormFactor = Enum.FormFactor.Custom
  1748. o93.Size = Vector3.new(0.270000011, 0.200000003, 0.239999995)
  1749. 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)
  1750. o93.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1751. o93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1752. o93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1753. o93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1754. o93.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1755. o93.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1756. o93.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1757. o94.Parent = o93
  1758. o94.Scale = Vector3.new(1, 0.599999964, 1)
  1759. o95.Parent = o1
  1760. o95.Material = Enum.Material.SmoothPlastic
  1761. o95.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1762. o95.Position = Vector3.new(-46.6569557, 2.12600803, -23.0169888)
  1763. o95.Rotation = Vector3.new(-0.734529912, -89.7451248, -168.690018)
  1764. o95.Anchored = true
  1765. o95.FormFactor = Enum.FormFactor.Custom
  1766. o95.Size = Vector3.new(0.200000003, 0.200000003, 0.720000029)
  1767. 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)
  1768. o95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1769. o95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1770. o95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1771. o95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1772. o95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1773. o95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1774. o95.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1775. o96.Parent = o95
  1776. o96.Offset = Vector3.new(0, 0, 0.00300000003)
  1777. o96.Scale = Vector3.new(0.450000018, 0.360000014, 1)
  1778. o97.Parent = o1
  1779. o97.Material = Enum.Material.SmoothPlastic
  1780. o97.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1781. o97.Position = Vector3.new(-42.3670082, 2.33281589, -23.017004)
  1782. o97.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  1783. o97.Anchored = true
  1784. o97.FormFactor = Enum.FormFactor.Custom
  1785. o97.Size = Vector3.new(0.270000011, 0.200000003, 0.200000003)
  1786. 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)
  1787. o97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1788. o97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1789. o97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1790. o97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1791. o97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1792. o97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1793. o97.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1794. o98.Parent = o97
  1795. o98.Scale = Vector3.new(1, 0.0749999955, 0.75)
  1796. o99.Parent = o1
  1797. o99.Material = Enum.Material.SmoothPlastic
  1798. o99.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1799. o99.Position = Vector3.new(-46.4619598, 2.17700005, -23.0169888)
  1800. o99.Rotation = Vector3.new(-180, -0.000132276851, 6.83023381e-006)
  1801. o99.Anchored = true
  1802. o99.FormFactor = Enum.FormFactor.Custom
  1803. o99.Size = Vector3.new(0.209999993, 0.396000028, 0.200000003)
  1804. 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)
  1805. o99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1806. o99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1807. o99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1808. o99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1809. o99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1810. o99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1811. o99.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1812. o100.Parent = o99
  1813. o100.Scale = Vector3.new(1, 1, 0.599999964)
  1814. o101.Parent = o1
  1815. o101.Material = Enum.Material.SmoothPlastic
  1816. o101.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1817. o101.Position = Vector3.new(-45.5919991, 2.11999488, -23.0169888)
  1818. o101.Rotation = Vector3.new(-180, 90, 0)
  1819. o101.Anchored = true
  1820. o101.FormFactor = Enum.FormFactor.Custom
  1821. o101.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  1822. 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)
  1823. o101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1824. o101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1825. o101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1826. o101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1827. o101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1828. o101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1829. o101.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1830. o102.Parent = o101
  1831. o102.Scale = Vector3.new(1, 0.299999982, 0.149999991)
  1832. o103.Parent = o1
  1833. o103.Material = Enum.Material.SmoothPlastic
  1834. o103.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1835. o103.Position = Vector3.new(-45.7307053, 2.34168005, -22.816534)
  1836. o103.Rotation = Vector3.new(-180, -15.000556, 90)
  1837. o103.Anchored = true
  1838. o103.FormFactor = Enum.FormFactor.Custom
  1839. o103.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1840. 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)
  1841. o103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1842. o103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1843. o103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1844. o103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1845. o103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1846. o103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1847. o103.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1848. o104.Parent = o103
  1849. o104.Scale = Vector3.new(0.450000018, 0.149999991, 0.450000018)
  1850. o105.Parent = o1
  1851. o105.Material = Enum.Material.SmoothPlastic
  1852. o105.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1853. o105.Position = Vector3.new(-44.9019737, 1.90552294, -23.0169888)
  1854. o105.Rotation = Vector3.new(-180, -90, 0)
  1855. o105.Anchored = true
  1856. o105.FormFactor = Enum.FormFactor.Custom
  1857. o105.Size = Vector3.new(0.209999993, 0.200000003, 0.449999988)
  1858. 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)
  1859. o105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1860. o105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1861. o105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1862. o105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1863. o105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1864. o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1865. o105.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1866. o106.Parent = o105
  1867. o106.Scale = Vector3.new(1, 0.419999987, 1)
  1868. o106.MeshType = Enum.MeshType.Wedge
  1869. o107.Parent = o1
  1870. o107.Material = Enum.Material.SmoothPlastic
  1871. o107.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1872. o107.Position = Vector3.new(-45.1389694, 1.96101201, -23.0169888)
  1873. o107.Rotation = Vector3.new(-90, 8.10863442e-012, 89.9999924)
  1874. o107.Anchored = true
  1875. o107.FormFactor = Enum.FormFactor.Custom
  1876. o107.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  1877. 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)
  1878. o107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1879. o107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1880. o107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1881. o107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1882. o107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1883. o107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1884. o107.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1885. o108.Parent = o107
  1886. o108.Scale = Vector3.new(1, 0.180000007, 0.149999991)
  1887. o108.MeshType = Enum.MeshType.Wedge
  1888. o109.Parent = o1
  1889. o109.Material = Enum.Material.SmoothPlastic
  1890. o109.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1891. o109.Position = Vector3.new(-46.4469643, 2.09900498, -23.0169888)
  1892. o109.Rotation = Vector3.new(-0.734529912, -89.7451248, -168.690018)
  1893. o109.Anchored = true
  1894. o109.FormFactor = Enum.FormFactor.Custom
  1895. o109.Size = Vector3.new(0.200000003, 0.200000003, 0.300000012)
  1896. 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)
  1897. o109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1898. o109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1899. o109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1900. o109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1901. o109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1902. o109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1903. o109.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1904. o110.Parent = o109
  1905. o110.Scale = Vector3.new(0.75, 0.540000021, 1)
  1906. o111.Parent = o1
  1907. o111.Material = Enum.Material.SmoothPlastic
  1908. o111.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1909. o111.Position = Vector3.new(-43.9570198, 2.33281589, -22.8369961)
  1910. o111.Rotation = Vector3.new(-3.05333016e-012, -90, 0)
  1911. o111.Anchored = true
  1912. o111.FormFactor = Enum.FormFactor.Custom
  1913. o111.Size = Vector3.new(0.200000003, 0.200000003, 1.11000001)
  1914. 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)
  1915. o111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1916. o111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1917. o111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1918. o111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1919. o111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1920. o111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1921. o111.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1922. o112.Parent = o111
  1923. o112.Offset = Vector3.new(-0.00600000005, 0, 0)
  1924. o112.Scale = Vector3.new(0.299999982, 0.599999964, 0.999000013)
  1925. o113.Parent = o1
  1926. o113.Material = Enum.Material.SmoothPlastic
  1927. o113.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1928. o113.Position = Vector3.new(-42.1870003, 2.32981491, -23.017004)
  1929. o113.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  1930. o113.Anchored = true
  1931. o113.FormFactor = Enum.FormFactor.Custom
  1932. o113.Size = Vector3.new(0.270000011, 0.209999993, 0.200000003)
  1933. 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)
  1934. o113.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1935. o113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1936. o113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1937. o113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1938. o113.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1939. o113.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1940. o113.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1941. o114.Parent = o113
  1942. o114.Scale = Vector3.new(1, 1, 0.75)
  1943. o115.Parent = o1
  1944. o115.Material = Enum.Material.SmoothPlastic
  1945. o115.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1946. o115.Position = Vector3.new(-45.5949974, 2.32968688, -23.0529995)
  1947. o115.Rotation = Vector3.new(-3.19583734e-011, 0.000273207726, 90)
  1948. o115.Anchored = true
  1949. o115.FormFactor = Enum.FormFactor.Custom
  1950. o115.Size = Vector3.new(0.209999993, 0.200000003, 0.209999993)
  1951. 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)
  1952. o115.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1953. o115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1954. o115.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1955. o115.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1956. o115.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1957. o115.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1958. o115.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1959. o116.Parent = o115
  1960. o116.Scale = Vector3.new(1.10000002, 0.75, 1.02499998)
  1961. o117.Parent = o1
  1962. o117.Material = Enum.Material.SmoothPlastic
  1963. o117.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1964. o117.Position = Vector3.new(-45.7720146, 2.29656005, -23.0257607)
  1965. o117.Rotation = Vector3.new(0.000260027009, -90, 0)
  1966. o117.Anchored = true
  1967. o117.FormFactor = Enum.FormFactor.Custom
  1968. o117.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1969. 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)
  1970. o117.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1971. o117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1972. o117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1973. o117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1974. o117.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1975. o117.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1976. o117.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1977. o118.Parent = o117
  1978. o118.MeshId = "http://www.roblox.com/asset/?id=12221344"
  1979. o118.Scale = Vector3.new(0.479999989, 0.629999995, 0.0149999997)
  1980. o118.MeshType = Enum.MeshType.FileMesh
  1981. o119.Parent = o1
  1982. o119.Material = Enum.Material.SmoothPlastic
  1983. o119.BrickColor = BrickColor.new(CUSTOMCOLOR)
  1984. o119.Position = Vector3.new(-43.9570045, 2.33281589, -23.1970119)
  1985. o119.Rotation = Vector3.new(1.01777712e-012, -90, 0)
  1986. o119.Anchored = true
  1987. o119.FormFactor = Enum.FormFactor.Custom
  1988. o119.Size = Vector3.new(0.200000003, 0.200000003, 1.11000001)
  1989. 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)
  1990. o119.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1991. o119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1992. o119.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1993. o119.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1994. o119.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1995. o119.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1996. o119.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1997. o120.Parent = o119
  1998. o120.Offset = Vector3.new(0.00600000005, 0, 0)
  1999. o120.Scale = Vector3.new(0.299999982, 0.599999964, 0.999000013)
  2000. o121.Parent = o1
  2001. o121.Material = Enum.Material.SmoothPlastic
  2002. o121.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2003. o121.Position = Vector3.new(-44.6409874, 2.16198707, -23.017004)
  2004. o121.Rotation = Vector3.new(-89.9985504, -1.70046644e-006, -90)
  2005. o121.Anchored = true
  2006. o121.FormFactor = Enum.FormFactor.Custom
  2007. o121.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2008. 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)
  2009. o121.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2010. o121.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2011. o121.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2012. o121.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2013. o121.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2014. o121.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2015. o121.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2016. o122.Parent = o121
  2017. o122.Scale = Vector3.new(1, 0.360000014, 0.299999982)
  2018. o122.MeshType = Enum.MeshType.Wedge
  2019. o123.Parent = o1
  2020. o123.Material = Enum.Material.SmoothPlastic
  2021. o123.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2022. o123.Position = Vector3.new(-45.08498, 2.44970989, -23.0169888)
  2023. o123.Rotation = Vector3.new(-0.236811787, -89.7451248, -0.767986298)
  2024. o123.Anchored = true
  2025. o123.FormFactor = Enum.FormFactor.Custom
  2026. o123.Size = Vector3.new(0.200000003, 0.200000003, 0.99000001)
  2027. 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)
  2028. o123.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2029. o123.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2030. o123.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2031. o123.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2032. o123.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2033. o123.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2034. o123.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2035. o124.Parent = o123
  2036. o124.Scale = Vector3.new(0.75, 0.599999964, 1)
  2037. o125.Parent = o1
  2038. o125.Material = Enum.Material.SmoothPlastic
  2039. o125.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2040. o125.Position = Vector3.new(-45.5094337, 1.53326499, -23.0169888)
  2041. o125.Rotation = Vector3.new(90, -28.6877403, -89.9999924)
  2042. o125.Anchored = true
  2043. o125.FormFactor = Enum.FormFactor.Custom
  2044. o125.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2045. 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)
  2046. o125.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2047. o125.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2048. o125.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2049. o125.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2050. o125.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2051. o125.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2052. o125.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2053. o126.Parent = o125
  2054. o126.Scale = Vector3.new(1, 0.180000007, 0.149999991)
  2055. o126.MeshType = Enum.MeshType.Wedge
  2056. o127.Parent = o1
  2057. o127.Material = Enum.Material.SmoothPlastic
  2058. o127.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2059. o127.Position = Vector3.new(-45.1449661, 1.89352095, -23.0169888)
  2060. o127.Rotation = Vector3.new(90, -1.70757198e-006, 90.0000076)
  2061. o127.Anchored = true
  2062. o127.FormFactor = Enum.FormFactor.Custom
  2063. o127.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2064. 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)
  2065. o127.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2066. o127.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2067. o127.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2068. o127.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2069. o127.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2070. o127.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2071. o127.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2072. o128.Parent = o127
  2073. o128.Scale = Vector3.new(1, 0.180000007, 0.149999991)
  2074. o128.MeshType = Enum.MeshType.Wedge
  2075. o129.Parent = o1
  2076. o129.Material = Enum.Material.SmoothPlastic
  2077. o129.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2078. o129.Position = Vector3.new(-45.3900337, 1.75122094, -23.0169888)
  2079. o129.Rotation = Vector3.new(-90, 28.6877403, -90.0000076)
  2080. o129.Anchored = true
  2081. o129.FormFactor = Enum.FormFactor.Custom
  2082. o129.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2083. 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)
  2084. o129.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2085. o129.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2086. o129.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2087. o129.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2088. o129.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2089. o129.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2090. o129.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2091. o130.Parent = o129
  2092. o130.Scale = Vector3.new(1, 0.180000007, 0.112500004)
  2093. o130.MeshType = Enum.MeshType.Wedge
  2094. o131.Parent = o1
  2095. o131.Material = Enum.Material.SmoothPlastic
  2096. o131.BrickColor = BrickColor.new("Dark stone grey")
  2097. o131.Position = Vector3.new(-44.8719826, 2.33270693, -23.0019875)
  2098. o131.Rotation = Vector3.new(-1.52666525e-011, 0.00013147993, 90)
  2099. o131.Anchored = true
  2100. o131.FormFactor = Enum.FormFactor.Custom
  2101. o131.Size = Vector3.new(0.209999993, 0.330000013, 0.209999993)
  2102. 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)
  2103. o131.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2104. o131.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2105. o131.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2106. o131.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2107. o131.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2108. o131.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2109. o131.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2110. o132.Parent = o131
  2111. o132.Scale = Vector3.new(1.10000002, 1, 1)
  2112. o133.Parent = o1
  2113. o133.Material = Enum.Material.SmoothPlastic
  2114. o133.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2115. o133.Position = Vector3.new(-45.5253639, 1.79166996, -23.0169888)
  2116. o133.Rotation = Vector3.new(-90.0000153, -61.3127441, -90.0000229)
  2117. o133.Anchored = true
  2118. o133.FormFactor = Enum.FormFactor.Custom
  2119. o133.Size = Vector3.new(0.209999993, 0.468000025, 0.239999995)
  2120. 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)
  2121. o133.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2122. o133.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2123. o133.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2124. o133.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2125. o133.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2126. o133.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2127. o133.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2128. o134.Parent = o133
  2129. o135.Parent = o1
  2130. o135.Material = Enum.Material.SmoothPlastic
  2131. o135.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2132. o135.Position = Vector3.new(-45.2349663, 1.87251794, -23.0169888)
  2133. o135.Rotation = Vector3.new(-90, -5.97646749e-006, -90.0000076)
  2134. o135.Anchored = true
  2135. o135.FormFactor = Enum.FormFactor.Custom
  2136. o135.Size = Vector3.new(0.209999993, 0.324000001, 0.200000003)
  2137. 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)
  2138. o135.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2139. o135.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2140. o135.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2141. o135.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2142. o135.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2143. o135.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2144. o135.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2145. o136.Parent = o135
  2146. o136.Scale = Vector3.new(1, 1, 0.0749999955)
  2147. o137.Parent = o1
  2148. o137.Material = Enum.Material.SmoothPlastic
  2149. o137.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2150. o137.Position = Vector3.new(-44.9019814, 2.03599, -23.0169888)
  2151. o137.Rotation = Vector3.new(1.01777712e-012, -90, 0)
  2152. o137.Anchored = true
  2153. o137.FormFactor = Enum.FormFactor.Custom
  2154. o137.Size = Vector3.new(0.209999993, 0.200000003, 0.419999987)
  2155. 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)
  2156. o137.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2157. o137.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2158. o137.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2159. o137.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2160. o137.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2161. o137.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2162. o137.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2163. o138.Parent = o137
  2164. o138.Scale = Vector3.new(1, 0.900000036, 1.10000002)
  2165. o138.MeshType = Enum.MeshType.Brick
  2166. o139.Parent = o1
  2167. o139.Material = Enum.Material.SmoothPlastic
  2168. o139.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2169. o139.Position = Vector3.new(-45.2949638, 1.96252096, -23.0169888)
  2170. o139.Rotation = Vector3.new(-90, 8.10863442e-012, -90.0000076)
  2171. o139.Anchored = true
  2172. o139.FormFactor = Enum.FormFactor.Custom
  2173. o139.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2174. 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)
  2175. o139.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2176. o139.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2177. o139.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2178. o139.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2179. o139.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2180. o139.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2181. o139.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2182. o140.Parent = o139
  2183. o140.Scale = Vector3.new(1, 0.180000007, 0.149999991)
  2184. o140.MeshType = Enum.MeshType.Wedge
  2185. o141.Parent = o1
  2186. o141.Material = Enum.Material.SmoothPlastic
  2187. o141.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2188. o141.Position = Vector3.new(-44.4249878, 2.32082105, -23.017004)
  2189. o141.Rotation = Vector3.new(-3.16530691e-011, 0.000271500117, -90)
  2190. o141.Anchored = true
  2191. o141.FormFactor = Enum.FormFactor.Custom
  2192. o141.Size = Vector3.new(0.200000003, 0.300000012, 0.200000003)
  2193. 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)
  2194. o141.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2195. o141.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2196. o141.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2197. o141.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2198. o141.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2199. o141.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2200. o141.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2201. o142.Parent = o141
  2202. o142.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2203. o142.Scale = Vector3.new(0.150000006, 0.440999985, 0.150000006)
  2204. o142.MeshType = Enum.MeshType.FileMesh
  2205. o143.Parent = o1
  2206. o143.Material = Enum.Material.SmoothPlastic
  2207. o143.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2208. o143.Position = Vector3.new(-42.3520088, 2.33281589, -23.017004)
  2209. o143.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  2210. o143.Anchored = true
  2211. o143.FormFactor = Enum.FormFactor.Custom
  2212. o143.Size = Vector3.new(0.270000011, 0.300000012, 0.200000003)
  2213. 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)
  2214. o143.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2215. o143.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2216. o143.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2217. o143.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2218. o143.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2219. o143.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2220. o143.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2221. o144.Parent = o143
  2222. o144.Scale = Vector3.new(1, 1, 0.50999999)
  2223. o145.Parent = o1
  2224. o145.Material = Enum.Material.SmoothPlastic
  2225. o145.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2226. o145.Position = Vector3.new(-42.096714, 2.33280206, -23.017004)
  2227. o145.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  2228. o145.Anchored = true
  2229. o145.FormFactor = Enum.FormFactor.Custom
  2230. o145.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2231. 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)
  2232. o145.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2233. o145.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2234. o145.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2235. o145.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2236. o145.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2237. o145.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2238. o145.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2239. o146.Parent = o145
  2240. o146.Scale = Vector3.new(0.450000018, 0.149999991, 0.50999999)
  2241. o147.Parent = o1
  2242. o147.Material = Enum.Material.SmoothPlastic
  2243. o147.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2244. o147.Position = Vector3.new(-43.1469765, 2.686795, -23.0530148)
  2245. o147.Rotation = Vector3.new(180, -0.000271500117, -180)
  2246. o147.Anchored = true
  2247. o147.FormFactor = Enum.FormFactor.Custom
  2248. o147.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2249. 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)
  2250. o147.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2251. o147.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2252. o147.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2253. o147.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2254. o147.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2255. o147.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2256. o147.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2257. o148.Parent = o147
  2258. o148.MeshId = "http://www.roblox.com/asset/?id=12221344"
  2259. o148.Scale = Vector3.new(0.209999993, 0.224999994, 0.00450000027)
  2260. o148.MeshType = Enum.MeshType.FileMesh
  2261. o149.Parent = o1
  2262. o149.Material = Enum.Material.SmoothPlastic
  2263. o149.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2264. o149.Position = Vector3.new(-43.304081, 2.51094389, -23.017004)
  2265. o149.Rotation = Vector3.new(89.9999924, 54.8440132, 90.0000153)
  2266. o149.Anchored = true
  2267. o149.FormFactor = Enum.FormFactor.Custom
  2268. o149.Size = Vector3.new(0.200000003, 0.360000014, 0.200000003)
  2269. 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)
  2270. o149.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2271. o149.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2272. o149.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2273. o149.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2274. o149.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2275. o149.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2276. o149.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2277. o150.Parent = o149
  2278. o150.Scale = Vector3.new(0.450000018, 1, 0.149999991)
  2279. o151.Parent = o1
  2280. o151.Material = Enum.Material.SmoothPlastic
  2281. o151.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2282. o151.Position = Vector3.new(-45.621994, 2.11099911, -23.0169888)
  2283. o151.Rotation = Vector3.new(-180, 90, 0)
  2284. o151.Anchored = true
  2285. o151.FormFactor = Enum.FormFactor.Custom
  2286. o151.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2287. 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)
  2288. o151.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2289. o151.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2290. o151.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2291. o151.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2292. o151.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2293. o151.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2294. o151.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2295. o152.Parent = o151
  2296. o152.Scale = Vector3.new(1, 0.149999991, 0.149999991)
  2297. o152.MeshType = Enum.MeshType.Wedge
  2298. o153.Parent = o1
  2299. o153.Material = Enum.Material.SmoothPlastic
  2300. o153.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2301. o153.Position = Vector3.new(-43.1379738, 2.638798, -23.017004)
  2302. o153.Rotation = Vector3.new(-180, 90, 0)
  2303. o153.Anchored = true
  2304. o153.FormFactor = Enum.FormFactor.Custom
  2305. o153.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2306. 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)
  2307. o153.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2308. o153.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2309. o153.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2310. o153.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2311. o153.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2312. o153.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2313. o153.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2314. o154.Parent = o153
  2315. o154.Scale = Vector3.new(0.299999982, 0.360000014, 0.299999982)
  2316. o155.Parent = o1
  2317. o155.Material = Enum.Material.SmoothPlastic
  2318. o155.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2319. o155.Position = Vector3.new(-43.1560097, 2.69881988, -23.017004)
  2320. o155.Rotation = Vector3.new(1.01777712e-012, -90, 0)
  2321. o155.Anchored = true
  2322. o155.FormFactor = Enum.FormFactor.Custom
  2323. o155.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2324. 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)
  2325. o155.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2326. o155.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2327. o155.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2328. o155.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2329. o155.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2330. o155.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2331. o155.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2332. o156.Parent = o155
  2333. o156.Scale = Vector3.new(0.0299999993, 0.240000024, 0.0299999993)
  2334. o157.Parent = o1
  2335. o157.Material = Enum.Material.SmoothPlastic
  2336. o157.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2337. o157.Position = Vector3.new(-43.2220192, 2.33281589, -23.017004)
  2338. o157.Rotation = Vector3.new(-90, 8.08488086e-012, -90.0000076)
  2339. o157.Anchored = true
  2340. o157.FormFactor = Enum.FormFactor.Custom
  2341. o157.Size = Vector3.new(0.270000011, 0.540000021, 0.200000003)
  2342. 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)
  2343. o157.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2344. o157.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2345. o157.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2346. o157.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2347. o157.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2348. o157.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2349. o157.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2350. o158.Parent = o157
  2351. o158.Scale = Vector3.new(1, 1, 0.599999964)
  2352. o159.Parent = o1
  2353. o159.Material = Enum.Material.SmoothPlastic
  2354. o159.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2355. o159.Position = Vector3.new(-44.6379814, 2.28186107, -23.017004)
  2356. o159.Rotation = Vector3.new(1.42488799e-012, -90, 0)
  2357. o159.Anchored = true
  2358. o159.FormFactor = Enum.FormFactor.Custom
  2359. o159.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2360. 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)
  2361. o159.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2362. o159.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2363. o159.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2364. o159.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2365. o159.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2366. o159.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2367. o159.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2368. o160.Parent = o159
  2369. o160.Scale = Vector3.new(1.01999998, 0.900000036, 0.329999983)
  2370. o161.Parent = o1
  2371. o161.Material = Enum.Material.SmoothPlastic
  2372. o161.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2373. o161.Position = Vector3.new(-46.9419594, 1.99700594, -23.0169888)
  2374. o161.Rotation = Vector3.new(-0.734529912, -89.7451248, -168.690018)
  2375. o161.Anchored = true
  2376. o161.FormFactor = Enum.FormFactor.Custom
  2377. o161.Size = Vector3.new(0.200000003, 0.216000006, 0.200000003)
  2378. 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)
  2379. o161.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2380. o161.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2381. o161.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2382. o161.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2383. o161.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2384. o161.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2385. o161.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2386. o162.Parent = o161
  2387. o162.Scale = Vector3.new(0.450000018, 1, 0.75)
  2388. o163.Parent = o1
  2389. o163.Material = Enum.Material.SmoothPlastic
  2390. o163.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2391. o163.Position = Vector3.new(-47.0289497, 2.04499006, -23.1219997)
  2392. o163.Rotation = Vector3.new(-3.15512512e-011, 0.000269792567, 180)
  2393. o163.Anchored = true
  2394. o163.FormFactor = Enum.FormFactor.Custom
  2395. o163.Size = Vector3.new(0.200000003, 0.540000021, 0.200000003)
  2396. 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)
  2397. o163.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2398. o163.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2399. o163.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2400. o163.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2401. o163.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2402. o163.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2403. o163.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2404. o164.Parent = o163
  2405. o164.Scale = Vector3.new(0.149999991, 1, 0.299999982)
  2406. o164.MeshType = Enum.MeshType.Wedge
  2407. o165.Parent = o1
  2408. o165.Material = Enum.Material.SmoothPlastic
  2409. o165.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2410. o165.Position = Vector3.new(-45.2952766, 1.89501095, -23.0169888)
  2411. o165.Rotation = Vector3.new(90, -8.10863442e-012, -89.9999924)
  2412. o165.Anchored = true
  2413. o165.FormFactor = Enum.FormFactor.Custom
  2414. o165.Size = Vector3.new(0.209999993, 0.200000003, 0.200000003)
  2415. 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)
  2416. o165.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2417. o165.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2418. o165.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2419. o165.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2420. o165.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2421. o165.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2422. o165.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2423. o166.Parent = o165
  2424. o166.Scale = Vector3.new(1, 0.180000007, 0.149999991)
  2425. o166.MeshType = Enum.MeshType.Wedge
  2426. o167.Parent = o1
  2427. o167.Material = Enum.Material.SmoothPlastic
  2428. o167.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2429. o167.Position = Vector3.new(-43.9570045, 2.49781394, -23.017004)
  2430. o167.Rotation = Vector3.new(1.01777712e-012, -90, 0)
  2431. o167.Anchored = true
  2432. o167.FormFactor = Enum.FormFactor.Custom
  2433. o167.Size = Vector3.new(0.200000003, 0.200000003, 1.11000001)
  2434. 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)
  2435. o167.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2436. o167.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2437. o167.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2438. o167.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2439. o167.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2440. o167.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2441. o167.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2442. o168.Parent = o167
  2443. o168.Scale = Vector3.new(0.75, 0.337500006, 0.999000013)
  2444. o169.Parent = o1
  2445. o169.Material = Enum.Material.SmoothPlastic
  2446. o169.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2447. o169.Position = Vector3.new(-43.9570045, 2.13797688, -23.017004)
  2448. o169.Rotation = Vector3.new(1.01777712e-012, -90, 0)
  2449. o169.Anchored = true
  2450. o169.FormFactor = Enum.FormFactor.Custom
  2451. o169.Size = Vector3.new(0.200000003, 0.200000003, 1.11000001)
  2452. 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)
  2453. o169.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2454. o169.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2455. o169.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2456. o169.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2457. o169.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2458. o169.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2459. o169.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2460. o170.Parent = o169
  2461. o170.Offset = Vector3.new(0, 0.00600000005, 0)
  2462. o170.Scale = Vector3.new(0.75, 0.299999982, 0.999000013)
  2463. o171.Parent = o1
  2464. o171.Material = Enum.Material.SmoothPlastic
  2465. o171.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2466. o171.Position = Vector3.new(-47.0109558, 2.17999005, -23.0169888)
  2467. o171.Rotation = Vector3.new(-0.734529912, -89.7451248, -168.690018)
  2468. o171.Anchored = true
  2469. o171.FormFactor = Enum.FormFactor.Custom
  2470. o171.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2471. 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)
  2472. o171.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2473. o171.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2474. o171.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2475. o171.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2476. o171.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2477. o171.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2478. o171.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2479. o172.Parent = o171
  2480. o172.Scale = Vector3.new(0.450000018, 0.900000036, 0.299999982)
  2481. o173.Parent = o1
  2482. o173.Material = Enum.Material.SmoothPlastic
  2483. o173.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2484. o173.Position = Vector3.new(-43.9570045, 2.31786799, -23.017004)
  2485. o173.Rotation = Vector3.new(-90, 7.59291241e-012, -89.9999924)
  2486. o173.Anchored = true
  2487. o173.FormFactor = Enum.FormFactor.Custom
  2488. o173.Size = Vector3.new(0.330000013, 1.11000001, 0.330000013)
  2489. 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)
  2490. o173.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2491. o173.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2492. o173.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2493. o173.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2494. o173.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2495. o173.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2496. o173.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2497. o174.Parent = o173
  2498. o175.Parent = o1
  2499. o175.Material = Enum.Material.SmoothPlastic
  2500. o175.BrickColor = BrickColor.new(CUSTOMCOLOR)
  2501. o175.Position = Vector3.new(-46.8672638, 1.86865795, -23.0169888)
  2502. o175.Rotation = Vector3.new(-91.3824005, -12.9276743, -96.1565094)
  2503. o175.Anchored = true
  2504. o175.FormFactor = Enum.FormFactor.Custom
  2505. o175.Size = Vector3.new(0.200000003, 0.252000004, 0.200000003)
  2506. 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)
  2507. o175.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2508. o175.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2509. o175.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2510. o175.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2511. o175.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2512. o175.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2513. o175.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2514. o176.Parent = o175
  2515. o176.Scale = Vector3.new(0.599999964, 1.26000011, 0.75)
  2516. o176.MeshType = Enum.MeshType.Wedge
  2517. for i=1,#cors do
  2518. coroutine.resume(cors[i])
  2519. end
  2520. if Silencer == true then
  2521. o1.Flash:Destroy()
  2522. o1.Handle.Fire.SoundId = "rbxassetid://162043120"
  2523. o1.Handle.Fire2.SoundId = "rbxassetid://162043120"
  2524. o1.Handle.Fire3.SoundId = "rbxassetid://162043120"
  2525. o2 = Instance.new("Part")
  2526. o3 = Instance.new("CylinderMesh")
  2527. o4 = Instance.new("Part")
  2528. o5 = Instance.new("CylinderMesh")
  2529. o6 = Instance.new("Part")
  2530. o7 = Instance.new("CylinderMesh")
  2531. o8 = Instance.new("Part")
  2532. o9 = Instance.new("SpecialMesh")
  2533. o2.Name = "part"
  2534. o2.Parent = o1
  2535. o2.BrickColor = BrickColor.new("Really black")
  2536. o2.Reflectance = 0.10000000149012
  2537. o2.Position = Vector3.new(-42.1407204, 2.32828784, -23.0075817)
  2538. o2.Rotation = Vector3.new(-90, 0, -90)
  2539. o2.Anchored = true
  2540. o2.Size = Vector3.new(1, 1.20000005, 1)
  2541. o2.CFrame = CFrame.new(-42.1407204, 2.32828784, -23.0075817, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2542. o2.BottomSurface = Enum.SurfaceType.Smooth
  2543. o2.TopSurface = Enum.SurfaceType.Smooth
  2544. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2545. o3.Parent = o2
  2546. o3.Scale = Vector3.new(0.333333343, 0.25, 0.333333343)
  2547. o4.Name = "part"
  2548. o4.Parent = o1
  2549. o4.BrickColor = BrickColor.new("Really black")
  2550. o4.Reflectance = 0.10000000149012
  2551. o4.Position = Vector3.new(-41.4907265, 2.32828689, -23.0075779)
  2552. o4.Rotation = Vector3.new(-90, 0, -90)
  2553. o4.Anchored = true
  2554. o4.Size = Vector3.new(1, 1.20000005, 1)
  2555. o4.CFrame = CFrame.new(-41.4907265, 2.32828689, -23.0075779, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2556. o4.BottomSurface = Enum.SurfaceType.Smooth
  2557. o4.TopSurface = Enum.SurfaceType.Smooth
  2558. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2559. o5.Parent = o4
  2560. o5.Scale = Vector3.new(0.333333343, 0.666666627, 0.333333343)
  2561. o6.Name = "part"
  2562. o6.Parent = o1
  2563. o6.BrickColor = BrickColor.new("Bright red")
  2564. o6.Reflectance = 0.10000000149012
  2565. o6.Position = Vector3.new(-41.9407234, 2.32828784, -23.0075779)
  2566. o6.Rotation = Vector3.new(-180, 0, 90)
  2567. o6.Anchored = true
  2568. o6.Size = Vector3.new(1, 1.20000005, 1)
  2569. o6.CFrame = CFrame.new(-41.9407234, 2.32828784, -23.0075779, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  2570. o6.BottomSurface = Enum.SurfaceType.Smooth
  2571. o6.TopSurface = Enum.SurfaceType.Smooth
  2572. o6.Color = Color3.new(0.768628, 0.156863, 0.109804)
  2573. o7.Parent = o6
  2574. o7.Scale = Vector3.new(0.333333343, 0.0833333284, 0.333333343)
  2575. o8.Name = "Flash"
  2576. o8.Parent = o1
  2577. o8.Material = Enum.Material.SmoothPlastic
  2578. o8.BrickColor = BrickColor.new("Bright orange")
  2579. o8.Transparency = 1
  2580. o8.Position = Vector3.new(-40.8776131, 2.32680488, -23.017004)
  2581. o8.Rotation = Vector3.new(-90, 8.08488086e-012, 89.9999924)
  2582. o8.Anchored = true
  2583. o8.FormFactor = Enum.FormFactor.Custom
  2584. o8.Size = Vector3.new(0.200000003, 0.449999988, 0.200000003)
  2585. 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)
  2586. o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2587. o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2588. o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2589. o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2590. o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2591. o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2592. o8.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2593. o9.Parent = o8
  2594. o9.Scale = Vector3.new(1.5, 2, 1.80000007)
  2595. o9.MeshType = Enum.MeshType.Sphere
  2596. end
  2597. if Bayonet == true then
  2598. o2 = Instance.new("Part")
  2599. o3 = Instance.new("SpecialMesh")
  2600. o4 = Instance.new("Part")
  2601. o5 = Instance.new("Part")
  2602. o6 = Instance.new("Part")
  2603. o8 = Instance.new("SpecialMesh")
  2604. o9 = Instance.new("Part")
  2605. o2.Name = "KNF2"
  2606. o2.Parent = o1
  2607. o2.Material = Enum.Material.SmoothPlastic
  2608. o2.BrickColor = BrickColor.new("Light stone grey")
  2609. o2.Position = Vector3.new(-41.2967644, 2.00816202, -23.040699)
  2610. o2.Rotation = Vector3.new(-90, 0, -90)
  2611. o2.Anchored = true
  2612. o2.FormFactor = Enum.FormFactor.Custom
  2613. o2.Size = Vector3.new(0.156190887, 0.468572587, 0.0937145352)
  2614. o2.CFrame = CFrame.new(-41.2967644, 2.00816202, -23.040699, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2615. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2616. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2617. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2618. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2619. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2620. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2621. o2.Color = Color3.new(0.898039, 0.894118, 0.87451)
  2622. o3.Parent = o2
  2623. o3.MeshType = Enum.MeshType.Wedge
  2624. o4.Name = "KNF1"
  2625. o4.Parent = o1
  2626. o4.Material = Enum.Material.SmoothPlastic
  2627. o4.BrickColor = BrickColor.new("Light stone grey")
  2628. o4.Position = Vector3.new(-41.9995346, 2.05501676, -23.0407009)
  2629. o4.Rotation = Vector3.new(-180, 0, -90)
  2630. o4.Anchored = true
  2631. o4.FormFactor = Enum.FormFactor.Symmetric
  2632. o4.Size = Vector3.new(0.18742907, 0.937145114, 0.156190887)
  2633. o4.CFrame = CFrame.new(-41.9995346, 2.05501676, -23.0407009, 0, 1, 0, 1, 0, 0, 0, 0, -1)
  2634. o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2635. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2636. o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2637. o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2638. o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2639. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2640. o4.Color = Color3.new(0.898039, 0.894118, 0.87451)
  2641. o5.Parent = o1
  2642. o5.Material = Enum.Material.SmoothPlastic
  2643. o5.BrickColor = BrickColor.new("Black")
  2644. o5.Position = Vector3.new(-42.5242958, 2.20311594, -23.0407009)
  2645. o5.Rotation = Vector3.new(-180, 0, -90)
  2646. o5.Anchored = true
  2647. o5.FormFactor = Enum.FormFactor.Symmetric
  2648. o5.Size = Vector3.new(0.546096325, 0.200000003, 0.218667254)
  2649. o5.CFrame = CFrame.new(-42.5242958, 2.20311594, -23.0407009, 0, 1, 0, 1, 0, 0, 0, 0, -1)
  2650. o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2651. o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2652. o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2653. o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2654. o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2655. o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2656. o5.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2657. o6.Parent = o1
  2658. o6.Material = Enum.Material.SmoothPlastic
  2659. o6.BrickColor = BrickColor.new("Black")
  2660. o6.Position = Vector3.new(-43.0098267, 2.18811393, -23.040699)
  2661. o6.Rotation = Vector3.new(-180, 0, -90)
  2662. o6.Anchored = true
  2663. o6.FormFactor = Enum.FormFactor.Symmetric
  2664. o6.Size = Vector3.new(0.516096354, 0.200000003, 0.218667254)
  2665. o6.CFrame = CFrame.new(-43.0098267, 2.18811393, -23.040699, 0, 1, 0, 1, 0, 0, 0, 0, -1)
  2666. o6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2667. o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2668. o6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2669. o6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2670. o6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2671. o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2672. o6.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2673. o8.Parent = o7
  2674. o8.MeshType = Enum.MeshType.Wedge
  2675. o9.Parent = o1
  2676. o9.Material = Enum.Material.SmoothPlastic
  2677. o9.BrickColor = BrickColor.new("Really black")
  2678. o9.Position = Vector3.new(-42.7666817, 2.05501771, -23.0407009)
  2679. o9.Rotation = Vector3.new(-180, 0, -90)
  2680. o9.Anchored = true
  2681. o9.FormFactor = Enum.FormFactor.Symmetric
  2682. o9.Size = Vector3.new(0.249905437, 0.284763545, 0.218667254)
  2683. o9.CFrame = CFrame.new(-42.7666817, 2.05501771, -23.0407009, 0, 1, 0, 1, 0, 0, 0, 0, -1)
  2684. o9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2685. o9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2686. o9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2687. o9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2688. o9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2689. o9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2690. o9.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2691. function onTouched(part)
  2692. local h = part.Parent:findFirstChild("Humanoid")
  2693. if h~=nil then
  2694. h.Health = h.Health -100
  2695. wait(.01)
  2696. h.Health = h.Health -100
  2697. wait(.01)
  2698.  
  2699. end
  2700. end
  2701. o1.KNF2.Touched:connect(onTouched)
  2702. o1.KNF1.Touched:connect(onTouched)
  2703. end
  2704. if Laser == true then
  2705. o2 = Instance.new("Part")
  2706. o3h = Instance.new("Part")
  2707. o4 = Instance.new("CylinderMesh")
  2708. o5 = Instance.new("Part")
  2709. o2.Parent = o1
  2710. o2.Material = Enum.Material.SmoothPlastic
  2711. o2.BrickColor = BrickColor.new("Smoky grey")
  2712. o2.Position = Vector3.new(-43.500782, 2.25119901, -23.2754421)
  2713. o2.Anchored = true
  2714. o2.Shape = Enum.PartType.Cylinder
  2715. o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2716. o2.CFrame = CFrame.new(-43.500782, 2.25119901, -23.2754421, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2717. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2718. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2719. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2720. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2721. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2722. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2723. o2.Color = Color3.new(0.356863, 0.364706, 0.411765)
  2724. o3h.Name = "LASER"
  2725. o3h.Parent = o1
  2726. o3h.Material = Enum.Material.SmoothPlastic
  2727. o3h.BrickColor = BrickColor.new("Maroon")
  2728. o3h.Position = Vector3.new(-43.500782, 2.25119901, -23.2754421)
  2729. o3h.Rotation = Vector3.new(-0, 0, 90)
  2730. o3h.Anchored = true
  2731. o3h.Shape = Enum.PartType.Cylinder
  2732. o3h.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2733. o3h.CFrame = CFrame.new(-43.500782, 2.25119901, -23.2754421, 0, -1, 0, 1, 0, 0, 0, 0, 1)
  2734. o3h.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2735. o3h.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2736. o3h.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2737. o3h.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2738. o3h.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2739. o3h.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2740. o3h.Color = Color3.new(0.458824, 0, 0)
  2741. o4.Parent = o3h
  2742. o4.Offset = Vector3.new(0, -200, 0)
  2743. o4.Scale = Vector3.new(0.075000003, 2000, 0.444000006)
  2744. o5.Parent = o1
  2745. o5.Material = Enum.Material.SmoothPlastic
  2746. o5.BrickColor = BrickColor.new("Really black")
  2747. o5.Position = Vector3.new(-43.8711853, 2.26074958, -23.2754421)
  2748. o5.Anchored = true
  2749. o5.Size = Vector3.new(0.930000186, 0.200000003, 0.200000003)
  2750. o5.CFrame = CFrame.new(-43.8711853, 2.26074958, -23.2754421, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2751. o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2752. o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2753. o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2754. o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2755. o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2756. o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2757. o5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2758. end
  2759. if Drum == true then
  2760. o1.Mag:Destroy()
  2761. AMMA = Instance.new("Part")
  2762. o2 = Instance.new("CylinderMesh")
  2763. AMMA.Name = "Mag"
  2764. AMMA.Parent = o1
  2765. AMMA.BrickColor = BrickColor.new("Dark stone grey")
  2766. AMMA.Position = Vector3.new(-44.7867393, 1.52765965, -23.0326481)
  2767. AMMA.Rotation = Vector3.new(-179.327454, 0.000156550159, -105.36084)
  2768. AMMA.Anchored = true
  2769. AMMA.FormFactor = Enum.FormFactor.Custom
  2770. AMMA.Size = Vector3.new(0.578095257, 0.464761913, 0.714285731)
  2771. 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)
  2772. AMMA.Material = "SmoothPlastic"
  2773. AMMA.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2774. AMMA.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2775. AMMA.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2776. AMMA.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2777. AMMA.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2778. AMMA.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2779. AMMA.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2780. o2.Parent = AMMA
  2781. o1.Ammo.Value = 50
  2782. o1.MaxAmmo.Value = 50
  2783. o1.StoredAmmo.Value = 500
  2784. end
  2785. if Grip == "BIPOD" then
  2786. o2 = Instance.new("Part")
  2787. o3 = Instance.new("CylinderMesh")
  2788. o4 = Instance.new("Part")
  2789. o5 = Instance.new("CylinderMesh")
  2790. o6 = Instance.new("Part")
  2791. o7 = Instance.new("CylinderMesh")
  2792. o8 = Instance.new("Part")
  2793. o9 = Instance.new("CylinderMesh")
  2794. o10 = Instance.new("Part")
  2795. o11 = Instance.new("CylinderMesh")
  2796. o12 = Instance.new("Part")
  2797. o13 = Instance.new("CylinderMesh")
  2798. o2.BrickColor = BrickColor.new("Really black")
  2799. o2.Position = Vector3.new(-43.6581421, 1.260432, -22.7018719)
  2800. o2.Rotation = Vector3.new(-90, 88.374054, 90)
  2801. o2.CanCollide = false
  2802. o2.FormFactor = Enum.FormFactor.Custom
  2803. o2.Size = Vector3.new(0.719999969, 0.719999969, 0.719999969)
  2804. o2.CFrame = CFrame.new(-43.6581421, 1.260432, -22.7018719, 0, -0.0283740088, 0.999597371, 0, 0.999597371, 0.028374007, -1, 0, 0)
  2805. o2.BottomSurface = Enum.SurfaceType.Smooth
  2806. o2.TopSurface = Enum.SurfaceType.Smooth
  2807. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2808. o3.Parent = o2
  2809. o3.Scale = Vector3.new(0.357142866, 0.0714285746, 0.178571433)
  2810. o4.Parent = o1
  2811. o4.BrickColor = BrickColor.new("Really black")
  2812. o4.Position = Vector3.new(-43.6703453, 1.69079101, -22.8541527)
  2813. o4.Rotation = Vector3.new(160.007111, 0.55604285, 178.472076)
  2814. o4.CanCollide = false
  2815. o4.FormFactor = Enum.FormFactor.Custom
  2816. o4.Size = Vector3.new(0.719999969, 0.719999969, 0.719999969)
  2817. 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)
  2818. o4.BottomSurface = Enum.SurfaceType.Smooth
  2819. o4.TopSurface = Enum.SurfaceType.Smooth
  2820. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2821. o5.Parent = o4
  2822. o5.Scale = Vector3.new(0.0714285746, 1.2571429, 0.0714285746)
  2823. o6.Parent = o1
  2824. o6.BrickColor = BrickColor.new("Really black")
  2825. o6.Position = Vector3.new(-43.6662483, 1.54586697, -22.8013821)
  2826. o6.Rotation = Vector3.new(160.007111, 0.55604285, 178.472076)
  2827. o6.CanCollide = false
  2828. o6.FormFactor = Enum.FormFactor.Custom
  2829. o6.Size = Vector3.new(0.719999969, 0.719999969, 0.719999969)
  2830. 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)
  2831. o6.BottomSurface = Enum.SurfaceType.Smooth
  2832. o6.TopSurface = Enum.SurfaceType.Smooth
  2833. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2834. o7.Parent = o6
  2835. o7.Scale = Vector3.new(0.0928571373, 0.428571433, 0.0928571373)
  2836. o8.Parent = o1
  2837. o8.BrickColor = BrickColor.new("Really black")
  2838. o8.Position = Vector3.new(-43.6706467, 1.70105505, -23.166748)
  2839. o8.Rotation = Vector3.new(19.9928169, 0.556040883, 1.52791929)
  2840. o8.CanCollide = false
  2841. o8.FormFactor = Enum.FormFactor.Custom
  2842. o8.Size = Vector3.new(0.719999969, 0.719999969, 0.719999969)
  2843. 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)
  2844. o8.BottomSurface = Enum.SurfaceType.Smooth
  2845. o8.TopSurface = Enum.SurfaceType.Smooth
  2846. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2847. o9.Parent = o8
  2848. o9.Scale = Vector3.new(0.0714285746, 1.2571429, 0.0714285746)
  2849. o10.Parent = o1
  2850. o10.BrickColor = BrickColor.new("Really black")
  2851. o10.Position = Vector3.new(-43.6581421, 1.26043296, -23.319025)
  2852. o10.Rotation = Vector3.new(90, -88.374054, 90)
  2853. o10.CanCollide = false
  2854. o10.FormFactor = Enum.FormFactor.Custom
  2855. o10.Size = Vector3.new(0.719999969, 0.719999969, 0.719999969)
  2856. o10.CFrame = CFrame.new(-43.6581421, 1.26043296, -23.319025, 0, -0.0283740088, -0.999597371, 0, 0.999597371, -0.028374007, 1, 0, 0)
  2857. o10.BottomSurface = Enum.SurfaceType.Smooth
  2858. o10.TopSurface = Enum.SurfaceType.Smooth
  2859. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2860. o11.Parent = o10
  2861. o11.Scale = Vector3.new(0.357142866, 0.0714285746, 0.178571433)
  2862. o12.Parent = o1
  2863. o12.BrickColor = BrickColor.new("Really black")
  2864. o12.Position = Vector3.new(-43.6665268, 1.55614102, -23.2195148)
  2865. o12.Rotation = Vector3.new(19.9928169, 0.556040883, 1.52791929)
  2866. o12.CanCollide = false
  2867. o12.FormFactor = Enum.FormFactor.Custom
  2868. o12.Size = Vector3.new(0.719999969, 0.719999969, 0.719999969)
  2869. 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)
  2870. o12.BottomSurface = Enum.SurfaceType.Smooth
  2871. o12.TopSurface = Enum.SurfaceType.Smooth
  2872. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2873. o13.Parent = o12
  2874. o13.Scale = Vector3.new(0.0928571373, 0.428571433, 0.0928571373)
  2875. elseif Grip == "ANGLEGRIP" then
  2876. o2 = Instance.new("Part")
  2877. o3 = Instance.new("Part")
  2878. o4 = Instance.new("Part")
  2879. o5 = Instance.new("Part")
  2880. o6 = Instance.new("Part")
  2881. o7 = Instance.new("Part")
  2882. o8 = Instance.new("Part")
  2883. o9 = Instance.new("Part")
  2884. o10 = Instance.new("Part")
  2885. o11 = Instance.new("Part")
  2886. o12 = Instance.new("SpecialMesh")
  2887. o13 = Instance.new("Part")
  2888. o14 = Instance.new("Part")
  2889. o15 = Instance.new("SpecialMesh")
  2890. o16 = Instance.new("Part")
  2891. o17 = Instance.new("SpecialMesh")
  2892. o18 = Instance.new("Part")
  2893. o19 = Instance.new("Part")
  2894. o20 = Instance.new("Part")
  2895. o21 = Instance.new("SpecialMesh")
  2896. o22 = Instance.new("Part")
  2897. o23 = Instance.new("SpecialMesh")
  2898. o24 = Instance.new("Part")
  2899. o25 = Instance.new("Part")
  2900. o2.Parent = o1
  2901. o2.Material = Enum.Material.SmoothPlastic
  2902. o2.BrickColor = BrickColor.new("Really black")
  2903. o2.Position = Vector3.new(-43.7079277, 2.10686278, -23.0070534)
  2904. o2.Rotation = Vector3.new(0.870935917, -89.8813095, 0.87093389)
  2905. o2.Anchored = true
  2906. o2.CanCollide = false
  2907. o2.FormFactor = Enum.FormFactor.Custom
  2908. o2.Size = Vector3.new(0.156378269, 0.0721745938, 0.228552848)
  2909. 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)
  2910. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2911. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2912. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2913. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2914. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2915. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2916. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2917. o3.Parent = o1
  2918. o3.Material = Enum.Material.SmoothPlastic
  2919. o3.BrickColor = BrickColor.new("Really black")
  2920. o3.Position = Vector3.new(-44.2702217, 1.98938179, -23.0059261)
  2921. o3.Rotation = Vector3.new(90.0916443, 37.2289009, 89.848526)
  2922. o3.Anchored = true
  2923. o3.CanCollide = false
  2924. o3.FormFactor = Enum.FormFactor.Custom
  2925. o3.Size = Vector3.new(0.204494655, 0.0601454861, 0.264640152)
  2926. 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)
  2927. o3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2928. o3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2929. o3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2930. o3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2931. o3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2932. o3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2933. o3.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2934. o4.Parent = o1
  2935. o4.Material = Enum.Material.SmoothPlastic
  2936. o4.BrickColor = BrickColor.new("Really black")
  2937. o4.Position = Vector3.new(-44.1654472, 1.86643887, -23.0061512)
  2938. o4.Rotation = Vector3.new(90.1556473, 52.2288246, 89.803093)
  2939. o4.Anchored = true
  2940. o4.CanCollide = false
  2941. o4.FormFactor = Enum.FormFactor.Custom
  2942. o4.Size = Vector3.new(0.204494655, 0.0601454861, 0.0775876865)
  2943. 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)
  2944. o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2945. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2946. o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2947. o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2948. o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2949. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2950. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2951. o5.Parent = o1
  2952. o5.Material = Enum.Material.SmoothPlastic
  2953. o5.BrickColor = BrickColor.new("Really black")
  2954. o5.Position = Vector3.new(-44.0593262, 2.07438278, -23.0063744)
  2955. o5.Rotation = Vector3.new(90.1205978, 44.9970665, 89.8294449)
  2956. o5.Anchored = true
  2957. o5.CanCollide = false
  2958. o5.FormFactor = Enum.FormFactor.Custom
  2959. o5.Size = Vector3.new(0.204494655, 0.0481163897, 0.0601454861)
  2960. 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)
  2961. o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2962. o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2963. o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2964. o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2965. o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2966. o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2967. o5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2968. o6.Parent = o1
  2969. o6.Material = Enum.Material.SmoothPlastic
  2970. o6.BrickColor = BrickColor.new("Really black")
  2971. o6.Position = Vector3.new(-44.0290871, 2.04886079, -23.006443)
  2972. o6.Rotation = Vector3.new(89.9303665, -30.0025082, 89.8607254)
  2973. o6.Anchored = true
  2974. o6.CanCollide = false
  2975. o6.FormFactor = Enum.FormFactor.Custom
  2976. o6.Size = Vector3.new(0.204494655, 0.0601454861, 0.108261876)
  2977. 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)
  2978. o6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2979. o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2980. o6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2981. o6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2982. o6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2983. o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2984. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2985. o7.Parent = o1
  2986. o7.Material = Enum.Material.SmoothPlastic
  2987. o7.BrickColor = BrickColor.new("Really black")
  2988. o7.Position = Vector3.new(-44.2125015, 2.08517194, -23.0060539)
  2989. o7.Rotation = Vector3.new(-0.843723118, -89.8813095, -0.843721151)
  2990. o7.Anchored = true
  2991. o7.CanCollide = false
  2992. o7.FormFactor = Enum.FormFactor.Custom
  2993. o7.Size = Vector3.new(0.204494655, 0.0481163934, 0.288698345)
  2994. 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)
  2995. o7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2996. o7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2997. o7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2998. o7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2999. o7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3000. o7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3001. o7.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3002. o8.Parent = o1
  3003. o8.Material = Enum.Material.SmoothPlastic
  3004. o8.BrickColor = BrickColor.new("Really black")
  3005. o8.Position = Vector3.new(-43.9994507, 2.02802086, -23.0065079)
  3006. o8.Rotation = Vector3.new(89.7910843, -60.0023575, 89.7587662)
  3007. o8.Anchored = true
  3008. o8.CanCollide = false
  3009. o8.FormFactor = Enum.FormFactor.Custom
  3010. o8.Size = Vector3.new(0.204494655, 0.0601454861, 0.493192971)
  3011. 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)
  3012. o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3013. o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3014. o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3015. o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3016. o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3017. o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3018. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3019. o9.Parent = o1
  3020. o9.Material = Enum.Material.SmoothPlastic
  3021. o9.BrickColor = BrickColor.new("Really black")
  3022. o9.Position = Vector3.new(-43.9869766, 2.09096074, -23.0065212)
  3023. o9.Rotation = Vector3.new(90, -0.00269289524, 89.8793945)
  3024. o9.Anchored = true
  3025. o9.CanCollide = false
  3026. o9.FormFactor = Enum.FormFactor.Custom
  3027. o9.Size = Vector3.new(0.204494655, 0.144349173, 0.0481163859)
  3028. 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)
  3029. o9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3030. o9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3031. o9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3032. o9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3033. o9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3034. o9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3035. o9.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3036. o10.Parent = o1
  3037. o10.Material = Enum.Material.SmoothPlastic
  3038. o10.BrickColor = BrickColor.new("Really black")
  3039. o10.Position = Vector3.new(-44.1809196, 2.12215877, -23.0061283)
  3040. o10.Rotation = Vector3.new(-0.843723118, -89.8813095, -0.843721151)
  3041. o10.Anchored = true
  3042. o10.CanCollide = false
  3043. o10.FormFactor = Enum.FormFactor.Custom
  3044. o10.Size = Vector3.new(0.204494655, 0.0258625615, 0.550331175)
  3045. 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)
  3046. o10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3047. o10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3048. o10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3049. o10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3050. o10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3051. o10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3052. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3053. o11.Parent = o1
  3054. o11.Material = Enum.Material.SmoothPlastic
  3055. o11.BrickColor = BrickColor.new("Really black")
  3056. o11.Position = Vector3.new(-43.9057503, 2.14530373, -23.0066986)
  3057. o11.Rotation = Vector3.new(179.156281, 89.8813095, -179.156281)
  3058. o11.Anchored = true
  3059. o11.CanCollide = false
  3060. o11.FormFactor = Enum.FormFactor.Custom
  3061. o11.Size = Vector3.new(0.204494655, 0.0721745864, 0.132320076)
  3062. 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)
  3063. o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3064. o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3065. o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3066. o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3067. o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3068. o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3069. o11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3070. o12.Parent = o11
  3071. o12.MeshType = Enum.MeshType.Wedge
  3072. o13.Parent = o1
  3073. o13.Material = Enum.Material.SmoothPlastic
  3074. o13.BrickColor = BrickColor.new("Really black")
  3075. o13.Position = Vector3.new(-43.6952477, 2.15130782, -23.0071468)
  3076. o13.Rotation = Vector3.new(-0.843723118, -89.8813095, -0.843721151)
  3077. o13.Anchored = true
  3078. o13.CanCollide = false
  3079. o13.FormFactor = Enum.FormFactor.Custom
  3080. o13.Size = Vector3.new(0.204494655, 0.0601454861, 0.288698316)
  3081. 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)
  3082. o13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3083. o13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3084. o13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3085. o13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3086. o13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3087. o13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3088. o13.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3089. o14.Parent = o1
  3090. o14.Material = Enum.Material.SmoothPlastic
  3091. o14.BrickColor = BrickColor.new("Really black")
  3092. o14.Position = Vector3.new(-43.6110344, 2.10920095, -23.0073242)
  3093. o14.Rotation = Vector3.new(179.156281, 89.8813095, 0.843721151)
  3094. o14.Anchored = true
  3095. o14.CanCollide = false
  3096. o14.FormFactor = Enum.FormFactor.Custom
  3097. o14.Size = Vector3.new(0.204494655, 0.024058193, 0.024058193)
  3098. 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)
  3099. o14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3100. o14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3101. o14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3102. o14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3103. o14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3104. o14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3105. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3106. o15.Parent = o14
  3107. o15.MeshType = Enum.MeshType.Wedge
  3108. o16.Parent = o1
  3109. o16.Material = Enum.Material.SmoothPlastic
  3110. o16.BrickColor = BrickColor.new("Really black")
  3111. o16.Position = Vector3.new(-43.5930023, 2.05506992, -23.0073662)
  3112. o16.Rotation = Vector3.new(179.156281, 89.8813095, 0.843721151)
  3113. o16.Anchored = true
  3114. o16.CanCollide = false
  3115. o16.FormFactor = Enum.FormFactor.Custom
  3116. o16.Size = Vector3.new(0.204494655, 0.132320076, 0.0360872932)
  3117. 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)
  3118. o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3119. o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3120. o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3121. o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3122. o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3123. o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3124. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3125. o17.Parent = o16
  3126. o17.MeshType = Enum.MeshType.Wedge
  3127. o18.Parent = o1
  3128. o18.Material = Enum.Material.SmoothPlastic
  3129. o18.BrickColor = BrickColor.new("Really black")
  3130. o18.Position = Vector3.new(-43.5508919, 2.05506778, -23.0074501)
  3131. o18.Rotation = Vector3.new(-90, 0.00269289524, -89.8793945)
  3132. o18.Anchored = true
  3133. o18.CanCollide = false
  3134. o18.FormFactor = Enum.FormFactor.Custom
  3135. o18.Size = Vector3.new(0.204494655, 0.0481163934, 0.132320076)
  3136. 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)
  3137. o18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3138. o18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3139. o18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3140. o18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3141. o18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3142. o18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3143. o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3144. o19.Parent = o1
  3145. o19.Material = Enum.Material.SmoothPlastic
  3146. o19.BrickColor = BrickColor.new("Really black")
  3147. o19.Position = Vector3.new(-43.5328445, 2.13926983, -23.0074863)
  3148. o19.Rotation = Vector3.new(-0.843723118, -89.8813095, -0.843721151)
  3149. o19.Anchored = true
  3150. o19.CanCollide = false
  3151. o19.FormFactor = Enum.FormFactor.Custom
  3152. o19.Size = Vector3.new(0.204494655, 0.0360872932, 0.0360872857)
  3153. 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)
  3154. o19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3155. o19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3156. o19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3157. o19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3158. o19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3159. o19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3160. o19.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3161. o20.Parent = o1
  3162. o20.Material = Enum.Material.SmoothPlastic
  3163. o20.BrickColor = BrickColor.new("Really black")
  3164. o20.Position = Vector3.new(-43.5208168, 2.05506587, -23.0075073)
  3165. o20.Rotation = Vector3.new(-90, 0.00269289524, -89.8793945)
  3166. o20.Anchored = true
  3167. o20.CanCollide = false
  3168. o20.FormFactor = Enum.FormFactor.Custom
  3169. o20.Size = Vector3.new(0.204494655, 0.0120290974, 0.132320076)
  3170. 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)
  3171. o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3172. o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3173. o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3174. o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3175. o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3176. o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3177. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3178. o21.Parent = o20
  3179. o21.MeshType = Enum.MeshType.Wedge
  3180. o22.Parent = o1
  3181. o22.Material = Enum.Material.SmoothPlastic
  3182. o22.BrickColor = BrickColor.new("Really black")
  3183. o22.Position = Vector3.new(-43.5328407, 2.16934395, -23.0074863)
  3184. o22.Rotation = Vector3.new(-0.843723118, -89.8813095, -0.843721151)
  3185. o22.Anchored = true
  3186. o22.CanCollide = false
  3187. o22.FormFactor = Enum.FormFactor.Custom
  3188. o22.Size = Vector3.new(0.204494655, 0.0240581967, 0.0360872857)
  3189. 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)
  3190. o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3191. o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3192. o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3193. o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3194. o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3195. o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3196. o22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3197. o23.Parent = o22
  3198. o23.MeshType = Enum.MeshType.Wedge
  3199. o24.Parent = o1
  3200. o24.Material = Enum.Material.SmoothPlastic
  3201. o24.BrickColor = BrickColor.new("Really black")
  3202. o24.Position = Vector3.new(-43.9694099, 1.99636579, -23.0065041)
  3203. o24.Rotation = Vector3.new(89.7911301, -59.9968758, 89.758812)
  3204. o24.Anchored = true
  3205. o24.CanCollide = false
  3206. o24.FormFactor = Enum.FormFactor.Custom
  3207. o24.Size = Vector3.new(0.156378269, 0.0721745938, 0.470939159)
  3208. 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)
  3209. o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3210. o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3211. o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3212. o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3213. o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3214. o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3215. o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3216. o25.Parent = o1
  3217. o25.Material = Enum.Material.SmoothPlastic
  3218. o25.BrickColor = BrickColor.new("Really black")
  3219. o25.Position = Vector3.new(-44.3612099, 2.10910392, -23.0057392)
  3220. o25.Rotation = Vector3.new(90.0916443, 37.2289009, 89.848526)
  3221. o25.Anchored = true
  3222. o25.CanCollide = false
  3223. o25.FormFactor = Enum.FormFactor.Custom
  3224. o25.Size = Vector3.new(0.204494596, 0.0601454675, 0.0601454675)
  3225. 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)
  3226. o25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3227. o25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3228. o25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3229. o25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3230. o25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3231. o25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3232. o25.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3233. elseif Grip == "VERTGRIP" then
  3234. o2 = Instance.new("Part")
  3235. o3 = Instance.new("CylinderMesh")
  3236. o4 = Instance.new("Part")
  3237. o5 = Instance.new("CylinderMesh")
  3238. o2.Parent = o1
  3239. o2.Material = Enum.Material.SmoothPlastic
  3240. o2.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3241. o2.Position = Vector3.new(-43.8131485, 1.94014311, -23.021431)
  3242. o2.Anchored = true
  3243. o2.FormFactor = Enum.FormFactor.Symmetric
  3244. o2.Size = Vector3.new(1, 1, 1)
  3245. o2.CFrame = CFrame.new(-43.8131485, 1.94014311, -23.021431, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3246. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3247. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3248. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3249. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3250. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3251. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3252. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3253. o3.Parent = o2
  3254. o3.Scale = Vector3.new(0.181818187, 0.636363626, 0.227272734)
  3255. o4.Parent = o1
  3256. o4.Material = Enum.Material.SmoothPlastic
  3257. o4.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3258. o4.Position = Vector3.new(-43.8131485, 1.61286783, -23.021431)
  3259. o4.Anchored = true
  3260. o4.FormFactor = Enum.FormFactor.Symmetric
  3261. o4.Size = Vector3.new(1, 1, 1)
  3262. o4.CFrame = CFrame.new(-43.8131485, 1.61286783, -23.021431, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3263. o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3264. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3265. o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3266. o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3267. o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3268. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3269. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3270. o5.Parent = o4
  3271. o5.Scale = Vector3.new(0.272727281, 0.0909090936, 0.227272734)
  3272. else
  3273. end
  3274. if FlashLight == true then
  3275. o2 = Instance.new("Part")
  3276. o3 = Instance.new("SpotLight")
  3277. o4 = Instance.new("Part")
  3278. o2.Name = "LIGHT"
  3279. o2.Parent = o1
  3280. o2.Material = Enum.Material.SmoothPlastic
  3281. o2.BrickColor = BrickColor.new("Deep orange")
  3282. o2.Position = Vector3.new(-43.500782, 2.23753619, -22.7379551)
  3283. o2.Shape = Enum.PartType.Cylinder
  3284. o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3285. o2.CFrame = CFrame.new(-43.500782, 2.23753619, -22.7379551, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3286. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3287. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3288. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3289. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3290. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3291. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3292. o2.Color = Color3.new(1, 0.686275, 0)
  3293. o3.Name = "LIGHT"
  3294. o3.Brightness = 3
  3295. o3.Parent = o2
  3296. o3.Face = Enum.NormalId.Right
  3297. o4.Parent = o1
  3298. o4.Material = Enum.Material.SmoothPlastic
  3299. o4.BrickColor = BrickColor.new("Really black")
  3300. o4.Position = Vector3.new(-43.8711853, 2.24708676, -22.7379551)
  3301. o4.Size = Vector3.new(0.930000186, 0.200000003, 0.200000003)
  3302. o4.CFrame = CFrame.new(-43.8711853, 2.24708676, -22.7379551, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3303. o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3304. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3305. o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3306. o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3307. o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3308. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3309. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3310.  
  3311. end
  3312. if Sight == "HOLOSIGHT" then
  3313. o2 = Instance.new("Part")
  3314. o3 = Instance.new("BlockMesh")
  3315. o4 = Instance.new("Part")
  3316. o5 = Instance.new("SpecialMesh")
  3317. o6 = Instance.new("Part")
  3318. o7 = Instance.new("BlockMesh")
  3319. o8 = Instance.new("Part")
  3320. o9 = Instance.new("SpecialMesh")
  3321. o10 = Instance.new("Part")
  3322. o11 = Instance.new("BlockMesh")
  3323. o12 = Instance.new("Part")
  3324. o13 = Instance.new("Decal")
  3325. o14 = Instance.new("BlockMesh")
  3326. o15 = Instance.new("Part")
  3327. o16 = Instance.new("BlockMesh")
  3328. o17 = Instance.new("Part")
  3329. o18 = Instance.new("SpecialMesh")
  3330. o19 = Instance.new("Part")
  3331. o20 = Instance.new("BlockMesh")
  3332. o21 = Instance.new("Part")
  3333. o22 = Instance.new("SpecialMesh")
  3334. o23 = Instance.new("Part")
  3335. o24 = Instance.new("SpecialMesh")
  3336. o25 = Instance.new("Part")
  3337. o26 = Instance.new("SpecialMesh")
  3338. o27 = Instance.new("Part")
  3339. o28 = Instance.new("SpecialMesh")
  3340. o29 = Instance.new("Part")
  3341. o30 = Instance.new("BlockMesh")
  3342. o31 = Instance.new("Part")
  3343. o32 = Instance.new("BlockMesh")
  3344. o33 = Instance.new("Part")
  3345. o34 = Instance.new("SpecialMesh")
  3346. o35 = Instance.new("Part")
  3347. o36 = Instance.new("CylinderMesh")
  3348. o37 = Instance.new("Part")
  3349. o38 = Instance.new("Decal")
  3350. o39 = Instance.new("CylinderMesh")
  3351. o40 = Instance.new("Part")
  3352. o41 = Instance.new("BlockMesh")
  3353. o42 = Instance.new("Part")
  3354. o43 = Instance.new("SpecialMesh")
  3355. o44 = Instance.new("Part")
  3356. o45 = Instance.new("SpecialMesh")
  3357. o46 = Instance.new("Part")
  3358. o47 = Instance.new("Decal")
  3359. o48 = Instance.new("BlockMesh")
  3360. o49 = Instance.new("Part")
  3361. o50 = Instance.new("SpecialMesh")
  3362. o51 = Instance.new("Part")
  3363. o52 = Instance.new("BlockMesh")
  3364. o53 = Instance.new("Part")
  3365. o54 = Instance.new("SpecialMesh")
  3366. o55 = Instance.new("Part")
  3367. o56 = Instance.new("BlockMesh")
  3368. o57 = Instance.new("Part")
  3369. o58 = Instance.new("SpecialMesh")
  3370. o59 = Instance.new("Part")
  3371. o60 = Instance.new("BlockMesh")
  3372. o61 = Instance.new("Part")
  3373. o62 = Instance.new("Decal")
  3374. o63 = Instance.new("BlockMesh")
  3375. o64 = Instance.new("Part")
  3376. o65 = Instance.new("BlockMesh")
  3377. o66 = Instance.new("Part")
  3378. o67 = Instance.new("BlockMesh")
  3379. o68 = Instance.new("Part")
  3380. o69 = Instance.new("BlockMesh")
  3381. o70 = Instance.new("Part")
  3382. o71 = Instance.new("SpecialMesh")
  3383. o72 = Instance.new("Part")
  3384. o73 = Instance.new("SpecialMesh")
  3385. o74 = Instance.new("Part")
  3386. o75 = Instance.new("Decal")
  3387. o76 = Instance.new("BlockMesh")
  3388. o77 = Instance.new("Part")
  3389. o78 = Instance.new("BlockMesh")
  3390. o79 = Instance.new("Part")
  3391. o80 = Instance.new("BlockMesh")
  3392. o81 = Instance.new("Part")
  3393. o82 = Instance.new("BlockMesh")
  3394. o83 = Instance.new("Part")
  3395. o84 = Instance.new("SpecialMesh")
  3396. o85 = Instance.new("Part")
  3397. o86 = Instance.new("SpecialMesh")
  3398. o87 = Instance.new("Part")
  3399. o88 = Instance.new("BlockMesh")
  3400. o89 = Instance.new("Part")
  3401. o90 = Instance.new("BlockMesh")
  3402. o91 = Instance.new("Part")
  3403. o92 = Instance.new("SpecialMesh")
  3404. o93 = Instance.new("Part")
  3405. o94 = Instance.new("BlockMesh")
  3406. o95 = Instance.new("Part")
  3407. o96 = Instance.new("SpecialMesh")
  3408. o97 = Instance.new("Part")
  3409. o98 = Instance.new("BlockMesh")
  3410. o99 = Instance.new("Part")
  3411. o100 = Instance.new("CylinderMesh")
  3412. o101 = Instance.new("Part")
  3413. o102 = Instance.new("CylinderMesh")
  3414. o103 = Instance.new("Part")
  3415. o104 = Instance.new("BlockMesh")
  3416. o105 = Instance.new("Part")
  3417. o106 = Instance.new("BlockMesh")
  3418. o107 = Instance.new("Part")
  3419. o108 = Instance.new("SpecialMesh")
  3420. o109 = Instance.new("Part")
  3421. o110 = Instance.new("BlockMesh")
  3422. o111 = Instance.new("Part")
  3423. o112 = Instance.new("SpecialMesh")
  3424. o113 = Instance.new("Part")
  3425. o114 = Instance.new("SpecialMesh")
  3426. o115 = Instance.new("Part")
  3427. o116 = Instance.new("SpecialMesh")
  3428. o117 = Instance.new("Part")
  3429. o118 = Instance.new("BlockMesh")
  3430. o119 = Instance.new("Part")
  3431. o120 = Instance.new("Decal")
  3432. o121 = Instance.new("BlockMesh")
  3433. o122 = Instance.new("Part")
  3434. o123 = Instance.new("BlockMesh")
  3435. o124 = Instance.new("Part")
  3436. o125 = Instance.new("SpecialMesh")
  3437. o126 = Instance.new("Part")
  3438. o127 = Instance.new("SpecialMesh")
  3439. o128 = Instance.new("Part")
  3440. o129 = Instance.new("SpecialMesh")
  3441. o130 = Instance.new("Part")
  3442. o131 = Instance.new("SpecialMesh")
  3443. o132 = Instance.new("Part")
  3444. o133 = Instance.new("SpecialMesh")
  3445. o134 = Instance.new("Part")
  3446. o135 = Instance.new("SpecialMesh")
  3447. o136 = Instance.new("Part")
  3448. o137 = Instance.new("BlockMesh")
  3449. o138 = Instance.new("Part")
  3450. o139 = Instance.new("SpecialMesh")
  3451. o140 = Instance.new("Part")
  3452. o141 = Instance.new("SpecialMesh")
  3453. o142 = Instance.new("Part")
  3454. o143 = Instance.new("SpecialMesh")
  3455. o144 = Instance.new("Part")
  3456. o145 = Instance.new("SpecialMesh")
  3457. o146 = Instance.new("Part")
  3458. o147 = Instance.new("BlockMesh")
  3459. o2.Parent = o1
  3460. o2.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3461. o2.Position = Vector3.new(-45.2369041, 2.81570745, -23.0101967)
  3462. o2.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3463. o2.Anchored = true
  3464. o2.FormFactor = Enum.FormFactor.Custom
  3465. o2.Size = Vector3.new(0.200000003, 0.200000003, 0.223999992)
  3466. 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)
  3467. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3468. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3469. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3470. o3.Parent = o2
  3471. o3.Scale = Vector3.new(0.879999995, 0.0960000008, 1)
  3472. o4.Parent = o1
  3473. o4.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3474. o4.Position = Vector3.new(-45.3379478, 2.67370844, -23.1152229)
  3475. o4.Rotation = Vector3.new(-0.00200535241, 90, 0)
  3476. o4.Anchored = true
  3477. o4.FormFactor = Enum.FormFactor.Custom
  3478. o4.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3479. 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)
  3480. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3481. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3482. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3483. o5.Parent = o4
  3484. o5.Scale = Vector3.new(0.0800000057, 0.400000095, 0.159999952)
  3485. o5.MeshType = Enum.MeshType.Wedge
  3486. o6.Parent = o1
  3487. o6.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3488. o6.Position = Vector3.new(-45.242939, 2.70176029, -22.9381714)
  3489. o6.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3490. o6.Anchored = true
  3491. o6.FormFactor = Enum.FormFactor.Custom
  3492. o6.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3493. 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)
  3494. o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3495. o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3496. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3497. o7.Parent = o6
  3498. o7.Scale = Vector3.new(0.640000045, 0.672000051, 0.0800000057)
  3499. o8.Parent = o1
  3500. o8.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3501. o8.Position = Vector3.new(-45.337944, 2.8157053, -23.0102005)
  3502. o8.Rotation = Vector3.new(-0.00200535241, 90, 0)
  3503. o8.Anchored = true
  3504. o8.FormFactor = Enum.FormFactor.Custom
  3505. o8.Size = Vector3.new(0.223999962, 0.200000003, 0.200000003)
  3506. 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)
  3507. o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3508. o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3509. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3510. o9.Parent = o8
  3511. o9.Scale = Vector3.new(1, 0.0960001424, 0.159999952)
  3512. o9.MeshType = Enum.MeshType.Wedge
  3513. o10.Parent = o1
  3514. o10.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3515. o10.Position = Vector3.new(-45.2519188, 2.77775049, -23.0121861)
  3516. o10.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3517. o10.Anchored = true
  3518. o10.FormFactor = Enum.FormFactor.Custom
  3519. o10.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3520. 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)
  3521. o10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3522. o10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3523. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3524. o11.Parent = o10
  3525. o11.Scale = Vector3.new(0.719999969, 0.0960000008, 0.799999952)
  3526. o12.Parent = o1
  3527. o12.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3528. o12.Position = Vector3.new(-45.3429451, 2.57272339, -22.9691792)
  3529. o12.Rotation = Vector3.new(89.9979935, 0.00131786719, 89.9981689)
  3530. o12.Anchored = true
  3531. o12.FormFactor = Enum.FormFactor.Custom
  3532. o12.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3533. 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)
  3534. o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3535. o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3536. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3537. o13.Parent = o12
  3538. o13.Texture = "http://www.roblox.com/asset/?id=46738391"
  3539. o13.Face = Enum.NormalId.Top
  3540. o14.Parent = o12
  3541. o14.Scale = Vector3.new(0.239999995, 0.0400000028, 0.160000011)
  3542. o15.Parent = o1
  3543. o15.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3544. o15.Position = Vector3.new(-45.2499352, 2.79672241, -22.9061947)
  3545. o15.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3546. o15.Anchored = true
  3547. o15.FormFactor = Enum.FormFactor.Custom
  3548. o15.Size = Vector3.new(0.207999989, 0.200000003, 0.200000003)
  3549. 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)
  3550. o15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3551. o15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3552. o15.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3553. o16.Parent = o15
  3554. o16.Scale = Vector3.new(1, 0.0960000008, 0.0800000057)
  3555. o17.Parent = o1
  3556. o17.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3557. o17.Position = Vector3.new(-45.3389473, 2.67370629, -22.9061985)
  3558. o17.Rotation = Vector3.new(-0.00200535241, 90, 0)
  3559. o17.Anchored = true
  3560. o17.FormFactor = Enum.FormFactor.Custom
  3561. o17.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3562. 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)
  3563. o17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3564. o17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3565. o17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3566. o18.Parent = o17
  3567. o18.Scale = Vector3.new(0.0800000057, 0.400000095, 0.159999952)
  3568. o18.MeshType = Enum.MeshType.Wedge
  3569. o19.Parent = o1
  3570. o19.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3571. o19.Position = Vector3.new(-45.2439537, 2.7007184, -23.0821514)
  3572. o19.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3573. o19.Anchored = true
  3574. o19.FormFactor = Enum.FormFactor.Custom
  3575. o19.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3576. 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)
  3577. o19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3578. o19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3579. o19.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3580. o20.Parent = o19
  3581. o20.Scale = Vector3.new(0.640000045, 0.672000051, 0.0800000057)
  3582. o21.Parent = o1
  3583. o21.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3584. o21.Position = Vector3.new(-45.0039558, 2.60572433, -23.1142025)
  3585. o21.Rotation = Vector3.new(-0.00200535241, -90, 0)
  3586. o21.Anchored = true
  3587. o21.FormFactor = Enum.FormFactor.Custom
  3588. o21.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3589. 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)
  3590. o21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3591. o21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3592. o21.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3593. o22.Parent = o21
  3594. o22.Scale = Vector3.new(0.0800000057, 0.671999872, 0.639999866)
  3595. o22.MeshType = Enum.MeshType.Wedge
  3596. o23.Parent = o1
  3597. o23.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3598. o23.Position = Vector3.new(-45.1629601, 2.71073437, -23.0841694)
  3599. o23.Rotation = Vector3.new(-0.00200535241, -90, 0)
  3600. o23.Anchored = true
  3601. o23.FormFactor = Enum.FormFactor.Custom
  3602. o23.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3603. 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)
  3604. o23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3605. o23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3606. o23.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3607. o24.Parent = o23
  3608. o24.Scale = Vector3.new(0.0800000057, 0.768000007, 0.159999952)
  3609. o24.MeshType = Enum.MeshType.Wedge
  3610. o25.Parent = o1
  3611. o25.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3612. o25.Position = Vector3.new(-45.1219406, 2.80674434, -23.0111694)
  3613. o25.Rotation = Vector3.new(-0.00200535241, -90, 0)
  3614. o25.Anchored = true
  3615. o25.FormFactor = Enum.FormFactor.Custom
  3616. o25.Size = Vector3.new(0.223999962, 0.200000003, 0.200000003)
  3617. 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)
  3618. o25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3619. o25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3620. o25.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3621. o26.Parent = o25
  3622. o26.Scale = Vector3.new(1, 0.192000151, 0.239999965)
  3623. o26.MeshType = Enum.MeshType.Wedge
  3624. o27.Parent = o1
  3625. o27.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3626. o27.Position = Vector3.new(-45.3229294, 2.67670345, -23.0821533)
  3627. o27.Rotation = Vector3.new(-0.00200535241, 90, 0)
  3628. o27.Anchored = true
  3629. o27.FormFactor = Enum.FormFactor.Custom
  3630. o27.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3631. 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)
  3632. o27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3633. o27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3634. o27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3635. o28.Parent = o27
  3636. o28.Scale = Vector3.new(0.0800000057, 0.256000072, 0.159999952)
  3637. o28.MeshType = Enum.MeshType.Wedge
  3638. o29.Parent = o1
  3639. o29.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3640. o29.Position = Vector3.new(-45.242939, 2.59570932, -22.9381714)
  3641. o29.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3642. o29.Anchored = true
  3643. o29.FormFactor = Enum.FormFactor.Custom
  3644. o29.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3645. 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)
  3646. o29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3647. o29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3648. o29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3649. o30.Parent = o29
  3650. o30.Scale = Vector3.new(0.959999979, 0.384000003, 0.0800000057)
  3651. o31.Parent = o1
  3652. o31.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3653. o31.Position = Vector3.new(-45.2099571, 2.66275644, -22.9071884)
  3654. o31.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3655. o31.Anchored = true
  3656. o31.FormFactor = Enum.FormFactor.Custom
  3657. o31.Size = Vector3.new(0.223999992, 0.249600008, 0.200000003)
  3658. 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)
  3659. o31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3660. o31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3661. o31.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3662. o32.Parent = o31
  3663. o32.Scale = Vector3.new(1, 1, 0.0800000057)
  3664. o33.Parent = o1
  3665. o33.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3666. o33.Position = Vector3.new(-45.3139572, 2.73575234, -22.9401321)
  3667. o33.Rotation = Vector3.new(179.998001, 90, 0)
  3668. o33.Anchored = true
  3669. o33.FormFactor = Enum.FormFactor.Custom
  3670. o33.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3671. 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)
  3672. o33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3673. o33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3674. o33.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3675. o34.Parent = o33
  3676. o34.Scale = Vector3.new(0.0800000057, 0.320000082, 0.0799999312)
  3677. o34.MeshType = Enum.MeshType.Wedge
  3678. o35.Parent = o1
  3679. o35.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3680. o35.Position = Vector3.new(-45.2509651, 2.59371829, -22.8981628)
  3681. o35.Rotation = Vector3.new(-90.0020065, -0.00131786917, -179.998108)
  3682. o35.Anchored = true
  3683. o35.FormFactor = Enum.FormFactor.Custom
  3684. o35.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3685. 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)
  3686. o35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3687. o35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3688. o35.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3689. o36.Parent = o35
  3690. o36.Scale = Vector3.new(0.239999995, 0.0400000028, 0.239999995)
  3691. o37.Parent = o1
  3692. o37.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3693. o37.Position = Vector3.new(-45.3419685, 2.61172843, -23.0101986)
  3694. o37.Rotation = Vector3.new(-90.0020065, -0.00131786719, 90.0018311)
  3695. o37.Anchored = true
  3696. o37.FormFactor = Enum.FormFactor.Custom
  3697. o37.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3698. 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)
  3699. o37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3700. o37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3701. o37.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3702. o38.Parent = o37
  3703. o38.Texture = "http://www.roblox.com/asset/?id=46738405"
  3704. o38.Face = Enum.NormalId.Top
  3705. o39.Parent = o37
  3706. o39.Scale = Vector3.new(0.192000002, 0.0400000028, 0.160000011)
  3707. o40.Parent = o1
  3708. o40.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3709. o40.Position = Vector3.new(-45.31493, 2.59570527, -23.0101986)
  3710. o40.Rotation = Vector3.new(-0.00200535241, -90, 0)
  3711. o40.Anchored = true
  3712. o40.FormFactor = Enum.FormFactor.Custom
  3713. o40.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3714. 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)
  3715. o40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3716. o40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3717. o40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3718. o41.Parent = o40
  3719. o41.Scale = Vector3.new(0.640000045, 0.384000003, 0.239999995)
  3720. o42.Parent = o1
  3721. o42.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3722. o42.Position = Vector3.new(-45.313961, 2.7357533, -23.0831966)
  3723. o42.Rotation = Vector3.new(179.998001, 90, 0)
  3724. o42.Anchored = true
  3725. o42.FormFactor = Enum.FormFactor.Custom
  3726. o42.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3727. 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)
  3728. o42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3729. o42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3730. o42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3731. o43.Parent = o42
  3732. o43.Scale = Vector3.new(0.0800000057, 0.320000082, 0.0799999312)
  3733. o43.MeshType = Enum.MeshType.Wedge
  3734. o44.Parent = o1
  3735. o44.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3736. o44.Position = Vector3.new(-45.0839424, 2.7297163, -23.1152077)
  3737. o44.Rotation = Vector3.new(-0.00200535241, -90, 0)
  3738. o44.Anchored = true
  3739. o44.FormFactor = Enum.FormFactor.Custom
  3740. o44.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3741. 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)
  3742. o44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3743. o44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3744. o44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3745. o45.Parent = o44
  3746. o45.Scale = Vector3.new(0.0800000057, 0.575999975, 0.159999952)
  3747. o45.MeshType = Enum.MeshType.Wedge
  3748. o46.Parent = o1
  3749. o46.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3750. o46.Position = Vector3.new(-45.3429413, 2.57272434, -23.0491276)
  3751. o46.Rotation = Vector3.new(-90.0020065, -0.00131786719, 90.0018311)
  3752. o46.Anchored = true
  3753. o46.FormFactor = Enum.FormFactor.Custom
  3754. o46.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3755. 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)
  3756. o46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3757. o46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3758. o46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3759. o47.Parent = o46
  3760. o47.Texture = "http://www.roblox.com/asset/?id=46738391"
  3761. o47.Face = Enum.NormalId.Top
  3762. o48.Parent = o46
  3763. o48.Scale = Vector3.new(0.239999995, 0.0400000028, 0.160000011)
  3764. o49.Parent = o1
  3765. o49.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3766. o49.Position = Vector3.new(-45.3619232, 2.58566928, -23.1142006)
  3767. o49.Rotation = Vector3.new(-0.00200535241, 90, 0)
  3768. o49.Anchored = true
  3769. o49.FormFactor = Enum.FormFactor.Custom
  3770. o49.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3771. 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)
  3772. o49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3773. o49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3774. o49.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3775. o50.Parent = o49
  3776. o50.Scale = Vector3.new(0.0800000057, 0.479999989, 0.0799999312)
  3777. o50.MeshType = Enum.MeshType.Wedge
  3778. o51.Parent = o1
  3779. o51.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3780. o51.Position = Vector3.new(-45.249939, 2.79672432, -23.1142063)
  3781. o51.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3782. o51.Anchored = true
  3783. o51.FormFactor = Enum.FormFactor.Custom
  3784. o51.Size = Vector3.new(0.207999989, 0.200000003, 0.200000003)
  3785. 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)
  3786. o51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3787. o51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3788. o51.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3789. o52.Parent = o51
  3790. o52.Scale = Vector3.new(1, 0.0960000008, 0.0800000057)
  3791. o53.Parent = o1
  3792. o53.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3793. o53.Position = Vector3.new(-45.3619232, 2.58566928, -22.9031391)
  3794. o53.Rotation = Vector3.new(-0.00200535241, 90, 0)
  3795. o53.Anchored = true
  3796. o53.FormFactor = Enum.FormFactor.Custom
  3797. o53.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3798. 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)
  3799. o53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3800. o53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3801. o53.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3802. o54.Parent = o53
  3803. o54.Scale = Vector3.new(0.0800000057, 0.479999989, 0.0799999312)
  3804. o54.MeshType = Enum.MeshType.Wedge
  3805. o55.Parent = o1
  3806. o55.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3807. o55.Transparency = 0.80000001192093
  3808. o55.Position = Vector3.new(-45.2039452, 2.7007184, -23.0101948)
  3809. o55.Rotation = Vector3.new(-0.00200535241, -90, 0)
  3810. o55.Anchored = true
  3811. o55.FormFactor = Enum.FormFactor.Custom
  3812. o55.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3813. 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)
  3814. o55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3815. o55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3816. o55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3817. o56.Parent = o55
  3818. o56.Scale = Vector3.new(0.640000045, 0.672000051, 0.0800000057)
  3819. o57.Parent = o1
  3820. o57.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3821. o57.Position = Vector3.new(-45.0019417, 2.6047473, -22.9072094)
  3822. o57.Rotation = Vector3.new(-0.00200535241, -90, 0)
  3823. o57.Anchored = true
  3824. o57.FormFactor = Enum.FormFactor.Custom
  3825. o57.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3826. 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)
  3827. o57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3828. o57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3829. o57.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3830. o58.Parent = o57
  3831. o58.Scale = Vector3.new(0.0800000057, 0.671999872, 0.639999866)
  3832. o58.MeshType = Enum.MeshType.Wedge
  3833. o59.Parent = o1
  3834. o59.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3835. o59.Position = Vector3.new(-45.3379364, 2.58567333, -23.1152058)
  3836. o59.Rotation = Vector3.new(-0.00143243792, 0.00189072778, 0.00131785031)
  3837. o59.Anchored = true
  3838. o59.FormFactor = Enum.FormFactor.Custom
  3839. o59.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3840. 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)
  3841. o59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3842. o59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3843. o59.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3844. o60.Parent = o59
  3845. o60.Scale = Vector3.new(0.160000011, 0.479999989, 0.0800000057)
  3846. o61.Parent = o1
  3847. o61.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3848. o61.Transparency = 1
  3849. o61.Position = Vector3.new(-45.2019577, 2.60175633, -23.125206)
  3850. o61.Rotation = Vector3.new(-90.0020065, -0.00131786917, 0.00189071475)
  3851. o61.Anchored = true
  3852. o61.FormFactor = Enum.FormFactor.Custom
  3853. o61.Size = Vector3.new(0.30399999, 0.200000003, 0.200000003)
  3854. 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)
  3855. o61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3856. o61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3857. o61.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3858. o62.Parent = o61
  3859. o62.Texture = "http://www.roblox.com/asset/?id=46737426"
  3860. o62.Face = Enum.NormalId.Top
  3861. o63.Parent = o61
  3862. o63.Scale = Vector3.new(1, 0.0400000028, 0.160000011)
  3863. o64.Parent = o1
  3864. o64.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3865. o64.Position = Vector3.new(-45.08395, 2.60474443, -22.9062023)
  3866. o64.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3867. o64.Anchored = true
  3868. o64.FormFactor = Enum.FormFactor.Custom
  3869. o64.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3870. 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)
  3871. o64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3872. o64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3873. o64.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3874. o65.Parent = o64
  3875. o65.Scale = Vector3.new(0.160000011, 0.672000051, 0.0800000057)
  3876. o66.Parent = o1
  3877. o66.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3878. o66.Position = Vector3.new(-45.0839386, 2.6047473, -23.1152096)
  3879. o66.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3880. o66.Anchored = true
  3881. o66.FormFactor = Enum.FormFactor.Custom
  3882. o66.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3883. 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)
  3884. o66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3885. o66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3886. o66.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3887. o67.Parent = o66
  3888. o67.Scale = Vector3.new(0.160000011, 0.672000051, 0.0800000057)
  3889. o68.Parent = o1
  3890. o68.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3891. o68.Position = Vector3.new(-45.3389435, 2.58566928, -22.9061947)
  3892. o68.Rotation = Vector3.new(-0.00143243792, 0.00189072778, 0.00131785031)
  3893. o68.Anchored = true
  3894. o68.FormFactor = Enum.FormFactor.Custom
  3895. o68.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3896. 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)
  3897. o68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3898. o68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3899. o68.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3900. o69.Parent = o68
  3901. o69.Scale = Vector3.new(0.160000011, 0.479999989, 0.0800000057)
  3902. o70.Parent = o1
  3903. o70.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3904. o70.Position = Vector3.new(-45.08395, 2.72971439, -22.9061928)
  3905. o70.Rotation = Vector3.new(-0.00200535241, -90, 0)
  3906. o70.Anchored = true
  3907. o70.FormFactor = Enum.FormFactor.Custom
  3908. o70.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3909. 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)
  3910. o70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3911. o70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3912. o70.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3913. o71.Parent = o70
  3914. o71.Scale = Vector3.new(0.0800000057, 0.575999975, 0.159999952)
  3915. o71.MeshType = Enum.MeshType.Wedge
  3916. o72.Parent = o1
  3917. o72.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3918. o72.Position = Vector3.new(-44.9459419, 2.62071228, -23.0111694)
  3919. o72.Rotation = Vector3.new(-0.00200535241, -90, 0)
  3920. o72.Anchored = true
  3921. o72.FormFactor = Enum.FormFactor.Custom
  3922. o72.Size = Vector3.new(0.200000003, 0.200000003, 0.447999984)
  3923. 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)
  3924. o72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3925. o72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3926. o72.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3927. o73.Parent = o72
  3928. o73.Scale = Vector3.new(0.799999833, 0.0959998742, 1)
  3929. o73.MeshType = Enum.MeshType.Wedge
  3930. o74.Parent = o1
  3931. o74.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3932. o74.Transparency = 1
  3933. o74.Position = Vector3.new(-45.1889229, 2.70771027, -23.0111656)
  3934. o74.Rotation = Vector3.new(-0.00200535241, -90, 0)
  3935. o74.Anchored = true
  3936. o74.FormFactor = Enum.FormFactor.Custom
  3937. o74.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3938. 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)
  3939. o74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3940. o74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3941. o74.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3942. o75.Parent = o74
  3943. o75.Texture = "http://www.roblox.com/asset/?id=46737081"
  3944. o75.Face = Enum.NormalId.Back
  3945. o76.Parent = o74
  3946. o76.Scale = Vector3.new(0.320000023, 0.320000023, 0.0400000028)
  3947. o77.Parent = o1
  3948. o77.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3949. o77.Position = Vector3.new(-45.2099571, 2.66275549, -23.1161442)
  3950. o77.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3951. o77.Anchored = true
  3952. o77.FormFactor = Enum.FormFactor.Custom
  3953. o77.Size = Vector3.new(0.223999992, 0.249600008, 0.200000003)
  3954. 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)
  3955. o77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3956. o77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3957. o77.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3958. o78.Parent = o77
  3959. o78.Scale = Vector3.new(1, 1, 0.0800000057)
  3960. o79.Parent = o1
  3961. o79.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3962. o79.Position = Vector3.new(-45.3239632, 2.64374638, -23.0111847)
  3963. o79.Rotation = Vector3.new(-0.00200535241, -90, 0)
  3964. o79.Anchored = true
  3965. o79.FormFactor = Enum.FormFactor.Custom
  3966. o79.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3967. 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)
  3968. o79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3969. o79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3970. o79.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3971. o80.Parent = o79
  3972. o80.Scale = Vector3.new(0.799999952, 0.0960000008, 0.160000011)
  3973. o81.Parent = o1
  3974. o81.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3975. o81.Position = Vector3.new(-45.2439537, 2.59570742, -23.0821571)
  3976. o81.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  3977. o81.Anchored = true
  3978. o81.FormFactor = Enum.FormFactor.Custom
  3979. o81.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3980. 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)
  3981. o81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3982. o81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3983. o81.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3984. o82.Parent = o81
  3985. o82.Scale = Vector3.new(0.959999979, 0.384000003, 0.0800000057)
  3986. o83.Parent = o1
  3987. o83.BrickColor = BrickColor.new(CUSTOMCOLOR)
  3988. o83.Position = Vector3.new(-45.3389511, 2.77475429, -22.9061871)
  3989. o83.Rotation = Vector3.new(179.998001, 90, 0)
  3990. o83.Anchored = true
  3991. o83.FormFactor = Enum.FormFactor.Custom
  3992. o83.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3993. 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)
  3994. o83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3995. o83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3996. o83.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3997. o84.Parent = o83
  3998. o84.Scale = Vector3.new(0.0799997672, 0.12800014, 0.159999952)
  3999. o84.MeshType = Enum.MeshType.Wedge
  4000. o85.Parent = o1
  4001. o85.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4002. o85.Position = Vector3.new(-45.3219528, 2.67871833, -22.939188)
  4003. o85.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4004. o85.Anchored = true
  4005. o85.FormFactor = Enum.FormFactor.Custom
  4006. o85.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4007. 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)
  4008. o85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4009. o85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4010. o85.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4011. o86.Parent = o85
  4012. o86.Scale = Vector3.new(0.0800000057, 0.256000072, 0.159999952)
  4013. o86.MeshType = Enum.MeshType.Wedge
  4014. o87.Parent = o1
  4015. o87.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4016. o87.Position = Vector3.new(-45.2519035, 2.57575631, -23.0121822)
  4017. o87.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4018. o87.Anchored = true
  4019. o87.FormFactor = Enum.FormFactor.Custom
  4020. o87.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4021. 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)
  4022. o87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4023. o87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4024. o87.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4025. o88.Parent = o87
  4026. o88.Scale = Vector3.new(0.640000045, 0.192000002, 0.399999976)
  4027. o89.Parent = o1
  4028. o89.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4029. o89.Transparency = 0.80000001192093
  4030. o89.Position = Vector3.new(-45.297966, 2.70175934, -23.0101871)
  4031. o89.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4032. o89.Anchored = true
  4033. o89.FormFactor = Enum.FormFactor.Custom
  4034. o89.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4035. 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)
  4036. o89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4037. o89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4038. o89.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4039. o90.Parent = o89
  4040. o90.Scale = Vector3.new(0.640000045, 0.672000051, 0.0800000057)
  4041. o91.Parent = o1
  4042. o91.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4043. o91.Position = Vector3.new(-45.1649666, 2.71073341, -22.9381714)
  4044. o91.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4045. o91.Anchored = true
  4046. o91.FormFactor = Enum.FormFactor.Custom
  4047. o91.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4048. 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)
  4049. o91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4050. o91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4051. o91.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4052. o92.Parent = o91
  4053. o92.Scale = Vector3.new(0.0800000057, 0.768000007, 0.159999952)
  4054. o92.MeshType = Enum.MeshType.Wedge
  4055. o93.Parent = o1
  4056. o93.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4057. o93.Position = Vector3.new(-45.1859055, 2.64374733, -23.0102024)
  4058. o93.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4059. o93.Anchored = true
  4060. o93.FormFactor = Enum.FormFactor.Custom
  4061. o93.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4062. 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)
  4063. o93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4064. o93.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4065. o93.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4066. o94.Parent = o93
  4067. o94.Scale = Vector3.new(0.640000045, 0.0960000008, 0.0800000057)
  4068. o95.Parent = o1
  4069. o95.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4070. o95.Position = Vector3.new(-45.3379478, 2.77475429, -23.1151962)
  4071. o95.Rotation = Vector3.new(179.998001, 90, 0)
  4072. o95.Anchored = true
  4073. o95.FormFactor = Enum.FormFactor.Custom
  4074. o95.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4075. 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)
  4076. o95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4077. o95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4078. o95.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4079. o96.Parent = o95
  4080. o96.Scale = Vector3.new(0.0799997672, 0.12800014, 0.159999952)
  4081. o96.MeshType = Enum.MeshType.Wedge
  4082. o97.Parent = o1
  4083. o97.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4084. o97.Position = Vector3.new(-45.1779633, 2.59570837, -23.0111656)
  4085. o97.Rotation = Vector3.new(-0.00200535241, -90, 0)
  4086. o97.Anchored = true
  4087. o97.FormFactor = Enum.FormFactor.Custom
  4088. o97.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4089. 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)
  4090. o97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4091. o97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4092. o97.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4093. o98.Parent = o97
  4094. o98.Scale = Vector3.new(0.640000045, 0.384000003, 0.320000023)
  4095. o99.Parent = o1
  4096. o99.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4097. o99.Position = Vector3.new(-45.1059189, 2.56171727, -22.8961964)
  4098. o99.Rotation = Vector3.new(-90.0020065, -0.00131786917, -179.998108)
  4099. o99.Anchored = true
  4100. o99.FormFactor = Enum.FormFactor.Custom
  4101. o99.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4102. 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)
  4103. o99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4104. o99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4105. o99.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4106. o100.Parent = o99
  4107. o100.Scale = Vector3.new(0.239999995, 0.0400000028, 0.239999995)
  4108. o101.Parent = o1
  4109. o101.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4110. o101.Position = Vector3.new(-45.1629524, 2.55375028, -23.1252136)
  4111. o101.Rotation = Vector3.new(89.9979935, 0.00131786917, 179.998108)
  4112. o101.Anchored = true
  4113. o101.FormFactor = Enum.FormFactor.Custom
  4114. o101.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4115. 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)
  4116. o101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4117. o101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4118. o101.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4119. o102.Parent = o101
  4120. o102.Scale = Vector3.new(0.320000023, 0.0400000028, 0.320000023)
  4121. o103.Parent = o1
  4122. o103.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4123. o103.Position = Vector3.new(-44.9219513, 2.58475542, -23.0111656)
  4124. o103.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  4125. o103.Anchored = true
  4126. o103.FormFactor = Enum.FormFactor.Custom
  4127. o103.Size = Vector3.new(0.447999984, 0.200000003, 0.200000003)
  4128. 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)
  4129. o103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4130. o103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4131. o103.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4132. o104.Parent = o103
  4133. o104.Scale = Vector3.new(1, 0.288000017, 0.799999952)
  4134. o105.Parent = o1
  4135. o105.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4136. o105.Position = Vector3.new(-45.0199165, 2.52772045, -23.0121689)
  4137. o105.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  4138. o105.Anchored = true
  4139. o105.FormFactor = Enum.FormFactor.Custom
  4140. o105.Size = Vector3.new(0.639999986, 0.200000003, 0.200000003)
  4141. 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)
  4142. o105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4143. o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4144. o105.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4145. o106.Parent = o105
  4146. o106.Scale = Vector3.new(1, 0.288000017, 0.799999952)
  4147. o107.Parent = o1
  4148. o107.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4149. o107.Position = Vector3.new(-44.9509392, 2.51874828, -23.0071964)
  4150. o107.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4151. o107.Anchored = true
  4152. o107.CanCollide = false
  4153. o107.FormFactor = Enum.FormFactor.Custom
  4154. o107.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4155. 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)
  4156. o107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4157. o107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4158. o107.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4159. o108.Parent = o107
  4160. o108.Scale = Vector3.new(0.5, 0.099999994, 0.25)
  4161. o108.MeshType = Enum.MeshType.Torso
  4162. o109.Parent = o1
  4163. o109.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4164. o109.Position = Vector3.new(-45.0418892, 2.51572728, -23.0951881)
  4165. o109.Rotation = Vector3.new(-90.0020065, -0.00131786917, 0.00189071475)
  4166. o109.Anchored = true
  4167. o109.FormFactor = Enum.FormFactor.Custom
  4168. o109.Size = Vector3.new(0.624000013, 0.200000003, 0.200000003)
  4169. 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)
  4170. o109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4171. o109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4172. o109.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4173. o110.Parent = o109
  4174. o110.Scale = Vector3.new(1, 0.0400000028, 0.160000011)
  4175. o111.Parent = o1
  4176. o111.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4177. o111.Position = Vector3.new(-45.2519112, 2.51874328, -23.0072002)
  4178. o111.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4179. o111.Anchored = true
  4180. o111.CanCollide = false
  4181. o111.FormFactor = Enum.FormFactor.Custom
  4182. o111.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4183. 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)
  4184. o111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4185. o111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4186. o111.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4187. o112.Parent = o111
  4188. o112.Scale = Vector3.new(0.5, 0.099999994, 0.25)
  4189. o112.MeshType = Enum.MeshType.Torso
  4190. o113.Parent = o1
  4191. o113.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4192. o113.Position = Vector3.new(-44.8509331, 2.51875043, -23.0072041)
  4193. o113.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4194. o113.Anchored = true
  4195. o113.CanCollide = false
  4196. o113.FormFactor = Enum.FormFactor.Custom
  4197. o113.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4198. 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)
  4199. o113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4200. o113.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4201. o113.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4202. o114.Parent = o113
  4203. o114.Scale = Vector3.new(0.5, 0.099999994, 0.25)
  4204. o114.MeshType = Enum.MeshType.Torso
  4205. o115.Parent = o1
  4206. o115.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4207. o115.Position = Vector3.new(-45.0539436, 2.51874828, -23.008131)
  4208. o115.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4209. o115.Anchored = true
  4210. o115.CanCollide = false
  4211. o115.FormFactor = Enum.FormFactor.Custom
  4212. o115.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4213. 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)
  4214. o115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4215. o115.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4216. o115.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4217. o116.Parent = o115
  4218. o116.Scale = Vector3.new(0.5, 0.099999994, 0.25)
  4219. o116.MeshType = Enum.MeshType.Torso
  4220. o117.Parent = o1
  4221. o117.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4222. o117.Position = Vector3.new(-45.1538887, 2.51874328, -22.9062023)
  4223. o117.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  4224. o117.Anchored = true
  4225. o117.FormFactor = Enum.FormFactor.Custom
  4226. o117.Size = Vector3.new(0.432000011, 0.200000003, 0.200000003)
  4227. 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)
  4228. o117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4229. o117.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4230. o117.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4231. o118.Parent = o117
  4232. o118.Scale = Vector3.new(1, 0.192000002, 0.0800000057)
  4233. o119.Parent = o1
  4234. o119.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4235. o119.Transparency = 1
  4236. o119.Position = Vector3.new(-44.8339386, 2.5557704, -23.094183)
  4237. o119.Rotation = Vector3.new(-90.0020065, -0.00131786917, 0.00189071475)
  4238. o119.Anchored = true
  4239. o119.FormFactor = Enum.FormFactor.Custom
  4240. o119.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4241. 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)
  4242. o119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4243. o119.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4244. o119.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4245. o120.Parent = o119
  4246. o120.Texture = "http://www.roblox.com/asset/?id=46738506"
  4247. o120.Face = Enum.NormalId.Top
  4248. o121.Parent = o119
  4249. o121.Scale = Vector3.new(0.879999995, 0.0400000028, 0.239999995)
  4250. o122.Parent = o1
  4251. o122.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4252. o122.Position = Vector3.new(-45.0439224, 2.51572728, -22.9261646)
  4253. o122.Rotation = Vector3.new(-90.0020065, -0.00131786917, -179.998108)
  4254. o122.Anchored = true
  4255. o122.FormFactor = Enum.FormFactor.Custom
  4256. o122.Size = Vector3.new(0.624000013, 0.200000003, 0.200000003)
  4257. 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)
  4258. o122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4259. o122.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4260. o122.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4261. o123.Parent = o122
  4262. o123.Scale = Vector3.new(1, 0.0400000028, 0.160000011)
  4263. o124.Parent = o1
  4264. o124.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4265. o124.Position = Vector3.new(-44.7529488, 2.51875329, -23.0081348)
  4266. o124.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4267. o124.Anchored = true
  4268. o124.CanCollide = false
  4269. o124.FormFactor = Enum.FormFactor.Custom
  4270. o124.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4271. 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)
  4272. o124.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4273. o124.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4274. o124.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4275. o125.Parent = o124
  4276. o125.Scale = Vector3.new(0.5, 0.099999994, 0.25)
  4277. o125.MeshType = Enum.MeshType.Torso
  4278. o126.Parent = o1
  4279. o126.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4280. o126.Position = Vector3.new(-45.1509209, 2.51874232, -23.0071945)
  4281. o126.Rotation = Vector3.new(-0.00200535241, 90, 0)
  4282. o126.Anchored = true
  4283. o126.CanCollide = false
  4284. o126.FormFactor = Enum.FormFactor.Custom
  4285. o126.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4286. 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)
  4287. o126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4288. o126.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4289. o126.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4290. o127.Parent = o126
  4291. o127.Scale = Vector3.new(0.5, 0.099999994, 0.25)
  4292. o127.MeshType = Enum.MeshType.Torso
  4293. o128.Parent = o1
  4294. o128.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4295. o128.Position = Vector3.new(-45.1529388, 2.4967463, -23.0111752)
  4296. o128.Rotation = Vector3.new(-0.00217723963, 90, 0)
  4297. o128.Anchored = true
  4298. o128.FormFactor = Enum.FormFactor.Custom
  4299. o128.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4300. 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)
  4301. o128.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4302. o128.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4303. o128.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4304. o129.Parent = o128
  4305. o129.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4306. o129.MeshType = Enum.MeshType.Torso
  4307. o130.Parent = o1
  4308. o130.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4309. o130.Position = Vector3.new(-45.2179108, 2.49674535, -23.0101929)
  4310. o130.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4311. o130.Anchored = true
  4312. o130.FormFactor = Enum.FormFactor.Custom
  4313. o130.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4314. 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)
  4315. o130.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4316. o130.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4317. o130.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4318. o131.Parent = o130
  4319. o131.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4320. o131.MeshType = Enum.MeshType.Torso
  4321. o132.Parent = o1
  4322. o132.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4323. o132.Position = Vector3.new(-45.2839508, 2.49674535, -23.0101948)
  4324. o132.Rotation = Vector3.new(-0.00154698605, 90, 0)
  4325. o132.Anchored = true
  4326. o132.FormFactor = Enum.FormFactor.Custom
  4327. o132.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4328. 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)
  4329. o132.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4330. o132.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4331. o132.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4332. o133.Parent = o132
  4333. o133.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4334. o133.MeshType = Enum.MeshType.Torso
  4335. o134.Parent = o1
  4336. o134.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4337. o134.Position = Vector3.new(-45.0889397, 2.49674749, -23.0111771)
  4338. o134.Rotation = Vector3.new(-0.00177616917, 90, 0)
  4339. o134.Anchored = true
  4340. o134.FormFactor = Enum.FormFactor.Custom
  4341. o134.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4342. 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)
  4343. o134.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4344. o134.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4345. o134.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4346. o135.Parent = o134
  4347. o135.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4348. o135.MeshType = Enum.MeshType.Torso
  4349. o136.Parent = o1
  4350. o136.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4351. o136.Position = Vector3.new(-45.1538887, 2.51874328, -23.1142063)
  4352. o136.Rotation = Vector3.new(179.998566, -0.00189072778, 179.998688)
  4353. o136.Anchored = true
  4354. o136.FormFactor = Enum.FormFactor.Custom
  4355. o136.Size = Vector3.new(0.432000011, 0.200000003, 0.200000003)
  4356. 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)
  4357. o136.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4358. o136.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4359. o136.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4360. o137.Parent = o136
  4361. o137.Scale = Vector3.new(1, 0.192000002, 0.0800000057)
  4362. o138.Parent = o1
  4363. o138.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4364. o138.Position = Vector3.new(-45.0229073, 2.49675035, -23.0111771)
  4365. o138.Rotation = Vector3.new(-0.00194805651, 90, 0)
  4366. o138.Anchored = true
  4367. o138.FormFactor = Enum.FormFactor.Custom
  4368. o138.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4369. 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)
  4370. o138.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4371. o138.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4372. o138.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4373. o139.Parent = o138
  4374. o139.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4375. o139.MeshType = Enum.MeshType.Torso
  4376. o140.Parent = o1
  4377. o140.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4378. o140.Position = Vector3.new(-44.9549446, 2.49675035, -23.0101929)
  4379. o140.Rotation = Vector3.new(-0.00194805651, 90, 0)
  4380. o140.Anchored = true
  4381. o140.FormFactor = Enum.FormFactor.Custom
  4382. o140.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4383. 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)
  4384. o140.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4385. o140.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4386. o140.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4387. o141.Parent = o140
  4388. o141.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4389. o141.MeshType = Enum.MeshType.Torso
  4390. o142.Parent = o1
  4391. o142.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4392. o142.Position = Vector3.new(-44.8889275, 2.49675131, -23.0101967)
  4393. o142.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4394. o142.Anchored = true
  4395. o142.FormFactor = Enum.FormFactor.Custom
  4396. o142.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4397. 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)
  4398. o142.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4399. o142.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4400. o142.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4401. o143.Parent = o142
  4402. o143.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4403. o143.MeshType = Enum.MeshType.Torso
  4404. o144.Parent = o1
  4405. o144.BrickColor = BrickColor.new(CUSTOMCOLOR)
  4406. o144.Position = Vector3.new(-44.8239632, 2.49675727, -23.0102005)
  4407. o144.Rotation = Vector3.new(18.3667545, 89.9515457, -18.3702984)
  4408. o144.Anchored = true
  4409. o144.FormFactor = Enum.FormFactor.Custom
  4410. o144.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4411. 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)
  4412. o144.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4413. o144.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4414. o144.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4415. o145.Parent = o144
  4416. o145.Scale = Vector3.new(0.65934068, 0.131868139, 0.17582418)
  4417. o145.MeshType = Enum.MeshType.Torso
  4418. o146.Name = "Zoom"
  4419. o146.Parent = o1
  4420. o146.Material = Enum.Material.SmoothPlastic
  4421. o146.Transparency = 1
  4422. o146.Position = Vector3.new(-45.4513054, 2.7256608, -23.0179634)
  4423. o146.Rotation = Vector3.new(-90, -88.876564, -90)
  4424. o146.Anchored = true
  4425. o146.FormFactor = Enum.FormFactor.Custom
  4426. o146.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4427. o146.CFrame = CFrame.new(-45.4513054, 2.7256608, -23.0179634, 0, 0.0196069945, -0.999807775, 0, 0.999807775, 0.0196069926, 1, 0, 0)
  4428. o146.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4429. o146.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4430. o146.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4431. o146.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4432. o146.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4433. o146.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4434. o147.Parent = o146
  4435. o147.Scale = Vector3.new(0.142307684, 0.170769244, 0.284615368)
  4436. ZoomFOV = 70
  4437. elseif Sight == "REFLEX" then
  4438. o2 = Instance.new("Part")
  4439. o3 = Instance.new("CylinderMesh")
  4440. o4 = Instance.new("Part")
  4441. o5 = Instance.new("SpecialMesh")
  4442. o6 = Instance.new("Part")
  4443. o7 = Instance.new("SpecialMesh")
  4444. o8 = Instance.new("Part")
  4445. o9 = Instance.new("SpecialMesh")
  4446. o10 = Instance.new("Part")
  4447. o11 = Instance.new("SpecialMesh")
  4448. o12 = Instance.new("Part")
  4449. o13 = Instance.new("BlockMesh")
  4450. o14 = Instance.new("Part")
  4451. o15 = Instance.new("BlockMesh")
  4452. o16 = Instance.new("Part")
  4453. o17 = Instance.new("SpecialMesh")
  4454. o18 = Instance.new("Part")
  4455. o19 = Instance.new("SpecialMesh")
  4456. o20 = Instance.new("Part")
  4457. o21 = Instance.new("SpecialMesh")
  4458. o22 = Instance.new("Part")
  4459. o23 = Instance.new("BlockMesh")
  4460. o24 = Instance.new("Part")
  4461. o25 = Instance.new("BlockMesh")
  4462. o26 = Instance.new("Part")
  4463. o27 = Instance.new("BlockMesh")
  4464. o28 = Instance.new("Part")
  4465. o29 = Instance.new("SpecialMesh")
  4466. o30 = Instance.new("Part")
  4467. o31 = Instance.new("SpecialMesh")
  4468. o32 = Instance.new("Part")
  4469. o33 = Instance.new("BlockMesh")
  4470. o34 = Instance.new("Part")
  4471. o35 = Instance.new("BlockMesh")
  4472. o36 = Instance.new("Part")
  4473. o37 = Instance.new("SpecialMesh")
  4474. o38 = Instance.new("Part")
  4475. o39 = Instance.new("SpecialMesh")
  4476. o40 = Instance.new("Part")
  4477. o41 = Instance.new("SpecialMesh")
  4478. o42 = Instance.new("Part")
  4479. o43 = Instance.new("BlockMesh")
  4480. o44 = Instance.new("Part")
  4481. o45 = Instance.new("SpecialMesh")
  4482. o46 = Instance.new("Part")
  4483. o47 = Instance.new("SpecialMesh")
  4484. o48 = Instance.new("Part")
  4485. o49 = Instance.new("SpecialMesh")
  4486. o50 = Instance.new("Part")
  4487. o51 = Instance.new("Decal")
  4488. o52 = Instance.new("CylinderMesh")
  4489. o53 = Instance.new("Part")
  4490. o54 = Instance.new("BlockMesh")
  4491. o55 = Instance.new("Part")
  4492. o56 = Instance.new("BlockMesh")
  4493. o57 = Instance.new("Part")
  4494. o58 = Instance.new("BlockMesh")
  4495. o59 = Instance.new("Part")
  4496. o60 = Instance.new("SpecialMesh")
  4497. o61 = Instance.new("Part")
  4498. o62 = Instance.new("SpecialMesh")
  4499. o63 = Instance.new("Part")
  4500. o64 = Instance.new("SpecialMesh")
  4501. o65 = Instance.new("Part")
  4502. o66 = Instance.new("SpecialMesh")
  4503. o67 = Instance.new("Part")
  4504. o68 = Instance.new("CylinderMesh")
  4505. o69 = Instance.new("Part")
  4506. o70 = Instance.new("BlockMesh")
  4507. o2.Parent = o1
  4508. o2.BrickColor = BrickColor.new("Really black")
  4509. o2.Position = Vector3.new(-45.2765083, 2.46846628, -23.0166702)
  4510. o2.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4511. o2.Anchored = true
  4512. o2.FormFactor = Enum.FormFactor.Symmetric
  4513. o2.Size = Vector3.new(1, 1, 1)
  4514. 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)
  4515. o2.BottomSurface = Enum.SurfaceType.Smooth
  4516. o2.TopSurface = Enum.SurfaceType.Smooth
  4517. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4518. o3.Parent = o2
  4519. o3.Offset = Vector3.new(0, 0, 0.0325925909)
  4520. o3.Scale = Vector3.new(0.162962973, 0.0570370369, 0.195555568)
  4521. o4.Parent = o1
  4522. o4.BrickColor = BrickColor.new("Really black")
  4523. o4.Position = Vector3.new(-45.3094978, 2.55647826, -23.0146866)
  4524. o4.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4525. o4.Anchored = true
  4526. o4.FormFactor = Enum.FormFactor.Plate
  4527. o4.Size = Vector3.new(1, 0.400000006, 1)
  4528. 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)
  4529. o4.BottomSurface = Enum.SurfaceType.Smooth
  4530. o4.TopSurface = Enum.SurfaceType.Smooth
  4531. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4532. o5.Parent = o4
  4533. o5.Scale = Vector3.new(0.187407404, 0.0325925909, 0.162962973)
  4534. o5.MeshType = Enum.MeshType.Brick
  4535. o6.Parent = o1
  4536. o6.BrickColor = BrickColor.new("Really black")
  4537. o6.Position = Vector3.new(-45.3095016, 2.57641029, -23.0146942)
  4538. o6.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4539. o6.Anchored = true
  4540. o6.FormFactor = Enum.FormFactor.Plate
  4541. o6.Size = Vector3.new(1, 0.400000006, 1)
  4542. 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)
  4543. o6.BottomSurface = Enum.SurfaceType.Smooth
  4544. o6.TopSurface = Enum.SurfaceType.Smooth
  4545. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4546. o7.Parent = o6
  4547. o7.Scale = Vector3.new(0.187407404, 0.0651851818, 0.162962973)
  4548. o7.MeshType = Enum.MeshType.Torso
  4549. o8.Parent = o1
  4550. o8.BrickColor = BrickColor.new("Really black")
  4551. o8.Position = Vector3.new(-45.3425179, 2.51747727, -23.0166683)
  4552. o8.Rotation = Vector3.new(179.998108, 90, 0)
  4553. o8.Anchored = true
  4554. o8.FormFactor = Enum.FormFactor.Symmetric
  4555. o8.Size = Vector3.new(1, 1, 1)
  4556. 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)
  4557. o8.BottomSurface = Enum.SurfaceType.Smooth
  4558. o8.TopSurface = Enum.SurfaceType.Smooth
  4559. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4560. o9.Parent = o8
  4561. o9.Scale = Vector3.new(0.187407404, 0.0651851818, 0.0977777839)
  4562. o9.MeshType = Enum.MeshType.Wedge
  4563. o10.Parent = o1
  4564. o10.BrickColor = BrickColor.new("Really black")
  4565. o10.Position = Vector3.new(-44.920517, 2.59844327, -23.146698)
  4566. o10.Rotation = Vector3.new(89.9981079, 5.6722822e-008, -0.00171887339)
  4567. o10.Anchored = true
  4568. o10.FormFactor = Enum.FormFactor.Plate
  4569. o10.Size = Vector3.new(1, 0.400000006, 1)
  4570. 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)
  4571. o10.BottomSurface = Enum.SurfaceType.Smooth
  4572. o10.TopSurface = Enum.SurfaceType.Smooth
  4573. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4574. o11.Parent = o10
  4575. o11.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  4576. o11.MeshType = Enum.MeshType.Wedge
  4577. o12.Parent = o1
  4578. o12.BrickColor = BrickColor.new("Really black")
  4579. o12.Position = Vector3.new(-45.0995064, 2.51747632, -23.015686)
  4580. o12.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4581. o12.Anchored = true
  4582. o12.FormFactor = Enum.FormFactor.Symmetric
  4583. o12.Size = Vector3.new(1, 1, 1)
  4584. 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)
  4585. o12.BottomSurface = Enum.SurfaceType.Smooth
  4586. o12.TopSurface = Enum.SurfaceType.Smooth
  4587. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4588. o13.Parent = o12
  4589. o13.Scale = Vector3.new(0.187407404, 0.0651851818, 0.391111135)
  4590. o14.Parent = o1
  4591. o14.BrickColor = BrickColor.new("Really black")
  4592. o14.Position = Vector3.new(-44.920517, 2.79448128, -23.0146942)
  4593. o14.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4594. o14.Anchored = true
  4595. o14.FormFactor = Enum.FormFactor.Symmetric
  4596. o14.Size = Vector3.new(1, 1, 1)
  4597. 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)
  4598. o14.BottomSurface = Enum.SurfaceType.Smooth
  4599. o14.TopSurface = Enum.SurfaceType.Smooth
  4600. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4601. o15.Parent = o14
  4602. o15.Scale = Vector3.new(0.260740727, 0.0325925909, 0.0325925909)
  4603. o16.Parent = o1
  4604. o16.BrickColor = BrickColor.new("Really black")
  4605. o16.Position = Vector3.new(-44.9205208, 2.79448128, -23.1576691)
  4606. o16.Rotation = Vector3.new(89.9981079, 5.6722822e-008, 179.998291)
  4607. o16.Anchored = true
  4608. o16.FormFactor = Enum.FormFactor.Plate
  4609. o16.Size = Vector3.new(1, 0.400000006, 1)
  4610. 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)
  4611. o16.BottomSurface = Enum.SurfaceType.Smooth
  4612. o16.TopSurface = Enum.SurfaceType.Smooth
  4613. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4614. o17.Parent = o16
  4615. o17.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  4616. o17.MeshType = Enum.MeshType.Wedge
  4617. o18.Parent = o1
  4618. o18.BrickColor = BrickColor.new("Really black")
  4619. o18.Position = Vector3.new(-44.9185371, 2.74543738, -22.8476753)
  4620. o18.Rotation = Vector3.new(89.9981079, 5.6722822e-008, -0.00171887339)
  4621. o18.Anchored = true
  4622. o18.FormFactor = Enum.FormFactor.Plate
  4623. o18.Size = Vector3.new(1, 0.400000006, 1)
  4624. 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)
  4625. o18.BottomSurface = Enum.SurfaceType.Smooth
  4626. o18.TopSurface = Enum.SurfaceType.Smooth
  4627. o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4628. o19.Parent = o18
  4629. o19.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0651851818)
  4630. o19.MeshType = Enum.MeshType.Wedge
  4631. o20.Parent = o1
  4632. o20.BrickColor = BrickColor.new("Really black")
  4633. o20.Position = Vector3.new(-44.9195137, 2.72948027, -23.1646042)
  4634. o20.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  4635. o20.Anchored = true
  4636. o20.FormFactor = Enum.FormFactor.Plate
  4637. o20.Size = Vector3.new(1, 0.400000006, 1)
  4638. 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)
  4639. o20.BottomSurface = Enum.SurfaceType.Smooth
  4640. o20.TopSurface = Enum.SurfaceType.Smooth
  4641. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4642. o21.Parent = o20
  4643. o21.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  4644. o21.MeshType = Enum.MeshType.Wedge
  4645. o22.Parent = o1
  4646. o22.BrickColor = BrickColor.new("Really black")
  4647. o22.Position = Vector3.new(-44.9195137, 2.59844542, -22.8646832)
  4648. o22.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  4649. o22.Anchored = true
  4650. o22.FormFactor = Enum.FormFactor.Plate
  4651. o22.Size = Vector3.new(1, 0.400000006, 1)
  4652. 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)
  4653. o22.BottomSurface = Enum.SurfaceType.Smooth
  4654. o22.TopSurface = Enum.SurfaceType.Smooth
  4655. o22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4656. o23.Parent = o22
  4657. o23.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  4658. o24.Parent = o1
  4659. o24.BrickColor = BrickColor.new("Really black")
  4660. o24.Position = Vector3.new(-44.9185371, 2.68046641, -22.8476543)
  4661. o24.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  4662. o24.Anchored = true
  4663. o24.FormFactor = Enum.FormFactor.Plate
  4664. o24.Size = Vector3.new(1, 0.400000006, 1)
  4665. 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)
  4666. o24.BottomSurface = Enum.SurfaceType.Smooth
  4667. o24.TopSurface = Enum.SurfaceType.Smooth
  4668. o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4669. o25.Parent = o24
  4670. o25.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0651851818)
  4671. o26.Parent = o1
  4672. o26.BrickColor = BrickColor.new("Really black")
  4673. o26.Position = Vector3.new(-44.920517, 2.56648326, -23.0146809)
  4674. o26.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4675. o26.Anchored = true
  4676. o26.FormFactor = Enum.FormFactor.Symmetric
  4677. o26.Size = Vector3.new(1, 1, 1)
  4678. 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)
  4679. o26.BottomSurface = Enum.SurfaceType.Smooth
  4680. o26.TopSurface = Enum.SurfaceType.Smooth
  4681. o26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4682. o27.Parent = o26
  4683. o27.Scale = Vector3.new(0.260740727, 0.0325925909, 0.0325925909)
  4684. o28.Parent = o1
  4685. o28.BrickColor = BrickColor.new("Really black")
  4686. o28.Position = Vector3.new(-44.9195099, 2.63146138, -22.8646927)
  4687. o28.Rotation = Vector3.new(89.9981079, 5.6722822e-008, 179.998291)
  4688. o28.Anchored = true
  4689. o28.FormFactor = Enum.FormFactor.Plate
  4690. o28.Size = Vector3.new(1, 0.400000006, 1)
  4691. 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)
  4692. o28.BottomSurface = Enum.SurfaceType.Smooth
  4693. o28.TopSurface = Enum.SurfaceType.Smooth
  4694. o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4695. o29.Parent = o28
  4696. o29.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  4697. o29.MeshType = Enum.MeshType.Wedge
  4698. o30.Parent = o1
  4699. o30.BrickColor = BrickColor.new("Really black")
  4700. o30.Position = Vector3.new(-44.9205208, 2.56648326, -22.8716412)
  4701. o30.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  4702. o30.Anchored = true
  4703. o30.FormFactor = Enum.FormFactor.Plate
  4704. o30.Size = Vector3.new(1, 0.400000006, 1)
  4705. 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)
  4706. o30.BottomSurface = Enum.SurfaceType.Smooth
  4707. o30.TopSurface = Enum.SurfaceType.Smooth
  4708. o30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4709. o31.Parent = o30
  4710. o31.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  4711. o31.MeshType = Enum.MeshType.Wedge
  4712. o32.Parent = o1
  4713. o32.BrickColor = BrickColor.new("Really black")
  4714. o32.Position = Vector3.new(-44.920517, 2.68046427, -23.1846619)
  4715. o32.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  4716. o32.Anchored = true
  4717. o32.FormFactor = Enum.FormFactor.Plate
  4718. o32.Size = Vector3.new(1, 0.400000006, 1)
  4719. 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)
  4720. o32.BottomSurface = Enum.SurfaceType.Smooth
  4721. o32.TopSurface = Enum.SurfaceType.Smooth
  4722. o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4723. o33.Parent = o32
  4724. o33.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0651851818)
  4725. o34.Parent = o1
  4726. o34.BrickColor = BrickColor.new("Really black")
  4727. o34.Position = Vector3.new(-44.9195099, 2.59844327, -23.1646118)
  4728. o34.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  4729. o34.Anchored = true
  4730. o34.FormFactor = Enum.FormFactor.Plate
  4731. o34.Size = Vector3.new(1, 0.400000006, 1)
  4732. 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)
  4733. o34.BottomSurface = Enum.SurfaceType.Smooth
  4734. o34.TopSurface = Enum.SurfaceType.Smooth
  4735. o34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4736. o35.Parent = o34
  4737. o35.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  4738. o36.Parent = o1
  4739. o36.BrickColor = BrickColor.new("Really black")
  4740. o36.Position = Vector3.new(-44.920517, 2.7614634, -23.1467056)
  4741. o36.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  4742. o36.Anchored = true
  4743. o36.FormFactor = Enum.FormFactor.Plate
  4744. o36.Size = Vector3.new(1, 0.400000006, 1)
  4745. 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)
  4746. o36.BottomSurface = Enum.SurfaceType.Smooth
  4747. o36.TopSurface = Enum.SurfaceType.Smooth
  4748. o36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4749. o37.Parent = o36
  4750. o37.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  4751. o37.MeshType = Enum.MeshType.Wedge
  4752. o38.Parent = o1
  4753. o38.BrickColor = BrickColor.new("Really black")
  4754. o38.Position = Vector3.new(-44.9185295, 2.59844041, -22.8846474)
  4755. o38.Rotation = Vector3.new(89.9981079, 5.6722822e-008, 179.998291)
  4756. o38.Anchored = true
  4757. o38.FormFactor = Enum.FormFactor.Plate
  4758. o38.Size = Vector3.new(1, 0.400000006, 1)
  4759. 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)
  4760. o38.BottomSurface = Enum.SurfaceType.Smooth
  4761. o38.TopSurface = Enum.SurfaceType.Smooth
  4762. o38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4763. o39.Parent = o38
  4764. o39.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  4765. o39.MeshType = Enum.MeshType.Wedge
  4766. o40.Parent = o1
  4767. o40.BrickColor = BrickColor.new("Really black")
  4768. o40.Position = Vector3.new(-44.9195137, 2.72948027, -22.8646832)
  4769. o40.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, 0.00171887339)
  4770. o40.Anchored = true
  4771. o40.FormFactor = Enum.FormFactor.Plate
  4772. o40.Size = Vector3.new(1, 0.400000006, 1)
  4773. 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)
  4774. o40.BottomSurface = Enum.SurfaceType.Smooth
  4775. o40.TopSurface = Enum.SurfaceType.Smooth
  4776. o40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4777. o41.Parent = o40
  4778. o41.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  4779. o41.MeshType = Enum.MeshType.Wedge
  4780. o42.Parent = o1
  4781. o42.BrickColor = BrickColor.new("Really black")
  4782. o42.Position = Vector3.new(-45.0815277, 2.46846628, -23.014679)
  4783. o42.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4784. o42.Anchored = true
  4785. o42.FormFactor = Enum.FormFactor.Symmetric
  4786. o42.Size = Vector3.new(1, 1, 1)
  4787. 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)
  4788. o42.BottomSurface = Enum.SurfaceType.Smooth
  4789. o42.TopSurface = Enum.SurfaceType.Smooth
  4790. o42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4791. o43.Parent = o42
  4792. o43.Scale = Vector3.new(0.162962973, 0.0325925909, 0.358518541)
  4793. o44.Parent = o1
  4794. o44.BrickColor = BrickColor.new("Really black")
  4795. o44.Position = Vector3.new(-44.920517, 2.56648326, -23.1576462)
  4796. o44.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, 0.00171887339)
  4797. o44.Anchored = true
  4798. o44.FormFactor = Enum.FormFactor.Plate
  4799. o44.Size = Vector3.new(1, 0.400000006, 1)
  4800. 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)
  4801. o44.BottomSurface = Enum.SurfaceType.Smooth
  4802. o44.TopSurface = Enum.SurfaceType.Smooth
  4803. o44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4804. o45.Parent = o44
  4805. o45.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  4806. o45.MeshType = Enum.MeshType.Wedge
  4807. o46.Parent = o1
  4808. o46.BrickColor = BrickColor.new("Really black")
  4809. o46.Position = Vector3.new(-44.9185295, 2.61543727, -22.8476543)
  4810. o46.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  4811. o46.Anchored = true
  4812. o46.FormFactor = Enum.FormFactor.Plate
  4813. o46.Size = Vector3.new(1, 0.400000006, 1)
  4814. 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)
  4815. o46.BottomSurface = Enum.SurfaceType.Smooth
  4816. o46.TopSurface = Enum.SurfaceType.Smooth
  4817. o46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4818. o47.Parent = o46
  4819. o47.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0651851818)
  4820. o47.MeshType = Enum.MeshType.Wedge
  4821. o48.Parent = o1
  4822. o48.BrickColor = BrickColor.new("Really black")
  4823. o48.Position = Vector3.new(-44.920517, 2.74543428, -23.1846676)
  4824. o48.Rotation = Vector3.new(89.9981079, 5.6722822e-008, 179.998291)
  4825. o48.Anchored = true
  4826. o48.FormFactor = Enum.FormFactor.Plate
  4827. o48.Size = Vector3.new(1, 0.400000006, 1)
  4828. 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)
  4829. o48.BottomSurface = Enum.SurfaceType.Smooth
  4830. o48.TopSurface = Enum.SurfaceType.Smooth
  4831. o48.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4832. o49.Parent = o48
  4833. o49.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0651851818)
  4834. o49.MeshType = Enum.MeshType.Wedge
  4835. o50.Parent = o1
  4836. o50.BrickColor = BrickColor.new("Really black")
  4837. o50.Position = Vector3.new(-45.0815277, 2.56648827, -23.014679)
  4838. o50.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4839. o50.Anchored = true
  4840. o50.FormFactor = Enum.FormFactor.Symmetric
  4841. o50.Size = Vector3.new(1, 1, 1)
  4842. 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)
  4843. o50.BottomSurface = Enum.SurfaceType.Smooth
  4844. o50.TopSurface = Enum.SurfaceType.Smooth
  4845. o50.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4846. o51.Parent = o50
  4847. o51.Texture = "http://www.roblox.com/asset/?id=48228292"
  4848. o51.Face = Enum.NormalId.Bottom
  4849. o52.Parent = o50
  4850. o52.Scale = Vector3.new(0.162962973, 0.0651851818, 0.228148147)
  4851. o53.Parent = o1
  4852. o53.BrickColor = BrickColor.new("Dark stone grey")
  4853. o53.Transparency = 0.75
  4854. o53.Position = Vector3.new(-44.9205246, 2.85942245, -23.0146713)
  4855. o53.Rotation = Vector3.new(-0.00189076073, 90, 0)
  4856. o53.Anchored = true
  4857. o53.FormFactor = Enum.FormFactor.Symmetric
  4858. o53.Size = Vector3.new(1, 1, 1)
  4859. 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)
  4860. o53.BottomSurface = Enum.SurfaceType.Smooth
  4861. o53.TopSurface = Enum.SurfaceType.Smooth
  4862. o53.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4863. o54.Parent = o53
  4864. o54.Offset = Vector3.new(0, -0.17925927, 0)
  4865. o54.Scale = Vector3.new(0.312888891, 0.195555568, 0.0162962954)
  4866. o55.Parent = o1
  4867. o55.BrickColor = BrickColor.new("Really black")
  4868. o55.Position = Vector3.new(-44.9195099, 2.76146626, -22.8646927)
  4869. o55.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  4870. o55.Anchored = true
  4871. o55.FormFactor = Enum.FormFactor.Plate
  4872. o55.Size = Vector3.new(1, 0.400000006, 1)
  4873. 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)
  4874. o55.BottomSurface = Enum.SurfaceType.Smooth
  4875. o55.TopSurface = Enum.SurfaceType.Smooth
  4876. o55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4877. o56.Parent = o55
  4878. o56.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  4879. o57.Parent = o1
  4880. o57.BrickColor = BrickColor.new("Really black")
  4881. o57.Position = Vector3.new(-44.9195099, 2.76146626, -23.1646233)
  4882. o57.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, -179.998291)
  4883. o57.Anchored = true
  4884. o57.FormFactor = Enum.FormFactor.Plate
  4885. o57.Size = Vector3.new(1, 0.400000006, 1)
  4886. 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)
  4887. o57.BottomSurface = Enum.SurfaceType.Smooth
  4888. o57.TopSurface = Enum.SurfaceType.Smooth
  4889. o57.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4890. o58.Parent = o57
  4891. o58.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  4892. o59.Parent = o1
  4893. o59.BrickColor = BrickColor.new("Really black")
  4894. o59.Position = Vector3.new(-44.9195099, 2.63145828, -23.1646233)
  4895. o59.Rotation = Vector3.new(89.9981079, 5.6722822e-008, -0.00171887339)
  4896. o59.Anchored = true
  4897. o59.FormFactor = Enum.FormFactor.Plate
  4898. o59.Size = Vector3.new(1, 0.400000006, 1)
  4899. 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)
  4900. o59.BottomSurface = Enum.SurfaceType.Smooth
  4901. o59.TopSurface = Enum.SurfaceType.Smooth
  4902. o59.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4903. o60.Parent = o59
  4904. o60.Scale = Vector3.new(0.0325925909, 0.0325925909, 0.0325925909)
  4905. o60.MeshType = Enum.MeshType.Wedge
  4906. o61.Parent = o1
  4907. o61.BrickColor = BrickColor.new("Really black")
  4908. o61.Position = Vector3.new(-44.920517, 2.79448128, -22.8716507)
  4909. o61.Rotation = Vector3.new(89.9981079, 5.6722822e-008, -0.00171887339)
  4910. o61.Anchored = true
  4911. o61.FormFactor = Enum.FormFactor.Plate
  4912. o61.Size = Vector3.new(1, 0.400000006, 1)
  4913. 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)
  4914. o61.BottomSurface = Enum.SurfaceType.Smooth
  4915. o61.TopSurface = Enum.SurfaceType.Smooth
  4916. o61.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4917. o62.Parent = o61
  4918. o62.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  4919. o62.MeshType = Enum.MeshType.Wedge
  4920. o63.Parent = o1
  4921. o63.BrickColor = BrickColor.new("Really black")
  4922. o63.Position = Vector3.new(-44.9205246, 2.61543727, -23.1846619)
  4923. o63.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, 0.00171887339)
  4924. o63.Anchored = true
  4925. o63.FormFactor = Enum.FormFactor.Plate
  4926. o63.Size = Vector3.new(1, 0.400000006, 1)
  4927. 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)
  4928. o63.BottomSurface = Enum.SurfaceType.Smooth
  4929. o63.TopSurface = Enum.SurfaceType.Smooth
  4930. o63.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4931. o64.Parent = o63
  4932. o64.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0651851818)
  4933. o64.MeshType = Enum.MeshType.Wedge
  4934. o65.Parent = o1
  4935. o65.BrickColor = BrickColor.new("Really black")
  4936. o65.Position = Vector3.new(-44.9185371, 2.7614634, -22.8846512)
  4937. o65.Rotation = Vector3.new(-90.0018921, -5.6722822e-008, 0.00171887339)
  4938. o65.Anchored = true
  4939. o65.FormFactor = Enum.FormFactor.Plate
  4940. o65.Size = Vector3.new(1, 0.400000006, 1)
  4941. 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)
  4942. o65.BottomSurface = Enum.SurfaceType.Smooth
  4943. o65.TopSurface = Enum.SurfaceType.Smooth
  4944. o65.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4945. o66.Parent = o65
  4946. o66.Scale = Vector3.new(0.0325925909, 0.0651851818, 0.0325925909)
  4947. o66.MeshType = Enum.MeshType.Wedge
  4948. o67.Parent = o1
  4949. o67.BrickColor = BrickColor.new("Really red")
  4950. o67.Position = Vector3.new(-44.920517, 2.82747245, -23.0146713)
  4951. o67.Rotation = Vector3.new(89.9981079, 6.05043411e-008, -90.0018311)
  4952. o67.Anchored = true
  4953. o67.FormFactor = Enum.FormFactor.Symmetric
  4954. o67.Size = Vector3.new(1, 1, 1)
  4955. 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)
  4956. o67.BottomSurface = Enum.SurfaceType.Smooth
  4957. o67.TopSurface = Enum.SurfaceType.Smooth
  4958. o67.Color = Color3.new(1, 0, 0)
  4959. o68.Parent = o67
  4960. o68.Offset = Vector3.new(0, 0, 0.146666661)
  4961. o68.Scale = Vector3.new(0.0260740742, 0, 0.0130370371)
  4962. o69.Name = "Zoom"
  4963. o69.Parent = o1
  4964. o69.Material = Enum.Material.SmoothPlastic
  4965. o69.Transparency = 1
  4966. o69.Position = Vector3.new(-45.6629868, 2.71499324, -23.013567)
  4967. o69.Rotation = Vector3.new(-90, -88.3242722, -90)
  4968. o69.Anchored = true
  4969. o69.FormFactor = Enum.FormFactor.Custom
  4970. o69.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4971. o69.CFrame = CFrame.new(-45.6629868, 2.71499324, -23.013567, 0, 0.0292440113, -0.999572337, 0, 0.999572337, 0.0292440113, 1, 0, 0)
  4972. o69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4973. o69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4974. o69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4975. o69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4976. o69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4977. o69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4978. o70.Parent = o69
  4979. o70.Scale = Vector3.new(0.142307684, 0.170769244, 0.284615368)
  4980. ZoomFOV = 70
  4981. elseif Sight == "SUSAT" then
  4982. o2 = Instance.new("Part")
  4983. o3 = Instance.new("SpecialMesh")
  4984. o4 = Instance.new("Part")
  4985. o5 = Instance.new("SpecialMesh")
  4986. o6 = Instance.new("Part")
  4987. o7 = Instance.new("SpecialMesh")
  4988. o8 = Instance.new("Part")
  4989. o9 = Instance.new("SpecialMesh")
  4990. o10 = Instance.new("Part")
  4991. o11 = Instance.new("SpecialMesh")
  4992. o12 = Instance.new("Part")
  4993. o13 = Instance.new("SpecialMesh")
  4994. o14 = Instance.new("Part")
  4995. o15 = Instance.new("SpecialMesh")
  4996. o16 = Instance.new("Part")
  4997. o17 = Instance.new("SpecialMesh")
  4998. o18 = Instance.new("Part")
  4999. o19 = Instance.new("SpecialMesh")
  5000. o20 = Instance.new("Part")
  5001. o21 = Instance.new("SpecialMesh")
  5002. o22 = Instance.new("Part")
  5003. o23 = Instance.new("BlockMesh")
  5004. o2.Parent = o1
  5005. o2.BrickColor = BrickColor.new("Really black")
  5006. o2.Position = Vector3.new(-45.1861954, 2.5412097, -23.016592)
  5007. o2.Rotation = Vector3.new(0.00237952056, 0.109017432, -0.497739434)
  5008. o2.CanCollide = false
  5009. o2.FormFactor = Enum.FormFactor.Custom
  5010. o2.Size = Vector3.new(0.650000036, 0.200000003, 0.200000003)
  5011. 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)
  5012. o2.BottomSurface = Enum.SurfaceType.Smooth
  5013. o2.TopSurface = Enum.SurfaceType.Smooth
  5014. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5015. o3.Parent = o2
  5016. o3.Scale = Vector3.new(1, 0.649999976, 1)
  5017. o3.MeshType = Enum.MeshType.Brick
  5018. o4.Parent = o1
  5019. o4.BrickColor = BrickColor.new("Really black")
  5020. o4.Position = Vector3.new(-45.1765442, 2.58076906, -23.0162792)
  5021. o4.Rotation = Vector3.new(0.00237461296, 0.109017119, -0.497632325)
  5022. o4.CanCollide = false
  5023. o4.FormFactor = Enum.FormFactor.Custom
  5024. o4.Size = Vector3.new(0.200000003, 0.24000001, 0.200000003)
  5025. 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)
  5026. o4.BottomSurface = Enum.SurfaceType.Smooth
  5027. o4.TopSurface = Enum.SurfaceType.Smooth
  5028. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5029. o5.Parent = o4
  5030. o5.Scale = Vector3.new(1, 0.75, 0.699999988)
  5031. o5.MeshType = Enum.MeshType.Brick
  5032. o6.Parent = o1
  5033. o6.BrickColor = BrickColor.new("Really red")
  5034. o6.Position = Vector3.new(-45.254982, 2.67309928, -23.0156555)
  5035. o6.Rotation = Vector3.new(77.6394653, -89.4906311, 77.6413651)
  5036. o6.CanCollide = false
  5037. o6.FormFactor = Enum.FormFactor.Custom
  5038. o6.Size = Vector3.new(0.200000048, 0.200000003, 0.200000003)
  5039. 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)
  5040. o6.BottomSurface = Enum.SurfaceType.Smooth
  5041. o6.TopSurface = Enum.SurfaceType.Smooth
  5042. o6.Color = Color3.new(1, 0, 0)
  5043. o7.Parent = o6
  5044. o7.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5045. o7.Scale = Vector3.new(0.0799999982, 0.800000012, 0.0799999982)
  5046. o7.MeshType = Enum.MeshType.Sphere
  5047. o8.Parent = o1
  5048. o8.BrickColor = BrickColor.new("Really black")
  5049. o8.Position = Vector3.new(-45.4392166, 2.7532146, -23.0155544)
  5050. o8.Rotation = Vector3.new(-90, 0, 90)
  5051. o8.CanCollide = false
  5052. o8.FormFactor = Enum.FormFactor.Custom
  5053. o8.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5054. o8.CFrame = CFrame.new(-45.4392166, 2.7532146, -23.0155544, 0, -1, 0, 0, 0, 1, -1, 0, 0)
  5055. o8.BottomSurface = Enum.SurfaceType.Smooth
  5056. o8.TopSurface = Enum.SurfaceType.Smooth
  5057. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5058. o9.Parent = o8
  5059. o9.MeshId = "http://www.roblox.com/asset/?id=16659502"
  5060. o9.Scale = Vector3.new(0.200000003, 0.400000006, 0.200000003)
  5061. o9.MeshType = Enum.MeshType.FileMesh
  5062. o10.Parent = o1
  5063. o10.BrickColor = BrickColor.new("Really black")
  5064. o10.Position = Vector3.new(-45.1811943, 2.75321054, -23.0156231)
  5065. o10.Rotation = Vector3.new(77.6419296, -89.4910126, 77.6437988)
  5066. o10.CanCollide = false
  5067. o10.FormFactor = Enum.FormFactor.Custom
  5068. o10.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5069. 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)
  5070. o10.BottomSurface = Enum.SurfaceType.Smooth
  5071. o10.TopSurface = Enum.SurfaceType.Smooth
  5072. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5073. o11.Parent = o10
  5074. o11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5075. o11.Scale = Vector3.new(0.200000003, 0.200000003, 3)
  5076. o11.MeshType = Enum.MeshType.FileMesh
  5077. o12.Parent = o1
  5078. o12.BrickColor = BrickColor.new("Really black")
  5079. o12.Position = Vector3.new(-45.4522209, 2.7532146, -23.0155544)
  5080. o12.Rotation = Vector3.new(102.362206, 89.4906311, -102.360336)
  5081. o12.CanCollide = false
  5082. o12.FormFactor = Enum.FormFactor.Custom
  5083. o12.Size = Vector3.new(0.200000048, 0.200000003, 0.200000003)
  5084. 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)
  5085. o12.BottomSurface = Enum.SurfaceType.Smooth
  5086. o12.TopSurface = Enum.SurfaceType.Smooth
  5087. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5088. o13.Parent = o12
  5089. o13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5090. o13.Scale = Vector3.new(0.25, 0.25, 2.5999999)
  5091. o13.MeshType = Enum.MeshType.FileMesh
  5092. o14.Parent = o1
  5093. o14.BrickColor = BrickColor.new("Mid gray")
  5094. o14.Reflectance = 0.10000000149012
  5095. o14.Transparency = 0.89999997615814
  5096. o14.Position = Vector3.new(-45.3052483, 2.75419259, -23.0156231)
  5097. o14.Rotation = Vector3.new(89.9985962, 0.497508794, 89.8909607)
  5098. o14.CanCollide = false
  5099. o14.FormFactor = Enum.FormFactor.Custom
  5100. o14.Size = Vector3.new(0.200000003, 0.730000019, 0.200000003)
  5101. 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)
  5102. o14.BottomSurface = Enum.SurfaceType.Smooth
  5103. o14.TopSurface = Enum.SurfaceType.Smooth
  5104. o14.Color = Color3.new(0.803922, 0.803922, 0.803922)
  5105. o15.Parent = o14
  5106. o16.Parent = o1
  5107. o16.BrickColor = BrickColor.new("Really black")
  5108. o16.Position = Vector3.new(-45.2762527, 2.75321364, -23.015564)
  5109. o16.Rotation = Vector3.new(102.362206, 89.4910126, -102.360336)
  5110. o16.CanCollide = false
  5111. o16.FormFactor = Enum.FormFactor.Custom
  5112. o16.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5113. 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)
  5114. o16.BottomSurface = Enum.SurfaceType.Smooth
  5115. o16.TopSurface = Enum.SurfaceType.Smooth
  5116. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5117. o17.Parent = o16
  5118. o17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5119. o17.Scale = Vector3.new(0.189999998, 0.189999998, 3)
  5120. o17.MeshType = Enum.MeshType.FileMesh
  5121. o18.Parent = o1
  5122. o18.BrickColor = BrickColor.new("Really black")
  5123. o18.Position = Vector3.new(-44.9112358, 2.77421069, -23.015625)
  5124. o18.Rotation = Vector3.new(-90, -7.49987459, 90)
  5125. o18.CanCollide = false
  5126. o18.FormFactor = Enum.FormFactor.Custom
  5127. o18.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5128. o18.CFrame = CFrame.new(-44.9112358, 2.77421069, -23.015625, 0, -0.991445243, -0.130524024, 0, -0.130524024, 0.991445243, -1, 0, 0)
  5129. o18.BottomSurface = Enum.SurfaceType.Smooth
  5130. o18.TopSurface = Enum.SurfaceType.Smooth
  5131. o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5132. o19.Parent = o18
  5133. o19.MeshId = "http://www.roblox.com/asset/?id=16659502"
  5134. o19.Scale = Vector3.new(0.25, 1, 0.25)
  5135. o19.MeshType = Enum.MeshType.FileMesh
  5136. o20.Parent = o1
  5137. o20.BrickColor = BrickColor.new("Really black")
  5138. o20.Position = Vector3.new(-45.6412468, 2.7532146, -23.0156231)
  5139. o20.Rotation = Vector3.new(-90, 2.50009346, -90)
  5140. o20.CanCollide = false
  5141. o20.FormFactor = Enum.FormFactor.Custom
  5142. o20.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5143. o20.CFrame = CFrame.new(-45.6412468, 2.7532146, -23.0156231, 0, 0.999048233, 0.0436210148, 0, -0.0436210111, 0.999048233, 1, 0, 0)
  5144. o20.BottomSurface = Enum.SurfaceType.Smooth
  5145. o20.TopSurface = Enum.SurfaceType.Smooth
  5146. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5147. o21.Parent = o20
  5148. o21.MeshId = "http://www.roblox.com/asset/?id=16659502"
  5149. o21.Scale = Vector3.new(0.200000003, 0.100000001, 0.200000003)
  5150. o21.MeshType = Enum.MeshType.FileMesh
  5151. o22.Name = "Zoom"
  5152. o22.Parent = o1
  5153. o22.Material = Enum.Material.SmoothPlastic
  5154. o22.Transparency = 1
  5155. o22.Position = Vector3.new(-45.6619682, 2.74977922, -23.013567)
  5156. o22.Rotation = Vector3.new(-90, -88.3242722, -90)
  5157. o22.Anchored = true
  5158. o22.FormFactor = Enum.FormFactor.Custom
  5159. o22.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5160. o22.CFrame = CFrame.new(-45.6619682, 2.74977922, -23.013567, 0, 0.0292440113, -0.999572337, 0, 0.999572337, 0.0292440113, 1, 0, 0)
  5161. o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5162. o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5163. o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5164. o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5165. o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5166. o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5167. o23.Parent = o22
  5168. o23.Scale = Vector3.new(0.142307684, 0.170769244, 0.284615368)
  5169. ZoomFOV = 10
  5170. elseif Sight == "C79" then
  5171. o2 = Instance.new("Part")
  5172. o3 = Instance.new("SpecialMesh")
  5173. o4 = Instance.new("Part")
  5174. o5 = Instance.new("SpecialMesh")
  5175. o6 = Instance.new("Part")
  5176. o7 = Instance.new("CylinderMesh")
  5177. o8 = Instance.new("Part")
  5178. o9 = Instance.new("CylinderMesh")
  5179. o10 = Instance.new("Part")
  5180. o11 = Instance.new("SpecialMesh")
  5181. o12 = Instance.new("Part")
  5182. o13 = Instance.new("CylinderMesh")
  5183. o14 = Instance.new("Part")
  5184. o15 = Instance.new("BlockMesh")
  5185. o16 = Instance.new("Part")
  5186. o17 = Instance.new("BlockMesh")
  5187. o18 = Instance.new("Part")
  5188. o19 = Instance.new("BlockMesh")
  5189. o20 = Instance.new("Part")
  5190. o21 = Instance.new("CylinderMesh")
  5191. o22 = Instance.new("Part")
  5192. o23 = Instance.new("CylinderMesh")
  5193. o24 = Instance.new("Part")
  5194. o25 = Instance.new("BlockMesh")
  5195. o26 = Instance.new("Part")
  5196. o27 = Instance.new("CylinderMesh")
  5197. o28 = Instance.new("Part")
  5198. o29 = Instance.new("BlockMesh")
  5199. o30 = Instance.new("Part")
  5200. o31 = Instance.new("BlockMesh")
  5201. o32 = Instance.new("Part")
  5202. o33 = Instance.new("SpecialMesh")
  5203. o34 = Instance.new("Part")
  5204. o35 = Instance.new("CylinderMesh")
  5205. o36 = Instance.new("Part")
  5206. o37 = Instance.new("CylinderMesh")
  5207. o38 = Instance.new("Part")
  5208. o39 = Instance.new("SpecialMesh")
  5209. o40 = Instance.new("Part")
  5210. o41 = Instance.new("BlockMesh")
  5211. o42 = Instance.new("Part")
  5212. o43 = Instance.new("CylinderMesh")
  5213. o44 = Instance.new("Part")
  5214. o45 = Instance.new("SpecialMesh")
  5215. o46 = Instance.new("Part")
  5216. o47 = Instance.new("BlockMesh")
  5217. o2.Parent = o1
  5218. o2.BrickColor = BrickColor.new("Really black")
  5219. o2.Position = Vector3.new(-45.5156708, 2.81176472, -23.0132618)
  5220. o2.Rotation = Vector3.new(179.997528, 90, 0)
  5221. o2.Anchored = true
  5222. o2.CanCollide = false
  5223. o2.FormFactor = Enum.FormFactor.Custom
  5224. o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5225. 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)
  5226. o2.BottomSurface = Enum.SurfaceType.Smooth
  5227. o2.TopSurface = Enum.SurfaceType.Smooth
  5228. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5229. o3.Parent = o2
  5230. o3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5231. o3.Scale = Vector3.new(0.246153846, 0.246153846, 1.07692313)
  5232. o3.MeshType = Enum.MeshType.FileMesh
  5233. o4.Parent = o1
  5234. o4.BrickColor = BrickColor.new("Really black")
  5235. o4.Position = Vector3.new(-45.2076645, 2.81176472, -23.0152378)
  5236. o4.Rotation = Vector3.new(179.997528, 90, 0)
  5237. o4.Anchored = true
  5238. o4.CanCollide = false
  5239. o4.FormFactor = Enum.FormFactor.Custom
  5240. o4.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5241. 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)
  5242. o4.BottomSurface = Enum.SurfaceType.Smooth
  5243. o4.TopSurface = Enum.SurfaceType.Smooth
  5244. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5245. o5.Parent = o4
  5246. o5.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5247. o5.Scale = Vector3.new(0.246153846, 0.246153846, 3.53846145)
  5248. o5.MeshType = Enum.MeshType.FileMesh
  5249. o6.Parent = o1
  5250. o6.BrickColor = BrickColor.new("Really black")
  5251. o6.Position = Vector3.new(-45.3536568, 2.6807878, -23.0142326)
  5252. o6.Rotation = Vector3.new(-0.00252101431, 0.00189076073, -180)
  5253. o6.Anchored = true
  5254. o6.CanCollide = false
  5255. o6.FormFactor = Enum.FormFactor.Custom
  5256. o6.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5257. 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)
  5258. o6.BottomSurface = Enum.SurfaceType.Smooth
  5259. o6.TopSurface = Enum.SurfaceType.Smooth
  5260. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5261. o7.Parent = o6
  5262. o7.Scale = Vector3.new(0.769230783, 0.153846145, 0.769230783)
  5263. o8.Parent = o1
  5264. o8.BrickColor = BrickColor.new("Really black")
  5265. o8.Position = Vector3.new(-45.3476791, 2.6157527, -23.0142155)
  5266. o8.Rotation = Vector3.new(-0.00246371864, 0.00189076073, -180)
  5267. o8.Anchored = true
  5268. o8.CanCollide = false
  5269. o8.FormFactor = Enum.FormFactor.Custom
  5270. o8.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5271. 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)
  5272. o8.BottomSurface = Enum.SurfaceType.Smooth
  5273. o8.TopSurface = Enum.SurfaceType.Smooth
  5274. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5275. o9.Parent = o8
  5276. o9.Scale = Vector3.new(0.692307711, 0.692307711, 0.692307711)
  5277. o10.Parent = o1
  5278. o10.BrickColor = BrickColor.new("Really black")
  5279. o10.Reflectance = 0.30000001192093
  5280. o10.Transparency = 0.39999997615814
  5281. o10.Position = Vector3.new(-45.2016716, 2.81176472, -23.0132561)
  5282. o10.Rotation = Vector3.new(89.9975357, 8.13027157e-008, 89.9981079)
  5283. o10.Anchored = true
  5284. o10.CanCollide = false
  5285. o10.FormFactor = Enum.FormFactor.Custom
  5286. o10.Size = Vector3.new(0.215384617, 0.800000012, 0.215384617)
  5287. 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)
  5288. o10.BottomSurface = Enum.SurfaceType.Smooth
  5289. o10.TopSurface = Enum.SurfaceType.Smooth
  5290. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5291. o11.Parent = o10
  5292. o11.Scale = Vector3.new(1.10000002, 1, 1.10000002)
  5293. o12.Parent = o1
  5294. o12.Material = Enum.Material.SmoothPlastic
  5295. o12.BrickColor = BrickColor.new("Really black")
  5296. o12.Position = Vector3.new(-45.3476791, 2.6157527, -23.0142155)
  5297. o12.Rotation = Vector3.new(-0.00252101431, 0.00189076073, -180)
  5298. o12.Anchored = true
  5299. o12.CanCollide = false
  5300. o12.FormFactor = Enum.FormFactor.Custom
  5301. o12.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5302. 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)
  5303. o12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5304. o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5305. o12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5306. o12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5307. o12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5308. o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5309. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5310. o13.Parent = o12
  5311. o13.Scale = Vector3.new(0.769230783, 0.153846145, 0.769230783)
  5312. o14.Parent = o1
  5313. o14.BrickColor = BrickColor.new("Really black")
  5314. o14.Position = Vector3.new(-45.0166855, 2.87274075, -23.0132542)
  5315. o14.Rotation = Vector3.new(-90.0024643, -8.13027157e-008, 90.0018921)
  5316. o14.Anchored = true
  5317. o14.CanCollide = false
  5318. o14.FormFactor = Enum.FormFactor.Custom
  5319. o14.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5320. 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)
  5321. o14.BottomSurface = Enum.SurfaceType.Smooth
  5322. o14.TopSurface = Enum.SurfaceType.Smooth
  5323. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5324. o15.Parent = o14
  5325. o15.Scale = Vector3.new(0.0384615362, 0.153846145, 0.461538464)
  5326. o16.Parent = o1
  5327. o16.BrickColor = BrickColor.new("Really black")
  5328. o16.Position = Vector3.new(-45.0616646, 2.63177776, -23.0142288)
  5329. o16.Rotation = Vector3.new(179.997482, -0.00189076073, 90)
  5330. o16.Anchored = true
  5331. o16.CanCollide = false
  5332. o16.FormFactor = Enum.FormFactor.Custom
  5333. o16.Size = Vector3.new(0.200000003, 0.523076952, 0.200000003)
  5334. 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)
  5335. o16.BottomSurface = Enum.SurfaceType.Smooth
  5336. o16.TopSurface = Enum.SurfaceType.Smooth
  5337. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5338. o17.Parent = o16
  5339. o17.Scale = Vector3.new(0.615384579, 1, 0.769230783)
  5340. o18.Parent = o1
  5341. o18.BrickColor = BrickColor.new("Really black")
  5342. o18.Position = Vector3.new(-45.0166855, 2.74978971, -23.0132542)
  5343. o18.Rotation = Vector3.new(-90.0024643, -8.13027157e-008, 90.0018921)
  5344. o18.Anchored = true
  5345. o18.CanCollide = false
  5346. o18.FormFactor = Enum.FormFactor.Custom
  5347. o18.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5348. 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)
  5349. o18.BottomSurface = Enum.SurfaceType.Smooth
  5350. o18.TopSurface = Enum.SurfaceType.Smooth
  5351. o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5352. o19.Parent = o18
  5353. o19.Scale = Vector3.new(0.0384615362, 0.153846145, 0.461538464)
  5354. o20.Parent = o1
  5355. o20.Material = Enum.Material.SmoothPlastic
  5356. o20.BrickColor = BrickColor.new("Really black")
  5357. o20.Position = Vector3.new(-45.1856918, 2.55477977, -22.8992996)
  5358. o20.Rotation = Vector3.new(-90.0024643, -90, 0)
  5359. o20.Anchored = true
  5360. o20.CanCollide = false
  5361. o20.FormFactor = Enum.FormFactor.Custom
  5362. o20.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5363. 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)
  5364. o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5365. o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5366. o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5367. o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5368. o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5369. o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5370. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5371. o21.Parent = o20
  5372. o21.Scale = Vector3.new(0.461538464, 0.307692289, 0.461538464)
  5373. o22.Parent = o1
  5374. o22.BrickColor = BrickColor.new("Bright red")
  5375. o22.Position = Vector3.new(-45.0166817, 2.81176472, -23.0132523)
  5376. o22.Rotation = Vector3.new(89.9975357, 8.13027157e-008, 89.9981079)
  5377. o22.Anchored = true
  5378. o22.CanCollide = false
  5379. o22.FormFactor = Enum.FormFactor.Custom
  5380. o22.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5381. 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)
  5382. o22.BottomSurface = Enum.SurfaceType.Smooth
  5383. o22.TopSurface = Enum.SurfaceType.Smooth
  5384. o22.Color = Color3.new(0.768628, 0.156863, 0.109804)
  5385. o23.Parent = o22
  5386. o23.Scale = Vector3.new(0.0769230723, 0.153846145, 0.0769230723)
  5387. o24.Parent = o1
  5388. o24.BrickColor = BrickColor.new("Really black")
  5389. o24.Position = Vector3.new(-45.0166817, 2.81176472, -23.075264)
  5390. o24.Rotation = Vector3.new(179.997482, -0.00189076073, 90)
  5391. o24.Anchored = true
  5392. o24.CanCollide = false
  5393. o24.FormFactor = Enum.FormFactor.Custom
  5394. o24.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5395. 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)
  5396. o24.BottomSurface = Enum.SurfaceType.Smooth
  5397. o24.TopSurface = Enum.SurfaceType.Smooth
  5398. o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5399. o25.Parent = o24
  5400. o25.Scale = Vector3.new(0.0384615362, 0.153846145, 0.461538464)
  5401. o26.Parent = o1
  5402. o26.Material = Enum.Material.SmoothPlastic
  5403. o26.BrickColor = BrickColor.new("Really black")
  5404. o26.Position = Vector3.new(-45.1846809, 2.55478072, -23.1292896)
  5405. o26.Rotation = Vector3.new(-90.0024643, -90, 0)
  5406. o26.Anchored = true
  5407. o26.CanCollide = false
  5408. o26.FormFactor = Enum.FormFactor.Custom
  5409. o26.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5410. 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)
  5411. o26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5412. o26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5413. o26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5414. o26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5415. o26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5416. o26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5417. o26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5418. o27.Parent = o26
  5419. o27.Scale = Vector3.new(0.461538464, 0.307692289, 0.461538464)
  5420. o28.Parent = o1
  5421. o28.BrickColor = BrickColor.new("Really black")
  5422. o28.Position = Vector3.new(-45.0156746, 2.81176472, -22.9512405)
  5423. o28.Rotation = Vector3.new(179.997482, -0.00189076073, 90)
  5424. o28.Anchored = true
  5425. o28.CanCollide = false
  5426. o28.FormFactor = Enum.FormFactor.Custom
  5427. o28.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5428. 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)
  5429. o28.BottomSurface = Enum.SurfaceType.Smooth
  5430. o28.TopSurface = Enum.SurfaceType.Smooth
  5431. o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5432. o29.Parent = o28
  5433. o29.Scale = Vector3.new(0.0384615362, 0.153846145, 0.461538464)
  5434. o30.Parent = o1
  5435. o30.BrickColor = BrickColor.new("Really black")
  5436. o30.Position = Vector3.new(-45.1096992, 2.5397718, -23.0132465)
  5437. o30.Rotation = Vector3.new(179.997528, -0.00189076073, 90)
  5438. o30.Anchored = true
  5439. o30.CanCollide = false
  5440. o30.FormFactor = Enum.FormFactor.Custom
  5441. o30.Size = Vector3.new(0.200000003, 0.615384638, 0.200000003)
  5442. 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)
  5443. o30.BottomSurface = Enum.SurfaceType.Smooth
  5444. o30.TopSurface = Enum.SurfaceType.Smooth
  5445. o30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5446. o31.Parent = o30
  5447. o31.Scale = Vector3.new(0.307692289, 1, 0.846153855)
  5448. o32.Parent = o1
  5449. o32.BrickColor = BrickColor.new("Really black")
  5450. o32.Position = Vector3.new(-44.8696785, 2.81176472, -23.0132446)
  5451. o32.Rotation = Vector3.new(179.997528, 90, 0)
  5452. o32.Anchored = true
  5453. o32.CanCollide = false
  5454. o32.FormFactor = Enum.FormFactor.Custom
  5455. o32.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5456. 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)
  5457. o32.BottomSurface = Enum.SurfaceType.Smooth
  5458. o32.TopSurface = Enum.SurfaceType.Smooth
  5459. o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5460. o33.Parent = o32
  5461. o33.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5462. o33.Scale = Vector3.new(0.246153846, 0.246153846, 1.07692313)
  5463. o33.MeshType = Enum.MeshType.FileMesh
  5464. o34.Parent = o1
  5465. o34.Material = Enum.Material.SmoothPlastic
  5466. o34.BrickColor = BrickColor.new("Really black")
  5467. o34.Position = Vector3.new(-44.9236374, 2.55478072, -22.8982334)
  5468. o34.Rotation = Vector3.new(-90.0024643, -90, 0)
  5469. o34.Anchored = true
  5470. o34.CanCollide = false
  5471. o34.FormFactor = Enum.FormFactor.Custom
  5472. o34.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5473. 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)
  5474. o34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5475. o34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5476. o34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5477. o34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5478. o34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5479. o34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5480. o34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5481. o35.Parent = o34
  5482. o35.Scale = Vector3.new(0.461538464, 0.307692289, 0.461538464)
  5483. o36.Parent = o1
  5484. o36.Material = Enum.Material.SmoothPlastic
  5485. o36.BrickColor = BrickColor.new("Black")
  5486. o36.Position = Vector3.new(-44.9226875, 2.55477881, -23.129282)
  5487. o36.Rotation = Vector3.new(-90.0024643, -90, 0)
  5488. o36.Anchored = true
  5489. o36.CanCollide = false
  5490. o36.FormFactor = Enum.FormFactor.Custom
  5491. o36.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5492. 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)
  5493. o36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5494. o36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5495. o36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5496. o36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5497. o36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5498. o36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5499. o36.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5500. o37.Parent = o36
  5501. o37.Scale = Vector3.new(0.461538464, 0.307692289, 0.461538464)
  5502. o38.Parent = o1
  5503. o38.BrickColor = BrickColor.new("Really black")
  5504. o38.Position = Vector3.new(-44.8106842, 2.81176472, -23.0142307)
  5505. o38.Rotation = Vector3.new(90.0095291, 81.0001602, 89.987915)
  5506. o38.Anchored = true
  5507. o38.CanCollide = false
  5508. o38.FormFactor = Enum.FormFactor.Custom
  5509. o38.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5510. 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)
  5511. o38.BottomSurface = Enum.SurfaceType.Smooth
  5512. o38.TopSurface = Enum.SurfaceType.Smooth
  5513. o38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5514. o39.Parent = o38
  5515. o39.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5516. o39.Scale = Vector3.new(0.246153846, 0.230769232, 0.461538464)
  5517. o39.MeshType = Enum.MeshType.FileMesh
  5518. o40.Parent = o1
  5519. o40.BrickColor = BrickColor.new("Really black")
  5520. o40.Position = Vector3.new(-44.7456856, 2.6157527, -23.0132465)
  5521. o40.Rotation = Vector3.new(179.997528, -0.00189076073, 90)
  5522. o40.Anchored = true
  5523. o40.CanCollide = false
  5524. o40.FormFactor = Enum.FormFactor.Custom
  5525. o40.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5526. 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)
  5527. o40.BottomSurface = Enum.SurfaceType.Smooth
  5528. o40.TopSurface = Enum.SurfaceType.Smooth
  5529. o40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5530. o41.Parent = o40
  5531. o41.Scale = Vector3.new(0.923076928, 0.538461506, 0.538461506)
  5532. o42.Parent = o1
  5533. o42.Material = Enum.Material.SmoothPlastic
  5534. o42.BrickColor = BrickColor.new("Really black")
  5535. o42.Position = Vector3.new(-44.731678, 2.65176678, -23.0132427)
  5536. o42.Rotation = Vector3.new(-90.0024643, -90, 0)
  5537. o42.Anchored = true
  5538. o42.CanCollide = false
  5539. o42.FormFactor = Enum.FormFactor.Custom
  5540. o42.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5541. 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)
  5542. o42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5543. o42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5544. o42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5545. o42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5546. o42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5547. o42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5548. o42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5549. o43.Parent = o42
  5550. o43.Scale = Vector3.new(0.461538464, 0.615384579, 0.461538464)
  5551. o44.Parent = o1
  5552. o44.BrickColor = BrickColor.new("Really black")
  5553. o44.Position = Vector3.new(-44.6716805, 2.61574984, -23.014225)
  5554. o44.Rotation = Vector3.new(179.997528, -90, 0)
  5555. o44.Anchored = true
  5556. o44.CanCollide = false
  5557. o44.FormFactor = Enum.FormFactor.Custom
  5558. o44.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5559. 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)
  5560. o44.BottomSurface = Enum.SurfaceType.Smooth
  5561. o44.TopSurface = Enum.SurfaceType.Smooth
  5562. o44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5563. o45.Parent = o44
  5564. o45.Scale = Vector3.new(0.538461506, 0.923076928, 0.230769232)
  5565. o45.MeshType = Enum.MeshType.Wedge
  5566. o46.Name = "Zoom"
  5567. o46.Parent = o1
  5568. o46.Material = Enum.Material.SmoothPlastic
  5569. o46.Transparency = 1
  5570. o46.Position = Vector3.new(-45.6602287, 2.80918193, -23.013567)
  5571. o46.Rotation = Vector3.new(-90, -88.3242722, -90)
  5572. o46.Anchored = true
  5573. o46.FormFactor = Enum.FormFactor.Custom
  5574. o46.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5575. o46.CFrame = CFrame.new(-45.6602287, 2.80918193, -23.013567, 0, 0.0292440113, -0.999572337, 0, 0.999572337, 0.0292440113, 1, 0, 0)
  5576. o46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5577. o46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5578. o46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5579. o46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5580. o46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5581. o46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5582. o47.Parent = o46
  5583. o47.Scale = Vector3.new(0.142307684, 0.170769244, 0.284615368)
  5584. ZoomFOV = 20
  5585. elseif Sight == "ACOG" then
  5586. o2 = Instance.new("Part")
  5587. o3 = Instance.new("BlockMesh")
  5588. o4 = Instance.new("Part")
  5589. o5 = Instance.new("CylinderMesh")
  5590. o6 = Instance.new("Part")
  5591. o7 = Instance.new("CylinderMesh")
  5592. o8 = Instance.new("Part")
  5593. o9 = Instance.new("BlockMesh")
  5594. o10 = Instance.new("Part")
  5595. o11 = Instance.new("SpecialMesh")
  5596. o12 = Instance.new("Part")
  5597. o13 = Instance.new("SpecialMesh")
  5598. o14 = Instance.new("Part")
  5599. o15 = Instance.new("SpecialMesh")
  5600. o16 = Instance.new("Part")
  5601. o17 = Instance.new("Decal")
  5602. o18 = Instance.new("Decal")
  5603. o19 = Instance.new("BlockMesh")
  5604. o20 = Instance.new("Part")
  5605. o21 = Instance.new("BlockMesh")
  5606. o22 = Instance.new("Part")
  5607. o23 = Instance.new("SpecialMesh")
  5608. o2.Name = "Zoom"
  5609. o2.Parent = o1
  5610. o2.Material = Enum.Material.SmoothPlastic
  5611. o2.Transparency = 1
  5612. o2.Position = Vector3.new(-45.7289391, 2.73110533, -23.0179634)
  5613. o2.Rotation = Vector3.new(-90, -88.876564, -90)
  5614. o2.Anchored = true
  5615. o2.FormFactor = Enum.FormFactor.Custom
  5616. o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5617. o2.CFrame = CFrame.new(-45.7289391, 2.73110533, -23.0179634, 0, 0.0196069945, -0.999807775, 0, 0.999807775, 0.0196069926, 1, 0, 0)
  5618. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5619. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5620. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5621. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5622. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5623. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5624. o3.Parent = o2
  5625. o3.Scale = Vector3.new(0.142307684, 0.170769244, 0.284615368)
  5626. o4.Name = "ACOG"
  5627. o4.Parent = o1
  5628. o4.BrickColor = BrickColor.new("Bright red")
  5629. o4.Position = Vector3.new(-45.1566238, 2.8208468, -23.020977)
  5630. o4.Rotation = Vector3.new(90.0104294, -89.9720306, -90)
  5631. o4.Anchored = true
  5632. o4.CanCollide = false
  5633. o4.FormFactor = Enum.FormFactor.Custom
  5634. o4.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5635. 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)
  5636. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5637. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5638. o4.Color = Color3.new(0.768628, 0.156863, 0.109804)
  5639. o5.Parent = o4
  5640. o5.Scale = Vector3.new(1.33333337, 0.0333333351, 0.699999988)
  5641. o6.Name = "ACOG"
  5642. o6.Parent = o1
  5643. o6.BrickColor = BrickColor.new(CUSTOMCOLOR)
  5644. o6.Position = Vector3.new(-45.1566238, 2.8208468, -23.020977)
  5645. o6.Rotation = Vector3.new(90.0104294, -89.9720306, -90)
  5646. o6.Anchored = true
  5647. o6.CanCollide = false
  5648. o6.FormFactor = Enum.FormFactor.Custom
  5649. o6.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5650. 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)
  5651. o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5652. o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5653. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5654. o7.Parent = o6
  5655. o7.Scale = Vector3.new(1.33333337, 0.333333343, 0.666666687)
  5656. o8.Name = "ACOG"
  5657. o8.Parent = o1
  5658. o8.BrickColor = BrickColor.new(CUSTOMCOLOR)
  5659. o8.Position = Vector3.new(-45.1224823, 2.58768368, -23.0217686)
  5660. o8.Rotation = Vector3.new(-179.996613, -1.65642064e-006, 179.971924)
  5661. o8.Anchored = true
  5662. o8.CanCollide = false
  5663. o8.FormFactor = Enum.FormFactor.Custom
  5664. o8.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5665. 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)
  5666. o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5667. o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5668. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5669. o9.Parent = o8
  5670. o9.Scale = Vector3.new(1, 0.533333361, 0.533333302)
  5671. o10.Name = "ACOG"
  5672. o10.Parent = o1
  5673. o10.BrickColor = BrickColor.new(CUSTOMCOLOR)
  5674. o10.Position = Vector3.new(-44.9295502, 2.72090769, -23.0211411)
  5675. o10.Rotation = Vector3.new(90.0256882, 75.0440826, 89.9820175)
  5676. o10.Anchored = true
  5677. o10.CanCollide = false
  5678. o10.FormFactor = Enum.FormFactor.Symmetric
  5679. o10.Size = Vector3.new(1, 1, 1)
  5680. 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)
  5681. o10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5682. o10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5683. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5684. o11.Parent = o10
  5685. o11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5686. o11.Scale = Vector3.new(0.200000003, 0.200000003, 0.666666687)
  5687. o11.MeshType = Enum.MeshType.FileMesh
  5688. o12.Name = "ACOG"
  5689. o12.Parent = o1
  5690. o12.BrickColor = BrickColor.new(CUSTOMCOLOR)
  5691. o12.Position = Vector3.new(-45.3565521, 2.72070885, -23.0211391)
  5692. o12.Rotation = Vector3.new(-94.5800171, 89.9720306, -85.4120255)
  5693. o12.Anchored = true
  5694. o12.CanCollide = false
  5695. o12.FormFactor = Enum.FormFactor.Symmetric
  5696. o12.Size = Vector3.new(1, 1, 1)
  5697. 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)
  5698. o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5699. o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5700. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5701. o13.Parent = o12
  5702. o13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5703. o13.Scale = Vector3.new(0.173333332, 0.173333332, 0.666666687)
  5704. o13.MeshType = Enum.MeshType.FileMesh
  5705. o14.Name = "ACOG"
  5706. o14.Parent = o1
  5707. o14.BrickColor = BrickColor.new(CUSTOMCOLOR)
  5708. o14.Position = Vector3.new(-44.956562, 2.72089267, -23.021225)
  5709. o14.Rotation = Vector3.new(-97.6506424, 89.9720306, -82.3413925)
  5710. o14.Anchored = true
  5711. o14.CanCollide = false
  5712. o14.FormFactor = Enum.FormFactor.Symmetric
  5713. o14.Size = Vector3.new(1, 1, 1)
  5714. 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)
  5715. o14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5716. o14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5717. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5718. o15.Parent = o14
  5719. o15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5720. o15.Scale = Vector3.new(0.200000003, 0.200000003, 0.666666687)
  5721. o15.MeshType = Enum.MeshType.FileMesh
  5722. o16.Name = "ACOG1"
  5723. o16.Parent = o1
  5724. o16.BrickColor = BrickColor.new(CUSTOMCOLOR)
  5725. o16.Transparency = 1
  5726. o16.Position = Vector3.new(-45.2625923, 2.72075582, -23.0216827)
  5727. o16.Rotation = Vector3.new(-179.996613, -1.65642064e-006, 179.971924)
  5728. o16.Anchored = true
  5729. o16.CanCollide = false
  5730. o16.FormFactor = Enum.FormFactor.Custom
  5731. o16.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5732. 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)
  5733. o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5734. o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5735. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5736. o17.Parent = o16
  5737. o17.Texture = "http://www.roblox.com/asset/?id=95639324"
  5738. o17.Face = Enum.NormalId.Right
  5739. o18.Parent = o16
  5740. o18.Texture = "http://www.roblox.com/asset/?id=95639324"
  5741. o18.Face = Enum.NormalId.Left
  5742. o19.Parent = o16
  5743. o19.Scale = Vector3.new(0.0666666701, 1, 1)
  5744. o20.Name = "ACOG"
  5745. o20.Parent = o1
  5746. o20.BrickColor = BrickColor.new(CUSTOMCOLOR)
  5747. o20.Position = Vector3.new(-45.0894966, 2.53364778, -23.0207634)
  5748. o20.Rotation = Vector3.new(-179.996613, -1.65642064e-006, 179.971924)
  5749. o20.Anchored = true
  5750. o20.CanCollide = false
  5751. o20.FormFactor = Enum.FormFactor.Custom
  5752. o20.Size = Vector3.new(0.333333343, 0.200000003, 0.200000003)
  5753. 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)
  5754. o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5755. o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5756. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5757. o21.Parent = o20
  5758. o21.Scale = Vector3.new(1, 0.533333361, 0.866666675)
  5759. o22.Name = "ACOG2"
  5760. o22.Parent = o1
  5761. o22.BrickColor = BrickColor.new(CUSTOMCOLOR)
  5762. o22.Position = Vector3.new(-45.1225471, 2.72081685, -23.0214977)
  5763. o22.Rotation = Vector3.new(-97.6506424, 89.9720306, -82.3413925)
  5764. o22.Anchored = true
  5765. o22.CanCollide = false
  5766. o22.FormFactor = Enum.FormFactor.Symmetric
  5767. o22.Size = Vector3.new(1, 1, 1)
  5768. 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)
  5769. o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5770. o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5771. o22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5772. o23.Parent = o22
  5773. o23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5774. o23.Scale = Vector3.new(0.166666672, 0.166666672, 2.66666675)
  5775. o23.MeshType = Enum.MeshType.FileMesh
  5776. ZoomFOV = 5
  5777. elseif Sight == "M145" then
  5778.  
  5779. o2 = Instance.new("Part")
  5780. o3 = Instance.new("CylinderMesh")
  5781. o4 = Instance.new("Part")
  5782. o5 = Instance.new("CylinderMesh")
  5783. o6 = Instance.new("Part")
  5784. o7 = Instance.new("CylinderMesh")
  5785. o8 = Instance.new("Part")
  5786. o9 = Instance.new("BlockMesh")
  5787. o10 = Instance.new("Part")
  5788. o11 = Instance.new("SpecialMesh")
  5789. o12 = Instance.new("Part")
  5790. o13 = Instance.new("BlockMesh")
  5791. o14 = Instance.new("Part")
  5792. o15 = Instance.new("BlockMesh")
  5793. o16 = Instance.new("Part")
  5794. o17 = Instance.new("SpecialMesh")
  5795. o18 = Instance.new("Part")
  5796. o19 = Instance.new("BlockMesh")
  5797. o20 = Instance.new("Part")
  5798. o21 = Instance.new("BlockMesh")
  5799. o22 = Instance.new("Part")
  5800. o23 = Instance.new("SpecialMesh")
  5801. o24 = Instance.new("Part")
  5802. o25 = Instance.new("SpecialMesh")
  5803. o26 = Instance.new("Part")
  5804. o27 = Instance.new("BlockMesh")
  5805. o28 = Instance.new("Part")
  5806. o29 = Instance.new("BlockMesh")
  5807. o30 = Instance.new("Part")
  5808. o31 = Instance.new("BlockMesh")
  5809. o32 = Instance.new("Part")
  5810. o33 = Instance.new("BlockMesh")
  5811. o34 = Instance.new("Part")
  5812. o35 = Instance.new("SpecialMesh")
  5813. o36 = Instance.new("Part")
  5814. o37 = Instance.new("SpecialMesh")
  5815. o38 = Instance.new("Part")
  5816. o39 = Instance.new("BlockMesh")
  5817. o2.Parent = o1
  5818. o2.Reflectance = 0.050000000745058
  5819. o2.Transparency = 0.89999997615814
  5820. o2.Position = Vector3.new(-45.0308838, 2.90189338, -23.0160847)
  5821. o2.Rotation = Vector3.new(-0.00252101431, 0.00189076073, 90)
  5822. o2.Anchored = true
  5823. o2.FormFactor = Enum.FormFactor.Symmetric
  5824. o2.Size = Vector3.new(1, 1, 1)
  5825. 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)
  5826. o2.BottomSurface = Enum.SurfaceType.Smooth
  5827. o2.TopSurface = Enum.SurfaceType.Smooth
  5828. o3.Parent = o2
  5829. o3.Offset = Vector3.new(-0.180000007, -0.0299999993, 0)
  5830. o3.Scale = Vector3.new(0.209999993, 0.00479999976, 0.194999993)
  5831. o4.Parent = o1
  5832. o4.Reflectance = 0.050000000745058
  5833. o4.Transparency = 0.89999997615814
  5834. o4.Position = Vector3.new(-45.5848656, 2.72892451, -23.0160999)
  5835. o4.Rotation = Vector3.new(89.9975357, 8.13027157e-008, 89.9981079)
  5836. o4.Anchored = true
  5837. o4.FormFactor = Enum.FormFactor.Symmetric
  5838. o4.Size = Vector3.new(1, 1, 1)
  5839. 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)
  5840. o4.BottomSurface = Enum.SurfaceType.Smooth
  5841. o4.TopSurface = Enum.SurfaceType.Smooth
  5842. o5.Parent = o4
  5843. o5.Offset = Vector3.new(0, -0.0480000004, 0)
  5844. o5.Scale = Vector3.new(0.180000007, 0.00479999976, 0.180000007)
  5845. o6.Parent = o1
  5846. o6.BrickColor = BrickColor.new("Really black")
  5847. o6.Position = Vector3.new(-45.4388695, 2.54694438, -23.0180969)
  5848. o6.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  5849. o6.Anchored = true
  5850. o6.FormFactor = Enum.FormFactor.Symmetric
  5851. o6.Size = Vector3.new(1, 1, 1)
  5852. 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)
  5853. o6.BottomSurface = Enum.SurfaceType.Smooth
  5854. o6.TopSurface = Enum.SurfaceType.Smooth
  5855. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5856. o7.Parent = o6
  5857. o7.Offset = Vector3.new(0.0480000004, 0, 0)
  5858. o7.Scale = Vector3.new(0.143999994, 0.150000006, 0.143999994)
  5859. o8.Parent = o1
  5860. o8.BrickColor = BrickColor.new("Really black")
  5861. o8.Position = Vector3.new(-45.2008667, 2.54694438, -23.0160828)
  5862. o8.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  5863. o8.Anchored = true
  5864. o8.FormFactor = Enum.FormFactor.Symmetric
  5865. o8.Size = Vector3.new(1, 1, 1)
  5866. 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)
  5867. o8.BottomSurface = Enum.SurfaceType.Smooth
  5868. o8.TopSurface = Enum.SurfaceType.Smooth
  5869. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5870. o9.Parent = o8
  5871. o9.Offset = Vector3.new(0.0240000002, 0, 0)
  5872. o9.Scale = Vector3.new(0.42009002, 0.150000006, 0.143999994)
  5873. o10.Parent = o1
  5874. o10.BrickColor = BrickColor.new("Really black")
  5875. o10.Position = Vector3.new(-45.0068626, 2.54694152, -23.0171223)
  5876. o10.Rotation = Vector3.new(-0.00246371864, 90, 0)
  5877. o10.Anchored = true
  5878. o10.FormFactor = Enum.FormFactor.Symmetric
  5879. o10.Size = Vector3.new(1, 1, 1)
  5880. 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)
  5881. o10.BottomSurface = Enum.SurfaceType.Smooth
  5882. o10.TopSurface = Enum.SurfaceType.Smooth
  5883. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5884. o11.Parent = o10
  5885. o11.Scale = Vector3.new(0.239999995, 0.150000006, 0.0480000004)
  5886. o11.MeshType = Enum.MeshType.Wedge
  5887. o12.Parent = o1
  5888. o12.BrickColor = BrickColor.new("Really black")
  5889. o12.Position = Vector3.new(-44.9609032, 2.54694152, -23.0180988)
  5890. o12.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  5891. o12.Anchored = true
  5892. o12.FormFactor = Enum.FormFactor.Symmetric
  5893. o12.Size = Vector3.new(1, 1, 1)
  5894. 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)
  5895. o12.BottomSurface = Enum.SurfaceType.Smooth
  5896. o12.TopSurface = Enum.SurfaceType.Smooth
  5897. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5898. o13.Parent = o12
  5899. o13.Scale = Vector3.new(0.0480000004, 0.150000006, 0.239999995)
  5900. o14.Parent = o1
  5901. o14.BrickColor = BrickColor.new("Really black")
  5902. o14.Position = Vector3.new(-45.3188782, 2.72089553, -22.9411163)
  5903. o14.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  5904. o14.Anchored = true
  5905. o14.FormFactor = Enum.FormFactor.Symmetric
  5906. o14.Size = Vector3.new(1, 1, 1)
  5907. 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)
  5908. o14.BottomSurface = Enum.SurfaceType.Smooth
  5909. o14.TopSurface = Enum.SurfaceType.Smooth
  5910. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5911. o15.Parent = o14
  5912. o15.Scale = Vector3.new(0.00300000003, 0.00300000003, 0.057599999)
  5913. o16.Parent = o1
  5914. o16.BrickColor = BrickColor.new("Really black")
  5915. o16.Position = Vector3.new(-44.9648743, 2.72694039, -23.0171223)
  5916. o16.Rotation = Vector3.new(90.0085602, 80.2704544, -90.0111923)
  5917. o16.Anchored = true
  5918. o16.Size = Vector3.new(1, 1.20000005, 1)
  5919. 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)
  5920. o16.BottomSurface = Enum.SurfaceType.Smooth
  5921. o16.TopSurface = Enum.SurfaceType.Smooth
  5922. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5923. o17.Parent = o16
  5924. o17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5925. o17.Scale = Vector3.new(0.230400011, 0.230400011, 0.479999989)
  5926. o17.MeshType = Enum.MeshType.FileMesh
  5927. o18.Parent = o1
  5928. o18.BrickColor = BrickColor.new("Really black")
  5929. o18.Position = Vector3.new(-45.3208618, 2.92493939, -23.016077)
  5930. o18.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  5931. o18.Anchored = true
  5932. o18.FormFactor = Enum.FormFactor.Symmetric
  5933. o18.Size = Vector3.new(1, 1, 1)
  5934. 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)
  5935. o18.BottomSurface = Enum.SurfaceType.Smooth
  5936. o18.TopSurface = Enum.SurfaceType.Smooth
  5937. o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5938. o19.Parent = o18
  5939. o19.Offset = Vector3.new(0, 0.1875, 0)
  5940. o19.Scale = Vector3.new(0, 0.00150000001, 0.0329999998)
  5941. o20.Parent = o1
  5942. o20.BrickColor = BrickColor.new("Really black")
  5943. o20.Position = Vector3.new(-45.3208618, 2.89493656, -23.0160847)
  5944. o20.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  5945. o20.Anchored = true
  5946. o20.FormFactor = Enum.FormFactor.Symmetric
  5947. o20.Size = Vector3.new(1, 1, 1)
  5948. 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)
  5949. o20.BottomSurface = Enum.SurfaceType.Smooth
  5950. o20.TopSurface = Enum.SurfaceType.Smooth
  5951. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5952. o21.Parent = o20
  5953. o21.Offset = Vector3.new(0, 0.17400001, 0)
  5954. o21.Scale = Vector3.new(0, 0.00150000001, 0.0990000069)
  5955. o22.Parent = o1
  5956. o22.BrickColor = BrickColor.new("Really black")
  5957. o22.Position = Vector3.new(-45.2548485, 2.7238884, -23.016077)
  5958. o22.Rotation = Vector3.new(-0.00246371864, 90, 0)
  5959. o22.Anchored = true
  5960. o22.Size = Vector3.new(1, 1.20000005, 1)
  5961. 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)
  5962. o22.BottomSurface = Enum.SurfaceType.Smooth
  5963. o22.TopSurface = Enum.SurfaceType.Smooth
  5964. o22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5965. o23.Parent = o22
  5966. o23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5967. o23.Scale = Vector3.new(0.209999993, 0.209999993, 3.5999999)
  5968. o23.MeshType = Enum.MeshType.FileMesh
  5969. o24.Parent = o1
  5970. o24.BrickColor = BrickColor.new("Really black")
  5971. o24.Position = Vector3.new(-44.9108505, 2.54694438, -23.0160923)
  5972. o24.Rotation = Vector3.new(179.997528, -90, 0)
  5973. o24.Anchored = true
  5974. o24.FormFactor = Enum.FormFactor.Symmetric
  5975. o24.Size = Vector3.new(1, 1, 1)
  5976. 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)
  5977. o24.BottomSurface = Enum.SurfaceType.Smooth
  5978. o24.TopSurface = Enum.SurfaceType.Smooth
  5979. o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5980. o25.Parent = o24
  5981. o25.Scale = Vector3.new(0.239999995, 0.150000006, 0.0480000004)
  5982. o25.MeshType = Enum.MeshType.Wedge
  5983. o26.Parent = o1
  5984. o26.BrickColor = BrickColor.new("Really black")
  5985. o26.Position = Vector3.new(-45.3188705, 2.72089553, -23.0911293)
  5986. o26.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  5987. o26.Anchored = true
  5988. o26.FormFactor = Enum.FormFactor.Symmetric
  5989. o26.Size = Vector3.new(1, 1, 1)
  5990. 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)
  5991. o26.BottomSurface = Enum.SurfaceType.Smooth
  5992. o26.TopSurface = Enum.SurfaceType.Smooth
  5993. o26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5994. o27.Parent = o26
  5995. o27.Scale = Vector3.new(0.00300000003, 0.00300000003, 0.057599999)
  5996. o28.Parent = o1
  5997. o28.BrickColor = BrickColor.new("Really black")
  5998. o28.Position = Vector3.new(-45.3208618, 2.80793452, -23.016077)
  5999. o28.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  6000. o28.Anchored = true
  6001. o28.FormFactor = Enum.FormFactor.Symmetric
  6002. o28.Size = Vector3.new(1, 1, 1)
  6003. 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)
  6004. o28.BottomSurface = Enum.SurfaceType.Smooth
  6005. o28.TopSurface = Enum.SurfaceType.Smooth
  6006. o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6007. o29.Parent = o28
  6008. o29.Scale = Vector3.new(0.00300000003, 0.0599999987, 0.00300000003)
  6009. o30.Parent = o1
  6010. o30.BrickColor = BrickColor.new("Really black")
  6011. o30.Position = Vector3.new(-45.3208656, 2.86490941, -23.0160904)
  6012. o30.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  6013. o30.Anchored = true
  6014. o30.FormFactor = Enum.FormFactor.Symmetric
  6015. o30.Size = Vector3.new(1, 1, 1)
  6016. 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)
  6017. o30.BottomSurface = Enum.SurfaceType.Smooth
  6018. o30.TopSurface = Enum.SurfaceType.Smooth
  6019. o30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6020. o31.Parent = o30
  6021. o31.Offset = Vector3.new(0, 0.135000005, 0)
  6022. o31.Scale = Vector3.new(0, 0.0989999995, 0.00150000001)
  6023. o32.Parent = o1
  6024. o32.BrickColor = BrickColor.new("Really black")
  6025. o32.Position = Vector3.new(-45.320858, 2.65193152, -23.0160847)
  6026. o32.Rotation = Vector3.new(179.997482, -0.00189076073, -8.3193477e-008)
  6027. o32.Anchored = true
  6028. o32.FormFactor = Enum.FormFactor.Symmetric
  6029. o32.Size = Vector3.new(1, 1, 1)
  6030. 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)
  6031. o32.BottomSurface = Enum.SurfaceType.Smooth
  6032. o32.TopSurface = Enum.SurfaceType.Smooth
  6033. o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6034. o33.Parent = o32
  6035. o33.Scale = Vector3.new(0.00300000003, 0.0599999987, 0.00300000003)
  6036. o34.Parent = o1
  6037. o34.BrickColor = BrickColor.new("Really black")
  6038. o34.Position = Vector3.new(-45.5238876, 2.72389054, -23.0180988)
  6039. o34.Rotation = Vector3.new(-0.00246371864, 90, 0)
  6040. o34.Anchored = true
  6041. o34.Size = Vector3.new(1, 1.20000005, 1)
  6042. 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)
  6043. o34.BottomSurface = Enum.SurfaceType.Smooth
  6044. o34.TopSurface = Enum.SurfaceType.Smooth
  6045. o34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6046. o35.Parent = o34
  6047. o35.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6048. o35.Scale = Vector3.new(0.215999991, 0.215999991, 0.576000035)
  6049. o35.MeshType = Enum.MeshType.FileMesh
  6050. o36.Parent = o1
  6051. o36.BrickColor = BrickColor.new("Really black")
  6052. o36.Position = Vector3.new(-45.0038757, 2.71586657, -23.0160828)
  6053. o36.Rotation = Vector3.new(-0.00246371864, 90, 0)
  6054. o36.Anchored = true
  6055. o36.Size = Vector3.new(1, 1.20000005, 1)
  6056. 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)
  6057. o36.BottomSurface = Enum.SurfaceType.Smooth
  6058. o36.TopSurface = Enum.SurfaceType.Smooth
  6059. o36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6060. o37.Parent = o36
  6061. o37.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6062. o37.Scale = Vector3.new(0.224999994, 0.224999994, 0.75)
  6063. o37.MeshType = Enum.MeshType.FileMesh
  6064. o38.Name = "Zoom"
  6065. o38.Parent = o1
  6066. o38.Material = Enum.Material.SmoothPlastic
  6067. o38.Transparency = 1
  6068. o38.Position = Vector3.new(-45.6625099, 2.73130202, -23.013567)
  6069. o38.Rotation = Vector3.new(-90, -88.3242722, -90)
  6070. o38.Anchored = true
  6071. o38.FormFactor = Enum.FormFactor.Custom
  6072. o38.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6073. o38.CFrame = CFrame.new(-45.6625099, 2.73130202, -23.013567, 0, 0.0292440113, -0.999572337, 0, 0.999572337, 0.0292440113, 1, 0, 0)
  6074. o38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6075. o38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6076. o38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6077. o38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6078. o38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6079. o38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6080. o39.Parent = o38
  6081. o39.Scale = Vector3.new(0.142307684, 0.170769244, 0.284615368)
  6082. ZoomFOV = 15
  6083. else
  6084. o2 = Instance.new("Part")
  6085. o3 = Instance.new("SpecialMesh")
  6086. o4 = Instance.new("Part")
  6087. o5 = Instance.new("BlockMesh")
  6088. o6 = Instance.new("Part")
  6089. o7 = Instance.new("SpecialMesh")
  6090. o8 = Instance.new("Part")
  6091. o9 = Instance.new("SpecialMesh")
  6092. o10 = Instance.new("Part")
  6093. o11 = Instance.new("BlockMesh")
  6094. o12 = Instance.new("Part")
  6095. o13 = Instance.new("BlockMesh")
  6096. o14 = Instance.new("Part")
  6097. o15 = Instance.new("BlockMesh")
  6098. o16 = Instance.new("Part")
  6099. o17 = Instance.new("SpecialMesh")
  6100. o18 = Instance.new("Part")
  6101. o19 = Instance.new("SpecialMesh")
  6102. o20 = Instance.new("Part")
  6103. o21 = Instance.new("BlockMesh")
  6104. o22 = Instance.new("Part")
  6105. o23 = Instance.new("CylinderMesh")
  6106. o24 = Instance.new("Part")
  6107. o25 = Instance.new("SpecialMesh")
  6108. o26 = Instance.new("Part")
  6109. o27 = Instance.new("BlockMesh")
  6110. o28 = Instance.new("Part")
  6111. o29 = Instance.new("BlockMesh")
  6112. o30 = Instance.new("Part")
  6113. o31 = Instance.new("CylinderMesh")
  6114. o32 = Instance.new("Part")
  6115. o33 = Instance.new("BlockMesh")
  6116. o34 = Instance.new("Part")
  6117. o35 = Instance.new("BlockMesh")
  6118. o36 = Instance.new("Part")
  6119. o37 = Instance.new("BlockMesh")
  6120. o38 = Instance.new("Part")
  6121. o39 = Instance.new("SpecialMesh")
  6122. o40 = Instance.new("Part")
  6123. o41 = Instance.new("BlockMesh")
  6124. o42 = Instance.new("Part")
  6125. o43 = Instance.new("SpecialMesh")
  6126. o2.Name = "IRONSIGHT"
  6127. o2.Parent = o1
  6128. o2.Material = Enum.Material.SmoothPlastic
  6129. o2.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6130. o2.Position = Vector3.new(-45.1299782, 2.73781204, -22.9749947)
  6131. o2.Rotation = Vector3.new(90, -8.08488086e-012, -89.9999924)
  6132. o2.Anchored = true
  6133. o2.FormFactor = Enum.FormFactor.Custom
  6134. o2.Size = Vector3.new(0.200000003, 0.864000022, 0.200000003)
  6135. 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)
  6136. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6137. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6138. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6139. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6140. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6141. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6142. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6143. o3.Parent = o2
  6144. o3.Scale = Vector3.new(0.149999991, 1, 0.329999983)
  6145. o3.MeshType = Enum.MeshType.Wedge
  6146. o4.Name = "IRONSIGHT"
  6147. o4.Parent = o1
  6148. o4.Material = Enum.Material.SmoothPlastic
  6149. o4.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6150. o4.Position = Vector3.new(-45.6069984, 2.7168169, -22.9749947)
  6151. o4.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6152. o4.Anchored = true
  6153. o4.FormFactor = Enum.FormFactor.Custom
  6154. o4.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6155. 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)
  6156. o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6157. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6158. o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6159. o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6160. o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6161. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6162. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6163. o5.Parent = o4
  6164. o5.Scale = Vector3.new(0.151499987, 0.180000007, 0.450000018)
  6165. o6.Name = "IRONSIGHT"
  6166. o6.Parent = o1
  6167. o6.Material = Enum.Material.SmoothPlastic
  6168. o6.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6169. o6.Position = Vector3.new(-45.6759911, 2.59981394, -23.0199947)
  6170. o6.Rotation = Vector3.new(90, -8.08488086e-012, 90.0000076)
  6171. o6.Anchored = true
  6172. o6.FormFactor = Enum.FormFactor.Custom
  6173. o6.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6174. 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)
  6175. o6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6176. o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6177. o6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6178. o6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6179. o6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6180. o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6181. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6182. o7.Parent = o6
  6183. o7.Scale = Vector3.new(0.599999964, 0.239999995, 0.990000069)
  6184. o7.MeshType = Enum.MeshType.Wedge
  6185. o8.Name = "IRONSIGHT"
  6186. o8.Parent = o1
  6187. o8.Material = Enum.Material.SmoothPlastic
  6188. o8.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6189. o8.Position = Vector3.new(-45.6369934, 2.75281191, -22.9749794)
  6190. o8.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6191. o8.Anchored = true
  6192. o8.FormFactor = Enum.FormFactor.Custom
  6193. o8.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6194. 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)
  6195. o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6196. o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6197. o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6198. o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6199. o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6200. o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6201. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6202. o9.Parent = o8
  6203. o9.Scale = Vector3.new(0.151499987, 0.180000007, 0.149999991)
  6204. o9.MeshType = Enum.MeshType.Wedge
  6205. o10.Name = "IRONSIGHT"
  6206. o10.Parent = o1
  6207. o10.Material = Enum.Material.SmoothPlastic
  6208. o10.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6209. o10.Position = Vector3.new(-45.6069984, 2.60881591, -23.0199947)
  6210. o10.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6211. o10.Anchored = true
  6212. o10.FormFactor = Enum.FormFactor.Custom
  6213. o10.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6214. 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)
  6215. o10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6216. o10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6217. o10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6218. o10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6219. o10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6220. o10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6221. o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6222. o11.Parent = o10
  6223. o11.Offset = Vector3.new(0, -0.00450000027, 0)
  6224. o11.Scale = Vector3.new(0.599999964, 0.944999993, 0.450000018)
  6225. o12.Name = "IRONSIGHT"
  6226. o12.Parent = o1
  6227. o12.Material = Enum.Material.SmoothPlastic
  6228. o12.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6229. o12.Position = Vector3.new(-45.6099968, 2.71678591, -23.0650082)
  6230. o12.Rotation = Vector3.new(179.902588, 89.7451248, -0.991545081)
  6231. o12.Anchored = true
  6232. o12.FormFactor = Enum.FormFactor.Custom
  6233. o12.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6234. 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)
  6235. o12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6236. o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6237. o12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6238. o12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6239. o12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6240. o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6241. o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6242. o13.Parent = o12
  6243. o13.Scale = Vector3.new(0.151499987, 0.180000007, 0.450000018)
  6244. o14.Name = "IRONSIGHT"
  6245. o14.Parent = o1
  6246. o14.Material = Enum.Material.SmoothPlastic
  6247. o14.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6248. o14.Position = Vector3.new(-44.6169853, 2.59981394, -23.02001)
  6249. o14.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6250. o14.Anchored = true
  6251. o14.FormFactor = Enum.FormFactor.Custom
  6252. o14.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6253. 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)
  6254. o14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6255. o14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6256. o14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6257. o14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6258. o14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6259. o14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6260. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6261. o15.Parent = o14
  6262. o15.Offset = Vector3.new(0, -0.0180000011, -0.00300000003)
  6263. o15.Scale = Vector3.new(0.599999964, 0.791999996, 0.299999982)
  6264. o16.Name = "IRONSIGHT"
  6265. o16.Parent = o1
  6266. o16.Material = Enum.Material.SmoothPlastic
  6267. o16.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6268. o16.Position = Vector3.new(-45.3610039, 2.65676594, -23.0199947)
  6269. o16.Rotation = Vector3.new(-90, -2.14500069e-005, -90.0000076)
  6270. o16.Anchored = true
  6271. o16.FormFactor = Enum.FormFactor.Custom
  6272. o16.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6273. 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)
  6274. o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6275. o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6276. o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6277. o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6278. o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6279. o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6280. o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6281. o17.Parent = o16
  6282. o17.Scale = Vector3.new(0.599999964, 0.540000021, 0.450000018)
  6283. o17.MeshType = Enum.MeshType.Wedge
  6284. o18.Name = "IRONSIGHT"
  6285. o18.Parent = o1
  6286. o18.Material = Enum.Material.SmoothPlastic
  6287. o18.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6288. o18.Position = Vector3.new(-45.6399918, 2.75281191, -23.0650082)
  6289. o18.Rotation = Vector3.new(179.902588, 89.7451248, -0.991545081)
  6290. o18.Anchored = true
  6291. o18.FormFactor = Enum.FormFactor.Custom
  6292. o18.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6293. 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)
  6294. o18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6295. o18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6296. o18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6297. o18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6298. o18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6299. o18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6300. o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6301. o19.Parent = o18
  6302. o19.Scale = Vector3.new(0.151499987, 0.180000007, 0.149999991)
  6303. o19.MeshType = Enum.MeshType.Wedge
  6304. o20.Name = "IRONSIGHT"
  6305. o20.Parent = o1
  6306. o20.Material = Enum.Material.SmoothPlastic
  6307. o20.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6308. o20.Position = Vector3.new(-45.5949974, 2.75281191, -23.0650082)
  6309. o20.Rotation = Vector3.new(179.902588, 89.7451248, -0.991545081)
  6310. o20.Anchored = true
  6311. o20.FormFactor = Enum.FormFactor.Custom
  6312. o20.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6313. 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)
  6314. o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6315. o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6316. o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6317. o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6318. o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6319. o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6320. o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6321. o21.Parent = o20
  6322. o21.Scale = Vector3.new(0.151499987, 0.180000007, 0.299999982)
  6323. o22.Name = "IRONSIGHT"
  6324. o22.Parent = o1
  6325. o22.Material = Enum.Material.SmoothPlastic
  6326. o22.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6327. o22.Position = Vector3.new(-45.5320015, 2.66876698, -23.0199947)
  6328. o22.Rotation = Vector3.new(180, -0.00013253183, 180)
  6329. o22.Anchored = true
  6330. o22.FormFactor = Enum.FormFactor.Custom
  6331. o22.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6332. 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)
  6333. o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6334. o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6335. o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6336. o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6337. o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6338. o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6339. o22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6340. o23.Parent = o22
  6341. o23.Scale = Vector3.new(0.75, 0.149999991, 0.9375)
  6342. o24.Name = "IRONSIGHT"
  6343. o24.Parent = o1
  6344. o24.Material = Enum.Material.SmoothPlastic
  6345. o24.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6346. o24.Position = Vector3.new(-45.5470009, 2.76181388, -23.0199947)
  6347. o24.Rotation = Vector3.new(1.01777712e-012, -90, 0)
  6348. o24.Anchored = true
  6349. o24.FormFactor = Enum.FormFactor.Custom
  6350. o24.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6351. 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)
  6352. o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6353. o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6354. o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6355. o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6356. o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6357. o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6358. o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6359. o25.Parent = o24
  6360. o25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6361. o25.Scale = Vector3.new(0.0599999987, 0.0599999987, 0.0149999997)
  6362. o25.MeshType = Enum.MeshType.FileMesh
  6363. o26.Name = "IRONSIGHT"
  6364. o26.Parent = o1
  6365. o26.Material = Enum.Material.SmoothPlastic
  6366. o26.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6367. o26.Position = Vector3.new(-45.4719963, 2.60581398, -23.0199947)
  6368. o26.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6369. o26.Anchored = true
  6370. o26.FormFactor = Enum.FormFactor.Custom
  6371. o26.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6372. 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)
  6373. o26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6374. o26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6375. o26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6376. o26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6377. o26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6378. o26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6379. o26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6380. o27.Parent = o26
  6381. o27.Scale = Vector3.new(0.599999964, 1.16999996, 0.599999964)
  6382. o28.Name = "IRONSIGHT"
  6383. o28.Parent = o1
  6384. o28.Material = Enum.Material.SmoothPlastic
  6385. o28.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6386. o28.Position = Vector3.new(-45.5470009, 2.61781597, -23.0199947)
  6387. o28.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6388. o28.Anchored = true
  6389. o28.FormFactor = Enum.FormFactor.Custom
  6390. o28.Size = Vector3.new(0.200000003, 0.216000006, 0.200000003)
  6391. 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)
  6392. o28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6393. o28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6394. o28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6395. o28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6396. o28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6397. o28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6398. o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6399. o29.Parent = o28
  6400. o29.Scale = Vector3.new(0.599999964, 1.10000002, 0.149999991)
  6401. o30.Name = "IRONSIGHT"
  6402. o30.Parent = o1
  6403. o30.Material = Enum.Material.SmoothPlastic
  6404. o30.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6405. o30.Position = Vector3.new(-45.6069908, 2.73477697, -22.9629879)
  6406. o30.Rotation = Vector3.new(-90, -5.22833534e-006, -179.999878)
  6407. o30.Anchored = true
  6408. o30.FormFactor = Enum.FormFactor.Custom
  6409. o30.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6410. 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)
  6411. o30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6412. o30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6413. o30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6414. o30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6415. o30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6416. o30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6417. o30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6418. o31.Parent = o30
  6419. o31.Scale = Vector3.new(0.299999982, 0.149999991, 0.299999982)
  6420. o32.Name = "IRONSIGHT"
  6421. o32.Parent = o1
  6422. o32.Material = Enum.Material.SmoothPlastic
  6423. o32.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6424. o32.Position = Vector3.new(-45.5919991, 2.75281191, -22.9749947)
  6425. o32.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6426. o32.Anchored = true
  6427. o32.FormFactor = Enum.FormFactor.Custom
  6428. o32.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6429. 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)
  6430. o32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6431. o32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6432. o32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6433. o32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6434. o32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6435. o32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6436. o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6437. o33.Parent = o32
  6438. o33.Scale = Vector3.new(0.151499987, 0.180000007, 0.299999982)
  6439. o34.Name = "IRONSIGHT"
  6440. o34.Parent = o1
  6441. o34.Material = Enum.Material.SmoothPlastic
  6442. o34.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6443. o34.Position = Vector3.new(-45.0519753, 2.68981695, -23.0199947)
  6444. o34.Rotation = Vector3.new(1.01777712e-012, 90, 0)
  6445. o34.Anchored = true
  6446. o34.FormFactor = Enum.FormFactor.Custom
  6447. o34.Size = Vector3.new(0.200000003, 0.200000003, 0.720000029)
  6448. 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)
  6449. o34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6450. o34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6451. o34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6452. o34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6453. o34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6454. o34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6455. o34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6456. o35.Parent = o34
  6457. o35.Scale = Vector3.new(0.599999964, 0.180000007, 1)
  6458. o36.Name = "IRONSIGHT"
  6459. o36.Parent = o1
  6460. o36.Material = Enum.Material.SmoothPlastic
  6461. o36.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6462. o36.Position = Vector3.new(-44.6529884, 2.67176604, -23.02001)
  6463. o36.Rotation = Vector3.new(89.999939, -26.9998341, 90.0000153)
  6464. o36.Anchored = true
  6465. o36.FormFactor = Enum.FormFactor.Custom
  6466. o36.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6467. 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)
  6468. o36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6469. o36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6470. o36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6471. o36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6472. o36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6473. o36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6474. o36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6475. o37.Parent = o36
  6476. o37.Offset = Vector3.new(0, -0.0057000001, 0.00329999998)
  6477. o37.Scale = Vector3.new(0.599999964, 0.566999972, 0.180000007)
  6478. o38.Name = "IRONSIGHT"
  6479. o38.Parent = o1
  6480. o38.Material = Enum.Material.SmoothPlastic
  6481. o38.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6482. o38.Position = Vector3.new(-44.6619835, 2.53976989, -23.02001)
  6483. o38.Rotation = Vector3.new(90, 2.72386387e-006, 90.0000076)
  6484. o38.Anchored = true
  6485. o38.FormFactor = Enum.FormFactor.Custom
  6486. o38.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6487. 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)
  6488. o38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6489. o38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6490. o38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6491. o38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6492. o38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6493. o38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6494. o38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6495. o39.Parent = o38
  6496. o39.Scale = Vector3.new(0.599999964, 0.180000007, 0.299999982)
  6497. o39.MeshType = Enum.MeshType.Wedge
  6498. o40.Name = "Zoom"
  6499. o40.Parent = o1
  6500. o40.Material = Enum.Material.SmoothPlastic
  6501. o40.Transparency = 1
  6502. o40.Position = Vector3.new(-45.7273788, 2.75334311, -23.0179634)
  6503. o40.Rotation = Vector3.new(-90, -88.876564, -90)
  6504. o40.Anchored = true
  6505. o40.FormFactor = Enum.FormFactor.Custom
  6506. o40.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6507. o40.CFrame = CFrame.new(-45.7273788, 2.75334311, -23.0179634, 0, 0.0196069945, -0.999807775, 0, 0.999807775, 0.0196069926, 1, 0, 0)
  6508. o40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6509. o40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6510. o40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6511. o40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6512. o40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6513. o40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6514. o41.Parent = o40
  6515. o41.Scale = Vector3.new(0.142307684, 0.170769244, 0.284615368)
  6516. o42.Name = "IRONSIGHT"
  6517. o42.Parent = o1
  6518. o42.Material = Enum.Material.SmoothPlastic
  6519. o42.BrickColor = BrickColor.new(CUSTOMCOLOR)
  6520. o42.Position = Vector3.new(-45.1359749, 2.73778296, -23.0650082)
  6521. o42.Rotation = Vector3.new(90, 9.07952369e-007, -89.9999924)
  6522. o42.Anchored = true
  6523. o42.FormFactor = Enum.FormFactor.Custom
  6524. o42.Size = Vector3.new(0.200000003, 0.864000022, 0.200000003)
  6525. 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)
  6526. o42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6527. o42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6528. o42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6529. o42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6530. o42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6531. o42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6532. o42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6533. o43.Parent = o42
  6534. o43.Scale = Vector3.new(0.149999991, 1, 0.329999983)
  6535. o43.MeshType = Enum.MeshType.Wedge
  6536. ZoomFOV = 70
  6537. end
  6538. function onKeyDown(key)
  6539. key:lower()
  6540. if key == "f" and FlashLight == true then
  6541. if o1.LIGHT.LIGHT.Enabled == false then
  6542. o1.LIGHT.LIGHT.Enabled = true
  6543. else
  6544. o1.LIGHT.LIGHT.Enabled = false
  6545. end
  6546. end
  6547. if key == "q" then
  6548. local check = o1:findFirstChild("ZoomedIn")
  6549. if check.Value == true then
  6550. game.workspace.Camera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid
  6551. game.workspace.Camera.FieldOfView = 70
  6552. game.workspace.Camera.CameraType = g
  6553. check.Value = false
  6554. else
  6555. zoomb = o1.Zoom
  6556. game.workspace.Camera.CameraSubject = zoomb
  6557. game.workspace.Camera.FieldOfView = ZoomFOV
  6558. game.workspace.Camera.CameraType = 1
  6559. check.Value = true
  6560. end
  6561. end
  6562. end
  6563.  
  6564.  
  6565. function onS(mouse)
  6566. mouse.KeyDown:connect(onKeyDown)
  6567. end
  6568. for i,v in pairs (o1:GetChildren()) do
  6569. if v:IsA("Part") or v:IsA("WedgePart") then
  6570. v.Material = "SmoothPlastic"
  6571. v.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6572. v.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6573. v.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6574. v.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6575. v.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6576. v.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6577. if v.BrickColor == BrickColor.new("Really black") then
  6578. v.BrickColor = BrickColor.New(CUSTOMCOLOR)
  6579. end
  6580. end
  6581. end
  6582.  
  6583. o1.Equipped:connect(onS)
  6584.  
  6585. o1.Parent = game.Players.LocalPlayer.Backpack
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement