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