View difference between Paste ID: Jfq66Mfy and jkmbKNUF
SHOW: | | - or go back to the newest paste.
1
-- This script has convert to FE by who i don't know?
2
3
-----------------------------------------------------
4
if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
5
local Player,game,owner = owner,game
6
local RealPlayer = Player
7
do
8
    print("FE Compatibility code by Mokiros | Showcase by Bacon Hair!")
9
    local rp = RealPlayer
10
    script.Parent = rp.Character
11
   
12
    --RemoteEvent for communicating
13
    local Event = Instance.new("RemoteEvent")
14
    Event.Name = "UserInput_Event"
15
 
16
    --Fake event to make stuff like Mouse.KeyDown work
17
    local function fakeEvent()
18
        local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
19
        t.connect = t.Connect
20
        return t
21
    end
22
 
23
    --Creating fake input objects with fake variables
24
    local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
25
    local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
26
    local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
27
        CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
28
    end}
29
    --Merged 2 functions into one by checking amount of arguments
30
    CAS.UnbindAction = CAS.BindAction
31
 
32
    --This function will trigger the events that have been :Connect()'ed
33
    local function te(self,ev,...)
34
        local t = m[ev]
35
        if t and t._fakeEvent then
36
            for _,f in pairs(t.Functions) do
37
                f(...)
38
            end
39
        end
40
    end
41
    m.TrigEvent = te
42
    UIS.TrigEvent = te
43
 
44
    Event.OnServerEvent:Connect(function(plr,io)
45
        if plr~=rp then return end
46
        m.Target = io.Target
47
        m.Hit = io.Hit
48
        if not io.isMouse then
49
            local b = io.UserInputState == Enum.UserInputState.Begin
50
            if io.UserInputType == Enum.UserInputType.MouseButton1 then
51
                return m:TrigEvent(b and "Button1Down" or "Button1Up")
52
            end
53
            for _,t in pairs(CAS.Actions) do
54
                for _,k in pairs(t.Keys) do
55
                    if k==io.KeyCode then
56
                        t.Function(t.Name,io.UserInputState,io)
57
                    end
58
                end
59
            end
60
            m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
61
            UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
62
        end
63
    end)
64
    Event.Parent = NLS([==[
65
    local Player = game:GetService("Players").LocalPlayer
66
    local Event = script:WaitForChild("UserInput_Event")
67
 
68
    local Mouse = Player:GetMouse()
69
    local UIS = game:GetService("UserInputService")
70
    local input = function(io,a)
71
        if a then return end
72
        --Since InputObject is a client-side instance, we create and pass table instead
73
        Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
74
    end
75
    UIS.InputBegan:Connect(input)
76
    UIS.InputEnded:Connect(input)
77
 
78
    local h,t
79
    --Give the server mouse data 30 times every second, but only if the values changed
80
    --If player is not moving their mouse, client won't fire events
81
    while wait(1/30) do
82
        if h~=Mouse.Hit or t~=Mouse.Target then
83
            h,t=Mouse.Hit,Mouse.Target
84
            Event:FireServer({isMouse=true,Target=t,Hit=h})
85
        end
86
    end]==],Player.Character)
87
 
88
    ----Sandboxed game object that allows the usage of client-side methods and services
89
    --Real game object
90
    local _rg = game
91
 
92
    --Metatable for fake service
93
    local fsmt = {
94
        __index = function(self,k)
95
            local s = rawget(self,"_RealService")
96
            if s then return s[k] end
97
        end,
98
        __newindex = function(self,k,v)
99
            local s = rawget(self,"_RealService")
100
            if s then s[k]=v end
101
        end,
102
        __call = function(self,...)
103
            local s = rawget(self,"_RealService")
104
            if s then return s(...) end
105
        end
106
    }
107
    local function FakeService(t,RealService)
108
        t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService
109
        return setmetatable(t,fsmt)
110
    end
111
 
112
    --Fake game object
113
    local g = {
114
        GetService = function(self,s)
115
            return self[s]
116
        end,
117
        Players = FakeService({
118
            LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
119
        },"Players"),
120
        UserInputService = FakeService(UIS,"UserInputService"),
121
        ContextActionService = FakeService(CAS,"ContextActionService"),
122
    }
123
    rawset(g.Players,"localPlayer",g.Players.LocalPlayer)
124
    g.service = g.GetService
125
   
126
    g.RunService = FakeService({
127
        RenderStepped = _rg:GetService("RunService").Heartbeat,
128
        BindToRenderStep = function(self,name,_,fun)
129
 
130
        end,
131
        UnbindFromRenderStep = function(self,name)
132
            self._btrs[name]:Disconnect()
133
        end,
134
    },"RunService")
135
 
136
    setmetatable(g,{
137
        __index=function(self,s)
138
            return _rg:GetService(s) or typeof(_rg[s])=="function"
139
            and function(_,...)return _rg[s](_rg,...)end or _rg[s]
140
        end,
141
        __newindex = fsmt.__newindex,
142
        __call = fsmt.__call
143
    })
144
    --Changing owner to fake player object to support owner:GetMouse()
145
    game,owner = g,g.Players.LocalPlayer
146
end
147
--created by Intensivelake39 YT bad#5159 discord
148
function sandbox(var,func)
149
	local env = getfenv(func)
150
	local newenv = setmetatable({},{
151
		__index = function(self,k)
152
			if k=="script" then
153
				return var
154
			else
155
				return env[k]
156
			end
157
		end,
158
	})
159
	setfenv(func,newenv)
160
	return func
161
end
162
cors = {}
163
mas = Instance.new("Model",game:GetService("Lighting"))
164
Model0 = Instance.new("Model")
165
Model1 = Instance.new("Model")
166
Part2 = Instance.new("Part")
167
Decal3 = Instance.new("Decal")
168
Decal4 = Instance.new("Decal")
169
Part5 = Instance.new("Part")
170
SpecialMesh6 = Instance.new("SpecialMesh")
171
Part7 = Instance.new("Part")
172
SpecialMesh8 = Instance.new("SpecialMesh")
173
Part9 = Instance.new("Part")
174
SpecialMesh10 = Instance.new("SpecialMesh")
175
Part11 = Instance.new("Part")
176
Fire12 = Instance.new("Fire")
177
Smoke13 = Instance.new("Smoke")
178
Part14 = Instance.new("Part")
179
SpecialMesh15 = Instance.new("SpecialMesh")
180
Part16 = Instance.new("Part")
181
Part17 = Instance.new("Part")
182
Part18 = Instance.new("Part")
183
SpecialMesh19 = Instance.new("SpecialMesh")
184
Part20 = Instance.new("Part")
185
SpecialMesh21 = Instance.new("SpecialMesh")
186
Part22 = Instance.new("Part")
187
SpecialMesh23 = Instance.new("SpecialMesh")
188
Part24 = Instance.new("Part")
189
SpecialMesh25 = Instance.new("SpecialMesh")
190
Part26 = Instance.new("Part")
191
SpecialMesh27 = Instance.new("SpecialMesh")
192
Part28 = Instance.new("Part")
193
SpecialMesh29 = Instance.new("SpecialMesh")
194
Part30 = Instance.new("Part")
195
SpecialMesh31 = Instance.new("SpecialMesh")
196
Part32 = Instance.new("Part")
197
SpecialMesh33 = Instance.new("SpecialMesh")
198
Part34 = Instance.new("Part")
199
SpecialMesh35 = Instance.new("SpecialMesh")
200
Part36 = Instance.new("Part")
201
SpecialMesh37 = Instance.new("SpecialMesh")
202
Script38 = Instance.new("Script")
203
Part39 = Instance.new("Part")
204
Part40 = Instance.new("Part")
205
Model41 = Instance.new("Model")
206
Part42 = Instance.new("Part")
207
SpotLight43 = Instance.new("SpotLight")
208
Part44 = Instance.new("Part")
209
SpotLight45 = Instance.new("SpotLight")
210
Part46 = Instance.new("Part")
211
SpotLight47 = Instance.new("SpotLight")
212
Part48 = Instance.new("Part")
213
SpotLight49 = Instance.new("SpotLight")
214
Part50 = Instance.new("Part")
215
Part51 = Instance.new("Part")
216
Part52 = Instance.new("Part")
217
Part53 = Instance.new("Part")
218
Part54 = Instance.new("Part")
219
Part55 = Instance.new("Part")
220
Part56 = Instance.new("Part")
221
Part57 = Instance.new("Part")
222
Part58 = Instance.new("Part")
223
Part59 = Instance.new("Part")
224
Part60 = Instance.new("Part")
225
Part61 = Instance.new("Part")
226
Part62 = Instance.new("Part")
227
Part63 = Instance.new("Part")
228
ClickDetector64 = Instance.new("ClickDetector")
229
Sound65 = Instance.new("Sound")
230
Sound66 = Instance.new("Sound")
231
Sound67 = Instance.new("Sound")
232
Sound68 = Instance.new("Sound")
233
Script69 = Instance.new("Script")
234
Model0.Name = "Nuke"
235
Model0.Parent = mas
236
Model1.Name = "Missle"
237
Model1.Parent = Model0
238
Part2.Name = "Smooth Block Model"
239
Part2.Parent = Model1
240
Part2.Material = Enum.Material.Granite
241
Part2.BrickColor = BrickColor.new("Maroon")
242
Part2.Transparency = 1
243
Part2.Rotation = Vector3.new(180, 0, -90)
244
Part2.Anchored = true
245
Part2.FormFactor = Enum.FormFactor.Symmetric
246
Part2.Shape = Enum.PartType.Cylinder
247
Part2.Size = Vector3.new(12.7264223, 12.7264223, 12.7264223)
248
Part2.CFrame = CFrame.new(-41.6727715, 38.1929321, -1.01828945, 0, 1, 0, 1, 0, -1.23760116e-17, 1.23760116e-17, 0, -1)
249
Part2.BottomSurface = Enum.SurfaceType.Smooth
250
Part2.TopSurface = Enum.SurfaceType.Smooth
251
Part2.Color = Color3.new(0.458824, 0, 0)
252
Part2.Position = Vector3.new(-41.6727715, 38.1929321, -1.01828945)
253
Part2.Orientation = Vector3.new(0, 180, 90)
254
Part2.Color = Color3.new(0.458824, 0, 0)
255
Decal3.Parent = Part2
256
Decal3.Transparency = 0.5
257
Decal3.Texture = "http://www.roblox.com/asset/?id=199426439"
258
Decal3.Face = Enum.NormalId.Bottom
259
Decal4.Parent = Part2
260
Decal4.Transparency = 0.5
261
Decal4.Texture = "http://www.roblox.com/asset/?id=199426439"
262
Decal4.Face = Enum.NormalId.Top
263
Part5.Name = "Smooth Block Model"
264
Part5.Parent = Model1
265
Part5.Material = Enum.Material.Granite
266
Part5.BrickColor = BrickColor.new("Maroon")
267
Part5.Transparency = 1
268
Part5.Rotation = Vector3.new(180, -90, 0)
269
Part5.Anchored = true
270
Part5.FormFactor = Enum.FormFactor.Custom
271
Part5.Size = Vector3.new(12.7264223, 5.09056902, 12.7264223)
272
Part5.CFrame = CFrame.new(-41.6727715, 19.1029396, -1.01828945, 0, 0, -1, -1.23760116e-17, -1, 0, -1, -1.23760116e-17, 0)
273
Part5.BottomSurface = Enum.SurfaceType.Smooth
274
Part5.TopSurface = Enum.SurfaceType.Smooth
275
Part5.Color = Color3.new(0.458824, 0, 0)
276
Part5.Position = Vector3.new(-41.6727715, 19.1029396, -1.01828945)
277
Part5.Orientation = Vector3.new(0, -90, -180)
278
Part5.Color = Color3.new(0.458824, 0, 0)
279
SpecialMesh6.Parent = Part5
280
SpecialMesh6.Scale = Vector3.new(1, 2.79999995, 1)
281
SpecialMesh6.MeshType = Enum.MeshType.Sphere
282
SpecialMesh6.Scale = Vector3.new(1, 2.79999995, 1)
283
Part7.Name = "Smooth Block Model"
284
Part7.Parent = Model1
285
Part7.Material = Enum.Material.Granite
286
Part7.BrickColor = BrickColor.new("Maroon")
287
Part7.Transparency = 1
288
Part7.Rotation = Vector3.new(0, -90, 0)
289
Part7.Anchored = true
290
Part7.FormFactor = Enum.FormFactor.Custom
291
Part7.Size = Vector3.new(6.36321115, 7.63585377, 5.09056902)
292
Part7.CFrame = CFrame.new(-35.9458847, 10.1944962, -1.0182879, 0, 0, -1, 1.23760116e-17, 1, 0, 1, 1.23760116e-17, 0)
293
Part7.BottomSurface = Enum.SurfaceType.Smooth
294
Part7.TopSurface = Enum.SurfaceType.Smooth
295
Part7.Color = Color3.new(0.458824, 0, 0)
296
Part7.Position = Vector3.new(-35.9458847, 10.1944962, -1.0182879)
297
Part7.Orientation = Vector3.new(0, -90, 0)
298
Part7.Color = Color3.new(0.458824, 0, 0)
299
SpecialMesh8.Parent = Part7
300
SpecialMesh8.Scale = Vector3.new(0.200000003, 1, 1)
301
SpecialMesh8.MeshType = Enum.MeshType.Wedge
302
SpecialMesh8.Scale = Vector3.new(0.200000003, 1, 1)
303
Part9.Name = "Smooth Block Model"
304
Part9.Parent = Model1
305
Part9.Material = Enum.Material.Granite
306
Part9.BrickColor = BrickColor.new("Maroon")
307
Part9.Transparency = 1
308
Part9.Rotation = Vector3.new(90, 0, 90)
309
Part9.Anchored = true
310
Part9.FormFactor = Enum.FormFactor.Custom
311
Part9.Size = Vector3.new(6.36321115, 3.81792688, 6.36321115)
312
Part9.CFrame = CFrame.new(-36.5822067, 3.19161606, -1.0182879, 0, -1, 0, 1.23760116e-17, 0, -1, 1, 0, -1.23760116e-17)
313
Part9.BottomSurface = Enum.SurfaceType.Smooth
314
Part9.TopSurface = Enum.SurfaceType.Smooth
315
Part9.Color = Color3.new(0.458824, 0, 0)
316
Part9.Position = Vector3.new(-36.5822067, 3.19161606, -1.0182879)
317
Part9.Orientation = Vector3.new(90, -90, 0)
318
Part9.Color = Color3.new(0.458824, 0, 0)
319
SpecialMesh10.Parent = Part9
320
SpecialMesh10.Scale = Vector3.new(0.200000003, 1, 1)
321
SpecialMesh10.MeshType = Enum.MeshType.Brick
322
SpecialMesh10.Scale = Vector3.new(0.200000003, 1, 1)
323
Part11.Name = "Base"
324
Part11.Parent = Model1
325
Part11.Material = Enum.Material.Granite
326
Part11.BrickColor = BrickColor.new("Maroon")
327
Part11.Transparency = 1
328
Part11.Rotation = Vector3.new(180, 0, 90)
329
Part11.Anchored = true
330
Part11.FormFactor = Enum.FormFactor.Symmetric
331
Part11.Shape = Enum.PartType.Cylinder
332
Part11.Size = Vector3.new(6.36321115, 6.36321115, 6.36321115)
333
Part11.CFrame = CFrame.new(-41.6727715, 3.19161606, -1.01828945, 0, -1, 0, -1, 0, -1.23760116e-17, -1.23760116e-17, 0, -1)
334
Part11.BottomSurface = Enum.SurfaceType.Smooth
335
Part11.TopSurface = Enum.SurfaceType.Smooth
336
Part11.Color = Color3.new(0.458824, 0, 0)
337
Part11.Position = Vector3.new(-41.6727715, 3.19161606, -1.01828945)
338
Part11.Orientation = Vector3.new(0, 180, -90)
339
Part11.Color = Color3.new(0.458824, 0, 0)
340
Fire12.Parent = Part11
341
Fire12.Size = 10
342
Fire12.Color = Color3.new(0.92549, 0.545098, 0.27451)
343
Fire12.Enabled = false
344
Fire12.Heat = 0
345
Fire12.Color = Color3.new(0.92549, 0.545098, 0.27451)
346
Smoke13.Parent = Part11
347
Smoke13.Enabled = false
348
Smoke13.Opacity = 0.10000000149012
349
Part14.Name = "Smooth Block Model"
350
Part14.Parent = Model1
351
Part14.Material = Enum.Material.Granite
352
Part14.BrickColor = BrickColor.new("Maroon")
353
Part14.Transparency = 1
354
Part14.Rotation = Vector3.new(180, 0, -90)
355
Part14.Anchored = true
356
Part14.FormFactor = Enum.FormFactor.Custom
357
Part14.Size = Vector3.new(6.36321115, 1.27264225, 12.7264223)
358
Part14.CFrame = CFrame.new(-34.036911, 3.19161606, -1.0182879, 0, 1, 0, 1, 0, -1.23760116e-17, 1.23760116e-17, 0, -1)
359
Part14.BottomSurface = Enum.SurfaceType.Smooth
360
Part14.TopSurface = Enum.SurfaceType.Smooth
361
Part14.Color = Color3.new(0.458824, 0, 0)
362
Part14.Position = Vector3.new(-34.036911, 3.19161606, -1.0182879)
363
Part14.Orientation = Vector3.new(0, 180, 90)
364
Part14.Color = Color3.new(0.458824, 0, 0)
365
SpecialMesh15.Parent = Part14
366
SpecialMesh15.Scale = Vector3.new(1, 1, 1.29999995)
367
SpecialMesh15.MeshType = Enum.MeshType.Brick
368
SpecialMesh15.Scale = Vector3.new(1, 1, 1.29999995)
369
Part16.Name = "Smooth Block Model"
370
Part16.Parent = Model1
371
Part16.Material = Enum.Material.Granite
372
Part16.BrickColor = BrickColor.new("Maroon")
373
Part16.Rotation = Vector3.new(180, 0, -90)
374
Part16.Transparency = 1
375
Part16.Anchored = true
376
Part16.FormFactor = Enum.FormFactor.Symmetric
377
Part16.Shape = Enum.PartType.Cylinder
378
Part16.Size = Vector3.new(12.7264223, 12.7264223, 12.7264223)
379
Part16.CFrame = CFrame.new(-41.6727715, 25.4662247, -1.01828945, 0, 1, 0, 1, 0, -1.23760116e-17, 1.23760116e-17, 0, -1)
380
Part16.BottomSurface = Enum.SurfaceType.Smooth
381
Part16.TopSurface = Enum.SurfaceType.Smooth
382
Part16.Color = Color3.new(0.458824, 0, 0)
383
Part16.Position = Vector3.new(-41.6727715, 25.4662247, -1.01828945)
384
Part16.Orientation = Vector3.new(0, 180, 90)
385
Part16.Color = Color3.new(0.458824, 0, 0)
386
Part17.Name = "Smooth Block Model"
387
Part17.Parent = Model1
388
Part17.Material = Enum.Material.Granite
389
Part17.BrickColor = BrickColor.new("Maroon")
390
Part17.Rotation = Vector3.new(180, 0, 90)
391
Part17.Transparency = 1
392
Part17.Anchored = true
393
Part17.FormFactor = Enum.FormFactor.Symmetric
394
Part17.Shape = Enum.PartType.Cylinder
395
Part17.Size = Vector3.new(6.36321115, 6.36321115, 6.36321115)
396
Part17.CFrame = CFrame.new(-41.6727715, 9.55810547, -1.01828945, 0, -1, 0, -1, 0, -1.23760116e-17, -1.23760116e-17, 0, -1)
397
Part17.BottomSurface = Enum.SurfaceType.Smooth
398
Part17.TopSurface = Enum.SurfaceType.Smooth
399
Part17.Color = Color3.new(0.458824, 0, 0)
400
Part17.Position = Vector3.new(-41.6727715, 9.55810547, -1.01828945)
401
Part17.Orientation = Vector3.new(0, 180, -90)
402
Part17.Color = Color3.new(0.458824, 0, 0)
403
Part18.Name = "Smooth Block Model"
404
Part18.Parent = Model1
405
Part18.Material = Enum.Material.Granite
406
Part18.BrickColor = BrickColor.new("Maroon")
407
Part18.Transparency = 1
408
Part18.Rotation = Vector3.new(180, 0, -180)
409
Part18.Anchored = true
410
Part18.FormFactor = Enum.FormFactor.Custom
411
Part18.Size = Vector3.new(6.36321115, 7.63585377, 5.09056902)
412
Part18.CFrame = CFrame.new(-41.6727715, 10.1944962, 4.70861149, -1, 0, 0, 0, 1, -1.23760116e-17, 0, 1.23760116e-17, -1)
413
Part18.BottomSurface = Enum.SurfaceType.Smooth
414
Part18.TopSurface = Enum.SurfaceType.Smooth
415
Part18.Color = Color3.new(0.458824, 0, 0)
416
Part18.Position = Vector3.new(-41.6727715, 10.1944962, 4.70861149)
417
Part18.Orientation = Vector3.new(0, 180, 0)
418
Part18.Color = Color3.new(0.458824, 0, 0)
419
SpecialMesh19.Parent = Part18
420
SpecialMesh19.Scale = Vector3.new(0.200000003, 1, 1)
421
SpecialMesh19.MeshType = Enum.MeshType.Wedge
422
SpecialMesh19.Scale = Vector3.new(0.200000003, 1, 1)
423
Part20.Name = "Smooth Block Model"
424
Part20.Parent = Model1
425
Part20.Material = Enum.Material.Granite
426
Part20.BrickColor = BrickColor.new("Maroon")
427
Part20.Transparency = 1
428
Part20.Rotation = Vector3.new(90, 0, 0)
429
Part20.Anchored = true
430
Part20.FormFactor = Enum.FormFactor.Custom
431
Part20.Size = Vector3.new(6.36321115, 3.81792688, 6.36321115)
432
Part20.CFrame = CFrame.new(-41.6727676, 3.19161606, -6.10888004, 1, 0, 0, 0, 1.23760116e-17, -1, 0, 1, -1.23760116e-17)
433
Part20.BottomSurface = Enum.SurfaceType.Smooth
434
Part20.TopSurface = Enum.SurfaceType.Smooth
435
Part20.Color = Color3.new(0.458824, 0, 0)
436
Part20.Position = Vector3.new(-41.6727676, 3.19161606, -6.10888004)
437
Part20.Orientation = Vector3.new(90, 0, 0)
438
Part20.Color = Color3.new(0.458824, 0, 0)
439
SpecialMesh21.Parent = Part20
440
SpecialMesh21.Scale = Vector3.new(0.200000003, 1, 1)
441
SpecialMesh21.MeshType = Enum.MeshType.Brick
442
SpecialMesh21.Scale = Vector3.new(0.200000003, 1, 1)
443
Part22.Name = "Smooth Block Model"
444
Part22.Parent = Model1
445
Part22.Material = Enum.Material.Granite
446
Part22.BrickColor = BrickColor.new("Maroon")
447
Part22.Transparency = 1
448
Part22.Rotation = Vector3.new(0, 90, 0)
449
Part22.Anchored = true
450
Part22.FormFactor = Enum.FormFactor.Custom
451
Part22.Size = Vector3.new(6.36321115, 7.63585377, 5.09056902)
452
Part22.CFrame = CFrame.new(-47.3996544, 10.1944962, -1.01828945, 0, 0, 1, -1.23760116e-17, 1, 0, -1, 1.23760116e-17, 0)
453
Part22.BottomSurface = Enum.SurfaceType.Smooth
454
Part22.TopSurface = Enum.SurfaceType.Smooth
455
Part22.Color = Color3.new(0.458824, 0, 0)
456
Part22.Position = Vector3.new(-47.3996544, 10.1944962, -1.01828945)
457
Part22.Orientation = Vector3.new(0, 90, 0)
458
Part22.Color = Color3.new(0.458824, 0, 0)
459
SpecialMesh23.Parent = Part22
460
SpecialMesh23.Scale = Vector3.new(0.200000003, 1, 1)
461
SpecialMesh23.MeshType = Enum.MeshType.Wedge
462
SpecialMesh23.Scale = Vector3.new(0.200000003, 1, 1)
463
Part24.Name = "Smooth Block Model"
464
Part24.Parent = Model1
465
Part24.Material = Enum.Material.Granite
466
Part24.BrickColor = BrickColor.new("Maroon")
467
Part24.Anchored = true
468
Part24.Transparency = 1
469
Part24.FormFactor = Enum.FormFactor.Custom
470
Part24.Size = Vector3.new(6.36321115, 7.63585377, 5.09056902)
471
Part24.CFrame = CFrame.new(-41.6727676, 10.1944962, -6.74519205, 1, 0, 0, 0, 1, 1.23760116e-17, 0, 1.23760116e-17, 1)
472
Part24.BottomSurface = Enum.SurfaceType.Smooth
473
Part24.TopSurface = Enum.SurfaceType.Smooth
474
Part24.Color = Color3.new(0.458824, 0, 0)
475
Part24.Position = Vector3.new(-41.6727676, 10.1944962, -6.74519205)
476
Part24.Color = Color3.new(0.458824, 0, 0)
477
SpecialMesh25.Parent = Part24
478
SpecialMesh25.Scale = Vector3.new(0.200000003, 1, 1)
479
SpecialMesh25.MeshType = Enum.MeshType.Wedge
480
SpecialMesh25.Scale = Vector3.new(0.200000003, 1, 1)
481
Part26.Name = "Smooth Block Model"
482
Part26.Parent = Model1
483
Part26.Material = Enum.Material.Granite
484
Part26.BrickColor = BrickColor.new("Maroon")
485
Part26.Rotation = Vector3.new(-90, 90, 0)
486
Part26.Transparency = 1
487
Part26.Anchored = true
488
Part26.FormFactor = Enum.FormFactor.Custom
489
Part26.Size = Vector3.new(6.36321115, 1.27264225, 12.7264223)
490
Part26.CFrame = CFrame.new(-41.6727676, 3.19161606, -8.65412521, 0, 0, 1, -1, -1.23760116e-17, 0, -1.23760116e-17, -1, 0)
491
Part26.BottomSurface = Enum.SurfaceType.Smooth
492
Part26.TopSurface = Enum.SurfaceType.Smooth
493
Part26.Color = Color3.new(0.458824, 0, 0)
494
Part26.Position = Vector3.new(-41.6727676, 3.19161606, -8.65412521)
495
Part26.Orientation = Vector3.new(0, 90, -90)
496
Part26.Color = Color3.new(0.458824, 0, 0)
497
SpecialMesh27.Parent = Part26
498
SpecialMesh27.Scale = Vector3.new(1, 1, 1.29999995)
499
SpecialMesh27.MeshType = Enum.MeshType.Brick
500
SpecialMesh27.Scale = Vector3.new(1, 1, 1.29999995)
501
Part28.Name = "Smooth Block Model"
502
Part28.Parent = Model1
503
Part28.Material = Enum.Material.Granite
504
Part28.BrickColor = BrickColor.new("Maroon")
505
Part28.Transparency = 1
506
Part28.Rotation = Vector3.new(90, 90, 0)
507
Part28.Anchored = true
508
Part28.FormFactor = Enum.FormFactor.Custom
509
Part28.Size = Vector3.new(6.36321115, 1.27264225, 12.7264223)
510
Part28.CFrame = CFrame.new(-41.6727715, 3.19161606, 6.61754513, 0, 0, 1, 1, 1.23760116e-17, 0, 1.23760116e-17, 1, 0)
511
Part28.BottomSurface = Enum.SurfaceType.Smooth
512
Part28.TopSurface = Enum.SurfaceType.Smooth
513
Part28.Color = Color3.new(0.458824, 0, 0)
514
Part28.Position = Vector3.new(-41.6727715, 3.19161606, 6.61754513)
515
Part28.Orientation = Vector3.new(0, 90, 90)
516
Part28.Color = Color3.new(0.458824, 0, 0)
517
SpecialMesh29.Parent = Part28
518
SpecialMesh29.Scale = Vector3.new(1, 1, 1.29999995)
519
SpecialMesh29.MeshType = Enum.MeshType.Brick
520
SpecialMesh29.Scale = Vector3.new(1, 1, 1.29999995)
521
Part30.Name = "Smooth Block Model"
522
Part30.Parent = Model1
523
Part30.Material = Enum.Material.Granite
524
Part30.BrickColor = BrickColor.new("Maroon")
525
Part30.Transparency = 1
526
Part30.Rotation = Vector3.new(90, 0, 0)
527
Part30.Anchored = true
528
Part30.FormFactor = Enum.FormFactor.Custom
529
Part30.Size = Vector3.new(6.36321115, 3.81792688, 6.36321115)
530
Part30.CFrame = CFrame.new(-41.6727715, 3.19161606, 4.072299, 1, 0, 0, 0, 1.23760116e-17, -1, 0, 1, -1.23760116e-17)
531
Part30.BottomSurface = Enum.SurfaceType.Smooth
532
Part30.TopSurface = Enum.SurfaceType.Smooth
533
Part30.Color = Color3.new(0.458824, 0, 0)
534
Part30.Position = Vector3.new(-41.6727715, 3.19161606, 4.072299)
535
Part30.Orientation = Vector3.new(90, 0, 0)
536
Part30.Color = Color3.new(0.458824, 0, 0)
537
SpecialMesh31.Parent = Part30
538
SpecialMesh31.Scale = Vector3.new(0.200000003, 1, 1)
539
SpecialMesh31.MeshType = Enum.MeshType.Brick
540
SpecialMesh31.Scale = Vector3.new(0.200000003, 1, 1)
541
Part32.Name = "Smooth Block Model"
542
Part32.Parent = Model1
543
Part32.Material = Enum.Material.Granite
544
Part32.BrickColor = BrickColor.new("Maroon")
545
Part32.Transparency = 1
546
Part32.Rotation = Vector3.new(90, 0, 90)
547
Part32.Anchored = true
548
Part32.FormFactor = Enum.FormFactor.Custom
549
Part32.Size = Vector3.new(6.36321115, 3.81792688, 6.36321115)
550
Part32.CFrame = CFrame.new(-46.7633286, 3.19161606, -1.01828945, 0, -1, 0, 1.23760116e-17, 0, -1, 1, 0, -1.23760116e-17)
551
Part32.BottomSurface = Enum.SurfaceType.Smooth
552
Part32.TopSurface = Enum.SurfaceType.Smooth
553
Part32.Color = Color3.new(0.458824, 0, 0)
554
Part32.Position = Vector3.new(-46.7633286, 3.19161606, -1.01828945)
555
Part32.Orientation = Vector3.new(90, -90, 0)
556
Part32.Color = Color3.new(0.458824, 0, 0)
557
SpecialMesh33.Parent = Part32
558
SpecialMesh33.Scale = Vector3.new(0.200000003, 1, 1)
559
SpecialMesh33.MeshType = Enum.MeshType.Brick
560
SpecialMesh33.Scale = Vector3.new(0.200000003, 1, 1)
561
Part34.Name = "Smooth Block Model"
562
Part34.Parent = Model1
563
Part34.Material = Enum.Material.Granite
564
Part34.BrickColor = BrickColor.new("Maroon")
565
Part34.Rotation = Vector3.new(180, 0, 90)
566
Part34.Transparency = 1
567
Part34.Anchored = true
568
Part34.FormFactor = Enum.FormFactor.Custom
569
Part34.Size = Vector3.new(6.36321115, 1.27264225, 12.7264223)
570
Part34.CFrame = CFrame.new(-49.3086243, 3.19161606, -1.01828945, 0, -1, 0, -1, 0, -1.23760116e-17, -1.23760116e-17, 0, -1)
571
Part34.BottomSurface = Enum.SurfaceType.Smooth
572
Part34.TopSurface = Enum.SurfaceType.Smooth
573
Part34.Color = Color3.new(0.458824, 0, 0)
574
Part34.Position = Vector3.new(-49.3086243, 3.19161606, -1.01828945)
575
Part34.Orientation = Vector3.new(0, 180, -90)
576
Part34.Color = Color3.new(0.458824, 0, 0)
577
SpecialMesh35.Parent = Part34
578
SpecialMesh35.Scale = Vector3.new(1, 1, 1.29999995)
579
SpecialMesh35.MeshType = Enum.MeshType.Brick
580
SpecialMesh35.Scale = Vector3.new(1, 1, 1.29999995)
581
Part36.Name = "Tip"
582
Part36.Parent = Model1
583
Part36.Material = Enum.Material.Granite
584
Part36.BrickColor = BrickColor.new("Really red")
585
Part36.Reflectance = 0.20000000298023
586
Part36.Rotation = Vector3.new(180, 0, -180)
587
Part36.Anchored = true
588
Part36.FormFactor = Enum.FormFactor.Custom
589
Part36.Size = Vector3.new(12.7264223, 4.77240849, 12.7264223)
590
Part36.CFrame = CFrame.new(-41.673, 58.399, -1.018) 
591
Part36.BottomSurface = Enum.SurfaceType.Smooth
592
Part36.TopSurface = Enum.SurfaceType.Smooth
593
Part36.Color = Color3.new(1, 0, 0)
594
Part36.Position = Vector3.new(-41.6727715, 58.3993492, -1.01828945)
595
Part36.Orientation = Vector3.new(90, 0, 0)
596
Part36.Color = Color3.new(1, 0, 0)
597
SpecialMesh37.Parent = Part36
598
SpecialMesh37.Scale = Vector3.new(1, 5, 1)
599
SpecialMesh37.MeshType = Enum.MeshType.FileMesh
600
SpecialMesh37.MeshId = "http://www.roblox.com/asset/?id=103970395"
601
SpecialMesh37.TextureId ="http://www.roblox.com/asset/?id=103967643"
602
SpecialMesh37.Offset = Vector3.new(0, 0, 20)
603
SpecialMesh37.Scale = Vector3.new(40, 40, 40)
604
Script38.Name = "Boom"
605
Script38.Parent = Part36
606
Script38.Disabled = true
607
table.insert(cors,sandbox(Script38,function()
608
while true do
609
c = game.Workspace:GetChildren()
610
for i =1,#c do
611
if ((c[i].className == "Part" or c[i].className == "TrussPart" or c[i].className == "WedgePart" or c[i].className == "Seat" or c[i].className == "VehicleSeat") and (c[i].Position - script.Parent.Position).magnitude < (script.Parent.Size.X / 2.1) - 5) then
612
if c[i].Locked == false then
613
c[i].Material = Enum.Material.CorrodedMetal
614
c[i].Anchored = false
615
c[i]:BreakJoints()
616
local miniboom = script.Parent.Parent.Parent.Button.SmallBoom:Clone()
617
miniboom.Parent=c[i]
618
miniboom:Play()
619
game.Debris:AddItem(miniboom,1)
620
end
621
end
622
if (c[i].className == "Model") then
623
end
624
g = c[i]:GetChildren()
625
for j =1,#g do
626
if ((g[j].className == "Part" or g[j].className == "TrussPart" or g[j].className == "WedgePart" or g[j].className == "Seat" or g[j].className == "VehicleSeat") and g[j].Name ~= script.Parent.Name and g[j].Name ~= "Glow" and (g[j].Position - script.Parent.Position).magnitude < (script.Parent.Size.X / 2.1) - 5) then
627
g[j].Material = Enum.Material.CorrodedMetal
628
g[j].Anchored = false
629
g[j]:BreakJoints()
630
local miniboom = script.Parent.Parent.Parent.Button.SmallBoom:Clone()
631
miniboom.Parent=c[i]
632
miniboom:Play()
633
game.Debris:AddItem(miniboom,1)
634
end
635
if (g[j].className == "Model") then
636
end
637
t = g[j]:GetChildren()
638
for s =1,#t do
639
if ((t[s].className == "Part" or t[s].className == "TrussPart" or t[s].className == "WedgePart" or t[s].className == "Seat" or t[s].className == "VehicleSeat") and t[s].Name ~= script.Parent.Name and t[s].Name ~= "Glow" and (t[s].Position - script.Parent.Position).magnitude < (script.Parent.Size.X / 2.1) - 5) then
640
t[s].Material = Enum.Material.CorrodedMetal
641
t[s].Anchored = false
642
t[s]:BreakJoints()
643
end
644
if (t[s].className == "Model") then
645
end
646
a = t[s]:GetChildren()
647
for z =1,#a do
648
if ((a[z].className == "Part" or a[z].className == "TrussPart" or a[z].className == "WedgePart" or a[z].className == "Seat" or a[z].className == "VehicleSeat") and a[z].Name ~= script.Parent.Name and a[z].Name ~= "Glow" and (a[z].Position - script.Parent.Position).magnitude < (script.Parent.Size.X / 2.1) - 5) then
649
a[z].Material = Enum.Material.CorrodedMetal
650
a[z].Anchored = false
651
a[z]:BreakJoints()
652
end
653
if (a[z].className == "Model") then
654
end
655
p = a[z]:GetChildren()
656
for l =1,#p do
657
if ((p[l].className == "Part" or p[l].className == "TrussPart" or p[l].className == "WedgePart" or p[l].className == "Seat" or p[l].className == "VehicleSeat") and p[l].Name ~= script.Parent.Name and p[l].Name ~= "Glow" and (p[l].Position - script.Parent.Position).magnitude < (script.Parent.Size.X / 2.1) - 5) then
658
p[l].Material = Enum.Material.CorrodedMetal
659
p[l].Anchored = false
660
p[l]:BreakJoints()
661
end
662
end
663
end
664
end
665
end
666
end
667
wait(.3)
668
end
669
670
end))
671
Part39.Name = "Smooth Block Model"
672
Part39.Parent = Model1
673
Part39.Material = Enum.Material.Granite
674
Part39.BrickColor = BrickColor.new("Maroon")
675
Part39.Transparency = 1
676
Part39.Rotation = Vector3.new(180, 0, 90)
677
Part39.Anchored = true
678
Part39.FormFactor = Enum.FormFactor.Symmetric
679
Part39.Shape = Enum.PartType.Cylinder
680
Part39.Size = Vector3.new(6.36321115, 6.36321115, 6.36321115)
681
Part39.CFrame = CFrame.new(-41.6727715, 15.9211998, -1.01828945, 0, -1, 0, -1, 0, -1.23760116e-17, -1.23760116e-17, 0, -1)
682
Part39.BottomSurface = Enum.SurfaceType.Smooth
683
Part39.TopSurface = Enum.SurfaceType.Smooth
684
Part39.Color = Color3.new(0.458824, 0, 0)
685
Part39.Position = Vector3.new(-41.6727715, 15.9211998, -1.01828945)
686
Part39.Orientation = Vector3.new(0, 180, -90)
687
Part39.Color = Color3.new(0.458824, 0, 0)
688
Part40.Name = "Smooth Block Model"
689
Part40.Parent = Model1
690
Part40.Material = Enum.Material.Granite
691
Part40.BrickColor = BrickColor.new("Maroon")
692
Part40.Rotation = Vector3.new(180, 0, -90)
693
Part40.Anchored = true
694
Part40.FormFactor = Enum.FormFactor.Symmetric
695
Part40.Shape = Enum.PartType.Cylinder
696
Part40.Size = Vector3.new(12.7264223, 12.7264223, 12.7264223)
697
Part40.Transparency = 1
698
Part40.CFrame = CFrame.new(-41.6727715, 50.9226112, -1.01828945, 0, 1, 0, 1, 0, -1.23760116e-17, 1.23760116e-17, 0, -1)
699
Part40.BottomSurface = Enum.SurfaceType.Smooth
700
Part40.TopSurface = Enum.SurfaceType.Smooth
701
Part40.Color = Color3.new(0.458824, 0, 0)
702
Part40.Position = Vector3.new(-41.6727715, 50.9226112, -1.01828945)
703
Part40.Orientation = Vector3.new(0, 180, 90)
704
Part40.Color = Color3.new(0.458824, 0, 0)
705
Model41.Name = "Lights"
706
Model41.Parent = Model0
707
Part42.Name = "Light"
708
Part42.Parent = Model41
709
Part42.BrickColor = BrickColor.new("Really black")
710
Part42.Anchored = true
711
Part42.Transparency = 1
712
Part42.FormFactor = Enum.FormFactor.Custom
713
Part42.Size = Vector3.new(10.8174582, 3.81792593, 38.1792641)
714
Part42.CFrame = CFrame.new(-55.3536644, 1.93715477, -1.01828945, 1, -2.82302426e-09, 0, 2.82302426e-09, 1, -7.256864e-10, 0, 7.256864e-10, 1)
715
Part42.BottomSurface = Enum.SurfaceType.Smooth
716
Part42.TopSurface = Enum.SurfaceType.Smooth
717
Part42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
718
Part42.Position = Vector3.new(-55.3536644, 1.93715477, -1.01828945)
719
Part42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
720
SpotLight43.Parent = Part42
721
SpotLight43.Color = Color3.new(1, 0, 0.0156863)
722
SpotLight43.Enabled = false
723
SpotLight43.Brightness = 100
724
SpotLight43.Face = Enum.NormalId.Left
725
SpotLight43.Color = Color3.new(1, 0, 0.0156863)
726
Part44.Name = "Light"
727
Part44.Parent = Model41
728
Part44.BrickColor = BrickColor.new("Really black")
729
Part44.Transparency = 1
730
Part44.Rotation = Vector3.new(0, -90, 0)
731
Part44.Anchored = true
732
Part44.FormFactor = Enum.FormFactor.Custom
733
Part44.Size = Vector3.new(10.8174582, 3.81792593, 16.5443497)
734
Part44.CFrame = CFrame.new(-41.6727715, 1.93715477, 12.6626263, -4.37113883e-08, -2.82302426e-09, -1, -7.25686511e-10, 1, -2.82302426e-09, 1, 7.256864e-10, -4.37113883e-08)
735
Part44.BottomSurface = Enum.SurfaceType.Smooth
736
Part44.TopSurface = Enum.SurfaceType.Smooth
737
Part44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
738
Part44.Position = Vector3.new(-41.6727715, 1.93715477, 12.6626263)
739
Part44.Orientation = Vector3.new(0, -90, 0)
740
Part44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
741
SpotLight45.Parent = Part44
742
SpotLight45.Color = Color3.new(1, 0, 0.0156863)
743
SpotLight45.Enabled = false
744
SpotLight45.Brightness = 100
745
SpotLight45.Face = Enum.NormalId.Right
746
SpotLight45.Color = Color3.new(1, 0, 0.0156863)
747
Part46.Name = "Light"
748
Part46.Parent = Model41
749
Part46.BrickColor = BrickColor.new("Really black")
750
Part46.Rotation = Vector3.new(0, -90, 0)
751
Part46.Anchored = true
752
Part46.Transparency = 1
753
Part46.FormFactor = Enum.FormFactor.Custom
754
Part46.Size = Vector3.new(10.8174582, 3.81792593, 16.5443497)
755
Part46.CFrame = CFrame.new(-41.6727676, 1.93715477, -14.699193, -4.37113883e-08, -2.82302426e-09, -1, -7.25686511e-10, 1, -2.82302426e-09, 1, 7.256864e-10, -4.37113883e-08)
756
Part46.BottomSurface = Enum.SurfaceType.Smooth
757
Part46.TopSurface = Enum.SurfaceType.Smooth
758
Part46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
759
Part46.Position = Vector3.new(-41.6727676, 1.93715477, -14.699193)
760
Part46.Orientation = Vector3.new(0, -90, 0)
761
Part46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
762
SpotLight47.Parent = Part46
763
SpotLight47.Color = Color3.new(1, 0, 0.0156863)
764
SpotLight47.Enabled = false
765
SpotLight47.Brightness = 100
766
SpotLight47.Face = Enum.NormalId.Left
767
SpotLight47.Color = Color3.new(1, 0, 0.0156863)
768
Part48.Name = "Light"
769
Part48.Parent = Model41
770
Part48.BrickColor = BrickColor.new("Really black")
771
Part48.Anchored = true
772
Part48.Transparency = 1
773
Part48.FormFactor = Enum.FormFactor.Custom
774
Part48.Size = Vector3.new(10.8174582, 3.81792593, 38.1792641)
775
Part48.CFrame = CFrame.new(-27.9918556, 1.93715477, -1.01828945, 1, -2.82302426e-09, 0, 2.82302426e-09, 1, -7.256864e-10, 0, 7.256864e-10, 1)
776
Part48.BottomSurface = Enum.SurfaceType.Smooth
777
Part48.TopSurface = Enum.SurfaceType.Smooth
778
Part48.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
779
Part48.Position = Vector3.new(-27.9918556, 1.93715477, -1.01828945)
780
Part48.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
781
SpotLight49.Parent = Part48
782
SpotLight49.Color = Color3.new(1, 0, 0.0156863)
783
SpotLight49.Enabled = false
784
SpotLight49.Brightness = 100
785
SpotLight49.Face = Enum.NormalId.Right
786
SpotLight49.Color = Color3.new(1, 0, 0.0156863)
787
788
Part63.Name = "Button"
789
Part63.Parent = Model0
790
Part63.BrickColor = BrickColor.new("Bright red")
791
Part63.Rotation = Vector3.new(0, -90, 0)
792
Part63.Anchored = true
793
Part63.FormFactor = Enum.FormFactor.Custom
794
Part63.Size = Vector3.new(1.29, 5.332, 5.426)
795
Part63.CFrame = CFrame.new(-61.3987198, 17.8484306, -17.5626316, -4.37113883e-08, -2.82302426e-09, -1, -7.25686511e-10, 1, -2.82302426e-09, 1, 7.256864e-10, -4.37113883e-08)
796
Part63.BottomSurface = Enum.SurfaceType.Smooth
797
Part63.TopSurface = Enum.SurfaceType.Smooth
798
Part63.Color = Color3.new(0.768628, 0.156863, 0.109804)
799
Part63.Position = Vector3.new(-48.384, 7.498, 45.773)
800
Part63.Orientation = Vector3.new(0, -90, 0)
801
Part63.Color = Color3.new(0.768628, 0.156863, 0.109804)
802
ClickDetector64.Parent = Part63
803
Sound65.Parent = Part63
804
Sound65.SoundId = "http://roblox.com/asset?id=188088048"
805
Sound65.Volume = 1
806
Sound65.Looped = true
807
Sound66.Name = "Boom"
808
Sound66.Parent = Part63
809
Sound66.Pitch = 0.69999998807907
810
Sound66.SoundId = "http://roblox.com/asset?id=165969964"
811
Sound66.Volume = 1
812
Sound67.Name = "Siren"
813
Sound67.Parent = Part63
814
Sound67.SoundId = "http://roblox.com/asset?id=149666616"
815
Sound67.Volume = 1
816
Sound67.Looped = true
817
Sound68.Name = "SmallBoom"
818
Sound68.Parent = Part63
819
Sound68.SoundId = "http://roblox.com/asset?id=180120107"
820
Script69.Name = "BerezaaGamesNuclearScript"
821
Script69.Parent = Model0
822
table.insert(cors,sandbox(Script69,function()
823
-- Fun nuke by berezaa
824
-- Credit to FriendlyBiscuit/eric for uploading the loopable alarm sound for me
825
826
wait(1)
827
828
script.Parent.Missle.Base.Anchored = true
829
830
debounce = false
831
832
script.Parent.Button.ClickDetector.MouseClick:connect(function()
833
	if debounce == false then
834
		debounce = true
835
		script.Parent.Button.Sound:Play()
836
		
837
		local siren = script.Parent.Button.Siren
838
		siren.Parent = workspace
839
		siren:Play()
840
		
841
		coroutine.resume(coroutine.create(function()
842
			local lights = script.Parent.Lights:GetChildren()
843
			for i=1,100 do
844
				for i,v in pairs(lights) do
845
					v.SpotLight.Enabled = true
846
				end
847
				wait(0.54)
848
				for i,v in pairs(lights) do
849
					v.SpotLight.Enabled = false
850
				end
851
				wait(0.54)			
852
			end
853
		end))
854
		
855
		wait(2)
856
		
857
		script.Parent.Missle.Base.Fire.Enabled = true
858
		script.Parent.Missle.Base.Smoke.Enabled = true
859
		
860
		wait(3)
861
		
862
		script.Parent.Missle.PrimaryPart = script.Parent.Missle.Base	
863
		for i=1,320 do
864
			script.Parent.Missle:SetPrimaryPartCFrame(script.Parent.Missle:GetPrimaryPartCFrame()+Vector3.new(0,0.05*((1.1^(i/5))/3),0))
865
			wait()
866
		end
867
		wait()
868
		for i=1,100 do
869
			script.Parent.Missle:SetPrimaryPartCFrame(script.Parent.Missle:GetPrimaryPartCFrame()+Vector3.new(0,0.05*(1.1^((250-i)/5)/3),0))
870
				script.Parent.Missle:SetPrimaryPartCFrame(script.Parent.Missle:GetPrimaryPartCFrame()*CFrame.Angles(0,math.pi/100,0))
871
				script.Parent.Missle:SetPrimaryPartCFrame(script.Parent.Missle:GetPrimaryPartCFrame()+Vector3.new(0,0,-i/100))	
872
			wait()
873
		end
874
		wait()
875
		for i=200,120,-1 do
876
			script.Parent.Missle:SetPrimaryPartCFrame(script.Parent.Missle:GetPrimaryPartCFrame()-Vector3.new(0,0.1*((1.1^(i/2.95))/4),0))
877
			wait()
878
		end	
879
		
880
		script.Parent.Missle.Tip.Transparency = 0.5
881
		script.Parent.Missle.Tip.CanCollide = false
882
		script.Parent.Missle.Tip.Mesh.Scale = Vector3.new(1,1,1)
883
		local boom = script.Parent.Button.Boom
884
		boom.Parent=workspace
885
		boom:Play()
886
		-- made by 1ndrew nuke script
887
function sandbox(var,func)
888
	local env = getfenv(func)
889
	local newenv = setmetatable({},{
890
		__index = function(self,k)
891
			if k=="script" then
892
				return var
893
			else
894
				return env[k]
895
			end
896
		end,
897
	})
898
	setfenv(func,newenv)
899
	return func
900
end
901
cors = {}
902
mas = Instance.new("Model",game:GetService("Lighting"))
903
Model0 = Instance.new("Model")
904
Model1 = Instance.new("Model")
905
Part2 = Instance.new("Part")
906
CylinderMesh3 = Instance.new("CylinderMesh")
907
ObjectValue4 = Instance.new("ObjectValue")
908
Part5 = Instance.new("Part")
909
BlockMesh6 = Instance.new("BlockMesh")
910
Part7 = Instance.new("Part")
911
CylinderMesh8 = Instance.new("CylinderMesh")
912
Part9 = Instance.new("Part")
913
CylinderMesh10 = Instance.new("CylinderMesh")
914
Weld11 = Instance.new("Weld")
915
Weld12 = Instance.new("Weld")
916
Part13 = Instance.new("Part")
917
Script14 = Instance.new("Script")
918
BlockMesh15 = Instance.new("BlockMesh")
919
Part16 = Instance.new("Part")
920
CylinderMesh17 = Instance.new("CylinderMesh")
921
Part18 = Instance.new("Part")
922
BlockMesh19 = Instance.new("BlockMesh")
923
Weld20 = Instance.new("Weld")
924
Weld21 = Instance.new("Weld")
925
Weld22 = Instance.new("Weld")
926
Part23 = Instance.new("Part")
927
BlockMesh24 = Instance.new("BlockMesh")
928
Part25 = Instance.new("Part")
929
BlockMesh26 = Instance.new("BlockMesh")
930
Part27 = Instance.new("Part")
931
CylinderMesh28 = Instance.new("CylinderMesh")
932
Part29 = Instance.new("Part")
933
BlockMesh30 = Instance.new("BlockMesh")
934
Part31 = Instance.new("Part")
935
BlockMesh32 = Instance.new("BlockMesh")
936
ObjectValue33 = Instance.new("ObjectValue")
937
VehicleSeat34 = Instance.new("VehicleSeat")
938
Sound35 = Instance.new("Sound")
939
Script36 = Instance.new("Script")
940
Script37 = Instance.new("Script")
941
BlockMesh38 = Instance.new("BlockMesh")
942
Script39 = Instance.new("Script")
943
ScreenGui40 = Instance.new("ScreenGui")
944
Frame41 = Instance.new("Frame")
945
TextButton42 = Instance.new("TextButton")
946
TextButton43 = Instance.new("TextButton")
947
TextButton44 = Instance.new("TextButton")
948
TextButton45 = Instance.new("TextButton")
949
Script46 = Instance.new("Script")
950
ObjectValue47 = Instance.new("ObjectValue")
951
Frame48 = Instance.new("Frame")
952
TextButton49 = Instance.new("TextButton")
953
Script50 = Instance.new("Script")
954
TextButton51 = Instance.new("TextButton")
955
Script52 = Instance.new("Script")
956
TextLabel53 = Instance.new("TextLabel")
957
TextButton54 = Instance.new("TextButton")
958
Script55 = Instance.new("Script")
959
TextButton56 = Instance.new("TextButton")
960
Script57 = Instance.new("Script")
961
TextLabel58 = Instance.new("TextLabel")
962
NumberValue59 = Instance.new("NumberValue")
963
NumberValue60 = Instance.new("NumberValue")
964
NumberValue61 = Instance.new("NumberValue")
965
Frame62 = Instance.new("Frame")
966
TextLabel63 = Instance.new("TextLabel")
967
TextLabel64 = Instance.new("TextLabel")
968
TextLabel65 = Instance.new("TextLabel")
969
TextLabel66 = Instance.new("TextLabel")
970
TextLabel67 = Instance.new("TextLabel")
971
TextLabel68 = Instance.new("TextLabel")
972
TextLabel69 = Instance.new("TextLabel")
973
TextLabel70 = Instance.new("TextLabel")
974
TextButton71 = Instance.new("TextButton")
975
Script72 = Instance.new("Script")
976
Script73 = Instance.new("Script")
977
NumberValue74 = Instance.new("NumberValue")
978
Part75 = Instance.new("Part")
979
BlockMesh76 = Instance.new("BlockMesh")
980
Part77 = Instance.new("Part")
981
CylinderMesh78 = Instance.new("CylinderMesh")
982
Part79 = Instance.new("Part")
983
CylinderMesh80 = Instance.new("CylinderMesh")
984
Script81 = Instance.new("Script")
985
Part82 = Instance.new("Part")
986
Fire83 = Instance.new("Fire")
987
Smoke84 = Instance.new("Smoke")
988
Smoke85 = Instance.new("Smoke")
989
Smoke86 = Instance.new("Smoke")
990
Smoke87 = Instance.new("Smoke")
991
Smoke88 = Instance.new("Smoke")
992
BillboardGui89 = Instance.new("BillboardGui")
993
ImageLabel90 = Instance.new("ImageLabel")
994
Script91 = Instance.new("Script")
995
SpecialMesh92 = Instance.new("SpecialMesh")
996
Script93 = Instance.new("Script")
997
Script94 = Instance.new("Script")
998
Sound95 = Instance.new("Sound")
999
Sky96 = Instance.new("Sky")
1000
Part97 = Instance.new("Part")
1001
Sound98 = Instance.new("Sound")
1002
Sound99 = Instance.new("Sound")
1003
SpecialMesh100 = Instance.new("SpecialMesh")
1004
PointLight101 = Instance.new("PointLight")
1005
Smoke102 = Instance.new("Smoke")
1006
Sound103 = Instance.new("Sound")
1007
Model104 = Instance.new("Model")
1008
Part105 = Instance.new("Part")
1009
SpecialMesh106 = Instance.new("SpecialMesh")
1010
Part107 = Instance.new("Part")
1011
SpecialMesh108 = Instance.new("SpecialMesh")
1012
Smoke109 = Instance.new("Smoke")
1013
BillboardGui110 = Instance.new("BillboardGui")
1014
ImageLabel111 = Instance.new("ImageLabel")
1015
Script112 = Instance.new("Script")
1016
Smoke113 = Instance.new("Smoke")
1017
Smoke114 = Instance.new("Smoke")
1018
Smoke115 = Instance.new("Smoke")
1019
StringValue116 = Instance.new("StringValue")
1020
StringValue117 = Instance.new("StringValue")
1021
StringValue118 = Instance.new("StringValue")
1022
Script119 = Instance.new("Script")
1023
Script120 = Instance.new("Script")
1024
Sound121 = Instance.new("Sound")
1025
Sky122 = Instance.new("Sky")
1026
Part123 = Instance.new("Part")
1027
BlockMesh124 = Instance.new("BlockMesh")
1028
Part125 = Instance.new("Part")
1029
BlockMesh126 = Instance.new("BlockMesh")
1030
Part127 = Instance.new("Part")
1031
BlockMesh128 = Instance.new("BlockMesh")
1032
Part129 = Instance.new("Part")
1033
BlockMesh130 = Instance.new("BlockMesh")
1034
Part131 = Instance.new("Part")
1035
BlockMesh132 = Instance.new("BlockMesh")
1036
Part133 = Instance.new("Part")
1037
BlockMesh134 = Instance.new("BlockMesh")
1038
Part135 = Instance.new("Part")
1039
BlockMesh136 = Instance.new("BlockMesh")
1040
Part137 = Instance.new("Part")
1041
BlockMesh138 = Instance.new("BlockMesh")
1042
Part139 = Instance.new("Part")
1043
BlockMesh140 = Instance.new("BlockMesh")
1044
Part141 = Instance.new("Part")
1045
BlockMesh142 = Instance.new("BlockMesh")
1046
Part143 = Instance.new("Part")
1047
BlockMesh144 = Instance.new("BlockMesh")
1048
Part145 = Instance.new("Part")
1049
BlockMesh146 = Instance.new("BlockMesh")
1050
Part147 = Instance.new("Part")
1051
BlockMesh148 = Instance.new("BlockMesh")
1052
Part149 = Instance.new("Part")
1053
BlockMesh150 = Instance.new("BlockMesh")
1054
Part151 = Instance.new("Part")
1055
BlockMesh152 = Instance.new("BlockMesh")
1056
Part153 = Instance.new("Part")
1057
BlockMesh154 = Instance.new("BlockMesh")
1058
Part155 = Instance.new("Part")
1059
BlockMesh156 = Instance.new("BlockMesh")
1060
Part157 = Instance.new("Part")
1061
BlockMesh158 = Instance.new("BlockMesh")
1062
Part159 = Instance.new("Part")
1063
CylinderMesh160 = Instance.new("CylinderMesh")
1064
Part161 = Instance.new("Part")
1065
BlockMesh162 = Instance.new("BlockMesh")
1066
Part163 = Instance.new("Part")
1067
BlockMesh164 = Instance.new("BlockMesh")
1068
Part165 = Instance.new("Part")
1069
BlockMesh166 = Instance.new("BlockMesh")
1070
WedgePart167 = Instance.new("WedgePart")
1071
SpecialMesh168 = Instance.new("SpecialMesh")
1072
WedgePart169 = Instance.new("WedgePart")
1073
SpecialMesh170 = Instance.new("SpecialMesh")
1074
WedgePart171 = Instance.new("WedgePart")
1075
SpecialMesh172 = Instance.new("SpecialMesh")
1076
WedgePart173 = Instance.new("WedgePart")
1077
SpecialMesh174 = Instance.new("SpecialMesh")
1078
WedgePart175 = Instance.new("WedgePart")
1079
SpecialMesh176 = Instance.new("SpecialMesh")
1080
WedgePart177 = Instance.new("WedgePart")
1081
SpecialMesh178 = Instance.new("SpecialMesh")
1082
WedgePart179 = Instance.new("WedgePart")
1083
SpecialMesh180 = Instance.new("SpecialMesh")
1084
WedgePart181 = Instance.new("WedgePart")
1085
SpecialMesh182 = Instance.new("SpecialMesh")
1086
WedgePart183 = Instance.new("WedgePart")
1087
SpecialMesh184 = Instance.new("SpecialMesh")
1088
WedgePart185 = Instance.new("WedgePart")
1089
SpecialMesh186 = Instance.new("SpecialMesh")
1090
WedgePart187 = Instance.new("WedgePart")
1091
SpecialMesh188 = Instance.new("SpecialMesh")
1092
WedgePart189 = Instance.new("WedgePart")
1093
SpecialMesh190 = Instance.new("SpecialMesh")
1094
WedgePart191 = Instance.new("WedgePart")
1095
SpecialMesh192 = Instance.new("SpecialMesh")
1096
Model193 = Instance.new("Model")
1097
Part194 = Instance.new("Part")
1098
CylinderMesh195 = Instance.new("CylinderMesh")
1099
Part196 = Instance.new("Part")
1100
CylinderMesh197 = Instance.new("CylinderMesh")
1101
Part198 = Instance.new("Part")
1102
CylinderMesh199 = Instance.new("CylinderMesh")
1103
Part200 = Instance.new("Part")
1104
CylinderMesh201 = Instance.new("CylinderMesh")
1105
Part202 = Instance.new("Part")
1106
BlockMesh203 = Instance.new("BlockMesh")
1107
Part204 = Instance.new("Part")
1108
BlockMesh205 = Instance.new("BlockMesh")
1109
Part206 = Instance.new("Part")
1110
BlockMesh207 = Instance.new("BlockMesh")
1111
Part208 = Instance.new("Part")
1112
BlockMesh209 = Instance.new("BlockMesh")
1113
Part210 = Instance.new("Part")
1114
BlockMesh211 = Instance.new("BlockMesh")
1115
Part212 = Instance.new("Part")
1116
BlockMesh213 = Instance.new("BlockMesh")
1117
Part214 = Instance.new("Part")
1118
BlockMesh215 = Instance.new("BlockMesh")
1119
Part216 = Instance.new("Part")
1120
BlockMesh217 = Instance.new("BlockMesh")
1121
Part218 = Instance.new("Part")
1122
BlockMesh219 = Instance.new("BlockMesh")
1123
Part220 = Instance.new("Part")
1124
BlockMesh221 = Instance.new("BlockMesh")
1125
Part222 = Instance.new("Part")
1126
BlockMesh223 = Instance.new("BlockMesh")
1127
Part224 = Instance.new("Part")
1128
BlockMesh225 = Instance.new("BlockMesh")
1129
Part226 = Instance.new("Part")
1130
BlockMesh227 = Instance.new("BlockMesh")
1131
Part228 = Instance.new("Part")
1132
BlockMesh229 = Instance.new("BlockMesh")
1133
Part230 = Instance.new("Part")
1134
BlockMesh231 = Instance.new("BlockMesh")
1135
Part232 = Instance.new("Part")
1136
BlockMesh233 = Instance.new("BlockMesh")
1137
Part234 = Instance.new("Part")
1138
BlockMesh235 = Instance.new("BlockMesh")
1139
Part236 = Instance.new("Part")
1140
BlockMesh237 = Instance.new("BlockMesh")
1141
Part238 = Instance.new("Part")
1142
BlockMesh239 = Instance.new("BlockMesh")
1143
Part240 = Instance.new("Part")
1144
BlockMesh241 = Instance.new("BlockMesh")
1145
Part242 = Instance.new("Part")
1146
BlockMesh243 = Instance.new("BlockMesh")
1147
Part244 = Instance.new("Part")
1148
BlockMesh245 = Instance.new("BlockMesh")
1149
Part246 = Instance.new("Part")
1150
BlockMesh247 = Instance.new("BlockMesh")
1151
Part248 = Instance.new("Part")
1152
CylinderMesh249 = Instance.new("CylinderMesh")
1153
Part250 = Instance.new("Part")
1154
BlockMesh251 = Instance.new("BlockMesh")
1155
Part252 = Instance.new("Part")
1156
BlockMesh253 = Instance.new("BlockMesh")
1157
Part254 = Instance.new("Part")
1158
BlockMesh255 = Instance.new("BlockMesh")
1159
Part256 = Instance.new("Part")
1160
BlockMesh257 = Instance.new("BlockMesh")
1161
Part258 = Instance.new("Part")
1162
BlockMesh259 = Instance.new("BlockMesh")
1163
Part260 = Instance.new("Part")
1164
BlockMesh261 = Instance.new("BlockMesh")
1165
Part262 = Instance.new("Part")
1166
BlockMesh263 = Instance.new("BlockMesh")
1167
Part264 = Instance.new("Part")
1168
BlockMesh265 = Instance.new("BlockMesh")
1169
Part266 = Instance.new("Part")
1170
BlockMesh267 = Instance.new("BlockMesh")
1171
Part268 = Instance.new("Part")
1172
BlockMesh269 = Instance.new("BlockMesh")
1173
Part270 = Instance.new("Part")
1174
BlockMesh271 = Instance.new("BlockMesh")
1175
Part272 = Instance.new("Part")
1176
BlockMesh273 = Instance.new("BlockMesh")
1177
Part274 = Instance.new("Part")
1178
BlockMesh275 = Instance.new("BlockMesh")
1179
Part276 = Instance.new("Part")
1180
BlockMesh277 = Instance.new("BlockMesh")
1181
Part278 = Instance.new("Part")
1182
BlockMesh279 = Instance.new("BlockMesh")
1183
Part280 = Instance.new("Part")
1184
BlockMesh281 = Instance.new("BlockMesh")
1185
Part282 = Instance.new("Part")
1186
BlockMesh283 = Instance.new("BlockMesh")
1187
Part284 = Instance.new("Part")
1188
BlockMesh285 = Instance.new("BlockMesh")
1189
Part286 = Instance.new("Part")
1190
BlockMesh287 = Instance.new("BlockMesh")
1191
Part288 = Instance.new("Part")
1192
BlockMesh289 = Instance.new("BlockMesh")
1193
Part290 = Instance.new("Part")
1194
BlockMesh291 = Instance.new("BlockMesh")
1195
Part292 = Instance.new("Part")
1196
BlockMesh293 = Instance.new("BlockMesh")
1197
WedgePart294 = Instance.new("WedgePart")
1198
SpecialMesh295 = Instance.new("SpecialMesh")
1199
WedgePart296 = Instance.new("WedgePart")
1200
SpecialMesh297 = Instance.new("SpecialMesh")
1201
WedgePart298 = Instance.new("WedgePart")
1202
SpecialMesh299 = Instance.new("SpecialMesh")
1203
WedgePart300 = Instance.new("WedgePart")
1204
SpecialMesh301 = Instance.new("SpecialMesh")
1205
VehicleSeat302 = Instance.new("VehicleSeat")
1206
WedgePart303 = Instance.new("WedgePart")
1207
SpecialMesh304 = Instance.new("SpecialMesh")
1208
WedgePart305 = Instance.new("WedgePart")
1209
SpecialMesh306 = Instance.new("SpecialMesh")
1210
WedgePart307 = Instance.new("WedgePart")
1211
SpecialMesh308 = Instance.new("SpecialMesh")
1212
WedgePart309 = Instance.new("WedgePart")
1213
SpecialMesh310 = Instance.new("SpecialMesh")
1214
WedgePart311 = Instance.new("WedgePart")
1215
SpecialMesh312 = Instance.new("SpecialMesh")
1216
WedgePart313 = Instance.new("WedgePart")
1217
SpecialMesh314 = Instance.new("SpecialMesh")
1218
WedgePart315 = Instance.new("WedgePart")
1219
SpecialMesh316 = Instance.new("SpecialMesh")
1220
WedgePart317 = Instance.new("WedgePart")
1221
SpecialMesh318 = Instance.new("SpecialMesh")
1222
WedgePart319 = Instance.new("WedgePart")
1223
SpecialMesh320 = Instance.new("SpecialMesh")
1224
WedgePart321 = Instance.new("WedgePart")
1225
SpecialMesh322 = Instance.new("SpecialMesh")
1226
WedgePart323 = Instance.new("WedgePart")
1227
SpecialMesh324 = Instance.new("SpecialMesh")
1228
WedgePart325 = Instance.new("WedgePart")
1229
SpecialMesh326 = Instance.new("SpecialMesh")
1230
WedgePart327 = Instance.new("WedgePart")
1231
SpecialMesh328 = Instance.new("SpecialMesh")
1232
WedgePart329 = Instance.new("WedgePart")
1233
SpecialMesh330 = Instance.new("SpecialMesh")
1234
WedgePart331 = Instance.new("WedgePart")
1235
SpecialMesh332 = Instance.new("SpecialMesh")
1236
WedgePart333 = Instance.new("WedgePart")
1237
SpecialMesh334 = Instance.new("SpecialMesh")
1238
WedgePart335 = Instance.new("WedgePart")
1239
SpecialMesh336 = Instance.new("SpecialMesh")
1240
WedgePart337 = Instance.new("WedgePart")
1241
SpecialMesh338 = Instance.new("SpecialMesh")
1242
Part339 = Instance.new("Part")
1243
BlockMesh340 = Instance.new("BlockMesh")
1244
Part341 = Instance.new("Part")
1245
BlockMesh342 = Instance.new("BlockMesh")
1246
Part343 = Instance.new("Part")
1247
BlockMesh344 = Instance.new("BlockMesh")
1248
Part345 = Instance.new("Part")
1249
BlockMesh346 = Instance.new("BlockMesh")
1250
Part347 = Instance.new("Part")
1251
BlockMesh348 = Instance.new("BlockMesh")
1252
Part349 = Instance.new("Part")
1253
BlockMesh350 = Instance.new("BlockMesh")
1254
Part351 = Instance.new("Part")
1255
BlockMesh352 = Instance.new("BlockMesh")
1256
Part353 = Instance.new("Part")
1257
BlockMesh354 = Instance.new("BlockMesh")
1258
Part355 = Instance.new("Part")
1259
BlockMesh356 = Instance.new("BlockMesh")
1260
Part357 = Instance.new("Part")
1261
BlockMesh358 = Instance.new("BlockMesh")
1262
Part359 = Instance.new("Part")
1263
BlockMesh360 = Instance.new("BlockMesh")
1264
Part361 = Instance.new("Part")
1265
BlockMesh362 = Instance.new("BlockMesh")
1266
Part363 = Instance.new("Part")
1267
BlockMesh364 = Instance.new("BlockMesh")
1268
Part365 = Instance.new("Part")
1269
BlockMesh366 = Instance.new("BlockMesh")
1270
Part367 = Instance.new("Part")
1271
BlockMesh368 = Instance.new("BlockMesh")
1272
Part369 = Instance.new("Part")
1273
BlockMesh370 = Instance.new("BlockMesh")
1274
Part371 = Instance.new("Part")
1275
CylinderMesh372 = Instance.new("CylinderMesh")
1276
Part373 = Instance.new("Part")
1277
BlockMesh374 = Instance.new("BlockMesh")
1278
Part375 = Instance.new("Part")
1279
BlockMesh376 = Instance.new("BlockMesh")
1280
Part377 = Instance.new("Part")
1281
BlockMesh378 = Instance.new("BlockMesh")
1282
Part379 = Instance.new("Part")
1283
BlockMesh380 = Instance.new("BlockMesh")
1284
Part381 = Instance.new("Part")
1285
CylinderMesh382 = Instance.new("CylinderMesh")
1286
Part383 = Instance.new("Part")
1287
CylinderMesh384 = Instance.new("CylinderMesh")
1288
Part385 = Instance.new("Part")
1289
CylinderMesh386 = Instance.new("CylinderMesh")
1290
WedgePart387 = Instance.new("WedgePart")
1291
SpecialMesh388 = Instance.new("SpecialMesh")
1292
WedgePart389 = Instance.new("WedgePart")
1293
SpecialMesh390 = Instance.new("SpecialMesh")
1294
WedgePart391 = Instance.new("WedgePart")
1295
SpecialMesh392 = Instance.new("SpecialMesh")
1296
WedgePart393 = Instance.new("WedgePart")
1297
SpecialMesh394 = Instance.new("SpecialMesh")
1298
WedgePart395 = Instance.new("WedgePart")
1299
SpecialMesh396 = Instance.new("SpecialMesh")
1300
WedgePart397 = Instance.new("WedgePart")
1301
SpecialMesh398 = Instance.new("SpecialMesh")
1302
WedgePart399 = Instance.new("WedgePart")
1303
SpecialMesh400 = Instance.new("SpecialMesh")
1304
WedgePart401 = Instance.new("WedgePart")
1305
SpecialMesh402 = Instance.new("SpecialMesh")
1306
WedgePart403 = Instance.new("WedgePart")
1307
SpecialMesh404 = Instance.new("SpecialMesh")
1308
WedgePart405 = Instance.new("WedgePart")
1309
SpecialMesh406 = Instance.new("SpecialMesh")
1310
WedgePart407 = Instance.new("WedgePart")
1311
SpecialMesh408 = Instance.new("SpecialMesh")
1312
Part409 = Instance.new("Part")
1313
BlockMesh410 = Instance.new("BlockMesh")
1314
Part411 = Instance.new("Part")
1315
BlockMesh412 = Instance.new("BlockMesh")
1316
Part413 = Instance.new("Part")
1317
BlockMesh414 = Instance.new("BlockMesh")
1318
Part415 = Instance.new("Part")
1319
BlockMesh416 = Instance.new("BlockMesh")
1320
Part417 = Instance.new("Part")
1321
CylinderMesh418 = Instance.new("CylinderMesh")
1322
Part419 = Instance.new("Part")
1323
CylinderMesh420 = Instance.new("CylinderMesh")
1324
Part421 = Instance.new("Part")
1325
CylinderMesh422 = Instance.new("CylinderMesh")
1326
Part423 = Instance.new("Part")
1327
CylinderMesh424 = Instance.new("CylinderMesh")
1328
Part425 = Instance.new("Part")
1329
CylinderMesh426 = Instance.new("CylinderMesh")
1330
Part427 = Instance.new("Part")
1331
BlockMesh428 = Instance.new("BlockMesh")
1332
WedgePart429 = Instance.new("WedgePart")
1333
SpecialMesh430 = Instance.new("SpecialMesh")
1334
WedgePart431 = Instance.new("WedgePart")
1335
SpecialMesh432 = Instance.new("SpecialMesh")
1336
Part433 = Instance.new("Part")
1337
CylinderMesh434 = Instance.new("CylinderMesh")
1338
Part435 = Instance.new("Part")
1339
CylinderMesh436 = Instance.new("CylinderMesh")
1340
Part437 = Instance.new("Part")
1341
CylinderMesh438 = Instance.new("CylinderMesh")
1342
Part439 = Instance.new("Part")
1343
CylinderMesh440 = Instance.new("CylinderMesh")
1344
Part441 = Instance.new("Part")
1345
CylinderMesh442 = Instance.new("CylinderMesh")
1346
Part443 = Instance.new("Part")
1347
CylinderMesh444 = Instance.new("CylinderMesh")
1348
Part445 = Instance.new("Part")
1349
CylinderMesh446 = Instance.new("CylinderMesh")
1350
Part447 = Instance.new("Part")
1351
CylinderMesh448 = Instance.new("CylinderMesh")
1352
Part449 = Instance.new("Part")
1353
CylinderMesh450 = Instance.new("CylinderMesh")
1354
Part451 = Instance.new("Part")
1355
CylinderMesh452 = Instance.new("CylinderMesh")
1356
Model0.Name = "MAZ-450 Scud Nuclear"
1357
Model0.Parent = mas
1358
Model1.Name = "turret"
1359
Model1.Parent = Model0
1360
Part2.Parent = Model1
1361
Part2.Material = Enum.Material.Metal
1362
Part2.BrickColor = BrickColor.new("Grime")
1363
Part2.Rotation = Vector3.new(0, 90, 0)
1364
Part2.FormFactor = Enum.FormFactor.Plate
1365
Part2.Size = Vector3.new(2, 0.400000006, 3)
1366
Part2.CFrame = CFrame.new(12.8898954, 10.3001108, 38.9598312, 3.06876391e-05, 6.20403944e-06, 1, -3.31463598e-05, 1, -6.68033636e-06, -1, -2.63205093e-05, 2.09769823e-05)
1367
Part2.BackSurface = Enum.SurfaceType.Weld
1368
Part2.BottomSurface = Enum.SurfaceType.Smooth
1369
Part2.FrontSurface = Enum.SurfaceType.Weld
1370
Part2.LeftSurface = Enum.SurfaceType.Weld
1371
Part2.RightSurface = Enum.SurfaceType.Weld
1372
Part2.TopSurface = Enum.SurfaceType.Weld
1373
Part2.Color = Color3.new(0.498039, 0.556863, 0.392157)
1374
Part2.Position = Vector3.new(12.8898954, 10.3001108, 38.9598312)
1375
Part2.Orientation = Vector3.new(0, 90, 0)
1376
Part2.Color = Color3.new(0.498039, 0.556863, 0.392157)
1377
CylinderMesh3.Parent = Part2
1378
CylinderMesh3.Scale = Vector3.new(1.79999995, 1, 2)
1379
CylinderMesh3.Scale = Vector3.new(1.79999995, 1, 2)
1380
ObjectValue4.Name = "WER"
1381
ObjectValue4.Parent = Model1
1382
ObjectValue4.Value = Weld12
1383
Part5.Parent = Model1
1384
Part5.Material = Enum.Material.Metal
1385
Part5.BrickColor = BrickColor.new("Grime")
1386
Part5.Rotation = Vector3.new(-90, 0, -180)
1387
Part5.FormFactor = Enum.FormFactor.Custom
1388
Part5.Size = Vector3.new(3, 0.400000006, 0.399999976)
1389
Part5.CFrame = CFrame.new(12.8898659, 10.7001324, 40.1598129, -1, 5.64619597e-07, 6.20732499e-06, 6.68464554e-06, 1.11793124e-05, 1, 1.02754129e-05, 1, -4.35367065e-06)
1390
Part5.BackSurface = Enum.SurfaceType.Weld
1391
Part5.BottomSurface = Enum.SurfaceType.Smooth
1392
Part5.FrontSurface = Enum.SurfaceType.Weld
1393
Part5.LeftSurface = Enum.SurfaceType.Weld
1394
Part5.RightSurface = Enum.SurfaceType.Weld
1395
Part5.TopSurface = Enum.SurfaceType.Weld
1396
Part5.Color = Color3.new(0.498039, 0.556863, 0.392157)
1397
Part5.Position = Vector3.new(12.8898659, 10.7001324, 40.1598129)
1398
Part5.Orientation = Vector3.new(-90, -180, 0)
1399
Part5.Color = Color3.new(0.498039, 0.556863, 0.392157)
1400
BlockMesh6.Parent = Part5
1401
Part7.Parent = Model1
1402
Part7.Material = Enum.Material.Metal
1403
Part7.BrickColor = BrickColor.new("Grime")
1404
Part7.Rotation = Vector3.new(90, 0, -90)
1405
Part7.FormFactor = Enum.FormFactor.Symmetric
1406
Part7.Size = Vector3.new(1, 1, 1)
1407
Part7.CFrame = CFrame.new(13.8899441, 12.0000706, 38.9595375, 4.72349166e-05, 1, -3.85977728e-06, -4.47773564e-05, -4.33497553e-06, -1, -1, 3.75242453e-05, 3.79514786e-05)
1408
Part7.BottomSurface = Enum.SurfaceType.Weld
1409
Part7.TopSurface = Enum.SurfaceType.Weld
1410
Part7.Color = Color3.new(0.498039, 0.556863, 0.392157)
1411
Part7.Position = Vector3.new(13.8899441, 12.0000706, 38.9595375)
1412
Part7.Orientation = Vector3.new(90, 90, 0)
1413
Part7.Color = Color3.new(0.498039, 0.556863, 0.392157)
1414
CylinderMesh8.Parent = Part7
1415
CylinderMesh8.Scale = Vector3.new(2, 1, 1.79999995)
1416
CylinderMesh8.Scale = Vector3.new(2, 1, 1.79999995)
1417
Part9.Name = "Connector"
1418
Part9.Parent = Model1
1419
Part9.Material = Enum.Material.Metal
1420
Part9.BrickColor = BrickColor.new("Grime")
1421
Part9.Rotation = Vector3.new(0, 90, 0)
1422
Part9.CanCollide = false
1423
Part9.FormFactor = Enum.FormFactor.Symmetric
1424
Part9.Size = Vector3.new(2, 2, 3)
1425
Part9.CFrame = CFrame.new(12.8898888, 9.10011101, 38.9598045, 1.50947981e-05, 5.43772376e-06, 1, -2.21862356e-05, 1, -5.9147028e-06, -1, -1.53604906e-05, 5.38406312e-06)
1426
Part9.BackSurface = Enum.SurfaceType.Weld
1427
Part9.BottomSurface = Enum.SurfaceType.Weld
1428
Part9.LeftSurface = Enum.SurfaceType.Weld
1429
Part9.TopSurface = Enum.SurfaceType.Weld
1430
Part9.Color = Color3.new(0.498039, 0.556863, 0.392157)
1431
Part9.Position = Vector3.new(12.8898888, 9.10011101, 38.9598045)
1432
Part9.Orientation = Vector3.new(0, 90, 0)
1433
Part9.Color = Color3.new(0.498039, 0.556863, 0.392157)
1434
CylinderMesh10.Parent = Part9
1435
CylinderMesh10.Scale = Vector3.new(1.5, 1, 2)
1436
CylinderMesh10.Scale = Vector3.new(1.5, 1, 2)
1437
Weld11.Parent = Part9
1438
Weld11.C0 = CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1439
Weld12.Parent = Part9
1440
Weld12.C0 = CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1441
Weld12.Part0 = Part9
1442
Weld12.Part1 = Part79
1443
Part13.Name = "Wpart"
1444
Part13.Parent = Model1
1445
Part13.Material = Enum.Material.Metal
1446
Part13.BrickColor = BrickColor.new("Grime")
1447
Part13.Rotation = Vector3.new(0, 90, 0)
1448
Part13.FormFactor = Enum.FormFactor.Symmetric
1449
Part13.Size = Vector3.new(2, 1, 2)
1450
Part13.CFrame = CFrame.new(14.3899441, 12.0000477, 38.9595566, 1.52723678e-05, 5.4290017e-06, 1, -2.23110437e-05, 1, -5.90597438e-06, -1, -1.54852969e-05, 5.56163559e-06)
1451
Part13.BottomSurface = Enum.SurfaceType.Smooth
1452
Part13.LeftSurface = Enum.SurfaceType.Weld
1453
Part13.RightSurface = Enum.SurfaceType.Weld
1454
Part13.TopSurface = Enum.SurfaceType.Smooth
1455
Part13.Color = Color3.new(0.498039, 0.556863, 0.392157)
1456
Part13.Position = Vector3.new(14.3899441, 12.0000477, 38.9595566)
1457
Part13.Orientation = Vector3.new(0, 90, 0)
1458
Part13.Color = Color3.new(0.498039, 0.556863, 0.392157)
1459
Script14.Parent = Part13
1460
table.insert(cors,sandbox(Script14,function()
1461
b = script.Parent
1462
c = script.Parent.Parent.Connector2
1463
1464
	local weld = Instance.new("Weld")
1465
1466
	weld.Part0 = c
1467
	weld.Part1 = b
1468
1469
	weld.C0 = CFrame.new(0, 0, 1.5)
1470
1471
	weld.Parent = c
1472
1473
script.Parent.Parent.WER2.Value = weld
1474
end))
1475
BlockMesh15.Parent = Part13
1476
Part16.Parent = Model1
1477
Part16.Material = Enum.Material.Metal
1478
Part16.BrickColor = BrickColor.new("Grime")
1479
Part16.Rotation = Vector3.new(90, 0, -90)
1480
Part16.FormFactor = Enum.FormFactor.Symmetric
1481
Part16.Size = Vector3.new(1, 1, 1)
1482
Part16.CFrame = CFrame.new(14.8899441, 12.0000582, 38.9595566, 3.124254e-05, 1, -4.64493451e-06, -3.3536413e-05, -5.12120005e-06, -1, -1, 2.15318451e-05, 2.67105879e-05)
1483
Part16.BottomSurface = Enum.SurfaceType.Weld
1484
Part16.TopSurface = Enum.SurfaceType.Weld
1485
Part16.Color = Color3.new(0.498039, 0.556863, 0.392157)
1486
Part16.Position = Vector3.new(14.8899441, 12.0000582, 38.9595566)
1487
Part16.Orientation = Vector3.new(90, 90, 0)
1488
Part16.Color = Color3.new(0.498039, 0.556863, 0.392157)
1489
CylinderMesh17.Parent = Part16
1490
CylinderMesh17.Scale = Vector3.new(1.89999998, 1, 1.60000002)
1491
CylinderMesh17.Scale = Vector3.new(1.89999998, 1, 1.60000002)
1492
Part18.Name = "Connector2"
1493
Part18.Parent = Model1
1494
Part18.Material = Enum.Material.Metal
1495
Part18.BrickColor = BrickColor.new("Grime")
1496
Part18.Rotation = Vector3.new(0, 90, 0)
1497
Part18.FormFactor = Enum.FormFactor.Symmetric
1498
Part18.Size = Vector3.new(1, 1, 1)
1499
Part18.CFrame = CFrame.new(12.8899441, 12.0000563, 38.959549, 1.52723678e-05, 5.4290017e-06, 1, -2.23110437e-05, 1, -5.90597438e-06, -1, -1.54852969e-05, 5.56163559e-06)
1500
Part18.BottomSurface = Enum.SurfaceType.Weld
1501
Part18.TopSurface = Enum.SurfaceType.Weld
1502
Part18.Color = Color3.new(0.498039, 0.556863, 0.392157)
1503
Part18.Position = Vector3.new(12.8899441, 12.0000563, 38.959549)
1504
Part18.Orientation = Vector3.new(0, 90, 0)
1505
Part18.Color = Color3.new(0.498039, 0.556863, 0.392157)
1506
BlockMesh19.Parent = Part18
1507
Weld20.Parent = Part18
1508
Weld20.C0 = CFrame.new(0, 0, 1.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1509
Weld21.Parent = Part18
1510
Weld21.C0 = CFrame.new(0, 0, 1.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1511
Weld22.Parent = Part18
1512
Weld22.C0 = CFrame.new(0, 0, 1.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1513
Weld22.Part0 = Part18
1514
Weld22.Part1 = Part13
1515
Part23.Parent = Model1
1516
Part23.Material = Enum.Material.Metal
1517
Part23.BrickColor = BrickColor.new("Grime")
1518
Part23.Rotation = Vector3.new(-90, 0, 180)
1519
Part23.FormFactor = Enum.FormFactor.Plate
1520
Part23.Size = Vector3.new(1, 0.400000006, 1.20000005)
1521
Part23.CFrame = CFrame.new(13.8899651, 11.5000286, 37.7595558, -1, -3.11981494e-05, 4.64657705e-06, 5.12284532e-06, 3.350517e-05, 1, -2.14874563e-05, 1, -2.66793468e-05)
1522
Part23.BackSurface = Enum.SurfaceType.Weld
1523
Part23.BottomSurface = Enum.SurfaceType.Weld
1524
Part23.FrontSurface = Enum.SurfaceType.Weld
1525
Part23.LeftSurface = Enum.SurfaceType.Weld
1526
Part23.RightSurface = Enum.SurfaceType.Weld
1527
Part23.TopSurface = Enum.SurfaceType.Smooth
1528
Part23.Color = Color3.new(0.498039, 0.556863, 0.392157)
1529
Part23.Position = Vector3.new(13.8899651, 11.5000286, 37.7595558)
1530
Part23.Orientation = Vector3.new(-90, 180, 0)
1531
Part23.Color = Color3.new(0.498039, 0.556863, 0.392157)
1532
BlockMesh24.Parent = Part23
1533
Part25.Parent = Model1
1534
Part25.Material = Enum.Material.Metal
1535
Part25.BrickColor = BrickColor.new("Grime")
1536
Part25.Rotation = Vector3.new(-90, 0, 180)
1537
Part25.FormFactor = Enum.FormFactor.Custom
1538
Part25.Size = Vector3.new(3, 0.400000006, 0.399999976)
1539
Part25.CFrame = CFrame.new(12.8899288, 10.7000723, 37.7598228, -1, -1.52280863e-05, 5.43084116e-06, 5.90815625e-06, -7.7088643e-08, 1, -5.51722951e-06, 1, 6.90283105e-06)
1540
Part25.BackSurface = Enum.SurfaceType.Weld
1541
Part25.BottomSurface = Enum.SurfaceType.Weld
1542
Part25.FrontSurface = Enum.SurfaceType.Weld
1543
Part25.LeftSurface = Enum.SurfaceType.Weld
1544
Part25.RightSurface = Enum.SurfaceType.Weld
1545
Part25.TopSurface = Enum.SurfaceType.Smooth
1546
Part25.Color = Color3.new(0.498039, 0.556863, 0.392157)
1547
Part25.Position = Vector3.new(12.8899288, 10.7000723, 37.7598228)
1548
Part25.Orientation = Vector3.new(-90, 180, 0)
1549
Part25.Color = Color3.new(0.498039, 0.556863, 0.392157)
1550
BlockMesh26.Parent = Part25
1551
Part27.Parent = Model1
1552
Part27.Material = Enum.Material.Metal
1553
Part27.BrickColor = BrickColor.new("Grime")
1554
Part27.Rotation = Vector3.new(90, 0, 0)
1555
Part27.FormFactor = Enum.FormFactor.Plate
1556
Part27.Size = Vector3.new(1, 0.400000006, 1)
1557
Part27.CFrame = CFrame.new(13.8899403, 11.6000576, 37.3598328, 1, -1.52945649e-05, -5.42817907e-06, -5.90515128e-06, 2.23266634e-05, -1, 5.5838309e-06, 1, 1.55009166e-05)
1558
Part27.BackSurface = Enum.SurfaceType.Weld
1559
Part27.BottomSurface = Enum.SurfaceType.Smooth
1560
Part27.FrontSurface = Enum.SurfaceType.Weld
1561
Part27.LeftSurface = Enum.SurfaceType.Weld
1562
Part27.RightSurface = Enum.SurfaceType.Weld
1563
Part27.TopSurface = Enum.SurfaceType.Weld
1564
Part27.Color = Color3.new(0.498039, 0.556863, 0.392157)
1565
Part27.Position = Vector3.new(13.8899403, 11.6000576, 37.3598328)
1566
Part27.Orientation = Vector3.new(90, 0, 0)
1567
Part27.Color = Color3.new(0.498039, 0.556863, 0.392157)
1568
CylinderMesh28.Parent = Part27
1569
CylinderMesh28.Offset = Vector3.new(0, 1.60000002, 0)
1570
CylinderMesh28.Scale = Vector3.new(0.800000012, 8, 2)
1571
CylinderMesh28.Scale = Vector3.new(0.800000012, 8, 2)
1572
Part29.Parent = Model1
1573
Part29.Material = Enum.Material.Metal
1574
Part29.BrickColor = BrickColor.new("Grime")
1575
Part29.Rotation = Vector3.new(180, 0, -180)
1576
Part29.FormFactor = Enum.FormFactor.Plate
1577
Part29.Size = Vector3.new(1, 0.800000012, 1)
1578
Part29.CFrame = CFrame.new(13.8901453, 7.60008192, 38.9598312, -1, 6.80900757e-06, -1.28170986e-05, 7.24961728e-06, 1, -3.05093963e-05, 2.17730885e-05, -2.42142978e-05, -1)
1579
Part29.BackSurface = Enum.SurfaceType.Weld
1580
Part29.BottomSurface = Enum.SurfaceType.Weld
1581
Part29.FrontSurface = Enum.SurfaceType.Weld
1582
Part29.LeftSurface = Enum.SurfaceType.Weld
1583
Part29.RightSurface = Enum.SurfaceType.Weld
1584
Part29.TopSurface = Enum.SurfaceType.Smooth
1585
Part29.Color = Color3.new(0.498039, 0.556863, 0.392157)
1586
Part29.Position = Vector3.new(13.8901453, 7.60008192, 38.9598312)
1587
Part29.Orientation = Vector3.new(0, -180, 0)
1588
Part29.Color = Color3.new(0.498039, 0.556863, 0.392157)
1589
BlockMesh30.Parent = Part29
1590
Part31.Parent = Model1
1591
Part31.Material = Enum.Material.Metal
1592
Part31.BrickColor = BrickColor.new("Grime")
1593
Part31.FormFactor = Enum.FormFactor.Plate
1594
Part31.Size = Vector3.new(1, 0.800000012, 1)
1595
Part31.CFrame = CFrame.new(11.8901434, 7.60010433, 38.9599037, 1, 6.32152023e-06, 2.89539616e-06, -6.78039805e-06, 1, 3.84974592e-05, -1.22286801e-05, -3.19370556e-05, 1)
1596
Part31.BackSurface = Enum.SurfaceType.Weld
1597
Part31.BottomSurface = Enum.SurfaceType.Weld
1598
Part31.FrontSurface = Enum.SurfaceType.Weld
1599
Part31.LeftSurface = Enum.SurfaceType.Weld
1600
Part31.RightSurface = Enum.SurfaceType.Weld
1601
Part31.TopSurface = Enum.SurfaceType.Smooth
1602
Part31.Color = Color3.new(0.498039, 0.556863, 0.392157)
1603
Part31.Position = Vector3.new(11.8901434, 7.60010433, 38.9599037)
1604
Part31.Color = Color3.new(0.498039, 0.556863, 0.392157)
1605
BlockMesh32.Parent = Part31
1606
ObjectValue33.Name = "WER2"
1607
ObjectValue33.Parent = Model1
1608
ObjectValue33.Value = Weld22
1609
VehicleSeat34.Parent = Model1
1610
VehicleSeat34.BrickColor = BrickColor.new("Really red")
1611
VehicleSeat34.Rotation = Vector3.new(0, 90, 0)
1612
VehicleSeat34.Size = Vector3.new(2, 0.400000006, 2)
1613
VehicleSeat34.CFrame = CFrame.new(-23.1100998, 4.80056763, 33.6601639, -1.67083635e-05, 6.97150199e-06, 1, -2.32027105e-07, 0.999991715, -7.13226291e-06, -1.00000143, 1.9876245e-06, -2.00193008e-05)
1614
VehicleSeat34.TopSurface = Enum.SurfaceType.Weld
1615
VehicleSeat34.HeadsUpDisplay = false
1616
VehicleSeat34.MaxSpeed = 50
1617
VehicleSeat34.Color = Color3.new(1, 0, 0)
1618
VehicleSeat34.Position = Vector3.new(-23.1100998, 4.80056763, 33.6601639)
1619
VehicleSeat34.Orientation = Vector3.new(0, 90, 0)
1620
VehicleSeat34.Color = Color3.new(1, 0, 0)
1621
Sound35.Name = "Swiv"
1622
Sound35.Parent = VehicleSeat34
1623
Sound35.Pitch = 0.69999998807907
1624
Sound35.SoundId = "http://www.roblox.com/asset/?id=31245465"
1625
Sound35.Volume = 0
1626
Sound35.PlayOnRemove = true
1627
Script36.Name = "Control"
1628
Script36.Parent = VehicleSeat34
1629
table.insert(cors,sandbox(Script36,function()
1630
while true do
1631
wait()
1632
if script.Parent.Steer == 2 then
1633
script.Parent.Swiv:play()
1634
script.Parent.Parent.WER.Value.C0 = script.Parent.Parent.WER.Value.C0 * CFrame.fromEulerAnglesXYZ(0,0.01,0)
1635
elseif script.Parent.Steer == -2 then
1636
script.Parent.Swiv:play()
1637
script.Parent.Parent.WER.Value.C0 = script.Parent.Parent.WER.Value.C0 * CFrame.fromEulerAnglesXYZ(0,-0.01,0)
1638
elseif script.Parent.Steer == 0 and script.Parent.Throttle == 0 then
1639
script.Parent.Swiv:pause()
1640
end
1641
end
1642
1643
end))
1644
Script37.Name = "Control2"
1645
Script37.Parent = VehicleSeat34
1646
table.insert(cors,sandbox(Script37,function()
1647
angle = 0
1648
1649
while true do
1650
wait()
1651
if script.Parent.Throttle == 1 and angle < 160 then
1652
script.Parent.Swiv:play()
1653
angle = angle + 1
1654
script.Parent.Angle.Value = angle
1655
script.Parent.Parent.WER2.Value.C0 = script.Parent.Parent.WER2.Value.C0 * CFrame.fromEulerAnglesXYZ(-0.01,0,0)
1656
elseif script.Parent.Throttle == -1 and angle > 0 then
1657
script.Parent.Swiv:play()
1658
angle = angle - 1
1659
script.Parent.Angle.Value = angle
1660
script.Parent.Parent.WER2.Value.C0 = script.Parent.Parent.WER2.Value.C0 * CFrame.fromEulerAnglesXYZ(0.01,0,0)
1661
end
1662
end
1663
1664
end))
1665
BlockMesh38.Parent = VehicleSeat34
1666
Script39.Name = "Pickup"
1667
Script39.Parent = VehicleSeat34
1668
table.insert(cors,sandbox(Script39,function()
1669
script.Parent.ChildAdded:connect(function(w)
1670
print("ChildAdded")
1671
if w.className=="Weld" then
1672
print("IsAWeld")
1673
if w.Name=="SeatWeld" then
1674
print("IsASeatWeld")
1675
if w.Part1.Parent:findFirstChild("Humanoid")~=nil then
1676
print("IsAHumanoid")
1677
pl=game.Players:GetPlayerFromCharacter(w.Part1.Parent)
1678
if pl~=nil then
1679
print("IsAPlayer")
1680
if pl.PlayerGui:findFirstChild("VehicleGui")~=nil then
1681
print("found vehicle gui - deleting")
1682
pl.PlayerGui:findFirstChild("VehicleGui").Parent=nil
1683
print("deleted")
1684
else
1685
print("no gui found - adding")
1686
newgui=script.Parent.VehicleGui:clone()
1687
newgui.Parent=pl.PlayerGui
1688
newgui.Vehicle.Value=script.Parent.Parent
1689
print("added")
1690
end
1691
end
1692
end
1693
end
1694
end
1695
end)
1696
1697
script.Parent.ChildRemoved:connect(function(w)
1698
print("ChildRemoved")
1699
if w.className=="Weld" then
1700
print("IsAWeld")
1701
if w.Name=="SeatWeld" then
1702
print("IsASeatWeld")
1703
if w.Part1.Parent:findFirstChild("Humanoid")~=nil then
1704
print("IsAHumanoid")
1705
pl=game.Players:GetPlayerFromCharacter(w.Part1.Parent)
1706
if pl~=nil then
1707
print("IsAPlayer")
1708
if pl.PlayerGui:findFirstChild("VehicleGui")~=nil then
1709
print("found vehicle gui - deleting")
1710
pl.PlayerGui:findFirstChild("VehicleGui").Parent=nil
1711
print("deleted")
1712
else
1713
print("no gui found - wierd...")
1714
end
1715
end
1716
end
1717
end
1718
end
1719
end)
1720
1721
1722
end))
1723
ScreenGui40.Name = "VehicleGui"
1724
ScreenGui40.Parent = VehicleSeat34
1725
Frame41.Parent = ScreenGui40
1726
Frame41.Transparency = 1
1727
Frame41.Size = UDim2.new(0.200000003, 0, 0.0500000007, 0)
1728
Frame41.Position = UDim2.new(0, 0, 0.800000012, 0)
1729
Frame41.BackgroundColor3 = Color3.new(0.905882, 0.905882, 0.905882)
1730
Frame41.BackgroundTransparency = 1
1731
Frame41.BorderColor3 = Color3.new(0, 0, 0)
1732
TextButton42.Name = "Machine"
1733
TextButton42.Parent = Frame41
1734
TextButton42.Transparency = 1
1735
TextButton42.Size = UDim2.new(1, 0, 2, 0)
1736
TextButton42.Style = Enum.ButtonStyle.RobloxButtonDefault
1737
TextButton42.Text = "Machine Guns"
1738
TextButton42.Position = UDim2.new(2, 0, -1, 0)
1739
TextButton42.Active = false
1740
TextButton42.Visible = false
1741
TextButton42.BackgroundColor3 = Color3.new(0, 0, 1)
1742
TextButton42.BackgroundTransparency = 1
1743
TextButton42.BorderColor3 = Color3.new(0, 0, 0)
1744
TextButton42.AutoButtonColor = false
1745
TextButton42.FontSize = Enum.FontSize.Size24
1746
TextButton42.TextColor3 = Color3.new(1, 1, 1)
1747
TextButton43.Name = "SABOT"
1748
TextButton43.Parent = Frame41
1749
TextButton43.Transparency = 0.5
1750
TextButton43.Size = UDim2.new(2, 0, 2, 0)
1751
TextButton43.Text = "Launch Cruise Missile"
1752
TextButton43.Position = UDim2.new(0.0350000001, 0, 1.5, 0)
1753
TextButton43.BackgroundColor3 = Color3.new(0, 0, 0)
1754
TextButton43.BackgroundTransparency = 0.5
1755
TextButton43.BorderColor3 = Color3.new(0, 0, 0)
1756
TextButton43.Font = Enum.Font.ArialBold
1757
TextButton43.FontSize = Enum.FontSize.Size36
1758
TextButton43.TextColor3 = Color3.new(1, 1, 1)
1759
TextButton43.TextStrokeTransparency = 0
1760
TextButton44.Name = "SMOKE"
1761
TextButton44.Parent = Frame41
1762
TextButton44.Size = UDim2.new(2, 0, 2, 0)
1763
TextButton44.Style = Enum.ButtonStyle.RobloxButtonDefault
1764
TextButton44.Text = "Fire SMOKE"
1765
TextButton44.Position = UDim2.new(0.0500000007, 0, -3, 0)
1766
TextButton44.Visible = false
1767
TextButton44.BackgroundColor3 = Color3.new(0, 0, 1)
1768
TextButton44.BorderColor3 = Color3.new(0, 0, 0)
1769
TextButton44.FontSize = Enum.FontSize.Size48
1770
TextButton44.TextColor3 = Color3.new(1, 1, 1)
1771
TextButton45.Name = "HEAT"
1772
TextButton45.Parent = Frame41
1773
TextButton45.Transparency = 0.5
1774
TextButton45.Size = UDim2.new(2, 0, 2, 0)
1775
TextButton45.Text = "Fire 155mm Howitzer"
1776
TextButton45.Position = UDim2.new(0.0250000115, 0, -1, 0)
1777
TextButton45.Visible = false
1778
TextButton45.BackgroundColor3 = Color3.new(0, 0, 0)
1779
TextButton45.BackgroundTransparency = 0.5
1780
TextButton45.BorderColor3 = Color3.new(0, 0, 0)
1781
TextButton45.Font = Enum.Font.ArialBold
1782
TextButton45.FontSize = Enum.FontSize.Size36
1783
TextButton45.TextColor3 = Color3.new(1, 1, 1)
1784
Script46.Parent = Frame41
1785
table.insert(cors,sandbox(Script46,function()
1786
repeat wait() until script.Parent.Parent.Vehicle.Value~=nil
1787
1788
db=false
1789
held=false
1790
1791
v = script.Parent.Parent.Vehicle
1792
f = script.Parent
1793
sabot = script.Parent.SABOT
1794
enable = script.Parent.Parent.red_roof
1795
fakemiss = v.Value.FakeMissile
1796
1797
function launchsabot()
1798
enable.Visible = true
1799
v.Value.Effect.Smoke.Enabled = true
1800
v.Value.Effect.Fire:Play()
1801
v.Value.Effect.Transparency = .5
1802
local v1=v.Value.Missile:clone()
1803
v1.CFrame = v.Value.Missile.CFrame * CFrame.new(0, 0, -5)
1804
v1.Smoke.Enabled = true
1805
v1.Smoke1.Enabled = true
1806
v1.Smoke2.Enabled = true
1807
v1.Smoke3.Enabled = true
1808
v1.Smoke4.Enabled = true
1809
v1.Fire.Enabled = true
1810
v1.Spark.Enabled = true
1811
fakemiss:remove()
1812
local vel=Instance.new("BodyVelocity")
1813
vel.Parent=v1
1814
v1.Velocity=v1.CFrame.lookVector*150
1815
vel.velocity=v1.Velocity
1816
v1.CanCollide=false
1817
v1.Transparency= 0
1818
v1.Parent=workspace
1819
wait(12)
1820
v1:remove()
1821
v.Value.Effect.Transparency = 1
1822
v.Value.Effect.Smoke.Enabled = false
1823
wait(7)
1824
v1:remove()
1825
sabot.Visible = false
1826
end
1827
1828
function sabotclick()
1829
print("click missile")
1830
if db==true then return end
1831
db=true
1832
sabot.Text="Reloading..."
1833
launchsabot()
1834
sabot.Visible = false
1835
db=false
1836
end
1837
1838
sabot.MouseButton1Click:connect(sabotclick)
1839
1840
1841
1842
1843
1844
end))
1845
ObjectValue47.Name = "Vehicle"
1846
ObjectValue47.Parent = ScreenGui40
1847
Frame48.Name = "CoordinateModule"
1848
Frame48.Parent = ScreenGui40
1849
Frame48.Transparency = 1
1850
Frame48.Size = UDim2.new(0, 100, 0, 100)
1851
Frame48.Position = UDim2.new(0, 50, 0, 400)
1852
Frame48.BackgroundColor3 = Color3.new(1, 1, 1)
1853
Frame48.BackgroundTransparency = 1
1854
TextButton49.Name = "AddVariableX"
1855
TextButton49.Parent = Frame48
1856
TextButton49.Size = UDim2.new(0, 20, 0, 20)
1857
TextButton49.Style = Enum.ButtonStyle.RobloxButton
1858
TextButton49.Text = "+"
1859
TextButton49.BackgroundColor3 = Color3.new(0, 0, 0)
1860
TextButton49.Font = Enum.Font.SourceSans
1861
TextButton49.FontSize = Enum.FontSize.Size36
1862
TextButton49.TextColor3 = Color3.new(1, 1, 1)
1863
Script50.Parent = TextButton49
1864
table.insert(cors,sandbox(Script50,function()
1865
x = script.Parent.Parent.VariableX
1866
vx = script.Parent.Parent.Variable1
1867
1868
function onButtonClicked()
1869
x.Value = x.Value + 10
1870
vx.Text="x:("..tostring(x.Value)..")"
1871
end
1872
script.Parent.MouseButton1Click:connect(onButtonClicked)
1873
end))
1874
TextButton51.Name = "SubtractVariableX"
1875
TextButton51.Parent = Frame48
1876
TextButton51.Size = UDim2.new(0, 20, 0, 20)
1877
TextButton51.Style = Enum.ButtonStyle.RobloxButton
1878
TextButton51.Text = "-"
1879
TextButton51.Position = UDim2.new(0, 30, 0, 0)
1880
TextButton51.BackgroundColor3 = Color3.new(0, 0, 0)
1881
TextButton51.Font = Enum.Font.SourceSans
1882
TextButton51.FontSize = Enum.FontSize.Size36
1883
TextButton51.TextColor3 = Color3.new(1, 1, 1)
1884
Script52.Parent = TextButton51
1885
table.insert(cors,sandbox(Script52,function()
1886
x = script.Parent.Parent.VariableX
1887
vx = script.Parent.Parent.Variable1
1888
1889
function onButtonClicked()
1890
x.Value = x.Value - 10
1891
vx.Text="x:("..tostring(x.Value)..")"
1892
end
1893
script.Parent.MouseButton1Click:connect(onButtonClicked)
1894
end))
1895
TextLabel53.Name = "Variable1"
1896
TextLabel53.Parent = Frame48
1897
TextLabel53.Size = UDim2.new(0, 150, 0, 20)
1898
TextLabel53.Text = "x:(0)"
1899
TextLabel53.Position = UDim2.new(0, 60, 0, 0)
1900
TextLabel53.BackgroundColor3 = Color3.new(0, 0, 0)
1901
TextLabel53.Font = Enum.Font.ArialBold
1902
TextLabel53.FontSize = Enum.FontSize.Size14
1903
TextLabel53.TextColor3 = Color3.new(1, 1, 1)
1904
TextButton54.Name = "AddVariableZ"
1905
TextButton54.Parent = Frame48
1906
TextButton54.Size = UDim2.new(0, 20, 0, 20)
1907
TextButton54.Style = Enum.ButtonStyle.RobloxButton
1908
TextButton54.Text = "+"
1909
TextButton54.Position = UDim2.new(0, 0, 0, 30)
1910
TextButton54.BackgroundColor3 = Color3.new(0, 0, 0)
1911
TextButton54.Font = Enum.Font.SourceSans
1912
TextButton54.FontSize = Enum.FontSize.Size36
1913
TextButton54.TextColor3 = Color3.new(1, 1, 1)
1914
Script55.Parent = TextButton54
1915
table.insert(cors,sandbox(Script55,function()
1916
z = script.Parent.Parent.VariableZ
1917
vz = script.Parent.Parent.Variable2
1918
1919
function onButtonClicked()
1920
z.Value = z.Value + 10
1921
vz.Text="z:("..tostring(z.Value)..")"
1922
end
1923
script.Parent.MouseButton1Click:connect(onButtonClicked)
1924
end))
1925
TextButton56.Name = "SubtractVariableZ"
1926
TextButton56.Parent = Frame48
1927
TextButton56.Size = UDim2.new(0, 20, 0, 20)
1928
TextButton56.Style = Enum.ButtonStyle.RobloxButton
1929
TextButton56.Text = "-"
1930
TextButton56.Position = UDim2.new(0, 30, 0, 30)
1931
TextButton56.BackgroundColor3 = Color3.new(0, 0, 0)
1932
TextButton56.Font = Enum.Font.SourceSans
1933
TextButton56.FontSize = Enum.FontSize.Size36
1934
TextButton56.TextColor3 = Color3.new(1, 1, 1)
1935
Script57.Parent = TextButton56
1936
table.insert(cors,sandbox(Script57,function()
1937
z = script.Parent.Parent.VariableZ
1938
vz = script.Parent.Parent.Variable2
1939
1940
function onButtonClicked()
1941
z.Value = z.Value - 10
1942
vz.Text="z:("..tostring(z.Value)..")"
1943
end
1944
script.Parent.MouseButton1Click:connect(onButtonClicked)
1945
end))
1946
TextLabel58.Name = "Variable2"
1947
TextLabel58.Parent = Frame48
1948
TextLabel58.Size = UDim2.new(0, 150, 0, 20)
1949
TextLabel58.Text = "y:(0)"
1950
TextLabel58.Position = UDim2.new(0, 60, 0, 30)
1951
TextLabel58.BackgroundColor3 = Color3.new(0, 0, 0)
1952
TextLabel58.Font = Enum.Font.ArialBold
1953
TextLabel58.FontSize = Enum.FontSize.Size14
1954
TextLabel58.TextColor3 = Color3.new(1, 1, 1)
1955
NumberValue59.Name = "VariableX"
1956
NumberValue59.Parent = Frame48
1957
NumberValue60.Name = "VariableY"
1958
NumberValue60.Parent = Frame48
1959
NumberValue61.Name = "VariableZ"
1960
NumberValue61.Parent = Frame48
1961
Frame62.Name = "MeterModule"
1962
Frame62.Parent = ScreenGui40
1963
Frame62.Size = UDim2.new(0, 100, 0, 160)
1964
Frame62.Position = UDim2.new(0, 50, 0, 230)
1965
Frame62.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
1966
TextLabel63.Name = "S1A"
1967
TextLabel63.Parent = Frame62
1968
TextLabel63.Size = UDim2.new(0, 95, 0, 30)
1969
TextLabel63.Text = "STAGE 1"
1970
TextLabel63.Position = UDim2.new(0.0250000004, 0, 0.0250000004, 0)
1971
TextLabel63.BackgroundColor3 = Color3.new(0.576471, 0.333333, 0.407843)
1972
TextLabel63.Font = Enum.Font.ArialBold
1973
TextLabel63.FontSize = Enum.FontSize.Size18
1974
TextLabel64.Name = "S2A"
1975
TextLabel64.Parent = Frame62
1976
TextLabel64.Size = UDim2.new(0, 95, 0, 30)
1977
TextLabel64.Text = "STAGE 2"
1978
TextLabel64.Position = UDim2.new(0.0250000004, 0, 0.25, 1)
1979
TextLabel64.BackgroundColor3 = Color3.new(0.576471, 0.333333, 0.407843)
1980
TextLabel64.Font = Enum.Font.ArialBold
1981
TextLabel64.FontSize = Enum.FontSize.Size18
1982
TextLabel65.Name = "S3A"
1983
TextLabel65.Parent = Frame62
1984
TextLabel65.Size = UDim2.new(0, 95, 0, 30)
1985
TextLabel65.Text = "STAGE 3"
1986
TextLabel65.Position = UDim2.new(0.0250000004, 0, 0.5, 1)
1987
TextLabel65.BackgroundColor3 = Color3.new(0.576471, 0.333333, 0.407843)
1988
TextLabel65.Font = Enum.Font.ArialBold
1989
TextLabel65.FontSize = Enum.FontSize.Size18
1990
TextLabel66.Name = "S4A"
1991
TextLabel66.Parent = Frame62
1992
TextLabel66.Size = UDim2.new(0, 95, 0, 30)
1993
TextLabel66.Text = "STAGE 4"
1994
TextLabel66.Position = UDim2.new(0.0250000004, 0, 0.75, 1)
1995
TextLabel66.BackgroundColor3 = Color3.new(0.576471, 0.333333, 0.407843)
1996
TextLabel66.Font = Enum.Font.ArialBold
1997
TextLabel66.FontSize = Enum.FontSize.Size18
1998
TextLabel67.Name = "S1B"
1999
TextLabel67.Parent = Frame62
2000
TextLabel67.Size = UDim2.new(0, 95, 0, 30)
2001
TextLabel67.Text = "STAGE 1"
2002
TextLabel67.Position = UDim2.new(0.0250000004, 0, 0.0250000004, 0)
2003
TextLabel67.Visible = false
2004
TextLabel67.BackgroundColor3 = Color3.new(0.196078, 0.576471, 0.0901961)
2005
TextLabel67.Font = Enum.Font.ArialBold
2006
TextLabel67.FontSize = Enum.FontSize.Size18
2007
TextLabel68.Name = "S2B"
2008
TextLabel68.Parent = Frame62
2009
TextLabel68.Size = UDim2.new(0, 95, 0, 30)
2010
TextLabel68.Text = "STAGE 2"
2011
TextLabel68.Position = UDim2.new(0.0250000004, 0, 0.25, 1)
2012
TextLabel68.Visible = false
2013
TextLabel68.BackgroundColor3 = Color3.new(0.196078, 0.576471, 0.0901961)
2014
TextLabel68.Font = Enum.Font.ArialBold
2015
TextLabel68.FontSize = Enum.FontSize.Size18
2016
TextLabel69.Name = "S3B"
2017
TextLabel69.Parent = Frame62
2018
TextLabel69.Size = UDim2.new(0, 95, 0, 30)
2019
TextLabel69.Text = "STAGE 3"
2020
TextLabel69.Position = UDim2.new(0.0250000004, 0, 0.5, 1)
2021
TextLabel69.Visible = false
2022
TextLabel69.BackgroundColor3 = Color3.new(0.196078, 0.576471, 0.0901961)
2023
TextLabel69.Font = Enum.Font.ArialBold
2024
TextLabel69.FontSize = Enum.FontSize.Size18
2025
TextLabel70.Name = "S4B"
2026
TextLabel70.Parent = Frame62
2027
TextLabel70.Size = UDim2.new(0, 95, 0, 30)
2028
TextLabel70.Text = "STAGE 4"
2029
TextLabel70.Position = UDim2.new(0.0250000004, 0, 0.75, 1)
2030
TextLabel70.Visible = false
2031
TextLabel70.BackgroundColor3 = Color3.new(0.196078, 0.576471, 0.0901961)
2032
TextLabel70.Font = Enum.Font.ArialBold
2033
TextLabel70.FontSize = Enum.FontSize.Size18
2034
TextButton71.Name = "red_roof"
2035
TextButton71.Parent = ScreenGui40
2036
TextButton71.Transparency = 0.5
2037
TextButton71.Size = UDim2.new(0, 100, 0, 20)
2038
TextButton71.Text = "ENABLE"
2039
TextButton71.Position = UDim2.new(0, 270, 0, 400)
2040
TextButton71.Visible = false
2041
TextButton71.BackgroundColor3 = Color3.new(0, 0, 0)
2042
TextButton71.BackgroundTransparency = 0.5
2043
TextButton71.Font = Enum.Font.ArialBold
2044
TextButton71.FontSize = Enum.FontSize.Size14
2045
TextButton71.TextColor3 = Color3.new(1, 1, 1)
2046
TextButton71.TextStrokeTransparency = 0
2047
Script72.Parent = TextButton71
2048
table.insert(cors,sandbox(Script72,function()
2049
repeat wait() until script.Parent.Parent.Vehicle.Value~=nil
2050
2051
db=false
2052
held=false
2053
2054
v = script.Parent.Parent.Vehicle
2055
vz = script.Parent.Parent.CoordinateModule.VariableZ
2056
vx = script.Parent.Parent.CoordinateModule.VariableX
2057
vy = script.Parent.Parent.CoordinateModule.VariableY
2058
wh = v.Value.Warhead
2059
mm = script.Parent.Parent.MeterModule
2060
2061
function stage1()
2062
	script.Parent.Visible = false
2063
	mm.S1A.Visible = false
2064
	mm.S1B.Visible = true
2065
end
2066
2067
function stage2()
2068
	mm.S1B.Visible = false
2069
	mm.S1A.Visible = true
2070
	mm.S2A.Visible = false
2071
	mm.S2B.Visible = true
2072
end
2073
2074
function stage3()
2075
	mm.S2B.Visible = false
2076
	mm.S2A.Visible = true
2077
	mm.S3A.Visible = false
2078
	mm.S3B.Visible = true
2079
end
2080
2081
function stage4()
2082
	mm.S3B.Visible = false
2083
	mm.S3A.Visible = true
2084
	mm.S4A.Visible = false
2085
	mm.S4B.Visible = true	
2086
end
2087
2088
function impact()
2089
	wh.CFrame = CFrame.new((vx.Value), 1000, (vz.Value))
2090
	wait(0.1)
2091
	wh.Anchored = false
2092
	wh.Transparency = 0
2093
	wh.Touch.Disabled = false
2094
	wh.Smoke.Enabled = true
2095
	wh.Smoke2.Enabled = true
2096
	wh.Smoke3.Enabled = true
2097
	wh.Smoke4.Enabled = true
2098
	wh.Light.Enabled = true
2099
	wh.CanCollide = true
2100
	local vel=Instance.new("BodyVelocity")
2101
	vel.Parent=wh
2102
	wh.Velocity=wh.CFrame.lookVector*60
2103
	vel.velocity=wh.Velocity
2104
end
2105
2106
function onButtonClicked()
2107
	stage1()
2108
	wait(5)
2109
	stage2()
2110
	wait(5)
2111
	stage3()
2112
	wait(5)
2113
	stage4()
2114
	wait(3)	
2115
	mm.S4B.Visible = false
2116
	mm.S4A.Visible = true
2117
	impact()
2118
end
2119
2120
script.Parent.MouseButton1Click:connect(onButtonClicked)
2121
end))
2122
Script73.Name = "MainFrame"
2123
Script73.Parent = ScreenGui40
2124
Script73.Disabled = true
2125
table.insert(cors,sandbox(Script73,function()
2126
repeat wait() until script.Parent.Parent.Vehicle.Value~=nil
2127
2128
db=false
2129
held=false
2130
2131
v = script.Parent.Vehicle
2132
vs = v.Value.VehicleSeat
2133
mm = script.Parent.MeterModule
2134
cm = script.Parent.CoordinateModule
2135
fire = script.Parent.Frame
2136
enable = script.Parent.red_roof
2137
angle = vs.Angle
2138
2139
if angle.Value > 159 then
2140
	mm.Visible = true
2141
	cm.Visible = true
2142
	fire.Visible = true
2143
	enable.Visible = true
2144
end
2145
2146
if angle.Value < 160 then
2147
	mm.Visible = false
2148
	cm.Visible = false
2149
	fire.Visible = false
2150
	enable.Visible = false
2151
end
2152
2153
end))
2154
NumberValue74.Name = "Angle"
2155
NumberValue74.Parent = VehicleSeat34
2156
Part75.Parent = Model1
2157
Part75.Material = Enum.Material.Metal
2158
Part75.BrickColor = BrickColor.new("Grime")
2159
Part75.Rotation = Vector3.new(0, -90, 0)
2160
Part75.FormFactor = Enum.FormFactor.Plate
2161
Part75.Size = Vector3.new(1.80000007, 0.800000012, 1)
2162
Part75.CFrame = CFrame.new(12.8898983, 7.6000824, 38.9598885, 1.79557064e-05, 9.34016316e-06, -1, 5.58539214e-05, 1, 9.81848007e-06, 1, -4.90284801e-05, 2.76660649e-05)
2163
Part75.BackSurface = Enum.SurfaceType.Weld
2164
Part75.BottomSurface = Enum.SurfaceType.Weld
2165
Part75.FrontSurface = Enum.SurfaceType.Weld
2166
Part75.LeftSurface = Enum.SurfaceType.Weld
2167
Part75.RightSurface = Enum.SurfaceType.Weld
2168
Part75.TopSurface = Enum.SurfaceType.Smooth
2169
Part75.Color = Color3.new(0.498039, 0.556863, 0.392157)
2170
Part75.Position = Vector3.new(12.8898983, 7.6000824, 38.9598885)
2171
Part75.Orientation = Vector3.new(0, -90, 0)
2172
Part75.Color = Color3.new(0.498039, 0.556863, 0.392157)
2173
BlockMesh76.Parent = Part75
2174
BlockMesh76.Scale = Vector3.new(1.29999995, 1, 1)
2175
BlockMesh76.Scale = Vector3.new(1.29999995, 1, 1)
2176
Part77.Name = "BarrelPart"
2177
Part77.Parent = Model1
2178
Part77.Material = Enum.Material.Metal
2179
Part77.BrickColor = BrickColor.new("Grime")
2180
Part77.Rotation = Vector3.new(180, -90, 0)
2181
Part77.FormFactor = Enum.FormFactor.Custom
2182
Part77.Size = Vector3.new(2, 0.200000003, 2)
2183
Part77.CFrame = CFrame.new(12.3898935, 10.6001215, 38.9598274, -5.20252797e-07, -4.67066002e-06, -1, -1.12105145e-05, -1, 5.14798012e-06, -1, 4.38485722e-06, 1.02310514e-05)
2184
Part77.BackSurface = Enum.SurfaceType.Weld
2185
Part77.BottomSurface = Enum.SurfaceType.Smooth
2186
Part77.FrontSurface = Enum.SurfaceType.Weld
2187
Part77.LeftSurface = Enum.SurfaceType.Weld
2188
Part77.RightSurface = Enum.SurfaceType.Weld
2189
Part77.TopSurface = Enum.SurfaceType.Weld
2190
Part77.Color = Color3.new(0.498039, 0.556863, 0.392157)
2191
Part77.Position = Vector3.new(12.3898935, 10.6001215, 38.9598274)
2192
Part77.Orientation = Vector3.new(0, -90, -180)
2193
Part77.Color = Color3.new(0.498039, 0.556863, 0.392157)
2194
CylinderMesh78.Parent = Part77
2195
Part79.Name = "Swivel"
2196
Part79.Parent = Model1
2197
Part79.Material = Enum.Material.Metal
2198
Part79.BrickColor = BrickColor.new("Grime")
2199
Part79.Rotation = Vector3.new(0, 90, 0)
2200
Part79.CanCollide = false
2201
Part79.FormFactor = Enum.FormFactor.Custom
2202
Part79.Size = Vector3.new(3, 0.200000003, 3)
2203
Part79.CFrame = CFrame.new(12.889883, 8.10011101, 38.9598198, 1.50947981e-05, 5.43772376e-06, 1, -2.21862356e-05, 1, -5.9147028e-06, -1, -1.53604906e-05, 5.38406312e-06)
2204
Part79.BottomSurface = Enum.SurfaceType.Weld
2205
Part79.RightSurface = Enum.SurfaceType.Weld
2206
Part79.TopSurface = Enum.SurfaceType.Weld
2207
Part79.Color = Color3.new(0.498039, 0.556863, 0.392157)
2208
Part79.Position = Vector3.new(12.889883, 8.10011101, 38.9598198)
2209
Part79.Orientation = Vector3.new(0, 90, 0)
2210
Part79.Color = Color3.new(0.498039, 0.556863, 0.392157)
2211
CylinderMesh80.Parent = Part79
2212
CylinderMesh80.Offset = Vector3.new(0, -0.100000001, 0)
2213
CylinderMesh80.Scale = Vector3.new(1, 1.5, 0.949999988)
2214
CylinderMesh80.Scale = Vector3.new(1, 1.5, 0.949999988)
2215
Script81.Parent = Part79
2216
table.insert(cors,sandbox(Script81,function()
2217
b = script.Parent
2218
c = script.Parent.Parent.Connector
2219
2220
	local weld = Instance.new("Weld")
2221
2222
	weld.Part0 = c
2223
	weld.Part1 = b
2224
2225
	weld.C0 = CFrame.new(0, -1, 0)
2226
2227
	weld.Parent = c
2228
2229
script.Parent.Parent.WER.Value = weld
2230
end))
2231
Part82.Name = "Missile"
2232
Part82.Parent = Model1
2233
Part82.Material = Enum.Material.SmoothPlastic
2234
Part82.BrickColor = BrickColor.new("Quill grey")
2235
Part82.Transparency = 1
2236
Part82.Rotation = Vector3.new(180, 90, 0)
2237
Part82.FormFactor = Enum.FormFactor.Symmetric
2238
Part82.Size = Vector3.new(2.20000005, 1, 2)
2239
Part82.CFrame = CFrame.new(-23.0097218, 11.8003483, 38.8605461, -1.99113638e-05, -5.20105959e-06, 1, 2.55717896e-05, -1, -6.13996826e-06, 1, 1.21387684e-05, 8.00541045e-07)
2240
Part82.BottomSurface = Enum.SurfaceType.Weld
2241
Part82.TopSurface = Enum.SurfaceType.Weld
2242
Part82.Color = Color3.new(0.87451, 0.87451, 0.870588)
2243
Part82.Position = Vector3.new(-23.0097218, 11.8003483, 38.8605461)
2244
Part82.Orientation = Vector3.new(0, 90, 180)
2245
Part82.Color = Color3.new(0.87451, 0.87451, 0.870588)
2246
Fire83.Parent = Part82
2247
Fire83.Size = 30
2248
Fire83.Color = Color3.new(0.92549, 0.545098, 0.27451)
2249
Fire83.Enabled = false
2250
Fire83.Heat = 0
2251
Fire83.SecondaryColor = Color3.new(0.545098, 0.313726, 0.215686)
2252
Fire83.Color = Color3.new(0.92549, 0.545098, 0.27451)
2253
Smoke84.Parent = Part82
2254
Smoke84.Size = 15
2255
Smoke84.Enabled = false
2256
Smoke84.Opacity = 1
2257
Smoke84.RiseVelocity = 25
2258
Smoke85.Name = "Smoke1"
2259
Smoke85.Parent = Part82
2260
Smoke85.Size = 15
2261
Smoke85.Enabled = false
2262
Smoke85.Opacity = 1
2263
Smoke85.RiseVelocity = 25
2264
Smoke86.Name = "Smoke2"
2265
Smoke86.Parent = Part82
2266
Smoke86.Size = 15
2267
Smoke86.Enabled = false
2268
Smoke86.Opacity = 1
2269
Smoke86.RiseVelocity = 25
2270
Smoke87.Name = "Smoke3"
2271
Smoke87.Parent = Part82
2272
Smoke87.Size = 15
2273
Smoke87.Enabled = false
2274
Smoke87.Opacity = 1
2275
Smoke87.RiseVelocity = 25
2276
Smoke88.Name = "Smoke4"
2277
Smoke88.Parent = Part82
2278
Smoke88.Size = 15
2279
Smoke88.Enabled = false
2280
Smoke88.Opacity = 1
2281
Smoke88.RiseVelocity = 25
2282
BillboardGui89.Name = "Spark"
2283
BillboardGui89.Parent = Part82
2284
BillboardGui89.Size = UDim2.new(35, 0, 35, 0)
2285
BillboardGui89.Enabled = false
2286
BillboardGui89.Active = true
2287
ImageLabel90.Name = "Light"
2288
ImageLabel90.Parent = BillboardGui89
2289
ImageLabel90.Transparency = 1
2290
ImageLabel90.Size = UDim2.new(1, 0, 1, 0)
2291
ImageLabel90.Active = true
2292
ImageLabel90.BackgroundColor3 = Color3.new(0.756863, 0.752941, 0.764706)
2293
ImageLabel90.BackgroundTransparency = 1
2294
ImageLabel90.Image = "http://www.roblox.com/asset/?id=43708803"
2295
Script91.Parent = BillboardGui89
2296
table.insert(cors,sandbox(Script91,function()
2297
script.Parent.Adornee = script.Parent.Parent
2298
end))
2299
SpecialMesh92.Parent = Part82
2300
SpecialMesh92.MeshId = "http://www.roblox.com/asset/?id=74333739"
2301
SpecialMesh92.Scale = Vector3.new(24, 24, 24)
2302
SpecialMesh92.MeshType = Enum.MeshType.FileMesh
2303
SpecialMesh92.Scale = Vector3.new(24, 24, 24)
2304
Script93.Name = "Sabot"
2305
Script93.Parent = Part82
2306
Script93.Disabled = true
2307
table.insert(cors,sandbox(Script93,function()
2308
wait(.1)
2309
function onTouch(hit)
2310
script.Parent.Anchored = true
2311
script.Parent.Parent = Workspace
2312
script.Parent.Transparency = 1
2313
wait()
2314
script.Parent.Atom.Disabled = false
2315
end
2316
2317
script.Parent.Touched:connect(onTouch)
2318
end))
2319
Script94.Name = "Atom"
2320
Script94.Parent = Part82
2321
Script94.Disabled = true
2322
table.insert(cors,sandbox(Script94,function()
2323
print("Nuke Em' All")
2324
2325
local CloudID= "http://www.roblox.com/asset/?id=1095708"
2326
local ColorTexture = "http://www.roblox.com/asset/?ID=1361097"
2327
local RingID = "http://www.roblox.com/asset/?id=3270017"
2328
local SphereID = "http://www.roblox.com/asset/?id=1185246"
2329
2330
local BasePosition = script.Parent.Position
2331
2332
local Size = 50
2333
2334
local Exp = Instance.new("Model")
2335
Exp.Name = "ATOMICEXPLOSION"
2336
Exp.Parent = game.Workspace
2337
2338
local BasePart = Instance.new("Part")
2339
BasePart.formFactor = 0
2340
BasePart.TopSurface = 0
2341
BasePart.BottomSurface = 0
2342
BasePart.Anchored = true
2343
BasePart.Locked = true
2344
BasePart.CanCollide = false
2345
2346
local BaseMesh = Instance.new("SpecialMesh")
2347
BaseMesh.MeshType = "FileMesh"
2348
2349
local CloudMesh = BaseMesh:clone()
2350
CloudMesh.MeshId = CloudID
2351
CloudMesh.TextureId = ColorTexture
2352
CloudMesh.VertexColor = Vector3.new(0.9,0.6,0)
2353
2354
local RingMesh = BaseMesh:clone()
2355
RingMesh.MeshId = RingID
2356
2357
local SphereMesh = BaseMesh:clone()
2358
SphereMesh.MeshId = SphereID
2359
2360
local Clouds = {}
2361
local ShockWave = {}
2362
local Sky = script.Sky
2363
2364
2365
function Effects()
2366
	script.Explode:Play()
2367
	delay(0,function() 
2368
		for i = 5, 1,-0.01 do
2369
			wait()
2370
			game.Lighting.Brightness = i
2371
		end
2372
	end)
2373
end
2374
2375
function Destruction(Pos,Radius)
2376
	local function Destroy(Model)
2377
		for i ,v in ipairs(Model:getChildren()) do
2378
			if v:isA("BasePart") then
2379
				if (v.Position-Pos).magnitude < Radius then
2380
					if v.Anchored == false then
2381
						v:BreakJoints()
2382
						v.Velocity = CFrame.new(v.Position,Pos):vectorToWorldSpace(Vector3.new(math.random(-5,5),5,1000))
2383
						v.Material = "CorrodedMetal"
2384
					end	
2385
				end
2386
			end
2387
			if #v:getChildren() > 0 then
2388
				Destroy(v)
2389
			end
2390
		end
2391
	end
2392
	Destroy(game.Workspace)
2393
end
2394
function Explode(Pos)
2395
2396
local Base = BasePart:clone()
2397
Base.Position = Pos
2398
	
2399
local Mesh = CloudMesh:clone()
2400
Mesh.Parent = Base 
2401
Mesh.Scale = Vector3.new(2.5,1,4.5)
2402
2403
local PoleBase = BasePart:clone()
2404
PoleBase.Position = Pos+Vector3.new(0,0.1,0)
2405
2406
local PoleBaseMesh = CloudMesh:clone()
2407
PoleBaseMesh.Scale = Vector3.new(1.25,2,2.5)
2408
PoleBaseMesh.Parent = PoleBase
2409
2410
local Cloud1 = BasePart:clone()
2411
Cloud1.Position = Pos+Vector3.new(0,0.75,0)
2412
2413
local Cloud1Mesh = CloudMesh:clone()
2414
Cloud1Mesh.Scale = Vector3.new(0.5,3,1)
2415
Cloud1Mesh.Parent = Cloud1
2416
	
2417
local Cloud2 = BasePart:clone()
2418
Cloud2.Position = Pos+Vector3.new(0,1.25,0)
2419
	
2420
local Cloud2Mesh = CloudMesh:clone()
2421
Cloud2Mesh.Scale = Vector3.new(0.5,1.5,1)
2422
Cloud2Mesh.Parent = Cloud2
2423
2424
local Cloud3 = BasePart:clone()
2425
Cloud3.Position = Pos+Vector3.new(0,1.7,0)
2426
	
2427
local Cloud3Mesh = CloudMesh:clone()
2428
Cloud3Mesh.Scale = Vector3.new(0.5,1.5,1)
2429
Cloud3Mesh.Parent = Cloud3
2430
2431
local PoleRing = BasePart:clone()
2432
PoleRing.Position = Pos+Vector3.new(0,1.3,0)
2433
PoleRing.Transparency = 0.2
2434
PoleRing.BrickColor = BrickColor.new("Dark stone grey")
2435
PoleRing.CFrame = PoleRing.CFrame*CFrame.Angles(math.rad(90),0,0)
2436
2437
local Mesh = RingMesh:clone()
2438
Mesh.Scale = Vector3.new(1.2,1.2,1.2)
2439
Mesh.Parent = PoleRing
2440
2441
local MushCloud = BasePart:clone()
2442
MushCloud.Position = Pos+Vector3.new(0,2.3,0)
2443
	
2444
local MushMesh = CloudMesh:clone() -- lol
2445
MushMesh.Scale = Vector3.new(2.5,1.75,3.5)
2446
MushMesh.Parent = MushCloud
2447
2448
local TopCloud = BasePart:clone()
2449
TopCloud.Position = Pos+Vector3.new(0,2.7,0)
2450
	
2451
local TopMesh = CloudMesh:clone()
2452
TopMesh.Scale = Vector3.new(7.5,1.5,1.5)
2453
TopMesh.Parent = TopCloud
2454
2455
table.insert(Clouds,Base)
2456
table.insert(Clouds,TopCloud)
2457
table.insert(Clouds,MushCloud)
2458
table.insert(Clouds,Cloud1)
2459
table.insert(Clouds,Cloud2)
2460
table.insert(Clouds,Cloud3)
2461
table.insert(Clouds,PoleBase)
2462
table.insert(Clouds,PoleRing)
2463
2464
2465
local BigRing = BasePart:clone()
2466
BigRing.Position = Pos
2467
BigRing.CFrame = BigRing.CFrame*CFrame.Angles(math.rad(90),0,0)
2468
	
2469
local BigMesh = RingMesh:clone()
2470
BigMesh.Scale = Vector3.new(5,5,1)
2471
BigMesh.Parent = BigRing
2472
	
2473
local SmallRing = BasePart:clone()
2474
SmallRing.Position = Pos
2475
SmallRing.BrickColor = BrickColor.new("Dark stone grey")
2476
SmallRing.CFrame = SmallRing.CFrame*CFrame.Angles(math.rad(90),0,0)
2477
2478
local SmallMesh = RingMesh:clone()
2479
SmallMesh.Scale = Vector3.new(4.6,4.6,1.5)
2480
SmallMesh.Parent = SmallRing
2481
2482
local InnerSphere = BasePart:clone()
2483
InnerSphere.Position = Pos
2484
InnerSphere.BrickColor = BrickColor.new("Bright orange")
2485
InnerSphere.Transparency = 0.5
2486
2487
local InnerSphereMesh = SphereMesh:clone()	
2488
InnerSphereMesh.Scale = Vector3.new(-6.5,-6.5,-6.5)
2489
InnerSphereMesh.Parent = InnerSphere
2490
	
2491
local OutterSphere = BasePart:clone()
2492
OutterSphere.Position = Pos
2493
OutterSphere.BrickColor = BrickColor.new("Bright orange")
2494
OutterSphere.Transparency = 0.5
2495
2496
local OutterSphereMesh = SphereMesh:clone()
2497
OutterSphereMesh.Scale = Vector3.new(6.5,6.5,6.5)
2498
OutterSphereMesh.Parent = OutterSphere
2499
2500
table.insert(ShockWave,BigRing)	
2501
table.insert(ShockWave,SmallRing)
2502
table.insert(ShockWave,OutterSphere)
2503
table.insert(ShockWave,InnerSphere)
2504
	Sky.Parent = game.Lighting
2505
	for i , v in ipairs(ShockWave) do
2506
		v.Parent = Exp
2507
	end
2508
	for i , v in ipairs(Clouds) do
2509
		v.Parent = Exp
2510
	end
2511
	Effects()
2512
	delay(0,function()
2513
		for resize = Size/2.5, Size*3, 2 do
2514
			wait()
2515
			BigRing.Mesh.Scale = Vector3.new(5*resize,5*resize,1*resize)
2516
			SmallRing.Mesh.Scale = Vector3.new(4.6*resize,4.6*resize,1.5*resize)
2517
			InnerSphere.Mesh.Scale = Vector3.new(-6.5*resize,-6.5*resize,-6.5*resize)
2518
			OutterSphere.Mesh.Scale = Vector3.new(6.5*resize,6.5*resize,6.5*resize)
2519
			Destruction(Pos,3*resize)
2520
		end
2521
		for fade = 0, 1, 0.01 do
2522
			wait()
2523
			pcall(function()
2524
				for i ,v in ipairs(ShockWave) do
2525
					v.Transparency = fade
2526
				end
2527
			end)
2528
		end
2529
		for i ,v in ipairs(ShockWave) do
2530
			v:Remove()
2531
		end
2532
		done1 = true
2533
	end)
2534
	delay(0,function()
2535
		for resize = Size/5, Size, 1 do
2536
			wait()
2537
			pcall(function()
2538
				Base.Mesh.Scale = Vector3.new(2.5*resize,1*resize,4.5*resize)
2539
				TopCloud.Mesh.Scale = Vector3.new(0.75*resize,1.5*resize,1.5*resize)
2540
				MushCloud.Mesh.Scale = Vector3.new(2.5*resize,1.75*resize,3.5*resize)
2541
				Cloud1.Mesh.Scale = Vector3.new(0.5*resize,3*resize,1*resize)
2542
				Cloud2.Mesh.Scale = Vector3.new(0.5*resize,1.5*resize,1*resize)
2543
				Cloud3.Mesh.Scale = Vector3.new(0.5*resize,1.5*resize,1*resize)
2544
				PoleBase.Mesh.Scale = Vector3.new(1*resize,2*resize,2.5*resize)
2545
				PoleRing.Mesh.Scale = Vector3.new(1.2*resize,1.2*resize,1.2*resize)
2546
2547
				Base.Position = Pos+Vector3.new(0,0.05*resize,0)
2548
				TopCloud.Position = Pos+Vector3.new(0,2.7*resize,0)
2549
				MushCloud.Position = Pos+Vector3.new(0,2.3*resize,0)
2550
				Cloud1.Position = Pos+Vector3.new(0,0.75*resize,0)
2551
				Cloud2.Position = Pos+Vector3.new(0,1.25*resize,0)
2552
				Cloud3.Position = Pos+Vector3.new(0,1.7*resize,0)
2553
				PoleBase.Position = Pos+Vector3.new(0,0.1*resize,0)
2554
				PoleRing.Position = Pos+Vector3.new(0,1.3*resize,0)
2555
			end)
2556
		end
2557
		done2 = true
2558
	end)
2559
	wait(2)
2560
	for y = 0.6,0,-0.0025 do
2561
		wait()
2562
		for i , v in ipairs(Clouds) do
2563
			v.Mesh.VertexColor = Vector3.new(0.9,y,0)
2564
		end
2565
	end
2566
	for r = 0.9,0.5,-0.01 do
2567
		wait()
2568
		for i , v in ipairs(Clouds) do
2569
			v.Mesh.VertexColor = Vector3.new(r,0,0)
2570
		end
2571
	end
2572
	for by = 0,0.5,0.005 do
2573
		wait()
2574
		for i , v in ipairs(Clouds) do
2575
			v.Mesh.VertexColor = Vector3.new(0.5,by,by)
2576
			v.Transparency = by*2
2577
		end
2578
		Base.Mesh.Scale = Base.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
2579
		TopCloud.Mesh.Scale = TopCloud.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
2580
		MushCloud.Mesh.Scale = MushCloud.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
2581
		Cloud1.Mesh.Scale = Cloud1.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
2582
		Cloud2.Mesh.Scale = Cloud2.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
2583
		Cloud3.Mesh.Scale = Cloud3.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
2584
		PoleBase.Mesh.Scale = PoleBase.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
2585
		PoleRing.Mesh.Scale = PoleRing.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
2586
	end
2587
	done3 = true
2588
	while true do wait(1) if done1 and done2 and done3 then break end end
2589
	Exp:remove()
2590
	wait(20)
2591
	Sky:remove()
2592
end
2593
2594
2595
	
2596
2597
Explode(BasePosition)
2598
2599
script.Parent:remove()
2600
2601
2602
2603
	
2604
	
2605
2606
2607
2608
2609
end))
2610
Sound95.Name = "Explode"
2611
Sound95.Parent = Script94
2612
Sound95.Pitch = 0.5
2613
Sound95.SoundId = "http://www.roblox.com/asset?id=130768997"
2614
Sound95.Volume = 1
2615
Sky96.Parent = Script94
2616
Sky96.SkyboxBk = "http://www.roblox.com/asset/?version=1&id=1012890"
2617
Sky96.SkyboxDn = "http://www.roblox.com/asset/?version=1&id=1012891"
2618
Sky96.SkyboxFt = "http://www.roblox.com/asset/?version=1&id=1012887"
2619
Sky96.SkyboxLf = "http://www.roblox.com/asset/?version=1&id=1012889"
2620
Sky96.SkyboxRt = "http://www.roblox.com/asset/?version=1&id=1012888"
2621
Sky96.SkyboxUp = "http://www.roblox.com/asset/?version=1&id=1014449"
2622
Part97.Name = "Effect"
2623
Part97.Parent = Model1
2624
Part97.Material = Enum.Material.SmoothPlastic
2625
Part97.BrickColor = BrickColor.new("Earth green")
2626
Part97.Transparency = 1
2627
Part97.Rotation = Vector3.new(-90, 0, 90)
2628
Part97.FormFactor = Enum.FormFactor.Symmetric
2629
Part97.Size = Vector3.new(2.20000005, 1, 2)
2630
Part97.CFrame = CFrame.new(-21.5097256, 11.3003311, 38.8604736, 1.99002643e-05, -1, 6.76171112e-06, -2.55639879e-05, 7.70061979e-06, 1, -1, -7.8946141e-07, -1.21309677e-05)
2631
Part97.BottomSurface = Enum.SurfaceType.Weld
2632
Part97.TopSurface = Enum.SurfaceType.Weld
2633
Part97.Color = Color3.new(0.152941, 0.27451, 0.176471)
2634
Part97.Position = Vector3.new(-21.5097256, 11.3003311, 38.8604736)
2635
Part97.Orientation = Vector3.new(-90, 90, 0)
2636
Part97.Color = Color3.new(0.152941, 0.27451, 0.176471)
2637
Sound98.Name = "CSfire"
2638
Sound98.Parent = Part97
2639
Sound98.SoundId = "http://www.roblox.com/asset?id=132975999"
2640
Sound98.Volume = 1
2641
Sound99.Name = "Reload"
2642
Sound99.Parent = Part97
2643
Sound99.SoundId = "http://www.roblox.com/asset/?id=154199166"
2644
Sound99.Volume = 1
2645
SpecialMesh100.Parent = Part97
2646
SpecialMesh100.Scale = Vector3.new(0.800000012, 8, 1)
2647
SpecialMesh100.MeshType = Enum.MeshType.Sphere
2648
SpecialMesh100.Scale = Vector3.new(0.800000012, 8, 1)
2649
PointLight101.Parent = Part97
2650
PointLight101.Color = Color3.new(1, 1, 0.498039)
2651
PointLight101.Enabled = false
2652
PointLight101.Color = Color3.new(1, 1, 0.498039)
2653
Smoke102.Parent = Part97
2654
Smoke102.Size = 50
2655
Smoke102.Enabled = false
2656
Smoke102.RiseVelocity = 10
2657
Sound103.Name = "Fire"
2658
Sound103.Parent = Part97
2659
Sound103.Pitch = 0.5
2660
Sound103.SoundId = "rbxassetid://181356975"
2661
Sound103.Volume = 1
2662
Model104.Name = "FakeMissile"
2663
Model104.Parent = Model1
2664
Part105.Name = "FakeMissile"
2665
Part105.Parent = Model104
2666
Part105.Material = Enum.Material.Metal
2667
Part105.BrickColor = BrickColor.new("Quill grey")
2668
Part105.Rotation = Vector3.new(180, 90, 0)
2669
Part105.CanCollide = false
2670
Part105.FormFactor = Enum.FormFactor.Custom
2671
Part105.Size = Vector3.new(6.39999962, 1, 0.200000003)
2672
Part105.CFrame = CFrame.new(-3.70967841, 11.0001984, 38.9599075, -1.99113711e-05, -5.20106005e-06, 1, 2.55717914e-05, -1, -6.13996781e-06, 1, 1.21387639e-05, 8.00539965e-07)
2673
Part105.BottomSurface = Enum.SurfaceType.Weld
2674
Part105.TopSurface = Enum.SurfaceType.Weld
2675
Part105.Color = Color3.new(0.87451, 0.87451, 0.870588)
2676
Part105.Position = Vector3.new(-3.70967841, 11.0001984, 38.9599075)
2677
Part105.Orientation = Vector3.new(0, 90, 180)
2678
Part105.Color = Color3.new(0.87451, 0.87451, 0.870588)
2679
SpecialMesh106.Parent = Part105
2680
SpecialMesh106.MeshId = "http://www.roblox.com/asset/?id=74333739"
2681
SpecialMesh106.Scale = Vector3.new(25, 25, 24)
2682
SpecialMesh106.MeshType = Enum.MeshType.FileMesh
2683
SpecialMesh106.Scale = Vector3.new(25, 25, 24)
2684
Part107.Name = "Warhead"
2685
Part107.Parent = Model1
2686
Part107.BrickColor = BrickColor.new("Institutional white")
2687
Part107.Reflectance = 0.5
2688
Part107.Transparency = 1
2689
Part107.Rotation = Vector3.new(180, 0, 0)
2690
Part107.Anchored = true
2691
Part107.FormFactor = Enum.FormFactor.Plate
2692
Part107.Size = Vector3.new(3.79999971, 6.59999943, 3.79999995)
2693
Part107.CFrame = CFrame.new(-7.70991611, 33.3989334, 39.2596893, 0.999999702, -6.4844221e-06, -6.66087817e-06, -6.48497235e-06, -0.999999702, -1.0551862e-05, -6.67190989e-06, 1.05441059e-05, -1)
2694
Part107.BottomSurface = Enum.SurfaceType.Weld
2695
Part107.TopSurface = Enum.SurfaceType.Smooth
2696
Part107.Color = Color3.new(0.972549, 0.972549, 0.972549)
2697
Part107.Position = Vector3.new(-7.70991611, 33.3989334, 39.2596893)
2698
Part107.Orientation = Vector3.new(0, -180, -180)
2699
Part107.Color = Color3.new(0.972549, 0.972549, 0.972549)
2700
SpecialMesh108.Parent = Part107
2701
SpecialMesh108.MeshId = "http://www.roblox.com/asset/?id=1778999"
2702
SpecialMesh108.Scale = Vector3.new(3, 5, 3)
2703
SpecialMesh108.TextureId = "http://www.roblox.com/asset/?id=2821447"
2704
SpecialMesh108.VertexColor = Vector3.new(0.600000024, 0.600000024, 0.600000024)
2705
SpecialMesh108.MeshType = Enum.MeshType.FileMesh
2706
SpecialMesh108.Scale = Vector3.new(3, 5, 3)
2707
Smoke109.Parent = Part107
2708
Smoke109.Size = 30
2709
Smoke109.Enabled = false
2710
Smoke109.Opacity = 1
2711
Smoke109.RiseVelocity = 5
2712
BillboardGui110.Name = "Light"
2713
BillboardGui110.Parent = Part107
2714
BillboardGui110.Size = UDim2.new(35, 0, 35, 0)
2715
BillboardGui110.Enabled = false
2716
BillboardGui110.Active = true
2717
ImageLabel111.Name = "Light"
2718
ImageLabel111.Parent = BillboardGui110
2719
ImageLabel111.Transparency = 1
2720
ImageLabel111.Size = UDim2.new(1, 0, 1, 0)
2721
ImageLabel111.Active = true
2722
ImageLabel111.BackgroundColor3 = Color3.new(0.756863, 0.752941, 0.764706)
2723
ImageLabel111.BackgroundTransparency = 1
2724
ImageLabel111.Image = "http://www.roblox.com/asset/?id=43708803"
2725
Script112.Parent = BillboardGui110
2726
table.insert(cors,sandbox(Script112,function()
2727
script.Parent.Adornee = script.Parent.Parent
2728
end))
2729
Smoke113.Name = "Smoke2"
2730
Smoke113.Parent = Part107
2731
Smoke113.Size = 30
2732
Smoke113.Enabled = false
2733
Smoke113.Opacity = 1
2734
Smoke113.RiseVelocity = 5
2735
Smoke114.Name = "Smoke3"
2736
Smoke114.Parent = Part107
2737
Smoke114.Size = 30
2738
Smoke114.Enabled = false
2739
Smoke114.Opacity = 1
2740
Smoke114.RiseVelocity = 5
2741
Smoke115.Name = "Smoke4"
2742
Smoke115.Parent = Part107
2743
Smoke115.Size = 30
2744
Smoke115.Enabled = false
2745
Smoke115.Opacity = 1
2746
Smoke115.RiseVelocity = 5
2747
StringValue116.Name = "INFORMATION"
2748
StringValue116.Parent = Part107
2749
StringValue117.Name = "Nuke_Information"
2750
StringValue117.Parent = StringValue116
2751
StringValue117.Value = "Conventional, long-range warhead"
2752
StringValue118.Name = "Nuke_Base"
2753
StringValue118.Parent = StringValue116
2754
StringValue118.Value = "TEL/Mobile"
2755
Script119.Name = "Touch"
2756
Script119.Parent = Part107
2757
Script119.Disabled = true
2758
table.insert(cors,sandbox(Script119,function()
2759
wait(.1)
2760
function onTouch(hit)
2761
script.Parent.Anchored = true
2762
script.Parent.Parent = Workspace
2763
script.Parent.Transparency = 1
2764
wait()
2765
script.Parent.Atom.Disabled = false
2766
end
2767
2768
script.Parent.Touched:connect(onTouch)
2769
end))
2770
Script120.Name = "Atom"
2771
Script120.Parent = Part107
2772
Script120.Disabled = true
2773
table.insert(cors,sandbox(Script120,function()
2774
print("Nuke Em' All")
2775
2776
local CloudID= "http://www.roblox.com/asset/?id=1095708"
2777
local ColorTexture = "http://www.roblox.com/asset/?ID=1361097"
2778
local RingID = "http://www.roblox.com/asset/?id=3270017"
2779
local SphereID = "http://www.roblox.com/asset/?id=1185246"
2780
2781
local BasePosition = script.Parent.Position
2782
2783
local Size = 350
2784
2785
local Exp = Instance.new("Model")
2786
Exp.Name = "ATOMICEXPLOSION"
2787
Exp.Parent = game.Workspace
2788
2789
local BasePart = Instance.new("Part")
2790
BasePart.formFactor = 0
2791
BasePart.TopSurface = 0
2792
BasePart.BottomSurface = 0
2793
BasePart.Anchored = true
2794
BasePart.Locked = true
2795
BasePart.CanCollide = false
2796
2797
local BaseMesh = Instance.new("SpecialMesh")
2798
BaseMesh.MeshType = "FileMesh"
2799
2800
local CloudMesh = BaseMesh:clone()
2801
CloudMesh.MeshId = CloudID
2802
CloudMesh.TextureId = ColorTexture
2803
CloudMesh.VertexColor = Vector3.new(0.9,0.6,0)
2804
2805
local RingMesh = BaseMesh:clone()
2806
RingMesh.MeshId = RingID
2807
2808
local SphereMesh = BaseMesh:clone()
2809
SphereMesh.MeshId = SphereID
2810
2811
local Clouds = {}
2812
local ShockWave = {}
2813
local Sky = script.Sky
2814
2815
2816
function Effects()
2817
	script.Explode:Play()
2818
	delay(0,function() 
2819
		for i = 5, 1,-0.01 do
2820
			wait()
2821
			game.Lighting.Brightness = i
2822
		end
2823
	end)
2824
end
2825
2826
function Destruction(Pos,Radius)
2827
	local function Destroy(Model)
2828
		for i ,v in ipairs(Model:getChildren()) do
2829
			if v:isA("BasePart") then
2830
				if (v.Position-Pos).magnitude < Radius then
2831
					if v.Anchored == false then
2832
						v:BreakJoints()
2833
						v.Velocity = CFrame.new(v.Position,Pos):vectorToWorldSpace(Vector3.new(math.random(-5,5),5,1000))
2834
						v.Material = "CorrodedMetal"
2835
					end	
2836
				end
2837
			end
2838
			if #v:getChildren() > 0 then
2839
				Destroy(v)
2840
			end
2841
		end
2842
	end
2843
	Destroy(game.Workspace)
2844
end
2845
function Explode(Pos)
2846
2847
local Base = BasePart:clone()
2848
Base.Position = Pos
2849
	
2850
local Mesh = CloudMesh:clone()
2851
Mesh.Parent = Base 
2852
Mesh.Scale = Vector3.new(2.5,1,4.5)
2853
2854
local PoleBase = BasePart:clone()
2855
PoleBase.Position = Pos+Vector3.new(0,0.1,0)
2856
2857
local PoleBaseMesh = CloudMesh:clone()
2858
PoleBaseMesh.Scale = Vector3.new(1.25,2,2.5)
2859
PoleBaseMesh.Parent = PoleBase
2860
2861
local Cloud1 = BasePart:clone()
2862
Cloud1.Position = Pos+Vector3.new(0,0.75,0)
2863
2864
local Cloud1Mesh = CloudMesh:clone()
2865
Cloud1Mesh.Scale = Vector3.new(0.5,3,1)
2866
Cloud1Mesh.Parent = Cloud1
2867
	
2868
local Cloud2 = BasePart:clone()
2869
Cloud2.Position = Pos+Vector3.new(0,1.25,0)
2870
	
2871
local Cloud2Mesh = CloudMesh:clone()
2872
Cloud2Mesh.Scale = Vector3.new(0.5,1.5,1)
2873
Cloud2Mesh.Parent = Cloud2
2874
2875
local Cloud3 = BasePart:clone()
2876
Cloud3.Position = Pos+Vector3.new(0,1.7,0)
2877
	
2878
local Cloud3Mesh = CloudMesh:clone()
2879
Cloud3Mesh.Scale = Vector3.new(0.5,1.5,1)
2880
Cloud3Mesh.Parent = Cloud3
2881
2882
local PoleRing = BasePart:clone()
2883
PoleRing.Position = Pos+Vector3.new(0,1.3,0)
2884
PoleRing.Transparency = 0.2
2885
PoleRing.BrickColor = BrickColor.new("Dark stone grey")
2886
PoleRing.CFrame = PoleRing.CFrame*CFrame.Angles(math.rad(90),0,0)
2887
2888
local Mesh = RingMesh:clone()
2889
Mesh.Scale = Vector3.new(1.2,1.2,1.2)
2890
Mesh.Parent = PoleRing
2891
2892
local MushCloud = BasePart:clone()
2893
MushCloud.Position = Pos+Vector3.new(0,2.3,0)
2894
	
2895
local MushMesh = CloudMesh:clone() -- lol
2896
MushMesh.Scale = Vector3.new(2.5,1.75,3.5)
2897
MushMesh.Parent = MushCloud
2898
2899
local TopCloud = BasePart:clone()
2900
TopCloud.Position = Pos+Vector3.new(0,2.7,0)
2901
	
2902
local TopMesh = CloudMesh:clone()
2903
TopMesh.Scale = Vector3.new(7.5,1.5,1.5)
2904
TopMesh.Parent = TopCloud
2905
2906
table.insert(Clouds,Base)
2907
table.insert(Clouds,TopCloud)
2908
table.insert(Clouds,MushCloud)
2909
table.insert(Clouds,Cloud1)
2910
table.insert(Clouds,Cloud2)
2911
table.insert(Clouds,Cloud3)
2912
table.insert(Clouds,PoleBase)
2913
table.insert(Clouds,PoleRing)
2914
2915
2916
local BigRing = BasePart:clone()
2917
BigRing.Position = Pos
2918
BigRing.CFrame = BigRing.CFrame*CFrame.Angles(math.rad(90),0,0)
2919
	
2920
local BigMesh = RingMesh:clone()
2921
BigMesh.Scale = Vector3.new(5,5,1)
2922
BigMesh.Parent = BigRing
2923
	
2924
local SmallRing = BasePart:clone()
2925
SmallRing.Position = Pos
2926
SmallRing.BrickColor = BrickColor.new("Dark stone grey")
2927
SmallRing.CFrame = SmallRing.CFrame*CFrame.Angles(math.rad(90),0,0)
2928
2929
local SmallMesh = RingMesh:clone()
2930
SmallMesh.Scale = Vector3.new(4.6,4.6,1.5)
2931
SmallMesh.Parent = SmallRing
2932
2933
local InnerSphere = BasePart:clone()
2934
InnerSphere.Position = Pos
2935
InnerSphere.BrickColor = BrickColor.new("Bright orange")
2936
InnerSphere.Transparency = 0.5
2937
2938
local InnerSphereMesh = SphereMesh:clone()	
2939
InnerSphereMesh.Scale = Vector3.new(-6.5,-6.5,-6.5)
2940
InnerSphereMesh.Parent = InnerSphere
2941
	
2942
local OutterSphere = BasePart:clone()
2943
OutterSphere.Position = Pos
2944
OutterSphere.BrickColor = BrickColor.new("Bright orange")
2945
OutterSphere.Transparency = 0.5
2946
2947
local OutterSphereMesh = SphereMesh:clone()
2948
OutterSphereMesh.Scale = Vector3.new(6.5,6.5,6.5)
2949
OutterSphereMesh.Parent = OutterSphere
2950
2951
table.insert(ShockWave,BigRing)	
2952
table.insert(ShockWave,SmallRing)
2953
table.insert(ShockWave,OutterSphere)
2954
table.insert(ShockWave,InnerSphere)
2955
	Sky.Parent = game.Lighting
2956
	for i , v in ipairs(ShockWave) do
2957
		v.Parent = Exp
2958
	end
2959
	for i , v in ipairs(Clouds) do
2960
		v.Parent = Exp
2961
	end
2962
	Effects()
2963
	delay(0,function()
2964
		for resize = Size/2.5, Size*3, 2 do
2965
			wait()
2966
			BigRing.Mesh.Scale = Vector3.new(5*resize,5*resize,1*resize)
2967
			SmallRing.Mesh.Scale = Vector3.new(4.6*resize,4.6*resize,1.5*resize)
2968
			InnerSphere.Mesh.Scale = Vector3.new(-6.5*resize,-6.5*resize,-6.5*resize)
2969
			OutterSphere.Mesh.Scale = Vector3.new(6.5*resize,6.5*resize,6.5*resize)
2970
			Destruction(Pos,3*resize)
2971
		end
2972
		for fade = 0, 1, 0.01 do
2973
			wait()
2974
			pcall(function()
2975
				for i ,v in ipairs(ShockWave) do
2976
					v.Transparency = fade
2977
				end
2978
			end)
2979
		end
2980
		for i ,v in ipairs(ShockWave) do
2981
			v:Remove()
2982
		end
2983
		done1 = true
2984
	end)
2985
	delay(0,function()
2986
		for resize = Size/5, Size, 1 do
2987
			wait()
2988
			pcall(function()
2989
				Base.Mesh.Scale = Vector3.new(2.5*resize,1*resize,4.5*resize)
2990
				TopCloud.Mesh.Scale = Vector3.new(0.75*resize,1.5*resize,1.5*resize)
2991
				MushCloud.Mesh.Scale = Vector3.new(2.5*resize,1.75*resize,3.5*resize)
2992
				Cloud1.Mesh.Scale = Vector3.new(0.5*resize,3*resize,1*resize)
2993
				Cloud2.Mesh.Scale = Vector3.new(0.5*resize,1.5*resize,1*resize)
2994
				Cloud3.Mesh.Scale = Vector3.new(0.5*resize,1.5*resize,1*resize)
2995
				PoleBase.Mesh.Scale = Vector3.new(1*resize,2*resize,2.5*resize)
2996
				PoleRing.Mesh.Scale = Vector3.new(1.2*resize,1.2*resize,1.2*resize)
2997
2998
				Base.Position = Pos+Vector3.new(0,0.05*resize,0)
2999
				TopCloud.Position = Pos+Vector3.new(0,2.7*resize,0)
3000
				MushCloud.Position = Pos+Vector3.new(0,2.3*resize,0)
3001
				Cloud1.Position = Pos+Vector3.new(0,0.75*resize,0)
3002
				Cloud2.Position = Pos+Vector3.new(0,1.25*resize,0)
3003
				Cloud3.Position = Pos+Vector3.new(0,1.7*resize,0)
3004
				PoleBase.Position = Pos+Vector3.new(0,0.1*resize,0)
3005
				PoleRing.Position = Pos+Vector3.new(0,1.3*resize,0)
3006
			end)
3007
		end
3008
		done2 = true
3009
	end)
3010
	wait(2)
3011
	for y = 0.6,0,-0.0025 do
3012
		wait()
3013
		for i , v in ipairs(Clouds) do
3014
			v.Mesh.VertexColor = Vector3.new(0.9,y,0)
3015
		end
3016
	end
3017
	for r = 0.9,0.5,-0.01 do
3018
		wait()
3019
		for i , v in ipairs(Clouds) do
3020
			v.Mesh.VertexColor = Vector3.new(r,0,0)
3021
		end
3022
	end
3023
	for by = 0,0.5,0.005 do
3024
		wait()
3025
		for i , v in ipairs(Clouds) do
3026
			v.Mesh.VertexColor = Vector3.new(0.5,by,by)
3027
			v.Transparency = by*2
3028
		end
3029
		Base.Mesh.Scale = Base.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
3030
		TopCloud.Mesh.Scale = TopCloud.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
3031
		MushCloud.Mesh.Scale = MushCloud.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
3032
		Cloud1.Mesh.Scale = Cloud1.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
3033
		Cloud2.Mesh.Scale = Cloud2.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
3034
		Cloud3.Mesh.Scale = Cloud3.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
3035
		PoleBase.Mesh.Scale = PoleBase.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
3036
		PoleRing.Mesh.Scale = PoleRing.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
3037
	end
3038
	done3 = true
3039
	while true do wait(1) if done1 and done2 and done3 then break end end
3040
	Exp:remove()
3041
	wait(20)
3042
	Sky:remove()
3043
end
3044
3045
3046
	
3047
3048
Explode(BasePosition)
3049
3050
script.Parent:remove()
3051
3052
3053
3054
	
3055
	
3056
3057
3058
3059
3060
end))
3061
Sound121.Name = "Explode"
3062
Sound121.Parent = Script120
3063
Sound121.Pitch = 0.5
3064
Sound121.SoundId = "http://www.roblox.com/asset?id=130768997"
3065
Sound121.Volume = 1
3066
Sky122.Parent = Script120
3067
Sky122.SkyboxBk = "http://www.roblox.com/asset/?version=1&id=1012890"
3068
Sky122.SkyboxDn = "http://www.roblox.com/asset/?version=1&id=1012891"
3069
Sky122.SkyboxFt = "http://www.roblox.com/asset/?version=1&id=1012887"
3070
Sky122.SkyboxLf = "http://www.roblox.com/asset/?version=1&id=1012889"
3071
Sky122.SkyboxRt = "http://www.roblox.com/asset/?version=1&id=1012888"
3072
Sky122.SkyboxUp = "http://www.roblox.com/asset/?version=1&id=1014449"
3073
Part123.Parent = Model0
3074
Part123.Material = Enum.Material.Ice
3075
Part123.BrickColor = BrickColor.new("Dark stone grey")
3076
Part123.Transparency = 0.5
3077
Part123.Rotation = Vector3.new(7.5999999, 0, 0)
3078
Part123.CanCollide = false
3079
Part123.FormFactor = Enum.FormFactor.Custom
3080
Part123.Size = Vector3.new(3, 2.5999999, 0.200000003)
3081
Part123.CFrame = CFrame.new(-24.2097893, 8.72938347, 31.1316738, 1, 1.75870337e-05, 6.18270788e-05, -9.95769551e-06, 0.991205812, -0.132270217, -7.78449903e-05, 0.132281274, 0.991214573)
3082
Part123.BackSurface = Enum.SurfaceType.Weld
3083
Part123.BottomSurface = Enum.SurfaceType.Weld
3084
Part123.FrontSurface = Enum.SurfaceType.Weld
3085
Part123.LeftSurface = Enum.SurfaceType.Weld
3086
Part123.RightSurface = Enum.SurfaceType.Weld
3087
Part123.TopSurface = Enum.SurfaceType.Weld
3088
Part123.Color = Color3.new(0.388235, 0.372549, 0.384314)
3089
Part123.Position = Vector3.new(-24.2097893, 8.72938347, 31.1316738)
3090
Part123.Orientation = Vector3.new(7.5999999, 0, 0)
3091
Part123.Color = Color3.new(0.388235, 0.372549, 0.384314)
3092
BlockMesh124.Parent = Part123
3093
BlockMesh124.Offset = Vector3.new(0, 0, 0.200000003)
3094
BlockMesh124.Scale = Vector3.new(1, 1.14999998, 0.5)
3095
BlockMesh124.Scale = Vector3.new(1, 1.14999998, 0.5)
3096
Part125.Parent = Model0
3097
Part125.Material = Enum.Material.Metal
3098
Part125.BrickColor = BrickColor.new("Grime")
3099
Part125.Rotation = Vector3.new(172.399994, 0, 180)
3100
Part125.CanCollide = false
3101
Part125.FormFactor = Enum.FormFactor.Custom
3102
Part125.Size = Vector3.new(3, 0.400000006, 0.200000003)
3103
Part125.CFrame = CFrame.new(-24.2096195, 10.2178173, 46.3855438, -1, -5.60768513e-07, -8.06703756e-05, 1.13161541e-05, 0.991207719, -0.132315725, 0.000104148734, -0.132298887, -0.991209865)
3104
Part125.BackSurface = Enum.SurfaceType.Weld
3105
Part125.BottomSurface = Enum.SurfaceType.Weld
3106
Part125.FrontSurface = Enum.SurfaceType.Weld
3107
Part125.LeftSurface = Enum.SurfaceType.Weld
3108
Part125.RightSurface = Enum.SurfaceType.Weld
3109
Part125.TopSurface = Enum.SurfaceType.Weld
3110
Part125.Color = Color3.new(0.498039, 0.556863, 0.392157)
3111
Part125.Position = Vector3.new(-24.2096195, 10.2178173, 46.3855438)
3112
Part125.Orientation = Vector3.new(7.5999999, -180, 0)
3113
Part125.Color = Color3.new(0.498039, 0.556863, 0.392157)
3114
BlockMesh126.Parent = Part125
3115
BlockMesh126.Offset = Vector3.new(0, 0, 0.200000003)
3116
Part127.Parent = Model0
3117
Part127.Material = Enum.Material.Ice
3118
Part127.BrickColor = BrickColor.new("Dark stone grey")
3119
Part127.Transparency = 0.5
3120
Part127.Rotation = Vector3.new(-180, 0, -180)
3121
Part127.CanCollide = false
3122
Part127.FormFactor = Enum.FormFactor.Custom
3123
Part127.Size = Vector3.new(4.4000001, 1.79999995, 0.200000003)
3124
Part127.CFrame = CFrame.new(-23.5096817, 9.10065365, 36.3602753, -1, 9.14261545e-06, -6.24489476e-05, 9.84558574e-06, 0.99999088, 2.81994267e-06, 7.66839075e-05, 1.28775291e-05, -1.00000012)
3125
Part127.BackSurface = Enum.SurfaceType.Weld
3126
Part127.BottomSurface = Enum.SurfaceType.Weld
3127
Part127.FrontSurface = Enum.SurfaceType.Weld
3128
Part127.LeftSurface = Enum.SurfaceType.Weld
3129
Part127.RightSurface = Enum.SurfaceType.Weld
3130
Part127.TopSurface = Enum.SurfaceType.Weld
3131
Part127.Color = Color3.new(0.388235, 0.372549, 0.384314)
3132
Part127.Position = Vector3.new(-23.5096817, 9.10065365, 36.3602753)
3133
Part127.Orientation = Vector3.new(0, -180, 0)
3134
Part127.Color = Color3.new(0.388235, 0.372549, 0.384314)
3135
BlockMesh128.Parent = Part127
3136
BlockMesh128.Offset = Vector3.new(0, 0, 0.200000003)
3137
BlockMesh128.Scale = Vector3.new(1, 1.14999998, 0.5)
3138
BlockMesh128.Scale = Vector3.new(1, 1.14999998, 0.5)
3139
Part129.Parent = Model0
3140
Part129.Material = Enum.Material.Metal
3141
Part129.BrickColor = BrickColor.new("Grime")
3142
Part129.Rotation = Vector3.new(7.5999999, 0, 0)
3143
Part129.CanCollide = false
3144
Part129.FormFactor = Enum.FormFactor.Custom
3145
Part129.Size = Vector3.new(5.80000019, 0.400000036, 0.200000003)
3146
Part129.CFrame = CFrame.new(-19.6098289, 7.63907337, 30.9858189, 1, 1.76825579e-05, 6.23572778e-05, -9.98225096e-06, 0.991205812, -0.132270217, -7.83831638e-05, 0.132281274, 0.991214573)
3147
Part129.BackSurface = Enum.SurfaceType.Weld
3148
Part129.BottomSurface = Enum.SurfaceType.Weld
3149
Part129.FrontSurface = Enum.SurfaceType.Weld
3150
Part129.LeftSurface = Enum.SurfaceType.Weld
3151
Part129.RightSurface = Enum.SurfaceType.Weld
3152
Part129.TopSurface = Enum.SurfaceType.Weld
3153
Part129.Color = Color3.new(0.498039, 0.556863, 0.392157)
3154
Part129.Position = Vector3.new(-19.6098289, 7.63907337, 30.9858189)
3155
Part129.Orientation = Vector3.new(7.5999999, 0, 0)
3156
Part129.Color = Color3.new(0.498039, 0.556863, 0.392157)
3157
BlockMesh130.Parent = Part129
3158
BlockMesh130.Offset = Vector3.new(0, 0, 0.200000003)
3159
BlockMesh130.Scale = Vector3.new(1, 1.14999998, 1)
3160
BlockMesh130.Scale = Vector3.new(1, 1.14999998, 1)
3161
Part131.Parent = Model0
3162
Part131.Material = Enum.Material.Ice
3163
Part131.BrickColor = BrickColor.new("Dark stone grey")
3164
Part131.Transparency = 0.5
3165
Part131.Rotation = Vector3.new(7.5999999, 0, 0)
3166
Part131.CanCollide = false
3167
Part131.FormFactor = Enum.FormFactor.Custom
3168
Part131.Size = Vector3.new(5.80000019, 2, 0.200000003)
3169
Part131.CFrame = CFrame.new(-19.8097687, 8.82844543, 31.1445694, 1, 1.76347712e-05, 6.20919236e-05, -9.96978906e-06, 0.991205275, -0.132273212, -7.81138588e-05, 0.132284284, 0.991213918)
3170
Part131.BackSurface = Enum.SurfaceType.Weld
3171
Part131.BottomSurface = Enum.SurfaceType.Weld
3172
Part131.FrontSurface = Enum.SurfaceType.Weld
3173
Part131.LeftSurface = Enum.SurfaceType.Weld
3174
Part131.RightSurface = Enum.SurfaceType.Weld
3175
Part131.TopSurface = Enum.SurfaceType.Weld
3176
Part131.Color = Color3.new(0.388235, 0.372549, 0.384314)
3177
Part131.Position = Vector3.new(-19.8097687, 8.82844543, 31.1445694)
3178
Part131.Orientation = Vector3.new(7.5999999, 0, 0)
3179
Part131.Color = Color3.new(0.388235, 0.372549, 0.384314)
3180
BlockMesh132.Parent = Part131
3181
BlockMesh132.Offset = Vector3.new(0, 0, 0.200000003)
3182
BlockMesh132.Scale = Vector3.new(1, 1.14999998, 0.5)
3183
BlockMesh132.Scale = Vector3.new(1, 1.14999998, 0.5)
3184
Part133.Parent = Model0
3185
Part133.Material = Enum.Material.Metal
3186
Part133.BrickColor = BrickColor.new("Grime")
3187
Part133.CanCollide = false
3188
Part133.FormFactor = Enum.FormFactor.Custom
3189
Part133.Size = Vector3.new(10.1999998, 0.999999881, 2.79999995)
3190
Part133.CFrame = CFrame.new(0.190229297, 10.7005215, 34.0595284, 1, 8.29581222e-06, 4.42689707e-05, -8.66455866e-06, 0.99999088, 2.18264177e-06, -5.17070403e-05, 3.0374008e-06, 1.00000012)
3191
Part133.BackSurface = Enum.SurfaceType.Weld
3192
Part133.BottomSurface = Enum.SurfaceType.Weld
3193
Part133.FrontSurface = Enum.SurfaceType.Weld
3194
Part133.LeftSurface = Enum.SurfaceType.Weld
3195
Part133.RightSurface = Enum.SurfaceType.Weld
3196
Part133.TopSurface = Enum.SurfaceType.Weld
3197
Part133.Color = Color3.new(0.498039, 0.556863, 0.392157)
3198
Part133.Position = Vector3.new(0.190229297, 10.7005215, 34.0595284)
3199
Part133.Color = Color3.new(0.498039, 0.556863, 0.392157)
3200
BlockMesh134.Parent = Part133
3201
Part135.Parent = Model0
3202
Part135.Material = Enum.Material.Metal
3203
Part135.BrickColor = BrickColor.new("Grime")
3204
Part135.Rotation = Vector3.new(-180, 0, -180)
3205
Part135.CanCollide = false
3206
Part135.FormFactor = Enum.FormFactor.Custom
3207
Part135.Size = Vector3.new(8.80000114, 0.200000003, 4.80000019)
3208
Part135.CFrame = CFrame.new(-21.109726, 10.3005667, 33.8601379, -1, 9.14261545e-06, -6.24489476e-05, 9.84558574e-06, 0.99999088, 2.81994267e-06, 7.66839075e-05, 1.28775291e-05, -1.00000012)
3209
Part135.BackSurface = Enum.SurfaceType.Weld
3210
Part135.BottomSurface = Enum.SurfaceType.Weld
3211
Part135.FrontSurface = Enum.SurfaceType.Weld
3212
Part135.LeftSurface = Enum.SurfaceType.Weld
3213
Part135.RightSurface = Enum.SurfaceType.Weld
3214
Part135.TopSurface = Enum.SurfaceType.Weld
3215
Part135.Color = Color3.new(0.498039, 0.556863, 0.392157)
3216
Part135.Position = Vector3.new(-21.109726, 10.3005667, 33.8601379)
3217
Part135.Orientation = Vector3.new(0, -180, 0)
3218
Part135.Color = Color3.new(0.498039, 0.556863, 0.392157)
3219
BlockMesh136.Parent = Part135
3220
Part137.Parent = Model0
3221
Part137.Material = Enum.Material.Metal
3222
Part137.BrickColor = BrickColor.new("Grime")
3223
Part137.Rotation = Vector3.new(7.5999999, 0, 0)
3224
Part137.CanCollide = false
3225
Part137.FormFactor = Enum.FormFactor.Custom
3226
Part137.Size = Vector3.new(3.20000005, 0.400000006, 0.200000003)
3227
Part137.CFrame = CFrame.new(-24.309742, 10.2161369, 31.330101, 1, 1.75873574e-05, 6.18266713e-05, -9.95750725e-06, 0.991204858, -0.132279024, -7.78446993e-05, 0.132290065, 0.991213858)
3228
Part137.BackSurface = Enum.SurfaceType.Weld
3229
Part137.BottomSurface = Enum.SurfaceType.Weld
3230
Part137.FrontSurface = Enum.SurfaceType.Weld
3231
Part137.LeftSurface = Enum.SurfaceType.Weld
3232
Part137.RightSurface = Enum.SurfaceType.Weld
3233
Part137.TopSurface = Enum.SurfaceType.Weld
3234
Part137.Color = Color3.new(0.498039, 0.556863, 0.392157)
3235
Part137.Position = Vector3.new(-24.309742, 10.2161369, 31.330101)
3236
Part137.Orientation = Vector3.new(7.5999999, 0, 0)
3237
Part137.Color = Color3.new(0.498039, 0.556863, 0.392157)
3238
BlockMesh138.Parent = Part137
3239
BlockMesh138.Offset = Vector3.new(0, 0, 0.200000003)
3240
Part139.Parent = Model0
3241
Part139.Material = Enum.Material.Metal
3242
Part139.BrickColor = BrickColor.new("Grime")
3243
Part139.Rotation = Vector3.new(-180, -0.00999999978, -180)
3244
Part139.CanCollide = false
3245
Part139.FormFactor = Enum.FormFactor.Custom
3246
Part139.Size = Vector3.new(8.80000114, 0.200000003, 4.80000019)
3247
Part139.CFrame = CFrame.new(-21.1093521, 10.3008881, 43.8603363, -1, 1.11894988e-05, -0.000103796992, 1.19273136e-05, 1, 3.20989275e-05, 0.000118718235, 4.26027473e-05, -1)
3248
Part139.BackSurface = Enum.SurfaceType.Weld
3249
Part139.BottomSurface = Enum.SurfaceType.Weld
3250
Part139.FrontSurface = Enum.SurfaceType.Weld
3251
Part139.LeftSurface = Enum.SurfaceType.Weld
3252
Part139.RightSurface = Enum.SurfaceType.Weld
3253
Part139.TopSurface = Enum.SurfaceType.Weld
3254
Part139.Color = Color3.new(0.498039, 0.556863, 0.392157)
3255
Part139.Position = Vector3.new(-21.1093521, 10.3008881, 43.8603363)
3256
Part139.Orientation = Vector3.new(0, -179.98999, 0)
3257
Part139.Color = Color3.new(0.498039, 0.556863, 0.392157)
3258
BlockMesh140.Parent = Part139
3259
Part141.Parent = Model0
3260
Part141.Material = Enum.Material.Metal
3261
Part141.BrickColor = BrickColor.new("Grime")
3262
Part141.Rotation = Vector3.new(7.5999999, 0, 0)
3263
Part141.CanCollide = false
3264
Part141.FormFactor = Enum.FormFactor.Custom
3265
Part141.Size = Vector3.new(5.5999999, 0.600000083, 0.200000003)
3266
Part141.CFrame = CFrame.new(-19.7097855, 10.1169653, 31.3165245, 1, 1.75877558e-05, 6.18268677e-05, -9.95769642e-06, 0.991204143, -0.132281795, -7.78449903e-05, 0.132292852, 0.991212904)
3267
Part141.BackSurface = Enum.SurfaceType.Weld
3268
Part141.BottomSurface = Enum.SurfaceType.Weld
3269
Part141.FrontSurface = Enum.SurfaceType.Weld
3270
Part141.LeftSurface = Enum.SurfaceType.Weld
3271
Part141.RightSurface = Enum.SurfaceType.Weld
3272
Part141.TopSurface = Enum.SurfaceType.Weld
3273
Part141.Color = Color3.new(0.498039, 0.556863, 0.392157)
3274
Part141.Position = Vector3.new(-19.7097855, 10.1169653, 31.3165245)
3275
Part141.Orientation = Vector3.new(7.5999999, 0, 0)
3276
Part141.Color = Color3.new(0.498039, 0.556863, 0.392157)
3277
BlockMesh142.Parent = Part141
3278
BlockMesh142.Offset = Vector3.new(0, 0, 0.200000003)
3279
Part143.Parent = Model0
3280
Part143.Material = Enum.Material.Metal
3281
Part143.BrickColor = BrickColor.new("Grime")
3282
Part143.Rotation = Vector3.new(-180, -0.00999999978, -180)
3283
Part143.CanCollide = false
3284
Part143.FormFactor = Enum.FormFactor.Custom
3285
Part143.Size = Vector3.new(4, 0.200000048, 0.400000006)
3286
Part143.CFrame = CFrame.new(-23.5095596, 10.1009521, 41.6606407, -1, 1.09616185e-05, -9.92156856e-05, 1.215679e-05, 1, 2.88735409e-05, 0.000123329461, 4.58503346e-05, -1)
3287
Part143.BackSurface = Enum.SurfaceType.Weld
3288
Part143.BottomSurface = Enum.SurfaceType.Weld
3289
Part143.FrontSurface = Enum.SurfaceType.Weld
3290
Part143.LeftSurface = Enum.SurfaceType.Weld
3291
Part143.RightSurface = Enum.SurfaceType.Weld
3292
Part143.TopSurface = Enum.SurfaceType.Weld
3293
Part143.Color = Color3.new(0.498039, 0.556863, 0.392157)
3294
Part143.Position = Vector3.new(-23.5095596, 10.1009521, 41.6606407)
3295
Part143.Orientation = Vector3.new(0, -179.98999, 0)
3296
Part143.Color = Color3.new(0.498039, 0.556863, 0.392157)
3297
BlockMesh144.Parent = Part143
3298
Part145.Parent = Model0
3299
Part145.Material = Enum.Material.Metal
3300
Part145.BrickColor = BrickColor.new("Grime")
3301
Part145.Rotation = Vector3.new(-180, 0, -180)
3302
Part145.CanCollide = false
3303
Part145.FormFactor = Enum.FormFactor.Custom
3304
Part145.Size = Vector3.new(4, 0.200000048, 0.400000006)
3305
Part145.CFrame = CFrame.new(-23.5096741, 10.1006269, 36.060318, -1, 9.1545362e-06, -6.27174304e-05, 9.85749102e-06, 0.99999088, 3.03555453e-06, 7.69523976e-05, 1.30931385e-05, -1.00000012)
3306
Part145.BackSurface = Enum.SurfaceType.Weld
3307
Part145.BottomSurface = Enum.SurfaceType.Weld
3308
Part145.FrontSurface = Enum.SurfaceType.Weld
3309
Part145.LeftSurface = Enum.SurfaceType.Weld
3310
Part145.RightSurface = Enum.SurfaceType.Weld
3311
Part145.TopSurface = Enum.SurfaceType.Weld
3312
Part145.Color = Color3.new(0.498039, 0.556863, 0.392157)
3313
Part145.Position = Vector3.new(-23.5096741, 10.1006269, 36.060318)
3314
Part145.Orientation = Vector3.new(0, -180, 0)
3315
Part145.Color = Color3.new(0.498039, 0.556863, 0.392157)
3316
BlockMesh146.Parent = Part145
3317
Part147.Parent = Model0
3318
Part147.Material = Enum.Material.Ice
3319
Part147.BrickColor = BrickColor.new("Dark stone grey")
3320
Part147.Transparency = 0.5
3321
Part147.Rotation = Vector3.new(0, 0.00999999978, 0)
3322
Part147.CanCollide = false
3323
Part147.FormFactor = Enum.FormFactor.Custom
3324
Part147.Size = Vector3.new(4.4000001, 1.79999995, 0.200000003)
3325
Part147.CFrame = CFrame.new(-23.5096359, 9.10095882, 41.3607674, 1, 1.08327658e-05, 9.66105945e-05, -1.1122107e-05, 1, -2.70385699e-05, -0.000102494581, 3.11788244e-05, 1)
3326
Part147.BackSurface = Enum.SurfaceType.Weld
3327
Part147.BottomSurface = Enum.SurfaceType.Weld
3328
Part147.FrontSurface = Enum.SurfaceType.Weld
3329
Part147.LeftSurface = Enum.SurfaceType.Weld
3330
Part147.RightSurface = Enum.SurfaceType.Weld
3331
Part147.TopSurface = Enum.SurfaceType.Weld
3332
Part147.Color = Color3.new(0.388235, 0.372549, 0.384314)
3333
Part147.Position = Vector3.new(-23.5096359, 9.10095882, 41.3607674)
3334
Part147.Orientation = Vector3.new(0, 0.00999999978, 0)
3335
Part147.Color = Color3.new(0.388235, 0.372549, 0.384314)
3336
BlockMesh148.Parent = Part147
3337
BlockMesh148.Offset = Vector3.new(0, 0, 0.200000003)
3338
BlockMesh148.Scale = Vector3.new(1, 1.14999998, 0.5)
3339
BlockMesh148.Scale = Vector3.new(1, 1.14999998, 0.5)
3340
Part149.Parent = Model0
3341
Part149.Material = Enum.Material.Metal
3342
Part149.BrickColor = BrickColor.new("Grime")
3343
Part149.Rotation = Vector3.new(172.399994, -0.00999999978, 180)
3344
Part149.CanCollide = false
3345
Part149.FormFactor = Enum.FormFactor.Custom
3346
Part149.Size = Vector3.new(6.20000029, 0.600000083, 0.200000003)
3347
Part149.CFrame = CFrame.new(-19.8094444, 10.1184397, 46.3984222, -1, -9.0132653e-06, -0.000181728246, 1.62895012e-05, 0.991222322, -0.132206291, 0.00020543822, -0.132189453, -0.991224468)
3348
Part149.BackSurface = Enum.SurfaceType.Weld
3349
Part149.BottomSurface = Enum.SurfaceType.Weld
3350
Part149.FrontSurface = Enum.SurfaceType.Weld
3351
Part149.LeftSurface = Enum.SurfaceType.Weld
3352
Part149.RightSurface = Enum.SurfaceType.Weld
3353
Part149.TopSurface = Enum.SurfaceType.Weld
3354
Part149.Color = Color3.new(0.498039, 0.556863, 0.392157)
3355
Part149.Position = Vector3.new(-19.8094444, 10.1184397, 46.3984222)
3356
Part149.Orientation = Vector3.new(7.5999999, -179.98999, 0)
3357
Part149.Color = Color3.new(0.498039, 0.556863, 0.392157)
3358
BlockMesh150.Parent = Part149
3359
BlockMesh150.Offset = Vector3.new(0, 0, 0.200000003)
3360
Part151.Parent = Model0
3361
Part151.Material = Enum.Material.Metal
3362
Part151.BrickColor = BrickColor.new("Grime")
3363
Part151.Rotation = Vector3.new(-180, 0, -180)
3364
Part151.CanCollide = false
3365
Part151.FormFactor = Enum.FormFactor.Custom
3366
Part151.Size = Vector3.new(0.400000125, 0.400000095, 4.80000019)
3367
Part151.CFrame = CFrame.new(-25.7096767, 10.2006121, 33.8604965, -1, 9.1545362e-06, -6.27174304e-05, 9.85749102e-06, 0.99999088, 3.03555453e-06, 7.69523976e-05, 1.30931385e-05, -1.00000012)
3368
Part151.BackSurface = Enum.SurfaceType.Weld
3369
Part151.BottomSurface = Enum.SurfaceType.Weld
3370
Part151.FrontSurface = Enum.SurfaceType.Weld
3371
Part151.LeftSurface = Enum.SurfaceType.Weld
3372
Part151.RightSurface = Enum.SurfaceType.Weld
3373
Part151.TopSurface = Enum.SurfaceType.Weld
3374
Part151.Color = Color3.new(0.498039, 0.556863, 0.392157)
3375
Part151.Position = Vector3.new(-25.7096767, 10.2006121, 33.8604965)
3376
Part151.Orientation = Vector3.new(0, -180, 0)
3377
Part151.Color = Color3.new(0.498039, 0.556863, 0.392157)
3378
BlockMesh152.Parent = Part151
3379
Part153.Parent = Model0
3380
Part153.Material = Enum.Material.Ice
3381
Part153.BrickColor = BrickColor.new("Dark stone grey")
3382
Part153.Transparency = 0.5
3383
Part153.Rotation = Vector3.new(0, 90, 0)
3384
Part153.CanCollide = false
3385
Part153.FormFactor = Enum.FormFactor.Custom
3386
Part153.Size = Vector3.new(4.4000001, 2.5999999, 0.200000003)
3387
Part153.CFrame = CFrame.new(-26.0095062, 8.70113087, 44.0608444, -6.27532063e-05, 9.1800166e-06, 1, 6.16025354e-05, 1, -9.47351418e-06, -1, 6.58212812e-05, -6.87484062e-05)
3388
Part153.BackSurface = Enum.SurfaceType.Weld
3389
Part153.BottomSurface = Enum.SurfaceType.Weld
3390
Part153.FrontSurface = Enum.SurfaceType.Weld
3391
Part153.LeftSurface = Enum.SurfaceType.Weld
3392
Part153.RightSurface = Enum.SurfaceType.Weld
3393
Part153.TopSurface = Enum.SurfaceType.Weld
3394
Part153.Color = Color3.new(0.388235, 0.372549, 0.384314)
3395
Part153.Position = Vector3.new(-26.0095062, 8.70113087, 44.0608444)
3396
Part153.Orientation = Vector3.new(0, 90, 0)
3397
Part153.Color = Color3.new(0.388235, 0.372549, 0.384314)
3398
BlockMesh154.Parent = Part153
3399
BlockMesh154.Offset = Vector3.new(0, 0, 0.200000003)
3400
BlockMesh154.Scale = Vector3.new(1, 1.14999998, 0.5)
3401
BlockMesh154.Scale = Vector3.new(1, 1.14999998, 0.5)
3402
Part155.Parent = Model0
3403
Part155.Material = Enum.Material.Metal
3404
Part155.BrickColor = BrickColor.new("Grime")
3405
Part155.Rotation = Vector3.new(180, 0, -180)
3406
Part155.CanCollide = false
3407
Part155.FormFactor = Enum.FormFactor.Custom
3408
Part155.Size = Vector3.new(0.400000125, 2.60000014, 0.399999619)
3409
Part155.CFrame = CFrame.new(-25.7094059, 8.70073032, 36.0606499, -1, 8.09867561e-06, -4.05344908e-05, 8.86677481e-06, 1, -1.35534392e-05, 5.598793e-05, -2.67428459e-06, -1)
3410
Part155.BackSurface = Enum.SurfaceType.Weld
3411
Part155.BottomSurface = Enum.SurfaceType.Weld
3412
Part155.FrontSurface = Enum.SurfaceType.Weld
3413
Part155.LeftSurface = Enum.SurfaceType.Weld
3414
Part155.RightSurface = Enum.SurfaceType.Weld
3415
Part155.TopSurface = Enum.SurfaceType.Weld
3416
Part155.Color = Color3.new(0.498039, 0.556863, 0.392157)
3417
Part155.Position = Vector3.new(-25.7094059, 8.70073032, 36.0606499)
3418
Part155.Orientation = Vector3.new(0, -180, 0)
3419
Part155.Color = Color3.new(0.498039, 0.556863, 0.392157)
3420
BlockMesh156.Parent = Part155
3421
Part157.Parent = Model0
3422
Part157.Material = Enum.Material.Metal
3423
Part157.BrickColor = BrickColor.new("Grime")
3424
Part157.Rotation = Vector3.new(180, 0, -180)
3425
Part157.CanCollide = false
3426
Part157.FormFactor = Enum.FormFactor.Custom
3427
Part157.Size = Vector3.new(0.400000125, 2.60000014, 0.399999619)
3428
Part157.CFrame = CFrame.new(-25.7093887, 8.70087433, 41.6606712, -1, 8.28512475e-06, -4.41889606e-05, 8.58297699e-06, 1, -1.10809588e-05, 5.01835166e-05, -6.86198973e-06, -1)
3429
Part157.BackSurface = Enum.SurfaceType.Weld
3430
Part157.BottomSurface = Enum.SurfaceType.Weld
3431
Part157.FrontSurface = Enum.SurfaceType.Weld
3432
Part157.LeftSurface = Enum.SurfaceType.Weld
3433
Part157.RightSurface = Enum.SurfaceType.Weld
3434
Part157.TopSurface = Enum.SurfaceType.Weld
3435
Part157.Color = Color3.new(0.498039, 0.556863, 0.392157)
3436
Part157.Position = Vector3.new(-25.7093887, 8.70087433, 41.6606712)
3437
Part157.Orientation = Vector3.new(0, -180, 0)
3438
Part157.Color = Color3.new(0.498039, 0.556863, 0.392157)
3439
BlockMesh158.Parent = Part157
3440
Part159.Parent = Model0
3441
Part159.Material = Enum.Material.Metal
3442
Part159.BrickColor = BrickColor.new("Grime")
3443
Part159.Transparency = 1
3444
Part159.Rotation = Vector3.new(0, 0, -90)
3445
Part159.CanCollide = false
3446
Part159.FormFactor = Enum.FormFactor.Custom
3447
Part159.Size = Vector3.new(0.600000024, 33.4000015, 1.20000005)
3448
Part159.CFrame = CFrame.new(-4.310009, 11.8002071, 39.1599884, -6.21251684e-06, 1, 6.75599949e-07, -1, -6.68983739e-06, 1.11012896e-05, 4.27564555e-06, -1.03863886e-05, 1)
3449
Part159.BackSurface = Enum.SurfaceType.Weld
3450
Part159.BottomSurface = Enum.SurfaceType.Weld
3451
Part159.FrontSurface = Enum.SurfaceType.Weld
3452
Part159.LeftSurface = Enum.SurfaceType.Weld
3453
Part159.RightSurface = Enum.SurfaceType.Weld
3454
Part159.TopSurface = Enum.SurfaceType.Weld
3455
Part159.Color = Color3.new(0.498039, 0.556863, 0.392157)
3456
Part159.Position = Vector3.new(-4.310009, 11.8002071, 39.1599884)
3457
Part159.Orientation = Vector3.new(0, 0, -90)
3458
Part159.Color = Color3.new(0.498039, 0.556863, 0.392157)
3459
CylinderMesh160.Parent = Part159
3460
CylinderMesh160.Offset = Vector3.new(6.5, 0, 0)
3461
CylinderMesh160.Scale = Vector3.new(2, 1.5, 1.60000002)
3462
CylinderMesh160.Scale = Vector3.new(2, 1.5, 1.60000002)
3463
Part161.Parent = Model0
3464
Part161.Material = Enum.Material.Metal
3465
Part161.BrickColor = BrickColor.new("Grime")
3466
Part161.Rotation = Vector3.new(-180, -0.00999999978, -180)
3467
Part161.CanCollide = false
3468
Part161.FormFactor = Enum.FormFactor.Custom
3469
Part161.Size = Vector3.new(0.400000125, 0.400000095, 4.80000019)
3470
Part161.CFrame = CFrame.new(-25.7093048, 10.200943, 43.8608704, -1, 1.09616185e-05, -9.92156856e-05, 1.215679e-05, 1, 2.88735409e-05, 0.000123329461, 4.58503346e-05, -1)
3471
Part161.BackSurface = Enum.SurfaceType.Weld
3472
Part161.BottomSurface = Enum.SurfaceType.Weld
3473
Part161.FrontSurface = Enum.SurfaceType.Weld
3474
Part161.LeftSurface = Enum.SurfaceType.Weld
3475
Part161.RightSurface = Enum.SurfaceType.Weld
3476
Part161.TopSurface = Enum.SurfaceType.Weld
3477
Part161.Color = Color3.new(0.498039, 0.556863, 0.392157)
3478
Part161.Position = Vector3.new(-25.7093048, 10.200943, 43.8608704)
3479
Part161.Orientation = Vector3.new(0, -179.98999, 0)
3480
Part161.Color = Color3.new(0.498039, 0.556863, 0.392157)
3481
BlockMesh162.Parent = Part161
3482
Part163.Name = "Brick"
3483
Part163.Parent = Model0
3484
Part163.Material = Enum.Material.Metal
3485
Part163.BrickColor = BrickColor.new("Grime")
3486
Part163.Transparency = 1
3487
Part163.Rotation = Vector3.new(-81.8699951, 0, 0)
3488
Part163.CanCollide = false
3489
Part163.FormFactor = Enum.FormFactor.Custom
3490
Part163.Size = Vector3.new(2, 0.200000003, 1.19999993)
3491
Part163.CFrame = CFrame.new(-15.1100616, 9.22443581, 31.4195766, 1, -1.95444609e-05, 1.00356256e-05, -7.23307085e-06, 0.141354978, 0.989949763, -2.19993763e-05, -0.989958763, 0.141357139)
3492
Part163.BackSurface = Enum.SurfaceType.Weld
3493
Part163.BottomSurface = Enum.SurfaceType.Weld
3494
Part163.FrontSurface = Enum.SurfaceType.Weld
3495
Part163.LeftSurface = Enum.SurfaceType.Weld
3496
Part163.RightSurface = Enum.SurfaceType.Weld
3497
Part163.TopSurface = Enum.SurfaceType.Weld
3498
Part163.Color = Color3.new(0.498039, 0.556863, 0.392157)
3499
Part163.Position = Vector3.new(-15.1100616, 9.22443581, 31.4195766)
3500
Part163.Orientation = Vector3.new(-81.8699951, 0, 0)
3501
Part163.Color = Color3.new(0.498039, 0.556863, 0.392157)
3502
BlockMesh164.Parent = Part163
3503
BlockMesh164.Offset = Vector3.new(0, -0.189999998, 0)
3504
Part165.Parent = Model0
3505
Part165.Material = Enum.Material.Ice
3506
Part165.BrickColor = BrickColor.new("Dark stone grey")
3507
Part165.Transparency = 0.5
3508
Part165.Rotation = Vector3.new(-0.00999999978, 90, 0)
3509
Part165.CanCollide = false
3510
Part165.FormFactor = Enum.FormFactor.Custom
3511
Part165.Size = Vector3.new(4.4000001, 2.5999999, 0.200000003)
3512
Part165.CFrame = CFrame.new(-26.0100727, 8.70062733, 33.660717, 1.50852629e-05, 8.59109969e-06, 1, -0.000113904629, 0.999991715, -9.33180672e-06, -1.00000143, -0.000103434344, 5.23921777e-08)
3513
Part165.BackSurface = Enum.SurfaceType.Weld
3514
Part165.BottomSurface = Enum.SurfaceType.Weld
3515
Part165.FrontSurface = Enum.SurfaceType.Weld
3516
Part165.LeftSurface = Enum.SurfaceType.Weld
3517
Part165.RightSurface = Enum.SurfaceType.Weld
3518
Part165.TopSurface = Enum.SurfaceType.Weld
3519
Part165.Color = Color3.new(0.388235, 0.372549, 0.384314)
3520
Part165.Position = Vector3.new(-26.0100727, 8.70062733, 33.660717)
3521
Part165.Orientation = Vector3.new(0, 90, -0.00999999978)
3522
Part165.Color = Color3.new(0.388235, 0.372549, 0.384314)
3523
BlockMesh166.Parent = Part165
3524
BlockMesh166.Offset = Vector3.new(0, 0, 0.200000003)
3525
BlockMesh166.Scale = Vector3.new(1, 1.14999998, 0.5)
3526
BlockMesh166.Scale = Vector3.new(1, 1.14999998, 0.5)
3527
WedgePart167.Parent = Model0
3528
WedgePart167.Material = Enum.Material.Metal
3529
WedgePart167.BrickColor = BrickColor.new("Grime")
3530
WedgePart167.Rotation = Vector3.new(90, 0, 180)
3531
WedgePart167.FormFactor = Enum.FormFactor.Custom
3532
WedgePart167.Size = Vector3.new(10.1999998, 1.60000014, 1.00000012)
3533
WedgePart167.CFrame = CFrame.new(0.190155506, 10.7001343, 31.8595524, -1, -6.39187638e-05, -9.26415669e-06, 9.63382809e-06, -1.61062781e-05, -0.99999088, 7.13567133e-05, -1.00000012, 1.08866034e-05)
3534
WedgePart167.BackSurface = Enum.SurfaceType.Weld
3535
WedgePart167.BottomSurface = Enum.SurfaceType.Weld
3536
WedgePart167.Color = Color3.new(0.498039, 0.556863, 0.392157)
3537
WedgePart167.Position = Vector3.new(0.190155506, 10.7001343, 31.8595524)
3538
WedgePart167.Orientation = Vector3.new(89.7599945, -40.3999977, 149.110001)
3539
WedgePart167.Color = Color3.new(0.498039, 0.556863, 0.392157)
3540
SpecialMesh168.Parent = WedgePart167
3541
SpecialMesh168.MeshType = Enum.MeshType.Wedge
3542
WedgePart169.Parent = Model0
3543
WedgePart169.Material = Enum.Material.Metal
3544
WedgePart169.BrickColor = BrickColor.new("Grime")
3545
WedgePart169.Rotation = Vector3.new(90, 0, 179.98999)
3546
WedgePart169.CanCollide = false
3547
WedgePart169.FormFactor = Enum.FormFactor.Custom
3548
WedgePart169.Size = Vector3.new(0.400000006, 0.400000006, 3)
3549
WedgePart169.CFrame = CFrame.new(-25.7095623, 8.90049076, 31.2609272, -1, -0.00011542545, -1.16997289e-05, 1.24401122e-05, 1.74538945e-05, -0.999991715, 0.000130459724, -1.00000143, -2.79238375e-05)
3550
WedgePart169.BackSurface = Enum.SurfaceType.Weld
3551
WedgePart169.BottomSurface = Enum.SurfaceType.Weld
3552
WedgePart169.Color = Color3.new(0.498039, 0.556863, 0.392157)
3553
WedgePart169.Position = Vector3.new(-25.7095623, 8.90049076, 31.2609272)
3554
WedgePart169.Orientation = Vector3.new(89.7699966, -157.269989, 35.4799995)
3555
WedgePart169.Color = Color3.new(0.498039, 0.556863, 0.392157)
3556
SpecialMesh170.Parent = WedgePart169
3557
SpecialMesh170.MeshType = Enum.MeshType.Wedge
3558
WedgePart171.Parent = Model0
3559
WedgePart171.Material = Enum.Material.Metal
3560
WedgePart171.BrickColor = BrickColor.new("Grime")
3561
WedgePart171.Rotation = Vector3.new(90, 0, 180)
3562
WedgePart171.CanCollide = false
3563
WedgePart171.FormFactor = Enum.FormFactor.Custom
3564
WedgePart171.Size = Vector3.new(0.400000006, 1.20000005, 0.999999821)
3565
WedgePart171.CFrame = CFrame.new(-25.7096157, 7.90141249, 35.2606316, -1, -4.28536587e-05, -1.1318748e-05, 1.20651166e-05, -9.25489076e-05, -0.999991715, 5.78865729e-05, -1.00000143, 8.20791174e-05)
3566
WedgePart171.BackSurface = Enum.SurfaceType.Weld
3567
WedgePart171.BottomSurface = Enum.SurfaceType.Weld
3568
WedgePart171.Color = Color3.new(0.498039, 0.556863, 0.392157)
3569
WedgePart171.Position = Vector3.new(-25.7096157, 7.90141249, 35.2606316)
3570
WedgePart171.Orientation = Vector3.new(89.7699966, -7.8499999, 172.569992)
3571
WedgePart171.Color = Color3.new(0.498039, 0.556863, 0.392157)
3572
SpecialMesh172.Parent = WedgePart171
3573
SpecialMesh172.MeshType = Enum.MeshType.Wedge
3574
WedgePart173.Parent = Model0
3575
WedgePart173.Material = Enum.Material.Metal
3576
WedgePart173.BrickColor = BrickColor.new("Grime")
3577
WedgePart173.Rotation = Vector3.new(-90, 0, -180)
3578
WedgePart173.CanCollide = false
3579
WedgePart173.FormFactor = Enum.FormFactor.Custom
3580
WedgePart173.Size = Vector3.new(0.400000006, 0.200000003, 2.60000014)
3581
WedgePart173.CFrame = CFrame.new(-25.7096691, 8.70045567, 31.560833, -1, 8.70646472e-05, 1.34475977e-05, 1.41952787e-05, 6.08148293e-05, 0.999991715, 0.000102097867, 1.00000143, -5.03454758e-05)
3582
WedgePart173.BackSurface = Enum.SurfaceType.Weld
3583
WedgePart173.BottomSurface = Enum.SurfaceType.Weld
3584
WedgePart173.Color = Color3.new(0.498039, 0.556863, 0.392157)
3585
WedgePart173.Position = Vector3.new(-25.7096691, 8.70045567, 31.560833)
3586
WedgePart173.Orientation = Vector3.new(-89.7699966, 165.050003, 13.1399994)
3587
WedgePart173.Color = Color3.new(0.498039, 0.556863, 0.392157)
3588
SpecialMesh174.Parent = WedgePart173
3589
SpecialMesh174.MeshType = Enum.MeshType.Wedge
3590
WedgePart175.Parent = Model0
3591
WedgePart175.Material = Enum.Material.Metal
3592
WedgePart175.BrickColor = BrickColor.new("Grime")
3593
WedgePart175.Rotation = Vector3.new(90, 0, -0.00999999978)
3594
WedgePart175.CanCollide = false
3595
WedgePart175.FormFactor = Enum.FormFactor.Custom
3596
WedgePart175.Size = Vector3.new(0.400000006, 0.400000006, 3)
3597
WedgePart175.CFrame = CFrame.new(-25.7104053, 8.90147972, 46.4605446, 1, 9.32686453e-05, -1.07004098e-05, -1.14709874e-05, 3.40783699e-05, -1, -0.000108721877, 1, 2.31999766e-05)
3598
WedgePart175.BackSurface = Enum.SurfaceType.Weld
3599
WedgePart175.BottomSurface = Enum.SurfaceType.Weld
3600
WedgePart175.Color = Color3.new(0.498039, 0.556863, 0.392157)
3601
WedgePart175.Position = Vector3.new(-25.7104053, 8.90147972, 46.4605446)
3602
WedgePart175.Orientation = Vector3.new(90, 0.00999999978, 0)
3603
WedgePart175.Color = Color3.new(0.498039, 0.556863, 0.392157)
3604
SpecialMesh176.Parent = WedgePart175
3605
SpecialMesh176.MeshType = Enum.MeshType.Wedge
3606
WedgePart177.Parent = Model0
3607
WedgePart177.Material = Enum.Material.Metal
3608
WedgePart177.BrickColor = BrickColor.new("Grime")
3609
WedgePart177.Rotation = Vector3.new(90, 0, 180)
3610
WedgePart177.CanCollide = false
3611
WedgePart177.FormFactor = Enum.FormFactor.Custom
3612
WedgePart177.Size = Vector3.new(11.8000002, 0.400000006, 2.79999995)
3613
WedgePart177.CFrame = CFrame.new(-10.8100128, 8.80036926, 31.4599285, -1, -1.98704856e-05, -7.10724089e-06, 7.16815839e-06, 1.53286351e-06, -0.99999088, 2.11030638e-05, -1.00000012, -2.38569896e-06)
3614
WedgePart177.BackSurface = Enum.SurfaceType.Weld
3615
WedgePart177.BottomSurface = Enum.SurfaceType.Weld
3616
WedgePart177.Color = Color3.new(0.498039, 0.556863, 0.392157)
3617
WedgePart177.Position = Vector3.new(-10.8100128, 8.80036926, 31.4599285)
3618
WedgePart177.Orientation = Vector3.new(89.7599945, -108.559998, 77.9300003)
3619
WedgePart177.Color = Color3.new(0.498039, 0.556863, 0.392157)
3620
SpecialMesh178.Parent = WedgePart177
3621
SpecialMesh178.MeshType = Enum.MeshType.Wedge
3622
WedgePart179.Parent = Model0
3623
WedgePart179.Material = Enum.Material.Metal
3624
WedgePart179.BrickColor = BrickColor.new("Grime")
3625
WedgePart179.Rotation = Vector3.new(-90, 0, -180)
3626
WedgePart179.CanCollide = false
3627
WedgePart179.FormFactor = Enum.FormFactor.Custom
3628
WedgePart179.Size = Vector3.new(0.200000003, 0.200000003, 2.60000014)
3629
WedgePart179.CFrame = CFrame.new(-16.8098984, 8.70064831, 31.5546684, -1, 3.86261199e-05, 8.03524836e-06, 8.7385406e-06, 3.54923986e-06, 0.999991119, 5.28609926e-05, 1.00000048, 6.47919069e-06)
3630
WedgePart179.BackSurface = Enum.SurfaceType.Weld
3631
WedgePart179.BottomSurface = Enum.SurfaceType.Weld
3632
WedgePart179.Color = Color3.new(0.498039, 0.556863, 0.392157)
3633
WedgePart179.Position = Vector3.new(-16.8098984, 8.70064831, 31.5546684)
3634
WedgePart179.Orientation = Vector3.new(-89.7599945, 51.1199989, 67.9000015)
3635
WedgePart179.Color = Color3.new(0.498039, 0.556863, 0.392157)
3636
SpecialMesh180.Parent = WedgePart179
3637
SpecialMesh180.MeshType = Enum.MeshType.Wedge
3638
WedgePart181.Parent = Model0
3639
WedgePart181.Material = Enum.Material.Metal
3640
WedgePart181.BrickColor = BrickColor.new("Grime")
3641
WedgePart181.Rotation = Vector3.new(90, 0, 180)
3642
WedgePart181.CanCollide = false
3643
WedgePart181.FormFactor = Enum.FormFactor.Custom
3644
WedgePart181.Size = Vector3.new(0.200000003, 0.400000006, 3)
3645
WedgePart181.CFrame = CFrame.new(-19.6100655, 8.90089989, 31.2546997, -1, -6.24609311e-05, -9.12487758e-06, 9.82918027e-06, -1.84945038e-05, -0.99999088, 7.66956946e-05, -1.00000012, 8.43711314e-06)
3646
WedgePart181.BackSurface = Enum.SurfaceType.Weld
3647
WedgePart181.BottomSurface = Enum.SurfaceType.Weld
3648
WedgePart181.Color = Color3.new(0.498039, 0.556863, 0.392157)
3649
WedgePart181.Position = Vector3.new(-19.6100655, 8.90089989, 31.2546997)
3650
WedgePart181.Orientation = Vector3.new(89.7599945, -47.2399979, 152.009995)
3651
WedgePart181.Color = Color3.new(0.498039, 0.556863, 0.392157)
3652
SpecialMesh182.Parent = WedgePart181
3653
SpecialMesh182.MeshType = Enum.MeshType.Wedge
3654
WedgePart183.Parent = Model0
3655
WedgePart183.Material = Enum.Material.Metal
3656
WedgePart183.BrickColor = BrickColor.new("Grime")
3657
WedgePart183.Rotation = Vector3.new(90, 0, 180)
3658
WedgePart183.CanCollide = false
3659
WedgePart183.FormFactor = Enum.FormFactor.Custom
3660
WedgePart183.Size = Vector3.new(0.400000006, 0.400000006, 3)
3661
WedgePart183.CFrame = CFrame.new(-22.7099266, 8.90095329, 31.255022, -1, -6.28153575e-05, -9.15679993e-06, 9.860717e-06, -1.23528207e-05, -0.999991715, 7.70501429e-05, -1.00000143, 2.44396688e-06)
3662
WedgePart183.BackSurface = Enum.SurfaceType.Weld
3663
WedgePart183.BottomSurface = Enum.SurfaceType.Weld
3664
WedgePart183.Color = Color3.new(0.498039, 0.556863, 0.392157)
3665
WedgePart183.Position = Vector3.new(-22.7099266, 8.90095329, 31.255022)
3666
WedgePart183.Orientation = Vector3.new(89.7699966, -75.0599976, 141.399994)
3667
WedgePart183.Color = Color3.new(0.498039, 0.556863, 0.392157)
3668
SpecialMesh184.Parent = WedgePart183
3669
SpecialMesh184.MeshType = Enum.MeshType.Wedge
3670
WedgePart185.Parent = Model0
3671
WedgePart185.Material = Enum.Material.Metal
3672
WedgePart185.BrickColor = BrickColor.new("Grime")
3673
WedgePart185.Rotation = Vector3.new(-90, 0, 0)
3674
WedgePart185.CanCollide = false
3675
WedgePart185.FormFactor = Enum.FormFactor.Custom
3676
WedgePart185.Size = Vector3.new(0.400000006, 0.200000003, 2.60000014)
3677
WedgePart185.CFrame = CFrame.new(-25.7090588, 8.70090199, 46.1605759, 1, -7.75331137e-05, 9.84157032e-06, -1.01347641e-05, 5.37735141e-05, 1, -8.35282772e-05, -1, 5.7992067e-05)
3678
WedgePart185.BackSurface = Enum.SurfaceType.Weld
3679
WedgePart185.BottomSurface = Enum.SurfaceType.Weld
3680
WedgePart185.Color = Color3.new(0.498039, 0.556863, 0.392157)
3681
WedgePart185.Position = Vector3.new(-25.7090588, 8.70090199, 46.1605759)
3682
WedgePart185.Orientation = Vector3.new(-90, 0, 0)
3683
WedgePart185.Color = Color3.new(0.498039, 0.556863, 0.392157)
3684
SpecialMesh186.Parent = WedgePart185
3685
SpecialMesh186.MeshType = Enum.MeshType.Wedge
3686
WedgePart187.Parent = Model0
3687
WedgePart187.Material = Enum.Material.Metal
3688
WedgePart187.BrickColor = BrickColor.new("Grime")
3689
WedgePart187.Rotation = Vector3.new(-90, 0, -180)
3690
WedgePart187.CanCollide = false
3691
WedgePart187.FormFactor = Enum.FormFactor.Custom
3692
WedgePart187.Size = Vector3.new(0.200000003, 0.200000003, 2.60000014)
3693
WedgePart187.CFrame = CFrame.new(-19.6096992, 8.70069408, 31.5548515, -1, 2.96698472e-05, 7.61610727e-06, 8.31959642e-06, 1.10488836e-05, 0.99999088, 4.39046744e-05, 1.00000012, -9.91035904e-07)
3694
WedgePart187.BackSurface = Enum.SurfaceType.Weld
3695
WedgePart187.BottomSurface = Enum.SurfaceType.Weld
3696
WedgePart187.Color = Color3.new(0.498039, 0.556863, 0.392157)
3697
WedgePart187.Position = Vector3.new(-19.6096992, 8.70069408, 31.5548515)
3698
WedgePart187.Orientation = Vector3.new(-89.7599945, 97.409996, 36.9799995)
3699
WedgePart187.Color = Color3.new(0.498039, 0.556863, 0.392157)
3700
SpecialMesh188.Parent = WedgePart187
3701
SpecialMesh188.MeshType = Enum.MeshType.Wedge
3702
WedgePart189.Parent = Model0
3703
WedgePart189.Material = Enum.Material.Metal
3704
WedgePart189.BrickColor = BrickColor.new("Grime")
3705
WedgePart189.Rotation = Vector3.new(-90, 0, -180)
3706
WedgePart189.CanCollide = false
3707
WedgePart189.FormFactor = Enum.FormFactor.Custom
3708
WedgePart189.Size = Vector3.new(0.400000006, 0.200000003, 2.60000014)
3709
WedgePart189.CFrame = CFrame.new(-22.7095509, 8.70071697, 31.5549793, -1, 2.9757899e-05, 7.61660112e-06, 8.32005298e-06, 1.00073721e-05, 0.999991715, 4.39926589e-05, 1.00000143, -9.81024186e-08)
3710
WedgePart189.BackSurface = Enum.SurfaceType.Weld
3711
WedgePart189.BottomSurface = Enum.SurfaceType.Weld
3712
WedgePart189.Color = Color3.new(0.498039, 0.556863, 0.392157)
3713
WedgePart189.Position = Vector3.new(-22.7095509, 8.70071697, 31.5549793)
3714
WedgePart189.Orientation = Vector3.new(-89.7699966, 90.7399979, 39.7399979)
3715
WedgePart189.Color = Color3.new(0.498039, 0.556863, 0.392157)
3716
SpecialMesh190.Parent = WedgePart189
3717
SpecialMesh190.MeshType = Enum.MeshType.Wedge
3718
WedgePart191.Parent = Model0
3719
WedgePart191.Material = Enum.Material.Metal
3720
WedgePart191.BrickColor = BrickColor.new("Grime")
3721
WedgePart191.Rotation = Vector3.new(90, 0, 180)
3722
WedgePart191.CanCollide = false
3723
WedgePart191.FormFactor = Enum.FormFactor.Custom
3724
WedgePart191.Size = Vector3.new(0.200000003, 0.400000006, 3)
3725
WedgePart191.CFrame = CFrame.new(-16.810257, 8.90075588, 31.25453, -1, -6.24630338e-05, -9.1277625e-06, 9.83149221e-06, -9.34280797e-06, -0.999991119, 7.66978701e-05, -1.00000048, -6.85276063e-07)
3726
WedgePart191.BackSurface = Enum.SurfaceType.Weld
3727
WedgePart191.BottomSurface = Enum.SurfaceType.Weld
3728
WedgePart191.Color = Color3.new(0.498039, 0.556863, 0.392157)
3729
WedgePart191.Position = Vector3.new(-16.810257, 8.90075588, 31.25453)
3730
WedgePart191.Orientation = Vector3.new(89.7599945, -94.2900009, 133.539993)
3731
WedgePart191.Color = Color3.new(0.498039, 0.556863, 0.392157)
3732
SpecialMesh192.Parent = WedgePart191
3733
SpecialMesh192.MeshType = Enum.MeshType.Wedge
3734
Model193.Name = "Braces"
3735
Model193.Parent = Model0
3736
Part194.Name = "SideSupporters"
3737
Part194.Parent = Model193
3738
Part194.Material = Enum.Material.DiamondPlate
3739
Part194.BrickColor = BrickColor.new("Dark stone grey")
3740
Part194.Rotation = Vector3.new(-0.00999999978, -0.00999999978, -90)
3741
Part194.CanCollide = false
3742
Part194.FormFactor = Enum.FormFactor.Custom
3743
Part194.Size = Vector3.new(0.800000012, 38.6000023, 0.599999905)
3744
Part194.CFrame = CFrame.new(4.88875008, 11.701334, 42.4607582, -1.26398409e-05, 1, -0.000139337557, -1, -1.35639984e-05, 0.000109516797, 9.60821344e-05, 0.000120227873, 1)
3745
Part194.BackSurface = Enum.SurfaceType.Weld
3746
Part194.BottomSurface = Enum.SurfaceType.Weld
3747
Part194.FrontSurface = Enum.SurfaceType.Weld
3748
Part194.LeftSurface = Enum.SurfaceType.Weld
3749
Part194.RightSurface = Enum.SurfaceType.Weld
3750
Part194.TopSurface = Enum.SurfaceType.Weld
3751
Part194.Color = Color3.new(0.388235, 0.372549, 0.384314)
3752
Part194.Position = Vector3.new(4.88875008, 11.701334, 42.4607582)
3753
Part194.Orientation = Vector3.new(-0.00999999978, -0.00999999978, -90)
3754
Part194.Color = Color3.new(0.388235, 0.372549, 0.384314)
3755
CylinderMesh195.Parent = Part194
3756
CylinderMesh195.Offset = Vector3.new(0.699999988, 0, -0.5)
3757
Part196.Name = "SideSupporters"
3758
Part196.Parent = Model193
3759
Part196.Material = Enum.Material.DiamondPlate
3760
Part196.BrickColor = BrickColor.new("Dark stone grey")
3761
Part196.Rotation = Vector3.new(0, 0, -90)
3762
Part196.CanCollide = false
3763
Part196.FormFactor = Enum.FormFactor.Custom
3764
Part196.Size = Vector3.new(0.800000012, 38.6000023, 0.599999905)
3765
Part196.CFrame = CFrame.new(4.89028549, 11.7001047, 35.459919, -3.96238374e-06, 1, -1.33412796e-05, -1, -4.90152115e-06, 2.09537357e-05, 7.52074175e-06, -5.76958473e-06, 1)
3766
Part196.BackSurface = Enum.SurfaceType.Weld
3767
Part196.BottomSurface = Enum.SurfaceType.Weld
3768
Part196.FrontSurface = Enum.SurfaceType.Weld
3769
Part196.LeftSurface = Enum.SurfaceType.Weld
3770
Part196.RightSurface = Enum.SurfaceType.Weld
3771
Part196.TopSurface = Enum.SurfaceType.Weld
3772
Part196.Color = Color3.new(0.388235, 0.372549, 0.384314)
3773
Part196.Position = Vector3.new(4.89028549, 11.7001047, 35.459919)
3774
Part196.Orientation = Vector3.new(0, 0, -90)
3775
Part196.Color = Color3.new(0.388235, 0.372549, 0.384314)
3776
CylinderMesh197.Parent = Part196
3777
CylinderMesh197.Offset = Vector3.new(0.699999988, 0, 0.5)
3778
Part198.Name = "SideSupporters"
3779
Part198.Parent = Model193
3780
Part198.Material = Enum.Material.DiamondPlate
3781
Part198.BrickColor = BrickColor.new("Dark stone grey")
3782
Part198.Transparency = 1
3783
Part198.Rotation = Vector3.new(-90, 90, 0)
3784
Part198.CanCollide = false
3785
Part198.FormFactor = Enum.FormFactor.Custom
3786
Part198.Size = Vector3.new(0.399999976, 3.200001, 0.599999905)
3787
Part198.CFrame = CFrame.new(12.6886978, 12.3010302, 41.0611801, -1.00123516e-05, 0.000133011898, 1, -1, -8.2736733e-05, -1.09407647e-05, 6.93024485e-05, -1, 0.000113901697)
3788
Part198.BackSurface = Enum.SurfaceType.Weld
3789
Part198.BottomSurface = Enum.SurfaceType.Weld
3790
Part198.FrontSurface = Enum.SurfaceType.Weld
3791
Part198.LeftSurface = Enum.SurfaceType.Weld
3792
Part198.RightSurface = Enum.SurfaceType.Weld
3793
Part198.TopSurface = Enum.SurfaceType.Weld
3794
Part198.Color = Color3.new(0.388235, 0.372549, 0.384314)
3795
Part198.Position = Vector3.new(12.6886978, 12.3010302, 41.0611801)
3796
Part198.Orientation = Vector3.new(0, 89.9899979, -90)
3797
Part198.Color = Color3.new(0.388235, 0.372549, 0.384314)
3798
CylinderMesh199.Parent = Part198
3799
CylinderMesh199.Offset = Vector3.new(0.699999988, 0, 0.5)
3800
Part200.Name = "SideSupporters"
3801
Part200.Parent = Model193
3802
Part200.Material = Enum.Material.DiamondPlate
3803
Part200.BrickColor = BrickColor.new("Dark stone grey")
3804
Part200.Transparency = 1
3805
Part200.Rotation = Vector3.new(-90, 90, 0)
3806
Part200.CanCollide = false
3807
Part200.FormFactor = Enum.FormFactor.Custom
3808
Part200.Size = Vector3.new(0.399999976, 3.200001, 0.599999905)
3809
Part200.CFrame = CFrame.new(12.6900082, 12.3000383, 36.8591309, -2.95247196e-06, -2.58682812e-05, 1, -1, 2.89400232e-05, -3.89114075e-06, -4.23728707e-05, -1, -4.49793006e-05)
3810
Part200.BackSurface = Enum.SurfaceType.Weld
3811
Part200.BottomSurface = Enum.SurfaceType.Weld
3812
Part200.FrontSurface = Enum.SurfaceType.Weld
3813
Part200.LeftSurface = Enum.SurfaceType.Weld
3814
Part200.RightSurface = Enum.SurfaceType.Weld
3815
Part200.TopSurface = Enum.SurfaceType.Weld
3816
Part200.Color = Color3.new(0.388235, 0.372549, 0.384314)
3817
Part200.Position = Vector3.new(12.6900082, 12.3000383, 36.8591309)
3818
Part200.Orientation = Vector3.new(0, 90, -90)
3819
Part200.Color = Color3.new(0.388235, 0.372549, 0.384314)
3820
CylinderMesh201.Parent = Part200
3821
CylinderMesh201.Offset = Vector3.new(0.699999988, 0, 0.5)
3822
Part202.Name = "Emblem"
3823
Part202.Parent = Model0
3824
Part202.Material = Enum.Material.Metal
3825
Part202.BrickColor = BrickColor.new("Grime")
3826
Part202.CanCollide = false
3827
Part202.FormFactor = Enum.FormFactor.Custom
3828
Part202.Size = Vector3.new(3.60000014, 3.39999962, 0.200000003)
3829
Part202.CFrame = CFrame.new(-20.5100327, 5.70076609, 30.9600067, 1, 7.46798696e-06, 2.7385162e-05, -7.62826676e-06, 0.999991715, -1.72890504e-05, -3.06962465e-05, 1.95087814e-05, 1.00000143)
3830
Part202.BackSurface = Enum.SurfaceType.Weld
3831
Part202.BottomSurface = Enum.SurfaceType.Weld
3832
Part202.FrontSurface = Enum.SurfaceType.Weld
3833
Part202.LeftSurface = Enum.SurfaceType.Weld
3834
Part202.RightSurface = Enum.SurfaceType.Weld
3835
Part202.TopSurface = Enum.SurfaceType.Weld
3836
Part202.Color = Color3.new(0.498039, 0.556863, 0.392157)
3837
Part202.Position = Vector3.new(-20.5100327, 5.70076609, 30.9600067)
3838
Part202.Color = Color3.new(0.498039, 0.556863, 0.392157)
3839
BlockMesh203.Parent = Part202
3840
BlockMesh203.Offset = Vector3.new(0, 0, 0.200000003)
3841
Part204.Parent = Model0
3842
Part204.Material = Enum.Material.Metal
3843
Part204.BrickColor = BrickColor.new("Grime")
3844
Part204.Rotation = Vector3.new(-180, 0, -180)
3845
Part204.FormFactor = Enum.FormFactor.Custom
3846
Part204.Size = Vector3.new(6.19999933, 2.20000005, 2.60000038)
3847
Part204.CFrame = CFrame.new(14.9899111, 9.90013885, 32.9597321, -1, 8.86935595e-06, -5.40786423e-05, 8.96597521e-06, 1, 8.80265179e-06, 5.60541885e-05, 1.01906853e-05, -1)
3848
Part204.BackSurface = Enum.SurfaceType.Weld
3849
Part204.BottomSurface = Enum.SurfaceType.Weld
3850
Part204.FrontSurface = Enum.SurfaceType.Weld
3851
Part204.LeftSurface = Enum.SurfaceType.Weld
3852
Part204.RightSurface = Enum.SurfaceType.Weld
3853
Part204.TopSurface = Enum.SurfaceType.Weld
3854
Part204.Color = Color3.new(0.498039, 0.556863, 0.392157)
3855
Part204.Position = Vector3.new(14.9899111, 9.90013885, 32.9597321)
3856
Part204.Orientation = Vector3.new(0, -180, 0)
3857
Part204.Color = Color3.new(0.498039, 0.556863, 0.392157)
3858
BlockMesh205.Parent = Part204
3859
Part206.Parent = Model0
3860
Part206.Material = Enum.Material.Metal
3861
Part206.BrickColor = BrickColor.new("Grime")
3862
Part206.Rotation = Vector3.new(180, 0, -180)
3863
Part206.FormFactor = Enum.FormFactor.Custom
3864
Part206.Size = Vector3.new(5.19999933, 1.19999993, 4.00000048)
3865
Part206.CFrame = CFrame.new(8.89008808, 8.60011578, 33.6598549, -1, 6.99085149e-06, -1.63561654e-05, 7.1075865e-06, 1, -6.3724741e-08, 1.87311598e-05, 1.60550485e-06, -1)
3866
Part206.BackSurface = Enum.SurfaceType.Weld
3867
Part206.BottomSurface = Enum.SurfaceType.Weld
3868
Part206.FrontSurface = Enum.SurfaceType.Weld
3869
Part206.LeftSurface = Enum.SurfaceType.Weld
3870
Part206.RightSurface = Enum.SurfaceType.Weld
3871
Part206.TopSurface = Enum.SurfaceType.Weld
3872
Part206.Color = Color3.new(0.498039, 0.556863, 0.392157)
3873
Part206.Position = Vector3.new(8.89008808, 8.60011578, 33.6598549)
3874
Part206.Orientation = Vector3.new(0, -180, 0)
3875
Part206.Color = Color3.new(0.498039, 0.556863, 0.392157)
3876
BlockMesh207.Parent = Part206
3877
Part208.Parent = Model0
3878
Part208.Material = Enum.Material.Metal
3879
Part208.BrickColor = BrickColor.new("Grime")
3880
Part208.Rotation = Vector3.new(-180, 0, -180)
3881
Part208.CanCollide = false
3882
Part208.FormFactor = Enum.FormFactor.Custom
3883
Part208.Size = Vector3.new(11.8000002, 4.19999981, 4.60000038)
3884
Part208.CFrame = CFrame.new(-10.8099661, 8.10049725, 33.9599152, -1, 7.14305224e-06, -2.03425952e-05, 7.16210434e-06, 1, 1.88869399e-06, 2.07310459e-05, 2.16157287e-06, -1)
3885
Part208.BackSurface = Enum.SurfaceType.Weld
3886
Part208.BottomSurface = Enum.SurfaceType.Weld
3887
Part208.FrontSurface = Enum.SurfaceType.Weld
3888
Part208.LeftSurface = Enum.SurfaceType.Weld
3889
Part208.RightSurface = Enum.SurfaceType.Weld
3890
Part208.TopSurface = Enum.SurfaceType.Weld
3891
Part208.Color = Color3.new(0.498039, 0.556863, 0.392157)
3892
Part208.Position = Vector3.new(-10.8099661, 8.10049725, 33.9599152)
3893
Part208.Orientation = Vector3.new(0, -180, 0)
3894
Part208.Color = Color3.new(0.498039, 0.556863, 0.392157)
3895
BlockMesh209.Parent = Part208
3896
Part210.Name = "Emblem"
3897
Part210.Parent = Model0
3898
Part210.Material = Enum.Material.Metal
3899
Part210.BrickColor = BrickColor.new("Grime")
3900
Part210.Rotation = Vector3.new(-180, 0, -180)
3901
Part210.CanCollide = false
3902
Part210.FormFactor = Enum.FormFactor.Custom
3903
Part210.Size = Vector3.new(3.60000014, 3.39999962, 0.200000003)
3904
Part210.CFrame = CFrame.new(-20.5099678, 5.70037603, 46.760025, -1, 6.35870629e-06, -2.10810867e-06, 6.65713014e-06, 1, 1.4320929e-05, 8.12503458e-06, 1.85558729e-05, -1)
3905
Part210.BackSurface = Enum.SurfaceType.Weld
3906
Part210.BottomSurface = Enum.SurfaceType.Weld
3907
Part210.FrontSurface = Enum.SurfaceType.Weld
3908
Part210.LeftSurface = Enum.SurfaceType.Weld
3909
Part210.RightSurface = Enum.SurfaceType.Weld
3910
Part210.TopSurface = Enum.SurfaceType.Weld
3911
Part210.Color = Color3.new(0.498039, 0.556863, 0.392157)
3912
Part210.Position = Vector3.new(-20.5099678, 5.70037603, 46.760025)
3913
Part210.Orientation = Vector3.new(0, -180, 0)
3914
Part210.Color = Color3.new(0.498039, 0.556863, 0.392157)
3915
BlockMesh211.Parent = Part210
3916
BlockMesh211.Offset = Vector3.new(0, 0, 0.200000003)
3917
Part212.Parent = Model0
3918
Part212.Material = Enum.Material.Metal
3919
Part212.BrickColor = BrickColor.new("Grime")
3920
Part212.Rotation = Vector3.new(180, 0, -180)
3921
Part212.CanCollide = false
3922
Part212.FormFactor = Enum.FormFactor.Custom
3923
Part212.Size = Vector3.new(3, 3, 5.19999981)
3924
Part212.CFrame = CFrame.new(3.79019642, 8.70022011, 44.0599136, -1, 6.32772435e-06, -3.98295379e-06, 6.47945944e-06, 1, -8.76483864e-06, 7.04126296e-06, -6.61228023e-06, -1)
3925
Part212.BackSurface = Enum.SurfaceType.Weld
3926
Part212.BottomSurface = Enum.SurfaceType.Weld
3927
Part212.FrontSurface = Enum.SurfaceType.Weld
3928
Part212.LeftSurface = Enum.SurfaceType.Weld
3929
Part212.RightSurface = Enum.SurfaceType.Weld
3930
Part212.TopSurface = Enum.SurfaceType.Weld
3931
Part212.Color = Color3.new(0.498039, 0.556863, 0.392157)
3932
Part212.Position = Vector3.new(3.79019642, 8.70022011, 44.0599136)
3933
Part212.Orientation = Vector3.new(0, -180, 0)
3934
Part212.Color = Color3.new(0.498039, 0.556863, 0.392157)
3935
BlockMesh213.Parent = Part212
3936
Part214.Parent = Model0
3937
Part214.Material = Enum.Material.Metal
3938
Part214.BrickColor = BrickColor.new("Grime")
3939
Part214.Rotation = Vector3.new(-180, 0, -180)
3940
Part214.CanCollide = false
3941
Part214.FormFactor = Enum.FormFactor.Custom
3942
Part214.Size = Vector3.new(10.1999998, 0.999999881, 2.79999995)
3943
Part214.CFrame = CFrame.new(0.190334558, 10.7001324, 43.6596947, -1, 8.83405392e-06, -5.33534985e-05, 9.60729267e-06, 0.99999088, 3.31501396e-05, 6.89792505e-05, 4.41338598e-05, -1.00000012)
3944
Part214.BackSurface = Enum.SurfaceType.Weld
3945
Part214.BottomSurface = Enum.SurfaceType.Weld
3946
Part214.FrontSurface = Enum.SurfaceType.Weld
3947
Part214.LeftSurface = Enum.SurfaceType.Weld
3948
Part214.RightSurface = Enum.SurfaceType.Weld
3949
Part214.TopSurface = Enum.SurfaceType.Weld
3950
Part214.Color = Color3.new(0.498039, 0.556863, 0.392157)
3951
Part214.Position = Vector3.new(0.190334558, 10.7001324, 43.6596947)
3952
Part214.Orientation = Vector3.new(0, -180, 0)
3953
Part214.Color = Color3.new(0.498039, 0.556863, 0.392157)
3954
BlockMesh215.Parent = Part214
3955
Part216.Parent = Model0
3956
Part216.Material = Enum.Material.Metal
3957
Part216.BrickColor = BrickColor.new("Grime")
3958
Part216.Rotation = Vector3.new(180, 0, -180)
3959
Part216.CanCollide = false
3960
Part216.FormFactor = Enum.FormFactor.Custom
3961
Part216.Size = Vector3.new(11.8000002, 0.399999976, 0.200000003)
3962
Part216.CFrame = CFrame.new(-10.8095398, 6.20018864, 31.1600113, -1, 6.19986486e-06, -4.70125087e-07, 6.56853854e-06, 0.99999088, -1.11185163e-05, 7.90813283e-06, -5.89815954e-06, -1.00000012)
3963
Part216.BackSurface = Enum.SurfaceType.Weld
3964
Part216.BottomSurface = Enum.SurfaceType.Weld
3965
Part216.FrontSurface = Enum.SurfaceType.Weld
3966
Part216.LeftSurface = Enum.SurfaceType.Weld
3967
Part216.RightSurface = Enum.SurfaceType.Weld
3968
Part216.TopSurface = Enum.SurfaceType.Weld
3969
Part216.Color = Color3.new(0.498039, 0.556863, 0.392157)
3970
Part216.Position = Vector3.new(-10.8095398, 6.20018864, 31.1600113)
3971
Part216.Orientation = Vector3.new(0, -180, 0)
3972
Part216.Color = Color3.new(0.498039, 0.556863, 0.392157)
3973
BlockMesh217.Parent = Part216
3974
Part218.Parent = Model0
3975
Part218.Material = Enum.Material.Metal
3976
Part218.BrickColor = BrickColor.new("Grime")
3977
Part218.Rotation = Vector3.new(-180, 0, -180)
3978
Part218.CanCollide = false
3979
Part218.FormFactor = Enum.FormFactor.Custom
3980
Part218.Size = Vector3.new(11.8000002, 4.19999981, 4.60000038)
3981
Part218.CFrame = CFrame.new(-10.8097363, 8.10028648, 43.7601395, -1, 7.16859677e-06, -2.04153348e-05, 7.45285433e-06, 1, 2.7828346e-06, 2.61436471e-05, 6.81482152e-06, -1)
3982
Part218.BackSurface = Enum.SurfaceType.Weld
3983
Part218.BottomSurface = Enum.SurfaceType.Weld
3984
Part218.FrontSurface = Enum.SurfaceType.Weld
3985
Part218.LeftSurface = Enum.SurfaceType.Weld
3986
Part218.RightSurface = Enum.SurfaceType.Weld
3987
Part218.TopSurface = Enum.SurfaceType.Weld
3988
Part218.Color = Color3.new(0.498039, 0.556863, 0.392157)
3989
Part218.Position = Vector3.new(-10.8097363, 8.10028648, 43.7601395)
3990
Part218.Orientation = Vector3.new(0, -180, 0)
3991
Part218.Color = Color3.new(0.498039, 0.556863, 0.392157)
3992
BlockMesh219.Parent = Part218
3993
Part220.Parent = Model0
3994
Part220.Material = Enum.Material.Metal
3995
Part220.BrickColor = BrickColor.new("Grime")
3996
Part220.Rotation = Vector3.new(-180, 0, -180)
3997
Part220.CanCollide = false
3998
Part220.FormFactor = Enum.FormFactor.Custom
3999
Part220.Size = Vector3.new(3, 3, 5.19999981)
4000
Part220.CFrame = CFrame.new(3.79002571, 8.70051765, 33.6592712, -1, 8.50772994e-06, -4.85191158e-05, 8.51756067e-06, 1, 1.09945977e-05, 4.87300749e-05, 1.11423969e-05, -1)
4001
Part220.BackSurface = Enum.SurfaceType.Weld
4002
Part220.BottomSurface = Enum.SurfaceType.Weld
4003
Part220.FrontSurface = Enum.SurfaceType.Weld
4004
Part220.LeftSurface = Enum.SurfaceType.Weld
4005
Part220.RightSurface = Enum.SurfaceType.Weld
4006
Part220.TopSurface = Enum.SurfaceType.Weld
4007
Part220.Color = Color3.new(0.498039, 0.556863, 0.392157)
4008
Part220.Position = Vector3.new(3.79002571, 8.70051765, 33.6592712)
4009
Part220.Orientation = Vector3.new(0, -180, 0)
4010
Part220.Color = Color3.new(0.498039, 0.556863, 0.392157)
4011
BlockMesh221.Parent = Part220
4012
Part222.Parent = Model0
4013
Part222.Material = Enum.Material.Metal
4014
Part222.BrickColor = BrickColor.new("Grime")
4015
Part222.Rotation = Vector3.new(180, 0, -180)
4016
Part222.CanCollide = false
4017
Part222.FormFactor = Enum.FormFactor.Custom
4018
Part222.Size = Vector3.new(22, 0.799999714, 0.600000441)
4019
Part222.CFrame = CFrame.new(-5.70979691, 8.60026169, 36.5600357, -1, 6.81412985e-06, -1.27640888e-05, 7.56088548e-06, 0.999981761, -9.83839709e-06, 2.78288353e-05, 7.34849891e-07, -1.00000024)
4020
Part222.BackSurface = Enum.SurfaceType.Weld
4021
Part222.BottomSurface = Enum.SurfaceType.Weld
4022
Part222.FrontSurface = Enum.SurfaceType.Weld
4023
Part222.LeftSurface = Enum.SurfaceType.Weld
4024
Part222.RightSurface = Enum.SurfaceType.Weld
4025
Part222.TopSurface = Enum.SurfaceType.Weld
4026
Part222.Color = Color3.new(0.498039, 0.556863, 0.392157)
4027
Part222.Position = Vector3.new(-5.70979691, 8.60026169, 36.5600357)
4028
Part222.Orientation = Vector3.new(0, -180, 0)
4029
Part222.Color = Color3.new(0.498039, 0.556863, 0.392157)
4030
BlockMesh223.Parent = Part222
4031
Part224.Parent = Model0
4032
Part224.Material = Enum.Material.Metal
4033
Part224.BrickColor = BrickColor.new("Grime")
4034
Part224.Rotation = Vector3.new(180, 0, -180)
4035
Part224.CanCollide = false
4036
Part224.FormFactor = Enum.FormFactor.Custom
4037
Part224.Size = Vector3.new(11.8000002, 1.39999998, 0.400000006)
4038
Part224.CFrame = CFrame.new(-10.8097229, 6.70026398, 46.2599983, -1, 6.7584383e-06, -1.16997562e-05, 7.04279182e-06, 1, -3.34411698e-06, 1.74280249e-05, 6.87942702e-07, -1)
4039
Part224.BackSurface = Enum.SurfaceType.Weld
4040
Part224.BottomSurface = Enum.SurfaceType.Weld
4041
Part224.FrontSurface = Enum.SurfaceType.Weld
4042
Part224.LeftSurface = Enum.SurfaceType.Weld
4043
Part224.RightSurface = Enum.SurfaceType.Weld
4044
Part224.TopSurface = Enum.SurfaceType.Weld
4045
Part224.Color = Color3.new(0.498039, 0.556863, 0.392157)
4046
Part224.Position = Vector3.new(-10.8097229, 6.70026398, 46.2599983)
4047
Part224.Orientation = Vector3.new(0, -180, 0)
4048
Part224.Color = Color3.new(0.498039, 0.556863, 0.392157)
4049
BlockMesh225.Parent = Part224
4050
Part226.Parent = Model0
4051
Part226.Material = Enum.Material.Metal
4052
Part226.BrickColor = BrickColor.new("Grime")
4053
Part226.Rotation = Vector3.new(-180, 0, -180)
4054
Part226.CanCollide = false
4055
Part226.FormFactor = Enum.FormFactor.Custom
4056
Part226.Size = Vector3.new(7.19999981, 5, 5.19999981)
4057
Part226.CFrame = CFrame.new(-1.30967951, 7.70056057, 33.659565, -1, 7.81613926e-06, -3.46217457e-05, 8.18463377e-06, 0.99999088, 4.60983938e-06, 4.20598662e-05, 9.83004793e-06, -1.00000012)
4058
Part226.BackSurface = Enum.SurfaceType.Weld
4059
Part226.BottomSurface = Enum.SurfaceType.Weld
4060
Part226.FrontSurface = Enum.SurfaceType.Weld
4061
Part226.LeftSurface = Enum.SurfaceType.Weld
4062
Part226.RightSurface = Enum.SurfaceType.Weld
4063
Part226.TopSurface = Enum.SurfaceType.Weld
4064
Part226.Color = Color3.new(0.498039, 0.556863, 0.392157)
4065
Part226.Position = Vector3.new(-1.30967951, 7.70056057, 33.659565)
4066
Part226.Orientation = Vector3.new(0, -180, 0)
4067
Part226.Color = Color3.new(0.498039, 0.556863, 0.392157)
4068
BlockMesh227.Parent = Part226
4069
Part228.Parent = Model0
4070
Part228.Material = Enum.Material.Metal
4071
Part228.BrickColor = BrickColor.new("Grime")
4072
Part228.Rotation = Vector3.new(-180, 0, -180)
4073
Part228.CanCollide = false
4074
Part228.FormFactor = Enum.FormFactor.Custom
4075
Part228.Size = Vector3.new(11.8000002, 1.39999998, 0.400000006)
4076
Part228.CFrame = CFrame.new(-10.8100386, 6.70071936, 31.4599133, -1, 7.03509431e-06, -1.81622581e-05, 7.05417779e-06, 1, 3.9548047e-07, 1.85506979e-05, 6.6837697e-07, -1)
4077
Part228.BackSurface = Enum.SurfaceType.Weld
4078
Part228.BottomSurface = Enum.SurfaceType.Weld
4079
Part228.FrontSurface = Enum.SurfaceType.Weld
4080
Part228.LeftSurface = Enum.SurfaceType.Weld
4081
Part228.RightSurface = Enum.SurfaceType.Weld
4082
Part228.TopSurface = Enum.SurfaceType.Weld
4083
Part228.Color = Color3.new(0.498039, 0.556863, 0.392157)
4084
Part228.Position = Vector3.new(-10.8100386, 6.70071936, 31.4599133)
4085
Part228.Orientation = Vector3.new(0, -180, 0)
4086
Part228.Color = Color3.new(0.498039, 0.556863, 0.392157)
4087
BlockMesh229.Parent = Part228
4088
Part230.Parent = Model0
4089
Part230.Material = Enum.Material.Metal
4090
Part230.BrickColor = BrickColor.new("Grime")
4091
Part230.Rotation = Vector3.new(-180, 0, -180)
4092
Part230.CanCollide = false
4093
Part230.FormFactor = Enum.FormFactor.Custom
4094
Part230.Size = Vector3.new(7.19999981, 5, 5.19999981)
4095
Part230.CFrame = CFrame.new(-1.30968046, 7.70014811, 44.0596848, -1, 9.28767258e-06, -6.2477724e-05, 9.65974232e-06, 0.99999088, 3.24114408e-05, 7.00270903e-05, 3.77095821e-05, -1.00000012)
4096
Part230.BackSurface = Enum.SurfaceType.Weld
4097
Part230.BottomSurface = Enum.SurfaceType.Weld
4098
Part230.FrontSurface = Enum.SurfaceType.Weld
4099
Part230.LeftSurface = Enum.SurfaceType.Weld
4100
Part230.RightSurface = Enum.SurfaceType.Weld
4101
Part230.TopSurface = Enum.SurfaceType.Weld
4102
Part230.Color = Color3.new(0.498039, 0.556863, 0.392157)
4103
Part230.Position = Vector3.new(-1.30968046, 7.70014811, 44.0596848)
4104
Part230.Orientation = Vector3.new(0, -180, 0)
4105
Part230.Color = Color3.new(0.498039, 0.556863, 0.392157)
4106
BlockMesh231.Parent = Part230
4107
Part232.Parent = Model0
4108
Part232.Material = Enum.Material.Metal
4109
Part232.BrickColor = BrickColor.new("Grime")
4110
Part232.Rotation = Vector3.new(-180, -0.00999999978, -180)
4111
Part232.CanCollide = false
4112
Part232.FormFactor = Enum.FormFactor.Custom
4113
Part232.Size = Vector3.new(4, 3.60000014, 0.400000006)
4114
Part232.CFrame = CFrame.new(-23.5095253, 6.40087748, 41.6604347, -1, 1.09171879e-05, -9.79027827e-05, 1.12118551e-05, 1, 2.75443344e-05, 0.000103897743, 3.17625672e-05, -1)
4115
Part232.BackSurface = Enum.SurfaceType.Weld
4116
Part232.BottomSurface = Enum.SurfaceType.Weld
4117
Part232.FrontSurface = Enum.SurfaceType.Weld
4118
Part232.LeftSurface = Enum.SurfaceType.Weld
4119
Part232.RightSurface = Enum.SurfaceType.Weld
4120
Part232.TopSurface = Enum.SurfaceType.Weld
4121
Part232.Color = Color3.new(0.498039, 0.556863, 0.392157)
4122
Part232.Position = Vector3.new(-23.5095253, 6.40087748, 41.6604347)
4123
Part232.Orientation = Vector3.new(0, -179.98999, 0)
4124
Part232.Color = Color3.new(0.498039, 0.556863, 0.392157)
4125
BlockMesh233.Parent = Part232
4126
Part234.Parent = Model0
4127
Part234.Material = Enum.Material.Metal
4128
Part234.BrickColor = BrickColor.new("Grime")
4129
Part234.Rotation = Vector3.new(180, 0, -180)
4130
Part234.CanCollide = false
4131
Part234.FormFactor = Enum.FormFactor.Custom
4132
Part234.Size = Vector3.new(0.200000003, 4.19999981, 4.4000001)
4133
Part234.CFrame = CFrame.new(-16.8097973, 8.10076141, 33.6598473, -1, 8.92862408e-06, -5.77830069e-05, 8.94776349e-06, 1, -8.51531922e-07, 5.81714412e-05, -5.790248e-07, -1)
4134
Part234.BackSurface = Enum.SurfaceType.Weld
4135
Part234.BottomSurface = Enum.SurfaceType.Weld
4136
Part234.FrontSurface = Enum.SurfaceType.Weld
4137
Part234.LeftSurface = Enum.SurfaceType.Weld
4138
Part234.RightSurface = Enum.SurfaceType.Weld
4139
Part234.TopSurface = Enum.SurfaceType.Weld
4140
Part234.Color = Color3.new(0.498039, 0.556863, 0.392157)
4141
Part234.Position = Vector3.new(-16.8097973, 8.10076141, 33.6598473)
4142
Part234.Orientation = Vector3.new(0, -180, 0)
4143
Part234.Color = Color3.new(0.498039, 0.556863, 0.392157)
4144
BlockMesh235.Parent = Part234
4145
Part236.Parent = Model0
4146
Part236.Material = Enum.Material.Ice
4147
Part236.BrickColor = BrickColor.new("Dark stone grey")
4148
Part236.Transparency = 0.5
4149
Part236.Rotation = Vector3.new(172.399994, 0, -180)
4150
Part236.CanCollide = false
4151
Part236.FormFactor = Enum.FormFactor.Custom
4152
Part236.Size = Vector3.new(3, 2.5999999, 0.200000003)
4153
Part236.CFrame = CFrame.new(-24.2096062, 8.73111153, 46.5839996, -1, 1.03770833e-06, -6.15868048e-05, 1.03748134e-05, 0.991209269, -0.132304236, 8.50215365e-05, -0.132287398, -0.991211414)
4154
Part236.BackSurface = Enum.SurfaceType.Weld
4155
Part236.BottomSurface = Enum.SurfaceType.Weld
4156
Part236.FrontSurface = Enum.SurfaceType.Weld
4157
Part236.LeftSurface = Enum.SurfaceType.Weld
4158
Part236.RightSurface = Enum.SurfaceType.Weld
4159
Part236.TopSurface = Enum.SurfaceType.Weld
4160
Part236.Color = Color3.new(0.388235, 0.372549, 0.384314)
4161
Part236.Position = Vector3.new(-24.2096062, 8.73111153, 46.5839996)
4162
Part236.Orientation = Vector3.new(7.5999999, -180, 0)
4163
Part236.Color = Color3.new(0.388235, 0.372549, 0.384314)
4164
BlockMesh237.Parent = Part236
4165
BlockMesh237.Offset = Vector3.new(0, 0, 0.200000003)
4166
BlockMesh237.Scale = Vector3.new(1, 1.14999998, 0.5)
4167
BlockMesh237.Scale = Vector3.new(1, 1.14999998, 0.5)
4168
Part238.Parent = Model0
4169
Part238.Material = Enum.Material.Metal
4170
Part238.BrickColor = BrickColor.new("Grime")
4171
Part238.Rotation = Vector3.new(180, 0, -180)
4172
Part238.CanCollide = false
4173
Part238.FormFactor = Enum.FormFactor.Custom
4174
Part238.Size = Vector3.new(22, 0.799999714, 0.600000441)
4175
Part238.CFrame = CFrame.new(-5.70983505, 8.60029507, 41.1600647, -1, 6.14293958e-06, -2.86971044e-07, 6.52252311e-06, 0.99999088, -2.05128945e-05, 7.94687185e-06, -1.51366112e-05, -1.00000012)
4176
Part238.BackSurface = Enum.SurfaceType.Weld
4177
Part238.BottomSurface = Enum.SurfaceType.Weld
4178
Part238.FrontSurface = Enum.SurfaceType.Weld
4179
Part238.LeftSurface = Enum.SurfaceType.Weld
4180
Part238.RightSurface = Enum.SurfaceType.Weld
4181
Part238.TopSurface = Enum.SurfaceType.Weld
4182
Part238.Color = Color3.new(0.498039, 0.556863, 0.392157)
4183
Part238.Position = Vector3.new(-5.70983505, 8.60029507, 41.1600647)
4184
Part238.Orientation = Vector3.new(0, -180, 0)
4185
Part238.Color = Color3.new(0.498039, 0.556863, 0.392157)
4186
BlockMesh239.Parent = Part238
4187
Part240.Parent = Model0
4188
Part240.Material = Enum.Material.Metal
4189
Part240.BrickColor = BrickColor.new("Grime")
4190
Part240.Rotation = Vector3.new(-180, 0, -180)
4191
Part240.CanCollide = false
4192
Part240.FormFactor = Enum.FormFactor.Custom
4193
Part240.Size = Vector3.new(1.59999919, 0.799999952, 5.19999981)
4194
Part240.CFrame = CFrame.new(3.09039879, 6.80017376, 33.6598129, -1, 7.68635618e-06, -3.03721881e-05, 7.69642338e-06, 1, 9.77274976e-06, 3.05831309e-05, 9.92072819e-06, -1)
4195
Part240.BackSurface = Enum.SurfaceType.Weld
4196
Part240.BottomSurface = Enum.SurfaceType.Weld
4197
Part240.FrontSurface = Enum.SurfaceType.Weld
4198
Part240.LeftSurface = Enum.SurfaceType.Weld
4199
Part240.RightSurface = Enum.SurfaceType.Weld
4200
Part240.TopSurface = Enum.SurfaceType.Weld
4201
Part240.Color = Color3.new(0.498039, 0.556863, 0.392157)
4202
Part240.Position = Vector3.new(3.09039879, 6.80017376, 33.6598129)
4203
Part240.Orientation = Vector3.new(0, -180, 0)
4204
Part240.Color = Color3.new(0.498039, 0.556863, 0.392157)
4205
BlockMesh241.Parent = Part240
4206
Part242.Parent = Model0
4207
Part242.Material = Enum.Material.Ice
4208
Part242.BrickColor = BrickColor.new("Dark stone grey")
4209
Part242.Transparency = 0.5
4210
Part242.Rotation = Vector3.new(172.399994, -0.00999999978, 180)
4211
Part242.CanCollide = false
4212
Part242.FormFactor = Enum.FormFactor.Custom
4213
Part242.Size = Vector3.new(6, 2, 0.200000003)
4214
Part242.CFrame = CFrame.new(-19.709465, 8.82992744, 46.5701866, -1, -7.48528237e-06, -0.000163338729, 1.53728633e-05, 0.991222322, -0.132206306, 0.000187008089, -0.132189468, -0.991224468)
4215
Part242.BackSurface = Enum.SurfaceType.Weld
4216
Part242.BottomSurface = Enum.SurfaceType.Weld
4217
Part242.FrontSurface = Enum.SurfaceType.Weld
4218
Part242.LeftSurface = Enum.SurfaceType.Weld
4219
Part242.RightSurface = Enum.SurfaceType.Weld
4220
Part242.TopSurface = Enum.SurfaceType.Weld
4221
Part242.Color = Color3.new(0.388235, 0.372549, 0.384314)
4222
Part242.Position = Vector3.new(-19.709465, 8.82992744, 46.5701866)
4223
Part242.Orientation = Vector3.new(7.5999999, -179.98999, 0)
4224
Part242.Color = Color3.new(0.388235, 0.372549, 0.384314)
4225
BlockMesh243.Parent = Part242
4226
BlockMesh243.Offset = Vector3.new(0, 0, 0.200000003)
4227
BlockMesh243.Scale = Vector3.new(1, 1.14999998, 0.5)
4228
BlockMesh243.Scale = Vector3.new(1, 1.14999998, 0.5)
4229
Part244.Parent = Model0
4230
Part244.Material = Enum.Material.Metal
4231
Part244.BrickColor = BrickColor.new("Grime")
4232
Part244.Rotation = Vector3.new(-180, 0, -180)
4233
Part244.CanCollide = false
4234
Part244.FormFactor = Enum.FormFactor.Custom
4235
Part244.Size = Vector3.new(22, 0.200000003, 5.20000029)
4236
Part244.CFrame = CFrame.new(-5.70976353, 8.10029221, 38.8601913, -1, 7.18417186e-06, -2.02370084e-05, 7.56368945e-06, 0.99999088, 2.50288394e-06, 2.78970601e-05, 7.87922181e-06, -1.00000012)
4237
Part244.BackSurface = Enum.SurfaceType.Weld
4238
Part244.BottomSurface = Enum.SurfaceType.Weld
4239
Part244.FrontSurface = Enum.SurfaceType.Weld
4240
Part244.LeftSurface = Enum.SurfaceType.Weld
4241
Part244.RightSurface = Enum.SurfaceType.Weld
4242
Part244.TopSurface = Enum.SurfaceType.Weld
4243
Part244.Color = Color3.new(0.498039, 0.556863, 0.392157)
4244
Part244.Position = Vector3.new(-5.70976353, 8.10029221, 38.8601913)
4245
Part244.Orientation = Vector3.new(0, -180, 0)
4246
Part244.Color = Color3.new(0.498039, 0.556863, 0.392157)
4247
BlockMesh245.Parent = Part244
4248
Part246.Parent = Model0
4249
Part246.Material = Enum.Material.Metal
4250
Part246.BrickColor = BrickColor.new("Grime")
4251
Part246.Rotation = Vector3.new(180, 0, -180)
4252
Part246.CanCollide = false
4253
Part246.FormFactor = Enum.FormFactor.Custom
4254
Part246.Size = Vector3.new(0.799999237, 4.20000029, 0.400000006)
4255
Part246.CFrame = CFrame.new(-17.109623, 8.10075474, 36.0598869, -1, 8.79787513e-06, -5.50586119e-05, 8.82257518e-06, 1, -2.83478767e-06, 5.55580045e-05, -2.48424249e-06, -1)
4256
Part246.BackSurface = Enum.SurfaceType.Weld
4257
Part246.BottomSurface = Enum.SurfaceType.Weld
4258
Part246.FrontSurface = Enum.SurfaceType.Weld
4259
Part246.LeftSurface = Enum.SurfaceType.Weld
4260
Part246.RightSurface = Enum.SurfaceType.Weld
4261
Part246.TopSurface = Enum.SurfaceType.Weld
4262
Part246.Color = Color3.new(0.498039, 0.556863, 0.392157)
4263
Part246.Position = Vector3.new(-17.109623, 8.10075474, 36.0598869)
4264
Part246.Orientation = Vector3.new(0, -180, 0)
4265
Part246.Color = Color3.new(0.498039, 0.556863, 0.392157)
4266
BlockMesh247.Parent = Part246
4267
Part248.Name = "wheel"
4268
Part248.Parent = Model0
4269
Part248.Material = Enum.Material.Metal
4270
Part248.BrickColor = BrickColor.new("Grime")
4271
Part248.Transparency = 1
4272
Part248.Rotation = Vector3.new(90, 90, 0)
4273
Part248.FormFactor = Enum.FormFactor.Symmetric
4274
Part248.Friction = 1
4275
Part248.Shape = Enum.PartType.Ball
4276
Part248.Size = Vector3.new(5, 5, 5)
4277
Part248.CFrame = CFrame.new(-22.5099754, 2.99934292, 28.5597458, 1.68583483e-05, 9.94351055e-08, 1, 1, 4.67716745e-08, -1.68586612e-05, -3.92897164e-08, 1, -1.10534181e-07)
4278
Part248.BottomSurface = Enum.SurfaceType.Smooth
4279
Part248.TopSurface = Enum.SurfaceType.Hinge
4280
Part248.Color = Color3.new(0.498039, 0.556863, 0.392157)
4281
Part248.Position = Vector3.new(-22.5099754, 2.99934292, 28.5597458)
4282
Part248.Orientation = Vector3.new(0, 90, 90)
4283
Part248.Color = Color3.new(0.498039, 0.556863, 0.392157)
4284
CylinderMesh249.Parent = Part248
4285
CylinderMesh249.Offset = Vector3.new(0, -1.10000002, 0)
4286
CylinderMesh249.Scale = Vector3.new(1, 0.600000024, 1)
4287
CylinderMesh249.Scale = Vector3.new(1, 0.600000024, 1)
4288
Part250.Parent = Model0
4289
Part250.Material = Enum.Material.Metal
4290
Part250.BrickColor = BrickColor.new("Grime")
4291
Part250.Rotation = Vector3.new(180, 0, -180)
4292
Part250.FormFactor = Enum.FormFactor.Custom
4293
Part250.Size = Vector3.new(22.7999992, 3.99999976, 5.20000029)
4294
Part250.CFrame = CFrame.new(-6.10987282, 6.00021553, 38.8599777, -1, 6.44594638e-06, -5.42557655e-06, 6.45635237e-06, 1, -7.76254092e-06, 5.63639105e-06, -7.6143624e-06, -1)
4295
Part250.BottomSurface = Enum.SurfaceType.Weld
4296
Part250.LeftSurface = Enum.SurfaceType.Weld
4297
Part250.RightSurface = Enum.SurfaceType.Weld
4298
Part250.TopSurface = Enum.SurfaceType.Weld
4299
Part250.Color = Color3.new(0.498039, 0.556863, 0.392157)
4300
Part250.Position = Vector3.new(-6.10987282, 6.00021553, 38.8599777)
4301
Part250.Orientation = Vector3.new(0, -180, 0)
4302
Part250.Color = Color3.new(0.498039, 0.556863, 0.392157)
4303
BlockMesh251.Parent = Part250
4304
Part252.Parent = Model0
4305
Part252.Material = Enum.Material.Metal
4306
Part252.BrickColor = BrickColor.new("Grime")
4307
Part252.Rotation = Vector3.new(-180, 0, -180)
4308
Part252.FormFactor = Enum.FormFactor.Custom
4309
Part252.Size = Vector3.new(9.00000095, 0.800000072, 5.20000029)
4310
Part252.CFrame = CFrame.new(-22.0095825, 4.40028095, 38.8602219, -1, 7.54429402e-06, -2.79332871e-05, 7.55442079e-06, 1, 8.47021511e-06, 2.81442171e-05, 8.61821627e-06, -1)
4311
Part252.BackSurface = Enum.SurfaceType.Weld
4312
Part252.BottomSurface = Enum.SurfaceType.Weld
4313
Part252.FrontSurface = Enum.SurfaceType.Weld
4314
Part252.LeftSurface = Enum.SurfaceType.Weld
4315
Part252.RightSurface = Enum.SurfaceType.Weld
4316
Part252.TopSurface = Enum.SurfaceType.Weld
4317
Part252.Color = Color3.new(0.498039, 0.556863, 0.392157)
4318
Part252.Position = Vector3.new(-22.0095825, 4.40028095, 38.8602219)
4319
Part252.Orientation = Vector3.new(0, -180, 0)
4320
Part252.Color = Color3.new(0.498039, 0.556863, 0.392157)
4321
BlockMesh253.Parent = Part252
4322
Part254.Parent = Model0
4323
Part254.Material = Enum.Material.Metal
4324
Part254.BrickColor = BrickColor.new("Grime")
4325
Part254.Rotation = Vector3.new(-180, 0, -180)
4326
Part254.CanCollide = false
4327
Part254.FormFactor = Enum.FormFactor.Custom
4328
Part254.Size = Vector3.new(8, 2.79999995, 0.400000006)
4329
Part254.CFrame = CFrame.new(-21.5101471, 6.00087833, 31.2600803, -1, 6.5851641e-06, -8.26637188e-06, 6.74582452e-06, 0.999991715, 1.20076311e-05, 1.15773773e-05, 1.42274675e-05, -1.00000143)
4330
Part254.BottomSurface = Enum.SurfaceType.Weld
4331
Part254.FrontSurface = Enum.SurfaceType.Weld
4332
Part254.LeftSurface = Enum.SurfaceType.Weld
4333
Part254.RightSurface = Enum.SurfaceType.Weld
4334
Part254.TopSurface = Enum.SurfaceType.Weld
4335
Part254.Color = Color3.new(0.498039, 0.556863, 0.392157)
4336
Part254.Position = Vector3.new(-21.5101471, 6.00087833, 31.2600803)
4337
Part254.Orientation = Vector3.new(0, -180, 0)
4338
Part254.Color = Color3.new(0.498039, 0.556863, 0.392157)
4339
BlockMesh255.Parent = Part254
4340
Part256.Parent = Model0
4341
Part256.Material = Enum.Material.Metal
4342
Part256.BrickColor = BrickColor.new("Grime")
4343
Part256.Rotation = Vector3.new(180, 0, -180)
4344
Part256.FormFactor = Enum.FormFactor.Custom
4345
Part256.Size = Vector3.new(8, 1.20000005, 5.19999981)
4346
Part256.CFrame = CFrame.new(-21.5099373, 3.40028739, 33.6600609, -1, 6.41632732e-06, -4.81871075e-06, 6.4790911e-06, 1, -8.07724973e-06, 6.09494327e-06, -7.18019601e-06, -1)
4347
Part256.BottomSurface = Enum.SurfaceType.Weld
4348
Part256.LeftSurface = Enum.SurfaceType.Weld
4349
Part256.RightSurface = Enum.SurfaceType.Weld
4350
Part256.TopSurface = Enum.SurfaceType.Weld
4351
Part256.Color = Color3.new(0.498039, 0.556863, 0.392157)
4352
Part256.Position = Vector3.new(-21.5099373, 3.40028739, 33.6600609)
4353
Part256.Orientation = Vector3.new(0, -180, 0)
4354
Part256.Color = Color3.new(0.498039, 0.556863, 0.392157)
4355
BlockMesh257.Parent = Part256
4356
Part258.Parent = Model0
4357
Part258.Material = Enum.Material.Metal
4358
Part258.BrickColor = BrickColor.new("Grime")
4359
Part258.Rotation = Vector3.new(180, 0, -180)
4360
Part258.CanCollide = false
4361
Part258.FormFactor = Enum.FormFactor.Custom
4362
Part258.Size = Vector3.new(8, 2.79999995, 0.400000006)
4363
Part258.CFrame = CFrame.new(-21.509985, 6.00044394, 46.4600868, -1, 8.28853172e-06, -4.09939275e-05, 8.58829844e-06, 1, -3.20226973e-05, 4.70105078e-05, -2.77881045e-05, -1)
4364
Part258.BackSurface = Enum.SurfaceType.Weld
4365
Part258.BottomSurface = Enum.SurfaceType.Weld
4366
Part258.LeftSurface = Enum.SurfaceType.Weld
4367
Part258.RightSurface = Enum.SurfaceType.Weld
4368
Part258.TopSurface = Enum.SurfaceType.Weld
4369
Part258.Color = Color3.new(0.498039, 0.556863, 0.392157)
4370
Part258.Position = Vector3.new(-21.509985, 6.00044394, 46.4600868)
4371
Part258.Orientation = Vector3.new(0, -180, 0)
4372
Part258.Color = Color3.new(0.498039, 0.556863, 0.392157)
4373
BlockMesh259.Parent = Part258
4374
Part260.Parent = Model0
4375
Part260.Material = Enum.Material.Metal
4376
Part260.BrickColor = BrickColor.new("Grime")
4377
Part260.Rotation = Vector3.new(-180, 0, -180)
4378
Part260.FormFactor = Enum.FormFactor.Custom
4379
Part260.Size = Vector3.new(8, 0.600000083, 5.19999981)
4380
Part260.CFrame = CFrame.new(-21.509903, 4.3003602, 44.0600548, -1, 5.38951872e-06, 1.67202743e-05, 5.68799487e-06, 1, 1.31562274e-06, -1.07034357e-05, 5.55068073e-06, -1)
4381
Part260.BackSurface = Enum.SurfaceType.Weld
4382
Part260.BottomSurface = Enum.SurfaceType.Weld
4383
Part260.LeftSurface = Enum.SurfaceType.Weld
4384
Part260.RightSurface = Enum.SurfaceType.Weld
4385
Part260.TopSurface = Enum.SurfaceType.Weld
4386
Part260.Color = Color3.new(0.498039, 0.556863, 0.392157)
4387
Part260.Position = Vector3.new(-21.509903, 4.3003602, 44.0600548)
4388
Part260.Orientation = Vector3.new(0, 180, 0)
4389
Part260.Color = Color3.new(0.498039, 0.556863, 0.392157)
4390
BlockMesh261.Parent = Part260
4391
Part262.Parent = Model0
4392
Part262.Material = Enum.Material.Metal
4393
Part262.BrickColor = BrickColor.new("Grime")
4394
Part262.Rotation = Vector3.new(172.399994, 0, -180)
4395
Part262.CanCollide = false
4396
Part262.FormFactor = Enum.FormFactor.Custom
4397
Part262.Size = Vector3.new(6, 0.400000036, 0.200000003)
4398
Part262.CFrame = CFrame.new(-19.7101326, 7.64007092, 46.7289124, -1, 7.62399668e-06, 1.59960618e-05, 6.63972241e-06, 0.991217554, -0.132242054, 7.24958954e-06, -0.132225215, -0.991219759)
4399
Part262.BackSurface = Enum.SurfaceType.Weld
4400
Part262.BottomSurface = Enum.SurfaceType.Weld
4401
Part262.FrontSurface = Enum.SurfaceType.Weld
4402
Part262.LeftSurface = Enum.SurfaceType.Weld
4403
Part262.RightSurface = Enum.SurfaceType.Weld
4404
Part262.TopSurface = Enum.SurfaceType.Weld
4405
Part262.Color = Color3.new(0.498039, 0.556863, 0.392157)
4406
Part262.Position = Vector3.new(-19.7101326, 7.64007092, 46.7289124)
4407
Part262.Orientation = Vector3.new(7.5999999, 180, 0)
4408
Part262.Color = Color3.new(0.498039, 0.556863, 0.392157)
4409
BlockMesh263.Parent = Part262
4410
BlockMesh263.Offset = Vector3.new(0, 0, 0.200000003)
4411
BlockMesh263.Scale = Vector3.new(1, 1.14999998, 1)
4412
BlockMesh263.Scale = Vector3.new(1, 1.14999998, 1)
4413
Part264.Parent = Model0
4414
Part264.Material = Enum.Material.Metal
4415
Part264.BrickColor = BrickColor.new("Grime")
4416
Part264.Rotation = Vector3.new(-180, 0, -180)
4417
Part264.CanCollide = false
4418
Part264.FormFactor = Enum.FormFactor.Custom
4419
Part264.Size = Vector3.new(4.79999924, 4.20000029, 0.400000006)
4420
Part264.CFrame = CFrame.new(-19.1095543, 8.10087967, 41.6602554, -1, 1.00066009e-05, -7.96175955e-05, 1.02973845e-05, 1, 1.46885304e-05, 8.55014368e-05, 1.88290433e-05, -1)
4421
Part264.BackSurface = Enum.SurfaceType.Weld
4422
Part264.BottomSurface = Enum.SurfaceType.Weld
4423
Part264.FrontSurface = Enum.SurfaceType.Weld
4424
Part264.LeftSurface = Enum.SurfaceType.Weld
4425
Part264.RightSurface = Enum.SurfaceType.Weld
4426
Part264.TopSurface = Enum.SurfaceType.Weld
4427
Part264.Color = Color3.new(0.498039, 0.556863, 0.392157)
4428
Part264.Position = Vector3.new(-19.1095543, 8.10087967, 41.6602554)
4429
Part264.Orientation = Vector3.new(0, -180, 0)
4430
Part264.Color = Color3.new(0.498039, 0.556863, 0.392157)
4431
BlockMesh265.Parent = Part264
4432
Part266.Parent = Model0
4433
Part266.Material = Enum.Material.Metal
4434
Part266.BrickColor = BrickColor.new("Grime")
4435
Part266.Rotation = Vector3.new(-180, 0, -180)
4436
Part266.CanCollide = false
4437
Part266.FormFactor = Enum.FormFactor.Custom
4438
Part266.Size = Vector3.new(3.99999928, 5.60000038, 0.400000006)
4439
Part266.CFrame = CFrame.new(-19.5095768, 7.40064335, 36.0599785, -1, 9.13069925e-06, -6.21806248e-05, 9.83368318e-06, 0.99999088, 2.60451998e-06, 7.64155848e-05, 1.2662108e-05, -1.00000012)
4440
Part266.BackSurface = Enum.SurfaceType.Weld
4441
Part266.BottomSurface = Enum.SurfaceType.Weld
4442
Part266.FrontSurface = Enum.SurfaceType.Weld
4443
Part266.LeftSurface = Enum.SurfaceType.Weld
4444
Part266.RightSurface = Enum.SurfaceType.Weld
4445
Part266.TopSurface = Enum.SurfaceType.Weld
4446
Part266.Color = Color3.new(0.498039, 0.556863, 0.392157)
4447
Part266.Position = Vector3.new(-19.5095768, 7.40064335, 36.0599785)
4448
Part266.Orientation = Vector3.new(0, -180, 0)
4449
Part266.Color = Color3.new(0.498039, 0.556863, 0.392157)
4450
BlockMesh267.Parent = Part266
4451
Part268.Parent = Model0
4452
Part268.Material = Enum.Material.Metal
4453
Part268.BrickColor = BrickColor.new("Grime")
4454
Part268.Rotation = Vector3.new(-180, 0, -180)
4455
Part268.CanCollide = false
4456
Part268.FormFactor = Enum.FormFactor.Custom
4457
Part268.Size = Vector3.new(3.99999928, 1.40000033, 0.400000006)
4458
Part268.CFrame = CFrame.new(-19.5098534, 5.30032063, 41.6600571, -1, 7.29569683e-06, -2.24659452e-05, 7.88762736e-06, 1, 4.21738878e-06, 3.43997672e-05, 1.26169134e-05, -1)
4459
Part268.BackSurface = Enum.SurfaceType.Weld
4460
Part268.BottomSurface = Enum.SurfaceType.Weld
4461
Part268.FrontSurface = Enum.SurfaceType.Weld
4462
Part268.LeftSurface = Enum.SurfaceType.Weld
4463
Part268.RightSurface = Enum.SurfaceType.Weld
4464
Part268.TopSurface = Enum.SurfaceType.Weld
4465
Part268.Color = Color3.new(0.498039, 0.556863, 0.392157)
4466
Part268.Position = Vector3.new(-19.5098534, 5.30032063, 41.6600571)
4467
Part268.Orientation = Vector3.new(0, -180, 0)
4468
Part268.Color = Color3.new(0.498039, 0.556863, 0.392157)
4469
BlockMesh269.Parent = Part268
4470
Part270.Parent = Model0
4471
Part270.Material = Enum.Material.Metal
4472
Part270.BrickColor = BrickColor.new("Grime")
4473
Part270.Rotation = Vector3.new(-180, 0, -180)
4474
Part270.FormFactor = Enum.FormFactor.Custom
4475
Part270.Size = Vector3.new(8, 0.600000083, 5.19999981)
4476
Part270.CFrame = CFrame.new(-21.5100098, 4.30057859, 33.6601372, -1, 6.76650234e-06, -2.10475282e-05, 6.92721051e-06, 0.999991715, 2.39840938e-06, 2.43584891e-05, 4.61806076e-06, -1.00000143)
4477
Part270.BottomSurface = Enum.SurfaceType.Weld
4478
Part270.FrontSurface = Enum.SurfaceType.Weld
4479
Part270.LeftSurface = Enum.SurfaceType.Weld
4480
Part270.RightSurface = Enum.SurfaceType.Weld
4481
Part270.TopSurface = Enum.SurfaceType.Weld
4482
Part270.Color = Color3.new(0.498039, 0.556863, 0.392157)
4483
Part270.Position = Vector3.new(-21.5100098, 4.30057859, 33.6601372)
4484
Part270.Orientation = Vector3.new(0, -180, 0)
4485
Part270.Color = Color3.new(0.498039, 0.556863, 0.392157)
4486
BlockMesh271.Parent = Part270
4487
Part272.Parent = Model0
4488
Part272.Material = Enum.Material.Metal
4489
Part272.BrickColor = BrickColor.new("Grime")
4490
Part272.Rotation = Vector3.new(180, 0, -180)
4491
Part272.FormFactor = Enum.FormFactor.Custom
4492
Part272.Size = Vector3.new(9.40000057, 3.19999981, 5.20000029)
4493
Part272.CFrame = CFrame.new(-22.2094765, 6.40075827, 38.8604355, -1, 7.93084837e-06, -3.66540953e-05, 8.22882612e-06, 1, -1.67581202e-05, 4.26486076e-05, -1.25390716e-05, -1)
4494
Part272.BackSurface = Enum.SurfaceType.Weld
4495
Part272.BottomSurface = Enum.SurfaceType.Weld
4496
Part272.FrontSurface = Enum.SurfaceType.Weld
4497
Part272.LeftSurface = Enum.SurfaceType.Weld
4498
Part272.RightSurface = Enum.SurfaceType.Weld
4499
Part272.TopSurface = Enum.SurfaceType.Weld
4500
Part272.Color = Color3.new(0.498039, 0.556863, 0.392157)
4501
Part272.Position = Vector3.new(-22.2094765, 6.40075827, 38.8604355)
4502
Part272.Orientation = Vector3.new(0, -180, 0)
4503
Part272.Color = Color3.new(0.498039, 0.556863, 0.392157)
4504
BlockMesh273.Parent = Part272
4505
Part274.Parent = Model0
4506
Part274.Material = Enum.Material.Metal
4507
Part274.BrickColor = BrickColor.new("Grime")
4508
Part274.Rotation = Vector3.new(-180, -0.00999999978, -180)
4509
Part274.CanCollide = false
4510
Part274.FormFactor = Enum.FormFactor.Custom
4511
Part274.Size = Vector3.new(0.200000003, 4.19999981, 4.4000001)
4512
Part274.CFrame = CFrame.new(-16.8093033, 8.10082817, 44.0597496, -1, 1.14173636e-05, -0.000108378299, 1.16978508e-05, 1, 3.53243195e-05, 0.00011410701, 3.93551636e-05, -1)
4513
Part274.BackSurface = Enum.SurfaceType.Weld
4514
Part274.BottomSurface = Enum.SurfaceType.Weld
4515
Part274.FrontSurface = Enum.SurfaceType.Weld
4516
Part274.LeftSurface = Enum.SurfaceType.Weld
4517
Part274.RightSurface = Enum.SurfaceType.Weld
4518
Part274.TopSurface = Enum.SurfaceType.Weld
4519
Part274.Color = Color3.new(0.498039, 0.556863, 0.392157)
4520
Part274.Position = Vector3.new(-16.8093033, 8.10082817, 44.0597496)
4521
Part274.Orientation = Vector3.new(0, -179.98999, 0)
4522
Part274.Color = Color3.new(0.498039, 0.556863, 0.392157)
4523
BlockMesh275.Parent = Part274
4524
Part276.Parent = Model0
4525
Part276.Material = Enum.Material.Metal
4526
Part276.BrickColor = BrickColor.new("Grime")
4527
Part276.Rotation = Vector3.new(-180, 0, -180)
4528
Part276.CanCollide = false
4529
Part276.FormFactor = Enum.FormFactor.Custom
4530
Part276.Size = Vector3.new(0.799999237, 1.40000033, 0.400000006)
4531
Part276.CFrame = CFrame.new(-17.1096954, 6.70062399, 31.2602272, -1, 7.63167918e-06, -3.04036766e-05, 7.79194579e-06, 0.999991715, 1.59272313e-05, 3.37147576e-05, 1.81469222e-05, -1.00000143)
4532
Part276.BackSurface = Enum.SurfaceType.Weld
4533
Part276.BottomSurface = Enum.SurfaceType.Weld
4534
Part276.FrontSurface = Enum.SurfaceType.Weld
4535
Part276.LeftSurface = Enum.SurfaceType.Weld
4536
Part276.RightSurface = Enum.SurfaceType.Weld
4537
Part276.TopSurface = Enum.SurfaceType.Weld
4538
Part276.Color = Color3.new(0.498039, 0.556863, 0.392157)
4539
Part276.Position = Vector3.new(-17.1096954, 6.70062399, 31.2602272)
4540
Part276.Orientation = Vector3.new(0, -180, 0)
4541
Part276.Color = Color3.new(0.498039, 0.556863, 0.392157)
4542
BlockMesh277.Parent = Part276
4543
Part278.Parent = Model0
4544
Part278.Material = Enum.Material.Metal
4545
Part278.BrickColor = BrickColor.new("Grime")
4546
Part278.Rotation = Vector3.new(180, 0, -180)
4547
Part278.CanCollide = false
4548
Part278.FormFactor = Enum.FormFactor.Custom
4549
Part278.Size = Vector3.new(0.799999714, 1.39999998, 0.400000006)
4550
Part278.CFrame = CFrame.new(-17.1098671, 6.70034742, 46.4597092, -1, 9.67943106e-06, -6.97521682e-05, 9.97899224e-06, 1, -1.5873462e-05, 7.57688613e-05, -1.16392221e-05, -1)
4551
Part278.BackSurface = Enum.SurfaceType.Weld
4552
Part278.BottomSurface = Enum.SurfaceType.Weld
4553
Part278.FrontSurface = Enum.SurfaceType.Weld
4554
Part278.LeftSurface = Enum.SurfaceType.Weld
4555
Part278.RightSurface = Enum.SurfaceType.Weld
4556
Part278.TopSurface = Enum.SurfaceType.Weld
4557
Part278.Color = Color3.new(0.498039, 0.556863, 0.392157)
4558
Part278.Position = Vector3.new(-17.1098671, 6.70034742, 46.4597092)
4559
Part278.Orientation = Vector3.new(0, -180, 0)
4560
Part278.Color = Color3.new(0.498039, 0.556863, 0.392157)
4561
BlockMesh279.Parent = Part278
4562
Part280.Parent = Model0
4563
Part280.Material = Enum.Material.Metal
4564
Part280.BrickColor = BrickColor.new("Grime")
4565
Part280.Rotation = Vector3.new(180, 0, -180)
4566
Part280.CanCollide = false
4567
Part280.FormFactor = Enum.FormFactor.Custom
4568
Part280.Size = Vector3.new(4, 3.60000014, 0.400000006)
4569
Part280.CFrame = CFrame.new(-23.5096321, 6.40070248, 36.0604095, -1, 7.78029607e-06, -3.33969365e-05, 8.37296375e-06, 1, -1.92508596e-05, 4.53305838e-05, -1.08514441e-05, -1)
4570
Part280.BackSurface = Enum.SurfaceType.Weld
4571
Part280.BottomSurface = Enum.SurfaceType.Weld
4572
Part280.FrontSurface = Enum.SurfaceType.Weld
4573
Part280.LeftSurface = Enum.SurfaceType.Weld
4574
Part280.RightSurface = Enum.SurfaceType.Weld
4575
Part280.TopSurface = Enum.SurfaceType.Weld
4576
Part280.Color = Color3.new(0.498039, 0.556863, 0.392157)
4577
Part280.Position = Vector3.new(-23.5096321, 6.40070248, 36.0604095)
4578
Part280.Orientation = Vector3.new(0, -180, 0)
4579
Part280.Color = Color3.new(0.498039, 0.556863, 0.392157)
4580
BlockMesh281.Parent = Part280
4581
Part282.Parent = Model0
4582
Part282.Material = Enum.Material.Metal
4583
Part282.BrickColor = BrickColor.new("Grime")
4584
Part282.Rotation = Vector3.new(-180, 0, -180)
4585
Part282.CanCollide = false
4586
Part282.FormFactor = Enum.FormFactor.Custom
4587
Part282.Size = Vector3.new(1.00000012, 2.20000005, 5.19999981)
4588
Part282.CFrame = CFrame.new(-26.0093632, 6.30065203, 33.6606827, -1, 9.146097e-06, -6.23015076e-05, 9.88777356e-06, 0.999991715, 1.19247252e-05, 7.7335586e-05, 2.23954721e-05, -1.00000143)
4589
Part282.BackSurface = Enum.SurfaceType.Weld
4590
Part282.BottomSurface = Enum.SurfaceType.Weld
4591
Part282.FrontSurface = Enum.SurfaceType.Weld
4592
Part282.LeftSurface = Enum.SurfaceType.Weld
4593
Part282.RightSurface = Enum.SurfaceType.Weld
4594
Part282.TopSurface = Enum.SurfaceType.Weld
4595
Part282.Color = Color3.new(0.498039, 0.556863, 0.392157)
4596
Part282.Position = Vector3.new(-26.0093632, 6.30065203, 33.6606827)
4597
Part282.Orientation = Vector3.new(0, -180, 0)
4598
Part282.Color = Color3.new(0.498039, 0.556863, 0.392157)
4599
BlockMesh283.Parent = Part282
4600
Part284.Parent = Model0
4601
Part284.Material = Enum.Material.Metal
4602
Part284.BrickColor = BrickColor.new("Grime")
4603
Part284.Rotation = Vector3.new(-180, 0, -180)
4604
Part284.FormFactor = Enum.FormFactor.Custom
4605
Part284.Size = Vector3.new(0.400000095, 0.800000072, 5.19999981)
4606
Part284.CFrame = CFrame.new(-26.7099648, 4.40034389, 38.8601379, -1, 6.28535236e-06, -2.60919842e-06, 6.58271165e-06, 1, 1.62551987e-06, 8.60384898e-06, 5.84486224e-06, -1)
4607
Part284.BackSurface = Enum.SurfaceType.Weld
4608
Part284.BottomSurface = Enum.SurfaceType.Weld
4609
Part284.FrontSurface = Enum.SurfaceType.Weld
4610
Part284.LeftSurface = Enum.SurfaceType.Weld
4611
Part284.RightSurface = Enum.SurfaceType.Weld
4612
Part284.TopSurface = Enum.SurfaceType.Weld
4613
Part284.Color = Color3.new(0.498039, 0.556863, 0.392157)
4614
Part284.Position = Vector3.new(-26.7099648, 4.40034389, 38.8601379)
4615
Part284.Orientation = Vector3.new(0, -180, 0)
4616
Part284.Color = Color3.new(0.498039, 0.556863, 0.392157)
4617
BlockMesh285.Parent = Part284
4618
Part286.Parent = Model0
4619
Part286.Material = Enum.Material.Metal
4620
Part286.BrickColor = BrickColor.new("Grime")
4621
Part286.Rotation = Vector3.new(-180, -0.00999999978, -180)
4622
Part286.CanCollide = false
4623
Part286.FormFactor = Enum.FormFactor.Custom
4624
Part286.Size = Vector3.new(1.00000012, 2.20000005, 5.19999981)
4625
Part286.CFrame = CFrame.new(-26.0095215, 6.30111074, 44.0606766, -1, 9.61294518e-06, -0.000103726969, 9.90486296e-06, 1, 5.2497966e-05, 0.000109722117, 5.67162788e-05, -1)
4626
Part286.BackSurface = Enum.SurfaceType.Weld
4627
Part286.BottomSurface = Enum.SurfaceType.Weld
4628
Part286.FrontSurface = Enum.SurfaceType.Weld
4629
Part286.LeftSurface = Enum.SurfaceType.Weld
4630
Part286.RightSurface = Enum.SurfaceType.Weld
4631
Part286.TopSurface = Enum.SurfaceType.Weld
4632
Part286.Color = Color3.new(0.498039, 0.556863, 0.392157)
4633
Part286.Position = Vector3.new(-26.0095215, 6.30111074, 44.0606766)
4634
Part286.Orientation = Vector3.new(0, -179.98999, 0)
4635
Part286.Color = Color3.new(0.498039, 0.556863, 0.392157)
4636
BlockMesh287.Parent = Part286
4637
Part288.Name = "Brick"
4638
Part288.Parent = Model0
4639
Part288.Material = Enum.Material.Metal
4640
Part288.BrickColor = BrickColor.new("Grime")
4641
Part288.Transparency = 1
4642
Part288.Rotation = Vector3.new(-98.1199951, 0, -180)
4643
Part288.CanCollide = false
4644
Part288.FormFactor = Enum.FormFactor.Custom
4645
Part288.Size = Vector3.new(2, 0.200000003, 1.19999993)
4646
Part288.CFrame = CFrame.new(-15.1093197, 9.22394657, 46.3002548, -1, 2.23412426e-05, -2.27283726e-06, 1.46798811e-06, 0.141308457, 0.989965618, 3.3739394e-05, 0.98996681, -0.141300574)
4647
Part288.BackSurface = Enum.SurfaceType.Weld
4648
Part288.BottomSurface = Enum.SurfaceType.Weld
4649
Part288.FrontSurface = Enum.SurfaceType.Weld
4650
Part288.LeftSurface = Enum.SurfaceType.Weld
4651
Part288.RightSurface = Enum.SurfaceType.Weld
4652
Part288.TopSurface = Enum.SurfaceType.Weld
4653
Part288.Color = Color3.new(0.498039, 0.556863, 0.392157)
4654
Part288.Position = Vector3.new(-15.1093197, 9.22394657, 46.3002548)
4655
Part288.Orientation = Vector3.new(-81.8799973, -180, 0)
4656
Part288.Color = Color3.new(0.498039, 0.556863, 0.392157)
4657
BlockMesh289.Parent = Part288
4658
BlockMesh289.Offset = Vector3.new(0, -0.189999998, 0)
4659
Part290.Parent = Model0
4660
Part290.Material = Enum.Material.Metal
4661
Part290.BrickColor = BrickColor.new("Grime")
4662
Part290.Rotation = Vector3.new(180, 0, -180)
4663
Part290.FormFactor = Enum.FormFactor.Custom
4664
Part290.Size = Vector3.new(0.400000095, 1.20000005, 5.19999981)
4665
Part290.CFrame = CFrame.new(-26.709795, 4.60025549, 33.6601105, -1, 6.28825137e-06, -2.67255018e-06, 6.58563977e-06, 1, -9.30688202e-06, 8.66713162e-06, -5.08754056e-06, -1)
4666
Part290.BackSurface = Enum.SurfaceType.Weld
4667
Part290.BottomSurface = Enum.SurfaceType.Weld
4668
Part290.FrontSurface = Enum.SurfaceType.Weld
4669
Part290.LeftSurface = Enum.SurfaceType.Weld
4670
Part290.RightSurface = Enum.SurfaceType.Weld
4671
Part290.TopSurface = Enum.SurfaceType.Weld
4672
Part290.Color = Color3.new(0.498039, 0.556863, 0.392157)
4673
Part290.Position = Vector3.new(-26.709795, 4.60025549, 33.6601105)
4674
Part290.Orientation = Vector3.new(0, -180, 0)
4675
Part290.Color = Color3.new(0.498039, 0.556863, 0.392157)
4676
BlockMesh291.Parent = Part290
4677
Part292.Parent = Model0
4678
Part292.Material = Enum.Material.Metal
4679
Part292.BrickColor = BrickColor.new("Grime")
4680
Part292.Rotation = Vector3.new(180, 0, -180)
4681
Part292.FormFactor = Enum.FormFactor.Custom
4682
Part292.Size = Vector3.new(0.400000095, 1.20000005, 5.19999981)
4683
Part292.CFrame = CFrame.new(-26.7098675, 4.60042572, 44.0601082, -1, 6.28825137e-06, -2.67255018e-06, 6.58563977e-06, 1, -9.30688202e-06, 8.66713162e-06, -5.08754056e-06, -1)
4684
Part292.BackSurface = Enum.SurfaceType.Weld
4685
Part292.BottomSurface = Enum.SurfaceType.Weld
4686
Part292.FrontSurface = Enum.SurfaceType.Weld
4687
Part292.LeftSurface = Enum.SurfaceType.Weld
4688
Part292.RightSurface = Enum.SurfaceType.Weld
4689
Part292.TopSurface = Enum.SurfaceType.Weld
4690
Part292.Color = Color3.new(0.498039, 0.556863, 0.392157)
4691
Part292.Position = Vector3.new(-26.7098675, 4.60042572, 44.0601082)
4692
Part292.Orientation = Vector3.new(0, -180, 0)
4693
Part292.Color = Color3.new(0.498039, 0.556863, 0.392157)
4694
BlockMesh293.Parent = Part292
4695
WedgePart294.Parent = Model0
4696
WedgePart294.Material = Enum.Material.Metal
4697
WedgePart294.BrickColor = BrickColor.new("Grime")
4698
WedgePart294.Rotation = Vector3.new(90, 0, -180)
4699
WedgePart294.FormFactor = Enum.FormFactor.Custom
4700
WedgePart294.Size = Vector3.new(22, 1.80000019, 0.800000131)
4701
WedgePart294.CFrame = CFrame.new(-5.71021032, 8.60006523, 39.9598465, -1, 1.67611997e-05, -5.35971367e-06, 5.73934039e-06, 2.4999847e-06, -0.99999088, -9.10116614e-06, -1.00000012, -7.8765861e-06)
4702
WedgePart294.BackSurface = Enum.SurfaceType.Weld
4703
WedgePart294.BottomSurface = Enum.SurfaceType.Weld
4704
WedgePart294.Color = Color3.new(0.498039, 0.556863, 0.392157)
4705
WedgePart294.Position = Vector3.new(-5.71021032, 8.60006523, 39.9598465)
4706
WedgePart294.Orientation = Vector3.new(89.7599945, -145.770004, 66.4599991)
4707
WedgePart294.Color = Color3.new(0.498039, 0.556863, 0.392157)
4708
SpecialMesh295.Parent = WedgePart294
4709
SpecialMesh295.MeshType = Enum.MeshType.Wedge
4710
WedgePart296.Parent = Model0
4711
WedgePart296.Material = Enum.Material.Metal
4712
WedgePart296.BrickColor = BrickColor.new("Grime")
4713
WedgePart296.Rotation = Vector3.new(90, 0, 0)
4714
WedgePart296.CanCollide = false
4715
WedgePart296.FormFactor = Enum.FormFactor.Custom
4716
WedgePart296.Size = Vector3.new(11.8000002, 0.400000006, 2.79999995)
4717
WedgePart296.CFrame = CFrame.new(-10.8102522, 8.80012226, 46.259758, 1, 6.12342228e-06, -6.47552679e-06, -7.03663818e-06, 1.60052878e-05, -1, -1.74245251e-05, 1, 8.05025593e-06)
4718
WedgePart296.BackSurface = Enum.SurfaceType.Weld
4719
WedgePart296.BottomSurface = Enum.SurfaceType.Weld
4720
WedgePart296.Color = Color3.new(0.498039, 0.556863, 0.392157)
4721
WedgePart296.Position = Vector3.new(-10.8102522, 8.80012226, 46.259758)
4722
WedgePart296.Orientation = Vector3.new(90, 0, 0)
4723
WedgePart296.Color = Color3.new(0.498039, 0.556863, 0.392157)
4724
SpecialMesh297.Parent = WedgePart296
4725
SpecialMesh297.MeshType = Enum.MeshType.Wedge
4726
WedgePart298.Parent = Model0
4727
WedgePart298.Material = Enum.Material.Metal
4728
WedgePart298.BrickColor = BrickColor.new("Grime")
4729
WedgePart298.Rotation = Vector3.new(90, 0, 180)
4730
WedgePart298.FormFactor = Enum.FormFactor.Custom
4731
WedgePart298.Size = Vector3.new(10.1999998, 0.800000131, 1.00000012)
4732
WedgePart298.CFrame = CFrame.new(0.190846562, 10.6997681, 41.8599472, -1, -1.71460924e-05, -7.07122672e-06, 7.44470481e-06, 3.71252099e-05, -0.99999088, 2.46954078e-05, -1.00000012, -4.24238897e-05)
4733
WedgePart298.BackSurface = Enum.SurfaceType.Weld
4734
WedgePart298.BottomSurface = Enum.SurfaceType.Weld
4735
WedgePart298.Color = Color3.new(0.498039, 0.556863, 0.392157)
4736
WedgePart298.Position = Vector3.new(0.190846562, 10.6997681, 41.8599472)
4737
WedgePart298.Orientation = Vector3.new(89.7599945, -170.539993, 11.3400002)
4738
WedgePart298.Color = Color3.new(0.498039, 0.556863, 0.392157)
4739
SpecialMesh299.Parent = WedgePart298
4740
SpecialMesh299.MeshType = Enum.MeshType.Wedge
4741
WedgePart300.Parent = Model0
4742
WedgePart300.Material = Enum.Material.Metal
4743
WedgePart300.BrickColor = BrickColor.new("Grime")
4744
WedgePart300.Rotation = Vector3.new(90, 0, 0)
4745
WedgePart300.FormFactor = Enum.FormFactor.Custom
4746
WedgePart300.Size = Vector3.new(22, 1.80000019, 0.800000131)
4747
WedgePart300.CFrame = CFrame.new(-5.70992708, 8.6002655, 37.7604523, 1, -1.69808973e-05, -5.3198155e-06, -5.6994445e-06, -2.58807654e-06, -0.99999088, 9.32086368e-06, 1.00000012, -7.96467884e-06)
4748
WedgePart300.BackSurface = Enum.SurfaceType.Weld
4749
WedgePart300.BottomSurface = Enum.SurfaceType.Weld
4750
WedgePart300.Color = Color3.new(0.498039, 0.556863, 0.392157)
4751
WedgePart300.Position = Vector3.new(-5.70992708, 8.6002655, 37.7604523)
4752
WedgePart300.Orientation = Vector3.new(89.7599945, -146.259995, -114.419998)
4753
WedgePart300.Color = Color3.new(0.498039, 0.556863, 0.392157)
4754
SpecialMesh301.Parent = WedgePart300
4755
SpecialMesh301.MeshType = Enum.MeshType.Wedge
4756
VehicleSeat302.Parent = Model0
4757
VehicleSeat302.Material = Enum.Material.Metal
4758
VehicleSeat302.BrickColor = BrickColor.new("Grime")
4759
VehicleSeat302.Rotation = Vector3.new(0, 90, 0)
4760
VehicleSeat302.Size = Vector3.new(2, 0.400000006, 2)
4761
VehicleSeat302.CFrame = CFrame.new(-23.1098289, 4.8003788, 44.0599022, 1.1589701e-05, 5.60266608e-06, 1, -1.12916023e-05, 1, -6.19946923e-06, -1, -2.82160863e-06, -4.43901627e-07)
4762
VehicleSeat302.TopSurface = Enum.SurfaceType.Weld
4763
VehicleSeat302.HeadsUpDisplay = false
4764
VehicleSeat302.MaxSpeed = 35
4765
VehicleSeat302.Torque = 150
4766
VehicleSeat302.Color = Color3.new(0.498039, 0.556863, 0.392157)
4767
VehicleSeat302.Position = Vector3.new(-23.1098289, 4.8003788, 44.0599022)
4768
VehicleSeat302.Orientation = Vector3.new(0, 90, 0)
4769
VehicleSeat302.Color = Color3.new(0.498039, 0.556863, 0.392157)
4770
WedgePart303.Parent = Model0
4771
WedgePart303.Material = Enum.Material.Metal
4772
WedgePart303.BrickColor = BrickColor.new("Grime")
4773
WedgePart303.Rotation = Vector3.new(90, 0, -90)
4774
WedgePart303.FormFactor = Enum.FormFactor.Custom
4775
WedgePart303.Size = Vector3.new(5.19999933, 1, 1.20000005)
4776
WedgePart303.CFrame = CFrame.new(-26.0089417, 4.60056925, 33.6610794, 1.45538397e-05, 1, -7.47078047e-06, -2.20777802e-05, -7.76782235e-06, -1, -1, 8.55936014e-06, 1.78583141e-05)
4777
WedgePart303.BackSurface = Enum.SurfaceType.Weld
4778
WedgePart303.BottomSurface = Enum.SurfaceType.Weld
4779
WedgePart303.Color = Color3.new(0.498039, 0.556863, 0.392157)
4780
WedgePart303.Position = Vector3.new(-26.0089417, 4.60056925, 33.6610794)
4781
WedgePart303.Orientation = Vector3.new(90, 90, 0)
4782
WedgePart303.Color = Color3.new(0.498039, 0.556863, 0.392157)
4783
SpecialMesh304.Parent = WedgePart303
4784
SpecialMesh304.MeshType = Enum.MeshType.Wedge
4785
WedgePart305.Parent = Model0
4786
WedgePart305.Material = Enum.Material.Metal
4787
WedgePart305.BrickColor = BrickColor.new("Grime")
4788
WedgePart305.Rotation = Vector3.new(90, 0, -180)
4789
WedgePart305.FormFactor = Enum.FormFactor.Custom
4790
WedgePart305.Size = Vector3.new(22, 0.600000143, 1.20000017)
4791
WedgePart305.CFrame = CFrame.new(-5.71064138, 9.599576, 41.1605301, -1, 1.17034815e-05, -5.56241639e-06, 5.84649752e-06, -1.99384122e-05, -1, -5.97530743e-06, -1, 1.59061947e-05)
4792
WedgePart305.BackSurface = Enum.SurfaceType.Weld
4793
WedgePart305.BottomSurface = Enum.SurfaceType.Weld
4794
WedgePart305.Color = Color3.new(0.498039, 0.556863, 0.392157)
4795
WedgePart305.Position = Vector3.new(-5.71064138, 9.599576, 41.1605301)
4796
WedgePart305.Orientation = Vector3.new(90, 180, 0)
4797
WedgePart305.Color = Color3.new(0.498039, 0.556863, 0.392157)
4798
SpecialMesh306.Parent = WedgePart305
4799
SpecialMesh306.MeshType = Enum.MeshType.Wedge
4800
WedgePart307.Parent = Model0
4801
WedgePart307.Material = Enum.Material.Metal
4802
WedgePart307.BrickColor = BrickColor.new("Grime")
4803
WedgePart307.Rotation = Vector3.new(90, 0, 0)
4804
WedgePart307.FormFactor = Enum.FormFactor.Custom
4805
WedgePart307.Size = Vector3.new(22, 0.600000143, 1.20000017)
4806
WedgePart307.CFrame = CFrame.new(-5.70935583, 9.60018349, 36.559742, 1, 5.02686817e-06, -6.43432486e-06, -6.48410469e-06, 8.01372698e-06, -1, -6.03618901e-06, 1, 7.30400461e-06)
4807
WedgePart307.BackSurface = Enum.SurfaceType.Weld
4808
WedgePart307.BottomSurface = Enum.SurfaceType.Weld
4809
WedgePart307.Color = Color3.new(0.498039, 0.556863, 0.392157)
4810
WedgePart307.Position = Vector3.new(-5.70935583, 9.60018349, 36.559742)
4811
WedgePart307.Orientation = Vector3.new(90, 0, 0)
4812
WedgePart307.Color = Color3.new(0.498039, 0.556863, 0.392157)
4813
SpecialMesh308.Parent = WedgePart307
4814
SpecialMesh308.MeshType = Enum.MeshType.Wedge
4815
WedgePart309.Parent = Model0
4816
WedgePart309.Material = Enum.Material.Metal
4817
WedgePart309.BrickColor = BrickColor.new("Grime")
4818
WedgePart309.Rotation = Vector3.new(90, 0, 0)
4819
WedgePart309.FormFactor = Enum.FormFactor.Custom
4820
WedgePart309.Size = Vector3.new(10.1999998, 0.800000131, 1.00000012)
4821
WedgePart309.CFrame = CFrame.new(0.190338731, 10.7001028, 35.8596039, 1, 1.73247045e-05, -6.91621926e-06, -7.28482382e-06, -3.32206264e-06, -0.99999088, -2.47628068e-05, 1.00000012, -8.54242353e-06)
4822
WedgePart309.BackSurface = Enum.SurfaceType.Weld
4823
WedgePart309.BottomSurface = Enum.SurfaceType.Weld
4824
WedgePart309.Color = Color3.new(0.498039, 0.556863, 0.392157)
4825
WedgePart309.Position = Vector3.new(0.190338731, 10.7001028, 35.8596039)
4826
WedgePart309.Orientation = Vector3.new(89.7599945, -141.009995, -114.509995)
4827
WedgePart309.Color = Color3.new(0.498039, 0.556863, 0.392157)
4828
SpecialMesh310.Parent = WedgePart309
4829
SpecialMesh310.MeshType = Enum.MeshType.Wedge
4830
WedgePart311.Parent = Model0
4831
WedgePart311.Material = Enum.Material.Metal
4832
WedgePart311.BrickColor = BrickColor.new("Grime")
4833
WedgePart311.Rotation = Vector3.new(-90, 0, 90)
4834
WedgePart311.FormFactor = Enum.FormFactor.Custom
4835
WedgePart311.Size = Vector3.new(5.19999981, 1.39999998, 1.19999993)
4836
WedgePart311.CFrame = CFrame.new(-26.2100182, 3.40037513, 33.6596451, -3.40397423e-06, -1, 6.33939817e-06, -9.03184537e-06, 6.52432982e-06, 1, -1, 7.16618433e-06, -6.38741267e-06)
4837
WedgePart311.BackSurface = Enum.SurfaceType.Weld
4838
WedgePart311.BottomSurface = Enum.SurfaceType.Weld
4839
WedgePart311.Color = Color3.new(0.498039, 0.556863, 0.392157)
4840
WedgePart311.Position = Vector3.new(-26.2100182, 3.40037513, 33.6596451)
4841
WedgePart311.Orientation = Vector3.new(-90, 90, 0)
4842
WedgePart311.Color = Color3.new(0.498039, 0.556863, 0.392157)
4843
SpecialMesh312.Parent = WedgePart311
4844
SpecialMesh312.MeshType = Enum.MeshType.Wedge
4845
WedgePart313.Parent = Model0
4846
WedgePart313.Material = Enum.Material.Metal
4847
WedgePart313.BrickColor = BrickColor.new("Grime")
4848
WedgePart313.Rotation = Vector3.new(90, 0, 0)
4849
WedgePart313.FormFactor = Enum.FormFactor.Custom
4850
WedgePart313.Size = Vector3.new(10.1999998, 1.60000014, 1.00000012)
4851
WedgePart313.CFrame = CFrame.new(0.190321803, 10.6997337, 45.8596458, 1, 1.71271968e-05, -7.04050763e-06, -7.41398344e-06, -3.73043003e-05, -0.99999088, -2.46765048e-05, 1.00000012, -4.26029837e-05)
4852
WedgePart313.BackSurface = Enum.SurfaceType.Weld
4853
WedgePart313.BottomSurface = Enum.SurfaceType.Weld
4854
WedgePart313.Color = Color3.new(0.498039, 0.556863, 0.392157)
4855
WedgePart313.Position = Vector3.new(0.190321803, 10.6997337, 45.8596458)
4856
WedgePart313.Orientation = Vector3.new(89.7599945, -170.619995, -168.759995)
4857
WedgePart313.Color = Color3.new(0.498039, 0.556863, 0.392157)
4858
SpecialMesh314.Parent = WedgePart313
4859
SpecialMesh314.MeshType = Enum.MeshType.Wedge
4860
WedgePart315.Parent = Model0
4861
WedgePart315.Material = Enum.Material.Metal
4862
WedgePart315.BrickColor = BrickColor.new("Grime")
4863
WedgePart315.Rotation = Vector3.new(-90, 0, 90)
4864
WedgePart315.FormFactor = Enum.FormFactor.Custom
4865
WedgePart315.Size = Vector3.new(5.19999981, 1.39999998, 1.19999993)
4866
WedgePart315.CFrame = CFrame.new(-26.2097702, 3.40055323, 44.0597954, 3.44685832e-05, -1, 5.8018918e-06, -6.04491834e-06, 5.80168262e-06, 1, -1, -3.44686086e-05, -6.04471643e-06)
4867
WedgePart315.BackSurface = Enum.SurfaceType.Weld
4868
WedgePart315.BottomSurface = Enum.SurfaceType.Weld
4869
WedgePart315.Color = Color3.new(0.498039, 0.556863, 0.392157)
4870
WedgePart315.Position = Vector3.new(-26.2097702, 3.40055323, 44.0597954)
4871
WedgePart315.Orientation = Vector3.new(-90, 90, 0)
4872
WedgePart315.Color = Color3.new(0.498039, 0.556863, 0.392157)
4873
SpecialMesh316.Parent = WedgePart315
4874
SpecialMesh316.MeshType = Enum.MeshType.Wedge
4875
WedgePart317.Parent = Model0
4876
WedgePart317.Material = Enum.Material.Metal
4877
WedgePart317.BrickColor = BrickColor.new("Grime")
4878
WedgePart317.Rotation = Vector3.new(180, 90, 0)
4879
WedgePart317.FormFactor = Enum.FormFactor.Custom
4880
WedgePart317.Size = Vector3.new(5.19999933, 1.20000005, 1)
4881
WedgePart317.CFrame = CFrame.new(-26.0099239, 4.60073233, 33.6602364, -1.36232084e-05, -5.66421386e-06, 1, 2.05360793e-05, -1, -5.96129712e-06, 1, 1.63166333e-05, 7.62868513e-06)
4882
WedgePart317.BottomSurface = Enum.SurfaceType.Weld
4883
WedgePart317.Color = Color3.new(0.498039, 0.556863, 0.392157)
4884
WedgePart317.Position = Vector3.new(-26.0099239, 4.60073233, 33.6602364)
4885
WedgePart317.Orientation = Vector3.new(0, 90, 180)
4886
WedgePart317.Color = Color3.new(0.498039, 0.556863, 0.392157)
4887
SpecialMesh318.Parent = WedgePart317
4888
SpecialMesh318.MeshType = Enum.MeshType.Wedge
4889
WedgePart319.Parent = Model0
4890
WedgePart319.Material = Enum.Material.Metal
4891
WedgePart319.BrickColor = BrickColor.new("Grime")
4892
WedgePart319.Rotation = Vector3.new(90, 0, -0.00999999978)
4893
WedgePart319.CanCollide = false
4894
WedgePart319.FormFactor = Enum.FormFactor.Custom
4895
WedgePart319.Size = Vector3.new(0.400000006, 0.400000006, 3)
4896
WedgePart319.CFrame = CFrame.new(-22.7094574, 8.90267277, 46.4604378, 1, 0.000103821971, -1.11975369e-05, -1.19384558e-05, -2.19714639e-06, -1, -0.000118742879, 1, -1.27009662e-05)
4897
WedgePart319.BackSurface = Enum.SurfaceType.Weld
4898
WedgePart319.BottomSurface = Enum.SurfaceType.Weld
4899
WedgePart319.Color = Color3.new(0.498039, 0.556863, 0.392157)
4900
WedgePart319.Position = Vector3.new(-22.7094574, 8.90267277, 46.4604378)
4901
WedgePart319.Orientation = Vector3.new(90, 0.00999999978, 0)
4902
WedgePart319.Color = Color3.new(0.498039, 0.556863, 0.392157)
4903
SpecialMesh320.Parent = WedgePart319
4904
SpecialMesh320.MeshType = Enum.MeshType.Wedge
4905
WedgePart321.Parent = Model0
4906
WedgePart321.Material = Enum.Material.Metal
4907
WedgePart321.BrickColor = BrickColor.new("Grime")
4908
WedgePart321.Rotation = Vector3.new(90, 0, 0)
4909
WedgePart321.CanCollide = false
4910
WedgePart321.FormFactor = Enum.FormFactor.Custom
4911
WedgePart321.Size = Vector3.new(0.400000006, 1.20000005, 0.999999821)
4912
WedgePart321.CFrame = CFrame.new(-25.7095184, 7.90136623, 42.4608383, 1, 7.70654951e-05, -9.90780518e-06, -1.02004242e-05, -6.15640529e-05, -1, -8.3060746e-05, 1, -6.57826022e-05)
4913
WedgePart321.BackSurface = Enum.SurfaceType.Weld
4914
WedgePart321.BottomSurface = Enum.SurfaceType.Weld
4915
WedgePart321.Color = Color3.new(0.498039, 0.556863, 0.392157)
4916
WedgePart321.Position = Vector3.new(-25.7095184, 7.90136623, 42.4608383)
4917
WedgePart321.Orientation = Vector3.new(90, 0, 0)
4918
WedgePart321.Color = Color3.new(0.498039, 0.556863, 0.392157)
4919
SpecialMesh322.Parent = WedgePart321
4920
SpecialMesh322.MeshType = Enum.MeshType.Wedge
4921
WedgePart323.Parent = Model0
4922
WedgePart323.Material = Enum.Material.Metal
4923
WedgePart323.BrickColor = BrickColor.new("Grime")
4924
WedgePart323.Rotation = Vector3.new(90, 0, -90)
4925
WedgePart323.FormFactor = Enum.FormFactor.Custom
4926
WedgePart323.Size = Vector3.new(5.19999933, 1, 1.20000005)
4927
WedgePart323.CFrame = CFrame.new(-26.0092163, 4.60065508, 44.0591469, 1.43750112e-05, 1, -7.43051987e-06, -2.22713134e-05, -7.72756266e-06, -1, -1, 8.38053529e-06, 1.80518491e-05)
4928
WedgePart323.BackSurface = Enum.SurfaceType.Weld
4929
WedgePart323.BottomSurface = Enum.SurfaceType.Weld
4930
WedgePart323.Color = Color3.new(0.498039, 0.556863, 0.392157)
4931
WedgePart323.Position = Vector3.new(-26.0092163, 4.60065508, 44.0591469)
4932
WedgePart323.Orientation = Vector3.new(90, 90, 0)
4933
WedgePart323.Color = Color3.new(0.498039, 0.556863, 0.392157)
4934
SpecialMesh324.Parent = WedgePart323
4935
SpecialMesh324.MeshType = Enum.MeshType.Wedge
4936
WedgePart325.Parent = Model0
4937
WedgePart325.Material = Enum.Material.Metal
4938
WedgePart325.BrickColor = BrickColor.new("Grime")
4939
WedgePart325.Rotation = Vector3.new(-90, 0, 0)
4940
WedgePart325.CanCollide = false
4941
WedgePart325.FormFactor = Enum.FormFactor.Custom
4942
WedgePart325.Size = Vector3.new(0.200000003, 0.200000003, 2.60000014)
4943
WedgePart325.CFrame = CFrame.new(-16.8097363, 8.70052814, 46.1599655, 1, -2.12305386e-05, 7.18997535e-06, -8.38811684e-06, -4.9342907e-06, 1, -4.53438988e-05, -1, 1.20436125e-05)
4944
WedgePart325.BackSurface = Enum.SurfaceType.Weld
4945
WedgePart325.BottomSurface = Enum.SurfaceType.Weld
4946
WedgePart325.Color = Color3.new(0.498039, 0.556863, 0.392157)
4947
WedgePart325.Position = Vector3.new(-16.8097363, 8.70052814, 46.1599655)
4948
WedgePart325.Orientation = Vector3.new(-90, 0, 0)
4949
WedgePart325.Color = Color3.new(0.498039, 0.556863, 0.392157)
4950
SpecialMesh326.Parent = WedgePart325
4951
SpecialMesh326.MeshType = Enum.MeshType.Wedge
4952
WedgePart327.Parent = Model0
4953
WedgePart327.Material = Enum.Material.Metal
4954
WedgePart327.BrickColor = BrickColor.new("Grime")
4955
WedgePart327.Rotation = Vector3.new(-90, 0, 0)
4956
WedgePart327.CanCollide = false
4957
WedgePart327.FormFactor = Enum.FormFactor.Custom
4958
WedgePart327.Size = Vector3.new(0.200000003, 0.200000003, 2.60000014)
4959
WedgePart327.CFrame = CFrame.new(-19.6100292, 8.70045471, 46.1600151, 1, -2.11709685e-05, 7.23711082e-06, -8.43528869e-06, -6.71051566e-06, 1, -4.52843196e-05, -1, 1.02673966e-05)
4960
WedgePart327.BackSurface = Enum.SurfaceType.Weld
4961
WedgePart327.BottomSurface = Enum.SurfaceType.Weld
4962
WedgePart327.Color = Color3.new(0.498039, 0.556863, 0.392157)
4963
WedgePart327.Position = Vector3.new(-19.6100292, 8.70045471, 46.1600151)
4964
WedgePart327.Orientation = Vector3.new(-90, 0, 0)
4965
WedgePart327.Color = Color3.new(0.498039, 0.556863, 0.392157)
4966
SpecialMesh328.Parent = WedgePart327
4967
SpecialMesh328.MeshType = Enum.MeshType.Wedge
4968
WedgePart329.Parent = Model0
4969
WedgePart329.Material = Enum.Material.Metal
4970
WedgePart329.BrickColor = BrickColor.new("Grime")
4971
WedgePart329.Rotation = Vector3.new(90, 0, -0.00999999978)
4972
WedgePart329.CanCollide = false
4973
WedgePart329.FormFactor = Enum.FormFactor.Custom
4974
WedgePart329.Size = Vector3.new(0.200000003, 0.400000006, 3)
4975
WedgePart329.CFrame = CFrame.new(-16.8093224, 8.90175629, 46.4594421, 1, 9.91064226e-05, -1.10202109e-05, -1.22203146e-05, 2.08557285e-05, -1, -0.000123219652, 1, 3.87895125e-06)
4976
WedgePart329.BackSurface = Enum.SurfaceType.Weld
4977
WedgePart329.BottomSurface = Enum.SurfaceType.Weld
4978
WedgePart329.Color = Color3.new(0.498039, 0.556863, 0.392157)
4979
WedgePart329.Position = Vector3.new(-16.8093224, 8.90175629, 46.4594421)
4980
WedgePart329.Orientation = Vector3.new(90, 0.00999999978, 0)
4981
WedgePart329.Color = Color3.new(0.498039, 0.556863, 0.392157)
4982
SpecialMesh330.Parent = WedgePart329
4983
SpecialMesh330.MeshType = Enum.MeshType.Wedge
4984
WedgePart331.Parent = Model0
4985
WedgePart331.Material = Enum.Material.Metal
4986
WedgePart331.BrickColor = BrickColor.new("Grime")
4987
WedgePart331.Rotation = Vector3.new(180, -90, 0)
4988
WedgePart331.FormFactor = Enum.FormFactor.Custom
4989
WedgePart331.Size = Vector3.new(5.19999886, 2, 1.79999995)
4990
WedgePart331.CFrame = CFrame.new(-16.609787, 5.0004549, 33.6600304, -4.89594822e-06, -6.62594812e-06, -1, -8.07483866e-06, -0.999996543, 6.68015446e-06, -1, 7.30284228e-06, 5.9940694e-06)
4991
WedgePart331.BottomSurface = Enum.SurfaceType.Smooth
4992
WedgePart331.Color = Color3.new(0.498039, 0.556863, 0.392157)
4993
WedgePart331.Position = Vector3.new(-16.609787, 5.0004549, 33.6600304)
4994
WedgePart331.Orientation = Vector3.new(0, -90, -180)
4995
WedgePart331.Color = Color3.new(0.498039, 0.556863, 0.392157)
4996
SpecialMesh332.Parent = WedgePart331
4997
SpecialMesh332.MeshType = Enum.MeshType.Wedge
4998
WedgePart333.Parent = Model0
4999
WedgePart333.Material = Enum.Material.Metal
5000
WedgePart333.BrickColor = BrickColor.new("Grime")
5001
WedgePart333.Rotation = Vector3.new(180, 90, 0)
5002
WedgePart333.FormFactor = Enum.FormFactor.Custom
5003
WedgePart333.Size = Vector3.new(5.19999933, 1.20000005, 1)
5004
WedgePart333.CFrame = CFrame.new(-26.00951, 4.60169315, 44.0594978, -7.2284929e-06, -6.09822428e-06, 1, 1.73822391e-05, -1, -6.69012343e-06, 1, 8.98247345e-06, -4.70518717e-06)
5005
WedgePart333.BottomSurface = Enum.SurfaceType.Weld
5006
WedgePart333.Color = Color3.new(0.498039, 0.556863, 0.392157)
5007
WedgePart333.Position = Vector3.new(-26.00951, 4.60169315, 44.0594978)
5008
WedgePart333.Orientation = Vector3.new(0, 90, 180)
5009
WedgePart333.Color = Color3.new(0.498039, 0.556863, 0.392157)
5010
SpecialMesh334.Parent = WedgePart333
5011
SpecialMesh334.MeshType = Enum.MeshType.Wedge
5012
WedgePart335.Parent = Model0
5013
WedgePart335.Material = Enum.Material.Metal
5014
WedgePart335.BrickColor = BrickColor.new("Grime")
5015
WedgePart335.Rotation = Vector3.new(-90, 0, 0)
5016
WedgePart335.CanCollide = false
5017
WedgePart335.FormFactor = Enum.FormFactor.Custom
5018
WedgePart335.Size = Vector3.new(0.400000006, 0.200000003, 2.60000014)
5019
WedgePart335.CFrame = CFrame.new(-22.7096386, 8.70049095, 46.1598549, 1, 1.37711768e-05, 5.43959368e-06, -6.180333e-06, -2.95906248e-05, 1, -1.14948455e-06, -1, -1.90853934e-05)
5020
WedgePart335.BackSurface = Enum.SurfaceType.Weld
5021
WedgePart335.BottomSurface = Enum.SurfaceType.Weld
5022
WedgePart335.Color = Color3.new(0.498039, 0.556863, 0.392157)
5023
WedgePart335.Position = Vector3.new(-22.7096386, 8.70049095, 46.1598549)
5024
WedgePart335.Orientation = Vector3.new(-90, 0, 0)
5025
WedgePart335.Color = Color3.new(0.498039, 0.556863, 0.392157)
5026
SpecialMesh336.Parent = WedgePart335
5027
SpecialMesh336.MeshType = Enum.MeshType.Wedge
5028
WedgePart337.Parent = Model0
5029
WedgePart337.Material = Enum.Material.Metal
5030
WedgePart337.BrickColor = BrickColor.new("Grime")
5031
WedgePart337.Rotation = Vector3.new(90, 0, -0.00999999978)
5032
WedgePart337.CanCollide = false
5033
WedgePart337.FormFactor = Enum.FormFactor.Custom
5034
WedgePart337.Size = Vector3.new(0.200000003, 0.400000006, 3)
5035
WedgePart337.CFrame = CFrame.new(-19.6093693, 8.90126038, 46.4600639, 1, 9.91061097e-05, -1.10227156e-05, -1.22186893e-05, -2.08033562e-05, -1, -0.000123219797, 1, -3.77801443e-05)
5036
WedgePart337.BackSurface = Enum.SurfaceType.Weld
5037
WedgePart337.BottomSurface = Enum.SurfaceType.Weld
5038
WedgePart337.Color = Color3.new(0.498039, 0.556863, 0.392157)
5039
WedgePart337.Position = Vector3.new(-19.6093693, 8.90126038, 46.4600639)
5040
WedgePart337.Orientation = Vector3.new(90, 0.00999999978, 0)
5041
WedgePart337.Color = Color3.new(0.498039, 0.556863, 0.392157)
5042
SpecialMesh338.Parent = WedgePart337
5043
SpecialMesh338.MeshType = Enum.MeshType.Wedge
5044
Part339.Parent = Model0
5045
Part339.Material = Enum.Material.Metal
5046
Part339.BrickColor = BrickColor.new("Grime")
5047
Part339.Rotation = Vector3.new(-180, 0, -180)
5048
Part339.FormFactor = Enum.FormFactor.Custom
5049
Part339.Size = Vector3.new(5.59999943, 0.799999952, 1.80000031)
5050
Part339.CFrame = CFrame.new(14.889924, 8.40013981, 32.9597015, -1, 8.84130441e-06, -5.35144209e-05, 8.93794913e-06, 1, 8.40500434e-06, 5.54899634e-05, 9.79304605e-06, -1)
5051
Part339.BackSurface = Enum.SurfaceType.Weld
5052
Part339.BottomSurface = Enum.SurfaceType.Weld
5053
Part339.FrontSurface = Enum.SurfaceType.Weld
5054
Part339.LeftSurface = Enum.SurfaceType.Weld
5055
Part339.RightSurface = Enum.SurfaceType.Weld
5056
Part339.TopSurface = Enum.SurfaceType.Weld
5057
Part339.Color = Color3.new(0.498039, 0.556863, 0.392157)
5058
Part339.Position = Vector3.new(14.889924, 8.40013981, 32.9597015)
5059
Part339.Orientation = Vector3.new(0, -180, 0)
5060
Part339.Color = Color3.new(0.498039, 0.556863, 0.392157)
5061
BlockMesh340.Parent = Part339
5062
Part341.Parent = Model0
5063
Part341.Material = Enum.Material.Metal
5064
Part341.BrickColor = BrickColor.new("Grime")
5065
Part341.Rotation = Vector3.new(-180, 0, -180)
5066
Part341.CanCollide = false
5067
Part341.FormFactor = Enum.FormFactor.Custom
5068
Part341.Size = Vector3.new(0.399999231, 0.799999893, 5.19999981)
5069
Part341.CFrame = CFrame.new(-4.109828, 4.80027628, 44.0599098, -1, 6.43371504e-06, -5.15642932e-06, 6.81323763e-06, 0.99999088, 1.01975102e-05, 1.28165175e-05, 1.5574049e-05, -1.00000012)
5070
Part341.BackSurface = Enum.SurfaceType.Weld
5071
Part341.BottomSurface = Enum.SurfaceType.Weld
5072
Part341.FrontSurface = Enum.SurfaceType.Weld
5073
Part341.LeftSurface = Enum.SurfaceType.Weld
5074
Part341.RightSurface = Enum.SurfaceType.Weld
5075
Part341.TopSurface = Enum.SurfaceType.Weld
5076
Part341.Color = Color3.new(0.498039, 0.556863, 0.392157)
5077
Part341.Position = Vector3.new(-4.109828, 4.80027628, 44.0599098)
5078
Part341.Orientation = Vector3.new(0, -180, 0)
5079
Part341.Color = Color3.new(0.498039, 0.556863, 0.392157)
5080
BlockMesh342.Parent = Part341
5081
Part343.Parent = Model0
5082
Part343.Material = Enum.Material.Metal
5083
Part343.BrickColor = BrickColor.new("Grime")
5084
Part343.Rotation = Vector3.new(180, 0, -180)
5085
Part343.CanCollide = false
5086
Part343.FormFactor = Enum.FormFactor.Custom
5087
Part343.Size = Vector3.new(11.8000002, 0.799999952, 5.20000029)
5088
Part343.CFrame = CFrame.new(11.190012, 7.60010147, 33.6598129, -1, 6.97483983e-06, -1.60322234e-05, 7.09157848e-06, 1, -2.91726792e-07, 1.8407216e-05, 1.37750521e-06, -1)
5089
Part343.BackSurface = Enum.SurfaceType.Weld
5090
Part343.BottomSurface = Enum.SurfaceType.Weld
5091
Part343.FrontSurface = Enum.SurfaceType.Weld
5092
Part343.LeftSurface = Enum.SurfaceType.Weld
5093
Part343.RightSurface = Enum.SurfaceType.Weld
5094
Part343.TopSurface = Enum.SurfaceType.Weld
5095
Part343.Color = Color3.new(0.498039, 0.556863, 0.392157)
5096
Part343.Position = Vector3.new(11.190012, 7.60010147, 33.6598129)
5097
Part343.Orientation = Vector3.new(0, -180, 0)
5098
Part343.Color = Color3.new(0.498039, 0.556863, 0.392157)
5099
BlockMesh344.Parent = Part343
5100
Part345.Parent = Model0
5101
Part345.Material = Enum.Material.Metal
5102
Part345.BrickColor = BrickColor.new("Grime")
5103
Part345.Rotation = Vector3.new(180, 0, -180)
5104
Part345.CanCollide = false
5105
Part345.FormFactor = Enum.FormFactor.Custom
5106
Part345.Size = Vector3.new(1.79999959, 0.799999952, 5.20000029)
5107
Part345.CFrame = CFrame.new(16.189827, 7.60006905, 38.8596954, -1, 6.02205955e-06, 3.12409975e-06, 6.11911082e-06, 1, -1.37809102e-05, -1.14872091e-06, -1.23923655e-05, -1)
5108
Part345.BackSurface = Enum.SurfaceType.Weld
5109
Part345.BottomSurface = Enum.SurfaceType.Weld
5110
Part345.FrontSurface = Enum.SurfaceType.Weld
5111
Part345.LeftSurface = Enum.SurfaceType.Weld
5112
Part345.RightSurface = Enum.SurfaceType.Weld
5113
Part345.TopSurface = Enum.SurfaceType.Weld
5114
Part345.Color = Color3.new(0.498039, 0.556863, 0.392157)
5115
Part345.Position = Vector3.new(16.189827, 7.60006905, 38.8596954)
5116
Part345.Orientation = Vector3.new(0, 180, 0)
5117
Part345.Color = Color3.new(0.498039, 0.556863, 0.392157)
5118
BlockMesh346.Parent = Part345
5119
Part347.Parent = Model0
5120
Part347.Material = Enum.Material.Metal
5121
Part347.BrickColor = BrickColor.new("Grime")
5122
Part347.Rotation = Vector3.new(180, 0, -180)
5123
Part347.FormFactor = Enum.FormFactor.Custom
5124
Part347.Size = Vector3.new(13.1999998, 1.59999967, 3.60000038)
5125
Part347.CFrame = CFrame.new(-10.9098253, 3.60021257, 34.460022, -1, 6.43994736e-06, -5.3034978e-06, 6.4623523e-06, 1, -7.84834992e-06, 5.75847071e-06, -7.52855431e-06, -1)
5126
Part347.BackSurface = Enum.SurfaceType.Weld
5127
Part347.BottomSurface = Enum.SurfaceType.Weld
5128
Part347.FrontSurface = Enum.SurfaceType.Weld
5129
Part347.LeftSurface = Enum.SurfaceType.Weld
5130
Part347.RightSurface = Enum.SurfaceType.Weld
5131
Part347.TopSurface = Enum.SurfaceType.Weld
5132
Part347.Color = Color3.new(0.498039, 0.556863, 0.392157)
5133
Part347.Position = Vector3.new(-10.9098253, 3.60021257, 34.460022)
5134
Part347.Orientation = Vector3.new(0, -180, 0)
5135
Part347.Color = Color3.new(0.498039, 0.556863, 0.392157)
5136
BlockMesh348.Parent = Part347
5137
BlockMesh348.Offset = Vector3.new(0, 0.800000012, 0)
5138
BlockMesh348.Scale = Vector3.new(1.10000002, 2, 1)
5139
BlockMesh348.Scale = Vector3.new(1.10000002, 2, 1)
5140
Part349.Parent = Model0
5141
Part349.Material = Enum.Material.Metal
5142
Part349.BrickColor = BrickColor.new("Grime")
5143
Part349.Rotation = Vector3.new(-180, 0, -180)
5144
Part349.CanCollide = false
5145
Part349.FormFactor = Enum.FormFactor.Custom
5146
Part349.Size = Vector3.new(0.800000191, 1.40000021, 5.19999981)
5147
Part349.CFrame = CFrame.new(16.6903687, 6.50005674, 33.6597786, -1, 7.3178353e-06, -2.29274719e-05, 7.57607449e-06, 1, 1.38828382e-05, 2.81880748e-05, 1.75801961e-05, -1)
5148
Part349.BackSurface = Enum.SurfaceType.Weld
5149
Part349.BottomSurface = Enum.SurfaceType.Weld
5150
Part349.FrontSurface = Enum.SurfaceType.Weld
5151
Part349.LeftSurface = Enum.SurfaceType.Weld
5152
Part349.RightSurface = Enum.SurfaceType.Weld
5153
Part349.TopSurface = Enum.SurfaceType.Weld
5154
Part349.Color = Color3.new(0.498039, 0.556863, 0.392157)
5155
Part349.Position = Vector3.new(16.6903687, 6.50005674, 33.6597786)
5156
Part349.Orientation = Vector3.new(0, -180, 0)
5157
Part349.Color = Color3.new(0.498039, 0.556863, 0.392157)
5158
BlockMesh350.Parent = Part349
5159
Part351.Parent = Model0
5160
Part351.Material = Enum.Material.Metal
5161
Part351.BrickColor = BrickColor.new("Grime")
5162
Part351.Rotation = Vector3.new(180, 0, -180)
5163
Part351.FormFactor = Enum.FormFactor.Custom
5164
Part351.Size = Vector3.new(11.8000002, 3.20000005, 5.20000029)
5165
Part351.CFrame = CFrame.new(11.1901808, 5.60010195, 38.8599014, -1, 6.43885596e-06, -5.28130158e-06, 6.4634437e-06, 1, -7.86395231e-06, 5.78066692e-06, -7.51295283e-06, -1)
5166
Part351.BottomSurface = Enum.SurfaceType.Weld
5167
Part351.LeftSurface = Enum.SurfaceType.Weld
5168
Part351.RightSurface = Enum.SurfaceType.Weld
5169
Part351.TopSurface = Enum.SurfaceType.Weld
5170
Part351.Color = Color3.new(0.498039, 0.556863, 0.392157)
5171
Part351.Position = Vector3.new(11.1901808, 5.60010195, 38.8599014)
5172
Part351.Orientation = Vector3.new(0, -180, 0)
5173
Part351.Color = Color3.new(0.498039, 0.556863, 0.392157)
5174
BlockMesh352.Parent = Part351
5175
Part353.Parent = Model0
5176
Part353.Material = Enum.Material.Metal
5177
Part353.BrickColor = BrickColor.new("Grime")
5178
Part353.Rotation = Vector3.new(-180, 0, -180)
5179
Part353.FormFactor = Enum.FormFactor.Custom
5180
Part353.Size = Vector3.new(13.1999998, 1.59999967, 3.60000038)
5181
Part353.CFrame = CFrame.new(-10.909873, 3.60028696, 43.2598724, -1, 6.40441704e-06, -4.601201e-06, 6.40441613e-06, 1, 1.49602386e-07, 4.60120282e-06, 1.49572926e-07, -1)
5182
Part353.BottomSurface = Enum.SurfaceType.Weld
5183
Part353.LeftSurface = Enum.SurfaceType.Weld
5184
Part353.RightSurface = Enum.SurfaceType.Weld
5185
Part353.TopSurface = Enum.SurfaceType.Weld
5186
Part353.Color = Color3.new(0.498039, 0.556863, 0.392157)
5187
Part353.Position = Vector3.new(-10.909873, 3.60028696, 43.2598724)
5188
Part353.Orientation = Vector3.new(0, -180, 0)
5189
Part353.Color = Color3.new(0.498039, 0.556863, 0.392157)
5190
BlockMesh354.Parent = Part353
5191
BlockMesh354.Offset = Vector3.new(0, 0.800000012, 0)
5192
BlockMesh354.Scale = Vector3.new(1.10000002, 2, 1)
5193
BlockMesh354.Scale = Vector3.new(1.10000002, 2, 1)
5194
Part355.Parent = Model0
5195
Part355.Material = Enum.Material.Metal
5196
Part355.BrickColor = BrickColor.new("Grime")
5197
Part355.Rotation = Vector3.new(-180, 0, -180)
5198
Part355.CanCollide = false
5199
Part355.FormFactor = Enum.FormFactor.Custom
5200
Part355.Size = Vector3.new(11.8000002, 0.399999976, 0.200000003)
5201
Part355.CFrame = CFrame.new(-10.8097591, 6.2003026, 46.5602341, -1, 7.40343285e-06, -2.46297823e-05, 7.77740297e-06, 0.99999088, 5.76178718e-06, 3.21788757e-05, 1.10601068e-05, -1.00000012)
5202
Part355.BackSurface = Enum.SurfaceType.Weld
5203
Part355.BottomSurface = Enum.SurfaceType.Weld
5204
Part355.FrontSurface = Enum.SurfaceType.Weld
5205
Part355.LeftSurface = Enum.SurfaceType.Weld
5206
Part355.RightSurface = Enum.SurfaceType.Weld
5207
Part355.TopSurface = Enum.SurfaceType.Weld
5208
Part355.Color = Color3.new(0.498039, 0.556863, 0.392157)
5209
Part355.Position = Vector3.new(-10.8097591, 6.2003026, 46.5602341)
5210
Part355.Orientation = Vector3.new(0, -180, 0)
5211
Part355.Color = Color3.new(0.498039, 0.556863, 0.392157)
5212
BlockMesh356.Parent = Part355
5213
Part357.Parent = Model0
5214
Part357.Material = Enum.Material.Metal
5215
Part357.BrickColor = BrickColor.new("Grime")
5216
Part357.Rotation = Vector3.new(180, 0, -180)
5217
Part357.FormFactor = Enum.FormFactor.Custom
5218
Part357.Size = Vector3.new(5.59999943, 0.799999952, 1.80000031)
5219
Part357.CFrame = CFrame.new(14.8900795, 8.40018654, 44.7598724, -1, 6.8830459e-06, -1.4202913e-05, 7.07082381e-06, 1, -9.31228442e-06, 1.80205971e-05, -6.62894672e-06, -1)
5220
Part357.BackSurface = Enum.SurfaceType.Weld
5221
Part357.BottomSurface = Enum.SurfaceType.Weld
5222
Part357.FrontSurface = Enum.SurfaceType.Weld
5223
Part357.LeftSurface = Enum.SurfaceType.Weld
5224
Part357.RightSurface = Enum.SurfaceType.Weld
5225
Part357.TopSurface = Enum.SurfaceType.Weld
5226
Part357.Color = Color3.new(0.498039, 0.556863, 0.392157)
5227
Part357.Position = Vector3.new(14.8900795, 8.40018654, 44.7598724)
5228
Part357.Orientation = Vector3.new(0, -180, 0)
5229
Part357.Color = Color3.new(0.498039, 0.556863, 0.392157)
5230
BlockMesh358.Parent = Part357
5231
Part359.Parent = Model0
5232
Part359.Material = Enum.Material.Metal
5233
Part359.BrickColor = BrickColor.new("Grime")
5234
Part359.Rotation = Vector3.new(-180, 0, -180)
5235
Part359.CanCollide = false
5236
Part359.FormFactor = Enum.FormFactor.Custom
5237
Part359.Size = Vector3.new(0.799999356, 1.19999981, 5.19999981)
5238
Part359.CFrame = CFrame.new(2.69019699, 5.80022383, 44.0595703, -1, 7.91060938e-06, -3.4820343e-05, 8.28971952e-06, 0.99999088, 1.29368718e-05, 4.24804894e-05, 1.83131688e-05, -1.00000012)
5239
Part359.BackSurface = Enum.SurfaceType.Weld
5240
Part359.BottomSurface = Enum.SurfaceType.Weld
5241
Part359.FrontSurface = Enum.SurfaceType.Weld
5242
Part359.LeftSurface = Enum.SurfaceType.Weld
5243
Part359.RightSurface = Enum.SurfaceType.Weld
5244
Part359.TopSurface = Enum.SurfaceType.Weld
5245
Part359.Color = Color3.new(0.498039, 0.556863, 0.392157)
5246
Part359.Position = Vector3.new(2.69019699, 5.80022383, 44.0595703)
5247
Part359.Orientation = Vector3.new(0, -180, 0)
5248
Part359.Color = Color3.new(0.498039, 0.556863, 0.392157)
5249
BlockMesh360.Parent = Part359
5250
Part361.Parent = Model0
5251
Part361.Material = Enum.Material.Metal
5252
Part361.BrickColor = BrickColor.new("Grime")
5253
Part361.Rotation = Vector3.new(180, 0, -180)
5254
Part361.CanCollide = false
5255
Part361.FormFactor = Enum.FormFactor.Custom
5256
Part361.Size = Vector3.new(0.799999356, 1.19999981, 5.19999981)
5257
Part361.CFrame = CFrame.new(2.69034576, 5.80008698, 33.6597061, -1, 6.692429e-06, -1.03765615e-05, 7.06659148e-06, 0.99999088, -4.27647774e-06, 1.79255858e-05, 1.02187551e-06, -1.00000012)
5258
Part361.BackSurface = Enum.SurfaceType.Weld
5259
Part361.BottomSurface = Enum.SurfaceType.Weld
5260
Part361.FrontSurface = Enum.SurfaceType.Weld
5261
Part361.LeftSurface = Enum.SurfaceType.Weld
5262
Part361.RightSurface = Enum.SurfaceType.Weld
5263
Part361.TopSurface = Enum.SurfaceType.Weld
5264
Part361.Color = Color3.new(0.498039, 0.556863, 0.392157)
5265
Part361.Position = Vector3.new(2.69034576, 5.80008698, 33.6597061)
5266
Part361.Orientation = Vector3.new(0, -180, 0)
5267
Part361.Color = Color3.new(0.498039, 0.556863, 0.392157)
5268
BlockMesh362.Parent = Part361
5269
Part363.Parent = Model0
5270
Part363.Material = Enum.Material.Metal
5271
Part363.BrickColor = BrickColor.new("Grime")
5272
Part363.Rotation = Vector3.new(180, 0, -180)
5273
Part363.FormFactor = Enum.FormFactor.Custom
5274
Part363.Size = Vector3.new(5.19999933, 1.19999993, 4.00000048)
5275
Part363.CFrame = CFrame.new(8.89022923, 8.60020256, 44.0598717, -1, 6.46254784e-06, -5.67977986e-06, 7.01250519e-06, 1, -1.47377223e-05, 1.68665701e-05, -6.87466036e-06, -1)
5276
Part363.BackSurface = Enum.SurfaceType.Weld
5277
Part363.BottomSurface = Enum.SurfaceType.Weld
5278
Part363.FrontSurface = Enum.SurfaceType.Weld
5279
Part363.LeftSurface = Enum.SurfaceType.Weld
5280
Part363.RightSurface = Enum.SurfaceType.Weld
5281
Part363.TopSurface = Enum.SurfaceType.Weld
5282
Part363.Color = Color3.new(0.498039, 0.556863, 0.392157)
5283
Part363.Position = Vector3.new(8.89022923, 8.60020256, 44.0598717)
5284
Part363.Orientation = Vector3.new(0, -180, 0)
5285
Part363.Color = Color3.new(0.498039, 0.556863, 0.392157)
5286
BlockMesh364.Parent = Part363
5287
Part365.Parent = Model0
5288
Part365.Material = Enum.Material.Metal
5289
Part365.BrickColor = BrickColor.new("Grime")
5290
Part365.Rotation = Vector3.new(180, 0, -180)
5291
Part365.FormFactor = Enum.FormFactor.Custom
5292
Part365.Size = Vector3.new(6.19999933, 2.20000005, 2.60000038)
5293
Part365.CFrame = CFrame.new(14.9901371, 9.90013123, 44.7598419, -1, 6.21868867e-06, -8.11329301e-07, 6.58744511e-06, 1, -2.47506978e-06, 8.31362831e-06, 2.79819596e-06, -1)
5294
Part365.BackSurface = Enum.SurfaceType.Weld
5295
Part365.BottomSurface = Enum.SurfaceType.Weld
5296
Part365.FrontSurface = Enum.SurfaceType.Weld
5297
Part365.LeftSurface = Enum.SurfaceType.Weld
5298
Part365.RightSurface = Enum.SurfaceType.Weld
5299
Part365.TopSurface = Enum.SurfaceType.Weld
5300
Part365.Color = Color3.new(0.498039, 0.556863, 0.392157)
5301
Part365.Position = Vector3.new(14.9901371, 9.90013123, 44.7598419)
5302
Part365.Orientation = Vector3.new(0, -180, 0)
5303
Part365.Color = Color3.new(0.498039, 0.556863, 0.392157)
5304
BlockMesh366.Parent = Part365
5305
Part367.Parent = Model0
5306
Part367.Material = Enum.Material.Metal
5307
Part367.BrickColor = BrickColor.new("Grime")
5308
Part367.Rotation = Vector3.new(180, 0, -180)
5309
Part367.FormFactor = Enum.FormFactor.Custom
5310
Part367.Size = Vector3.new(11.8000002, 0.799999952, 5.20000029)
5311
Part367.CFrame = CFrame.new(11.190093, 7.60022306, 44.059761, -1, 4.3787395e-06, 3.62749852e-05, 4.74697981e-06, 1, -1.41841037e-05, -2.87727416e-05, -8.91064337e-06, -1)
5312
Part367.BackSurface = Enum.SurfaceType.Weld
5313
Part367.BottomSurface = Enum.SurfaceType.Weld
5314
Part367.FrontSurface = Enum.SurfaceType.Weld
5315
Part367.LeftSurface = Enum.SurfaceType.Weld
5316
Part367.RightSurface = Enum.SurfaceType.Weld
5317
Part367.TopSurface = Enum.SurfaceType.Weld
5318
Part367.Color = Color3.new(0.498039, 0.556863, 0.392157)
5319
Part367.Position = Vector3.new(11.190093, 7.60022306, 44.059761)
5320
Part367.Orientation = Vector3.new(0, 180, 0)
5321
Part367.Color = Color3.new(0.498039, 0.556863, 0.392157)
5322
BlockMesh368.Parent = Part367
5323
Part369.Parent = Model0
5324
Part369.Material = Enum.Material.Metal
5325
Part369.BrickColor = BrickColor.new("Grime")
5326
Part369.Rotation = Vector3.new(180, 0, -180)
5327
Part369.CanCollide = false
5328
Part369.FormFactor = Enum.FormFactor.Custom
5329
Part369.Size = Vector3.new(3.39999962, 0.799999893, 5.20000029)
5330
Part369.CFrame = CFrame.new(6.99010181, 7.6001296, 38.8598747, -1, 6.44049305e-06, -5.31459591e-06, 6.46180661e-06, 1, -7.84054919e-06, 5.74737214e-06, -7.53635504e-06, -1)
5331
Part369.BackSurface = Enum.SurfaceType.Weld
5332
Part369.BottomSurface = Enum.SurfaceType.Weld
5333
Part369.FrontSurface = Enum.SurfaceType.Weld
5334
Part369.LeftSurface = Enum.SurfaceType.Weld
5335
Part369.RightSurface = Enum.SurfaceType.Weld
5336
Part369.TopSurface = Enum.SurfaceType.Weld
5337
Part369.Color = Color3.new(0.498039, 0.556863, 0.392157)
5338
Part369.Position = Vector3.new(6.99010181, 7.6001296, 38.8598747)
5339
Part369.Orientation = Vector3.new(0, -180, 0)
5340
Part369.Color = Color3.new(0.498039, 0.556863, 0.392157)
5341
BlockMesh370.Parent = Part369
5342
Part371.Parent = Model0
5343
Part371.Material = Enum.Material.Metal
5344
Part371.BrickColor = BrickColor.new("Really black")
5345
Part371.Rotation = Vector3.new(-90, 90, 0)
5346
Part371.CanCollide = false
5347
Part371.FormFactor = Enum.FormFactor.Custom
5348
Part371.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
5349
Part371.CFrame = CFrame.new(-7.3100009, 2.80016303, 31.7599716, -6.42304258e-06, -4.95945733e-06, 1, -1, -8.09017456e-06, -6.47926254e-06, 7.28673149e-06, -1, -6.10251254e-06)
5350
Part371.BottomSurface = Enum.SurfaceType.Weld
5351
Part371.FrontSurface = Enum.SurfaceType.Weld
5352
Part371.LeftSurface = Enum.SurfaceType.Weld
5353
Part371.RightSurface = Enum.SurfaceType.Weld
5354
Part371.TopSurface = Enum.SurfaceType.Weld
5355
Part371.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5356
Part371.Position = Vector3.new(-7.3100009, 2.80016303, 31.7599716)
5357
Part371.Orientation = Vector3.new(0, 90, -90)
5358
Part371.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5359
CylinderMesh372.Parent = Part371
5360
Part373.Parent = Model0
5361
Part373.Material = Enum.Material.Metal
5362
Part373.BrickColor = BrickColor.new("Grime")
5363
Part373.Rotation = Vector3.new(-180, 0, -180)
5364
Part373.CanCollide = false
5365
Part373.FormFactor = Enum.FormFactor.Custom
5366
Part373.Size = Vector3.new(1.59999919, 0.799999952, 5.19999981)
5367
Part373.CFrame = CFrame.new(3.09007359, 6.80019569, 44.0596123, -1, 6.8204281e-06, -1.29195741e-05, 7.19992431e-06, 0.99999088, 5.89834963e-06, 2.05796405e-05, 1.12747821e-05, -1.00000012)
5368
Part373.BackSurface = Enum.SurfaceType.Weld
5369
Part373.BottomSurface = Enum.SurfaceType.Weld
5370
Part373.FrontSurface = Enum.SurfaceType.Weld
5371
Part373.LeftSurface = Enum.SurfaceType.Weld
5372
Part373.RightSurface = Enum.SurfaceType.Weld
5373
Part373.TopSurface = Enum.SurfaceType.Weld
5374
Part373.Color = Color3.new(0.498039, 0.556863, 0.392157)
5375
Part373.Position = Vector3.new(3.09007359, 6.80019569, 44.0596123)
5376
Part373.Orientation = Vector3.new(0, -180, 0)
5377
Part373.Color = Color3.new(0.498039, 0.556863, 0.392157)
5378
BlockMesh374.Parent = Part373
5379
Part375.Parent = Model0
5380
Part375.Material = Enum.Material.Metal
5381
Part375.BrickColor = BrickColor.new("Grime")
5382
Part375.Rotation = Vector3.new(-180, 0, -180)
5383
Part375.FormFactor = Enum.FormFactor.Custom
5384
Part375.Size = Vector3.new(8, 1.20000005, 5.19999981)
5385
Part375.CFrame = CFrame.new(-21.5098934, 3.4003644, 44.0600357, -1, 7.54534176e-06, -2.77179206e-05, 7.54488246e-06, 1, 1.65513575e-05, 2.77180479e-05, 1.65511501e-05, -1)
5386
Part375.BackSurface = Enum.SurfaceType.Weld
5387
Part375.BottomSurface = Enum.SurfaceType.Weld
5388
Part375.LeftSurface = Enum.SurfaceType.Weld
5389
Part375.RightSurface = Enum.SurfaceType.Weld
5390
Part375.TopSurface = Enum.SurfaceType.Weld
5391
Part375.Color = Color3.new(0.498039, 0.556863, 0.392157)
5392
Part375.Position = Vector3.new(-21.5098934, 3.4003644, 44.0600357)
5393
Part375.Orientation = Vector3.new(0, -180, 0)
5394
Part375.Color = Color3.new(0.498039, 0.556863, 0.392157)
5395
BlockMesh376.Parent = Part375
5396
Part377.Parent = Model0
5397
Part377.Material = Enum.Material.Metal
5398
Part377.BrickColor = BrickColor.new("Grime")
5399
Part377.Rotation = Vector3.new(180, 0, -180)
5400
Part377.CanCollide = false
5401
Part377.FormFactor = Enum.FormFactor.Custom
5402
Part377.Size = Vector3.new(6.19999981, 2.39999986, 5.19999981)
5403
Part377.CFrame = CFrame.new(-0.809634686, 4.00016212, 33.659977, -1, 5.6025101e-06, 1.15597104e-05, 5.61264596e-06, 1, -1.9705436e-05, -1.1348955e-05, -1.95571592e-05, -1)
5404
Part377.BackSurface = Enum.SurfaceType.Weld
5405
Part377.BottomSurface = Enum.SurfaceType.Weld
5406
Part377.FrontSurface = Enum.SurfaceType.Weld
5407
Part377.LeftSurface = Enum.SurfaceType.Weld
5408
Part377.RightSurface = Enum.SurfaceType.Weld
5409
Part377.TopSurface = Enum.SurfaceType.Weld
5410
Part377.Color = Color3.new(0.498039, 0.556863, 0.392157)
5411
Part377.Position = Vector3.new(-0.809634686, 4.00016212, 33.659977)
5412
Part377.Orientation = Vector3.new(0, 180, 0)
5413
Part377.Color = Color3.new(0.498039, 0.556863, 0.392157)
5414
BlockMesh378.Parent = Part377
5415
Part379.Parent = Model0
5416
Part379.Material = Enum.Material.Metal
5417
Part379.BrickColor = BrickColor.new("Grime")
5418
Part379.Rotation = Vector3.new(180, 0, -180)
5419
Part379.CanCollide = false
5420
Part379.FormFactor = Enum.FormFactor.Custom
5421
Part379.Size = Vector3.new(0.399999231, 0.799999893, 5.19999981)
5422
Part379.CFrame = CFrame.new(-4.10968304, 4.80014801, 33.6599922, -1, 5.95867459e-06, 4.37692006e-06, 5.96897416e-06, 1, -1.46642387e-05, -4.16614375e-06, -1.45159993e-05, -1)
5423
Part379.BackSurface = Enum.SurfaceType.Weld
5424
Part379.BottomSurface = Enum.SurfaceType.Weld
5425
Part379.FrontSurface = Enum.SurfaceType.Weld
5426
Part379.LeftSurface = Enum.SurfaceType.Weld
5427
Part379.RightSurface = Enum.SurfaceType.Weld
5428
Part379.TopSurface = Enum.SurfaceType.Weld
5429
Part379.Color = Color3.new(0.498039, 0.556863, 0.392157)
5430
Part379.Position = Vector3.new(-4.10968304, 4.80014801, 33.6599922)
5431
Part379.Orientation = Vector3.new(0, 180, 0)
5432
Part379.Color = Color3.new(0.498039, 0.556863, 0.392157)
5433
BlockMesh380.Parent = Part379
5434
Part381.Name = "wheel"
5435
Part381.Parent = Model0
5436
Part381.Material = Enum.Material.Metal
5437
Part381.BrickColor = BrickColor.new("Grime")
5438
Part381.Transparency = 1
5439
Part381.Rotation = Vector3.new(-90, -90, 0)
5440
Part381.FormFactor = Enum.FormFactor.Symmetric
5441
Part381.Friction = 1
5442
Part381.Shape = Enum.PartType.Ball
5443
Part381.Size = Vector3.new(5, 5, 5)
5444
Part381.CFrame = CFrame.new(-22.5099869, 2.99934506, 49.1596909, -1.68524257e-05, -5.57238771e-08, -1, 1, -4.68407961e-08, -1.6852111e-05, -3.93574737e-08, -1, 6.68240361e-08)
5445
Part381.BottomSurface = Enum.SurfaceType.Smooth
5446
Part381.TopSurface = Enum.SurfaceType.Hinge
5447
Part381.Color = Color3.new(0.498039, 0.556863, 0.392157)
5448
Part381.Position = Vector3.new(-22.5099869, 2.99934506, 49.1596909)
5449
Part381.Orientation = Vector3.new(0, -90, 90)
5450
Part381.Color = Color3.new(0.498039, 0.556863, 0.392157)
5451
CylinderMesh382.Parent = Part381
5452
CylinderMesh382.Offset = Vector3.new(0, -1.10000002, 0)
5453
CylinderMesh382.Scale = Vector3.new(1, 0.600000024, 1)
5454
CylinderMesh382.Scale = Vector3.new(1, 0.600000024, 1)
5455
Part383.Parent = Model0
5456
Part383.Material = Enum.Material.Metal
5457
Part383.BrickColor = BrickColor.new("Really black")
5458
Part383.Rotation = Vector3.new(-90, 90, 0)
5459
Part383.CanCollide = false
5460
Part383.FormFactor = Enum.FormFactor.Custom
5461
Part383.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
5462
Part383.CFrame = CFrame.new(-13.909976, 2.80021191, 31.7600212, -6.42304258e-06, -4.95945733e-06, 1, -1, -8.09017456e-06, -6.47926254e-06, 7.28673149e-06, -1, -6.10251254e-06)
5463
Part383.BottomSurface = Enum.SurfaceType.Weld
5464
Part383.FrontSurface = Enum.SurfaceType.Weld
5465
Part383.LeftSurface = Enum.SurfaceType.Weld
5466
Part383.RightSurface = Enum.SurfaceType.Weld
5467
Part383.TopSurface = Enum.SurfaceType.Weld
5468
Part383.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5469
Part383.Position = Vector3.new(-13.909976, 2.80021191, 31.7600212)
5470
Part383.Orientation = Vector3.new(0, 90, -90)
5471
Part383.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5472
CylinderMesh384.Parent = Part383
5473
Part385.Parent = Model0
5474
Part385.Material = Enum.Material.Metal
5475
Part385.BrickColor = BrickColor.new("Really black")
5476
Part385.Rotation = Vector3.new(90, -90, 0)
5477
Part385.CanCollide = false
5478
Part385.FormFactor = Enum.FormFactor.Custom
5479
Part385.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
5480
Part385.CFrame = CFrame.new(-13.9099016, 2.80034089, 45.9599915, -5.31013347e-06, -1.75913701e-05, -1, -1, 8.41797737e-06, 5.30998523e-06, 8.4178846e-06, 1, -1.75914138e-05)
5481
Part385.BottomSurface = Enum.SurfaceType.Weld
5482
Part385.FrontSurface = Enum.SurfaceType.Weld
5483
Part385.LeftSurface = Enum.SurfaceType.Weld
5484
Part385.RightSurface = Enum.SurfaceType.Weld
5485
Part385.TopSurface = Enum.SurfaceType.Weld
5486
Part385.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5487
Part385.Position = Vector3.new(-13.9099016, 2.80034089, 45.9599915)
5488
Part385.Orientation = Vector3.new(0, -90, -90)
5489
Part385.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5490
CylinderMesh386.Parent = Part385
5491
WedgePart387.Parent = Model0
5492
WedgePart387.Material = Enum.Material.Metal
5493
WedgePart387.BrickColor = BrickColor.new("Grime")
5494
WedgePart387.Rotation = Vector3.new(-180, -90, 0)
5495
WedgePart387.FormFactor = Enum.FormFactor.Custom
5496
WedgePart387.Size = Vector3.new(5.19999981, 1.20000005, 0.800000072)
5497
WedgePart387.CFrame = CFrame.new(3.49014544, 5.80042076, 33.6599541, -5.22691334e-06, -6.46520948e-06, -1, 5.58827878e-06, -1, 6.48099831e-06, -1, -5.81446511e-06, 5.54879989e-06)
5498
WedgePart387.BottomSurface = Enum.SurfaceType.Weld
5499
WedgePart387.Color = Color3.new(0.498039, 0.556863, 0.392157)
5500
WedgePart387.Position = Vector3.new(3.49014544, 5.80042076, 33.6599541)
5501
WedgePart387.Orientation = Vector3.new(0, -90, 180)
5502
WedgePart387.Color = Color3.new(0.498039, 0.556863, 0.392157)
5503
SpecialMesh388.Parent = WedgePart387
5504
SpecialMesh388.MeshType = Enum.MeshType.Wedge
5505
WedgePart389.Parent = Model0
5506
WedgePart389.Material = Enum.Material.Metal
5507
WedgePart389.BrickColor = BrickColor.new("Grime")
5508
WedgePart389.Rotation = Vector3.new(180, 90, 0)
5509
WedgePart389.CanCollide = false
5510
WedgePart389.FormFactor = Enum.FormFactor.Custom
5511
WedgePart389.Size = Vector3.new(5.19999981, 1.60000014, 0.400000006)
5512
WedgePart389.CFrame = CFrame.new(-4.10981941, 3.60051203, 33.6600952, 5.08384437e-06, -6.67719132e-06, 1, 8.03388048e-06, -0.999993205, -6.73167688e-06, 1, 7.2622679e-06, -6.18094418e-06)
5513
WedgePart389.BottomSurface = Enum.SurfaceType.Weld
5514
WedgePart389.Color = Color3.new(0.498039, 0.556863, 0.392157)
5515
WedgePart389.Position = Vector3.new(-4.10981941, 3.60051203, 33.6600952)
5516
WedgePart389.Orientation = Vector3.new(0, 90, 180)
5517
WedgePart389.Color = Color3.new(0.498039, 0.556863, 0.392157)
5518
SpecialMesh390.Parent = WedgePart389
5519
SpecialMesh390.MeshType = Enum.MeshType.Wedge
5520
WedgePart391.Parent = Model0
5521
WedgePart391.Material = Enum.Material.Metal
5522
WedgePart391.BrickColor = BrickColor.new("Grime")
5523
WedgePart391.Rotation = Vector3.new(-180, 90, 0)
5524
WedgePart391.CanCollide = false
5525
WedgePart391.FormFactor = Enum.FormFactor.Custom
5526
WedgePart391.Size = Vector3.new(5.19999981, 0.800000072, 0.600000024)
5527
WedgePart391.CFrame = CFrame.new(-4.60982037, 4.80040455, 44.0597725, 1.23189566e-05, -7.03911064e-06, 1, -4.74273656e-06, -0.999981761, -7.78240428e-06, 1.00000024, -1.52694429e-05, -2.73172082e-05)
5528
WedgePart391.BottomSurface = Enum.SurfaceType.Weld
5529
WedgePart391.Color = Color3.new(0.498039, 0.556863, 0.392157)
5530
WedgePart391.Position = Vector3.new(-4.60982037, 4.80040455, 44.0597725)
5531
WedgePart391.Orientation = Vector3.new(0, 90, -180)
5532
WedgePart391.Color = Color3.new(0.498039, 0.556863, 0.392157)
5533
SpecialMesh392.Parent = WedgePart391
5534
SpecialMesh392.MeshType = Enum.MeshType.Wedge
5535
WedgePart393.Parent = Model0
5536
WedgePart393.Material = Enum.Material.Metal
5537
WedgePart393.BrickColor = BrickColor.new("Grime")
5538
WedgePart393.Rotation = Vector3.new(180, -90, 0)
5539
WedgePart393.FormFactor = Enum.FormFactor.Custom
5540
WedgePart393.Size = Vector3.new(5.19999981, 0.800000072, 1.4000001)
5541
WedgePart393.CFrame = CFrame.new(4.59036112, 6.80025482, 44.0597649, -1.38457381e-07, -6.21204481e-06, -1, -1.1573351e-05, -0.999996543, 6.72009583e-06, -1, 3.97761823e-06, 1.09616794e-05)
5542
WedgePart393.BottomSurface = Enum.SurfaceType.Weld
5543
WedgePart393.Color = Color3.new(0.498039, 0.556863, 0.392157)
5544
WedgePart393.Position = Vector3.new(4.59036112, 6.80025482, 44.0597649)
5545
WedgePart393.Orientation = Vector3.new(0, -90, -180)
5546
WedgePart393.Color = Color3.new(0.498039, 0.556863, 0.392157)
5547
SpecialMesh394.Parent = WedgePart393
5548
SpecialMesh394.MeshType = Enum.MeshType.Wedge
5549
WedgePart395.Parent = Model0
5550
WedgePart395.Material = Enum.Material.Metal
5551
WedgePart395.BrickColor = BrickColor.new("Grime")
5552
WedgePart395.Rotation = Vector3.new(180, -90, 0)
5553
WedgePart395.FormFactor = Enum.FormFactor.Custom
5554
WedgePart395.Size = Vector3.new(5.19999981, 0.800000072, 1.4000001)
5555
WedgePart395.CFrame = CFrame.new(4.59042549, 6.80014467, 33.6591415, 5.75830927e-06, -5.91780463e-06, -1, -1.57273789e-05, -1, 6.3936277e-06, -1, 8.98918006e-06, 3.81148857e-06)
5556
WedgePart395.BottomSurface = Enum.SurfaceType.Weld
5557
WedgePart395.Color = Color3.new(0.498039, 0.556863, 0.392157)
5558
WedgePart395.Position = Vector3.new(4.59042549, 6.80014467, 33.6591415)
5559
WedgePart395.Orientation = Vector3.new(0, -90, -180)
5560
WedgePart395.Color = Color3.new(0.498039, 0.556863, 0.392157)
5561
SpecialMesh396.Parent = WedgePart395
5562
SpecialMesh396.MeshType = Enum.MeshType.Wedge
5563
WedgePart397.Parent = Model0
5564
WedgePart397.Material = Enum.Material.Metal
5565
WedgePart397.BrickColor = BrickColor.new("Grime")
5566
WedgePart397.Rotation = Vector3.new(180, 90, 0)
5567
WedgePart397.CanCollide = false
5568
WedgePart397.FormFactor = Enum.FormFactor.Custom
5569
WedgePart397.Size = Vector3.new(5.19999981, 1.60000014, 0.400000006)
5570
WedgePart397.CFrame = CFrame.new(-4.10966873, 3.60070205, 44.0600739, -1.83692464e-05, -5.51331595e-06, 1, 1.6215803e-05, -0.99999088, -5.89260162e-06, 1.00000012, 1.0839356e-05, 1.07093201e-05)
5571
WedgePart397.BottomSurface = Enum.SurfaceType.Weld
5572
WedgePart397.Color = Color3.new(0.498039, 0.556863, 0.392157)
5573
WedgePart397.Position = Vector3.new(-4.10966873, 3.60070205, 44.0600739)
5574
WedgePart397.Orientation = Vector3.new(0, 90, 180)
5575
WedgePart397.Color = Color3.new(0.498039, 0.556863, 0.392157)
5576
SpecialMesh398.Parent = WedgePart397
5577
SpecialMesh398.MeshType = Enum.MeshType.Wedge
5578
WedgePart399.Parent = Model0
5579
WedgePart399.Material = Enum.Material.Metal
5580
WedgePart399.BrickColor = BrickColor.new("Grime")
5581
WedgePart399.Rotation = Vector3.new(-180, -90, 0)
5582
WedgePart399.FormFactor = Enum.FormFactor.Custom
5583
WedgePart399.Size = Vector3.new(5.19999981, 1.20000005, 0.800000072)
5584
WedgePart399.CFrame = CFrame.new(3.49025035, 5.80047512, 44.0598679, 1.49187254e-05, -5.46336423e-06, -1, 1.28550873e-05, -0.99999088, 5.84314057e-06, -1.00000012, -1.82317744e-05, -7.25863902e-06)
5585
WedgePart399.BottomSurface = Enum.SurfaceType.Weld
5586
WedgePart399.Color = Color3.new(0.498039, 0.556863, 0.392157)
5587
WedgePart399.Position = Vector3.new(3.49025035, 5.80047512, 44.0598679)
5588
WedgePart399.Orientation = Vector3.new(0, -90, 180)
5589
WedgePart399.Color = Color3.new(0.498039, 0.556863, 0.392157)
5590
SpecialMesh400.Parent = WedgePart399
5591
SpecialMesh400.MeshType = Enum.MeshType.Wedge
5592
WedgePart401.Parent = Model0
5593
WedgePart401.Material = Enum.Material.Metal
5594
WedgePart401.BrickColor = BrickColor.new("Grime")
5595
WedgePart401.Rotation = Vector3.new(-180, -90, 0)
5596
WedgePart401.FormFactor = Enum.FormFactor.Custom
5597
WedgePart401.Size = Vector3.new(5.19999981, 2.4000001, 0.800000072)
5598
WedgePart401.CFrame = CFrame.new(2.69040108, 4.00057888, 33.659893, -1.2307155e-05, -6.81548408e-06, -1, 4.87608668e-06, -1, 6.82578775e-06, -1, -5.02421426e-06, 1.25180559e-05)
5599
WedgePart401.BottomSurface = Enum.SurfaceType.Weld
5600
WedgePart401.Color = Color3.new(0.498039, 0.556863, 0.392157)
5601
WedgePart401.Position = Vector3.new(2.69040108, 4.00057888, 33.659893)
5602
WedgePart401.Orientation = Vector3.new(0, -90, 180)
5603
WedgePart401.Color = Color3.new(0.498039, 0.556863, 0.392157)
5604
SpecialMesh402.Parent = WedgePart401
5605
SpecialMesh402.MeshType = Enum.MeshType.Wedge
5606
WedgePart403.Parent = Model0
5607
WedgePart403.Material = Enum.Material.Metal
5608
WedgePart403.BrickColor = BrickColor.new("Grime")
5609
WedgePart403.Rotation = Vector3.new(180, 90, 0)
5610
WedgePart403.FormFactor = Enum.FormFactor.Custom
5611
WedgePart403.Size = Vector3.new(5.19999981, 1.4000001, 1.80000007)
5612
WedgePart403.CFrame = CFrame.new(15.3911648, 6.50011253, 33.6598206, -5.57357816e-06, -6.14820556e-06, 1, 6.22643574e-06, -1, -6.27145073e-06, 1, 4.4634462e-06, 3.06545007e-06)
5613
WedgePart403.BottomSurface = Enum.SurfaceType.Weld
5614
WedgePart403.Color = Color3.new(0.498039, 0.556863, 0.392157)
5615
WedgePart403.Position = Vector3.new(15.3911648, 6.50011253, 33.6598206)
5616
WedgePart403.Orientation = Vector3.new(0, 90, 180)
5617
WedgePart403.Color = Color3.new(0.498039, 0.556863, 0.392157)
5618
SpecialMesh404.Parent = WedgePart403
5619
SpecialMesh404.MeshType = Enum.MeshType.Wedge
5620
WedgePart405.Parent = Model0
5621
WedgePart405.Material = Enum.Material.Metal
5622
WedgePart405.BrickColor = BrickColor.new("Grime")
5623
WedgePart405.Rotation = Vector3.new(180, 90, 0)
5624
WedgePart405.CanCollide = false
5625
WedgePart405.FormFactor = Enum.FormFactor.Custom
5626
WedgePart405.Size = Vector3.new(5.19999981, 0.800000072, 0.600000024)
5627
WedgePart405.CFrame = CFrame.new(-4.60990286, 4.80025768, 33.6599922, -1.13140413e-05, -5.86295255e-06, 1, 1.95633838e-05, -0.999981761, -6.5924678e-06, 1.00000024, 9.23195239e-06, -3.40660699e-06)
5628
WedgePart405.BottomSurface = Enum.SurfaceType.Weld
5629
WedgePart405.Color = Color3.new(0.498039, 0.556863, 0.392157)
5630
WedgePart405.Position = Vector3.new(-4.60990286, 4.80025768, 33.6599922)
5631
WedgePart405.Orientation = Vector3.new(0, 90, 180)
5632
WedgePart405.Color = Color3.new(0.498039, 0.556863, 0.392157)
5633
SpecialMesh406.Parent = WedgePart405
5634
SpecialMesh406.MeshType = Enum.MeshType.Wedge
5635
WedgePart407.Parent = Model0
5636
WedgePart407.Material = Enum.Material.Metal
5637
WedgePart407.BrickColor = BrickColor.new("Grime")
5638
WedgePart407.Rotation = Vector3.new(180, -90, 0)
5639
WedgePart407.FormFactor = Enum.FormFactor.Custom
5640
WedgePart407.Size = Vector3.new(1.59999871, 2, 1.79999995)
5641
WedgePart407.CFrame = CFrame.new(-16.609375, 5.00049973, 45.8597336, 6.52338531e-06, -6.1213882e-06, -1, -1.60775817e-05, -1, 6.68229768e-06, -1, 8.12245889e-06, 4.77771937e-06)
5642
WedgePart407.BottomSurface = Enum.SurfaceType.Smooth
5643
WedgePart407.Color = Color3.new(0.498039, 0.556863, 0.392157)
5644
WedgePart407.Position = Vector3.new(-16.609375, 5.00049973, 45.8597336)
5645
WedgePart407.Orientation = Vector3.new(0, -90, -180)
5646
WedgePart407.Color = Color3.new(0.498039, 0.556863, 0.392157)
5647
SpecialMesh408.Parent = WedgePart407
5648
SpecialMesh408.MeshType = Enum.MeshType.Wedge
5649
Part409.Parent = Model0
5650
Part409.Material = Enum.Material.Metal
5651
Part409.BrickColor = BrickColor.new("Grime")
5652
Part409.Rotation = Vector3.new(180, 0, -180)
5653
Part409.FormFactor = Enum.FormFactor.Custom
5654
Part409.Size = Vector3.new(1.19999981, 1.20000005, 15.999999)
5655
Part409.CFrame = CFrame.new(18.0901623, 3.40006208, 38.8598328, -1, 6.87710462e-06, -1.40845405e-05, 7.06488026e-06, 1, -9.22855088e-06, 1.79022245e-05, -6.54521045e-06, -1)
5656
Part409.BackSurface = Enum.SurfaceType.Weld
5657
Part409.BottomSurface = Enum.SurfaceType.Weld
5658
Part409.LeftSurface = Enum.SurfaceType.Weld
5659
Part409.RightSurface = Enum.SurfaceType.Weld
5660
Part409.TopSurface = Enum.SurfaceType.Weld
5661
Part409.Color = Color3.new(0.498039, 0.556863, 0.392157)
5662
Part409.Position = Vector3.new(18.0901623, 3.40006208, 38.8598328)
5663
Part409.Orientation = Vector3.new(0, -180, 0)
5664
Part409.Color = Color3.new(0.498039, 0.556863, 0.392157)
5665
BlockMesh410.Parent = Part409
5666
Part411.Parent = Model0
5667
Part411.Material = Enum.Material.Metal
5668
Part411.BrickColor = BrickColor.new("Grime")
5669
Part411.Rotation = Vector3.new(-180, 0, -180)
5670
Part411.FormFactor = Enum.FormFactor.Custom
5671
Part411.Size = Vector3.new(2.00000024, 4, 15.6000004)
5672
Part411.CFrame = CFrame.new(18.0899773, 6.00011158, 38.8595161, -1, 8.79176241e-06, -5.25169889e-05, 8.88845261e-06, 1, 7.70221322e-06, 5.44925242e-05, 9.09026676e-06, -1)
5673
Part411.BackSurface = Enum.SurfaceType.Weld
5674
Part411.BottomSurface = Enum.SurfaceType.Weld
5675
Part411.FrontSurface = Enum.SurfaceType.Weld
5676
Part411.LeftSurface = Enum.SurfaceType.Weld
5677
Part411.RightSurface = Enum.SurfaceType.Weld
5678
Part411.TopSurface = Enum.SurfaceType.Weld
5679
Part411.Color = Color3.new(0.498039, 0.556863, 0.392157)
5680
Part411.Position = Vector3.new(18.0899773, 6.00011158, 38.8595161)
5681
Part411.Orientation = Vector3.new(0, -180, 0)
5682
Part411.Color = Color3.new(0.498039, 0.556863, 0.392157)
5683
BlockMesh412.Parent = Part411
5684
Part413.Parent = Model0
5685
Part413.Material = Enum.Material.Metal
5686
Part413.BrickColor = BrickColor.new("Grime")
5687
Part413.Rotation = Vector3.new(-180, 0, -180)
5688
Part413.CanCollide = false
5689
Part413.FormFactor = Enum.FormFactor.Custom
5690
Part413.Size = Vector3.new(6.19999981, 2.39999986, 5.19999981)
5691
Part413.CFrame = CFrame.new(-0.809948921, 4.00028038, 44.0597649, -1, 6.57104692e-06, -7.88472062e-06, 6.95060317e-06, 0.99999088, 2.1937858e-06, 1.55447615e-05, 7.57022963e-06, -1.00000012)
5692
Part413.BackSurface = Enum.SurfaceType.Weld
5693
Part413.BottomSurface = Enum.SurfaceType.Weld
5694
Part413.FrontSurface = Enum.SurfaceType.Weld
5695
Part413.LeftSurface = Enum.SurfaceType.Weld
5696
Part413.RightSurface = Enum.SurfaceType.Weld
5697
Part413.TopSurface = Enum.SurfaceType.Weld
5698
Part413.Color = Color3.new(0.498039, 0.556863, 0.392157)
5699
Part413.Position = Vector3.new(-0.809948921, 4.00028038, 44.0597649)
5700
Part413.Orientation = Vector3.new(0, -180, 0)
5701
Part413.Color = Color3.new(0.498039, 0.556863, 0.392157)
5702
BlockMesh414.Parent = Part413
5703
Part415.Parent = Model0
5704
Part415.Material = Enum.Material.Metal
5705
Part415.BrickColor = BrickColor.new("Grime")
5706
Part415.Rotation = Vector3.new(180, 0, -180)
5707
Part415.FormFactor = Enum.FormFactor.Custom
5708
Part415.Size = Vector3.new(13.1999998, 1.19999969, 12.4000006)
5709
Part415.CFrame = CFrame.new(10.0900612, 3.40011263, 38.85989, -1, 6.44758302e-06, -5.45887087e-06, 6.45471619e-06, 1, -7.73913871e-06, 5.60309672e-06, -7.63776461e-06, -1)
5710
Part415.BottomSurface = Enum.SurfaceType.Weld
5711
Part415.LeftSurface = Enum.SurfaceType.Weld
5712
Part415.RightSurface = Enum.SurfaceType.Weld
5713
Part415.TopSurface = Enum.SurfaceType.Weld
5714
Part415.Color = Color3.new(0.498039, 0.556863, 0.392157)
5715
Part415.Position = Vector3.new(10.0900612, 3.40011263, 38.85989)
5716
Part415.Orientation = Vector3.new(0, -180, 0)
5717
Part415.Color = Color3.new(0.498039, 0.556863, 0.392157)
5718
BlockMesh416.Parent = Part415
5719
BlockMesh416.Offset = Vector3.new(0, 2, 0)
5720
BlockMesh416.Scale = Vector3.new(1.20000005, 4.33400011, 1)
5721
BlockMesh416.Scale = Vector3.new(1.20000005, 4.33400011, 1)
5722
Part417.Parent = Model0
5723
Part417.Material = Enum.Material.Metal
5724
Part417.BrickColor = BrickColor.new("Really black")
5725
Part417.Rotation = Vector3.new(90, -90, 0)
5726
Part417.CanCollide = false
5727
Part417.FormFactor = Enum.FormFactor.Custom
5728
Part417.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
5729
Part417.CFrame = CFrame.new(-7.30992794, 2.80029297, 45.9599228, -5.31013347e-06, -1.75913701e-05, -1, -1, 8.41797737e-06, 5.30998523e-06, 8.4178846e-06, 1, -1.75914138e-05)
5730
Part417.BottomSurface = Enum.SurfaceType.Weld
5731
Part417.FrontSurface = Enum.SurfaceType.Weld
5732
Part417.LeftSurface = Enum.SurfaceType.Weld
5733
Part417.RightSurface = Enum.SurfaceType.Weld
5734
Part417.TopSurface = Enum.SurfaceType.Weld
5735
Part417.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5736
Part417.Position = Vector3.new(-7.30992794, 2.80029297, 45.9599228)
5737
Part417.Orientation = Vector3.new(0, -90, -90)
5738
Part417.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5739
CylinderMesh418.Parent = Part417
5740
Part419.Name = "wheel"
5741
Part419.Parent = Model0
5742
Part419.Material = Enum.Material.Metal
5743
Part419.BrickColor = BrickColor.new("Grime")
5744
Part419.Transparency = 1
5745
Part419.Rotation = Vector3.new(90, 90, 0)
5746
Part419.FormFactor = Enum.FormFactor.Symmetric
5747
Part419.Friction = 1
5748
Part419.Shape = Enum.PartType.Ball
5749
Part419.Size = Vector3.new(5, 5, 5)
5750
Part419.CFrame = CFrame.new(18.0901184, 2.99934506, 28.3597851, 2.72848411e-09, 5.54910464e-08, 1, 1, 4.68062353e-08, -3.27418093e-09, -3.90050445e-08, 1, -6.65888464e-08)
5751
Part419.BottomSurface = Enum.SurfaceType.Smooth
5752
Part419.TopSurface = Enum.SurfaceType.Hinge
5753
Part419.Color = Color3.new(0.498039, 0.556863, 0.392157)
5754
Part419.Position = Vector3.new(18.0901184, 2.99934506, 28.3597851)
5755
Part419.Orientation = Vector3.new(0, 90, 90)
5756
Part419.Color = Color3.new(0.498039, 0.556863, 0.392157)
5757
CylinderMesh420.Parent = Part419
5758
CylinderMesh420.Offset = Vector3.new(0, -1.10000002, 0)
5759
CylinderMesh420.Scale = Vector3.new(1, 0.600000024, 1)
5760
CylinderMesh420.Scale = Vector3.new(1, 0.600000024, 1)
5761
Part421.Parent = Model0
5762
Part421.Material = Enum.Material.Metal
5763
Part421.BrickColor = BrickColor.new("Really black")
5764
Part421.Rotation = Vector3.new(-90, 90, 0)
5765
Part421.CanCollide = false
5766
Part421.FormFactor = Enum.FormFactor.Custom
5767
Part421.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
5768
Part421.CFrame = CFrame.new(6.2899642, 2.80008507, 31.7599297, -6.44921874e-06, -5.4921652e-06, 1, -1, -7.7157365e-06, -6.45307955e-06, 7.66116682e-06, -1, -5.5698024e-06)
5769
Part421.BottomSurface = Enum.SurfaceType.Weld
5770
Part421.FrontSurface = Enum.SurfaceType.Weld
5771
Part421.LeftSurface = Enum.SurfaceType.Weld
5772
Part421.RightSurface = Enum.SurfaceType.Weld
5773
Part421.TopSurface = Enum.SurfaceType.Weld
5774
Part421.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5775
Part421.Position = Vector3.new(6.2899642, 2.80008507, 31.7599297)
5776
Part421.Orientation = Vector3.new(0, 90, -90)
5777
Part421.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5778
CylinderMesh422.Parent = Part421
5779
Part423.Parent = Model0
5780
Part423.Material = Enum.Material.Metal
5781
Part423.BrickColor = BrickColor.new("Really black")
5782
Part423.Rotation = Vector3.new(-90, 90, 0)
5783
Part423.CanCollide = false
5784
Part423.FormFactor = Enum.FormFactor.Custom
5785
Part423.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
5786
Part423.CFrame = CFrame.new(13.4899158, 2.80003095, 31.7598763, -6.44921874e-06, -5.4921652e-06, 1, -1, -7.7157365e-06, -6.45307955e-06, 7.66116682e-06, -1, -5.5698024e-06)
5787
Part423.BottomSurface = Enum.SurfaceType.Weld
5788
Part423.FrontSurface = Enum.SurfaceType.Weld
5789
Part423.LeftSurface = Enum.SurfaceType.Weld
5790
Part423.RightSurface = Enum.SurfaceType.Weld
5791
Part423.TopSurface = Enum.SurfaceType.Smooth
5792
Part423.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5793
Part423.Position = Vector3.new(13.4899158, 2.80003095, 31.7598763)
5794
Part423.Orientation = Vector3.new(0, 90, -90)
5795
Part423.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5796
CylinderMesh424.Parent = Part423
5797
Part425.Parent = Model0
5798
Part425.Material = Enum.Material.Metal
5799
Part425.BrickColor = BrickColor.new("Really black")
5800
Part425.Rotation = Vector3.new(90, -90, 0)
5801
Part425.CanCollide = false
5802
Part425.FormFactor = Enum.FormFactor.Custom
5803
Part425.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
5804
Part425.CFrame = CFrame.new(6.29016876, 2.80019403, 45.9599304, -6.44921874e-06, 5.4921652e-06, -1, -1, 7.7157365e-06, 6.45307955e-06, 7.66116682e-06, 1, 5.5698024e-06)
5805
Part425.BottomSurface = Enum.SurfaceType.Weld
5806
Part425.FrontSurface = Enum.SurfaceType.Weld
5807
Part425.LeftSurface = Enum.SurfaceType.Weld
5808
Part425.RightSurface = Enum.SurfaceType.Weld
5809
Part425.TopSurface = Enum.SurfaceType.Weld
5810
Part425.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5811
Part425.Position = Vector3.new(6.29016876, 2.80019403, 45.9599304)
5812
Part425.Orientation = Vector3.new(0, -90, -90)
5813
Part425.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5814
CylinderMesh426.Parent = Part425
5815
Part427.Parent = Model0
5816
Part427.Material = Enum.Material.Metal
5817
Part427.BrickColor = BrickColor.new("Grime")
5818
Part427.Rotation = Vector3.new(-180, 0, -180)
5819
Part427.CanCollide = false
5820
Part427.FormFactor = Enum.FormFactor.Custom
5821
Part427.Size = Vector3.new(0.800000191, 1.40000021, 5.19999981)
5822
Part427.CFrame = CFrame.new(16.6901779, 6.50009441, 44.059761, -1, 7.6314127e-06, -2.93200592e-05, 7.72801832e-06, 1, 1.66543414e-05, 3.12956508e-05, 1.80426377e-05, -1)
5823
Part427.BackSurface = Enum.SurfaceType.Weld
5824
Part427.BottomSurface = Enum.SurfaceType.Weld
5825
Part427.FrontSurface = Enum.SurfaceType.Weld
5826
Part427.LeftSurface = Enum.SurfaceType.Weld
5827
Part427.RightSurface = Enum.SurfaceType.Weld
5828
Part427.TopSurface = Enum.SurfaceType.Weld
5829
Part427.Color = Color3.new(0.498039, 0.556863, 0.392157)
5830
Part427.Position = Vector3.new(16.6901779, 6.50009441, 44.059761)
5831
Part427.Orientation = Vector3.new(0, -180, 0)
5832
Part427.Color = Color3.new(0.498039, 0.556863, 0.392157)
5833
BlockMesh428.Parent = Part427
5834
WedgePart429.Parent = Model0
5835
WedgePart429.Material = Enum.Material.Metal
5836
WedgePart429.BrickColor = BrickColor.new("Grime")
5837
WedgePart429.Rotation = Vector3.new(-180, -90, 0)
5838
WedgePart429.FormFactor = Enum.FormFactor.Custom
5839
WedgePart429.Size = Vector3.new(5.19999981, 2.4000001, 0.800000072)
5840
WedgePart429.CFrame = CFrame.new(2.69045496, 4.00031519, 44.0597382, -1.79814906e-05, -7.07093022e-06, -1, 9.26739267e-06, -0.99999088, 7.4503323e-06, -1.00000012, -1.46438188e-05, 2.5641586e-05)
5841
WedgePart429.BottomSurface = Enum.SurfaceType.Weld
5842
WedgePart429.Color = Color3.new(0.498039, 0.556863, 0.392157)
5843
WedgePart429.Position = Vector3.new(2.69045496, 4.00031519, 44.0597382)
5844
WedgePart429.Orientation = Vector3.new(0, -90, 180)
5845
WedgePart429.Color = Color3.new(0.498039, 0.556863, 0.392157)
5846
SpecialMesh430.Parent = WedgePart429
5847
SpecialMesh430.MeshType = Enum.MeshType.Wedge
5848
WedgePart431.Parent = Model0
5849
WedgePart431.Material = Enum.Material.Metal
5850
WedgePart431.BrickColor = BrickColor.new("Grime")
5851
WedgePart431.Rotation = Vector3.new(180, 90, 0)
5852
WedgePart431.FormFactor = Enum.FormFactor.Custom
5853
WedgePart431.Size = Vector3.new(5.19999981, 1.4000001, 1.80000007)
5854
WedgePart431.CFrame = CFrame.new(15.3902655, 6.50043106, 44.0596695, -1.61600074e-05, -5.6243216e-06, 1, 1.58236417e-05, -1, -6.17393925e-06, 1, 7.96042968e-06, 4.97321707e-06)
5855
WedgePart431.BottomSurface = Enum.SurfaceType.Weld
5856
WedgePart431.Color = Color3.new(0.498039, 0.556863, 0.392157)
5857
WedgePart431.Position = Vector3.new(15.3902655, 6.50043106, 44.0596695)
5858
WedgePart431.Orientation = Vector3.new(0, 90, 180)
5859
WedgePart431.Color = Color3.new(0.498039, 0.556863, 0.392157)
5860
SpecialMesh432.Parent = WedgePart431
5861
SpecialMesh432.MeshType = Enum.MeshType.Wedge
5862
Part433.Name = "wheel"
5863
Part433.Parent = Model0
5864
Part433.Material = Enum.Material.Metal
5865
Part433.BrickColor = BrickColor.new("Grime")
5866
Part433.Transparency = 1
5867
Part433.Rotation = Vector3.new(-90, -90, 0)
5868
Part433.FormFactor = Enum.FormFactor.Symmetric
5869
Part433.Friction = 1
5870
Part433.Shape = Enum.PartType.Ball
5871
Part433.Size = Vector3.new(5, 5, 5)
5872
Part433.CFrame = CFrame.new(18.0901108, 2.99934506, 49.3595123, 2.72848411e-09, -5.54910464e-08, -1, 1, -4.68062353e-08, 3.27418093e-09, -3.90050445e-08, -1, 6.65888464e-08)
5873
Part433.BottomSurface = Enum.SurfaceType.Smooth
5874
Part433.TopSurface = Enum.SurfaceType.Hinge
5875
Part433.Color = Color3.new(0.498039, 0.556863, 0.392157)
5876
Part433.Position = Vector3.new(18.0901108, 2.99934506, 49.3595123)
5877
Part433.Orientation = Vector3.new(0, -90, 90)
5878
Part433.Color = Color3.new(0.498039, 0.556863, 0.392157)
5879
CylinderMesh434.Parent = Part433
5880
CylinderMesh434.Offset = Vector3.new(0, -1.10000002, 0)
5881
CylinderMesh434.Scale = Vector3.new(1, 0.600000024, 1)
5882
CylinderMesh434.Scale = Vector3.new(1, 0.600000024, 1)
5883
Part435.Parent = Model0
5884
Part435.Material = Enum.Material.Metal
5885
Part435.BrickColor = BrickColor.new("Really black")
5886
Part435.Rotation = Vector3.new(90, -90, 0)
5887
Part435.CanCollide = false
5888
Part435.FormFactor = Enum.FormFactor.Custom
5889
Part435.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
5890
Part435.CFrame = CFrame.new(13.4901199, 2.80014706, 45.9598923, -6.44921874e-06, 5.4921652e-06, -1, -1, 7.7157365e-06, 6.45307955e-06, 7.66116682e-06, 1, 5.5698024e-06)
5891
Part435.BottomSurface = Enum.SurfaceType.Weld
5892
Part435.FrontSurface = Enum.SurfaceType.Weld
5893
Part435.LeftSurface = Enum.SurfaceType.Weld
5894
Part435.RightSurface = Enum.SurfaceType.Weld
5895
Part435.TopSurface = Enum.SurfaceType.Smooth
5896
Part435.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5897
Part435.Position = Vector3.new(13.4901199, 2.80014706, 45.9598923)
5898
Part435.Orientation = Vector3.new(0, -90, -90)
5899
Part435.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
5900
CylinderMesh436.Parent = Part435
5901
Part437.Parent = Model0
5902
Part437.Material = Enum.Material.Metal
5903
Part437.BrickColor = BrickColor.new("Grime")
5904
Part437.Rotation = Vector3.new(90, -90, 0)
5905
Part437.CanCollide = false
5906
Part437.FormFactor = Enum.FormFactor.Custom
5907
Part437.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
5908
Part437.CFrame = CFrame.new(-13.9098864, 2.80032659, 46.9600143, -6.56966131e-06, -1.93433134e-05, -1, -1, 9.822832e-06, 6.56947122e-06, 9.82270558e-06, 1, -1.93433771e-05)
5909
Part437.BottomSurface = Enum.SurfaceType.Weld
5910
Part437.FrontSurface = Enum.SurfaceType.Weld
5911
Part437.LeftSurface = Enum.SurfaceType.Weld
5912
Part437.RightSurface = Enum.SurfaceType.Weld
5913
Part437.TopSurface = Enum.SurfaceType.Weld
5914
Part437.Color = Color3.new(0.498039, 0.556863, 0.392157)
5915
Part437.Position = Vector3.new(-13.9098864, 2.80032659, 46.9600143)
5916
Part437.Orientation = Vector3.new(0, -90, -90)
5917
Part437.Color = Color3.new(0.498039, 0.556863, 0.392157)
5918
CylinderMesh438.Parent = Part437
5919
CylinderMesh438.Offset = Vector3.new(0, -0.170000002, 0)
5920
Part439.Parent = Model0
5921
Part439.Material = Enum.Material.Metal
5922
Part439.BrickColor = BrickColor.new("Grime")
5923
Part439.Rotation = Vector3.new(90, -90, 0)
5924
Part439.CanCollide = false
5925
Part439.FormFactor = Enum.FormFactor.Custom
5926
Part439.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
5927
Part439.CFrame = CFrame.new(13.5900993, 2.8001523, 46.9598885, -6.44267539e-06, 5.35898835e-06, -1, -1, 7.80934624e-06, 6.45962518e-06, 7.56755799e-06, 1, 5.70298016e-06)
5928
Part439.BottomSurface = Enum.SurfaceType.Weld
5929
Part439.FrontSurface = Enum.SurfaceType.Weld
5930
Part439.LeftSurface = Enum.SurfaceType.Weld
5931
Part439.RightSurface = Enum.SurfaceType.Weld
5932
Part439.TopSurface = Enum.SurfaceType.Weld
5933
Part439.Color = Color3.new(0.498039, 0.556863, 0.392157)
5934
Part439.Position = Vector3.new(13.5900993, 2.8001523, 46.9598885)
5935
Part439.Orientation = Vector3.new(0, -90, -90)
5936
Part439.Color = Color3.new(0.498039, 0.556863, 0.392157)
5937
CylinderMesh440.Parent = Part439
5938
CylinderMesh440.Offset = Vector3.new(0, -0.170000002, 0)
5939
Part441.Parent = Model0
5940
Part441.Material = Enum.Material.Metal
5941
Part441.BrickColor = BrickColor.new("Grime")
5942
Part441.Rotation = Vector3.new(90, -90, 0)
5943
Part441.CanCollide = false
5944
Part441.FormFactor = Enum.FormFactor.Custom
5945
Part441.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
5946
Part441.CFrame = CFrame.new(6.28996181, 2.70008087, 30.7599239, -6.44267539e-06, 5.35898835e-06, -1, -1, 7.80934624e-06, 6.45962518e-06, 7.56755799e-06, 1, 5.70298016e-06)
5947
Part441.BottomSurface = Enum.SurfaceType.Weld
5948
Part441.FrontSurface = Enum.SurfaceType.Weld
5949
Part441.LeftSurface = Enum.SurfaceType.Weld
5950
Part441.RightSurface = Enum.SurfaceType.Weld
5951
Part441.TopSurface = Enum.SurfaceType.Weld
5952
Part441.Color = Color3.new(0.498039, 0.556863, 0.392157)
5953
Part441.Position = Vector3.new(6.28996181, 2.70008087, 30.7599239)
5954
Part441.Orientation = Vector3.new(0, -90, -90)
5955
Part441.Color = Color3.new(0.498039, 0.556863, 0.392157)
5956
CylinderMesh442.Parent = Part441
5957
CylinderMesh442.Offset = Vector3.new(0, -0.170000002, 0)
5958
Part443.Parent = Model0
5959
Part443.Material = Enum.Material.Metal
5960
Part443.BrickColor = BrickColor.new("Grime")
5961
Part443.Rotation = Vector3.new(90, -90, 0)
5962
Part443.CanCollide = false
5963
Part443.FormFactor = Enum.FormFactor.Custom
5964
Part443.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
5965
Part443.CFrame = CFrame.new(-7.40999508, 2.70016646, 30.7599983, -6.36196455e-06, 3.71647275e-06, -1, -1, 8.96386427e-06, 6.54035557e-06, 6.41305041e-06, 1, 7.34550258e-06)
5966
Part443.BottomSurface = Enum.SurfaceType.Weld
5967
Part443.FrontSurface = Enum.SurfaceType.Weld
5968
Part443.LeftSurface = Enum.SurfaceType.Weld
5969
Part443.RightSurface = Enum.SurfaceType.Weld
5970
Part443.TopSurface = Enum.SurfaceType.Weld
5971
Part443.Color = Color3.new(0.498039, 0.556863, 0.392157)
5972
Part443.Position = Vector3.new(-7.40999508, 2.70016646, 30.7599983)
5973
Part443.Orientation = Vector3.new(0, -90, -90)
5974
Part443.Color = Color3.new(0.498039, 0.556863, 0.392157)
5975
CylinderMesh444.Parent = Part443
5976
CylinderMesh444.Offset = Vector3.new(0, -0.170000002, 0)
5977
Part445.Parent = Model0
5978
Part445.Material = Enum.Material.Metal
5979
Part445.BrickColor = BrickColor.new("Grime")
5980
Part445.Rotation = Vector3.new(90, -90, 0)
5981
Part445.CanCollide = false
5982
Part445.FormFactor = Enum.FormFactor.Custom
5983
Part445.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
5984
Part445.CFrame = CFrame.new(13.4899139, 2.70003438, 30.759882, -6.44267539e-06, 5.35898835e-06, -1, -1, 7.80934624e-06, 6.45962518e-06, 7.56755799e-06, 1, 5.70298016e-06)
5985
Part445.BottomSurface = Enum.SurfaceType.Weld
5986
Part445.FrontSurface = Enum.SurfaceType.Weld
5987
Part445.LeftSurface = Enum.SurfaceType.Weld
5988
Part445.RightSurface = Enum.SurfaceType.Weld
5989
Part445.TopSurface = Enum.SurfaceType.Weld
5990
Part445.Color = Color3.new(0.498039, 0.556863, 0.392157)
5991
Part445.Position = Vector3.new(13.4899139, 2.70003438, 30.759882)
5992
Part445.Orientation = Vector3.new(0, -90, -90)
5993
Part445.Color = Color3.new(0.498039, 0.556863, 0.392157)
5994
CylinderMesh446.Parent = Part445
5995
CylinderMesh446.Offset = Vector3.new(0, -0.170000002, 0)
5996
Part447.Parent = Model0
5997
Part447.Material = Enum.Material.Metal
5998
Part447.BrickColor = BrickColor.new("Grime")
5999
Part447.Rotation = Vector3.new(90, -90, 0)
6000
Part447.CanCollide = false
6001
Part447.FormFactor = Enum.FormFactor.Custom
6002
Part447.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
6003
Part447.CFrame = CFrame.new(-13.9099846, 2.80021143, 30.7600117, -6.36196455e-06, 3.71647275e-06, -1, -1, 8.96386427e-06, 6.54035557e-06, 6.41305041e-06, 1, 7.34550258e-06)
6004
Part447.BottomSurface = Enum.SurfaceType.Weld
6005
Part447.FrontSurface = Enum.SurfaceType.Weld
6006
Part447.LeftSurface = Enum.SurfaceType.Weld
6007
Part447.RightSurface = Enum.SurfaceType.Weld
6008
Part447.TopSurface = Enum.SurfaceType.Weld
6009
Part447.Color = Color3.new(0.498039, 0.556863, 0.392157)
6010
Part447.Position = Vector3.new(-13.9099846, 2.80021143, 30.7600117)
6011
Part447.Orientation = Vector3.new(0, -90, -90)
6012
Part447.Color = Color3.new(0.498039, 0.556863, 0.392157)
6013
CylinderMesh448.Parent = Part447
6014
CylinderMesh448.Offset = Vector3.new(0, -0.170000002, 0)
6015
Part449.Parent = Model0
6016
Part449.Material = Enum.Material.Metal
6017
Part449.BrickColor = BrickColor.new("Grime")
6018
Part449.Rotation = Vector3.new(90, -90, 0)
6019
Part449.CanCollide = false
6020
Part449.FormFactor = Enum.FormFactor.Custom
6021
Part449.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
6022
Part449.CFrame = CFrame.new(-7.30978823, 2.80027866, 46.9599609, -6.56966131e-06, -1.93433134e-05, -1, -1, 9.822832e-06, 6.56947122e-06, 9.82270558e-06, 1, -1.93433771e-05)
6023
Part449.BottomSurface = Enum.SurfaceType.Weld
6024
Part449.FrontSurface = Enum.SurfaceType.Weld
6025
Part449.LeftSurface = Enum.SurfaceType.Weld
6026
Part449.RightSurface = Enum.SurfaceType.Weld
6027
Part449.TopSurface = Enum.SurfaceType.Weld
6028
Part449.Color = Color3.new(0.498039, 0.556863, 0.392157)
6029
Part449.Position = Vector3.new(-7.30978823, 2.80027866, 46.9599609)
6030
Part449.Orientation = Vector3.new(0, -90, -90)
6031
Part449.Color = Color3.new(0.498039, 0.556863, 0.392157)
6032
CylinderMesh450.Parent = Part449
6033
CylinderMesh450.Offset = Vector3.new(0, -0.170000002, 0)
6034
Part451.Parent = Model0
6035
Part451.Material = Enum.Material.Metal
6036
Part451.BrickColor = BrickColor.new("Grime")
6037
Part451.Rotation = Vector3.new(90, -90, 0)
6038
Part451.CanCollide = false
6039
Part451.FormFactor = Enum.FormFactor.Custom
6040
Part451.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
6041
Part451.CFrame = CFrame.new(6.2901721, 2.80019784, 46.9599152, -6.44267539e-06, 5.35898835e-06, -1, -1, 7.80934624e-06, 6.45962518e-06, 7.56755799e-06, 1, 5.70298016e-06)
6042
Part451.BottomSurface = Enum.SurfaceType.Weld
6043
Part451.FrontSurface = Enum.SurfaceType.Weld
6044
Part451.LeftSurface = Enum.SurfaceType.Weld
6045
Part451.RightSurface = Enum.SurfaceType.Weld
6046
Part451.TopSurface = Enum.SurfaceType.Weld
6047
Part451.Color = Color3.new(0.498039, 0.556863, 0.392157)
6048
Part451.Position = Vector3.new(6.2901721, 2.80019784, 46.9599152)
6049
Part451.Orientation = Vector3.new(0, -90, -90)
6050
Part451.Color = Color3.new(0.498039, 0.556863, 0.392157)
6051
CylinderMesh452.Parent = Part451
6052
CylinderMesh452.Offset = Vector3.new(0, -0.170000002, 0)
6053
for i,v in pairs(mas:GetChildren()) do
6054
	v.Parent = workspace
6055
	pcall(function() v:MakeJoints() end)
6056
end
6057
mas:Destroy()
6058
for i,v in pairs(cors) do
6059
	spawn(function()
6060
		pcall(v)
6061
	end)
6062
end
6063
		local frame = script.Parent.Missle.Tip.CFrame
6064
		
6065
		script.Parent.Missle.Tip.Boom.Disabled = false	
6066
		
6067
		for i=1,400 do
6068
			script.Parent.Missle.Tip.Size=script.Parent.Missle.Tip.Size+Vector3.new(3,3,3)
6069
			script.Parent.Missle.Tip.CFrame=frame
6070
			wait()
6071
		end
6072
		script.Parent.Missle.Tip.Boom.Disabled=true
6073
		script.Parent.Missle:Destroy()
6074
		siren:Stop()
6075
		boom:Stop()
6076
		
6077
		
6078
	end
6079
end)
6080
end))
6081
for i,v in pairs(mas:GetChildren()) do
6082
	v.Parent = workspace
6083
	pcall(function() v:MakeJoints() end)
6084
end
6085
mas:Destroy()
6086
for i,v in pairs(cors) do
6087
	spawn(function()
6088
		pcall(v)
6089
	end)
6090
end
6091
6092
-----------------------------------
6093
--[[
6094
Objects Skipped: 3
6095
	UnionOperation: 3
6096
--]]
6097
6098
local model = Instance.new("Model", workspace)
6099
local part = Instance.new("Part")
6100
local mesh = Instance.new("BlockMesh", part)
6101
local part_2 = Instance.new("Part")
6102
local mesh_2 = Instance.new("BlockMesh", part_2)
6103
local part_3 = Instance.new("Part")
6104
local mesh_3 = Instance.new("BlockMesh", part_3)
6105
local part_4 = Instance.new("Part")
6106
local mesh_4 = Instance.new("BlockMesh", part_4)
6107
local part_5 = Instance.new("Part")
6108
local mesh_5 = Instance.new("BlockMesh")
6109
local part_6 = Instance.new("Part")
6110
local mesh_6 = Instance.new("BlockMesh", part_6)
6111
local part_7 = Instance.new("Part")
6112
local mesh_7 = Instance.new("BlockMesh", part_7)
6113
local wedge = Instance.new("WedgePart")
6114
local mesh_8 = Instance.new("SpecialMesh")
6115
local wedge_2 = Instance.new("WedgePart")
6116
local mesh_9 = Instance.new("SpecialMesh")
6117
local wedge_3 = Instance.new("WedgePart")
6118
local mesh_10 = Instance.new("SpecialMesh")
6119
local wedge_4 = Instance.new("WedgePart")
6120
local mesh_11 = Instance.new("SpecialMesh")
6121
local wedge_5 = Instance.new("WedgePart")
6122
local mesh_12 = Instance.new("SpecialMesh")
6123
local wedge_6 = Instance.new("WedgePart")
6124
local mesh_13 = Instance.new("SpecialMesh")
6125
local wedgetowedge_strong_joint = Instance.new("ManualWeld")
6126
local wedge_7 = Instance.new("WedgePart")
6127
local mesh_14 = Instance.new("SpecialMesh")
6128
local wedge_8 = Instance.new("WedgePart")
6129
local mesh_15 = Instance.new("SpecialMesh")
6130
local wedge_9 = Instance.new("WedgePart")
6131
local mesh_16 = Instance.new("SpecialMesh")
6132
local wedgetowedge_strong_joint_2 = Instance.new("ManualWeld")
6133
local wedge_11 = Instance.new("WedgePart")
6134
local mesh_17 = Instance.new("SpecialMesh")
6135
local wedge_12 = Instance.new("WedgePart")
6136
local mesh_18 = Instance.new("SpecialMesh")
6137
local wedge_13 = Instance.new("WedgePart")
6138
local mesh_19 = Instance.new("SpecialMesh")
6139
local wedge_14 = Instance.new("WedgePart")
6140
local mesh_20 = Instance.new("SpecialMesh")
6141
local wedge_15 = Instance.new("WedgePart")
6142
local mesh_21 = Instance.new("SpecialMesh")
6143
local wedge_16 = Instance.new("WedgePart")
6144
local mesh_22 = Instance.new("SpecialMesh")
6145
local wedge_17 = Instance.new("WedgePart")
6146
local mesh_23 = Instance.new("SpecialMesh")
6147
local wedge_18 = Instance.new("WedgePart")
6148
local mesh_24 = Instance.new("SpecialMesh")
6149
local wedge_10 = Instance.new("WedgePart")
6150
local mesh_25 = Instance.new("SpecialMesh")
6151
local wedge_19 = Instance.new("WedgePart")
6152
local mesh_26 = Instance.new("SpecialMesh")
6153
local wedge_20 = Instance.new("WedgePart")
6154
local mesh_27 = Instance.new("SpecialMesh")
6155
local wedge_21 = Instance.new("WedgePart")
6156
local mesh_28 = Instance.new("SpecialMesh")
6157
local wedgetowedge_strong_joint_3 = Instance.new("ManualWeld")
6158
local wedge_22 = Instance.new("WedgePart")
6159
local mesh_29 = Instance.new("SpecialMesh")
6160
local wedge_23 = Instance.new("WedgePart")
6161
local mesh_30 = Instance.new("SpecialMesh")
6162
local wedgetowedge_strong_joint_4 = Instance.new("ManualWeld")
6163
local wedge_24 = Instance.new("WedgePart")
6164
local mesh_31 = Instance.new("SpecialMesh")
6165
local wedge_25 = Instance.new("WedgePart")
6166
local mesh_32 = Instance.new("SpecialMesh")
6167
local wedge_26 = Instance.new("WedgePart")
6168
local mesh_33 = Instance.new("SpecialMesh")
6169
local emblem = Instance.new("Part")
6170
local mesh_34 = Instance.new("BlockMesh")
6171
local part_8 = Instance.new("Part")
6172
local mesh_35 = Instance.new("BlockMesh")
6173
local part_9 = Instance.new("Part")
6174
local mesh_36 = Instance.new("BlockMesh")
6175
local part_10 = Instance.new("Part")
6176
local mesh_37 = Instance.new("BlockMesh", part_10)
6177
local part_11 = Instance.new("Part")
6178
local mesh_38 = Instance.new("BlockMesh", part_11)
6179
local part_12 = Instance.new("Part")
6180
local mesh_39 = Instance.new("BlockMesh", part_12)
6181
local part_13 = Instance.new("Part")
6182
local mesh_40 = Instance.new("BlockMesh", part_13)
6183
local part_14 = Instance.new("Part")
6184
local mesh_41 = Instance.new("BlockMesh", part_14)
6185
local part_15 = Instance.new("Part")
6186
local mesh_42 = Instance.new("CylinderMesh")
6187
local part_16 = Instance.new("Part")
6188
local mesh_43 = Instance.new("BlockMesh", part_16)
6189
local brick = Instance.new("Part")
6190
local mesh_44 = Instance.new("BlockMesh")
6191
local emblem_2 = Instance.new("Part")
6192
local mesh_45 = Instance.new("BlockMesh")
6193
local part_17 = Instance.new("Part")
6194
local mesh_46 = Instance.new("BlockMesh")
6195
local part_18 = Instance.new("Part")
6196
local mesh_47 = Instance.new("BlockMesh", part_18)
6197
local part_19 = Instance.new("Part")
6198
local mesh_48 = Instance.new("BlockMesh")
6199
local part_20 = Instance.new("Part")
6200
local mesh_49 = Instance.new("BlockMesh", part_20)
6201
local part_21 = Instance.new("Part")
6202
local mesh_50 = Instance.new("BlockMesh", part_21)
6203
local part_22 = Instance.new("Part")
6204
local mesh_51 = Instance.new("BlockMesh", part_22)
6205
local part_23 = Instance.new("Part")
6206
local mesh_52 = Instance.new("BlockMesh")
6207
local part_24 = Instance.new("Part")
6208
local mesh_53 = Instance.new("CylinderMesh", part_24)
6209
local part_25 = Instance.new("Part")
6210
local mesh_54 = Instance.new("BlockMesh", part_25)
6211
local part_26 = Instance.new("Part")
6212
local mesh_55 = Instance.new("BlockMesh", part_26)
6213
local part_27 = Instance.new("Part")
6214
local mesh_56 = Instance.new("CylinderMesh", part_27)
6215
local part_28 = Instance.new("Part")
6216
local mesh_57 = Instance.new("BlockMesh", part_28)
6217
local part_29 = Instance.new("Part")
6218
local mesh_58 = Instance.new("CylinderMesh", part_29)
6219
local part_30 = Instance.new("Part")
6220
local mesh_59 = Instance.new("CylinderMesh", part_30)
6221
local part_31 = Instance.new("Part")
6222
local mesh_60 = Instance.new("CylinderMesh", part_31)
6223
local part_32 = Instance.new("Part")
6224
local mesh_61 = Instance.new("CylinderMesh", part_32)
6225
local part_33 = Instance.new("Part")
6226
local mesh_62 = Instance.new("BlockMesh", part_33)
6227
local part_34 = Instance.new("Part")
6228
local mesh_63 = Instance.new("CylinderMesh", part_34)
6229
local part_35 = Instance.new("Part")
6230
local mesh_64 = Instance.new("CylinderMesh", part_35)
6231
local part_36 = Instance.new("Part")
6232
local mesh_65 = Instance.new("BlockMesh", part_36)
6233
local part_37 = Instance.new("Part")
6234
local mesh_66 = Instance.new("BlockMesh", part_37)
6235
local part_38 = Instance.new("Part")
6236
local mesh_67 = Instance.new("BlockMesh", part_38)
6237
local part_39 = Instance.new("Part")
6238
local mesh_68 = Instance.new("BlockMesh", part_39)
6239
local part_40 = Instance.new("Part")
6240
local mesh_69 = Instance.new("BlockMesh", part_40)
6241
local part_41 = Instance.new("Part")
6242
local mesh_70 = Instance.new("BlockMesh", part_41)
6243
local part_42 = Instance.new("Part")
6244
local mesh_71 = Instance.new("BlockMesh", part_42)
6245
local part_43 = Instance.new("Part")
6246
local mesh_72 = Instance.new("BlockMesh")
6247
local part_44 = Instance.new("Part")
6248
local mesh_73 = Instance.new("BlockMesh", part_44)
6249
local part_45 = Instance.new("Part")
6250
local mesh_74 = Instance.new("BlockMesh", part_45)
6251
local part_46 = Instance.new("Part")
6252
local mesh_75 = Instance.new("BlockMesh")
6253
local part_47 = Instance.new("Part")
6254
local mesh_76 = Instance.new("BlockMesh", part_47)
6255
local part_48 = Instance.new("Part")
6256
local mesh_77 = Instance.new("BlockMesh", part_48)
6257
local part_49 = Instance.new("Part")
6258
local mesh_78 = Instance.new("BlockMesh")
6259
local part_50 = Instance.new("Part")
6260
local mesh_79 = Instance.new("BlockMesh", part_50)
6261
local part_51 = Instance.new("Part")
6262
local mesh_80 = Instance.new("BlockMesh", part_51)
6263
local part_52 = Instance.new("Part")
6264
local mesh_81 = Instance.new("BlockMesh")
6265
local part_53 = Instance.new("Part")
6266
local mesh_82 = Instance.new("BlockMesh", part_53)
6267
local part_54 = Instance.new("Part")
6268
local mesh_83 = Instance.new("BlockMesh", part_54)
6269
local part_55 = Instance.new("Part")
6270
local mesh_84 = Instance.new("BlockMesh", part_55)
6271
local part_56 = Instance.new("Part")
6272
local mesh_85 = Instance.new("BlockMesh", part_56)
6273
local part_57 = Instance.new("Part")
6274
local mesh_86 = Instance.new("BlockMesh", part_57)
6275
local part_58 = Instance.new("Part")
6276
local mesh_87 = Instance.new("BlockMesh", part_58)
6277
local part_59 = Instance.new("Part")
6278
local mesh_88 = Instance.new("BlockMesh", part_59)
6279
local part_60 = Instance.new("Part")
6280
local mesh_89 = Instance.new("BlockMesh", part_60)
6281
local brick_2 = Instance.new("Part")
6282
local mesh_90 = Instance.new("BlockMesh")
6283
local part_61 = Instance.new("Part")
6284
local mesh_91 = Instance.new("BlockMesh", part_61)
6285
local braces = Instance.new("Model")
6286
local sidesupporters = Instance.new("Part")
6287
local mesh_92 = Instance.new("CylinderMesh")
6288
local sidesupporters_2 = Instance.new("Part")
6289
local mesh_93 = Instance.new("CylinderMesh")
6290
6291
part.Anchored = true
6292
part.CanCollide = false
6293
part.Size = Vector3.new(1.015, 5.327, 0.507)
6294
part.FrontSurface = Enum.SurfaceType.Weld
6295
part.Orientation = Vector3.new(0, -90, 0)
6296
part.Material = Enum.Material.Metal
6297
part.BrickColor = BrickColor.new("Really black")
6298
part.BackSurface = Enum.SurfaceType.Weld
6299
part.RightSurface = Enum.SurfaceType.Weld
6300
part.LeftSurface = Enum.SurfaceType.Weld
6301
part.BottomSurface = Enum.SurfaceType.Weld
6302
part.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6303
part.TopSurface = Enum.SurfaceType.Weld
6304
part.Parent = model
6305
part.CFrame = CFrame.new(-45.361, 11.198, 35.183) * CFrame.Angles(0, -1.571, 0)
6306
part_2.Anchored = true
6307
part_2.CanCollide = false
6308
part_2.Size = Vector3.new(3.805, 3.805, 6.596)
6309
part_2.FrontSurface = Enum.SurfaceType.Weld
6310
part_2.Orientation = Vector3.new(0, -90, 0)
6311
part_2.Material = Enum.Material.Metal
6312
part_2.BrickColor = BrickColor.new("Really black")
6313
part_2.BackSurface = Enum.SurfaceType.Weld
6314
part_2.RightSurface = Enum.SurfaceType.Weld
6315
part_2.LeftSurface = Enum.SurfaceType.Weld
6316
part_2.BottomSurface = Enum.SurfaceType.Weld
6317
part_2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6318
part_2.TopSurface = Enum.SurfaceType.Weld
6319
part_2.Parent = model
6320
part_2.CFrame = CFrame.new(-48.406, 11.959, 8.673) * CFrame.Angles(0, -1.571, 0)
6321
part_3.Anchored = true
6322
part_3.CanCollide = false
6323
part_3.Size = Vector3.new(10.148, 3.552, 0.507)
6324
part_3.BrickColor = BrickColor.new("Really black")
6325
part_3.Orientation = Vector3.new(0, -90, 0)
6326
part_3.Material = Enum.Material.Metal
6327
part_3.RightSurface = Enum.SurfaceType.Weld
6328
part_3.BackSurface = Enum.SurfaceType.Weld
6329
part_3.LeftSurface = Enum.SurfaceType.Weld
6330
part_3.BottomSurface = Enum.SurfaceType.Weld
6331
part_3.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6332
part_3.TopSurface = Enum.SurfaceType.Weld
6333
part_3.Parent = model
6334
part_3.CFrame = CFrame.new(-32.169, 8.534, 40.764) * CFrame.Angles(1.416, -1.57, 0.444)
6335
part_4.Anchored = true
6336
part_4.CanCollide = false
6337
part_4.Size = Vector3.new(3.805, 3.805, 6.596)
6338
part_4.FrontSurface = Enum.SurfaceType.Weld
6339
part_4.Orientation = Vector3.new(0, -90, 0)
6340
part_4.Material = Enum.Material.Metal
6341
part_4.BrickColor = BrickColor.new("Really black")
6342
part_4.BackSurface = Enum.SurfaceType.Weld
6343
part_4.RightSurface = Enum.SurfaceType.Weld
6344
part_4.LeftSurface = Enum.SurfaceType.Weld
6345
part_4.BottomSurface = Enum.SurfaceType.Weld
6346
part_4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6347
part_4.TopSurface = Enum.SurfaceType.Weld
6348
part_4.Parent = model
6349
part_4.CFrame = CFrame.new(-35.214, 11.959, 8.673) * CFrame.Angles(0, -1.571, 0)
6350
part_5.Anchored = true
6351
part_5.CanCollide = false
6352
part_5.Size = Vector3.new(11.445, 3.078, 0.254)
6353
part_5.Transparency = 0.5
6354
part_5.Orientation = Vector3.new(7.61, -90, 0)
6355
part_5.BrickColor = BrickColor.new("Really black")
6356
part_5.Material = Enum.Material.Ice
6357
part_5.BackSurface = Enum.SurfaceType.Weld
6358
part_5.LeftSurface = Enum.SurfaceType.Weld
6359
part_5.RightSurface = Enum.SurfaceType.Weld
6360
part_5.FrontSurface = Enum.SurfaceType.Weld
6361
part_5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6362
part_5.BottomSurface = Enum.SurfaceType.Weld
6363
part_5.TopSurface = Enum.SurfaceType.Weld
6364
part_5.Parent = model
6365
part_5.CFrame = CFrame.new(-32.027, 12.106, 40.369) * CFrame.Angles(1.571, -1.438, 1.571)
6366
mesh_5.Offset = Vector3.new(0, 0, 0.2)
6367
mesh_5.Scale = Vector3.new(1, 1.15, 0.5)
6368
mesh_5.Parent = part_5
6369
part_6.Anchored = true
6370
part_6.CanCollide = false
6371
part_6.Size = Vector3.new(10.148, 3.552, 0.507)
6372
part_6.BrickColor = BrickColor.new("Really black")
6373
part_6.Orientation = Vector3.new(0, -90, 0)
6374
part_6.Material = Enum.Material.Metal
6375
part_6.RightSurface = Enum.SurfaceType.Weld
6376
part_6.FrontSurface = Enum.SurfaceType.Weld
6377
part_6.LeftSurface = Enum.SurfaceType.Weld
6378
part_6.BottomSurface = Enum.SurfaceType.Weld
6379
part_6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6380
part_6.TopSurface = Enum.SurfaceType.Weld
6381
part_6.Parent = model
6382
part_6.CFrame = CFrame.new(-51.45, 8.534, 40.764) * CFrame.Angles(0, -1.571, 0)
6383
part_7.Anchored = true
6384
part_7.CanCollide = false
6385
part_7.Size = Vector3.new(9.133, 6.342, 6.596)
6386
part_7.FrontSurface = Enum.SurfaceType.Weld
6387
part_7.Orientation = Vector3.new(0, -90, 0)
6388
part_7.Material = Enum.Material.Metal
6389
part_7.BrickColor = BrickColor.new("Really black")
6390
part_7.BackSurface = Enum.SurfaceType.Weld
6391
part_7.RightSurface = Enum.SurfaceType.Weld
6392
part_7.LeftSurface = Enum.SurfaceType.Weld
6393
part_7.BottomSurface = Enum.SurfaceType.Weld
6394
part_7.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6395
part_7.TopSurface = Enum.SurfaceType.Weld
6396
part_7.Parent = model
6397
part_7.CFrame = CFrame.new(-48.406, 10.69, 15.141) * CFrame.Angles(0, -1.571, 0)
6398
wedge.Anchored = true
6399
wedge.CanCollide = false
6400
wedge.Size = Vector3.new(14.968, 6.317, 3.552)
6401
wedge.Material = Enum.Material.Metal
6402
wedge.Orientation = Vector3.new(90, 90, 0)
6403
wedge.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6404
wedge.BrickColor = BrickColor.new("Really black")
6405
wedge.BackSurface = Enum.SurfaceType.Weld
6406
wedge.BottomSurface = Enum.SurfaceType.Weld
6407
wedge.Parent = model
6408
wedge.CFrame = CFrame.new(-35.328, 12.085, 27.192) * CFrame.Angles(1.571, 0, -1.571)
6409
mesh_8.MeshType = Enum.MeshType.Wedge
6410
mesh_8.Parent = wedge
6411
wedge_2.Anchored = true
6412
wedge_2.CanCollide = false
6413
wedge_2.Size = Vector3.new(0.507, 0.507, 3.805)
6414
wedge_2.Material = Enum.Material.Metal
6415
wedge_2.Orientation = Vector3.new(89.78, -40.7, 73.53)
6416
wedge_2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6417
wedge_2.BrickColor = BrickColor.new("Really black")
6418
wedge_2.BackSurface = Enum.SurfaceType.Weld
6419
wedge_2.BottomSurface = Enum.SurfaceType.Weld
6420
wedge_2.Parent = model
6421
wedge_2.CFrame = CFrame.new(-51.456, 12.213, 42.286) * CFrame.Angles(1.571, 0, 1.571)
6422
mesh_9.MeshType = Enum.MeshType.Wedge
6423
mesh_9.Parent = wedge_2
6424
wedge_3.Anchored = true
6425
wedge_3.CanCollide = false
6426
wedge_3.Size = Vector3.new(0.254, 0.507, 3.805)
6427
wedge_3.Material = Enum.Material.Metal
6428
wedge_3.Orientation = Vector3.new(89.85, 44.97, -34.09)
6429
wedge_3.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6430
wedge_3.BrickColor = BrickColor.new("Really black")
6431
wedge_3.BackSurface = Enum.SurfaceType.Weld
6432
wedge_3.BottomSurface = Enum.SurfaceType.Weld
6433
wedge_3.Parent = model
6434
wedge_3.CFrame = CFrame.new(-32.169, 12.213, 38.355) * CFrame.Angles(1.571, 0, -1.571)
6435
mesh_10.MeshType = Enum.MeshType.Wedge
6436
mesh_10.Parent = wedge_3
6437
wedge_4.Anchored = true
6438
wedge_4.CanCollide = false
6439
wedge_4.Size = Vector3.new(0.254, 0.507, 3.805)
6440
wedge_4.Material = Enum.Material.Metal
6441
wedge_4.Orientation = Vector3.new(89.85, 45.87, 147.48)
6442
wedge_4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6443
wedge_4.BrickColor = BrickColor.new("Really black")
6444
wedge_4.BackSurface = Enum.SurfaceType.Weld
6445
wedge_4.BottomSurface = Enum.SurfaceType.Weld
6446
wedge_4.Parent = model
6447
wedge_4.CFrame = CFrame.new(-51.456, 12.213, 38.354) * CFrame.Angles(1.571, 0, 1.571)
6448
mesh_11.MeshType = Enum.MeshType.Wedge
6449
mesh_11.Parent = wedge_4
6450
wedge_5.Anchored = true
6451
wedge_5.Size = Vector3.new(2.03, 2.537, 2.283)
6452
wedge_5.BottomSurface = Enum.SurfaceType.Smooth
6453
wedge_5.Material = Enum.Material.Metal
6454
wedge_5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6455
wedge_5.Orientation = Vector3.new(0, 0, -180)
6456
wedge_5.BrickColor = BrickColor.new("Really black")
6457
wedge_5.Parent = model
6458
wedge_5.CFrame = CFrame.new(-32.931, 7.266, 34.548) * CFrame.Angles(0, 0, -3.142)
6459
mesh_12.MeshType = Enum.MeshType.Wedge
6460
mesh_12.Parent = wedge_5
6461
wedge_6.Anchored = true
6462
wedge_6.CanCollide = false
6463
wedge_6.Size = Vector3.new(0.254, 0.507, 3.805)
6464
wedge_6.Material = Enum.Material.Metal
6465
wedge_6.Orientation = Vector3.new(90, 90, 0)
6466
wedge_6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6467
wedge_6.BrickColor = BrickColor.new("Really black")
6468
wedge_6.BackSurface = Enum.SurfaceType.Weld
6469
wedge_6.BottomSurface = Enum.SurfaceType.Weld
6470
wedge_6.Parent = model
6471
wedge_6.CFrame = CFrame.new(-32.17, 12.214, 34.803) * CFrame.Angles(1.571, 0, -1.571)
6472
mesh_13.MeshType = Enum.MeshType.Wedge
6473
mesh_13.Parent = wedge_6
6474
wedgetowedge_strong_joint.Part1 = wedge
6475
wedgetowedge_strong_joint.C0 = CFrame.new(0.127, -0.254, -1.903) * CFrame.Angles(0, 1.571, 0)
6476
wedgetowedge_strong_joint.C1 = CFrame.new(-7.484, 2.905, -2.031) * CFrame.Angles(0, 1.571, 0)
6477
wedgetowedge_strong_joint.Part0 = wedge_6
6478
wedgetowedge_strong_joint.Name = "Wedge-to-Wedge Strong Joint"
6479
wedgetowedge_strong_joint.Parent = wedge_6
6480
wedge_7.Anchored = true
6481
wedge_7.CanCollide = false
6482
wedge_7.Size = Vector3.new(6.596, 1.015, 0.761)
6483
wedge_7.Orientation = Vector3.new(0, -180, 180)
6484
wedge_7.Material = Enum.Material.Metal
6485
wedge_7.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6486
wedge_7.BrickColor = BrickColor.new("Really black")
6487
wedge_7.BottomSurface = Enum.SurfaceType.Weld
6488
wedge_7.Parent = model
6489
wedge_7.CFrame = CFrame.new(-35.214, 7.012, 19.328) * CFrame.Angles(3.142, 0, 0)
6490
mesh_14.MeshType = Enum.MeshType.Wedge
6491
mesh_14.Parent = wedge_7
6492
wedge_8.Anchored = true
6493
wedge_8.CanCollide = false
6494
wedge_8.Size = Vector3.new(6.596, 2.03, 0.507)
6495
wedge_8.Orientation = Vector3.new(0, -180, 180)
6496
wedge_8.Material = Enum.Material.Metal
6497
wedge_8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6498
wedge_8.BrickColor = BrickColor.new("Really black")
6499
wedge_8.BottomSurface = Enum.SurfaceType.Weld
6500
wedge_8.Parent = model
6501
wedge_8.CFrame = CFrame.new(-35.214, 5.49, 18.693) * CFrame.Angles(3.142, 0, 0)
6502
mesh_15.MeshType = Enum.MeshType.Wedge
6503
mesh_15.Parent = wedge_8
6504
wedge_9.Anchored = true
6505
wedge_9.CanCollide = false
6506
wedge_9.Size = Vector3.new(0.254, 0.507, 3.805)
6507
wedge_9.Material = Enum.Material.Metal
6508
wedge_9.Orientation = Vector3.new(89.78, -53.03, 53.1)
6509
wedge_9.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6510
wedge_9.BrickColor = BrickColor.new("Really black")
6511
wedge_9.BackSurface = Enum.SurfaceType.Weld
6512
wedge_9.BottomSurface = Enum.SurfaceType.Weld
6513
wedge_9.Parent = model
6514
wedge_9.CFrame = CFrame.new(-51.456, 12.213, 34.803) * CFrame.Angles(1.571, 0, 1.571)
6515
mesh_16.MeshType = Enum.MeshType.Wedge
6516
mesh_16.Parent = wedge_9
6517
wedgetowedge_strong_joint_2.Part1 = wedge_10
6518
wedgetowedge_strong_joint_2.C0 = CFrame.new(-0.127, -0.254, 1.903) * CFrame.Angles(0, -1.571, 0)
6519
wedgetowedge_strong_joint_2.C1 = CFrame.new(7.484, 2.972, 1.775) * CFrame.Angles(0, -1.571, 0)
6520
wedgetowedge_strong_joint_2.Part0 = wedge_9
6521
wedgetowedge_strong_joint_2.Name = "Wedge-to-Wedge Strong Joint"
6522
wedgetowedge_strong_joint_2.Parent = wedge_9
6523
wedge_11.Anchored = true
6524
wedge_11.Size = Vector3.new(6.596, 1.776, 1.522)
6525
wedge_11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6526
wedge_11.Material = Enum.Material.Metal
6527
wedge_11.Orientation = Vector3.new(-90, -180, 0)
6528
wedge_11.BrickColor = BrickColor.new("Really black")
6529
wedge_11.BackSurface = Enum.SurfaceType.Weld
6530
wedge_11.BottomSurface = Enum.SurfaceType.Weld
6531
wedge_11.Parent = model
6532
wedge_11.CFrame = CFrame.new(-48.406, 5.236, 46.726) * CFrame.Angles(-1.571, 0, -3.142)
6533
mesh_17.MeshType = Enum.MeshType.Wedge
6534
mesh_17.Parent = wedge_11
6535
wedge_12.Anchored = true
6536
wedge_12.Size = Vector3.new(6.596, 1.776, 1.522)
6537
wedge_12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6538
wedge_12.Material = Enum.Material.Metal
6539
wedge_12.Orientation = Vector3.new(-89.84, -152.3, -61.45)
6540
wedge_12.BrickColor = BrickColor.new("Really black")
6541
wedge_12.BackSurface = Enum.SurfaceType.Weld
6542
wedge_12.BottomSurface = Enum.SurfaceType.Weld
6543
wedge_12.Parent = model
6544
wedge_12.CFrame = CFrame.new(-35.214, 5.236, 46.726) * CFrame.Angles(-1.571, 0, -3.142)
6545
mesh_18.MeshType = Enum.MeshType.Wedge
6546
mesh_18.Parent = wedge_12
6547
wedge_13.Anchored = true
6548
wedge_13.Size = Vector3.new(27.906, 0.761, 1.522)
6549
wedge_13.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6550
wedge_13.Material = Enum.Material.Metal
6551
wedge_13.Orientation = Vector3.new(89.79, 44.04, 145.53)
6552
wedge_13.BrickColor = BrickColor.new("Really black")
6553
wedge_13.BackSurface = Enum.SurfaceType.Weld
6554
wedge_13.BottomSurface = Enum.SurfaceType.Weld
6555
wedge_13.Parent = model
6556
wedge_13.CFrame = CFrame.new(-38.892, 13.099, 20.724) * CFrame.Angles(1.571, 0, 1.571)
6557
mesh_19.MeshType = Enum.MeshType.Wedge
6558
mesh_19.Parent = wedge_13
6559
wedge_14.Anchored = true
6560
wedge_14.CanCollide = false
6561
wedge_14.Size = Vector3.new(0.507, 0.254, 3.298)
6562
wedge_14.Material = Enum.Material.Metal
6563
wedge_14.Orientation = Vector3.new(-90, 90, 0)
6564
wedge_14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6565
wedge_14.BrickColor = BrickColor.new("Really black")
6566
wedge_14.BackSurface = Enum.SurfaceType.Weld
6567
wedge_14.BottomSurface = Enum.SurfaceType.Weld
6568
wedge_14.Parent = model
6569
wedge_14.CFrame = CFrame.new(-32.55, 11.959, 46.091) * CFrame.Angles(-1.571, 0, 1.571)
6570
mesh_20.MeshType = Enum.MeshType.Wedge
6571
mesh_20.Parent = wedge_14
6572
wedge_15.Anchored = true
6573
wedge_15.CanCollide = false
6574
wedge_15.Size = Vector3.new(0.507, 0.507, 3.805)
6575
wedge_15.Material = Enum.Material.Metal
6576
wedge_15.Orientation = Vector3.new(90, 90, 0)
6577
wedge_15.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6578
wedge_15.BrickColor = BrickColor.new("Really black")
6579
wedge_15.BackSurface = Enum.SurfaceType.Weld
6580
wedge_15.BottomSurface = Enum.SurfaceType.Weld
6581
wedge_15.Parent = model
6582
wedge_15.CFrame = CFrame.new(-32.17, 12.213, 46.093) * CFrame.Angles(1.571, 0, -1.571)
6583
mesh_21.MeshType = Enum.MeshType.Wedge
6584
mesh_21.Parent = wedge_15
6585
wedge_16.Anchored = true
6586
wedge_16.CanCollide = false
6587
wedge_16.Size = Vector3.new(0.507, 0.254, 3.298)
6588
wedge_16.Material = Enum.Material.Metal
6589
wedge_16.Orientation = Vector3.new(-90, -90, 0)
6590
wedge_16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6591
wedge_16.BrickColor = BrickColor.new("Really black")
6592
wedge_16.BackSurface = Enum.SurfaceType.Weld
6593
wedge_16.BottomSurface = Enum.SurfaceType.Weld
6594
wedge_16.Parent = model
6595
wedge_16.CFrame = CFrame.new(-51.069, 11.959, 46.092) * CFrame.Angles(-1.571, 0, -1.571)
6596
mesh_22.MeshType = Enum.MeshType.Wedge
6597
mesh_22.Parent = wedge_16
6598
wedge_17.Anchored = true
6599
wedge_17.Size = Vector3.new(12.938, 4.575, 1.268)
6600
wedge_17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6601
wedge_17.Material = Enum.Material.Metal
6602
wedge_17.Orientation = Vector3.new(89.79, 44.26, -34.08)
6603
wedge_17.BrickColor = BrickColor.new("Really black")
6604
wedge_17.BackSurface = Enum.SurfaceType.Weld
6605
wedge_17.BottomSurface = Enum.SurfaceType.Weld
6606
wedge_17.Parent = model
6607
wedge_17.CFrame = CFrame.new(-47.395, 14.495, 13.239) * CFrame.Angles(1.571, 0, -1.571)
6608
mesh_23.MeshType = Enum.MeshType.Wedge
6609
mesh_23.Parent = wedge_17
6610
wedge_18.Anchored = true
6611
wedge_18.CanCollide = false
6612
wedge_18.Size = Vector3.new(0.507, 0.507, 3.805)
6613
wedge_18.Material = Enum.Material.Metal
6614
wedge_18.Orientation = Vector3.new(89.79, 67.73, -19.1)
6615
wedge_18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6616
wedge_18.BrickColor = BrickColor.new("Really black")
6617
wedge_18.BackSurface = Enum.SurfaceType.Weld
6618
wedge_18.BottomSurface = Enum.SurfaceType.Weld
6619
wedge_18.Parent = model
6620
wedge_18.CFrame = CFrame.new(-32.169, 12.215, 42.287) * CFrame.Angles(1.571, 0, -1.571)
6621
mesh_24.MeshType = Enum.MeshType.Wedge
6622
mesh_24.Parent = wedge_18
6623
wedge_10.Anchored = true
6624
wedge_10.CanCollide = false
6625
wedge_10.Size = Vector3.new(14.968, 6.437, 3.552)
6626
wedge_10.Material = Enum.Material.Metal
6627
wedge_10.Orientation = Vector3.new(89.76, 45.32, 146.16)
6628
wedge_10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6629
wedge_10.BrickColor = BrickColor.new("Really black")
6630
wedge_10.BackSurface = Enum.SurfaceType.Weld
6631
wedge_10.BottomSurface = Enum.SurfaceType.Weld
6632
wedge_10.Parent = model
6633
wedge_10.CFrame = CFrame.new(-48.231, 12.085, 27.192) * CFrame.Angles(1.571, 0, 1.571)
6634
mesh_25.MeshType = Enum.MeshType.Wedge
6635
mesh_25.Parent = wedge_10
6636
wedge_19.Anchored = true
6637
wedge_19.Size = Vector3.new(12.938, 2.03, 1.268)
6638
wedge_19.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6639
wedge_19.Material = Enum.Material.Metal
6640
wedge_19.Orientation = Vector3.new(89.79, 45.39, 146.37)
6641
wedge_19.BrickColor = BrickColor.new("Really black")
6642
wedge_19.BackSurface = Enum.SurfaceType.Weld
6643
wedge_19.BottomSurface = Enum.SurfaceType.Weld
6644
wedge_19.Parent = model
6645
wedge_19.CFrame = CFrame.new(-50.689, 14.495, 13.239) * CFrame.Angles(1.571, 0, 1.571)
6646
mesh_26.MeshType = Enum.MeshType.Wedge
6647
mesh_26.Parent = wedge_19
6648
wedge_20.Anchored = true
6649
wedge_20.Size = Vector3.new(27.906, 3.693, 1.015)
6650
wedge_20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6651
wedge_20.Material = Enum.Material.Metal
6652
wedge_20.Orientation = Vector3.new(89.79, 40.36, -34.02)
6653
wedge_20.BrickColor = BrickColor.new("Really black")
6654
wedge_20.BackSurface = Enum.SurfaceType.Weld
6655
wedge_20.BottomSurface = Enum.SurfaceType.Weld
6656
wedge_20.Parent = model
6657
wedge_20.CFrame = CFrame.new(-43.909, 11.832, 20.723) * CFrame.Angles(1.571, 0, -1.571)
6658
mesh_27.MeshType = Enum.MeshType.Wedge
6659
mesh_27.Parent = wedge_20
6660
wedge_21.Anchored = true
6661
wedge_21.CanCollide = false
6662
wedge_21.Size = Vector3.new(0.254, 0.254, 3.298)
6663
wedge_21.Material = Enum.Material.Metal
6664
wedge_21.Orientation = Vector3.new(-89.78, -153.91, 44.58)
6665
wedge_21.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6666
wedge_21.BrickColor = BrickColor.new("Really black")
6667
wedge_21.BackSurface = Enum.SurfaceType.Weld
6668
wedge_21.BottomSurface = Enum.SurfaceType.Weld
6669
wedge_21.Parent = model
6670
wedge_21.CFrame = CFrame.new(-51.076, 11.959, 34.802) * CFrame.Angles(-1.571, 0, -1.571)
6671
mesh_28.MeshType = Enum.MeshType.Wedge
6672
mesh_28.Parent = wedge_21
6673
wedgetowedge_strong_joint_3.Part1 = wedge_10
6674
wedgetowedge_strong_joint_3.C0 = CFrame.new(-0.127, -0.127, 1.649) * CFrame.Angles(0, -1.571, 0)
6675
wedgetowedge_strong_joint_3.C1 = CFrame.new(7.484, 2.972, -1.522) * CFrame.Angles(3.142, -1.571, 0)
6676
wedgetowedge_strong_joint_3.Part0 = wedge_21
6677
wedgetowedge_strong_joint_3.Name = "Wedge-to-Wedge Strong Joint"
6678
wedgetowedge_strong_joint_3.Parent = wedge_21
6679
wedge_22.Anchored = true
6680
wedge_22.Size = Vector3.new(27.906, 3.593, 1.015)
6681
wedge_22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6682
wedge_22.Material = Enum.Material.Metal
6683
wedge_22.Orientation = Vector3.new(89.85, 39.17, 147.56)
6684
wedge_22.BrickColor = BrickColor.new("Really black")
6685
wedge_22.BackSurface = Enum.SurfaceType.Weld
6686
wedge_22.BottomSurface = Enum.SurfaceType.Weld
6687
wedge_22.Parent = model
6688
wedge_22.CFrame = CFrame.new(-39.76, 11.832, 20.723) * CFrame.Angles(1.571, 0, 1.571)
6689
mesh_29.MeshType = Enum.MeshType.Wedge
6690
mesh_29.Parent = wedge_22
6691
wedge_23.Anchored = true
6692
wedge_23.CanCollide = false
6693
wedge_23.Size = Vector3.new(0.254, 0.254, 3.298)
6694
wedge_23.Material = Enum.Material.Metal
6695
wedge_23.Orientation = Vector3.new(-89.84, -134.63, -145.18)
6696
wedge_23.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6697
wedge_23.BrickColor = BrickColor.new("Really black")
6698
wedge_23.BackSurface = Enum.SurfaceType.Weld
6699
wedge_23.BottomSurface = Enum.SurfaceType.Weld
6700
wedge_23.Parent = model
6701
wedge_23.CFrame = CFrame.new(-32.55, 11.959, 34.803) * CFrame.Angles(-1.571, 0, 1.571)
6702
mesh_30.MeshType = Enum.MeshType.Wedge
6703
mesh_30.Parent = wedge_23
6704
wedgetowedge_strong_joint_4.Part1 = wedge
6705
wedgetowedge_strong_joint_4.C0 = CFrame.new(0.127, -0.127, -1.649) * CFrame.Angles(0, 1.571, 0)
6706
wedgetowedge_strong_joint_4.C1 = CFrame.new(-7.483, 2.905, 1.775) * CFrame.Angles(-3.142, 1.571, 0)
6707
wedgetowedge_strong_joint_4.Part0 = wedge_23
6708
wedgetowedge_strong_joint_4.Name = "Wedge-to-Wedge Strong Joint"
6709
wedgetowedge_strong_joint_4.Parent = wedge_23
6710
wedge_24.Anchored = true
6711
wedge_24.Size = Vector3.new(12.938, 4.675, 1.198)
6712
wedge_24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6713
wedge_24.Material = Enum.Material.Metal
6714
wedge_24.Orientation = Vector3.new(89.79, 43.15, 145.58)
6715
wedge_24.BrickColor = BrickColor.new("Really black")
6716
wedge_24.BackSurface = Enum.SurfaceType.Weld
6717
wedge_24.BottomSurface = Enum.SurfaceType.Weld
6718
wedge_24.Parent = model
6719
wedge_24.CFrame = CFrame.new(-36.174, 14.46, 13.238) * CFrame.Angles(1.571, 0, 1.571)
6720
mesh_31.MeshType = Enum.MeshType.Wedge
6721
mesh_31.Parent = wedge_24
6722
wedge_25.Anchored = true
6723
wedge_25.Size = Vector3.new(27.906, 0.761, 1.522)
6724
wedge_25.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6725
wedge_25.Material = Enum.Material.Metal
6726
wedge_25.Orientation = Vector3.new(90, 90, 0)
6727
wedge_25.BrickColor = BrickColor.new("Really black")
6728
wedge_25.BackSurface = Enum.SurfaceType.Weld
6729
wedge_25.BottomSurface = Enum.SurfaceType.Weld
6730
wedge_25.Parent = model
6731
wedge_25.CFrame = CFrame.new(-44.727, 13.1, 20.722) * CFrame.Angles(1.571, 0, -1.571)
6732
mesh_32.MeshType = Enum.MeshType.Wedge
6733
mesh_32.Parent = wedge_25
6734
wedge_26.Anchored = true
6735
wedge_26.Size = Vector3.new(12.938, 2.03, 1.268)
6736
wedge_26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6737
wedge_26.Material = Enum.Material.Metal
6738
wedge_26.Orientation = Vector3.new(89.79, 41.33, -34.55)
6739
wedge_26.BrickColor = BrickColor.new("Really black")
6740
wedge_26.BackSurface = Enum.SurfaceType.Weld
6741
wedge_26.BottomSurface = Enum.SurfaceType.Weld
6742
wedge_26.Parent = model
6743
wedge_26.CFrame = CFrame.new(-32.931, 14.495, 13.239) * CFrame.Angles(1.571, 0, -1.571)
6744
mesh_33.MeshType = Enum.MeshType.Wedge
6745
mesh_33.Parent = wedge_26
6746
emblem.Anchored = true
6747
emblem.CanCollide = false
6748
emblem.Size = Vector3.new(4.566, 4.313, 0.254)
6749
emblem.Name = "Emblem"
6750
emblem.BrickColor = BrickColor.new("Really black")
6751
emblem.Material = Enum.Material.Metal
6752
emblem.Orientation = Vector3.new(0, 90, 0)
6753
emblem.BackSurface = Enum.SurfaceType.Weld
6754
emblem.LeftSurface = Enum.SurfaceType.Weld
6755
emblem.RightSurface = Enum.SurfaceType.Weld
6756
emblem.FrontSurface = Enum.SurfaceType.Weld
6757
emblem.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6758
emblem.BottomSurface = Enum.SurfaceType.Weld
6759
emblem.TopSurface = Enum.SurfaceType.Weld
6760
emblem.Parent = model
6761
emblem.CFrame = CFrame.new(-51.83, 8.154, 39.496) * CFrame.Angles(0, 1.571, 0)
6762
mesh_34.Offset = Vector3.new(0, 0, 0.2)
6763
mesh_34.Parent = emblem
6764
part_8.Anchored = true
6765
part_8.CanCollide = false
6766
part_8.Size = Vector3.new(5.581, 3.298, 0.254)
6767
part_8.Transparency = 0.5
6768
part_8.Orientation = Vector3.new(0, -180, 0)
6769
part_8.BrickColor = BrickColor.new("Really black")
6770
part_8.Material = Enum.Material.Ice
6771
part_8.BackSurface = Enum.SurfaceType.Weld
6772
part_8.LeftSurface = Enum.SurfaceType.Weld
6773
part_8.RightSurface = Enum.SurfaceType.Weld
6774
part_8.FrontSurface = Enum.SurfaceType.Weld
6775
part_8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6776
part_8.BottomSurface = Enum.SurfaceType.Weld
6777
part_8.TopSurface = Enum.SurfaceType.Weld
6778
part_8.Parent = model
6779
part_8.CFrame = CFrame.new(-35.214, 11.959, 46.472) * CFrame.Angles(3.142, 0, 3.142)
6780
mesh_35.Offset = Vector3.new(0, 0, 0.2)
6781
mesh_35.Scale = Vector3.new(1, 1.15, 0.5)
6782
mesh_35.Parent = part_8
6783
part_9.Anchored = true
6784
part_9.CanCollide = false
6785
part_9.Size = Vector3.new(5.581, 2.283, 0.254)
6786
part_9.Transparency = 0.5
6787
part_9.Orientation = Vector3.new(0, -90, 0)
6788
part_9.BrickColor = BrickColor.new("Really black")
6789
part_9.Material = Enum.Material.Ice
6790
part_9.BackSurface = Enum.SurfaceType.Weld
6791
part_9.LeftSurface = Enum.SurfaceType.Weld
6792
part_9.RightSurface = Enum.SurfaceType.Weld
6793
part_9.FrontSurface = Enum.SurfaceType.Weld
6794
part_9.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6795
part_9.BottomSurface = Enum.SurfaceType.Weld
6796
part_9.TopSurface = Enum.SurfaceType.Weld
6797
part_9.Parent = model
6798
part_9.CFrame = CFrame.new(-44.981, 12.466, 43.301) * CFrame.Angles(0, -1.571, 0)
6799
mesh_36.Offset = Vector3.new(0, 0, 0.2)
6800
mesh_36.Scale = Vector3.new(1, 1.15, 0.5)
6801
mesh_36.Parent = part_9
6802
part_10.Anchored = true
6803
part_10.CanCollide = false
6804
part_10.Size = Vector3.new(14.968, 1.776, 0.507)
6805
part_10.FrontSurface = Enum.SurfaceType.Weld
6806
part_10.Orientation = Vector3.new(0, -90, 0)
6807
part_10.Material = Enum.Material.Metal
6808
part_10.BrickColor = BrickColor.new("Really black")
6809
part_10.BackSurface = Enum.SurfaceType.Weld
6810
part_10.RightSurface = Enum.SurfaceType.Weld
6811
part_10.LeftSurface = Enum.SurfaceType.Weld
6812
part_10.BottomSurface = Enum.SurfaceType.Weld
6813
part_10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6814
part_10.TopSurface = Enum.SurfaceType.Weld
6815
part_10.Parent = model
6816
part_10.CFrame = CFrame.new(-32.423, 9.422, 27.192) * CFrame.Angles(0, -1.571, 0)
6817
part_11.Anchored = true
6818
part_11.CanCollide = false
6819
part_11.Size = Vector3.new(0.254, 5.327, 5.581)
6820
part_11.FrontSurface = Enum.SurfaceType.Weld
6821
part_11.Orientation = Vector3.new(0, -90, 0)
6822
part_11.Material = Enum.Material.Metal
6823
part_11.BrickColor = BrickColor.new("Really black")
6824
part_11.BackSurface = Enum.SurfaceType.Weld
6825
part_11.RightSurface = Enum.SurfaceType.Weld
6826
part_11.LeftSurface = Enum.SurfaceType.Weld
6827
part_11.BottomSurface = Enum.SurfaceType.Weld
6828
part_11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6829
part_11.TopSurface = Enum.SurfaceType.Weld
6830
part_11.Parent = model
6831
part_11.CFrame = CFrame.new(-35.214, 11.198, 34.803) * CFrame.Angles(0, -1.571, 0)
6832
part_12.Anchored = true
6833
part_12.CanCollide = false
6834
part_12.Size = Vector3.new(11.722, 0.554, 6.089)
6835
part_12.FrontSurface = Enum.SurfaceType.Weld
6836
part_12.Orientation = Vector3.new(0, -90, 0)
6837
part_12.Material = Enum.Material.Metal
6838
part_12.BrickColor = BrickColor.new("Really black")
6839
part_12.BackSurface = Enum.SurfaceType.Weld
6840
part_12.RightSurface = Enum.SurfaceType.Weld
6841
part_12.LeftSurface = Enum.SurfaceType.Weld
6842
part_12.BottomSurface = Enum.SurfaceType.Weld
6843
part_12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6844
part_12.TopSurface = Enum.SurfaceType.Weld
6845
part_12.Parent = model
6846
part_12.CFrame = CFrame.new(-35.467, 13.839, 40.537) * CFrame.Angles(0, -1.571, 0)
6847
part_13.Anchored = true
6848
part_13.CanCollide = false
6849
part_13.Size = Vector3.new(56.696, 5.694, 6.596)
6850
part_13.FrontSurface = Enum.SurfaceType.Weld
6851
part_13.Orientation = Vector3.new(0, -90, 0)
6852
part_13.Material = Enum.Material.Metal
6853
part_13.BrickColor = BrickColor.new("Really black")
6854
part_13.BackSurface = Enum.SurfaceType.Weld
6855
part_13.RightSurface = Enum.SurfaceType.Weld
6856
part_13.LeftSurface = Enum.SurfaceType.Weld
6857
part_13.BottomSurface = Enum.SurfaceType.Weld
6858
part_13.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6859
part_13.TopSurface = Enum.SurfaceType.Weld
6860
part_13.Parent = model
6861
part_13.CFrame = CFrame.new(-41.81, 8.478, 19.248) * CFrame.Angles(0, -1.571, 0)
6862
part_14.Anchored = true
6863
part_14.Size = Vector3.new(7.864, 2.791, 3.298)
6864
part_14.BrickColor = BrickColor.new("Really black")
6865
part_14.FrontSurface = Enum.SurfaceType.Weld
6866
part_14.Material = Enum.Material.Metal
6867
part_14.Orientation = Vector3.new(0, -90, 0)
6868
part_14.BackSurface = Enum.SurfaceType.Weld
6869
part_14.RightSurface = Enum.SurfaceType.Weld
6870
part_14.LeftSurface = Enum.SurfaceType.Weld
6871
part_14.BottomSurface = Enum.SurfaceType.Weld
6872
part_14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6873
part_14.TopSurface = Enum.SurfaceType.Weld
6874
part_14.Parent = model
6875
part_14.CFrame = CFrame.new(-49.294, 13.48, -5.534) * CFrame.Angles(0, -1.571, 0)
6876
part_15.Anchored = true
6877
part_15.CanCollide = false
6878
part_15.Size = Vector3.new(0.761, 42.366, 1.522)
6879
part_15.Transparency = 1
6880
part_15.Orientation = Vector3.new(23.96, 90, -90)
6881
part_15.BrickColor = BrickColor.new("Really black")
6882
part_15.Material = Enum.Material.Metal
6883
part_15.BackSurface = Enum.SurfaceType.Weld
6884
part_15.LeftSurface = Enum.SurfaceType.Weld
6885
part_15.RightSurface = Enum.SurfaceType.Weld
6886
part_15.FrontSurface = Enum.SurfaceType.Weld
6887
part_15.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6888
part_15.BottomSurface = Enum.SurfaceType.Weld
6889
part_15.TopSurface = Enum.SurfaceType.Weld
6890
part_15.Parent = model
6891
part_15.CFrame = CFrame.new(-42.63, 11.993, 7.567) * CFrame.Angles(1.571, 1.153, 3.142)
6892
mesh_42.Offset = Vector3.new(6.5, 0, 0)
6893
mesh_42.Scale = Vector3.new(2, 1.5, 1.6)
6894
mesh_42.Parent = part_15
6895
part_16.Anchored = true
6896
part_16.CanCollide = false
6897
part_16.Size = Vector3.new(11.712, 0.544, 6.089)
6898
part_16.FrontSurface = Enum.SurfaceType.Weld
6899
part_16.Orientation = Vector3.new(0, -90, 0)
6900
part_16.Material = Enum.Material.Metal
6901
part_16.BrickColor = BrickColor.new("Really black")
6902
part_16.BackSurface = Enum.SurfaceType.Weld
6903
part_16.RightSurface = Enum.SurfaceType.Weld
6904
part_16.LeftSurface = Enum.SurfaceType.Weld
6905
part_16.BottomSurface = Enum.SurfaceType.Weld
6906
part_16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6907
part_16.TopSurface = Enum.SurfaceType.Weld
6908
part_16.Parent = model
6909
part_16.CFrame = CFrame.new(-48.152, 13.843, 40.532) * CFrame.Angles(0, -1.571, 0)
6910
brick.Anchored = true
6911
brick.CanCollide = false
6912
brick.Size = Vector3.new(2.537, 0.254, 1.522)
6913
brick.Name = "Brick"
6914
brick.Transparency = 1
6915
brick.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6916
brick.Orientation = Vector3.new(-81.87, 90, 0)
6917
brick.FrontSurface = Enum.SurfaceType.Weld
6918
brick.BrickColor = BrickColor.new("Really black")
6919
brick.LeftSurface = Enum.SurfaceType.Weld
6920
brick.BottomSurface = Enum.SurfaceType.Weld
6921
brick.Material = Enum.Material.Metal
6922
brick.RightSurface = Enum.SurfaceType.Weld
6923
brick.TopSurface = Enum.SurfaceType.Weld
6924
brick.BackSurface = Enum.SurfaceType.Weld
6925
brick.Parent = model
6926
brick.CFrame = CFrame.new(-51.247, 12.623, 32.646) * CFrame.Angles(-1.571, 0.142, 1.571)
6927
mesh_44.Offset = Vector3.new(0, -0.19, 0)
6928
mesh_44.Parent = brick
6929
emblem_2.Anchored = true
6930
emblem_2.CanCollide = false
6931
emblem_2.Size = Vector3.new(4.566, 4.313, 0.254)
6932
emblem_2.Name = "Emblem"
6933
emblem_2.BrickColor = BrickColor.new("Really black")
6934
emblem_2.Material = Enum.Material.Metal
6935
emblem_2.Orientation = Vector3.new(0, -90, 0)
6936
emblem_2.BackSurface = Enum.SurfaceType.Weld
6937
emblem_2.LeftSurface = Enum.SurfaceType.Weld
6938
emblem_2.RightSurface = Enum.SurfaceType.Weld
6939
emblem_2.FrontSurface = Enum.SurfaceType.Weld
6940
emblem_2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6941
emblem_2.BottomSurface = Enum.SurfaceType.Weld
6942
emblem_2.TopSurface = Enum.SurfaceType.Weld
6943
emblem_2.Parent = model
6944
emblem_2.CFrame = CFrame.new(-31.789, 8.153, 39.496) * CFrame.Angles(0, -1.571, 0)
6945
mesh_45.Offset = Vector3.new(0, 0, 0.2)
6946
mesh_45.Parent = emblem_2
6947
part_17.Anchored = true
6948
part_17.CanCollide = false
6949
part_17.Size = Vector3.new(5.581, 3.298, 0.254)
6950
part_17.Transparency = 0.5
6951
part_17.Orientation = Vector3.new(0, -180, 0)
6952
part_17.BrickColor = BrickColor.new("Really black")
6953
part_17.Material = Enum.Material.Ice
6954
part_17.BackSurface = Enum.SurfaceType.Weld
6955
part_17.LeftSurface = Enum.SurfaceType.Weld
6956
part_17.RightSurface = Enum.SurfaceType.Weld
6957
part_17.FrontSurface = Enum.SurfaceType.Weld
6958
part_17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6959
part_17.BottomSurface = Enum.SurfaceType.Weld
6960
part_17.TopSurface = Enum.SurfaceType.Weld
6961
part_17.Parent = model
6962
part_17.CFrame = CFrame.new(-48.405, 11.959, 46.472) * CFrame.Angles(3.142, 0, 3.142)
6963
mesh_46.Offset = Vector3.new(0, 0, 0.2)
6964
mesh_46.Scale = Vector3.new(1, 1.15, 0.5)
6965
mesh_46.Parent = part_17
6966
part_18.Anchored = true
6967
part_18.CanCollide = false
6968
part_18.Size = Vector3.new(0.507, 3.298, 0.507)
6969
part_18.FrontSurface = Enum.SurfaceType.Weld
6970
part_18.Orientation = Vector3.new(0, -90, 0)
6971
part_18.Material = Enum.Material.Metal
6972
part_18.BrickColor = BrickColor.new("Really black")
6973
part_18.BackSurface = Enum.SurfaceType.Weld
6974
part_18.RightSurface = Enum.SurfaceType.Weld
6975
part_18.LeftSurface = Enum.SurfaceType.Weld
6976
part_18.BottomSurface = Enum.SurfaceType.Weld
6977
part_18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6978
part_18.TopSurface = Enum.SurfaceType.Weld
6979
part_18.Parent = model
6980
part_18.CFrame = CFrame.new(-45.361, 11.959, 46.092) * CFrame.Angles(0, -1.571, 0)
6981
part_19.Anchored = true
6982
part_19.CanCollide = false
6983
part_19.Size = Vector3.new(11.225, 3.098, 0.254)
6984
part_19.Transparency = 0.5
6985
part_19.Orientation = Vector3.new(7.6, 90, 0)
6986
part_19.BrickColor = BrickColor.new("Really black")
6987
part_19.Material = Enum.Material.Ice
6988
part_19.BackSurface = Enum.SurfaceType.Weld
6989
part_19.LeftSurface = Enum.SurfaceType.Weld
6990
part_19.RightSurface = Enum.SurfaceType.Weld
6991
part_19.FrontSurface = Enum.SurfaceType.Weld
6992
part_19.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6993
part_19.BottomSurface = Enum.SurfaceType.Weld
6994
part_19.TopSurface = Enum.SurfaceType.Weld
6995
part_19.Parent = model
6996
part_19.CFrame = CFrame.new(-51.6, 12.095, 40.479) * CFrame.Angles(1.571, 1.438, -1.571)
6997
mesh_48.Offset = Vector3.new(0, 0, 0.2)
6998
mesh_48.Scale = Vector3.new(1, 1.15, 0.5)
6999
mesh_48.Parent = part_19
7000
part_20.Anchored = true
7001
part_20.CanCollide = false
7002
part_20.Size = Vector3.new(4.313, 1.015, 6.596)
7003
part_20.FrontSurface = Enum.SurfaceType.Weld
7004
part_20.Orientation = Vector3.new(0, -90, 0)
7005
part_20.Material = Enum.Material.Metal
7006
part_20.BrickColor = BrickColor.new("Really black")
7007
part_20.BackSurface = Enum.SurfaceType.Weld
7008
part_20.RightSurface = Enum.SurfaceType.Weld
7009
part_20.LeftSurface = Enum.SurfaceType.Weld
7010
part_20.BottomSurface = Enum.SurfaceType.Weld
7011
part_20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7012
part_20.TopSurface = Enum.SurfaceType.Weld
7013
part_20.Parent = model
7014
part_20.CFrame = CFrame.new(-41.81, 10.563, 4.614) * CFrame.Angles(0, -1.571, 0)
7015
part_21.Anchored = true
7016
part_21.CanCollide = false
7017
part_21.Size = Vector3.new(5.074, 4.566, 0.507)
7018
part_21.FrontSurface = Enum.SurfaceType.Weld
7019
part_21.Orientation = Vector3.new(0, -90, 0)
7020
part_21.Material = Enum.Material.Metal
7021
part_21.BrickColor = BrickColor.new("Really black")
7022
part_21.BackSurface = Enum.SurfaceType.Weld
7023
part_21.RightSurface = Enum.SurfaceType.Weld
7024
part_21.LeftSurface = Enum.SurfaceType.Weld
7025
part_21.BottomSurface = Enum.SurfaceType.Weld
7026
part_21.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7027
part_21.TopSurface = Enum.SurfaceType.Weld
7028
part_21.Parent = model
7029
part_21.CFrame = CFrame.new(-45.361, 9.042, 43.301) * CFrame.Angles(0, -1.571, 0)
7030
part_22.Anchored = true
7031
part_22.CanCollide = false
7032
part_22.Size = Vector3.new(1.015, 4.716, 6.596)
7033
part_22.FrontSurface = Enum.SurfaceType.Weld
7034
part_22.Orientation = Vector3.new(0, -90, 0)
7035
part_22.Material = Enum.Material.Metal
7036
part_22.BrickColor = BrickColor.new("Really black")
7037
part_22.BackSurface = Enum.SurfaceType.Weld
7038
part_22.RightSurface = Enum.SurfaceType.Weld
7039
part_22.LeftSurface = Enum.SurfaceType.Weld
7040
part_22.BottomSurface = Enum.SurfaceType.Weld
7041
part_22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7042
part_22.TopSurface = Enum.SurfaceType.Weld
7043
part_22.Parent = model
7044
part_22.CFrame = CFrame.new(-48.406, 7.698, -7.69) * CFrame.Angles(0, -1.571, 0)
7045
part_23.Anchored = true
7046
part_23.CanCollide = false
7047
part_23.Size = Vector3.new(7.357, 0.507, 0.254)
7048
part_23.FrontSurface = Enum.SurfaceType.Weld
7049
part_23.Orientation = Vector3.new(7.6, 90, 0)
7050
part_23.Material = Enum.Material.Metal
7051
part_23.BrickColor = BrickColor.new("Really black")
7052
part_23.BackSurface = Enum.SurfaceType.Weld
7053
part_23.RightSurface = Enum.SurfaceType.Weld
7054
part_23.LeftSurface = Enum.SurfaceType.Weld
7055
part_23.BottomSurface = Enum.SurfaceType.Weld
7056
part_23.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7057
part_23.TopSurface = Enum.SurfaceType.Weld
7058
part_23.Parent = model
7059
part_23.CFrame = CFrame.new(-51.797, 10.612, 38.354) * CFrame.Angles(1.571, 1.438, -1.571)
7060
mesh_52.Offset = Vector3.new(0, 0, 0.2)
7061
mesh_52.Scale = Vector3.new(1, 1.15, 1)
7062
mesh_52.Parent = part_23
7063
part_24.Anchored = true
7064
part_24.CanCollide = false
7065
part_24.Size = Vector3.new(7.103, 2.283, 7.103)
7066
part_24.BrickColor = BrickColor.new("Black")
7067
part_24.Orientation = Vector3.new(0, -180, -90)
7068
part_24.Material = Enum.Material.Metal
7069
part_24.RightSurface = Enum.SurfaceType.Weld
7070
part_24.FrontSurface = Enum.SurfaceType.Weld
7071
part_24.LeftSurface = Enum.SurfaceType.Weld
7072
part_24.BottomSurface = Enum.SurfaceType.Weld
7073
part_24.Color = Color3.new(0.105882, 0.164706, 0.207843)
7074
part_24.TopSurface = Enum.SurfaceType.Smooth
7075
part_24.Parent = model
7076
part_24.CFrame = CFrame.new(-50.816, 4.475, -3.631) * CFrame.Angles(3.142, 0, 1.571)
7077
part_25.Anchored = true
7078
part_25.CanCollide = false
7079
part_25.Size = Vector3.new(1.668, 4.381, 6.596)
7080
part_25.FrontSurface = Enum.SurfaceType.Weld
7081
part_25.Orientation = Vector3.new(0, -90, 0)
7082
part_25.Material = Enum.Material.Metal
7083
part_25.BrickColor = BrickColor.new("Really black")
7084
part_25.BackSurface = Enum.SurfaceType.Weld
7085
part_25.RightSurface = Enum.SurfaceType.Weld
7086
part_25.LeftSurface = Enum.SurfaceType.Weld
7087
part_25.BottomSurface = Enum.SurfaceType.Weld
7088
part_25.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7089
part_25.TopSurface = Enum.SurfaceType.Weld
7090
part_25.Parent = model
7091
part_25.CFrame = CFrame.new(-35.214, 8.12, 46.672) * CFrame.Angles(0, -1.571, 0)
7092
part_26.Anchored = true
7093
part_26.Size = Vector3.new(7.103, 1.015, 2.283)
7094
part_26.BrickColor = BrickColor.new("Really black")
7095
part_26.FrontSurface = Enum.SurfaceType.Weld
7096
part_26.Material = Enum.Material.Metal
7097
part_26.Orientation = Vector3.new(0, -90, 0)
7098
part_26.BackSurface = Enum.SurfaceType.Weld
7099
part_26.RightSurface = Enum.SurfaceType.Weld
7100
part_26.LeftSurface = Enum.SurfaceType.Weld
7101
part_26.BottomSurface = Enum.SurfaceType.Weld
7102
part_26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7103
part_26.TopSurface = Enum.SurfaceType.Weld
7104
part_26.Parent = model
7105
part_26.CFrame = CFrame.new(-34.326, 11.578, -5.407) * CFrame.Angles(0, -1.571, 0)
7106
part_27.Anchored = true
7107
part_27.CanCollide = false
7108
part_27.Size = Vector3.new(7.103, 2.283, 7.103)
7109
part_27.BrickColor = BrickColor.new("Black")
7110
part_27.Orientation = Vector3.new(0, -180, -90)
7111
part_27.Material = Enum.Material.Metal
7112
part_27.RightSurface = Enum.SurfaceType.Weld
7113
part_27.FrontSurface = Enum.SurfaceType.Weld
7114
part_27.LeftSurface = Enum.SurfaceType.Weld
7115
part_27.BottomSurface = Enum.SurfaceType.Weld
7116
part_27.Color = Color3.new(0.105882, 0.164706, 0.207843)
7117
part_27.TopSurface = Enum.SurfaceType.Weld
7118
part_27.Parent = model
7119
part_27.CFrame = CFrame.new(-50.816, 4.475, 31.124) * CFrame.Angles(3.142, 0, 1.571)
7120
part_28.Anchored = true
7121
part_28.Size = Vector3.new(7.103, 1.015, 2.283)
7122
part_28.BrickColor = BrickColor.new("Really black")
7123
part_28.FrontSurface = Enum.SurfaceType.Weld
7124
part_28.Material = Enum.Material.Metal
7125
part_28.Orientation = Vector3.new(0, -90, 0)
7126
part_28.BackSurface = Enum.SurfaceType.Weld
7127
part_28.RightSurface = Enum.SurfaceType.Weld
7128
part_28.LeftSurface = Enum.SurfaceType.Weld
7129
part_28.BottomSurface = Enum.SurfaceType.Weld
7130
part_28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7131
part_28.TopSurface = Enum.SurfaceType.Weld
7132
part_28.Parent = model
7133
part_28.CFrame = CFrame.new(-49.294, 11.578, -5.407) * CFrame.Angles(0, -1.571, 0)
7134
part_29.Anchored = true
7135
part_29.CanCollide = false
7136
part_29.Size = Vector3.new(7.103, 2.283, 7.103)
7137
part_29.BrickColor = BrickColor.new("Black")
7138
part_29.Orientation = Vector3.new(0, 0, -90)
7139
part_29.Material = Enum.Material.Metal
7140
part_29.RightSurface = Enum.SurfaceType.Weld
7141
part_29.FrontSurface = Enum.SurfaceType.Weld
7142
part_29.LeftSurface = Enum.SurfaceType.Weld
7143
part_29.BottomSurface = Enum.SurfaceType.Weld
7144
part_29.Color = Color3.new(0.105882, 0.164706, 0.207843)
7145
part_29.TopSurface = Enum.SurfaceType.Weld
7146
part_29.Parent = model
7147
part_29.CFrame = CFrame.new(-32.804, 4.475, 22.752) * CFrame.Angles(0, 0, -1.571)
7148
part_30.Anchored = true
7149
part_30.CanCollide = false
7150
part_30.Size = Vector3.new(7.103, 2.283, 7.103)
7151
part_30.BrickColor = BrickColor.new("Black")
7152
part_30.Orientation = Vector3.new(0, 0, -90)
7153
part_30.Material = Enum.Material.Metal
7154
part_30.RightSurface = Enum.SurfaceType.Weld
7155
part_30.FrontSurface = Enum.SurfaceType.Weld
7156
part_30.LeftSurface = Enum.SurfaceType.Weld
7157
part_30.BottomSurface = Enum.SurfaceType.Weld
7158
part_30.Color = Color3.new(0.105882, 0.164706, 0.207843)
7159
part_30.TopSurface = Enum.SurfaceType.Weld
7160
part_30.Parent = model
7161
part_30.CFrame = CFrame.new(-32.804, 4.475, 5.501) * CFrame.Angles(0, 0, -1.571)
7162
part_31.Anchored = true
7163
part_31.CanCollide = false
7164
part_31.Size = Vector3.new(7.103, 2.283, 7.103)
7165
part_31.BrickColor = BrickColor.new("Black")
7166
part_31.Orientation = Vector3.new(0, -180, -90)
7167
part_31.Material = Enum.Material.Metal
7168
part_31.RightSurface = Enum.SurfaceType.Weld
7169
part_31.FrontSurface = Enum.SurfaceType.Weld
7170
part_31.LeftSurface = Enum.SurfaceType.Weld
7171
part_31.BottomSurface = Enum.SurfaceType.Weld
7172
part_31.Color = Color3.new(0.105882, 0.164706, 0.207843)
7173
part_31.TopSurface = Enum.SurfaceType.Weld
7174
part_31.Parent = model
7175
part_31.CFrame = CFrame.new(-50.816, 4.475, 22.752) * CFrame.Angles(3.142, 0, 1.571)
7176
part_32.Anchored = true
7177
part_32.CanCollide = false
7178
part_32.Size = Vector3.new(7.103, 2.283, 7.103)
7179
part_32.BrickColor = BrickColor.new("Black")
7180
part_32.Orientation = Vector3.new(0, -180, -90)
7181
part_32.Material = Enum.Material.Metal
7182
part_32.RightSurface = Enum.SurfaceType.Weld
7183
part_32.FrontSurface = Enum.SurfaceType.Weld
7184
part_32.LeftSurface = Enum.SurfaceType.Weld
7185
part_32.BottomSurface = Enum.SurfaceType.Weld
7186
part_32.Color = Color3.new(0.105882, 0.164706, 0.207843)
7187
part_32.TopSurface = Enum.SurfaceType.Weld
7188
part_32.Parent = model
7189
part_32.CFrame = CFrame.new(-50.816, 4.475, 5.502) * CFrame.Angles(3.142, 0, 1.571)
7190
part_33.Anchored = true
7191
part_33.Size = Vector3.new(6.596, 1.522, 5.074)
7192
part_33.BrickColor = BrickColor.new("Really black")
7193
part_33.FrontSurface = Enum.SurfaceType.Weld
7194
part_33.Material = Enum.Material.Metal
7195
part_33.Orientation = Vector3.new(0, -90, 0)
7196
part_33.BackSurface = Enum.SurfaceType.Weld
7197
part_33.RightSurface = Enum.SurfaceType.Weld
7198
part_33.LeftSurface = Enum.SurfaceType.Weld
7199
part_33.BottomSurface = Enum.SurfaceType.Weld
7200
part_33.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7201
part_33.TopSurface = Enum.SurfaceType.Weld
7202
part_33.Parent = model
7203
part_33.CFrame = CFrame.new(-35.214, 11.832, 2.203) * CFrame.Angles(0, -1.571, 0)
7204
part_34.Anchored = true
7205
part_34.CanCollide = false
7206
part_34.Size = Vector3.new(7.103, 2.283, 7.103)
7207
part_34.BrickColor = BrickColor.new("Black")
7208
part_34.Orientation = Vector3.new(0, 0, -90)
7209
part_34.Material = Enum.Material.Metal
7210
part_34.RightSurface = Enum.SurfaceType.Weld
7211
part_34.FrontSurface = Enum.SurfaceType.Weld
7212
part_34.LeftSurface = Enum.SurfaceType.Weld
7213
part_34.BottomSurface = Enum.SurfaceType.Weld
7214
part_34.Color = Color3.new(0.105882, 0.164706, 0.207843)
7215
part_34.TopSurface = Enum.SurfaceType.Smooth
7216
part_34.Parent = model
7217
part_34.CFrame = CFrame.new(-32.804, 4.475, -3.631) * CFrame.Angles(0, 0, -1.571)
7218
part_35.Anchored = true
7219
part_35.CanCollide = false
7220
part_35.Size = Vector3.new(7.103, 2.283, 7.103)
7221
part_35.BrickColor = BrickColor.new("Black")
7222
part_35.Orientation = Vector3.new(0, 0, -90)
7223
part_35.Material = Enum.Material.Metal
7224
part_35.RightSurface = Enum.SurfaceType.Weld
7225
part_35.FrontSurface = Enum.SurfaceType.Weld
7226
part_35.LeftSurface = Enum.SurfaceType.Weld
7227
part_35.BottomSurface = Enum.SurfaceType.Weld
7228
part_35.Color = Color3.new(0.105882, 0.164706, 0.207843)
7229
part_35.TopSurface = Enum.SurfaceType.Weld
7230
part_35.Parent = model
7231
part_35.CFrame = CFrame.new(-32.804, 4.475, 31.124) * CFrame.Angles(0, 0, -1.571)
7232
part_36.Anchored = true
7233
part_36.Size = Vector3.new(7.864, 2.791, 3.298)
7234
part_36.BrickColor = BrickColor.new("Really black")
7235
part_36.FrontSurface = Enum.SurfaceType.Weld
7236
part_36.Material = Enum.Material.Metal
7237
part_36.Orientation = Vector3.new(0, -90, 0)
7238
part_36.BackSurface = Enum.SurfaceType.Weld
7239
part_36.RightSurface = Enum.SurfaceType.Weld
7240
part_36.LeftSurface = Enum.SurfaceType.Weld
7241
part_36.BottomSurface = Enum.SurfaceType.Weld
7242
part_36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7243
part_36.TopSurface = Enum.SurfaceType.Weld
7244
part_36.Parent = model
7245
part_36.CFrame = CFrame.new(-34.326, 13.481, -5.534) * CFrame.Angles(0, -1.571, 0)
7246
part_37.Anchored = true
7247
part_37.Size = Vector3.new(10.148, 1.522, 6.596)
7248
part_37.BrickColor = BrickColor.new("Really black")
7249
part_37.BackSurface = Enum.SurfaceType.Weld
7250
part_37.Material = Enum.Material.Metal
7251
part_37.Orientation = Vector3.new(0, -90, 0)
7252
part_37.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7253
part_37.RightSurface = Enum.SurfaceType.Weld
7254
part_37.TopSurface = Enum.SurfaceType.Weld
7255
part_37.LeftSurface = Enum.SurfaceType.Weld
7256
part_37.BottomSurface = Enum.SurfaceType.Weld
7257
part_37.Parent = model
7258
part_37.CFrame = CFrame.new(-35.214, 5.236, 40.764) * CFrame.Angles(0, -1.571, 0)
7259
part_38.Anchored = true
7260
part_38.Size = Vector3.new(14.968, 5.555, 6.596)
7261
part_38.BrickColor = BrickColor.new("Really black")
7262
part_38.FrontSurface = Enum.SurfaceType.Weld
7263
part_38.Material = Enum.Material.Metal
7264
part_38.Orientation = Vector3.new(0, -90, 0)
7265
part_38.BackSurface = Enum.SurfaceType.Weld
7266
part_38.RightSurface = Enum.SurfaceType.Weld
7267
part_38.LeftSurface = Enum.SurfaceType.Weld
7268
part_38.BottomSurface = Enum.SurfaceType.Weld
7269
part_38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7270
part_38.TopSurface = Enum.SurfaceType.Weld
7271
part_38.Parent = model
7272
part_38.CFrame = CFrame.new(-35.214, 8.293, -0.714) * CFrame.Angles(0, -1.571, 0)
7273
part_39.Anchored = true
7274
part_39.CanCollide = false
7275
part_39.Size = Vector3.new(0.507, 1.015, 6.596)
7276
part_39.FrontSurface = Enum.SurfaceType.Weld
7277
part_39.Orientation = Vector3.new(0, -90, 0)
7278
part_39.Material = Enum.Material.Metal
7279
part_39.BrickColor = BrickColor.new("Really black")
7280
part_39.BackSurface = Enum.SurfaceType.Weld
7281
part_39.RightSurface = Enum.SurfaceType.Weld
7282
part_39.LeftSurface = Enum.SurfaceType.Weld
7283
part_39.BottomSurface = Enum.SurfaceType.Weld
7284
part_39.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7285
part_39.TopSurface = Enum.SurfaceType.Weld
7286
part_39.Parent = model
7287
part_39.CFrame = CFrame.new(-35.214, 7.012, 18.693) * CFrame.Angles(0, -1.571, 0)
7288
part_40.Anchored = true
7289
part_40.CanCollide = false
7290
part_40.Size = Vector3.new(1.015, 1.776, 0.507)
7291
part_40.FrontSurface = Enum.SurfaceType.Weld
7292
part_40.Orientation = Vector3.new(0, -90, 0)
7293
part_40.Material = Enum.Material.Metal
7294
part_40.BrickColor = BrickColor.new("Really black")
7295
part_40.BackSurface = Enum.SurfaceType.Weld
7296
part_40.RightSurface = Enum.SurfaceType.Weld
7297
part_40.LeftSurface = Enum.SurfaceType.Weld
7298
part_40.BottomSurface = Enum.SurfaceType.Weld
7299
part_40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7300
part_40.TopSurface = Enum.SurfaceType.Weld
7301
part_40.Parent = model
7302
part_40.CFrame = CFrame.new(-51.45, 9.422, 35.183) * CFrame.Angles(0, -1.571, 0)
7303
part_41.Anchored = true
7304
part_41.CanCollide = false
7305
part_41.Size = Vector3.new(1.268, 4.421, 6.596)
7306
part_41.FrontSurface = Enum.SurfaceType.Weld
7307
part_41.Orientation = Vector3.new(0, -90, 0)
7308
part_41.Material = Enum.Material.Metal
7309
part_41.BrickColor = BrickColor.new("Really black")
7310
part_41.BackSurface = Enum.SurfaceType.Weld
7311
part_41.RightSurface = Enum.SurfaceType.Weld
7312
part_41.LeftSurface = Enum.SurfaceType.Weld
7313
part_41.BottomSurface = Enum.SurfaceType.Weld
7314
part_41.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7315
part_41.TopSurface = Enum.SurfaceType.Weld
7316
part_41.Parent = model
7317
part_41.CFrame = CFrame.new(-48.405, 8.1, 46.472) * CFrame.Angles(0, -1.571, 0)
7318
part_42.Anchored = true
7319
part_42.CanCollide = false
7320
part_42.Size = Vector3.new(5.074, 1.776, 0.507)
7321
part_42.FrontSurface = Enum.SurfaceType.Weld
7322
part_42.Orientation = Vector3.new(0, -90, 0)
7323
part_42.Material = Enum.Material.Metal
7324
part_42.BrickColor = BrickColor.new("Really black")
7325
part_42.BackSurface = Enum.SurfaceType.Weld
7326
part_42.RightSurface = Enum.SurfaceType.Weld
7327
part_42.LeftSurface = Enum.SurfaceType.Weld
7328
part_42.BottomSurface = Enum.SurfaceType.Weld
7329
part_42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7330
part_42.TopSurface = Enum.SurfaceType.Weld
7331
part_42.Parent = model
7332
part_42.CFrame = CFrame.new(-38.258, 7.646, 38.227) * CFrame.Angles(0, -1.571, 0)
7333
part_43.Anchored = true
7334
part_43.Size = Vector3.new(16.743, 2.03, 4.566)
7335
part_43.BottomSurface = Enum.SurfaceType.Weld
7336
part_43.Orientation = Vector3.new(0, -90, 0)
7337
part_43.Material = Enum.Material.Metal
7338
part_43.BrickColor = BrickColor.new("Really black")
7339
part_43.RightSurface = Enum.SurfaceType.Weld
7340
part_43.LeftSurface = Enum.SurfaceType.Weld
7341
part_43.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7342
part_43.TopSurface = Enum.SurfaceType.Weld
7343
part_43.Parent = model
7344
part_43.CFrame = CFrame.new(-36.228, 5.49, 27.319) * CFrame.Angles(0, -1.571, 0)
7345
mesh_72.Offset = Vector3.new(0, 0.8, 0)
7346
mesh_72.Scale = Vector3.new(1.1, 2, 1)
7347
mesh_72.Parent = part_43
7348
part_44.Anchored = true
7349
part_44.Size = Vector3.new(10.148, 0.761, 6.596)
7350
part_44.BrickColor = BrickColor.new("Really black")
7351
part_44.FrontSurface = Enum.SurfaceType.Weld
7352
part_44.Material = Enum.Material.Metal
7353
part_44.Orientation = Vector3.new(0, -90, 0)
7354
part_44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7355
part_44.RightSurface = Enum.SurfaceType.Weld
7356
part_44.TopSurface = Enum.SurfaceType.Weld
7357
part_44.LeftSurface = Enum.SurfaceType.Weld
7358
part_44.BottomSurface = Enum.SurfaceType.Weld
7359
part_44.Parent = model
7360
part_44.CFrame = CFrame.new(-48.405, 6.378, 40.764) * CFrame.Angles(0, -1.571, 0)
7361
part_45.Anchored = true
7362
part_45.CanCollide = false
7363
part_45.Size = Vector3.new(5.074, 7.103, 0.507)
7364
part_45.FrontSurface = Enum.SurfaceType.Weld
7365
part_45.Orientation = Vector3.new(0, -90, 0)
7366
part_45.Material = Enum.Material.Metal
7367
part_45.BrickColor = BrickColor.new("Really black")
7368
part_45.BackSurface = Enum.SurfaceType.Weld
7369
part_45.RightSurface = Enum.SurfaceType.Weld
7370
part_45.LeftSurface = Enum.SurfaceType.Weld
7371
part_45.BottomSurface = Enum.SurfaceType.Weld
7372
part_45.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7373
part_45.TopSurface = Enum.SurfaceType.Weld
7374
part_45.Parent = model
7375
part_45.CFrame = CFrame.new(-45.361, 10.31, 38.227) * CFrame.Angles(0, -1.571, 0)
7376
part_46.Anchored = true
7377
part_46.CanCollide = false
7378
part_46.Size = Vector3.new(5.581, 2.283, 0.254)
7379
part_46.Transparency = 0.5
7380
part_46.Orientation = Vector3.new(0, 90, 0)
7381
part_46.BrickColor = BrickColor.new("Really black")
7382
part_46.Material = Enum.Material.Ice
7383
part_46.BackSurface = Enum.SurfaceType.Weld
7384
part_46.LeftSurface = Enum.SurfaceType.Weld
7385
part_46.RightSurface = Enum.SurfaceType.Weld
7386
part_46.FrontSurface = Enum.SurfaceType.Weld
7387
part_46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7388
part_46.BottomSurface = Enum.SurfaceType.Weld
7389
part_46.TopSurface = Enum.SurfaceType.Weld
7390
part_46.Parent = model
7391
part_46.CFrame = CFrame.new(-38.638, 12.466, 43.301) * CFrame.Angles(0, 1.571, 0)
7392
mesh_75.Offset = Vector3.new(0, 0, 0.2)
7393
mesh_75.Scale = Vector3.new(1, 1.15, 0.5)
7394
mesh_75.Parent = part_46
7395
part_47.Anchored = true
7396
part_47.CanCollide = false
7397
part_47.Size = Vector3.new(14.968, 1.015, 6.596)
7398
part_47.FrontSurface = Enum.SurfaceType.Weld
7399
part_47.Orientation = Vector3.new(0, -90, 0)
7400
part_47.Material = Enum.Material.Metal
7401
part_47.BrickColor = BrickColor.new("Really black")
7402
part_47.BackSurface = Enum.SurfaceType.Weld
7403
part_47.RightSurface = Enum.SurfaceType.Weld
7404
part_47.LeftSurface = Enum.SurfaceType.Weld
7405
part_47.BottomSurface = Enum.SurfaceType.Weld
7406
part_47.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7407
part_47.TopSurface = Enum.SurfaceType.Weld
7408
part_47.Parent = model
7409
part_47.CFrame = CFrame.new(-48.406, 10.563, -0.714) * CFrame.Angles(0, -1.571, 0)
7410
part_48.Anchored = true
7411
part_48.CanCollide = false
7412
part_48.Size = Vector3.new(9.133, 6.342, 6.596)
7413
part_48.FrontSurface = Enum.SurfaceType.Weld
7414
part_48.Orientation = Vector3.new(0, -90, 0)
7415
part_48.Material = Enum.Material.Metal
7416
part_48.BrickColor = BrickColor.new("Really black")
7417
part_48.BackSurface = Enum.SurfaceType.Weld
7418
part_48.RightSurface = Enum.SurfaceType.Weld
7419
part_48.LeftSurface = Enum.SurfaceType.Weld
7420
part_48.BottomSurface = Enum.SurfaceType.Weld
7421
part_48.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7422
part_48.TopSurface = Enum.SurfaceType.Weld
7423
part_48.Parent = model
7424
part_48.CFrame = CFrame.new(-35.214, 10.69, 15.142) * CFrame.Angles(0, -1.571, 0)
7425
part_49.Anchored = true
7426
part_49.CanCollide = false
7427
part_49.Size = Vector3.new(7.611, 0.507, 0.254)
7428
part_49.FrontSurface = Enum.SurfaceType.Weld
7429
part_49.Orientation = Vector3.new(7.61, -90, 0)
7430
part_49.Material = Enum.Material.Metal
7431
part_49.BrickColor = BrickColor.new("Really black")
7432
part_49.BackSurface = Enum.SurfaceType.Weld
7433
part_49.RightSurface = Enum.SurfaceType.Weld
7434
part_49.LeftSurface = Enum.SurfaceType.Weld
7435
part_49.BottomSurface = Enum.SurfaceType.Weld
7436
part_49.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7437
part_49.TopSurface = Enum.SurfaceType.Weld
7438
part_49.Parent = model
7439
part_49.CFrame = CFrame.new(-31.828, 10.614, 38.481) * CFrame.Angles(1.571, -1.438, 1.571)
7440
mesh_78.Offset = Vector3.new(0, 0, 0.2)
7441
mesh_78.Scale = Vector3.new(1, 1.15, 1)
7442
mesh_78.Parent = part_49
7443
part_50.Anchored = true
7444
part_50.Size = Vector3.new(10.148, 0.761, 6.596)
7445
part_50.BrickColor = BrickColor.new("Really black")
7446
part_50.BackSurface = Enum.SurfaceType.Weld
7447
part_50.Material = Enum.Material.Metal
7448
part_50.Orientation = Vector3.new(0, -90, 0)
7449
part_50.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7450
part_50.RightSurface = Enum.SurfaceType.Weld
7451
part_50.TopSurface = Enum.SurfaceType.Weld
7452
part_50.LeftSurface = Enum.SurfaceType.Weld
7453
part_50.BottomSurface = Enum.SurfaceType.Weld
7454
part_50.Parent = model
7455
part_50.CFrame = CFrame.new(-35.214, 6.378, 40.764) * CFrame.Angles(0, -1.571, 0)
7456
part_51.Anchored = true
7457
part_51.CanCollide = false
7458
part_51.Size = Vector3.new(0.507, 3.298, 0.507)
7459
part_51.FrontSurface = Enum.SurfaceType.Weld
7460
part_51.Orientation = Vector3.new(0, -90, 0)
7461
part_51.Material = Enum.Material.Metal
7462
part_51.BrickColor = BrickColor.new("Really black")
7463
part_51.BackSurface = Enum.SurfaceType.Weld
7464
part_51.RightSurface = Enum.SurfaceType.Weld
7465
part_51.LeftSurface = Enum.SurfaceType.Weld
7466
part_51.BottomSurface = Enum.SurfaceType.Weld
7467
part_51.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7468
part_51.TopSurface = Enum.SurfaceType.Weld
7469
part_51.Parent = model
7470
part_51.CFrame = CFrame.new(-38.258, 11.959, 46.092) * CFrame.Angles(0, -1.571, 0)
7471
part_52.Anchored = true
7472
part_52.Size = Vector3.new(16.743, 2.03, 4.566)
7473
part_52.BrickColor = BrickColor.new("Really black")
7474
part_52.FrontSurface = Enum.SurfaceType.Weld
7475
part_52.Material = Enum.Material.Metal
7476
part_52.Orientation = Vector3.new(0, -90, 0)
7477
part_52.BackSurface = Enum.SurfaceType.Weld
7478
part_52.RightSurface = Enum.SurfaceType.Weld
7479
part_52.LeftSurface = Enum.SurfaceType.Weld
7480
part_52.BottomSurface = Enum.SurfaceType.Weld
7481
part_52.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7482
part_52.TopSurface = Enum.SurfaceType.Weld
7483
part_52.Parent = model
7484
part_52.CFrame = CFrame.new(-47.391, 5.49, 27.319) * CFrame.Angles(0, -1.571, 0)
7485
mesh_81.Offset = Vector3.new(0, 0.8, 0)
7486
mesh_81.Scale = Vector3.new(1.1, 2, 1)
7487
mesh_81.Parent = part_52
7488
part_53.Anchored = true
7489
part_53.CanCollide = false
7490
part_53.Size = Vector3.new(6.089, 5.327, 0.507)
7491
part_53.FrontSurface = Enum.SurfaceType.Weld
7492
part_53.Orientation = Vector3.new(0, -90, 0)
7493
part_53.Material = Enum.Material.Metal
7494
part_53.BrickColor = BrickColor.new("Really black")
7495
part_53.BackSurface = Enum.SurfaceType.Weld
7496
part_53.RightSurface = Enum.SurfaceType.Weld
7497
part_53.LeftSurface = Enum.SurfaceType.Weld
7498
part_53.BottomSurface = Enum.SurfaceType.Weld
7499
part_53.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7500
part_53.TopSurface = Enum.SurfaceType.Weld
7501
part_53.Parent = model
7502
part_53.CFrame = CFrame.new(-38.258, 11.198, 37.72) * CFrame.Angles(0, -1.571, 0)
7503
part_54.Anchored = true
7504
part_54.CanCollide = false
7505
part_54.Size = Vector3.new(14.968, 0.507, 0.254)
7506
part_54.FrontSurface = Enum.SurfaceType.Weld
7507
part_54.Orientation = Vector3.new(0, -90, 0)
7508
part_54.Material = Enum.Material.Metal
7509
part_54.BrickColor = BrickColor.new("Really black")
7510
part_54.BackSurface = Enum.SurfaceType.Weld
7511
part_54.RightSurface = Enum.SurfaceType.Weld
7512
part_54.LeftSurface = Enum.SurfaceType.Weld
7513
part_54.BottomSurface = Enum.SurfaceType.Weld
7514
part_54.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7515
part_54.TopSurface = Enum.SurfaceType.Weld
7516
part_54.Parent = model
7517
part_54.CFrame = CFrame.new(-32.043, 8.788, 27.192) * CFrame.Angles(0, -1.571, 0)
7518
part_55.Anchored = true
7519
part_55.Size = Vector3.new(10.148, 1.522, 6.596)
7520
part_55.BottomSurface = Enum.SurfaceType.Weld
7521
part_55.Orientation = Vector3.new(0, -90, 0)
7522
part_55.Material = Enum.Material.Metal
7523
part_55.BrickColor = BrickColor.new("Really black")
7524
part_55.RightSurface = Enum.SurfaceType.Weld
7525
part_55.LeftSurface = Enum.SurfaceType.Weld
7526
part_55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7527
part_55.TopSurface = Enum.SurfaceType.Weld
7528
part_55.Parent = model
7529
part_55.CFrame = CFrame.new(-48.405, 5.236, 40.764) * CFrame.Angles(0, -1.571, 0)
7530
part_56.Anchored = true
7531
part_56.CanCollide = false
7532
part_56.Size = Vector3.new(0.254, 5.327, 5.581)
7533
part_56.FrontSurface = Enum.SurfaceType.Weld
7534
part_56.Orientation = Vector3.new(0, -90, 0)
7535
part_56.Material = Enum.Material.Metal
7536
part_56.BrickColor = BrickColor.new("Really black")
7537
part_56.BackSurface = Enum.SurfaceType.Weld
7538
part_56.RightSurface = Enum.SurfaceType.Weld
7539
part_56.LeftSurface = Enum.SurfaceType.Weld
7540
part_56.BottomSurface = Enum.SurfaceType.Weld
7541
part_56.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7542
part_56.TopSurface = Enum.SurfaceType.Weld
7543
part_56.Parent = model
7544
part_56.CFrame = CFrame.new(-48.405, 11.198, 34.802) * CFrame.Angles(0, -1.571, 0)
7545
part_57.Anchored = true
7546
part_57.Size = Vector3.new(6.596, 1.522, 5.074)
7547
part_57.BrickColor = BrickColor.new("Really black")
7548
part_57.FrontSurface = Enum.SurfaceType.Weld
7549
part_57.Material = Enum.Material.Metal
7550
part_57.Orientation = Vector3.new(0, -90, 0)
7551
part_57.BackSurface = Enum.SurfaceType.Weld
7552
part_57.RightSurface = Enum.SurfaceType.Weld
7553
part_57.LeftSurface = Enum.SurfaceType.Weld
7554
part_57.BottomSurface = Enum.SurfaceType.Weld
7555
part_57.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7556
part_57.TopSurface = Enum.SurfaceType.Weld
7557
part_57.Parent = model
7558
part_57.CFrame = CFrame.new(-48.406, 11.832, 2.204) * CFrame.Angles(0, -1.571, 0)
7559
part_58.Anchored = true
7560
part_58.CanCollide = false
7561
part_58.Size = Vector3.new(14.968, 0.507, 0.254)
7562
part_58.FrontSurface = Enum.SurfaceType.Weld
7563
part_58.Orientation = Vector3.new(0, -90, 0)
7564
part_58.Material = Enum.Material.Metal
7565
part_58.BrickColor = BrickColor.new("Really black")
7566
part_58.BackSurface = Enum.SurfaceType.Weld
7567
part_58.RightSurface = Enum.SurfaceType.Weld
7568
part_58.LeftSurface = Enum.SurfaceType.Weld
7569
part_58.BottomSurface = Enum.SurfaceType.Weld
7570
part_58.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7571
part_58.TopSurface = Enum.SurfaceType.Weld
7572
part_58.Parent = model
7573
part_58.CFrame = CFrame.new(-51.577, 8.787, 27.192) * CFrame.Angles(0, -1.571, 0)
7574
part_59.Anchored = true
7575
part_59.CanCollide = false
7576
part_59.Size = Vector3.new(1.015, 1.776, 0.507)
7577
part_59.FrontSurface = Enum.SurfaceType.Weld
7578
part_59.Orientation = Vector3.new(0, -90, 0)
7579
part_59.Material = Enum.Material.Metal
7580
part_59.BrickColor = BrickColor.new("Really black")
7581
part_59.BackSurface = Enum.SurfaceType.Weld
7582
part_59.RightSurface = Enum.SurfaceType.Weld
7583
part_59.LeftSurface = Enum.SurfaceType.Weld
7584
part_59.BottomSurface = Enum.SurfaceType.Weld
7585
part_59.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7586
part_59.TopSurface = Enum.SurfaceType.Weld
7587
part_59.Parent = model
7588
part_59.CFrame = CFrame.new(-32.169, 9.422, 35.183) * CFrame.Angles(0, -1.571, 0)
7589
part_60.Anchored = true
7590
part_60.CanCollide = false
7591
part_60.Size = Vector3.new(5.074, 4.566, 0.507)
7592
part_60.FrontSurface = Enum.SurfaceType.Weld
7593
part_60.Orientation = Vector3.new(0, -90, 0)
7594
part_60.Material = Enum.Material.Metal
7595
part_60.BrickColor = BrickColor.new("Really black")
7596
part_60.BackSurface = Enum.SurfaceType.Weld
7597
part_60.RightSurface = Enum.SurfaceType.Weld
7598
part_60.LeftSurface = Enum.SurfaceType.Weld
7599
part_60.BottomSurface = Enum.SurfaceType.Weld
7600
part_60.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7601
part_60.TopSurface = Enum.SurfaceType.Weld
7602
part_60.Parent = model
7603
part_60.CFrame = CFrame.new(-38.258, 9.042, 43.301) * CFrame.Angles(0, -1.571, 0)
7604
brick_2.Anchored = true
7605
brick_2.CanCollide = false
7606
brick_2.Size = Vector3.new(2.537, 0.254, 1.522)
7607
brick_2.Name = "Brick"
7608
brick_2.Transparency = 1
7609
brick_2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7610
brick_2.Orientation = Vector3.new(-81.88, -90, 0)
7611
brick_2.FrontSurface = Enum.SurfaceType.Weld
7612
brick_2.BrickColor = BrickColor.new("Really black")
7613
brick_2.LeftSurface = Enum.SurfaceType.Weld
7614
brick_2.BottomSurface = Enum.SurfaceType.Weld
7615
brick_2.Material = Enum.Material.Metal
7616
brick_2.RightSurface = Enum.SurfaceType.Weld
7617
brick_2.TopSurface = Enum.SurfaceType.Weld
7618
brick_2.BackSurface = Enum.SurfaceType.Weld
7619
brick_2.Parent = model
7620
brick_2.CFrame = CFrame.new(-32.372, 12.623, 32.646) * CFrame.Angles(-1.571, -0.142, -1.571)
7621
mesh_90.Offset = Vector3.new(0, -0.19, 0)
7622
mesh_90.Parent = brick_2
7623
part_61.Anchored = true
7624
part_61.CanCollide = false
7625
part_61.Size = Vector3.new(14.968, 1.776, 0.507)
7626
part_61.FrontSurface = Enum.SurfaceType.Weld
7627
part_61.Orientation = Vector3.new(0, -90, 0)
7628
part_61.Material = Enum.Material.Metal
7629
part_61.BrickColor = BrickColor.new("Really black")
7630
part_61.BackSurface = Enum.SurfaceType.Weld
7631
part_61.RightSurface = Enum.SurfaceType.Weld
7632
part_61.LeftSurface = Enum.SurfaceType.Weld
7633
part_61.BottomSurface = Enum.SurfaceType.Weld
7634
part_61.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
7635
part_61.TopSurface = Enum.SurfaceType.Weld
7636
part_61.Parent = model
7637
part_61.CFrame = CFrame.new(-51.196, 9.422, 27.192) * CFrame.Angles(0, -1.571, 0)
7638
braces.Name = "Braces"
7639
braces.Parent = model
7640
sidesupporters.Anchored = true
7641
sidesupporters.CanCollide = false
7642
sidesupporters.Size = Vector3.new(1.238, 59.726, 0.928)
7643
sidesupporters.Name = "SideSupporters"
7644
sidesupporters.BrickColor = BrickColor.new("Dark stone grey")
7645
sidesupporters.Material = Enum.Material.DiamondPlate
7646
sidesupporters.Orientation = Vector3.new(0, 90, 180)
7647
sidesupporters.BackSurface = Enum.SurfaceType.Weld
7648
sidesupporters.LeftSurface = Enum.SurfaceType.Weld
7649
sidesupporters.RightSurface = Enum.SurfaceType.Weld
7650
sidesupporters.FrontSurface = Enum.SurfaceType.Weld
7651
sidesupporters.Color = Color3.new(0.388235, 0.372549, 0.384314)
7652
sidesupporters.BottomSurface = Enum.SurfaceType.Weld
7653
sidesupporters.TopSurface = Enum.SurfaceType.Weld
7654
sidesupporters.Parent = braces
7655
sidesupporters.CFrame = CFrame.new(-36.267, 26.425, -1.991) * CFrame.Angles(3.142, 1.571, 0)
7656
mesh_92.Offset = Vector3.new(0.7, 0, -0.5)
7657
mesh_92.Parent = sidesupporters
7658
sidesupporters_2.Anchored = true
7659
sidesupporters_2.CanCollide = false
7660
sidesupporters_2.Size = Vector3.new(1.238, 59.726, 0.928)
7661
sidesupporters_2.Name = "SideSupporters"
7662
sidesupporters_2.BrickColor = BrickColor.new("Dark stone grey")
7663
sidesupporters_2.Material = Enum.Material.DiamondPlate
7664
sidesupporters_2.Orientation = Vector3.new(0, 90, -180)
7665
sidesupporters_2.BackSurface = Enum.SurfaceType.Weld
7666
sidesupporters_2.LeftSurface = Enum.SurfaceType.Weld
7667
sidesupporters_2.RightSurface = Enum.SurfaceType.Weld
7668
sidesupporters_2.FrontSurface = Enum.SurfaceType.Weld
7669
sidesupporters_2.Color = Color3.new(0.388235, 0.372549, 0.384314)
7670
sidesupporters_2.BottomSurface = Enum.SurfaceType.Weld
7671
sidesupporters_2.TopSurface = Enum.SurfaceType.Weld
7672
sidesupporters_2.Parent = braces
7673
sidesupporters_2.CFrame = CFrame.new(-47.098, 26.425, -1.991) * CFrame.Angles(-3.142, 1.571, 0)
7674
mesh_93.Offset = Vector3.new(0.7, 0, 0.5)
7675
mesh_93.Parent = sidesupporters_2