View difference between Paste ID: 4BA0bvXa and HtUABLMJ
SHOW: | | - or go back to the newest paste.
1
2
if game:GetService("RunService"):IsClient()then error("Please run as a server script. Use h/ instead of hl/.")end;print("FE Compatibility: by WaverlyCole");InternalData = {}
3
do
4
	script.Parent = owner.Character
5
	local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
6
	local function NewFakeEvent()
7
		local Bind = Instance.new("BindableEvent")
8
		local Fake;Fake = {Connections = {},
9
		fakeEvent=true;
10
		Connect=function(self,Func)
11
			Bind.Event:connect(Func)
12
			self.Connections[Bind] = true
13
			return setmetatable({Connected = true},{
14
			__index = function (self,Index)
15
				if Index:lower() == "disconnect" then
16
					return function() Fake.Connections[Bind] = false;self.Connected = false end
17
				end
18
				return Fake[Index]
19
			end;
20
			__tostring = function() return "Connection" end;
21
		})
22
		end}
23
		Fake.connect = Fake.Connect;return Fake;
24
	end
25
	local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
26
	local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
27
	local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
28
		self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
29
	end};ContextActionService.UnBindAction = ContextActionService.BindAction
30
	local function TriggerEvent(self,Event,...)
31
		local Trigger = Mouse[Event]
32
		if Trigger and Trigger.fakeEvent and Trigger.Connections then
33
			for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
34
		end
35
	end
36
	Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
37
	Event.OnServerEvent:Connect(function(FiredBy,Input)
38
		if FiredBy.Name ~= owner.Name then return end
39
		if Input.MouseEvent then
40
			Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
41
		else
42
			local Begin = Input.UserInputState == Enum.UserInputState.Begin
43
			if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
44
			for _,Action in pairs(ContextActionService.Actions) do
45
				for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
46
			end
47
			Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
48
			UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
49
		end
50
	end)
51
	InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
52
	Event.Parent = NLS([[
53
		local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
54
		local Input = function(Input,gameProcessedEvent)
55
			if gameProcessedEvent then return end
56
			Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
57
		end
58
		UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
59
		local Hit,Target
60
		while wait(1/30) do
61
			if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
62
				Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
63
			end
64
		end
65
	]],owner.Character)
66
end
67
RealGame = game;game = setmetatable({},{
68
	__index = function (self,Index)
69
		local Sandbox = function (Thing)
70
			if Thing:IsA("Player") then
71
				local RealPlayer = Thing
72
				return setmetatable({},{
73
					__index = function (self,Index)
74
						local Type = type(RealPlayer[Index])
75
						if Type == "function" then
76
							if Index:lower() == "getmouse" or Index:lower() == "mouse" then
77
								return function (self)return InternalData["Mouse"] end
78
							end
79
							return function (self,...)return RealPlayer[Index](RealPlayer,...) end
80
						end
81
						return RealPlayer[Index]
82
					end;
83
					__tostring = function(self) return RealPlayer.Name end
84
				})
85
			end
86
		end
87
		if RealGame[Index] then
88
			local Type = type(RealGame[Index])
89
			if Type == "function" then
90
				if Index:lower() == "getservice" or Index:lower() == "service" then
91
					return function (self,Service)
92
						local FakeServices = {
93
							["players"] = function()
94
								return setmetatable({},{
95
									__index = function (self2,Index2)
96
										local RealService = RealGame:GetService(Service)
97
										local Type2 = type(Index2)
98
										if Type2 == "function" then
99
											return function (self,...) return RealService[Index2](RealService,...)end
100
										else
101
											if Index2:lower() == "localplayer" then return Sandbox(owner) end
102
											return RealService[Index2]
103
										end
104
									end;
105
									__tostring = function(self) return RealGame:GetService(Service).Name end
106
								})
107
							end;
108
							["contextactionservice"] = function() return InternalData["ContextActionService"] end;
109
							["userinputservice"] = function() return InternalData["UserInputService"] end;
110
							["runservice"] = function()
111
								return setmetatable({},{
112
									__index = function(self2,Index2)
113
										local RealService = RealGame:GetService(Service)
114
										local Type2 = type(Index2)
115
										if Type2 == "function" then
116
											return function (self,...) return RealService[Index2](RealService,...) end
117
										else
118
											local RunServices = {
119
												["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
120
												["renderstepped"] = function() return RealService["Stepped"] end
121
											}
122
											if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
123
											return RealService[Index2]
124
										end
125
									end
126
								})
127
							end
128
						}
129
						if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
130
						return RealGame:GetService(Service)
131
					end
132
				end
133
				return function (self,...) return RealGame[Index](RealGame,...) end
134
			else
135
				if game:GetService(Index) then return game:GetService(Index) end
136
				return RealGame[Index]
137
			end
138
		end
139
		return nil
140
	end
141
});Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("Complete! Running...")
142
143
if (script:FindFirstChild("forCustomRun")~=nil) then
144
local sc = script["forCustomRun"].Value
145
assert(loadstring(sc))()
146
return
147
elseif (script:FindFirstChild("forCustomRunL")~=nil) then
148
local locsc = workspace:FindFirstChild("_localrun")
149
local sc = script["forCustomRunL"]
150
if (locsc~=nil) then
151
local loc = locsc:clone()
152
loc["scrun"].Value = sc.Value
153
loc.Name = script.Name
154
for i,v in pairs(script:GetChildren()) do
155
v:clone().Parent = loc
156
end
157
loc.Parent = script.Parent
158
script:remove()
159
return
160
else
161
assert(loadstring(sc.Value))()
162
return
163
end
164
end
165
local m = Instance.new("Model")
166
m.Name = "Model"
167
m1 = Instance.new("Model")
168
m1.Name = "Model"
169
m1.Parent = m
170
m2 = Instance.new("Model")
171
m2.Name = "Model"
172
m2.Parent = m
173
m3 = Instance.new("Model")
174
m3.Name = "Model"
175
m3.Parent = m
176
m4 = Instance.new("Model")
177
m4.Name = "Model"
178
m4.Parent = m
179
m5 = Instance.new("Model")
180
m5.Name = "Model"
181
m5.Parent = m
182
m6 = Instance.new("Model")
183
m6.Name = "Model"
184
m6.Parent = m
185
m7 = Instance.new("Model")
186
m7.Name = "Model"
187
m7.Parent = m
188
m8 = Instance.new("Model")
189
m8.Name = "Model"
190
m8.Parent = m
191
m9 = Instance.new("Model")
192
m9.Name = "Model"
193
m9.Parent = m
194
m10 = Instance.new("Model")
195
m10.Name = "Model"
196
m10.Parent = m
197
m11 = Instance.new("Model")
198
m11.Name = "Model"
199
m11.Parent = m
200
m12 = Instance.new("Model")
201
m12.Name = "Model"
202
m12.Parent = m
203
m13 = Instance.new("Model")
204
m13.Name = "Model"
205
m13.Parent = m
206
m14 = Instance.new("Model")
207
m14.Name = "Model"
208
m14.Parent = m
209
m15 = Instance.new("Model")
210
m15.Name = "Model"
211
m15.Parent = m
212
m16 = Instance.new("Model")
213
m16.Name = "Model"
214
m16.Parent = m
215
m17 = Instance.new("Model")
216
m17.Name = "Model"
217
m17.Parent = m
218
m18 = Instance.new("Model")
219
m18.Name = "Model"
220
m18.Parent = m
221
m19 = Instance.new("Model")
222
m19.Name = "Model"
223
m19.Parent = m
224
m20 = Instance.new("Model")
225
m20.Name = "Model"
226
m20.Parent = m
227
m21 = Instance.new("Model")
228
m21.Name = "Model"
229
m21.Parent = m
230
m22 = Instance.new("Model")
231
m22.Name = "Model"
232
m22.Parent = m
233
m23 = Instance.new("Model")
234
m23.Name = "Model"
235
m23.Parent = m
236
m24 = Instance.new("Model")
237
m24.Name = "Model"
238
m24.Parent = m
239
m25 = Instance.new("Model")
240
m25.Name = "Model"
241
m25.Parent = m
242
m26 = Instance.new("Model")
243
m26.Name = "Model"
244
m26.Parent = m
245
m27 = Instance.new("Model")
246
m27.Name = "Model"
247
m27.Parent = m
248
m28 = Instance.new("Model")
249
m28.Name = "Model"
250
m28.Parent = m
251
m29 = Instance.new("Model")
252
m29.Name = "Model"
253
m29.Parent = m
254
m30 = Instance.new("Model")
255
m30.Name = "Model"
256
m30.Parent = m
257
m31 = Instance.new("Model")
258
m31.Name = "Model"
259
m31.Parent = m
260
m32 = Instance.new("Model")
261
m32.Name = "Model"
262
m32.Parent = m
263
m33 = Instance.new("Model")
264
m33.Name = "Model"
265
m33.Parent = m
266
m34 = Instance.new("Model")
267
m34.Name = "Model"
268
m34.Parent = m
269
m35 = Instance.new("Model")
270
m35.Name = "Model"
271
m35.Parent = m
272
m36 = Instance.new("Model")
273
m36.Name = "Model"
274
m36.Parent = m
275
m37 = Instance.new("Model")
276
m37.Name = "Model"
277
m37.Parent = m
278
m38 = Instance.new("Model")
279
m38.Name = "Model"
280
m38.Parent = m
281
m39 = Instance.new("Model")
282
m39.Name = "Model"
283
m39.Parent = m
284
m40 = Instance.new("Model")
285
m40.Name = "Model"
286
m40.Parent = m
287
m41 = Instance.new("Model")
288
m41.Name = "Model"
289
m41.Parent = m
290
m42 = Instance.new("Model")
291
m42.Name = "Model"
292
m42.Parent = m
293
m43 = Instance.new("Model")
294
m43.Name = "Model"
295
m43.Parent = m
296
m44 = Instance.new("Model")
297
m44.Name = "Model"
298
m44.Parent = m
299
m45 = Instance.new("Model")
300
m45.Name = "Model"
301
m45.Parent = m
302
m46 = Instance.new("Model")
303
m46.Name = "Model"
304
m46.Parent = m
305
m47 = Instance.new("Model")
306
m47.Name = "Model"
307
m47.Parent = m
308
m48 = Instance.new("Model")
309
m48.Name = "Model"
310
m48.Parent = m
311
m49 = Instance.new("Model")
312
m49.Name = "Model"
313
m49.Parent = m
314
p1 = Instance.new("Part", m1)
315
p1.BrickColor = BrickColor.new("Medium stone grey")
316
p1.Material = Enum.Material.Concrete
317
p1.CFrame = CFrame.new(-19.0630493, 29.2020264, 5.91564941, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
318
p1.Anchored = true
319
p1.FormFactor = Enum.FormFactor.Custom
320
p1.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
321
p1.BottomSurface = Enum.SurfaceType.Smooth
322
p1.TopSurface = Enum.SurfaceType.Smooth
323
p2 = Instance.new("Part", m1)
324
p2.BrickColor = BrickColor.new("Dark stone grey")
325
p2.Material = Enum.Material.Concrete
326
p2.CFrame = CFrame.new(-18.9619751, 29.6020508, 6.01477051, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
327
p2.Anchored = true
328
p2.FormFactor = Enum.FormFactor.Custom
329
p2.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
330
p2.BottomSurface = Enum.SurfaceType.Smooth
331
p2.TopSurface = Enum.SurfaceType.Smooth
332
p3 = Instance.new("Part", m1)
333
p3.BrickColor = BrickColor.new("Medium stone grey")
334
p3.Material = Enum.Material.SmoothPlastic
335
p3.Reflectance = 0.20000000298023
336
p3.CFrame = CFrame.new(-19.0517273, 33.2019806, 6.10601807, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
337
p3.Anchored = true
338
p3.FormFactor = Enum.FormFactor.Custom
339
p3.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
340
p3.BottomSurface = Enum.SurfaceType.Smooth
341
p3.TopSurface = Enum.SurfaceType.Smooth
342
p4 = Instance.new("Part", m1)
343
p4.BrickColor = BrickColor.new("Dark stone grey")
344
p4.Material = Enum.Material.Concrete
345
p4.CFrame = CFrame.new(-18.9517212, 33.2014618, 6.00610352, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
346
p4.Anchored = true
347
p4.FormFactor = Enum.FormFactor.Custom
348
p4.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
349
p4.BottomSurface = Enum.SurfaceType.Smooth
350
p4.TopSurface = Enum.SurfaceType.Smooth
351
p5 = Instance.new("Part", m1)
352
p5.BrickColor = BrickColor.new("Dark stone grey")
353
p5.Material = Enum.Material.Concrete
354
p5.CFrame = CFrame.new(-19.1414795, 36.8019714, 5.99731445, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
355
p5.Anchored = true
356
p5.FormFactor = Enum.FormFactor.Custom
357
p5.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
358
p5.BottomSurface = Enum.SurfaceType.Smooth
359
p5.TopSurface = Enum.SurfaceType.Smooth
360
p6 = Instance.new("Part", m1)
361
p6.BrickColor = BrickColor.new("Medium stone grey")
362
p6.Material = Enum.Material.Concrete
363
p6.CFrame = CFrame.new(-19.0393677, 37.5025787, 5.89575195, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
364
p6.Anchored = true
365
p6.FormFactor = Enum.FormFactor.Custom
366
p6.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
367
p6.BottomSurface = Enum.SurfaceType.Smooth
368
p6.TopSurface = Enum.SurfaceType.Smooth
369
p7 = Instance.new("Part", m1)
370
p7.BrickColor = BrickColor.new("Dark stone grey")
371
p7.Material = Enum.Material.Concrete
372
p7.CFrame = CFrame.new(-21.1517334, 33.2077026, 6.00482178, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
373
p7.Anchored = true
374
p7.FormFactor = Enum.FormFactor.Custom
375
p7.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
376
p7.BottomSurface = Enum.SurfaceType.Smooth
377
p7.TopSurface = Enum.SurfaceType.Smooth
378
p8 = Instance.new("Part", m1)
379
p8.BrickColor = BrickColor.new("Medium stone grey")
380
p8.Material = Enum.Material.Concrete
381
p8.CFrame = CFrame.new(-21.5516357, 33.2086182, 5.90466309, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
382
p8.Anchored = true
383
p8.FormFactor = Enum.FormFactor.Custom
384
p8.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
385
p8.BottomSurface = Enum.SurfaceType.Smooth
386
p8.TopSurface = Enum.SurfaceType.Smooth
387
p9 = Instance.new("Part", m1)
388
p9.BrickColor = BrickColor.new("Dark stone grey")
389
p9.Material = Enum.Material.Concrete
390
p9.CFrame = CFrame.new(-16.9514465, 33.2957611, 6.00708008, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
391
p9.Anchored = true
392
p9.FormFactor = Enum.FormFactor.Custom
393
p9.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
394
p9.BottomSurface = Enum.SurfaceType.Smooth
395
p9.TopSurface = Enum.SurfaceType.Smooth
396
p10 = Instance.new("Part", m1)
397
p10.BrickColor = BrickColor.new("Medium stone grey")
398
p10.Material = Enum.Material.Concrete
399
p10.CFrame = CFrame.new(-16.5516968, 33.1943207, 5.90759277, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
400
p10.Anchored = true
401
p10.FormFactor = Enum.FormFactor.Custom
402
p10.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
403
p10.BottomSurface = Enum.SurfaceType.Smooth
404
p10.TopSurface = Enum.SurfaceType.Smooth
405
p11 = Instance.new("Part", m2)
406
p11.BrickColor = BrickColor.new("Medium stone grey")
407
p11.Material = Enum.Material.Concrete
408
p11.CFrame = CFrame.new(-3.47900391, 0.37371093, 12.2637329, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
409
p11.Anchored = true
410
p11.FormFactor = Enum.FormFactor.Custom
411
p11.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
412
p11.BottomSurface = Enum.SurfaceType.Smooth
413
p11.TopSurface = Enum.SurfaceType.Smooth
414
b1 = Instance.new("CylinderMesh", p11)
415
b1.Name = "Mesh"
416
p12 = Instance.new("Part", m2)
417
p12.BrickColor = BrickColor.new("Medium stone grey")
418
p12.Material = Enum.Material.Concrete
419
p12.CFrame = CFrame.new(-3.47558594, 1.57376945, 12.2608643, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
420
p12.Anchored = true
421
p12.FormFactor = Enum.FormFactor.Custom
422
p12.Size = Vector3.new(0.400000006, 2.6000011, 0.400000006)
423
p12.BottomSurface = Enum.SurfaceType.Smooth
424
p12.TopSurface = Enum.SurfaceType.Smooth
425
b2 = Instance.new("CylinderMesh", p12)
426
b2.Name = "Mesh"
427
p13 = Instance.new("Part", m2)
428
p13.BrickColor = BrickColor.new("Brick yellow")
429
p13.Material = Enum.Material.Concrete
430
p13.CFrame = CFrame.new(-3.46630859, 3.07393813, 12.2872314, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
431
p13.Anchored = true
432
p13.FormFactor = Enum.FormFactor.Custom
433
p13.Size = Vector3.new(3.73999095, 0.200000003, 4.09000874)
434
p13.BottomSurface = Enum.SurfaceType.Smooth
435
p13.TopSurface = Enum.SurfaceType.Smooth
436
p14 = Instance.new("Part", m2)
437
p14.BrickColor = BrickColor.new("Reddish brown")
438
p14.Material = Enum.Material.Wood
439
p14.CFrame = CFrame.new(-3.47134399, 3.07395339, 12.2922363, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
440
p14.Anchored = true
441
p14.FormFactor = Enum.FormFactor.Custom
442
p14.Size = Vector3.new(3.66999078, 0.400000006, 4.00000858)
443
p14.BottomSurface = Enum.SurfaceType.Smooth
444
p14.TopSurface = Enum.SurfaceType.Smooth
445
p15 = Instance.new("Part", m3)
446
p15.BrickColor = BrickColor.new("Medium stone grey")
447
p15.Material = Enum.Material.Concrete
448
p15.CFrame = CFrame.new(-19.104187, 14.8021441, 5.95025635, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
449
p15.Anchored = true
450
p15.FormFactor = Enum.FormFactor.Custom
451
p15.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
452
p15.BottomSurface = Enum.SurfaceType.Smooth
453
p15.TopSurface = Enum.SurfaceType.Smooth
454
p16 = Instance.new("Part", m3)
455
p16.BrickColor = BrickColor.new("Dark stone grey")
456
p16.Material = Enum.Material.Concrete
457
p16.CFrame = CFrame.new(-19.0031128, 15.2021694, 6.04937744, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
458
p16.Anchored = true
459
p16.FormFactor = Enum.FormFactor.Custom
460
p16.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
461
p16.BottomSurface = Enum.SurfaceType.Smooth
462
p16.TopSurface = Enum.SurfaceType.Smooth
463
p17 = Instance.new("Part", m3)
464
p17.BrickColor = BrickColor.new("Medium stone grey")
465
p17.Material = Enum.Material.SmoothPlastic
466
p17.Reflectance = 0.20000000298023
467
p17.CFrame = CFrame.new(-19.0928955, 18.8020096, 6.140625, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
468
p17.Anchored = true
469
p17.FormFactor = Enum.FormFactor.Custom
470
p17.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
471
p17.BottomSurface = Enum.SurfaceType.Smooth
472
p17.TopSurface = Enum.SurfaceType.Smooth
473
p18 = Instance.new("Part", m3)
474
p18.BrickColor = BrickColor.new("Dark stone grey")
475
p18.Material = Enum.Material.Concrete
476
p18.CFrame = CFrame.new(-18.9928589, 18.8015366, 6.04064941, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
477
p18.Anchored = true
478
p18.FormFactor = Enum.FormFactor.Custom
479
p18.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
480
p18.BottomSurface = Enum.SurfaceType.Smooth
481
p18.TopSurface = Enum.SurfaceType.Smooth
482
p19 = Instance.new("Part", m3)
483
p19.BrickColor = BrickColor.new("Dark stone grey")
484
p19.Material = Enum.Material.Concrete
485
p19.CFrame = CFrame.new(-19.1825562, 22.4020481, 6.03192139, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
486
p19.Anchored = true
487
p19.FormFactor = Enum.FormFactor.Custom
488
p19.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
489
p19.BottomSurface = Enum.SurfaceType.Smooth
490
p19.TopSurface = Enum.SurfaceType.Smooth
491
p20 = Instance.new("Part", m3)
492
p20.BrickColor = BrickColor.new("Medium stone grey")
493
p20.Material = Enum.Material.Concrete
494
p20.CFrame = CFrame.new(-19.0804443, 23.1026554, 5.93029785, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
495
p20.Anchored = true
496
p20.FormFactor = Enum.FormFactor.Custom
497
p20.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
498
p20.BottomSurface = Enum.SurfaceType.Smooth
499
p20.TopSurface = Enum.SurfaceType.Smooth
500
p21 = Instance.new("Part", m3)
501
p21.BrickColor = BrickColor.new("Dark stone grey")
502
p21.Material = Enum.Material.Concrete
503
p21.CFrame = CFrame.new(-21.1928406, 18.8077316, 6.03936768, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
504
p21.Anchored = true
505
p21.FormFactor = Enum.FormFactor.Custom
506
p21.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
507
p21.BottomSurface = Enum.SurfaceType.Smooth
508
p21.TopSurface = Enum.SurfaceType.Smooth
509
p22 = Instance.new("Part", m3)
510
p22.BrickColor = BrickColor.new("Medium stone grey")
511
p22.Material = Enum.Material.Concrete
512
p22.CFrame = CFrame.new(-21.5927734, 18.8087082, 5.93920898, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
513
p22.Anchored = true
514
p22.FormFactor = Enum.FormFactor.Custom
515
p22.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
516
p22.BottomSurface = Enum.SurfaceType.Smooth
517
p22.TopSurface = Enum.SurfaceType.Smooth
518
p23 = Instance.new("Part", m3)
519
p23.BrickColor = BrickColor.new("Dark stone grey")
520
p23.Material = Enum.Material.Concrete
521
p23.CFrame = CFrame.new(-16.9926147, 18.8958054, 6.04162598, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
522
p23.Anchored = true
523
p23.FormFactor = Enum.FormFactor.Custom
524
p23.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
525
p23.BottomSurface = Enum.SurfaceType.Smooth
526
p23.TopSurface = Enum.SurfaceType.Smooth
527
p24 = Instance.new("Part", m3)
528
p24.BrickColor = BrickColor.new("Medium stone grey")
529
p24.Material = Enum.Material.Concrete
530
p24.CFrame = CFrame.new(-16.5927734, 18.7943935, 5.94213867, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
531
p24.Anchored = true
532
p24.FormFactor = Enum.FormFactor.Custom
533
p24.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
534
p24.BottomSurface = Enum.SurfaceType.Smooth
535
p24.TopSurface = Enum.SurfaceType.Smooth
536
p25 = Instance.new("Part", m4)
537
p25.BrickColor = BrickColor.new("Medium stone grey")
538
p25.Material = Enum.Material.Concrete
539
p25.CFrame = CFrame.new(-8.8631897, 29.1729126, 5.92169189, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
540
p25.Anchored = true
541
p25.FormFactor = Enum.FormFactor.Custom
542
p25.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
543
p25.BottomSurface = Enum.SurfaceType.Smooth
544
p25.TopSurface = Enum.SurfaceType.Smooth
545
p26 = Instance.new("Part", m4)
546
p26.BrickColor = BrickColor.new("Dark stone grey")
547
p26.Material = Enum.Material.Concrete
548
p26.CFrame = CFrame.new(-8.76211548, 29.5729218, 6.02081299, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
549
p26.Anchored = true
550
p26.FormFactor = Enum.FormFactor.Custom
551
p26.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
552
p26.BottomSurface = Enum.SurfaceType.Smooth
553
p26.TopSurface = Enum.SurfaceType.Smooth
554
p27 = Instance.new("Part", m4)
555
p27.BrickColor = BrickColor.new("Medium stone grey")
556
p27.Material = Enum.Material.SmoothPlastic
557
p27.Reflectance = 0.20000000298023
558
p27.CFrame = CFrame.new(-8.85189819, 33.1728516, 6.11206055, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
559
p27.Anchored = true
560
p27.FormFactor = Enum.FormFactor.Custom
561
p27.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
562
p27.BottomSurface = Enum.SurfaceType.Smooth
563
p27.TopSurface = Enum.SurfaceType.Smooth
564
p28 = Instance.new("Part", m4)
565
p28.BrickColor = BrickColor.new("Dark stone grey")
566
p28.Material = Enum.Material.Concrete
567
p28.CFrame = CFrame.new(-8.75180054, 33.1723633, 6.012146, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
568
p28.Anchored = true
569
p28.FormFactor = Enum.FormFactor.Custom
570
p28.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
571
p28.BottomSurface = Enum.SurfaceType.Smooth
572
p28.TopSurface = Enum.SurfaceType.Smooth
573
p29 = Instance.new("Part", m4)
574
p29.BrickColor = BrickColor.new("Dark stone grey")
575
p29.Material = Enum.Material.Concrete
576
p29.CFrame = CFrame.new(-8.94152832, 36.7728729, 6.00335693, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
577
p29.Anchored = true
578
p29.FormFactor = Enum.FormFactor.Custom
579
p29.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
580
p29.BottomSurface = Enum.SurfaceType.Smooth
581
p29.TopSurface = Enum.SurfaceType.Smooth
582
p30 = Instance.new("Part", m4)
583
p30.BrickColor = BrickColor.new("Medium stone grey")
584
p30.Material = Enum.Material.Concrete
585
p30.CFrame = CFrame.new(-8.83947754, 37.473465, 5.90179443, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
586
p30.Anchored = true
587
p30.FormFactor = Enum.FormFactor.Custom
588
p30.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
589
p30.BottomSurface = Enum.SurfaceType.Smooth
590
p30.TopSurface = Enum.SurfaceType.Smooth
591
p31 = Instance.new("Part", m4)
592
p31.BrickColor = BrickColor.new("Dark stone grey")
593
p31.Material = Enum.Material.Concrete
594
p31.CFrame = CFrame.new(-10.9518127, 33.1785889, 6.01086426, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
595
p31.Anchored = true
596
p31.FormFactor = Enum.FormFactor.Custom
597
p31.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
598
p31.BottomSurface = Enum.SurfaceType.Smooth
599
p31.TopSurface = Enum.SurfaceType.Smooth
600
p32 = Instance.new("Part", m4)
601
p32.BrickColor = BrickColor.new("Medium stone grey")
602
p32.Material = Enum.Material.Concrete
603
p32.CFrame = CFrame.new(-11.3517151, 33.1795502, 5.91064453, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
604
p32.Anchored = true
605
p32.FormFactor = Enum.FormFactor.Custom
606
p32.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
607
p32.BottomSurface = Enum.SurfaceType.Smooth
608
p32.TopSurface = Enum.SurfaceType.Smooth
609
p33 = Instance.new("Part", m4)
610
p33.BrickColor = BrickColor.new("Dark stone grey")
611
p33.Material = Enum.Material.Concrete
612
p33.CFrame = CFrame.new(-6.75158691, 33.2666473, 6.01306152, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
613
p33.Anchored = true
614
p33.FormFactor = Enum.FormFactor.Custom
615
p33.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
616
p33.BottomSurface = Enum.SurfaceType.Smooth
617
p33.TopSurface = Enum.SurfaceType.Smooth
618
p34 = Instance.new("Part", m4)
619
p34.BrickColor = BrickColor.new("Medium stone grey")
620
p34.Material = Enum.Material.Concrete
621
p34.CFrame = CFrame.new(-6.35177612, 33.1652527, 5.91357422, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
622
p34.Anchored = true
623
p34.FormFactor = Enum.FormFactor.Custom
624
p34.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
625
p34.BottomSurface = Enum.SurfaceType.Smooth
626
p34.TopSurface = Enum.SurfaceType.Smooth
627
p35 = Instance.new("Part", m5)
628
p35.BrickColor = BrickColor.new("Medium stone grey")
629
p35.Material = Enum.Material.Concrete
630
p35.CFrame = CFrame.new(-8.90426636, 14.7730303, 5.95629883, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
631
p35.Anchored = true
632
p35.FormFactor = Enum.FormFactor.Custom
633
p35.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
634
p35.BottomSurface = Enum.SurfaceType.Smooth
635
p35.TopSurface = Enum.SurfaceType.Smooth
636
p36 = Instance.new("Part", m5)
637
p36.BrickColor = BrickColor.new("Dark stone grey")
638
p36.Material = Enum.Material.Concrete
639
p36.CFrame = CFrame.new(-8.80322266, 15.1730394, 6.05535889, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
640
p36.Anchored = true
641
p36.FormFactor = Enum.FormFactor.Custom
642
p36.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
643
p36.BottomSurface = Enum.SurfaceType.Smooth
644
p36.TopSurface = Enum.SurfaceType.Smooth
645
p37 = Instance.new("Part", m5)
646
p37.BrickColor = BrickColor.new("Medium stone grey")
647
p37.Material = Enum.Material.SmoothPlastic
648
p37.Reflectance = 0.20000000298023
649
p37.CFrame = CFrame.new(-8.89303589, 18.7729244, 6.14666748, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
650
p37.Anchored = true
651
p37.FormFactor = Enum.FormFactor.Custom
652
p37.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
653
p37.BottomSurface = Enum.SurfaceType.Smooth
654
p37.TopSurface = Enum.SurfaceType.Smooth
655
p38 = Instance.new("Part", m5)
656
p38.BrickColor = BrickColor.new("Dark stone grey")
657
p38.Material = Enum.Material.Concrete
658
p38.CFrame = CFrame.new(-8.79293823, 18.7724056, 6.04675293, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
659
p38.Anchored = true
660
p38.FormFactor = Enum.FormFactor.Custom
661
p38.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
662
p38.BottomSurface = Enum.SurfaceType.Smooth
663
p38.TopSurface = Enum.SurfaceType.Smooth
664
p39 = Instance.new("Part", m5)
665
p39.BrickColor = BrickColor.new("Dark stone grey")
666
p39.Material = Enum.Material.Concrete
667
p39.CFrame = CFrame.new(-8.9826355, 22.3729343, 6.0380249, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
668
p39.Anchored = true
669
p39.FormFactor = Enum.FormFactor.Custom
670
p39.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
671
p39.BottomSurface = Enum.SurfaceType.Smooth
672
p39.TopSurface = Enum.SurfaceType.Smooth
673
p40 = Instance.new("Part", m5)
674
p40.BrickColor = BrickColor.new("Medium stone grey")
675
p40.Material = Enum.Material.Concrete
676
p40.CFrame = CFrame.new(-8.88061523, 23.0735416, 5.93640137, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
677
p40.Anchored = true
678
p40.FormFactor = Enum.FormFactor.Custom
679
p40.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
680
p40.BottomSurface = Enum.SurfaceType.Smooth
681
p40.TopSurface = Enum.SurfaceType.Smooth
682
p41 = Instance.new("Part", m5)
683
p41.BrickColor = BrickColor.new("Dark stone grey")
684
p41.Material = Enum.Material.Concrete
685
p41.CFrame = CFrame.new(-10.9928589, 18.7786465, 6.04541016, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
686
p41.Anchored = true
687
p41.FormFactor = Enum.FormFactor.Custom
688
p41.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
689
p41.BottomSurface = Enum.SurfaceType.Smooth
690
p41.TopSurface = Enum.SurfaceType.Smooth
691
p42 = Instance.new("Part", m5)
692
p42.BrickColor = BrickColor.new("Medium stone grey")
693
p42.Material = Enum.Material.Concrete
694
p42.CFrame = CFrame.new(-11.3928223, 18.7795925, 5.94525146, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
695
p42.Anchored = true
696
p42.FormFactor = Enum.FormFactor.Custom
697
p42.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
698
p42.BottomSurface = Enum.SurfaceType.Smooth
699
p42.TopSurface = Enum.SurfaceType.Smooth
700
p43 = Instance.new("Part", m5)
701
p43.BrickColor = BrickColor.new("Dark stone grey")
702
p43.Material = Enum.Material.Concrete
703
p43.CFrame = CFrame.new(-6.79266357, 18.8666916, 6.04766846, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
704
p43.Anchored = true
705
p43.FormFactor = Enum.FormFactor.Custom
706
p43.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
707
p43.BottomSurface = Enum.SurfaceType.Smooth
708
p43.TopSurface = Enum.SurfaceType.Smooth
709
p44 = Instance.new("Part", m5)
710
p44.BrickColor = BrickColor.new("Medium stone grey")
711
p44.Material = Enum.Material.Concrete
712
p44.CFrame = CFrame.new(-6.39291382, 18.7652798, 5.94818115, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
713
p44.Anchored = true
714
p44.FormFactor = Enum.FormFactor.Custom
715
p44.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
716
p44.BottomSurface = Enum.SurfaceType.Smooth
717
p44.TopSurface = Enum.SurfaceType.Smooth
718
p45 = Instance.new("Part", m6)
719
p45.BrickColor = BrickColor.new("Dark stone grey")
720
p45.Material = Enum.Material.DiamondPlate
721
p45.CFrame = CFrame.new(-3.73986816, 47.5333557, 49.9776001, -0.999992847, 0.00285565224, 0.000583000307, 0.00285412814, 0.999992371, -0.00240225764, -0.000589070667, -0.00240059383, -0.999994338)
722
p45.Anchored = true
723
p45.FormFactor = Enum.FormFactor.Custom
724
p45.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
725
p45.BottomSurface = Enum.SurfaceType.Smooth
726
p45.TopSurface = Enum.SurfaceType.Smooth
727
b3 = Instance.new("CylinderMesh", p45)
728
b3.Name = "Mesh"
729
p46 = Instance.new("Part", m6)
730
p46.BrickColor = BrickColor.new("Dark stone grey")
731
p46.Material = Enum.Material.DiamondPlate
732
p46.CFrame = CFrame.new(-5.23980713, 47.5376282, 49.9766846, -0.999992847, 0.00285565224, 0.000583000307, 0.00285412814, 0.999992371, -0.00240225764, -0.000589070667, -0.00240059383, -0.999994338)
733
p46.Anchored = true
734
p46.FormFactor = Enum.FormFactor.Custom
735
p46.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
736
p46.BottomSurface = Enum.SurfaceType.Smooth
737
p46.TopSurface = Enum.SurfaceType.Smooth
738
b4 = Instance.new("CylinderMesh", p46)
739
b4.Name = "Mesh"
740
p47 = Instance.new("Part", m6)
741
p47.BrickColor = BrickColor.new("Dark stone grey")
742
p47.Material = Enum.Material.Concrete
743
p47.CFrame = CFrame.new(-5.24264526, 46.5373383, 49.8791199, -0.000583059678, 0.00285564945, -0.999992669, 0.00240224577, 0.999992251, 0.00285413628, 0.999994338, -0.00240058731, -0.000589011062)
744
p47.Anchored = true
745
p47.FormFactor = Enum.FormFactor.Custom
746
p47.Size = Vector3.new(3.80000019, 0.200000003, 5.19999886)
747
p47.BottomSurface = Enum.SurfaceType.Smooth
748
p47.TopSurface = Enum.SurfaceType.Smooth
749
p48 = Instance.new("Part", m6)
750
p48.BrickColor = BrickColor.new("Medium stone grey")
751
p48.Material = Enum.Material.Brick
752
p48.CFrame = CFrame.new(-5.24664307, 45.1376038, 49.8824768, -0.000583059678, 0.00285564945, -0.999992669, 0.00240224577, 0.999992251, 0.00285413628, 0.999994338, -0.00240058731, -0.000589011062)
753
p48.Anchored = true
754
p48.FormFactor = Enum.FormFactor.Custom
755
p48.Size = Vector3.new(3, 2.60000038, 4.39999962)
756
p48.BottomSurface = Enum.SurfaceType.Smooth
757
p48.TopSurface = Enum.SurfaceType.Smooth
758
p49 = Instance.new("Part", m6)
759
p49.BrickColor = BrickColor.new("Dark stone grey")
760
p49.Material = Enum.Material.DiamondPlate
761
p49.CFrame = CFrame.new(-6.73983765, 47.5419159, 49.9758606, -0.999992847, 0.00285565224, 0.000583000307, 0.00285412814, 0.999992371, -0.00240225764, -0.000589070667, -0.00240059383, -0.999994338)
762
p49.Anchored = true
763
p49.FormFactor = Enum.FormFactor.Custom
764
p49.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
765
p49.BottomSurface = Enum.SurfaceType.Smooth
766
p49.TopSurface = Enum.SurfaceType.Smooth
767
b5 = Instance.new("CylinderMesh", p49)
768
b5.Name = "Mesh"
769
p50 = Instance.new("Part", m7)
770
p50.BrickColor = BrickColor.new("Medium stone grey")
771
p50.Material = Enum.Material.Concrete
772
p50.CFrame = CFrame.new(0.625030518, 1.66059208, 11.6331787, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
773
p50.Anchored = true
774
p50.FormFactor = Enum.FormFactor.Custom
775
p50.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
776
p50.BottomSurface = Enum.SurfaceType.Smooth
777
p50.TopSurface = Enum.SurfaceType.Smooth
778
b6 = Instance.new("CylinderMesh", p50)
779
b6.Name = "Mesh"
780
p51 = Instance.new("Part", m7)
781
p51.BrickColor = BrickColor.new("Reddish brown")
782
p51.Material = Enum.Material.Wood
783
p51.CFrame = CFrame.new(-0.175079346, 1.76473343, 12.3972778, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
784
p51.Anchored = true
785
p51.FormFactor = Enum.FormFactor.Custom
786
p51.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
787
p51.BottomSurface = Enum.SurfaceType.Smooth
788
p51.TopSurface = Enum.SurfaceType.Smooth
789
p52 = Instance.new("Part", m7)
790
p52.BrickColor = BrickColor.new("Medium stone grey")
791
p52.Material = Enum.Material.Concrete
792
p52.CFrame = CFrame.new(-0.976928711, 0.965049982, 11.6337891, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
793
p52.Anchored = true
794
p52.FormFactor = Enum.FormFactor.Custom
795
p52.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
796
p52.BottomSurface = Enum.SurfaceType.Smooth
797
p52.TopSurface = Enum.SurfaceType.Smooth
798
b7 = Instance.new("CylinderMesh", p52)
799
b7.Name = "Mesh"
800
p53 = Instance.new("Part", m7)
801
p53.BrickColor = BrickColor.new("Medium stone grey")
802
p53.Material = Enum.Material.Concrete
803
p53.CFrame = CFrame.new(-0.977844238, 0.968895197, 13.2338257, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
804
p53.Anchored = true
805
p53.FormFactor = Enum.FormFactor.Custom
806
p53.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
807
p53.BottomSurface = Enum.SurfaceType.Smooth
808
p53.TopSurface = Enum.SurfaceType.Smooth
809
b8 = Instance.new("CylinderMesh", p53)
810
b8.Name = "Mesh"
811
p54 = Instance.new("Part", m7)
812
p54.BrickColor = BrickColor.new("Medium stone grey")
813
p54.Material = Enum.Material.Concrete
814
p54.CFrame = CFrame.new(0.62411499, 1.66443729, 13.2330933, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
815
p54.Anchored = true
816
p54.FormFactor = Enum.FormFactor.Custom
817
p54.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
818
p54.BottomSurface = Enum.SurfaceType.Smooth
819
p54.TopSurface = Enum.SurfaceType.Smooth
820
b9 = Instance.new("CylinderMesh", p54)
821
b9.Name = "Mesh"
822
p55 = Instance.new("Part", m7)
823
p55.BrickColor = BrickColor.new("Reddish brown")
824
p55.Material = Enum.Material.Wood
825
p55.CFrame = CFrame.new(0.630065918, 3.56247902, 12.3934326, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
826
p55.Anchored = true
827
p55.FormFactor = Enum.FormFactor.Custom
828
p55.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
829
p55.BottomSurface = Enum.SurfaceType.Smooth
830
p55.TopSurface = Enum.SurfaceType.Smooth
831
p56 = Instance.new("Part", m8)
832
p56.BrickColor = BrickColor.new("Medium stone grey")
833
p56.Material = Enum.Material.Concrete
834
p56.CFrame = CFrame.new(-16.4788208, 0.410835534, 12.2560425, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
835
p56.Anchored = true
836
p56.FormFactor = Enum.FormFactor.Custom
837
p56.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
838
p56.BottomSurface = Enum.SurfaceType.Smooth
839
p56.TopSurface = Enum.SurfaceType.Smooth
840
b10 = Instance.new("CylinderMesh", p56)
841
b10.Name = "Mesh"
842
p57 = Instance.new("Part", m8)
843
p57.BrickColor = BrickColor.new("Medium stone grey")
844
p57.Material = Enum.Material.Concrete
845
p57.CFrame = CFrame.new(-16.4754028, 1.61087894, 12.2531738, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
846
p57.Anchored = true
847
p57.FormFactor = Enum.FormFactor.Custom
848
p57.Size = Vector3.new(0.400000006, 2.6000011, 0.400000006)
849
p57.BottomSurface = Enum.SurfaceType.Smooth
850
p57.TopSurface = Enum.SurfaceType.Smooth
851
b11 = Instance.new("CylinderMesh", p57)
852
b11.Name = "Mesh"
853
p58 = Instance.new("Part", m8)
854
p58.BrickColor = BrickColor.new("Brick yellow")
855
p58.Material = Enum.Material.Concrete
856
p58.CFrame = CFrame.new(-16.4661865, 3.11103225, 12.2796021, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
857
p58.Anchored = true
858
p58.FormFactor = Enum.FormFactor.Custom
859
p58.Size = Vector3.new(3.73999095, 0.200000003, 4.09000874)
860
p58.BottomSurface = Enum.SurfaceType.Smooth
861
p58.TopSurface = Enum.SurfaceType.Smooth
862
p59 = Instance.new("Part", m8)
863
p59.BrickColor = BrickColor.new("Reddish brown")
864
p59.Material = Enum.Material.Wood
865
p59.CFrame = CFrame.new(-16.4711609, 3.11106277, 12.2846069, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
866
p59.Anchored = true
867
p59.FormFactor = Enum.FormFactor.Custom
868
p59.Size = Vector3.new(3.66999078, 0.400000006, 4.00000858)
869
p59.BottomSurface = Enum.SurfaceType.Smooth
870
p59.TopSurface = Enum.SurfaceType.Smooth
871
p60 = Instance.new("Part", m9)
872
p60.BrickColor = BrickColor.new("Medium stone grey")
873
p60.Material = Enum.Material.Concrete
874
p60.CFrame = CFrame.new(1.73672485, 29.1426697, 5.92797852, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
875
p60.Anchored = true
876
p60.FormFactor = Enum.FormFactor.Custom
877
p60.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
878
p60.BottomSurface = Enum.SurfaceType.Smooth
879
p60.TopSurface = Enum.SurfaceType.Smooth
880
p61 = Instance.new("Part", m9)
881
p61.BrickColor = BrickColor.new("Dark stone grey")
882
p61.Material = Enum.Material.Concrete
883
p61.CFrame = CFrame.new(1.83779907, 29.5426636, 6.02703857, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
884
p61.Anchored = true
885
p61.FormFactor = Enum.FormFactor.Custom
886
p61.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
887
p61.BottomSurface = Enum.SurfaceType.Smooth
888
p61.TopSurface = Enum.SurfaceType.Smooth
889
p62 = Instance.new("Part", m9)
890
p62.BrickColor = BrickColor.new("Medium stone grey")
891
p62.Material = Enum.Material.SmoothPlastic
892
p62.Reflectance = 0.20000000298023
893
p62.CFrame = CFrame.new(1.74804688, 33.1425934, 6.11828613, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
894
p62.Anchored = true
895
p62.FormFactor = Enum.FormFactor.Custom
896
p62.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
897
p62.BottomSurface = Enum.SurfaceType.Smooth
898
p62.TopSurface = Enum.SurfaceType.Smooth
899
p63 = Instance.new("Part", m9)
900
p63.BrickColor = BrickColor.new("Dark stone grey")
901
p63.Material = Enum.Material.Concrete
902
p63.CFrame = CFrame.new(1.84811401, 33.1420898, 6.01837158, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
903
p63.Anchored = true
904
p63.FormFactor = Enum.FormFactor.Custom
905
p63.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
906
p63.BottomSurface = Enum.SurfaceType.Smooth
907
p63.TopSurface = Enum.SurfaceType.Smooth
908
p64 = Instance.new("Part", m9)
909
p64.BrickColor = BrickColor.new("Dark stone grey")
910
p64.Material = Enum.Material.Concrete
911
p64.CFrame = CFrame.new(1.65841675, 36.7425995, 6.00958252, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
912
p64.Anchored = true
913
p64.FormFactor = Enum.FormFactor.Custom
914
p64.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
915
p64.BottomSurface = Enum.SurfaceType.Smooth
916
p64.TopSurface = Enum.SurfaceType.Smooth
917
p65 = Instance.new("Part", m9)
918
p65.BrickColor = BrickColor.new("Medium stone grey")
919
p65.Material = Enum.Material.Concrete
920
p65.CFrame = CFrame.new(1.76046753, 37.4432068, 5.90802002, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
921
p65.Anchored = true
922
p65.FormFactor = Enum.FormFactor.Custom
923
p65.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
924
p65.BottomSurface = Enum.SurfaceType.Smooth
925
p65.TopSurface = Enum.SurfaceType.Smooth
926
p66 = Instance.new("Part", m9)
927
p66.BrickColor = BrickColor.new("Dark stone grey")
928
p66.Material = Enum.Material.Concrete
929
p66.CFrame = CFrame.new(-0.351867676, 33.1483307, 6.01708984, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
930
p66.Anchored = true
931
p66.FormFactor = Enum.FormFactor.Custom
932
p66.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
933
p66.BottomSurface = Enum.SurfaceType.Smooth
934
p66.TopSurface = Enum.SurfaceType.Smooth
935
p67 = Instance.new("Part", m9)
936
p67.BrickColor = BrickColor.new("Medium stone grey")
937
p67.Material = Enum.Material.Concrete
938
p67.CFrame = CFrame.new(-0.751800537, 33.1492462, 5.91693115, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
939
p67.Anchored = true
940
p67.FormFactor = Enum.FormFactor.Custom
941
p67.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
942
p67.BottomSurface = Enum.SurfaceType.Smooth
943
p67.TopSurface = Enum.SurfaceType.Smooth
944
p68 = Instance.new("Part", m9)
945
p68.BrickColor = BrickColor.new("Dark stone grey")
946
p68.Material = Enum.Material.Concrete
947
p68.CFrame = CFrame.new(3.84835815, 33.2363739, 6.01934814, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
948
p68.Anchored = true
949
p68.FormFactor = Enum.FormFactor.Custom
950
p68.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
951
p68.BottomSurface = Enum.SurfaceType.Smooth
952
p68.TopSurface = Enum.SurfaceType.Smooth
953
p69 = Instance.new("Part", m9)
954
p69.BrickColor = BrickColor.new("Medium stone grey")
955
p69.Material = Enum.Material.Concrete
956
p69.CFrame = CFrame.new(4.24813843, 33.1349487, 5.9197998, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
957
p69.Anchored = true
958
p69.FormFactor = Enum.FormFactor.Custom
959
p69.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
960
p69.BottomSurface = Enum.SurfaceType.Smooth
961
p69.TopSurface = Enum.SurfaceType.Smooth
962
p70 = Instance.new("Part", m10)
963
p70.BrickColor = BrickColor.new("Dusty Rose")
964
p70.CFrame = CFrame.new(-10.9992371, 13.8369036, 17.4968872, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
965
p70.Anchored = true
966
p70.FormFactor = Enum.FormFactor.Custom
967
p70.Size = Vector3.new(1, 1, 1)
968
p70.BottomSurface = Enum.SurfaceType.Smooth
969
p70.TopSurface = Enum.SurfaceType.Smooth
970
b12 = Instance.new("SpecialMesh", p70)
971
b12.MeshId = "http://www.roblox.com/asset/?id=90782182"
972
b12.TextureId = ""
973
b12.MeshType = Enum.MeshType.FileMesh
974
b12.Name = "Mesh"
975
b12.Scale = Vector3.new(0.200000003, 0.100000001, 0.200000003)
976
p71 = Instance.new("Part", m10)
977
p71.BrickColor = BrickColor.new("Pastel yellow")
978
p71.Material = Enum.Material.SmoothPlastic
979
p71.CFrame = CFrame.new(-11.0039368, 14.0368547, 17.4963989, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
980
p71.Anchored = true
981
p71.FormFactor = Enum.FormFactor.Custom
982
p71.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
983
p71.BottomSurface = Enum.SurfaceType.Smooth
984
p71.TopSurface = Enum.SurfaceType.Smooth
985
b13 = Instance.new("SpecialMesh", p71)
986
b13.MeshType = Enum.MeshType.Sphere
987
b13.Name = "Mesh"
988
b13.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
989
x1 = Instance.new("PointLight", p71)
990
x1.Color = Color3.new(1, 1, 0.498039)
991
x1.Range = 15
992
p72 = Instance.new("Part", m10)
993
p72.BrickColor = BrickColor.new("Dusty Rose")
994
p72.Material = Enum.Material.SmoothPlastic
995
p72.CFrame = CFrame.new(-11.004364, 14.056859, 17.4963074, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
996
p72.Anchored = true
997
p72.FormFactor = Enum.FormFactor.Custom
998
p72.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
999
p72.BottomSurface = Enum.SurfaceType.Smooth
1000
p72.TopSurface = Enum.SurfaceType.Smooth
1001
b14 = Instance.new("SpecialMesh", p72)
1002
b14.MeshType = Enum.MeshType.Sphere
1003
b14.Name = "Mesh"
1004
b14.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1005
p73 = Instance.new("Part", m10)
1006
p73.BrickColor = BrickColor.new("Dark stone grey")
1007
p73.Material = Enum.Material.DiamondPlate
1008
p73.CFrame = CFrame.new(-11.0223083, 14.396596, 17.4955139, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
1009
p73.Anchored = true
1010
p73.FormFactor = Enum.FormFactor.Custom
1011
p73.Size = Vector3.new(0.200000003, 0.400001049, 0.200000003)
1012
p73.BottomSurface = Enum.SurfaceType.Smooth
1013
p73.TopSurface = Enum.SurfaceType.Smooth
1014
b15 = Instance.new("CylinderMesh", p73)
1015
b15.Name = "Mesh"
1016
p74 = Instance.new("Part", m11)
1017
p74.BrickColor = BrickColor.new("Brown")
1018
p74.CFrame = CFrame.new(-16.4149475, 3.43828773, 11.5186768, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
1019
p74.Anchored = true
1020
p74.FormFactor = Enum.FormFactor.Custom
1021
p74.Size = Vector3.new(1, 0.200000003, 1)
1022
p74.BottomSurface = Enum.SurfaceType.Smooth
1023
p74.TopSurface = Enum.SurfaceType.Smooth
1024
b16 = Instance.new("SpecialMesh", p74)
1025
b16.MeshId = "http://www.roblox.com/asset/?id=90782182"
1026
b16.TextureId = ""
1027
b16.MeshType = Enum.MeshType.FileMesh
1028
b16.Name = "Mesh"
1029
b16.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
1030
p75 = Instance.new("Part", m11)
1031
p75.BrickColor = BrickColor.new("Dark stone grey")
1032
p75.Material = Enum.Material.DiamondPlate
1033
p75.CFrame = CFrame.new(-16.4370728, 4.2980442, 11.5166016, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
1034
p75.Anchored = true
1035
p75.FormFactor = Enum.FormFactor.Custom
1036
p75.Size = Vector3.new(0.200000003, 1.20000112, 0.200000003)
1037
p75.BottomSurface = Enum.SurfaceType.Smooth
1038
p75.TopSurface = Enum.SurfaceType.Smooth
1039
b17 = Instance.new("CylinderMesh", p75)
1040
b17.Name = "Mesh"
1041
p76 = Instance.new("Part", m11)
1042
p76.BrickColor = BrickColor.new("Dusty Rose")
1043
p76.CFrame = CFrame.new(-16.4222717, 4.53806496, 11.5159912, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
1044
p76.Anchored = true
1045
p76.FormFactor = Enum.FormFactor.Custom
1046
p76.Size = Vector3.new(1, 1, 1)
1047
p76.BottomSurface = Enum.SurfaceType.Smooth
1048
p76.TopSurface = Enum.SurfaceType.Smooth
1049
b18 = Instance.new("SpecialMesh", p76)
1050
b18.MeshId = "http://www.roblox.com/asset/?id=90782182"
1051
b18.TextureId = ""
1052
b18.MeshType = Enum.MeshType.FileMesh
1053
b18.Name = "Mesh"
1054
b18.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
1055
p77 = Instance.new("Part", m11)
1056
p77.BrickColor = BrickColor.new("Pastel yellow")
1057
p77.Material = Enum.Material.SmoothPlastic
1058
p77.CFrame = CFrame.new(-16.4268494, 4.73775673, 11.515564, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
1059
p77.Anchored = true
1060
p77.FormFactor = Enum.FormFactor.Custom
1061
p77.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
1062
p77.BottomSurface = Enum.SurfaceType.Smooth
1063
p77.TopSurface = Enum.SurfaceType.Smooth
1064
b19 = Instance.new("SpecialMesh", p77)
1065
b19.MeshType = Enum.MeshType.Sphere
1066
b19.Name = "Mesh"
1067
b19.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1068
x2 = Instance.new("PointLight", p77)
1069
x2.Color = Color3.new(1, 1, 0.498039)
1070
x2.Range = 15
1071
p78 = Instance.new("Part", m11)
1072
p78.BrickColor = BrickColor.new("Dusty Rose")
1073
p78.Material = Enum.Material.SmoothPlastic
1074
p78.CFrame = CFrame.new(-16.4273987, 4.75773048, 11.5155029, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
1075
p78.Anchored = true
1076
p78.FormFactor = Enum.FormFactor.Custom
1077
p78.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
1078
p78.BottomSurface = Enum.SurfaceType.Smooth
1079
p78.TopSurface = Enum.SurfaceType.Smooth
1080
b20 = Instance.new("SpecialMesh", p78)
1081
b20.MeshType = Enum.MeshType.Sphere
1082
b20.Name = "Mesh"
1083
b20.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1084
p79 = Instance.new("Part", m12)
1085
p79.BrickColor = BrickColor.new("Medium stone grey")
1086
p79.Material = Enum.Material.Concrete
1087
p79.CFrame = CFrame.new(1.69564819, 14.7428179, 5.96258545, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
1088
p79.Anchored = true
1089
p79.FormFactor = Enum.FormFactor.Custom
1090
p79.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
1091
p79.BottomSurface = Enum.SurfaceType.Smooth
1092
p79.TopSurface = Enum.SurfaceType.Smooth
1093
p80 = Instance.new("Part", m12)
1094
p80.BrickColor = BrickColor.new("Dark stone grey")
1095
p80.Material = Enum.Material.Concrete
1096
p80.CFrame = CFrame.new(1.79672241, 15.1427965, 6.06158447, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
1097
p80.Anchored = true
1098
p80.FormFactor = Enum.FormFactor.Custom
1099
p80.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
1100
p80.BottomSurface = Enum.SurfaceType.Smooth
1101
p80.TopSurface = Enum.SurfaceType.Smooth
1102
p81 = Instance.new("Part", m12)
1103
p81.BrickColor = BrickColor.new("Medium stone grey")
1104
p81.Material = Enum.Material.SmoothPlastic
1105
p81.Reflectance = 0.20000000298023
1106
p81.CFrame = CFrame.new(1.70690918, 18.7426662, 6.15283203, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
1107
p81.Anchored = true
1108
p81.FormFactor = Enum.FormFactor.Custom
1109
p81.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
1110
p81.BottomSurface = Enum.SurfaceType.Smooth
1111
p81.TopSurface = Enum.SurfaceType.Smooth
1112
p82 = Instance.new("Part", m12)
1113
p82.BrickColor = BrickColor.new("Dark stone grey")
1114
p82.Material = Enum.Material.Concrete
1115
p82.CFrame = CFrame.new(1.80700684, 18.7421474, 6.05297852, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
1116
p82.Anchored = true
1117
p82.FormFactor = Enum.FormFactor.Custom
1118
p82.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
1119
p82.BottomSurface = Enum.SurfaceType.Smooth
1120
p82.TopSurface = Enum.SurfaceType.Smooth
1121
p83 = Instance.new("Part", m12)
1122
p83.BrickColor = BrickColor.new("Dark stone grey")
1123
p83.Material = Enum.Material.Concrete
1124
p83.CFrame = CFrame.new(1.61730957, 22.3426762, 6.04418945, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
1125
p83.Anchored = true
1126
p83.FormFactor = Enum.FormFactor.Custom
1127
p83.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
1128
p83.BottomSurface = Enum.SurfaceType.Smooth
1129
p83.TopSurface = Enum.SurfaceType.Smooth
1130
p84 = Instance.new("Part", m12)
1131
p84.BrickColor = BrickColor.new("Medium stone grey")
1132
p84.Material = Enum.Material.Concrete
1133
p84.CFrame = CFrame.new(1.71932983, 23.0432682, 5.94262695, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
1134
p84.Anchored = true
1135
p84.FormFactor = Enum.FormFactor.Custom
1136
p84.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
1137
p84.BottomSurface = Enum.SurfaceType.Smooth
1138
p84.TopSurface = Enum.SurfaceType.Smooth
1139
p85 = Instance.new("Part", m12)
1140
p85.BrickColor = BrickColor.new("Dark stone grey")
1141
p85.Material = Enum.Material.Concrete
1142
p85.CFrame = CFrame.new(-0.392944336, 18.7484035, 6.05163574, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
1143
p85.Anchored = true
1144
p85.FormFactor = Enum.FormFactor.Custom
1145
p85.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
1146
p85.BottomSurface = Enum.SurfaceType.Smooth
1147
p85.TopSurface = Enum.SurfaceType.Smooth
1148
p86 = Instance.new("Part", m12)
1149
p86.BrickColor = BrickColor.new("Medium stone grey")
1150
p86.Material = Enum.Material.Concrete
1151
p86.CFrame = CFrame.new(-0.792938232, 18.7493191, 5.95147705, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
1152
p86.Anchored = true
1153
p86.FormFactor = Enum.FormFactor.Custom
1154
p86.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
1155
p86.BottomSurface = Enum.SurfaceType.Smooth
1156
p86.TopSurface = Enum.SurfaceType.Smooth
1157
p87 = Instance.new("Part", m12)
1158
p87.BrickColor = BrickColor.new("Dark stone grey")
1159
p87.Material = Enum.Material.Concrete
1160
p87.CFrame = CFrame.new(3.80725098, 18.8364487, 6.05389404, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
1161
p87.Anchored = true
1162
p87.FormFactor = Enum.FormFactor.Custom
1163
p87.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
1164
p87.BottomSurface = Enum.SurfaceType.Smooth
1165
p87.TopSurface = Enum.SurfaceType.Smooth
1166
p88 = Instance.new("Part", m12)
1167
p88.BrickColor = BrickColor.new("Medium stone grey")
1168
p88.Material = Enum.Material.Concrete
1169
p88.CFrame = CFrame.new(4.20706177, 18.7350368, 5.95440674, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
1170
p88.Anchored = true
1171
p88.FormFactor = Enum.FormFactor.Custom
1172
p88.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
1173
p88.BottomSurface = Enum.SurfaceType.Smooth
1174
p88.TopSurface = Enum.SurfaceType.Smooth
1175
p89 = Instance.new("Part", m13)
1176
p89.BrickColor = BrickColor.new("Medium stone grey")
1177
p89.Material = Enum.Material.Concrete
1178
p89.CFrame = CFrame.new(15.6813354, 14.76122, 30.3404236, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1179
p89.Anchored = true
1180
p89.FormFactor = Enum.FormFactor.Custom
1181
p89.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
1182
p89.BottomSurface = Enum.SurfaceType.Smooth
1183
p89.TopSurface = Enum.SurfaceType.Smooth
1184
p90 = Instance.new("Part", m13)
1185
p90.BrickColor = BrickColor.new("Dark stone grey")
1186
p90.Material = Enum.Material.Concrete
1187
p90.CFrame = CFrame.new(15.5824585, 15.1617632, 30.4393616, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1188
p90.Anchored = true
1189
p90.FormFactor = Enum.FormFactor.Custom
1190
p90.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
1191
p90.BottomSurface = Enum.SurfaceType.Smooth
1192
p90.TopSurface = Enum.SurfaceType.Smooth
1193
p91 = Instance.new("Part", m13)
1194
p91.BrickColor = BrickColor.new("Medium stone grey")
1195
p91.Material = Enum.Material.SmoothPlastic
1196
p91.Reflectance = 0.20000000298023
1197
p91.CFrame = CFrame.new(15.4927368, 18.7611904, 30.330658, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1198
p91.Anchored = true
1199
p91.FormFactor = Enum.FormFactor.Custom
1200
p91.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
1201
p91.BottomSurface = Enum.SurfaceType.Smooth
1202
p91.TopSurface = Enum.SurfaceType.Smooth
1203
p92 = Instance.new("Part", m13)
1204
p92.BrickColor = BrickColor.new("Dark stone grey")
1205
p92.Material = Enum.Material.Concrete
1206
p92.CFrame = CFrame.new(15.5927124, 18.7611446, 30.4307251, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1207
p92.Anchored = true
1208
p92.FormFactor = Enum.FormFactor.Custom
1209
p92.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
1210
p92.BottomSurface = Enum.SurfaceType.Smooth
1211
p92.TopSurface = Enum.SurfaceType.Smooth
1212
p93 = Instance.new("Part", m13)
1213
p93.BrickColor = BrickColor.new("Dark stone grey")
1214
p93.Material = Enum.Material.Concrete
1215
p93.CFrame = CFrame.new(15.6031189, 22.3606205, 30.222168, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1216
p93.Anchored = true
1217
p93.FormFactor = Enum.FormFactor.Custom
1218
p93.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
1219
p93.BottomSurface = Enum.SurfaceType.Smooth
1220
p93.TopSurface = Enum.SurfaceType.Smooth
1221
p94 = Instance.new("Part", m13)
1222
p94.BrickColor = BrickColor.new("Medium stone grey")
1223
p94.Material = Enum.Material.Concrete
1224
p94.CFrame = CFrame.new(15.7050476, 23.0617466, 30.3204956, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1225
p94.Anchored = true
1226
p94.FormFactor = Enum.FormFactor.Custom
1227
p94.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
1228
p94.BottomSurface = Enum.SurfaceType.Smooth
1229
p94.TopSurface = Enum.SurfaceType.Smooth
1230
p95 = Instance.new("Part", m13)
1231
p95.BrickColor = BrickColor.new("Dark stone grey")
1232
p95.Material = Enum.Material.Concrete
1233
p95.CFrame = CFrame.new(15.5940552, 18.7558193, 28.230835, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1234
p95.Anchored = true
1235
p95.FormFactor = Enum.FormFactor.Custom
1236
p95.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
1237
p95.BottomSurface = Enum.SurfaceType.Smooth
1238
p95.TopSurface = Enum.SurfaceType.Smooth
1239
p96 = Instance.new("Part", m13)
1240
p96.BrickColor = BrickColor.new("Medium stone grey")
1241
p96.Material = Enum.Material.Concrete
1242
p96.CFrame = CFrame.new(15.6942444, 18.7546291, 27.8308411, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1243
p96.Anchored = true
1244
p96.FormFactor = Enum.FormFactor.Custom
1245
p96.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
1246
p96.BottomSurface = Enum.SurfaceType.Smooth
1247
p96.TopSurface = Enum.SurfaceType.Smooth
1248
p97 = Instance.new("Part", m13)
1249
p97.BrickColor = BrickColor.new("Dark stone grey")
1250
p97.Material = Enum.Material.Concrete
1251
p97.CFrame = CFrame.new(15.5918579, 18.8659744, 32.430481, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1252
p97.Anchored = true
1253
p97.FormFactor = Enum.FormFactor.Custom
1254
p97.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
1255
p97.BottomSurface = Enum.SurfaceType.Smooth
1256
p97.TopSurface = Enum.SurfaceType.Smooth
1257
p98 = Instance.new("Part", m13)
1258
p98.BrickColor = BrickColor.new("Medium stone grey")
1259
p98.Material = Enum.Material.Concrete
1260
p98.CFrame = CFrame.new(15.6913147, 18.7666073, 32.83078, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1261
p98.Anchored = true
1262
p98.FormFactor = Enum.FormFactor.Custom
1263
p98.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
1264
p98.BottomSurface = Enum.SurfaceType.Smooth
1265
p98.TopSurface = Enum.SurfaceType.Smooth
1266
p99 = Instance.new("Part", m14)
1267
p99.BrickColor = BrickColor.new("Medium stone grey")
1268
p99.Material = Enum.Material.Concrete
1269
p99.CFrame = CFrame.new(-10.1616821, 0.486488611, 34.4594116, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
1270
p99.Anchored = true
1271
p99.FormFactor = Enum.FormFactor.Custom
1272
p99.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
1273
p99.BottomSurface = Enum.SurfaceType.Smooth
1274
p99.TopSurface = Enum.SurfaceType.Smooth
1275
b21 = Instance.new("CylinderMesh", p99)
1276
b21.Name = "Mesh"
1277
p100 = Instance.new("Part", m14)
1278
p100.BrickColor = BrickColor.new("Medium stone grey")
1279
p100.Material = Enum.Material.Concrete
1280
p100.CFrame = CFrame.new(-10.1596985, 1.18550897, 34.4577637, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
1281
p100.Anchored = true
1282
p100.FormFactor = Enum.FormFactor.Custom
1283
p100.Size = Vector3.new(0.400000006, 1.20000076, 0.400000006)
1284
p100.BottomSurface = Enum.SurfaceType.Smooth
1285
p100.TopSurface = Enum.SurfaceType.Smooth
1286
b22 = Instance.new("CylinderMesh", p100)
1287
b22.Name = "Mesh"
1288
p101 = Instance.new("Part", m14)
1289
p101.BrickColor = BrickColor.new("Dusty Rose")
1290
p101.Material = Enum.Material.Concrete
1291
p101.Reflectance = 0.20000000298023
1292
p101.CFrame = CFrame.new(-10.1574402, 1.98652017, 34.4558411, -0.999992847, -0.00285560009, -0.000583045126, 0.00285403873, -0.999992371, 0.00240225228, -0.000589072471, 0.00240054913, 0.999994397)
1293
p101.Anchored = true
1294
p101.FormFactor = Enum.FormFactor.Custom
1295
p101.Size = Vector3.new(2.00001645, 0.399999976, 2)
1296
p101.BottomSurface = Enum.SurfaceType.Smooth
1297
p101.TopSurface = Enum.SurfaceType.Smooth
1298
b23 = Instance.new("CylinderMesh", p101)
1299
b23.Name = "Mesh"
1300
p102 = Instance.new("Part", m14)
1301
p102.BrickColor = BrickColor.new("Brick yellow")
1302
p102.Material = Enum.Material.Concrete
1303
p102.CFrame = CFrame.new(-10.1674194, 1.98653543, 34.4558411, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
1304
p102.Anchored = true
1305
p102.FormFactor = Enum.FormFactor.Custom
1306
p102.Size = Vector3.new(2.1400001, 0.200000003, 2.06000042)
1307
p102.BottomSurface = Enum.SurfaceType.Smooth
1308
p102.TopSurface = Enum.SurfaceType.Smooth
1309
b24 = Instance.new("CylinderMesh", p102)
1310
b24.Name = "Mesh"
1311
p103 = Instance.new("Part", m15)
1312
p103.BrickColor = BrickColor.new("Dusty Rose")
1313
p103.CFrame = CFrame.new(-11.217804, 13.9138536, 49.2964172, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
1314
p103.Anchored = true
1315
p103.FormFactor = Enum.FormFactor.Custom
1316
p103.Size = Vector3.new(1, 1, 1)
1317
p103.BottomSurface = Enum.SurfaceType.Smooth
1318
p103.TopSurface = Enum.SurfaceType.Smooth
1319
b25 = Instance.new("SpecialMesh", p103)
1320
b25.MeshId = "http://www.roblox.com/asset/?id=90782182"
1321
b25.TextureId = ""
1322
b25.MeshType = Enum.MeshType.FileMesh
1323
b25.Name = "Mesh"
1324
b25.Scale = Vector3.new(0.200000003, 0.100000001, 0.200000003)
1325
p104 = Instance.new("Part", m15)
1326
p104.BrickColor = BrickColor.new("Pastel yellow")
1327
p104.Material = Enum.Material.SmoothPlastic
1328
p104.CFrame = CFrame.new(-11.2224731, 14.1138048, 49.2959595, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
1329
p104.Anchored = true
1330
p104.FormFactor = Enum.FormFactor.Custom
1331
p104.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
1332
p104.BottomSurface = Enum.SurfaceType.Smooth
1333
p104.TopSurface = Enum.SurfaceType.Smooth
1334
b26 = Instance.new("SpecialMesh", p104)
1335
b26.MeshType = Enum.MeshType.Sphere
1336
b26.Name = "Mesh"
1337
b26.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1338
x3 = Instance.new("PointLight", p104)
1339
x3.Color = Color3.new(1, 1, 0.498039)
1340
x3.Range = 15
1341
p105 = Instance.new("Part", m15)
1342
p105.BrickColor = BrickColor.new("Dusty Rose")
1343
p105.Material = Enum.Material.SmoothPlastic
1344
p105.CFrame = CFrame.new(-11.2229614, 14.1338243, 49.295929, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
1345
p105.Anchored = true
1346
p105.FormFactor = Enum.FormFactor.Custom
1347
p105.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
1348
p105.BottomSurface = Enum.SurfaceType.Smooth
1349
p105.TopSurface = Enum.SurfaceType.Smooth
1350
b27 = Instance.new("SpecialMesh", p105)
1351
b27.MeshType = Enum.MeshType.Sphere
1352
b27.Name = "Mesh"
1353
b27.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1354
p106 = Instance.new("Part", m15)
1355
p106.BrickColor = BrickColor.new("Dark stone grey")
1356
p106.Material = Enum.Material.DiamondPlate
1357
p106.CFrame = CFrame.new(-11.2408447, 14.4735613, 49.295105, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
1358
p106.Anchored = true
1359
p106.FormFactor = Enum.FormFactor.Custom
1360
p106.Size = Vector3.new(0.200000003, 0.400001049, 0.200000003)
1361
p106.BottomSurface = Enum.SurfaceType.Smooth
1362
p106.TopSurface = Enum.SurfaceType.Smooth
1363
b28 = Instance.new("CylinderMesh", p106)
1364
b28.Name = "Mesh"
1365
p107 = Instance.new("Part", m16)
1366
p107.BrickColor = BrickColor.new("Dusty Rose")
1367
p107.CFrame = CFrame.new(3.20056152, 13.7964067, 17.5052185, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
1368
p107.Anchored = true
1369
p107.FormFactor = Enum.FormFactor.Custom
1370
p107.Size = Vector3.new(1, 1, 1)
1371
p107.BottomSurface = Enum.SurfaceType.Smooth
1372
p107.TopSurface = Enum.SurfaceType.Smooth
1373
b29 = Instance.new("SpecialMesh", p107)
1374
b29.MeshId = "http://www.roblox.com/asset/?id=90782182"
1375
b29.TextureId = ""
1376
b29.MeshType = Enum.MeshType.FileMesh
1377
b29.Name = "Mesh"
1378
b29.Scale = Vector3.new(0.200000003, 0.100000001, 0.200000003)
1379
p108 = Instance.new("Part", m16)
1380
p108.BrickColor = BrickColor.new("Pastel yellow")
1381
p108.Material = Enum.Material.SmoothPlastic
1382
p108.CFrame = CFrame.new(3.19589233, 13.9963427, 17.5047913, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
1383
p108.Anchored = true
1384
p108.FormFactor = Enum.FormFactor.Custom
1385
p108.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
1386
p108.BottomSurface = Enum.SurfaceType.Smooth
1387
p108.TopSurface = Enum.SurfaceType.Smooth
1388
b30 = Instance.new("SpecialMesh", p108)
1389
b30.MeshType = Enum.MeshType.Sphere
1390
b30.Name = "Mesh"
1391
b30.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1392
x4 = Instance.new("PointLight", p108)
1393
x4.Color = Color3.new(1, 1, 0.498039)
1394
x4.Range = 15
1395
p109 = Instance.new("Part", m16)
1396
p109.BrickColor = BrickColor.new("Dusty Rose")
1397
p109.Material = Enum.Material.SmoothPlastic
1398
p109.CFrame = CFrame.new(3.19549561, 14.0163317, 17.5046692, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
1399
p109.Anchored = true
1400
p109.FormFactor = Enum.FormFactor.Custom
1401
p109.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
1402
p109.BottomSurface = Enum.SurfaceType.Smooth
1403
p109.TopSurface = Enum.SurfaceType.Smooth
1404
b31 = Instance.new("SpecialMesh", p109)
1405
b31.MeshType = Enum.MeshType.Sphere
1406
b31.Name = "Mesh"
1407
b31.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1408
p110 = Instance.new("Part", m16)
1409
p110.BrickColor = BrickColor.new("Dark stone grey")
1410
p110.Material = Enum.Material.DiamondPlate
1411
p110.CFrame = CFrame.new(3.17749023, 14.3560534, 17.5038757, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
1412
p110.Anchored = true
1413
p110.FormFactor = Enum.FormFactor.Custom
1414
p110.Size = Vector3.new(0.200000003, 0.400001049, 0.200000003)
1415
p110.BottomSurface = Enum.SurfaceType.Smooth
1416
p110.TopSurface = Enum.SurfaceType.Smooth
1417
b32 = Instance.new("CylinderMesh", p110)
1418
b32.Name = "Mesh"
1419
p111 = Instance.new("Part", m17)
1420
p111.BrickColor = BrickColor.new("Dusty Rose")
1421
p111.CFrame = CFrame.new(3.18203735, 13.872777, 49.3049622, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
1422
p111.Anchored = true
1423
p111.FormFactor = Enum.FormFactor.Custom
1424
p111.Size = Vector3.new(1, 1, 1)
1425
p111.BottomSurface = Enum.SurfaceType.Smooth
1426
p111.TopSurface = Enum.SurfaceType.Smooth
1427
b33 = Instance.new("SpecialMesh", p111)
1428
b33.MeshId = "http://www.roblox.com/asset/?id=90782182"
1429
b33.TextureId = ""
1430
b33.MeshType = Enum.MeshType.FileMesh
1431
b33.Name = "Mesh"
1432
b33.Scale = Vector3.new(0.200000003, 0.100000001, 0.200000003)
1433
p112 = Instance.new("Part", m17)
1434
p112.BrickColor = BrickColor.new("Pastel yellow")
1435
p112.Material = Enum.Material.SmoothPlastic
1436
p112.CFrame = CFrame.new(3.17739868, 14.0727282, 49.3044434, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
1437
p112.Anchored = true
1438
p112.FormFactor = Enum.FormFactor.Custom
1439
p112.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
1440
p112.BottomSurface = Enum.SurfaceType.Smooth
1441
p112.TopSurface = Enum.SurfaceType.Smooth
1442
b34 = Instance.new("SpecialMesh", p112)
1443
b34.MeshType = Enum.MeshType.Sphere
1444
b34.Name = "Mesh"
1445
b34.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1446
x5 = Instance.new("PointLight", p112)
1447
x5.Color = Color3.new(1, 1, 0.498039)
1448
x5.Range = 15
1449
p113 = Instance.new("Part", m17)
1450
p113.BrickColor = BrickColor.new("Dusty Rose")
1451
p113.Material = Enum.Material.SmoothPlastic
1452
p113.CFrame = CFrame.new(3.17694092, 14.0927172, 49.3044128, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
1453
p113.Anchored = true
1454
p113.FormFactor = Enum.FormFactor.Custom
1455
p113.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
1456
p113.BottomSurface = Enum.SurfaceType.Smooth
1457
p113.TopSurface = Enum.SurfaceType.Smooth
1458
b35 = Instance.new("SpecialMesh", p113)
1459
b35.MeshType = Enum.MeshType.Sphere
1460
b35.Name = "Mesh"
1461
b35.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1462
p114 = Instance.new("Part", m17)
1463
p114.BrickColor = BrickColor.new("Dark stone grey")
1464
p114.Material = Enum.Material.DiamondPlate
1465
p114.CFrame = CFrame.new(3.15896606, 14.4324541, 49.3035583, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
1466
p114.Anchored = true
1467
p114.FormFactor = Enum.FormFactor.Custom
1468
p114.Size = Vector3.new(0.200000003, 0.400001049, 0.200000003)
1469
p114.BottomSurface = Enum.SurfaceType.Smooth
1470
p114.TopSurface = Enum.SurfaceType.Smooth
1471
b36 = Instance.new("CylinderMesh", p114)
1472
b36.Name = "Mesh"
1473
p115 = Instance.new("Part", m18)
1474
p115.BrickColor = BrickColor.new("Dusty Rose")
1475
p115.CFrame = CFrame.new(3.19155884, 13.8333635, 32.9051208, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
1476
p115.Anchored = true
1477
p115.FormFactor = Enum.FormFactor.Custom
1478
p115.Size = Vector3.new(1, 1, 1)
1479
p115.BottomSurface = Enum.SurfaceType.Smooth
1480
p115.TopSurface = Enum.SurfaceType.Smooth
1481
b37 = Instance.new("SpecialMesh", p115)
1482
b37.MeshId = "http://www.roblox.com/asset/?id=90782182"
1483
b37.TextureId = ""
1484
b37.MeshType = Enum.MeshType.FileMesh
1485
b37.Name = "Mesh"
1486
b37.Scale = Vector3.new(0.200000003, 0.100000001, 0.200000003)
1487
p116 = Instance.new("Part", m18)
1488
p116.BrickColor = BrickColor.new("Pastel yellow")
1489
p116.Material = Enum.Material.SmoothPlastic
1490
p116.CFrame = CFrame.new(3.18692017, 14.0333452, 32.9046936, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
1491
p116.Anchored = true
1492
p116.FormFactor = Enum.FormFactor.Custom
1493
p116.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
1494
p116.BottomSurface = Enum.SurfaceType.Smooth
1495
p116.TopSurface = Enum.SurfaceType.Smooth
1496
b38 = Instance.new("SpecialMesh", p116)
1497
b38.MeshType = Enum.MeshType.Sphere
1498
b38.Name = "Mesh"
1499
b38.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1500
x6 = Instance.new("PointLight", p116)
1501
x6.Color = Color3.new(1, 1, 0.498039)
1502
x6.Range = 15
1503
p117 = Instance.new("Part", m18)
1504
p117.BrickColor = BrickColor.new("Dusty Rose")
1505
p117.Material = Enum.Material.SmoothPlastic
1506
p117.CFrame = CFrame.new(3.18652344, 14.0533342, 32.9046326, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
1507
p117.Anchored = true
1508
p117.FormFactor = Enum.FormFactor.Custom
1509
p117.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
1510
p117.BottomSurface = Enum.SurfaceType.Smooth
1511
p117.TopSurface = Enum.SurfaceType.Smooth
1512
b39 = Instance.new("SpecialMesh", p117)
1513
b39.MeshType = Enum.MeshType.Sphere
1514
b39.Name = "Mesh"
1515
b39.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1516
p118 = Instance.new("Part", m18)
1517
p118.BrickColor = BrickColor.new("Dark stone grey")
1518
p118.Material = Enum.Material.DiamondPlate
1519
p118.CFrame = CFrame.new(3.16851807, 14.3930712, 32.9037781, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
1520
p118.Anchored = true
1521
p118.FormFactor = Enum.FormFactor.Custom
1522
p118.Size = Vector3.new(0.200000003, 0.400001049, 0.200000003)
1523
p118.BottomSurface = Enum.SurfaceType.Smooth
1524
p118.TopSurface = Enum.SurfaceType.Smooth
1525
b40 = Instance.new("CylinderMesh", p118)
1526
b40.Name = "Mesh"
1527
p119 = Instance.new("Part", m19)
1528
p119.BrickColor = BrickColor.new("Medium stone grey")
1529
p119.Material = Enum.Material.Concrete
1530
p119.CFrame = CFrame.new(-7.5758667, 1.68769169, 13.1581421, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1531
p119.Anchored = true
1532
p119.FormFactor = Enum.FormFactor.Custom
1533
p119.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
1534
p119.BottomSurface = Enum.SurfaceType.Smooth
1535
p119.TopSurface = Enum.SurfaceType.Smooth
1536
b41 = Instance.new("CylinderMesh", p119)
1537
b41.Name = "Mesh"
1538
p120 = Instance.new("Part", m19)
1539
p120.BrickColor = BrickColor.new("Reddish brown")
1540
p120.Material = Enum.Material.Wood
1541
p120.CFrame = CFrame.new(-6.77511597, 1.78356278, 12.3934937, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
1542
p120.Anchored = true
1543
p120.FormFactor = Enum.FormFactor.Custom
1544
p120.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
1545
p120.BottomSurface = Enum.SurfaceType.Smooth
1546
p120.TopSurface = Enum.SurfaceType.Smooth
1547
p121 = Instance.new("Part", m19)
1548
p121.BrickColor = BrickColor.new("Medium stone grey")
1549
p121.Material = Enum.Material.Concrete
1550
p121.CFrame = CFrame.new(-5.9777832, 0.982994318, 13.1607666, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1551
p121.Anchored = true
1552
p121.FormFactor = Enum.FormFactor.Custom
1553
p121.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
1554
p121.BottomSurface = Enum.SurfaceType.Smooth
1555
p121.TopSurface = Enum.SurfaceType.Smooth
1556
b42 = Instance.new("CylinderMesh", p121)
1557
b42.Name = "Mesh"
1558
p122 = Instance.new("Part", m19)
1559
p122.BrickColor = BrickColor.new("Medium stone grey")
1560
p122.Material = Enum.Material.Concrete
1561
p122.CFrame = CFrame.new(-5.97686768, 0.979149103, 11.560791, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1562
p122.Anchored = true
1563
p122.FormFactor = Enum.FormFactor.Custom
1564
p122.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
1565
p122.BottomSurface = Enum.SurfaceType.Smooth
1566
p122.TopSurface = Enum.SurfaceType.Smooth
1567
b43 = Instance.new("CylinderMesh", p122)
1568
b43.Name = "Mesh"
1569
p123 = Instance.new("Part", m19)
1570
p123.BrickColor = BrickColor.new("Medium stone grey")
1571
p123.Material = Enum.Material.Concrete
1572
p123.CFrame = CFrame.new(-7.57492065, 1.68383121, 11.5581665, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1573
p123.Anchored = true
1574
p123.FormFactor = Enum.FormFactor.Custom
1575
p123.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
1576
p123.BottomSurface = Enum.SurfaceType.Smooth
1577
p123.TopSurface = Enum.SurfaceType.Smooth
1578
b44 = Instance.new("CylinderMesh", p123)
1579
b44.Name = "Mesh"
1580
p124 = Instance.new("Part", m19)
1581
p124.BrickColor = BrickColor.new("Reddish brown")
1582
p124.Material = Enum.Material.Wood
1583
p124.CFrame = CFrame.new(-7.57000732, 3.58590126, 12.3886108, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
1584
p124.Anchored = true
1585
p124.FormFactor = Enum.FormFactor.Custom
1586
p124.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
1587
p124.BottomSurface = Enum.SurfaceType.Smooth
1588
p124.TopSurface = Enum.SurfaceType.Smooth
1589
p125 = Instance.new("Part", m20)
1590
p125.BrickColor = BrickColor.new("Brown")
1591
p125.CFrame = CFrame.new(-13.2314453, 3.69931984, 40.7199707, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
1592
p125.Anchored = true
1593
p125.FormFactor = Enum.FormFactor.Custom
1594
p125.Size = Vector3.new(1, 0.200000003, 1)
1595
p125.BottomSurface = Enum.SurfaceType.Smooth
1596
p125.TopSurface = Enum.SurfaceType.Smooth
1597
b45 = Instance.new("SpecialMesh", p125)
1598
b45.MeshId = "http://www.roblox.com/asset/?id=90782182"
1599
b45.TextureId = ""
1600
b45.MeshType = Enum.MeshType.FileMesh
1601
b45.Name = "Mesh"
1602
b45.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
1603
p126 = Instance.new("Part", m20)
1604
p126.BrickColor = BrickColor.new("Dark stone grey")
1605
p126.Material = Enum.Material.DiamondPlate
1606
p126.CFrame = CFrame.new(-13.2536621, 4.55904579, 40.7178345, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
1607
p126.Anchored = true
1608
p126.FormFactor = Enum.FormFactor.Custom
1609
p126.Size = Vector3.new(0.200000003, 1.20000112, 0.200000003)
1610
p126.BottomSurface = Enum.SurfaceType.Smooth
1611
p126.TopSurface = Enum.SurfaceType.Smooth
1612
b46 = Instance.new("CylinderMesh", p126)
1613
b46.Name = "Mesh"
1614
p127 = Instance.new("Part", m20)
1615
p127.BrickColor = BrickColor.new("Dusty Rose")
1616
p127.CFrame = CFrame.new(-13.238739, 4.79905128, 40.7172852, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
1617
p127.Anchored = true
1618
p127.FormFactor = Enum.FormFactor.Custom
1619
p127.Size = Vector3.new(1, 1, 1)
1620
p127.BottomSurface = Enum.SurfaceType.Smooth
1621
p127.TopSurface = Enum.SurfaceType.Smooth
1622
b47 = Instance.new("SpecialMesh", p127)
1623
b47.MeshId = "http://www.roblox.com/asset/?id=90782182"
1624
b47.TextureId = ""
1625
b47.MeshType = Enum.MeshType.FileMesh
1626
b47.Name = "Mesh"
1627
b47.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
1628
p128 = Instance.new("Part", m20)
1629
p128.BrickColor = BrickColor.new("Pastel yellow")
1630
p128.Material = Enum.Material.SmoothPlastic
1631
p128.CFrame = CFrame.new(-13.2434387, 4.9987278, 40.7167969, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
1632
p128.Anchored = true
1633
p128.FormFactor = Enum.FormFactor.Custom
1634
p128.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
1635
p128.BottomSurface = Enum.SurfaceType.Smooth
1636
p128.TopSurface = Enum.SurfaceType.Smooth
1637
b48 = Instance.new("SpecialMesh", p128)
1638
b48.MeshType = Enum.MeshType.Sphere
1639
b48.Name = "Mesh"
1640
b48.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1641
x7 = Instance.new("PointLight", p128)
1642
x7.Color = Color3.new(1, 1, 0.498039)
1643
x7.Range = 15
1644
p129 = Instance.new("Part", m20)
1645
p129.BrickColor = BrickColor.new("Dusty Rose")
1646
p129.Material = Enum.Material.SmoothPlastic
1647
p129.CFrame = CFrame.new(-13.2438354, 5.01871681, 40.7167969, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
1648
p129.Anchored = true
1649
p129.FormFactor = Enum.FormFactor.Custom
1650
p129.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
1651
p129.BottomSurface = Enum.SurfaceType.Smooth
1652
p129.TopSurface = Enum.SurfaceType.Smooth
1653
b49 = Instance.new("SpecialMesh", p129)
1654
b49.MeshType = Enum.MeshType.Sphere
1655
b49.Name = "Mesh"
1656
b49.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1657
p130 = Instance.new("Part", m21)
1658
p130.BrickColor = BrickColor.new("Medium stone grey")
1659
p130.Material = Enum.Material.Concrete
1660
p130.CFrame = CFrame.new(9.33792114, 0.392723382, 34.5012207, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
1661
p130.Anchored = true
1662
p130.FormFactor = Enum.FormFactor.Custom
1663
p130.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
1664
p130.BottomSurface = Enum.SurfaceType.Smooth
1665
p130.TopSurface = Enum.SurfaceType.Smooth
1666
b50 = Instance.new("CylinderMesh", p130)
1667
b50.Name = "Mesh"
1668
p131 = Instance.new("Part", m21)
1669
p131.BrickColor = BrickColor.new("Medium stone grey")
1670
p131.Material = Enum.Material.Concrete
1671
p131.CFrame = CFrame.new(9.34130859, 1.59275138, 34.4983521, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
1672
p131.Anchored = true
1673
p131.FormFactor = Enum.FormFactor.Custom
1674
p131.Size = Vector3.new(0.400000006, 2.6000011, 0.400000006)
1675
p131.BottomSurface = Enum.SurfaceType.Smooth
1676
p131.TopSurface = Enum.SurfaceType.Smooth
1677
b51 = Instance.new("CylinderMesh", p131)
1678
b51.Name = "Mesh"
1679
p132 = Instance.new("Part", m21)
1680
p132.BrickColor = BrickColor.new("Brick yellow")
1681
p132.Material = Enum.Material.Concrete
1682
p132.CFrame = CFrame.new(9.31567383, 3.09299636, 34.4996948, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
1683
p132.Anchored = true
1684
p132.FormFactor = Enum.FormFactor.Custom
1685
p132.Size = Vector3.new(3.73999095, 0.200000003, 4.09000874)
1686
p132.BottomSurface = Enum.SurfaceType.Smooth
1687
p132.TopSurface = Enum.SurfaceType.Smooth
1688
p133 = Instance.new("Part", m21)
1689
p133.BrickColor = BrickColor.new("Reddish brown")
1690
p133.Material = Enum.Material.Wood
1691
p133.CFrame = CFrame.new(9.31066895, 3.09301162, 34.4946899, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
1692
p133.Anchored = true
1693
p133.FormFactor = Enum.FormFactor.Custom
1694
p133.Size = Vector3.new(3.66999078, 0.400000006, 4.00000858)
1695
p133.BottomSurface = Enum.SurfaceType.Smooth
1696
p133.TopSurface = Enum.SurfaceType.Smooth
1697
p134 = Instance.new("Part", m22)
1698
p134.BrickColor = BrickColor.new("Medium stone grey")
1699
p134.Material = Enum.Material.Concrete
1700
p134.CFrame = CFrame.new(9.96923828, 1.70089066, 38.5983887, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
1701
p134.Anchored = true
1702
p134.FormFactor = Enum.FormFactor.Custom
1703
p134.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
1704
p134.BottomSurface = Enum.SurfaceType.Smooth
1705
p134.TopSurface = Enum.SurfaceType.Smooth
1706
b52 = Instance.new("CylinderMesh", p134)
1707
b52.Name = "Mesh"
1708
p135 = Instance.new("Part", m22)
1709
p135.BrickColor = BrickColor.new("Reddish brown")
1710
p135.Material = Enum.Material.Wood
1711
p135.CFrame = CFrame.new(9.20498657, 1.80115628, 37.7976685, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
1712
p135.Anchored = true
1713
p135.FormFactor = Enum.FormFactor.Custom
1714
p135.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
1715
p135.BottomSurface = Enum.SurfaceType.Smooth
1716
p135.TopSurface = Enum.SurfaceType.Smooth
1717
p136 = Instance.new("Part", m22)
1718
p136.BrickColor = BrickColor.new("Medium stone grey")
1719
p136.Material = Enum.Material.Concrete
1720
p136.CFrame = CFrame.new(9.9682312, 0.996895075, 37.0001221, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
1721
p136.Anchored = true
1722
p136.FormFactor = Enum.FormFactor.Custom
1723
p136.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
1724
p136.BottomSurface = Enum.SurfaceType.Smooth
1725
p136.TopSurface = Enum.SurfaceType.Smooth
1726
b53 = Instance.new("CylinderMesh", p136)
1727
b53.Name = "Mesh"
1728
p137 = Instance.new("Part", m22)
1729
p137.BrickColor = BrickColor.new("Medium stone grey")
1730
p137.Material = Enum.Material.Concrete
1731
p137.CFrame = CFrame.new(8.36816406, 1.00145745, 36.9992065, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
1732
p137.Anchored = true
1733
p137.FormFactor = Enum.FormFactor.Custom
1734
p137.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
1735
p137.BottomSurface = Enum.SurfaceType.Smooth
1736
p137.TopSurface = Enum.SurfaceType.Smooth
1737
b54 = Instance.new("CylinderMesh", p137)
1738
b54.Name = "Mesh"
1739
p138 = Instance.new("Part", m22)
1740
p138.BrickColor = BrickColor.new("Medium stone grey")
1741
p138.Material = Enum.Material.Concrete
1742
p138.CFrame = CFrame.new(8.36923218, 1.70545304, 38.5974121, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
1743
p138.Anchored = true
1744
p138.FormFactor = Enum.FormFactor.Custom
1745
p138.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
1746
p138.BottomSurface = Enum.SurfaceType.Smooth
1747
p138.TopSurface = Enum.SurfaceType.Smooth
1748
b55 = Instance.new("CylinderMesh", p138)
1749
b55.Name = "Mesh"
1750
p139 = Instance.new("Part", m22)
1751
p139.BrickColor = BrickColor.new("Reddish brown")
1752
p139.Material = Enum.Material.Wood
1753
p139.CFrame = CFrame.new(9.2097168, 3.60312843, 38.5933533, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
1754
p139.Anchored = true
1755
p139.FormFactor = Enum.FormFactor.Custom
1756
p139.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
1757
p139.BottomSurface = Enum.SurfaceType.Smooth
1758
p139.TopSurface = Enum.SurfaceType.Smooth
1759
p140 = Instance.new("Part", m23)
1760
p140.BrickColor = BrickColor.new("Medium stone grey")
1761
p140.Material = Enum.Material.Concrete
1762
p140.CFrame = CFrame.new(-12.3748474, 1.69771671, 11.6254272, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
1763
p140.Anchored = true
1764
p140.FormFactor = Enum.FormFactor.Custom
1765
p140.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
1766
p140.BottomSurface = Enum.SurfaceType.Smooth
1767
p140.TopSurface = Enum.SurfaceType.Smooth
1768
b56 = Instance.new("CylinderMesh", p140)
1769
b56.Name = "Mesh"
1770
p141 = Instance.new("Part", m23)
1771
p141.BrickColor = BrickColor.new("Reddish brown")
1772
p141.Material = Enum.Material.Wood
1773
p141.CFrame = CFrame.new(-13.1749573, 1.80185819, 12.3895874, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1774
p141.Anchored = true
1775
p141.FormFactor = Enum.FormFactor.Custom
1776
p141.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
1777
p141.BottomSurface = Enum.SurfaceType.Smooth
1778
p141.TopSurface = Enum.SurfaceType.Smooth
1779
p142 = Instance.new("Part", m23)
1780
p142.BrickColor = BrickColor.new("Medium stone grey")
1781
p142.Material = Enum.Material.Concrete
1782
p142.CFrame = CFrame.new(-13.9768066, 1.0021441, 11.6261597, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
1783
p142.Anchored = true
1784
p142.FormFactor = Enum.FormFactor.Custom
1785
p142.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
1786
p142.BottomSurface = Enum.SurfaceType.Smooth
1787
p142.TopSurface = Enum.SurfaceType.Smooth
1788
b57 = Instance.new("CylinderMesh", p142)
1789
b57.Name = "Mesh"
1790
p143 = Instance.new("Part", m23)
1791
p143.BrickColor = BrickColor.new("Medium stone grey")
1792
p143.Material = Enum.Material.Concrete
1793
p143.CFrame = CFrame.new(-13.9777222, 1.00597405, 13.2261963, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
1794
p143.Anchored = true
1795
p143.FormFactor = Enum.FormFactor.Custom
1796
p143.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
1797
p143.BottomSurface = Enum.SurfaceType.Smooth
1798
p143.TopSurface = Enum.SurfaceType.Smooth
1799
b58 = Instance.new("CylinderMesh", p143)
1800
b58.Name = "Mesh"
1801
p144 = Instance.new("Part", m23)
1802
p144.BrickColor = BrickColor.new("Medium stone grey")
1803
p144.Material = Enum.Material.Concrete
1804
p144.CFrame = CFrame.new(-12.3757324, 1.70154679, 13.2254639, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
1805
p144.Anchored = true
1806
p144.FormFactor = Enum.FormFactor.Custom
1807
p144.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
1808
p144.BottomSurface = Enum.SurfaceType.Smooth
1809
p144.TopSurface = Enum.SurfaceType.Smooth
1810
b59 = Instance.new("CylinderMesh", p144)
1811
b59.Name = "Mesh"
1812
p145 = Instance.new("Part", m23)
1813
p145.BrickColor = BrickColor.new("Reddish brown")
1814
p145.Material = Enum.Material.Wood
1815
p145.CFrame = CFrame.new(-12.3698425, 3.59958839, 12.3858032, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1816
p145.Anchored = true
1817
p145.FormFactor = Enum.FormFactor.Custom
1818
p145.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
1819
p145.BottomSurface = Enum.SurfaceType.Smooth
1820
p145.TopSurface = Enum.SurfaceType.Smooth
1821
p146 = Instance.new("Part", m24)
1822
p146.BrickColor = BrickColor.new("Medium stone grey")
1823
p146.Material = Enum.Material.Concrete
1824
p146.CFrame = CFrame.new(15.6872559, 14.7366991, 20.140564, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1825
p146.Anchored = true
1826
p146.FormFactor = Enum.FormFactor.Custom
1827
p146.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
1828
p146.BottomSurface = Enum.SurfaceType.Smooth
1829
p146.TopSurface = Enum.SurfaceType.Smooth
1830
p147 = Instance.new("Part", m24)
1831
p147.BrickColor = BrickColor.new("Dark stone grey")
1832
p147.Material = Enum.Material.Concrete
1833
p147.CFrame = CFrame.new(15.5884094, 15.1372728, 20.2394714, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1834
p147.Anchored = true
1835
p147.FormFactor = Enum.FormFactor.Custom
1836
p147.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
1837
p147.BottomSurface = Enum.SurfaceType.Smooth
1838
p147.TopSurface = Enum.SurfaceType.Smooth
1839
p148 = Instance.new("Part", m24)
1840
p148.BrickColor = BrickColor.new("Medium stone grey")
1841
p148.Material = Enum.Material.SmoothPlastic
1842
p148.Reflectance = 0.20000000298023
1843
p148.CFrame = CFrame.new(15.4986572, 18.7366543, 20.1307678, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1844
p148.Anchored = true
1845
p148.FormFactor = Enum.FormFactor.Custom
1846
p148.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
1847
p148.BottomSurface = Enum.SurfaceType.Smooth
1848
p148.TopSurface = Enum.SurfaceType.Smooth
1849
p149 = Instance.new("Part", m24)
1850
p149.BrickColor = BrickColor.new("Dark stone grey")
1851
p149.Material = Enum.Material.Concrete
1852
p149.CFrame = CFrame.new(15.5986938, 18.7366543, 20.2308655, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1853
p149.Anchored = true
1854
p149.FormFactor = Enum.FormFactor.Custom
1855
p149.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
1856
p149.BottomSurface = Enum.SurfaceType.Smooth
1857
p149.TopSurface = Enum.SurfaceType.Smooth
1858
p150 = Instance.new("Part", m24)
1859
p150.BrickColor = BrickColor.new("Dark stone grey")
1860
p150.Material = Enum.Material.Concrete
1861
p150.CFrame = CFrame.new(15.6091003, 22.3361149, 20.0222778, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1862
p150.Anchored = true
1863
p150.FormFactor = Enum.FormFactor.Custom
1864
p150.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
1865
p150.BottomSurface = Enum.SurfaceType.Smooth
1866
p150.TopSurface = Enum.SurfaceType.Smooth
1867
p151 = Instance.new("Part", m24)
1868
p151.BrickColor = BrickColor.new("Medium stone grey")
1869
p151.Material = Enum.Material.Concrete
1870
p151.CFrame = CFrame.new(15.7109985, 23.0372257, 20.1206055, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1871
p151.Anchored = true
1872
p151.FormFactor = Enum.FormFactor.Custom
1873
p151.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
1874
p151.BottomSurface = Enum.SurfaceType.Smooth
1875
p151.TopSurface = Enum.SurfaceType.Smooth
1876
p152 = Instance.new("Part", m24)
1877
p152.BrickColor = BrickColor.new("Dark stone grey")
1878
p152.Material = Enum.Material.Concrete
1879
p152.CFrame = CFrame.new(15.5999146, 18.7312832, 18.0308838, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1880
p152.Anchored = true
1881
p152.FormFactor = Enum.FormFactor.Custom
1882
p152.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
1883
p152.BottomSurface = Enum.SurfaceType.Smooth
1884
p152.TopSurface = Enum.SurfaceType.Smooth
1885
p153 = Instance.new("Part", m24)
1886
p153.BrickColor = BrickColor.new("Medium stone grey")
1887
p153.Material = Enum.Material.Concrete
1888
p153.CFrame = CFrame.new(15.7001953, 18.7301235, 17.6309814, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1889
p153.Anchored = true
1890
p153.FormFactor = Enum.FormFactor.Custom
1891
p153.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
1892
p153.BottomSurface = Enum.SurfaceType.Smooth
1893
p153.TopSurface = Enum.SurfaceType.Smooth
1894
p154 = Instance.new("Part", m24)
1895
p154.BrickColor = BrickColor.new("Dark stone grey")
1896
p154.Material = Enum.Material.Concrete
1897
p154.CFrame = CFrame.new(15.5978088, 18.8414841, 22.2305603, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1898
p154.Anchored = true
1899
p154.FormFactor = Enum.FormFactor.Custom
1900
p154.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
1901
p154.BottomSurface = Enum.SurfaceType.Smooth
1902
p154.TopSurface = Enum.SurfaceType.Smooth
1903
p155 = Instance.new("Part", m24)
1904
p155.BrickColor = BrickColor.new("Medium stone grey")
1905
p155.Material = Enum.Material.Concrete
1906
p155.CFrame = CFrame.new(15.6972046, 18.7420864, 22.6309204, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
1907
p155.Anchored = true
1908
p155.FormFactor = Enum.FormFactor.Custom
1909
p155.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
1910
p155.BottomSurface = Enum.SurfaceType.Smooth
1911
p155.TopSurface = Enum.SurfaceType.Smooth
1912
p156 = Instance.new("Part", m25)
1913
p156.BrickColor = BrickColor.new("Medium stone grey")
1914
p156.Material = Enum.Material.Concrete
1915
p156.CFrame = CFrame.new(9.97668457, 1.67208195, 25.9985352, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
1916
p156.Anchored = true
1917
p156.FormFactor = Enum.FormFactor.Custom
1918
p156.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
1919
p156.BottomSurface = Enum.SurfaceType.Smooth
1920
p156.TopSurface = Enum.SurfaceType.Smooth
1921
b60 = Instance.new("CylinderMesh", p156)
1922
b60.Name = "Mesh"
1923
p157 = Instance.new("Part", m25)
1924
p157.BrickColor = BrickColor.new("Reddish brown")
1925
p157.Material = Enum.Material.Wood
1926
p157.CFrame = CFrame.new(9.21243286, 1.77234757, 25.1978149, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
1927
p157.Anchored = true
1928
p157.FormFactor = Enum.FormFactor.Custom
1929
p157.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
1930
p157.BottomSurface = Enum.SurfaceType.Smooth
1931
p157.TopSurface = Enum.SurfaceType.Smooth
1932
p158 = Instance.new("Part", m25)
1933
p158.BrickColor = BrickColor.new("Medium stone grey")
1934
p158.Material = Enum.Material.Concrete
1935
p158.CFrame = CFrame.new(9.97558594, 0.967994928, 24.400238, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
1936
p158.Anchored = true
1937
p158.FormFactor = Enum.FormFactor.Custom
1938
p158.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
1939
p158.BottomSurface = Enum.SurfaceType.Smooth
1940
p158.TopSurface = Enum.SurfaceType.Smooth
1941
b61 = Instance.new("CylinderMesh", p158)
1942
b61.Name = "Mesh"
1943
p159 = Instance.new("Part", m25)
1944
p159.BrickColor = BrickColor.new("Medium stone grey")
1945
p159.Material = Enum.Material.Concrete
1946
p159.CFrame = CFrame.new(8.37554932, 0.972557306, 24.399292, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
1947
p159.Anchored = true
1948
p159.FormFactor = Enum.FormFactor.Custom
1949
p159.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
1950
p159.BottomSurface = Enum.SurfaceType.Smooth
1951
p159.TopSurface = Enum.SurfaceType.Smooth
1952
b62 = Instance.new("CylinderMesh", p159)
1953
b62.Name = "Mesh"
1954
p160 = Instance.new("Part", m25)
1955
p160.BrickColor = BrickColor.new("Medium stone grey")
1956
p160.Material = Enum.Material.Concrete
1957
p160.CFrame = CFrame.new(8.37667847, 1.67665958, 25.9975586, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
1958
p160.Anchored = true
1959
p160.FormFactor = Enum.FormFactor.Custom
1960
p160.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
1961
p160.BottomSurface = Enum.SurfaceType.Smooth
1962
p160.TopSurface = Enum.SurfaceType.Smooth
1963
b63 = Instance.new("CylinderMesh", p160)
1964
b63.Name = "Mesh"
1965
p161 = Instance.new("Part", m25)
1966
p161.BrickColor = BrickColor.new("Reddish brown")
1967
p161.Material = Enum.Material.Wood
1968
p161.CFrame = CFrame.new(9.21707153, 3.57438087, 25.9935303, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
1969
p161.Anchored = true
1970
p161.FormFactor = Enum.FormFactor.Custom
1971
p161.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
1972
p161.BottomSurface = Enum.SurfaceType.Smooth
1973
p161.TopSurface = Enum.SurfaceType.Smooth
1974
p162 = Instance.new("Part", m26)
1975
p162.BrickColor = BrickColor.new("Medium stone grey")
1976
p162.Material = Enum.Material.Concrete
1977
p162.CFrame = CFrame.new(9.34536743, 0.363823235, 21.9013062, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
1978
p162.Anchored = true
1979
p162.FormFactor = Enum.FormFactor.Custom
1980
p162.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
1981
p162.BottomSurface = Enum.SurfaceType.Smooth
1982
p162.TopSurface = Enum.SurfaceType.Smooth
1983
b64 = Instance.new("CylinderMesh", p162)
1984
b64.Name = "Mesh"
1985
p163 = Instance.new("Part", m26)
1986
p163.BrickColor = BrickColor.new("Medium stone grey")
1987
p163.Material = Enum.Material.Concrete
1988
p163.CFrame = CFrame.new(9.34875488, 1.56392753, 21.8984375, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
1989
p163.Anchored = true
1990
p163.FormFactor = Enum.FormFactor.Custom
1991
p163.Size = Vector3.new(0.400000006, 2.6000011, 0.400000006)
1992
p163.BottomSurface = Enum.SurfaceType.Smooth
1993
p163.TopSurface = Enum.SurfaceType.Smooth
1994
b65 = Instance.new("CylinderMesh", p163)
1995
b65.Name = "Mesh"
1996
p164 = Instance.new("Part", m26)
1997
p164.BrickColor = BrickColor.new("Brick yellow")
1998
p164.Material = Enum.Material.Concrete
1999
p164.CFrame = CFrame.new(9.3230896, 3.06423354, 21.8998108, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
2000
p164.Anchored = true
2001
p164.FormFactor = Enum.FormFactor.Custom
2002
p164.Size = Vector3.new(3.73999095, 0.200000003, 4.09000874)
2003
p164.BottomSurface = Enum.SurfaceType.Smooth
2004
p164.TopSurface = Enum.SurfaceType.Smooth
2005
p165 = Instance.new("Part", m26)
2006
p165.BrickColor = BrickColor.new("Reddish brown")
2007
p165.Material = Enum.Material.Wood
2008
p165.CFrame = CFrame.new(9.3180542, 3.0642488, 21.8948364, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
2009
p165.Anchored = true
2010
p165.FormFactor = Enum.FormFactor.Custom
2011
p165.Size = Vector3.new(3.66999078, 0.400000006, 4.00000858)
2012
p165.BottomSurface = Enum.SurfaceType.Smooth
2013
p165.TopSurface = Enum.SurfaceType.Smooth
2014
p166 = Instance.new("Part", m27)
2015
p166.BrickColor = BrickColor.new("Medium stone grey")
2016
p166.Material = Enum.Material.Concrete
2017
p166.CFrame = CFrame.new(15.7283936, 29.1365967, 20.105957, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2018
p166.Anchored = true
2019
p166.FormFactor = Enum.FormFactor.Custom
2020
p166.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
2021
p166.BottomSurface = Enum.SurfaceType.Smooth
2022
p166.TopSurface = Enum.SurfaceType.Smooth
2023
p167 = Instance.new("Part", m27)
2024
p167.BrickColor = BrickColor.new("Dark stone grey")
2025
p167.Material = Enum.Material.Concrete
2026
p167.CFrame = CFrame.new(15.6295471, 29.5371552, 20.204895, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2027
p167.Anchored = true
2028
p167.FormFactor = Enum.FormFactor.Custom
2029
p167.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
2030
p167.BottomSurface = Enum.SurfaceType.Smooth
2031
p167.TopSurface = Enum.SurfaceType.Smooth
2032
p168 = Instance.new("Part", m27)
2033
p168.BrickColor = BrickColor.new("Medium stone grey")
2034
p168.Material = Enum.Material.SmoothPlastic
2035
p168.Reflectance = 0.20000000298023
2036
p168.CFrame = CFrame.new(15.5397949, 33.1366425, 20.0961914, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2037
p168.Anchored = true
2038
p168.FormFactor = Enum.FormFactor.Custom
2039
p168.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
2040
p168.BottomSurface = Enum.SurfaceType.Smooth
2041
p168.TopSurface = Enum.SurfaceType.Smooth
2042
p169 = Instance.new("Part", m27)
2043
p169.BrickColor = BrickColor.new("Dark stone grey")
2044
p169.Material = Enum.Material.Concrete
2045
p169.CFrame = CFrame.new(15.6398315, 33.1366119, 20.1962585, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2046
p169.Anchored = true
2047
p169.FormFactor = Enum.FormFactor.Custom
2048
p169.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
2049
p169.BottomSurface = Enum.SurfaceType.Smooth
2050
p169.TopSurface = Enum.SurfaceType.Smooth
2051
p170 = Instance.new("Part", m27)
2052
p170.BrickColor = BrickColor.new("Dark stone grey")
2053
p170.Material = Enum.Material.Concrete
2054
p170.CFrame = CFrame.new(15.650238, 36.7360687, 19.9877014, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2055
p170.Anchored = true
2056
p170.FormFactor = Enum.FormFactor.Custom
2057
p170.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
2058
p170.BottomSurface = Enum.SurfaceType.Smooth
2059
p170.TopSurface = Enum.SurfaceType.Smooth
2060
p171 = Instance.new("Part", m27)
2061
p171.BrickColor = BrickColor.new("Medium stone grey")
2062
p171.Material = Enum.Material.Concrete
2063
p171.CFrame = CFrame.new(15.7521362, 37.4371643, 20.0860596, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2064
p171.Anchored = true
2065
p171.FormFactor = Enum.FormFactor.Custom
2066
p171.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
2067
p171.BottomSurface = Enum.SurfaceType.Smooth
2068
p171.TopSurface = Enum.SurfaceType.Smooth
2069
p172 = Instance.new("Part", m27)
2070
p172.BrickColor = BrickColor.new("Dark stone grey")
2071
p172.Material = Enum.Material.Concrete
2072
p172.CFrame = CFrame.new(15.6410828, 33.1312714, 17.9963379, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2073
p172.Anchored = true
2074
p172.FormFactor = Enum.FormFactor.Custom
2075
p172.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
2076
p172.BottomSurface = Enum.SurfaceType.Smooth
2077
p172.TopSurface = Enum.SurfaceType.Smooth
2078
p173 = Instance.new("Part", m27)
2079
p173.BrickColor = BrickColor.new("Medium stone grey")
2080
p173.Material = Enum.Material.Concrete
2081
p173.CFrame = CFrame.new(15.7413025, 33.1300812, 17.596405, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2082
p173.Anchored = true
2083
p173.FormFactor = Enum.FormFactor.Custom
2084
p173.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
2085
p173.BottomSurface = Enum.SurfaceType.Smooth
2086
p173.TopSurface = Enum.SurfaceType.Smooth
2087
p174 = Instance.new("Part", m27)
2088
p174.BrickColor = BrickColor.new("Dark stone grey")
2089
p174.Material = Enum.Material.Concrete
2090
p174.CFrame = CFrame.new(15.6389465, 33.2414246, 22.1960144, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2091
p174.Anchored = true
2092
p174.FormFactor = Enum.FormFactor.Custom
2093
p174.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
2094
p174.BottomSurface = Enum.SurfaceType.Smooth
2095
p174.TopSurface = Enum.SurfaceType.Smooth
2096
p175 = Instance.new("Part", m27)
2097
p175.BrickColor = BrickColor.new("Medium stone grey")
2098
p175.Material = Enum.Material.Concrete
2099
p175.CFrame = CFrame.new(15.7383423, 33.1420441, 22.5963135, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2100
p175.Anchored = true
2101
p175.FormFactor = Enum.FormFactor.Custom
2102
p175.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
2103
p175.BottomSurface = Enum.SurfaceType.Smooth
2104
p175.TopSurface = Enum.SurfaceType.Smooth
2105
p176 = Instance.new("Part", m28)
2106
p176.BrickColor = BrickColor.new("Medium stone grey")
2107
p176.Material = Enum.Material.Concrete
2108
p176.CFrame = CFrame.new(15.7225037, 29.1611176, 30.3058472, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2109
p176.Anchored = true
2110
p176.FormFactor = Enum.FormFactor.Custom
2111
p176.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
2112
p176.BottomSurface = Enum.SurfaceType.Smooth
2113
p176.TopSurface = Enum.SurfaceType.Smooth
2114
p177 = Instance.new("Part", m28)
2115
p177.BrickColor = BrickColor.new("Dark stone grey")
2116
p177.Material = Enum.Material.Concrete
2117
p177.CFrame = CFrame.new(15.6235962, 29.5616608, 30.4047546, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2118
p177.Anchored = true
2119
p177.FormFactor = Enum.FormFactor.Custom
2120
p177.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
2121
p177.BottomSurface = Enum.SurfaceType.Smooth
2122
p177.TopSurface = Enum.SurfaceType.Smooth
2123
p178 = Instance.new("Part", m28)
2124
p178.BrickColor = BrickColor.new("Medium stone grey")
2125
p178.Material = Enum.Material.SmoothPlastic
2126
p178.Reflectance = 0.20000000298023
2127
p178.CFrame = CFrame.new(15.5338745, 33.1611633, 30.296051, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2128
p178.Anchored = true
2129
p178.FormFactor = Enum.FormFactor.Custom
2130
p178.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
2131
p178.BottomSurface = Enum.SurfaceType.Smooth
2132
p178.TopSurface = Enum.SurfaceType.Smooth
2133
p179 = Instance.new("Part", m28)
2134
p179.BrickColor = BrickColor.new("Dark stone grey")
2135
p179.Material = Enum.Material.Concrete
2136
p179.CFrame = CFrame.new(15.6338501, 33.1611176, 30.3961487, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2137
p179.Anchored = true
2138
p179.FormFactor = Enum.FormFactor.Custom
2139
p179.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
2140
p179.BottomSurface = Enum.SurfaceType.Smooth
2141
p179.TopSurface = Enum.SurfaceType.Smooth
2142
p180 = Instance.new("Part", m28)
2143
p180.BrickColor = BrickColor.new("Dark stone grey")
2144
p180.Material = Enum.Material.Concrete
2145
p180.CFrame = CFrame.new(15.6442566, 36.7605743, 30.187561, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2146
p180.Anchored = true
2147
p180.FormFactor = Enum.FormFactor.Custom
2148
p180.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
2149
p180.BottomSurface = Enum.SurfaceType.Smooth
2150
p180.TopSurface = Enum.SurfaceType.Smooth
2151
p181 = Instance.new("Part", m28)
2152
p181.BrickColor = BrickColor.new("Medium stone grey")
2153
p181.Material = Enum.Material.Concrete
2154
p181.CFrame = CFrame.new(15.7461853, 37.4617157, 30.2859192, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2155
p181.Anchored = true
2156
p181.FormFactor = Enum.FormFactor.Custom
2157
p181.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
2158
p181.BottomSurface = Enum.SurfaceType.Smooth
2159
p181.TopSurface = Enum.SurfaceType.Smooth
2160
p182 = Instance.new("Part", m28)
2161
p182.BrickColor = BrickColor.new("Dark stone grey")
2162
p182.Material = Enum.Material.Concrete
2163
p182.CFrame = CFrame.new(15.6351929, 33.1558075, 28.196228, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2164
p182.Anchored = true
2165
p182.FormFactor = Enum.FormFactor.Custom
2166
p182.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
2167
p182.BottomSurface = Enum.SurfaceType.Smooth
2168
p182.TopSurface = Enum.SurfaceType.Smooth
2169
p183 = Instance.new("Part", m28)
2170
p183.BrickColor = BrickColor.new("Medium stone grey")
2171
p183.Material = Enum.Material.Concrete
2172
p183.CFrame = CFrame.new(15.7353821, 33.1546021, 27.7962646, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2173
p183.Anchored = true
2174
p183.FormFactor = Enum.FormFactor.Custom
2175
p183.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
2176
p183.BottomSurface = Enum.SurfaceType.Smooth
2177
p183.TopSurface = Enum.SurfaceType.Smooth
2178
p184 = Instance.new("Part", m28)
2179
p184.BrickColor = BrickColor.new("Dark stone grey")
2180
p184.Material = Enum.Material.Concrete
2181
p184.CFrame = CFrame.new(15.6329956, 33.2659149, 32.3959045, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2182
p184.Anchored = true
2183
p184.FormFactor = Enum.FormFactor.Custom
2184
p184.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
2185
p184.BottomSurface = Enum.SurfaceType.Smooth
2186
p184.TopSurface = Enum.SurfaceType.Smooth
2187
p185 = Instance.new("Part", m28)
2188
p185.BrickColor = BrickColor.new("Medium stone grey")
2189
p185.Material = Enum.Material.Concrete
2190
p185.CFrame = CFrame.new(15.7324524, 33.1665649, 32.7962036, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2191
p185.Anchored = true
2192
p185.FormFactor = Enum.FormFactor.Custom
2193
p185.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
2194
p185.BottomSurface = Enum.SurfaceType.Smooth
2195
p185.TopSurface = Enum.SurfaceType.Smooth
2196
p186 = Instance.new("Part", m29)
2197
p186.BrickColor = BrickColor.new("Medium stone grey")
2198
p186.Material = Enum.Material.Concrete
2199
p186.CFrame = CFrame.new(11.5342712, 29.1246185, 10.1035767, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2200
p186.Anchored = true
2201
p186.FormFactor = Enum.FormFactor.Custom
2202
p186.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
2203
p186.BottomSurface = Enum.SurfaceType.Smooth
2204
p186.TopSurface = Enum.SurfaceType.Smooth
2205
p187 = Instance.new("Part", m29)
2206
p187.BrickColor = BrickColor.new("Dark stone grey")
2207
p187.Material = Enum.Material.Concrete
2208
p187.CFrame = CFrame.new(11.5353394, 29.5249634, 10.2438965, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2209
p187.Anchored = true
2210
p187.FormFactor = Enum.FormFactor.Custom
2211
p187.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
2212
p187.BottomSurface = Enum.SurfaceType.Smooth
2213
p187.TopSurface = Enum.SurfaceType.Smooth
2214
p188 = Instance.new("Part", m29)
2215
p188.BrickColor = BrickColor.new("Medium stone grey")
2216
p188.Material = Enum.Material.SmoothPlastic
2217
p188.Reflectance = 0.20000000298023
2218
p188.CFrame = CFrame.new(11.4042053, 33.1248016, 10.2352905, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2219
p188.Anchored = true
2220
p188.FormFactor = Enum.FormFactor.Custom
2221
p188.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
2222
p188.BottomSurface = Enum.SurfaceType.Smooth
2223
p188.TopSurface = Enum.SurfaceType.Smooth
2224
p189 = Instance.new("Part", m29)
2225
p189.BrickColor = BrickColor.new("Dark stone grey")
2226
p189.Material = Enum.Material.Concrete
2227
p189.CFrame = CFrame.new(11.5455933, 33.1244049, 10.2352295, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2228
p189.Anchored = true
2229
p189.FormFactor = Enum.FormFactor.Custom
2230
p189.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
2231
p189.BottomSurface = Enum.SurfaceType.Smooth
2232
p189.TopSurface = Enum.SurfaceType.Smooth
2233
p190 = Instance.new("Part", m29)
2234
p190.BrickColor = BrickColor.new("Dark stone grey")
2235
p190.Material = Enum.Material.Concrete
2236
p190.CFrame = CFrame.new(11.4146118, 36.7244263, 10.085144, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2237
p190.Anchored = true
2238
p190.FormFactor = Enum.FormFactor.Custom
2239
p190.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
2240
p190.BottomSurface = Enum.SurfaceType.Smooth
2241
p190.TopSurface = Enum.SurfaceType.Smooth
2242
p191 = Instance.new("Part", m29)
2243
p191.BrickColor = BrickColor.new("Medium stone grey")
2244
p191.Material = Enum.Material.Concrete
2245
p191.CFrame = CFrame.new(11.5579834, 37.4251709, 10.0836182, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2246
p191.Anchored = true
2247
p191.FormFactor = Enum.FormFactor.Custom
2248
p191.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
2249
p191.BottomSurface = Enum.SurfaceType.Smooth
2250
p191.TopSurface = Enum.SurfaceType.Smooth
2251
p192 = Instance.new("Part", m29)
2252
p192.BrickColor = BrickColor.new("Dark stone grey")
2253
p192.Material = Enum.Material.Concrete
2254
p192.CFrame = CFrame.new(9.99093628, 33.1250763, 8.67883301, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2255
p192.Anchored = true
2256
p192.FormFactor = Enum.FormFactor.Custom
2257
p192.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
2258
p192.BottomSurface = Enum.SurfaceType.Smooth
2259
p192.TopSurface = Enum.SurfaceType.Smooth
2260
p193 = Instance.new("Part", m29)
2261
p193.BrickColor = BrickColor.new("Medium stone grey")
2262
p193.Material = Enum.Material.Concrete
2263
p193.CFrame = CFrame.new(9.77893066, 33.1248779, 8.32513428, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2264
p193.Anchored = true
2265
p193.FormFactor = Enum.FormFactor.Custom
2266
p193.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
2267
p193.BottomSurface = Enum.SurfaceType.Smooth
2268
p193.TopSurface = Enum.SurfaceType.Smooth
2269
p194 = Instance.new("Part", m29)
2270
p194.BrickColor = BrickColor.new("Dark stone grey")
2271
p194.Material = Enum.Material.Concrete
2272
p194.CFrame = CFrame.new(12.9593506, 33.2238007, 11.6501465, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2273
p194.Anchored = true
2274
p194.FormFactor = Enum.FormFactor.Custom
2275
p194.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
2276
p194.BottomSurface = Enum.SurfaceType.Smooth
2277
p194.TopSurface = Enum.SurfaceType.Smooth
2278
p195 = Instance.new("Part", m29)
2279
p195.BrickColor = BrickColor.new("Medium stone grey")
2280
p195.Material = Enum.Material.Concrete
2281
p195.CFrame = CFrame.new(13.3124084, 33.1232452, 11.8627319, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2282
p195.Anchored = true
2283
p195.FormFactor = Enum.FormFactor.Custom
2284
p195.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
2285
p195.BottomSurface = Enum.SurfaceType.Smooth
2286
p195.TopSurface = Enum.SurfaceType.Smooth
2287
p196 = Instance.new("Part", m30)
2288
p196.BrickColor = BrickColor.new("Light stone grey")
2289
p196.Material = Enum.Material.SmoothPlastic
2290
p196.CFrame = CFrame.new(-14.0742188, 3.05588698, 33.8811951, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
2291
p196.Anchored = true
2292
p196.FormFactor = Enum.FormFactor.Custom
2293
p196.Size = Vector3.new(0.800000012, 2.20000005, 2.80000973)
2294
p196.BottomSurface = Enum.SurfaceType.Smooth
2295
p196.TopSurface = Enum.SurfaceType.Smooth
2296
p197 = Instance.new("Part", m30)
2297
p197.BrickColor = BrickColor.new("Light stone grey")
2298
p197.Material = Enum.Material.SmoothPlastic
2299
p197.CFrame = CFrame.new(-14.0704956, 4.15397072, 33.0785217, -0.0028556597, -0.999992847, 0.000583007059, -0.999992371, 0.00285413, -0.00240234332, 0.00240069069, -0.00058913033, -0.999994338)
2300
p197.Anchored = true
2301
p197.FormFactor = Enum.FormFactor.Custom
2302
p197.Size = Vector3.new(1.20000005, 0.800000012, 1.20000935)
2303
p197.BottomSurface = Enum.SurfaceType.Smooth
2304
p197.TopSurface = Enum.SurfaceType.Smooth
2305
b66 = Instance.new("CylinderMesh", p197)
2306
b66.Name = "Mesh"
2307
p198 = Instance.new("Part", m30)
2308
p198.BrickColor = BrickColor.new("Light stone grey")
2309
p198.Material = Enum.Material.SmoothPlastic
2310
p198.CFrame = CFrame.new(-14.0701904, 4.45589638, 33.8778076, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
2311
p198.Anchored = true
2312
p198.FormFactor = Enum.FormFactor.Custom
2313
p198.Size = Vector3.new(0.800000012, 0.600000024, 1.60000944)
2314
p198.BottomSurface = Enum.SurfaceType.Smooth
2315
p198.TopSurface = Enum.SurfaceType.Smooth
2316
p199 = Instance.new("Part", m30)
2317
p199.BrickColor = BrickColor.new("Light stone grey")
2318
p199.Material = Enum.Material.SmoothPlastic
2319
p199.CFrame = CFrame.new(-14.0714722, 4.15781593, 34.6785278, -0.0028556597, -0.999992847, 0.000583007059, -0.999992371, 0.00285413, -0.00240234332, 0.00240069069, -0.00058913033, -0.999994338)
2320
p199.Anchored = true
2321
p199.FormFactor = Enum.FormFactor.Custom
2322
p199.Size = Vector3.new(1.20000005, 0.800000012, 1.20000935)
2323
p199.BottomSurface = Enum.SurfaceType.Smooth
2324
p199.TopSurface = Enum.SurfaceType.Smooth
2325
b67 = Instance.new("CylinderMesh", p199)
2326
b67.Name = "Mesh"
2327
p200 = Instance.new("Part", m30)
2328
p200.BrickColor = BrickColor.new("Medium stone grey")
2329
p200.Material = Enum.Material.SmoothPlastic
2330
p200.CFrame = CFrame.new(-14.4107056, 4.25686073, 33.8780518, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
2331
p200.Anchored = true
2332
p200.FormFactor = Enum.FormFactor.Custom
2333
p200.Size = Vector3.new(0.200000003, 0.600000024, 2.40000963)
2334
p200.BottomSurface = Enum.SurfaceType.Smooth
2335
p200.TopSurface = Enum.SurfaceType.Smooth
2336
p201 = Instance.new("Part", m30)
2337
p201.BrickColor = BrickColor.new("Light stone grey")
2338
p201.Material = Enum.Material.DiamondPlate
2339
p201.CFrame = CFrame.new(-14.670166, 4.25544167, 32.9779663, 0.000582955196, -0.999992669, 0.00285558961, -0.00240225974, 0.00285413628, 0.999992311, -0.999994218, -0.000589011062, -0.00240058545)
2340
p201.Anchored = true
2341
p201.FormFactor = Enum.FormFactor.Custom
2342
p201.Size = Vector3.new(0.200000003, 0.400000751, 0.200000033)
2343
p201.BottomSurface = Enum.SurfaceType.Smooth
2344
p201.TopSurface = Enum.SurfaceType.Smooth
2345
b68 = Instance.new("CylinderMesh", p201)
2346
b68.Name = "Mesh"
2347
p202 = Instance.new("Part", m30)
2348
p202.BrickColor = BrickColor.new("Light stone grey")
2349
p202.Material = Enum.Material.DiamondPlate
2350
p202.CFrame = CFrame.new(-14.7711182, 3.95572853, 32.9786072, 0.000583118061, 0.00285559613, 0.99999249, -0.00240224507, 0.999992073, -0.00285417726, -0.999993682, -0.00240059011, 0.00058902509)
2351
p202.Anchored = true
2352
p202.FormFactor = Enum.FormFactor.Custom
2353
p202.Size = Vector3.new(0.200000003, 0.800000727, 0.200000033)
2354
p202.BottomSurface = Enum.SurfaceType.Smooth
2355
p202.TopSurface = Enum.SurfaceType.Smooth
2356
b69 = Instance.new("CylinderMesh", p202)
2357
b69.Name = "Mesh"
2358
p203 = Instance.new("Part", m30)
2359
p203.BrickColor = BrickColor.new("Light stone grey")
2360
p203.Material = Enum.Material.DiamondPlate
2361
p203.CFrame = CFrame.new(-14.7713928, 3.95717812, 33.5785828, 0.000583118061, 0.00285559613, 0.99999249, -0.00240224507, 0.999992073, -0.00285417726, -0.999993682, -0.00240059011, 0.00058902509)
2362
p203.Anchored = true
2363
p203.FormFactor = Enum.FormFactor.Custom
2364
p203.Size = Vector3.new(0.200000003, 0.800000727, 0.200000033)
2365
p203.BottomSurface = Enum.SurfaceType.Smooth
2366
p203.TopSurface = Enum.SurfaceType.Smooth
2367
b70 = Instance.new("CylinderMesh", p203)
2368
b70.Name = "Mesh"
2369
p204 = Instance.new("Part", m30)
2370
p204.BrickColor = BrickColor.new("Light stone grey")
2371
p204.Material = Enum.Material.DiamondPlate
2372
p204.CFrame = CFrame.new(-14.6705322, 4.25687599, 33.5779724, 0.000582955196, -0.999992669, 0.00285558961, -0.00240225974, 0.00285413628, 0.999992311, -0.999994218, -0.000589011062, -0.00240058545)
2373
p204.Anchored = true
2374
p204.FormFactor = Enum.FormFactor.Custom
2375
p204.Size = Vector3.new(0.200000003, 0.400000751, 0.200000033)
2376
p204.BottomSurface = Enum.SurfaceType.Smooth
2377
p204.TopSurface = Enum.SurfaceType.Smooth
2378
b71 = Instance.new("CylinderMesh", p204)
2379
b71.Name = "Mesh"
2380
p205 = Instance.new("Part", m30)
2381
p205.BrickColor = BrickColor.new("Light stone grey")
2382
p205.Material = Enum.Material.DiamondPlate
2383
p205.CFrame = CFrame.new(-14.7717896, 3.95861244, 34.1785583, 0.000583118061, 0.00285559613, 0.99999249, -0.00240224507, 0.999992073, -0.00285417726, -0.999993682, -0.00240059011, 0.00058902509)
2384
p205.Anchored = true
2385
p205.FormFactor = Enum.FormFactor.Custom
2386
p205.Size = Vector3.new(0.200000003, 0.800000727, 0.200000033)
2387
p205.BottomSurface = Enum.SurfaceType.Smooth
2388
p205.TopSurface = Enum.SurfaceType.Smooth
2389
b72 = Instance.new("CylinderMesh", p205)
2390
b72.Name = "Mesh"
2391
p206 = Instance.new("Part", m30)
2392
p206.BrickColor = BrickColor.new("Light stone grey")
2393
p206.Material = Enum.Material.DiamondPlate
2394
p206.CFrame = CFrame.new(-14.6708679, 4.25832558, 34.177948, 0.000582955196, -0.999992669, 0.00285558961, -0.00240225974, 0.00285413628, 0.999992311, -0.999994218, -0.000589011062, -0.00240058545)
2395
p206.Anchored = true
2396
p206.FormFactor = Enum.FormFactor.Custom
2397
p206.Size = Vector3.new(0.200000003, 0.400000751, 0.200000033)
2398
p206.BottomSurface = Enum.SurfaceType.Smooth
2399
p206.TopSurface = Enum.SurfaceType.Smooth
2400
b73 = Instance.new("CylinderMesh", p206)
2401
b73.Name = "Mesh"
2402
p207 = Instance.new("Part", m30)
2403
p207.BrickColor = BrickColor.new("Light stone grey")
2404
p207.Material = Enum.Material.DiamondPlate
2405
p207.CFrame = CFrame.new(-14.7721252, 3.96004677, 34.7785034, 0.000583118061, 0.00285559613, 0.99999249, -0.00240224507, 0.999992073, -0.00285417726, -0.999993682, -0.00240059011, 0.00058902509)
2406
p207.Anchored = true
2407
p207.FormFactor = Enum.FormFactor.Custom
2408
p207.Size = Vector3.new(0.200000003, 0.800000727, 0.200000033)
2409
p207.BottomSurface = Enum.SurfaceType.Smooth
2410
p207.TopSurface = Enum.SurfaceType.Smooth
2411
b74 = Instance.new("CylinderMesh", p207)
2412
b74.Name = "Mesh"
2413
p208 = Instance.new("Part", m30)
2414
p208.BrickColor = BrickColor.new("Light stone grey")
2415
p208.Material = Enum.Material.DiamondPlate
2416
p208.CFrame = CFrame.new(-14.6712646, 4.25977516, 34.7779541, 0.000582955196, -0.999992669, 0.00285558961, -0.00240225974, 0.00285413628, 0.999992311, -0.999994218, -0.000589011062, -0.00240058545)
2417
p208.Anchored = true
2418
p208.FormFactor = Enum.FormFactor.Custom
2419
p208.Size = Vector3.new(0.200000003, 0.400000751, 0.200000033)
2420
p208.BottomSurface = Enum.SurfaceType.Smooth
2421
p208.TopSurface = Enum.SurfaceType.Smooth
2422
b75 = Instance.new("CylinderMesh", p208)
2423
b75.Name = "Mesh"
2424
p209 = Instance.new("Part", m31)
2425
p209.BrickColor = BrickColor.new("Dark stone grey")
2426
p209.Material = Enum.Material.DiamondPlate
2427
p209.CFrame = CFrame.new(10.8728333, 47.438324, 27.586792, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2428
p209.Anchored = true
2429
p209.FormFactor = Enum.FormFactor.Custom
2430
p209.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
2431
p209.BottomSurface = Enum.SurfaceType.Smooth
2432
p209.TopSurface = Enum.SurfaceType.Smooth
2433
b76 = Instance.new("CylinderMesh", p209)
2434
b76.Name = "Mesh"
2435
p210 = Instance.new("Part", m31)
2436
p210.BrickColor = BrickColor.new("Dark stone grey")
2437
p210.Material = Enum.Material.DiamondPlate
2438
p210.CFrame = CFrame.new(10.8720093, 47.441925, 29.086792, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2439
p210.Anchored = true
2440
p210.FormFactor = Enum.FormFactor.Custom
2441
p210.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
2442
p210.BottomSurface = Enum.SurfaceType.Smooth
2443
p210.TopSurface = Enum.SurfaceType.Smooth
2444
b77 = Instance.new("CylinderMesh", p210)
2445
b77.Name = "Mesh"
2446
p211 = Instance.new("Part", m31)
2447
p211.BrickColor = BrickColor.new("Dark stone grey")
2448
p211.Material = Enum.Material.Concrete
2449
p211.CFrame = CFrame.new(10.769165, 46.4421692, 29.0891724, 0.999992788, 0.00285564945, -0.000582955196, -0.00285413186, 0.999992251, 0.00240225974, 0.000589145347, -0.00240058731, 0.999994218)
2450
p211.Anchored = true
2451
p211.FormFactor = Enum.FormFactor.Custom
2452
p211.Size = Vector3.new(3.80000019, 0.200000003, 5.19999886)
2453
p211.BottomSurface = Enum.SurfaceType.Smooth
2454
p211.TopSurface = Enum.SurfaceType.Smooth
2455
p212 = Instance.new("Part", m31)
2456
p212.BrickColor = BrickColor.new("Medium stone grey")
2457
p212.Material = Enum.Material.Brick
2458
p212.CFrame = CFrame.new(10.7651672, 45.0424042, 29.0925293, 0.999992788, 0.00285564945, -0.000582955196, -0.00285413186, 0.999992251, 0.00240225974, 0.000589145347, -0.00240058731, 0.999994218)
2459
p212.Anchored = true
2460
p212.FormFactor = Enum.FormFactor.Custom
2461
p212.Size = Vector3.new(3, 2.60000038, 4.39999962)
2462
p212.BottomSurface = Enum.SurfaceType.Smooth
2463
p212.TopSurface = Enum.SurfaceType.Smooth
2464
p213 = Instance.new("Part", m31)
2465
p213.BrickColor = BrickColor.new("Dark stone grey")
2466
p213.Material = Enum.Material.DiamondPlate
2467
p213.CFrame = CFrame.new(10.8710938, 47.4455109, 30.5867615, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2468
p213.Anchored = true
2469
p213.FormFactor = Enum.FormFactor.Custom
2470
p213.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
2471
p213.BottomSurface = Enum.SurfaceType.Smooth
2472
p213.TopSurface = Enum.SurfaceType.Smooth
2473
b78 = Instance.new("CylinderMesh", p213)
2474
b78.Name = "Mesh"
2475
p214 = Instance.new("Part", m32)
2476
p214.BrickColor = BrickColor.new("Medium stone grey")
2477
p214.Material = Enum.Material.Concrete
2478
p214.CFrame = CFrame.new(8.45144653, 1.65674686, 17.79776, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
2479
p214.Anchored = true
2480
p214.FormFactor = Enum.FormFactor.Custom
2481
p214.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
2482
p214.BottomSurface = Enum.SurfaceType.Smooth
2483
p214.TopSurface = Enum.SurfaceType.Smooth
2484
b79 = Instance.new("CylinderMesh", p214)
2485
b79.Name = "Mesh"
2486
p215 = Instance.new("Part", m32)
2487
p215.BrickColor = BrickColor.new("Reddish brown")
2488
p215.Material = Enum.Material.Wood
2489
p215.CFrame = CFrame.new(9.21627808, 1.75647843, 18.5979309, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
2490
p215.Anchored = true
2491
p215.FormFactor = Enum.FormFactor.Custom
2492
p215.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
2493
p215.BottomSurface = Enum.SurfaceType.Smooth
2494
p215.TopSurface = Enum.SurfaceType.Smooth
2495
p216 = Instance.new("Part", m32)
2496
p216.BrickColor = BrickColor.new("Medium stone grey")
2497
p216.Material = Enum.Material.Concrete
2498
p216.CFrame = CFrame.new(8.44851685, 0.960335016, 19.3994141, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
2499
p216.Anchored = true
2500
p216.FormFactor = Enum.FormFactor.Custom
2501
p216.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
2502
p216.BottomSurface = Enum.SurfaceType.Smooth
2503
p216.TopSurface = Enum.SurfaceType.Smooth
2504
b80 = Instance.new("CylinderMesh", p216)
2505
b80.Name = "Mesh"
2506
p217 = Instance.new("Part", m32)
2507
p217.BrickColor = BrickColor.new("Medium stone grey")
2508
p217.Material = Enum.Material.Concrete
2509
p217.CFrame = CFrame.new(10.0485229, 0.955787897, 19.4002991, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
2510
p217.Anchored = true
2511
p217.FormFactor = Enum.FormFactor.Custom
2512
p217.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
2513
p217.BottomSurface = Enum.SurfaceType.Smooth
2514
p217.TopSurface = Enum.SurfaceType.Smooth
2515
b81 = Instance.new("CylinderMesh", p217)
2516
b81.Name = "Mesh"
2517
p218 = Instance.new("Part", m32)
2518
p218.BrickColor = BrickColor.new("Medium stone grey")
2519
p218.Material = Enum.Material.Concrete
2520
p218.CFrame = CFrame.new(10.0514832, 1.65215397, 17.7987061, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
2521
p218.Anchored = true
2522
p218.FormFactor = Enum.FormFactor.Custom
2523
p218.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
2524
p218.BottomSurface = Enum.SurfaceType.Smooth
2525
p218.TopSurface = Enum.SurfaceType.Smooth
2526
b82 = Instance.new("CylinderMesh", p218)
2527
b82.Name = "Mesh"
2528
p219 = Instance.new("Part", m32)
2529
p219.BrickColor = BrickColor.new("Reddish brown")
2530
p219.Material = Enum.Material.Wood
2531
p219.CFrame = CFrame.new(9.22186279, 3.55466652, 17.7936401, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
2532
p219.Anchored = true
2533
p219.FormFactor = Enum.FormFactor.Custom
2534
p219.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
2535
p219.BottomSurface = Enum.SurfaceType.Smooth
2536
p219.TopSurface = Enum.SurfaceType.Smooth
2537
p220 = Instance.new("Part", m33)
2538
p220.BrickColor = BrickColor.new("Medium stone grey")
2539
p220.Material = Enum.Material.Concrete
2540
p220.CFrame = CFrame.new(-20.5756531, 1.72477067, 13.1504517, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2541
p220.Anchored = true
2542
p220.FormFactor = Enum.FormFactor.Custom
2543
p220.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
2544
p220.BottomSurface = Enum.SurfaceType.Smooth
2545
p220.TopSurface = Enum.SurfaceType.Smooth
2546
b83 = Instance.new("CylinderMesh", p220)
2547
b83.Name = "Mesh"
2548
p221 = Instance.new("Part", m33)
2549
p221.BrickColor = BrickColor.new("Reddish brown")
2550
p221.Material = Enum.Material.Wood
2551
p221.CFrame = CFrame.new(-19.7749329, 1.82067227, 12.3858032, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
2552
p221.Anchored = true
2553
p221.FormFactor = Enum.FormFactor.Custom
2554
p221.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
2555
p221.BottomSurface = Enum.SurfaceType.Smooth
2556
p221.TopSurface = Enum.SurfaceType.Smooth
2557
p222 = Instance.new("Part", m33)
2558
p222.BrickColor = BrickColor.new("Medium stone grey")
2559
p222.Material = Enum.Material.Concrete
2560
p222.CFrame = CFrame.new(-18.9776611, 1.02008843, 13.1530762, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2561
p222.Anchored = true
2562
p222.FormFactor = Enum.FormFactor.Custom
2563
p222.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
2564
p222.BottomSurface = Enum.SurfaceType.Smooth
2565
p222.TopSurface = Enum.SurfaceType.Smooth
2566
b84 = Instance.new("CylinderMesh", p222)
2567
b84.Name = "Mesh"
2568
p223 = Instance.new("Part", m33)
2569
p223.BrickColor = BrickColor.new("Medium stone grey")
2570
p223.Material = Enum.Material.Concrete
2571
p223.CFrame = CFrame.new(-18.9766846, 1.01625848, 11.5531616, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2572
p223.Anchored = true
2573
p223.FormFactor = Enum.FormFactor.Custom
2574
p223.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
2575
p223.BottomSurface = Enum.SurfaceType.Smooth
2576
p223.TopSurface = Enum.SurfaceType.Smooth
2577
b85 = Instance.new("CylinderMesh", p223)
2578
b85.Name = "Mesh"
2579
p224 = Instance.new("Part", m33)
2580
p224.BrickColor = BrickColor.new("Medium stone grey")
2581
p224.Material = Enum.Material.Concrete
2582
p224.CFrame = CFrame.new(-20.5747681, 1.72092545, 11.5505981, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2583
p224.Anchored = true
2584
p224.FormFactor = Enum.FormFactor.Custom
2585
p224.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
2586
p224.BottomSurface = Enum.SurfaceType.Smooth
2587
p224.TopSurface = Enum.SurfaceType.Smooth
2588
b86 = Instance.new("CylinderMesh", p224)
2589
b86.Name = "Mesh"
2590
p225 = Instance.new("Part", m33)
2591
p225.BrickColor = BrickColor.new("Reddish brown")
2592
p225.Material = Enum.Material.Wood
2593
p225.CFrame = CFrame.new(-20.5698242, 3.62299538, 12.3809814, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
2594
p225.Anchored = true
2595
p225.FormFactor = Enum.FormFactor.Custom
2596
p225.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
2597
p225.BottomSurface = Enum.SurfaceType.Smooth
2598
p225.TopSurface = Enum.SurfaceType.Smooth
2599
p226 = Instance.new("Part", m34)
2600
p226.BrickColor = BrickColor.new("Medium stone grey")
2601
p226.Material = Enum.Material.SmoothPlastic
2602
p226.CFrame = CFrame.new(-16.028717, 3.75896645, 30.7123108, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412627, 0.999994338, -0.00240059383, -0.000589011179)
2603
p226.Anchored = true
2604
p226.FormFactor = Enum.FormFactor.Custom
2605
p226.Size = Vector3.new(1.20000005, 0.400000006, 1.80000019)
2606
p226.BottomSurface = Enum.SurfaceType.Smooth
2607
p226.TopSurface = Enum.SurfaceType.Smooth
2608
p227 = Instance.new("Part", m34)
2609
p227.BrickColor = BrickColor.new("Medium stone grey")
2610
p227.Material = Enum.Material.SmoothPlastic
2611
p227.CFrame = CFrame.new(-16.0273438, 4.15798378, 30.3109741, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412627, 0.999994338, -0.00240059383, -0.000589011179)
2612
p227.Anchored = true
2613
p227.FormFactor = Enum.FormFactor.Custom
2614
p227.Size = Vector3.new(0.400000036, 0.400000006, 1.80000019)
2615
p227.BottomSurface = Enum.SurfaceType.Smooth
2616
p227.TopSurface = Enum.SurfaceType.Smooth
2617
p228 = Instance.new("Part", m34)
2618
p228.BrickColor = BrickColor.new("Medium stone grey")
2619
p228.Material = Enum.Material.SmoothPlastic
2620
p228.CFrame = CFrame.new(-16.5261536, 4.55924416, 30.2101135, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412627, 0.999994338, -0.00240059383, -0.000589011179)
2621
p228.Anchored = true
2622
p228.FormFactor = Enum.FormFactor.Custom
2623
p228.Size = Vector3.new(0.200000033, 0.400000006, 0.800000012)
2624
p228.BottomSurface = Enum.SurfaceType.Smooth
2625
p228.TopSurface = Enum.SurfaceType.Smooth
2626
p229 = Instance.new("Part", m35)
2627
p229.BrickColor = BrickColor.new("Medium stone grey")
2628
p229.Material = Enum.Material.Concrete
2629
p229.CFrame = CFrame.new(11.4931641, 14.7247057, 10.1381226, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2630
p229.Anchored = true
2631
p229.FormFactor = Enum.FormFactor.Custom
2632
p229.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
2633
p229.BottomSurface = Enum.SurfaceType.Smooth
2634
p229.TopSurface = Enum.SurfaceType.Smooth
2635
p230 = Instance.new("Part", m35)
2636
p230.BrickColor = BrickColor.new("Dark stone grey")
2637
p230.Material = Enum.Material.Concrete
2638
p230.CFrame = CFrame.new(11.4942017, 15.1250658, 10.2784424, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2639
p230.Anchored = true
2640
p230.FormFactor = Enum.FormFactor.Custom
2641
p230.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
2642
p230.BottomSurface = Enum.SurfaceType.Smooth
2643
p230.TopSurface = Enum.SurfaceType.Smooth
2644
p231 = Instance.new("Part", m35)
2645
p231.BrickColor = BrickColor.new("Medium stone grey")
2646
p231.Material = Enum.Material.SmoothPlastic
2647
p231.Reflectance = 0.20000000298023
2648
p231.CFrame = CFrame.new(11.3630676, 18.724844, 10.2698975, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2649
p231.Anchored = true
2650
p231.FormFactor = Enum.FormFactor.Custom
2651
p231.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
2652
p231.BottomSurface = Enum.SurfaceType.Smooth
2653
p231.TopSurface = Enum.SurfaceType.Smooth
2654
p232 = Instance.new("Part", m35)
2655
p232.BrickColor = BrickColor.new("Dark stone grey")
2656
p232.Material = Enum.Material.Concrete
2657
p232.CFrame = CFrame.new(11.5044556, 18.7244473, 10.2697754, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2658
p232.Anchored = true
2659
p232.FormFactor = Enum.FormFactor.Custom
2660
p232.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
2661
p232.BottomSurface = Enum.SurfaceType.Smooth
2662
p232.TopSurface = Enum.SurfaceType.Smooth
2663
p233 = Instance.new("Part", m35)
2664
p233.BrickColor = BrickColor.new("Dark stone grey")
2665
p233.Material = Enum.Material.Concrete
2666
p233.CFrame = CFrame.new(11.3734741, 22.3244877, 10.119751, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2667
p233.Anchored = true
2668
p233.FormFactor = Enum.FormFactor.Custom
2669
p233.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
2670
p233.BottomSurface = Enum.SurfaceType.Smooth
2671
p233.TopSurface = Enum.SurfaceType.Smooth
2672
p234 = Instance.new("Part", m35)
2673
p234.BrickColor = BrickColor.new("Medium stone grey")
2674
p234.Material = Enum.Material.Concrete
2675
p234.CFrame = CFrame.new(11.5168457, 23.0252323, 10.1182251, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2676
p234.Anchored = true
2677
p234.FormFactor = Enum.FormFactor.Custom
2678
p234.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
2679
p234.BottomSurface = Enum.SurfaceType.Smooth
2680
p234.TopSurface = Enum.SurfaceType.Smooth
2681
p235 = Instance.new("Part", m35)
2682
p235.BrickColor = BrickColor.new("Dark stone grey")
2683
p235.Material = Enum.Material.Concrete
2684
p235.CFrame = CFrame.new(9.94979858, 18.7251186, 8.71343994, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2685
p235.Anchored = true
2686
p235.FormFactor = Enum.FormFactor.Custom
2687
p235.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
2688
p235.BottomSurface = Enum.SurfaceType.Smooth
2689
p235.TopSurface = Enum.SurfaceType.Smooth
2690
p236 = Instance.new("Part", m35)
2691
p236.BrickColor = BrickColor.new("Medium stone grey")
2692
p236.Material = Enum.Material.Concrete
2693
p236.CFrame = CFrame.new(9.737854, 18.7249355, 8.35961914, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2694
p236.Anchored = true
2695
p236.FormFactor = Enum.FormFactor.Custom
2696
p236.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
2697
p236.BottomSurface = Enum.SurfaceType.Smooth
2698
p236.TopSurface = Enum.SurfaceType.Smooth
2699
p237 = Instance.new("Part", m35)
2700
p237.BrickColor = BrickColor.new("Dark stone grey")
2701
p237.Material = Enum.Material.Concrete
2702
p237.CFrame = CFrame.new(12.9182129, 18.8238144, 11.6846924, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2703
p237.Anchored = true
2704
p237.FormFactor = Enum.FormFactor.Custom
2705
p237.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
2706
p237.BottomSurface = Enum.SurfaceType.Smooth
2707
p237.TopSurface = Enum.SurfaceType.Smooth
2708
p238 = Instance.new("Part", m35)
2709
p238.BrickColor = BrickColor.new("Medium stone grey")
2710
p238.Material = Enum.Material.Concrete
2711
p238.CFrame = CFrame.new(13.2713013, 18.7232876, 11.8973389, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
2712
p238.Anchored = true
2713
p238.FormFactor = Enum.FormFactor.Custom
2714
p238.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
2715
p238.BottomSurface = Enum.SurfaceType.Smooth
2716
p238.TopSurface = Enum.SurfaceType.Smooth
2717
p239 = Instance.new("Part", m36)
2718
p239.BrickColor = BrickColor.new("Medium stone grey")
2719
p239.Material = Enum.Material.Concrete
2720
p239.CFrame = CFrame.new(8.44406128, 1.6855402, 30.397583, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
2721
p239.Anchored = true
2722
p239.FormFactor = Enum.FormFactor.Custom
2723
p239.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
2724
p239.BottomSurface = Enum.SurfaceType.Smooth
2725
p239.TopSurface = Enum.SurfaceType.Smooth
2726
b87 = Instance.new("CylinderMesh", p239)
2727
b87.Name = "Mesh"
2728
p240 = Instance.new("Part", m36)
2729
p240.BrickColor = BrickColor.new("Reddish brown")
2730
p240.Material = Enum.Material.Wood
2731
p240.CFrame = CFrame.new(9.20883179, 1.78527176, 31.1977539, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
2732
p240.Anchored = true
2733
p240.FormFactor = Enum.FormFactor.Custom
2734
p240.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
2735
p240.BottomSurface = Enum.SurfaceType.Smooth
2736
p240.TopSurface = Enum.SurfaceType.Smooth
2737
p241 = Instance.new("Part", m36)
2738
p241.BrickColor = BrickColor.new("Medium stone grey")
2739
p241.Material = Enum.Material.Concrete
2740
p241.CFrame = CFrame.new(8.44119263, 0.989235163, 31.9993286, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
2741
p241.Anchored = true
2742
p241.FormFactor = Enum.FormFactor.Custom
2743
p241.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
2744
p241.BottomSurface = Enum.SurfaceType.Smooth
2745
p241.TopSurface = Enum.SurfaceType.Smooth
2746
b88 = Instance.new("CylinderMesh", p241)
2747
b88.Name = "Mesh"
2748
p242 = Instance.new("Part", m36)
2749
p242.BrickColor = BrickColor.new("Medium stone grey")
2750
p242.Material = Enum.Material.Concrete
2751
p242.CFrame = CFrame.new(10.0411377, 0.984703302, 32.0001831, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
2752
p242.Anchored = true
2753
p242.FormFactor = Enum.FormFactor.Custom
2754
p242.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
2755
p242.BottomSurface = Enum.SurfaceType.Smooth
2756
p242.TopSurface = Enum.SurfaceType.Smooth
2757
b89 = Instance.new("CylinderMesh", p242)
2758
b89.Name = "Mesh"
2759
p243 = Instance.new("Part", m36)
2760
p243.BrickColor = BrickColor.new("Medium stone grey")
2761
p243.Material = Enum.Material.Concrete
2762
p243.CFrame = CFrame.new(10.0440063, 1.68099308, 30.398468, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
2763
p243.Anchored = true
2764
p243.FormFactor = Enum.FormFactor.Custom
2765
p243.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
2766
p243.BottomSurface = Enum.SurfaceType.Smooth
2767
p243.TopSurface = Enum.SurfaceType.Smooth
2768
b90 = Instance.new("CylinderMesh", p243)
2769
b90.Name = "Mesh"
2770
p244 = Instance.new("Part", m36)
2771
p244.BrickColor = BrickColor.new("Reddish brown")
2772
p244.Material = Enum.Material.Wood
2773
p244.CFrame = CFrame.new(9.21447754, 3.58342934, 30.3933716, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
2774
p244.Anchored = true
2775
p244.FormFactor = Enum.FormFactor.Custom
2776
p244.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
2777
p244.BottomSurface = Enum.SurfaceType.Smooth
2778
p244.TopSurface = Enum.SurfaceType.Smooth
2779
p245 = Instance.new("Part", m37)
2780
p245.BrickColor = BrickColor.new("Brown")
2781
p245.CFrame = CFrame.new(10.3787842, 3.3867588, 21.9345093, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
2782
p245.Anchored = true
2783
p245.FormFactor = Enum.FormFactor.Custom
2784
p245.Size = Vector3.new(1, 0.200000003, 1)
2785
p245.BottomSurface = Enum.SurfaceType.Smooth
2786
p245.TopSurface = Enum.SurfaceType.Smooth
2787
b91 = Instance.new("SpecialMesh", p245)
2788
b91.MeshId = "http://www.roblox.com/asset/?id=90782182"
2789
b91.TextureId = ""
2790
b91.MeshType = Enum.MeshType.FileMesh
2791
b91.Name = "Mesh"
2792
b91.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
2793
p246 = Instance.new("Part", m37)
2794
p246.BrickColor = BrickColor.new("Dark stone grey")
2795
p246.Material = Enum.Material.DiamondPlate
2796
p246.CFrame = CFrame.new(10.3566284, 4.24651527, 21.932373, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
2797
p246.Anchored = true
2798
p246.FormFactor = Enum.FormFactor.Custom
2799
p246.Size = Vector3.new(0.200000003, 1.20000112, 0.200000003)
2800
p246.BottomSurface = Enum.SurfaceType.Smooth
2801
p246.TopSurface = Enum.SurfaceType.Smooth
2802
b92 = Instance.new("CylinderMesh", p246)
2803
b92.Name = "Mesh"
2804
p247 = Instance.new("Part", m37)
2805
p247.BrickColor = BrickColor.new("Dusty Rose")
2806
p247.CFrame = CFrame.new(10.371521, 4.48652077, 21.9318237, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
2807
p247.Anchored = true
2808
p247.FormFactor = Enum.FormFactor.Custom
2809
p247.Size = Vector3.new(1, 1, 1)
2810
p247.BottomSurface = Enum.SurfaceType.Smooth
2811
p247.TopSurface = Enum.SurfaceType.Smooth
2812
b93 = Instance.new("SpecialMesh", p247)
2813
b93.MeshId = "http://www.roblox.com/asset/?id=90782182"
2814
b93.TextureId = ""
2815
b93.MeshType = Enum.MeshType.FileMesh
2816
b93.Name = "Mesh"
2817
b93.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
2818
p248 = Instance.new("Part", m37)
2819
p248.BrickColor = BrickColor.new("Pastel yellow")
2820
p248.Material = Enum.Material.SmoothPlastic
2821
p248.CFrame = CFrame.new(10.3668823, 4.68618202, 21.931366, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
2822
p248.Anchored = true
2823
p248.FormFactor = Enum.FormFactor.Custom
2824
p248.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
2825
p248.BottomSurface = Enum.SurfaceType.Smooth
2826
p248.TopSurface = Enum.SurfaceType.Smooth
2827
b94 = Instance.new("SpecialMesh", p248)
2828
b94.MeshType = Enum.MeshType.Sphere
2829
b94.Name = "Mesh"
2830
b94.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
2831
x8 = Instance.new("PointLight", p248)
2832
x8.Color = Color3.new(1, 1, 0.498039)
2833
x8.Range = 15
2834
p249 = Instance.new("Part", m37)
2835
p249.BrickColor = BrickColor.new("Dusty Rose")
2836
p249.Material = Enum.Material.SmoothPlastic
2837
p249.CFrame = CFrame.new(10.366333, 4.70618629, 21.9313049, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
2838
p249.Anchored = true
2839
p249.FormFactor = Enum.FormFactor.Custom
2840
p249.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
2841
p249.BottomSurface = Enum.SurfaceType.Smooth
2842
p249.TopSurface = Enum.SurfaceType.Smooth
2843
b95 = Instance.new("SpecialMesh", p249)
2844
b95.MeshType = Enum.MeshType.Sphere
2845
b95.Name = "Mesh"
2846
b95.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
2847
p250 = Instance.new("Part", m38)
2848
p250.BrickColor = BrickColor.new("Dark stone grey")
2849
p250.Material = Enum.Material.DiamondPlate
2850
p250.CFrame = CFrame.new(10.6795654, 47.4119873, 16.1865234, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2851
p250.Anchored = true
2852
p250.FormFactor = Enum.FormFactor.Custom
2853
p250.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
2854
p250.BottomSurface = Enum.SurfaceType.Smooth
2855
p250.TopSurface = Enum.SurfaceType.Smooth
2856
b96 = Instance.new("CylinderMesh", p250)
2857
b96.Name = "Mesh"
2858
p251 = Instance.new("Part", m38)
2859
p251.BrickColor = BrickColor.new("Dark stone grey")
2860
p251.Material = Enum.Material.DiamondPlate
2861
p251.CFrame = CFrame.new(10.678772, 47.4156036, 17.6865234, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2862
p251.Anchored = true
2863
p251.FormFactor = Enum.FormFactor.Custom
2864
p251.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
2865
p251.BottomSurface = Enum.SurfaceType.Smooth
2866
p251.TopSurface = Enum.SurfaceType.Smooth
2867
b97 = Instance.new("CylinderMesh", p251)
2868
b97.Name = "Mesh"
2869
p252 = Instance.new("Part", m38)
2870
p252.BrickColor = BrickColor.new("Dark stone grey")
2871
p252.Material = Enum.Material.Concrete
2872
p252.CFrame = CFrame.new(10.5758667, 46.4158478, 17.6888733, 0.999992788, 0.00285564945, -0.000582955196, -0.00285413186, 0.999992251, 0.00240225974, 0.000589145347, -0.00240058731, 0.999994218)
2873
p252.Anchored = true
2874
p252.FormFactor = Enum.FormFactor.Custom
2875
p252.Size = Vector3.new(3.80000019, 0.200000003, 5.19999886)
2876
p252.BottomSurface = Enum.SurfaceType.Smooth
2877
p252.TopSurface = Enum.SurfaceType.Smooth
2878
p253 = Instance.new("Part", m38)
2879
p253.BrickColor = BrickColor.new("Medium stone grey")
2880
p253.Material = Enum.Material.Brick
2881
p253.CFrame = CFrame.new(10.5718994, 45.0160522, 17.6922607, 0.999992788, 0.00285564945, -0.000582955196, -0.00285413186, 0.999992251, 0.00240225974, 0.000589145347, -0.00240058731, 0.999994218)
2882
p253.Anchored = true
2883
p253.FormFactor = Enum.FormFactor.Custom
2884
p253.Size = Vector3.new(3, 2.60000038, 4.39999962)
2885
p253.BottomSurface = Enum.SurfaceType.Smooth
2886
p253.TopSurface = Enum.SurfaceType.Smooth
2887
p254 = Instance.new("Part", m38)
2888
p254.BrickColor = BrickColor.new("Dark stone grey")
2889
p254.Material = Enum.Material.DiamondPlate
2890
p254.CFrame = CFrame.new(10.6778259, 47.41922, 19.1864929, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2891
p254.Anchored = true
2892
p254.FormFactor = Enum.FormFactor.Custom
2893
p254.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
2894
p254.BottomSurface = Enum.SurfaceType.Smooth
2895
p254.TopSurface = Enum.SurfaceType.Smooth
2896
b98 = Instance.new("CylinderMesh", p254)
2897
b98.Name = "Mesh"
2898
p255 = Instance.new("Part", m39)
2899
p255.BrickColor = BrickColor.new("Dusty Rose")
2900
p255.CFrame = CFrame.new(-11.208252, 13.8744555, 32.896698, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
2901
p255.Anchored = true
2902
p255.FormFactor = Enum.FormFactor.Custom
2903
p255.Size = Vector3.new(1, 1, 1)
2904
p255.BottomSurface = Enum.SurfaceType.Smooth
2905
p255.TopSurface = Enum.SurfaceType.Smooth
2906
b99 = Instance.new("SpecialMesh", p255)
2907
b99.MeshId = "http://www.roblox.com/asset/?id=90782182"
2908
b99.TextureId = ""
2909
b99.MeshType = Enum.MeshType.FileMesh
2910
b99.Name = "Mesh"
2911
b99.Scale = Vector3.new(0.200000003, 0.100000001, 0.200000003)
2912
p256 = Instance.new("Part", m39)
2913
p256.BrickColor = BrickColor.new("Pastel yellow")
2914
p256.Material = Enum.Material.SmoothPlastic
2915
p256.CFrame = CFrame.new(-11.2128906, 14.0744219, 32.8961792, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
2916
p256.Anchored = true
2917
p256.FormFactor = Enum.FormFactor.Custom
2918
p256.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
2919
p256.BottomSurface = Enum.SurfaceType.Smooth
2920
p256.TopSurface = Enum.SurfaceType.Smooth
2921
b100 = Instance.new("SpecialMesh", p256)
2922
b100.MeshType = Enum.MeshType.Sphere
2923
b100.Name = "Mesh"
2924
b100.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
2925
x9 = Instance.new("PointLight", p256)
2926
x9.Color = Color3.new(1, 1, 0.498039)
2927
x9.Range = 15
2928
p257 = Instance.new("Part", m39)
2929
p257.BrickColor = BrickColor.new("Dusty Rose")
2930
p257.Material = Enum.Material.SmoothPlastic
2931
p257.CFrame = CFrame.new(-11.2134094, 14.0944109, 32.8962097, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
2932
p257.Anchored = true
2933
p257.FormFactor = Enum.FormFactor.Custom
2934
p257.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
2935
p257.BottomSurface = Enum.SurfaceType.Smooth
2936
p257.TopSurface = Enum.SurfaceType.Smooth
2937
b101 = Instance.new("SpecialMesh", p257)
2938
b101.MeshType = Enum.MeshType.Sphere
2939
b101.Name = "Mesh"
2940
b101.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
2941
p258 = Instance.new("Part", m39)
2942
p258.BrickColor = BrickColor.new("Dark stone grey")
2943
p258.Material = Enum.Material.DiamondPlate
2944
p258.CFrame = CFrame.new(-11.2313232, 14.4341631, 32.8953247, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
2945
p258.Anchored = true
2946
p258.FormFactor = Enum.FormFactor.Custom
2947
p258.Size = Vector3.new(0.200000003, 0.400001049, 0.200000003)
2948
p258.BottomSurface = Enum.SurfaceType.Smooth
2949
p258.TopSurface = Enum.SurfaceType.Smooth
2950
b102 = Instance.new("CylinderMesh", p258)
2951
b102.Name = "Mesh"
2952
p259 = Instance.new("Part", m40)
2953
p259.BrickColor = BrickColor.new("Medium stone grey")
2954
p259.Material = Enum.Material.Concrete
2955
p259.CFrame = CFrame.new(9.33032227, 0.42173031, 47.5010681, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
2956
p259.Anchored = true
2957
p259.FormFactor = Enum.FormFactor.Custom
2958
p259.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
2959
p259.BottomSurface = Enum.SurfaceType.Smooth
2960
p259.TopSurface = Enum.SurfaceType.Smooth
2961
b103 = Instance.new("CylinderMesh", p259)
2962
b103.Name = "Mesh"
2963
p260 = Instance.new("Part", m40)
2964
p260.BrickColor = BrickColor.new("Medium stone grey")
2965
p260.Material = Enum.Material.Concrete
2966
p260.CFrame = CFrame.new(9.33370972, 1.6217432, 47.4981689, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
2967
p260.Anchored = true
2968
p260.FormFactor = Enum.FormFactor.Custom
2969
p260.Size = Vector3.new(0.400000006, 2.6000011, 0.400000006)
2970
p260.BottomSurface = Enum.SurfaceType.Smooth
2971
p260.TopSurface = Enum.SurfaceType.Smooth
2972
b104 = Instance.new("CylinderMesh", p260)
2973
b104.Name = "Mesh"
2974
p261 = Instance.new("Part", m40)
2975
p261.BrickColor = BrickColor.new("Brick yellow")
2976
p261.Material = Enum.Material.Concrete
2977
p261.CFrame = CFrame.new(9.30810547, 3.12191176, 47.4995728, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
2978
p261.Anchored = true
2979
p261.FormFactor = Enum.FormFactor.Custom
2980
p261.Size = Vector3.new(3.73999095, 0.200000003, 4.09000874)
2981
p261.BottomSurface = Enum.SurfaceType.Smooth
2982
p261.TopSurface = Enum.SurfaceType.Smooth
2983
p262 = Instance.new("Part", m40)
2984
p262.BrickColor = BrickColor.new("Reddish brown")
2985
p262.Material = Enum.Material.Wood
2986
p262.CFrame = CFrame.new(9.30310059, 3.12191176, 47.4945679, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
2987
p262.Anchored = true
2988
p262.FormFactor = Enum.FormFactor.Custom
2989
p262.Size = Vector3.new(3.66999078, 0.400000006, 4.00000858)
2990
p262.BottomSurface = Enum.SurfaceType.Smooth
2991
p262.TopSurface = Enum.SurfaceType.Smooth
2992
p263 = Instance.new("Part", m41)
2993
p263.BrickColor = BrickColor.new("Medium stone grey")
2994
p263.Material = Enum.Material.Concrete
2995
p263.CFrame = CFrame.new(15.6693115, 14.8107042, 50.9402771, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
2996
p263.Anchored = true
2997
p263.FormFactor = Enum.FormFactor.Custom
2998
p263.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
2999
p263.BottomSurface = Enum.SurfaceType.Smooth
3000
p263.TopSurface = Enum.SurfaceType.Smooth
3001
p264 = Instance.new("Part", m41)
3002
p264.BrickColor = BrickColor.new("Dark stone grey")
3003
p264.Material = Enum.Material.Concrete
3004
p264.CFrame = CFrame.new(15.5704651, 15.2112789, 51.0392151, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3005
p264.Anchored = true
3006
p264.FormFactor = Enum.FormFactor.Custom
3007
p264.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
3008
p264.BottomSurface = Enum.SurfaceType.Smooth
3009
p264.TopSurface = Enum.SurfaceType.Smooth
3010
p265 = Instance.new("Part", m41)
3011
p265.BrickColor = BrickColor.new("Medium stone grey")
3012
p265.Material = Enum.Material.SmoothPlastic
3013
p265.Reflectance = 0.20000000298023
3014
p265.CFrame = CFrame.new(15.4807434, 18.8106918, 50.930542, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3015
p265.Anchored = true
3016
p265.FormFactor = Enum.FormFactor.Custom
3017
p265.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
3018
p265.BottomSurface = Enum.SurfaceType.Smooth
3019
p265.TopSurface = Enum.SurfaceType.Smooth
3020
p266 = Instance.new("Part", m41)
3021
p266.BrickColor = BrickColor.new("Dark stone grey")
3022
p266.Material = Enum.Material.Concrete
3023
p266.CFrame = CFrame.new(15.580719, 18.8106613, 51.0306091, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3024
p266.Anchored = true
3025
p266.FormFactor = Enum.FormFactor.Custom
3026
p266.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
3027
p266.BottomSurface = Enum.SurfaceType.Smooth
3028
p266.TopSurface = Enum.SurfaceType.Smooth
3029
p267 = Instance.new("Part", m41)
3030
p267.BrickColor = BrickColor.new("Dark stone grey")
3031
p267.Material = Enum.Material.Concrete
3032
p267.CFrame = CFrame.new(15.5911255, 22.4101505, 50.8219604, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3033
p267.Anchored = true
3034
p267.FormFactor = Enum.FormFactor.Custom
3035
p267.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
3036
p267.BottomSurface = Enum.SurfaceType.Smooth
3037
p267.TopSurface = Enum.SurfaceType.Smooth
3038
p268 = Instance.new("Part", m41)
3039
p268.BrickColor = BrickColor.new("Medium stone grey")
3040
p268.Material = Enum.Material.Concrete
3041
p268.CFrame = CFrame.new(15.6930237, 23.1112309, 50.9203491, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3042
p268.Anchored = true
3043
p268.FormFactor = Enum.FormFactor.Custom
3044
p268.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
3045
p268.BottomSurface = Enum.SurfaceType.Smooth
3046
p268.TopSurface = Enum.SurfaceType.Smooth
3047
p269 = Instance.new("Part", m41)
3048
p269.BrickColor = BrickColor.new("Dark stone grey")
3049
p269.Material = Enum.Material.Concrete
3050
p269.CFrame = CFrame.new(15.5820007, 18.8053207, 48.8305969, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3051
p269.Anchored = true
3052
p269.FormFactor = Enum.FormFactor.Custom
3053
p269.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
3054
p269.BottomSurface = Enum.SurfaceType.Smooth
3055
p269.TopSurface = Enum.SurfaceType.Smooth
3056
p270 = Instance.new("Part", m41)
3057
p270.BrickColor = BrickColor.new("Medium stone grey")
3058
p270.Material = Enum.Material.Concrete
3059
p270.CFrame = CFrame.new(15.6822205, 18.8041306, 48.4307556, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3060
p270.Anchored = true
3061
p270.FormFactor = Enum.FormFactor.Custom
3062
p270.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
3063
p270.BottomSurface = Enum.SurfaceType.Smooth
3064
p270.TopSurface = Enum.SurfaceType.Smooth
3065
p271 = Instance.new("Part", m41)
3066
p271.BrickColor = BrickColor.new("Dark stone grey")
3067
p271.Material = Enum.Material.Concrete
3068
p271.CFrame = CFrame.new(15.5798645, 18.9154892, 53.030304, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3069
p271.Anchored = true
3070
p271.FormFactor = Enum.FormFactor.Custom
3071
p271.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
3072
p271.BottomSurface = Enum.SurfaceType.Smooth
3073
p271.TopSurface = Enum.SurfaceType.Smooth
3074
p272 = Instance.new("Part", m41)
3075
p272.BrickColor = BrickColor.new("Medium stone grey")
3076
p272.Material = Enum.Material.Concrete
3077
p272.CFrame = CFrame.new(15.6793213, 18.816124, 53.4306335, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3078
p272.Anchored = true
3079
p272.FormFactor = Enum.FormFactor.Custom
3080
p272.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
3081
p272.BottomSurface = Enum.SurfaceType.Smooth
3082
p272.TopSurface = Enum.SurfaceType.Smooth
3083
p273 = Instance.new("Part", m42)
3084
p273.BrickColor = BrickColor.new("Medium stone grey")
3085
p273.Material = Enum.Material.Concrete
3086
p273.CFrame = CFrame.new(15.6751404, 14.7866869, 40.9403076, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3087
p273.Anchored = true
3088
p273.FormFactor = Enum.FormFactor.Custom
3089
p273.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
3090
p273.BottomSurface = Enum.SurfaceType.Smooth
3091
p273.TopSurface = Enum.SurfaceType.Smooth
3092
p274 = Instance.new("Part", m42)
3093
p274.BrickColor = BrickColor.new("Dark stone grey")
3094
p274.Material = Enum.Material.Concrete
3095
p274.CFrame = CFrame.new(15.5762634, 15.1872454, 41.0392456, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3096
p274.Anchored = true
3097
p274.FormFactor = Enum.FormFactor.Custom
3098
p274.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
3099
p274.BottomSurface = Enum.SurfaceType.Smooth
3100
p274.TopSurface = Enum.SurfaceType.Smooth
3101
p275 = Instance.new("Part", m42)
3102
p275.BrickColor = BrickColor.new("Medium stone grey")
3103
p275.Material = Enum.Material.SmoothPlastic
3104
p275.Reflectance = 0.20000000298023
3105
p275.CFrame = CFrame.new(15.4865723, 18.7866573, 40.930542, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3106
p275.Anchored = true
3107
p275.FormFactor = Enum.FormFactor.Custom
3108
p275.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
3109
p275.BottomSurface = Enum.SurfaceType.Smooth
3110
p275.TopSurface = Enum.SurfaceType.Smooth
3111
p276 = Instance.new("Part", m42)
3112
p276.BrickColor = BrickColor.new("Dark stone grey")
3113
p276.Material = Enum.Material.Concrete
3114
p276.CFrame = CFrame.new(15.5865479, 18.7866116, 41.0306091, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3115
p276.Anchored = true
3116
p276.FormFactor = Enum.FormFactor.Custom
3117
p276.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
3118
p276.BottomSurface = Enum.SurfaceType.Smooth
3119
p276.TopSurface = Enum.SurfaceType.Smooth
3120
p277 = Instance.new("Part", m42)
3121
p277.BrickColor = BrickColor.new("Dark stone grey")
3122
p277.Material = Enum.Material.Concrete
3123
p277.CFrame = CFrame.new(15.5969543, 22.3861027, 40.8220215, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3124
p277.Anchored = true
3125
p277.FormFactor = Enum.FormFactor.Custom
3126
p277.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
3127
p277.BottomSurface = Enum.SurfaceType.Smooth
3128
p277.TopSurface = Enum.SurfaceType.Smooth
3129
p278 = Instance.new("Part", m42)
3130
p278.BrickColor = BrickColor.new("Medium stone grey")
3131
p278.Material = Enum.Material.Concrete
3132
p278.CFrame = CFrame.new(15.6988831, 23.087183, 40.9203491, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3133
p278.Anchored = true
3134
p278.FormFactor = Enum.FormFactor.Custom
3135
p278.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
3136
p278.BottomSurface = Enum.SurfaceType.Smooth
3137
p278.TopSurface = Enum.SurfaceType.Smooth
3138
p279 = Instance.new("Part", m42)
3139
p279.BrickColor = BrickColor.new("Dark stone grey")
3140
p279.Material = Enum.Material.Concrete
3141
p279.CFrame = CFrame.new(15.5878296, 18.7813015, 38.8306885, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3142
p279.Anchored = true
3143
p279.FormFactor = Enum.FormFactor.Custom
3144
p279.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
3145
p279.BottomSurface = Enum.SurfaceType.Smooth
3146
p279.TopSurface = Enum.SurfaceType.Smooth
3147
p280 = Instance.new("Part", m42)
3148
p280.BrickColor = BrickColor.new("Medium stone grey")
3149
p280.Material = Enum.Material.Concrete
3150
p280.CFrame = CFrame.new(15.6880798, 18.7800808, 38.4307251, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3151
p280.Anchored = true
3152
p280.FormFactor = Enum.FormFactor.Custom
3153
p280.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
3154
p280.BottomSurface = Enum.SurfaceType.Smooth
3155
p280.TopSurface = Enum.SurfaceType.Smooth
3156
p281 = Instance.new("Part", m42)
3157
p281.BrickColor = BrickColor.new("Dark stone grey")
3158
p281.Material = Enum.Material.Concrete
3159
p281.CFrame = CFrame.new(15.5856934, 18.8914261, 43.0303955, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3160
p281.Anchored = true
3161
p281.FormFactor = Enum.FormFactor.Custom
3162
p281.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
3163
p281.BottomSurface = Enum.SurfaceType.Smooth
3164
p281.TopSurface = Enum.SurfaceType.Smooth
3165
p282 = Instance.new("Part", m42)
3166
p282.BrickColor = BrickColor.new("Medium stone grey")
3167
p282.Material = Enum.Material.Concrete
3168
p282.CFrame = CFrame.new(15.6850891, 18.7920742, 43.4306946, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3169
p282.Anchored = true
3170
p282.FormFactor = Enum.FormFactor.Custom
3171
p282.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
3172
p282.BottomSurface = Enum.SurfaceType.Smooth
3173
p282.TopSurface = Enum.SurfaceType.Smooth
3174
p283 = Instance.new("Part", m43)
3175
p283.BrickColor = BrickColor.new("Medium stone grey")
3176
p283.Material = Enum.Material.Concrete
3177
p283.CFrame = CFrame.new(8.43643188, 1.7145015, 43.3973389, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
3178
p283.Anchored = true
3179
p283.FormFactor = Enum.FormFactor.Custom
3180
p283.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
3181
p283.BottomSurface = Enum.SurfaceType.Smooth
3182
p283.TopSurface = Enum.SurfaceType.Smooth
3183
b105 = Instance.new("CylinderMesh", p283)
3184
b105.Name = "Mesh"
3185
p284 = Instance.new("Part", m43)
3186
p284.BrickColor = BrickColor.new("Reddish brown")
3187
p284.Material = Enum.Material.Wood
3188
p284.CFrame = CFrame.new(9.20126343, 1.81423306, 44.1976318, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
3189
p284.Anchored = true
3190
p284.FormFactor = Enum.FormFactor.Custom
3191
p284.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
3192
p284.BottomSurface = Enum.SurfaceType.Smooth
3193
p284.TopSurface = Enum.SurfaceType.Smooth
3194
p285 = Instance.new("Part", m43)
3195
p285.BrickColor = BrickColor.new("Medium stone grey")
3196
p285.Material = Enum.Material.Concrete
3197
p285.CFrame = CFrame.new(8.43347168, 1.0182879, 44.9991455, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
3198
p285.Anchored = true
3199
p285.FormFactor = Enum.FormFactor.Custom
3200
p285.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
3201
p285.BottomSurface = Enum.SurfaceType.Smooth
3202
p285.TopSurface = Enum.SurfaceType.Smooth
3203
b106 = Instance.new("CylinderMesh", p285)
3204
b106.Name = "Mesh"
3205
p286 = Instance.new("Part", m43)
3206
p286.BrickColor = BrickColor.new("Medium stone grey")
3207
p286.Material = Enum.Material.Concrete
3208
p286.CFrame = CFrame.new(10.0335083, 1.01372552, 45.0000916, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
3209
p286.Anchored = true
3210
p286.FormFactor = Enum.FormFactor.Custom
3211
p286.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
3212
p286.BottomSurface = Enum.SurfaceType.Smooth
3213
p286.TopSurface = Enum.SurfaceType.Smooth
3214
b107 = Instance.new("CylinderMesh", p286)
3215
b107.Name = "Mesh"
3216
p287 = Instance.new("Part", m43)
3217
p287.BrickColor = BrickColor.new("Medium stone grey")
3218
p287.Material = Enum.Material.Concrete
3219
p287.CFrame = CFrame.new(10.0364685, 1.70993912, 43.3983459, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
3220
p287.Anchored = true
3221
p287.FormFactor = Enum.FormFactor.Custom
3222
p287.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
3223
p287.BottomSurface = Enum.SurfaceType.Smooth
3224
p287.TopSurface = Enum.SurfaceType.Smooth
3225
b108 = Instance.new("CylinderMesh", p287)
3226
b108.Name = "Mesh"
3227
p288 = Instance.new("Part", m43)
3228
p288.BrickColor = BrickColor.new("Reddish brown")
3229
p288.Material = Enum.Material.Wood
3230
p288.CFrame = CFrame.new(9.20687866, 3.61236, 43.3932495, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
3231
p288.Anchored = true
3232
p288.FormFactor = Enum.FormFactor.Custom
3233
p288.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
3234
p288.BottomSurface = Enum.SurfaceType.Smooth
3235
p288.TopSurface = Enum.SurfaceType.Smooth
3236
p289 = Instance.new("Part", m44)
3237
p289.BrickColor = BrickColor.new("Medium stone grey")
3238
p289.Material = Enum.Material.Concrete
3239
p289.CFrame = CFrame.new(15.7104492, 29.2106018, 50.9057007, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3240
p289.Anchored = true
3241
p289.FormFactor = Enum.FormFactor.Custom
3242
p289.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
3243
p289.BottomSurface = Enum.SurfaceType.Smooth
3244
p289.TopSurface = Enum.SurfaceType.Smooth
3245
p290 = Instance.new("Part", m44)
3246
p290.BrickColor = BrickColor.new("Dark stone grey")
3247
p290.Material = Enum.Material.Concrete
3248
p290.CFrame = CFrame.new(15.6115723, 29.611145, 51.0046692, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3249
p290.Anchored = true
3250
p290.FormFactor = Enum.FormFactor.Custom
3251
p290.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
3252
p290.BottomSurface = Enum.SurfaceType.Smooth
3253
p290.TopSurface = Enum.SurfaceType.Smooth
3254
p291 = Instance.new("Part", m44)
3255
p291.BrickColor = BrickColor.new("Medium stone grey")
3256
p291.Material = Enum.Material.SmoothPlastic
3257
p291.Reflectance = 0.20000000298023
3258
p291.CFrame = CFrame.new(15.5218201, 33.2106476, 50.8959656, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3259
p291.Anchored = true
3260
p291.FormFactor = Enum.FormFactor.Custom
3261
p291.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
3262
p291.BottomSurface = Enum.SurfaceType.Smooth
3263
p291.TopSurface = Enum.SurfaceType.Smooth
3264
p292 = Instance.new("Part", m44)
3265
p292.BrickColor = BrickColor.new("Dark stone grey")
3266
p292.Material = Enum.Material.Concrete
3267
p292.CFrame = CFrame.new(15.6218567, 33.2106171, 50.9960327, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3268
p292.Anchored = true
3269
p292.FormFactor = Enum.FormFactor.Custom
3270
p292.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
3271
p292.BottomSurface = Enum.SurfaceType.Smooth
3272
p292.TopSurface = Enum.SurfaceType.Smooth
3273
p293 = Instance.new("Part", m44)
3274
p293.BrickColor = BrickColor.new("Dark stone grey")
3275
p293.Material = Enum.Material.Concrete
3276
p293.CFrame = CFrame.new(15.6322632, 36.8100891, 50.787384, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3277
p293.Anchored = true
3278
p293.FormFactor = Enum.FormFactor.Custom
3279
p293.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
3280
p293.BottomSurface = Enum.SurfaceType.Smooth
3281
p293.TopSurface = Enum.SurfaceType.Smooth
3282
p294 = Instance.new("Part", m44)
3283
p294.BrickColor = BrickColor.new("Medium stone grey")
3284
p294.Material = Enum.Material.Concrete
3285
p294.CFrame = CFrame.new(15.7341614, 37.5112, 50.8857727, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3286
p294.Anchored = true
3287
p294.FormFactor = Enum.FormFactor.Custom
3288
p294.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
3289
p294.BottomSurface = Enum.SurfaceType.Smooth
3290
p294.TopSurface = Enum.SurfaceType.Smooth
3291
p295 = Instance.new("Part", m44)
3292
p295.BrickColor = BrickColor.new("Dark stone grey")
3293
p295.Material = Enum.Material.Concrete
3294
p295.CFrame = CFrame.new(15.6231384, 33.2052917, 48.79599, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3295
p295.Anchored = true
3296
p295.FormFactor = Enum.FormFactor.Custom
3297
p295.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
3298
p295.BottomSurface = Enum.SurfaceType.Smooth
3299
p295.TopSurface = Enum.SurfaceType.Smooth
3300
p296 = Instance.new("Part", m44)
3301
p296.BrickColor = BrickColor.new("Medium stone grey")
3302
p296.Material = Enum.Material.Concrete
3303
p296.CFrame = CFrame.new(15.7233276, 33.2040558, 48.3961487, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3304
p296.Anchored = true
3305
p296.FormFactor = Enum.FormFactor.Custom
3306
p296.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
3307
p296.BottomSurface = Enum.SurfaceType.Smooth
3308
p296.TopSurface = Enum.SurfaceType.Smooth
3309
p297 = Instance.new("Part", m44)
3310
p297.BrickColor = BrickColor.new("Dark stone grey")
3311
p297.Material = Enum.Material.Concrete
3312
p297.CFrame = CFrame.new(15.6210022, 33.3154144, 52.9957275, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3313
p297.Anchored = true
3314
p297.FormFactor = Enum.FormFactor.Custom
3315
p297.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
3316
p297.BottomSurface = Enum.SurfaceType.Smooth
3317
p297.TopSurface = Enum.SurfaceType.Smooth
3318
p298 = Instance.new("Part", m44)
3319
p298.BrickColor = BrickColor.new("Medium stone grey")
3320
p298.Material = Enum.Material.Concrete
3321
p298.CFrame = CFrame.new(15.7203979, 33.2160339, 53.3961182, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3322
p298.Anchored = true
3323
p298.FormFactor = Enum.FormFactor.Custom
3324
p298.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
3325
p298.BottomSurface = Enum.SurfaceType.Smooth
3326
p298.TopSurface = Enum.SurfaceType.Smooth
3327
p299 = Instance.new("Part", m45)
3328
p299.BrickColor = BrickColor.new("Medium stone grey")
3329
p299.Material = Enum.Material.Concrete
3330
p299.CFrame = CFrame.new(15.7162781, 29.1865845, 40.9057617, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3331
p299.Anchored = true
3332
p299.FormFactor = Enum.FormFactor.Custom
3333
p299.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
3334
p299.BottomSurface = Enum.SurfaceType.Smooth
3335
p299.TopSurface = Enum.SurfaceType.Smooth
3336
p300 = Instance.new("Part", m45)
3337
p300.BrickColor = BrickColor.new("Dark stone grey")
3338
p300.Material = Enum.Material.Concrete
3339
p300.CFrame = CFrame.new(15.6174011, 29.5871277, 41.0046692, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3340
p300.Anchored = true
3341
p300.FormFactor = Enum.FormFactor.Custom
3342
p300.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
3343
p300.BottomSurface = Enum.SurfaceType.Smooth
3344
p300.TopSurface = Enum.SurfaceType.Smooth
3345
p301 = Instance.new("Part", m45)
3346
p301.BrickColor = BrickColor.new("Medium stone grey")
3347
p301.Material = Enum.Material.SmoothPlastic
3348
p301.Reflectance = 0.20000000298023
3349
p301.CFrame = CFrame.new(15.5276489, 33.1865997, 40.8959961, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3350
p301.Anchored = true
3351
p301.FormFactor = Enum.FormFactor.Custom
3352
p301.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
3353
p301.BottomSurface = Enum.SurfaceType.Smooth
3354
p301.TopSurface = Enum.SurfaceType.Smooth
3355
p302 = Instance.new("Part", m45)
3356
p302.BrickColor = BrickColor.new("Dark stone grey")
3357
p302.Material = Enum.Material.Concrete
3358
p302.CFrame = CFrame.new(15.6276855, 33.1865692, 40.9960327, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3359
p302.Anchored = true
3360
p302.FormFactor = Enum.FormFactor.Custom
3361
p302.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
3362
p302.BottomSurface = Enum.SurfaceType.Smooth
3363
p302.TopSurface = Enum.SurfaceType.Smooth
3364
p303 = Instance.new("Part", m45)
3365
p303.BrickColor = BrickColor.new("Dark stone grey")
3366
p303.Material = Enum.Material.Concrete
3367
p303.CFrame = CFrame.new(15.638092, 36.7860565, 40.7874756, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3368
p303.Anchored = true
3369
p303.FormFactor = Enum.FormFactor.Custom
3370
p303.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
3371
p303.BottomSurface = Enum.SurfaceType.Smooth
3372
p303.TopSurface = Enum.SurfaceType.Smooth
3373
p304 = Instance.new("Part", m45)
3374
p304.BrickColor = BrickColor.new("Medium stone grey")
3375
p304.Material = Enum.Material.Concrete
3376
p304.CFrame = CFrame.new(15.7399902, 37.4871521, 40.8858032, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3377
p304.Anchored = true
3378
p304.FormFactor = Enum.FormFactor.Custom
3379
p304.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
3380
p304.BottomSurface = Enum.SurfaceType.Smooth
3381
p304.TopSurface = Enum.SurfaceType.Smooth
3382
p305 = Instance.new("Part", m45)
3383
p305.BrickColor = BrickColor.new("Dark stone grey")
3384
p305.Material = Enum.Material.Concrete
3385
p305.CFrame = CFrame.new(15.6289368, 33.1812286, 38.7961426, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3386
p305.Anchored = true
3387
p305.FormFactor = Enum.FormFactor.Custom
3388
p305.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
3389
p305.BottomSurface = Enum.SurfaceType.Smooth
3390
p305.TopSurface = Enum.SurfaceType.Smooth
3391
p306 = Instance.new("Part", m45)
3392
p306.BrickColor = BrickColor.new("Medium stone grey")
3393
p306.Material = Enum.Material.Concrete
3394
p306.CFrame = CFrame.new(15.729126, 33.1800232, 38.3961792, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3395
p306.Anchored = true
3396
p306.FormFactor = Enum.FormFactor.Custom
3397
p306.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
3398
p306.BottomSurface = Enum.SurfaceType.Smooth
3399
p306.TopSurface = Enum.SurfaceType.Smooth
3400
p307 = Instance.new("Part", m45)
3401
p307.BrickColor = BrickColor.new("Dark stone grey")
3402
p307.Material = Enum.Material.Concrete
3403
p307.CFrame = CFrame.new(15.6268311, 33.2913971, 42.9958191, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3404
p307.Anchored = true
3405
p307.FormFactor = Enum.FormFactor.Custom
3406
p307.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
3407
p307.BottomSurface = Enum.SurfaceType.Smooth
3408
p307.TopSurface = Enum.SurfaceType.Smooth
3409
p308 = Instance.new("Part", m45)
3410
p308.BrickColor = BrickColor.new("Medium stone grey")
3411
p308.Material = Enum.Material.Concrete
3412
p308.CFrame = CFrame.new(15.7261963, 33.1920166, 43.3961182, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3413
p308.Anchored = true
3414
p308.FormFactor = Enum.FormFactor.Custom
3415
p308.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
3416
p308.BottomSurface = Enum.SurfaceType.Smooth
3417
p308.TopSurface = Enum.SurfaceType.Smooth
3418
p309 = Instance.new("Part", m46)
3419
p309.BrickColor = BrickColor.new("Brown")
3420
p309.CFrame = CFrame.new(10.5638733, 3.44768715, 47.5343628, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
3421
p309.Anchored = true
3422
p309.FormFactor = Enum.FormFactor.Custom
3423
p309.Size = Vector3.new(1, 0.200000003, 1)
3424
p309.BottomSurface = Enum.SurfaceType.Smooth
3425
p309.TopSurface = Enum.SurfaceType.Smooth
3426
b109 = Instance.new("SpecialMesh", p309)
3427
b109.MeshId = "http://www.roblox.com/asset/?id=90782182"
3428
b109.TextureId = ""
3429
b109.MeshType = Enum.MeshType.FileMesh
3430
b109.Name = "Mesh"
3431
b109.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
3432
p310 = Instance.new("Part", m46)
3433
p310.BrickColor = BrickColor.new("Dark stone grey")
3434
p310.Material = Enum.Material.DiamondPlate
3435
p310.CFrame = CFrame.new(10.5416565, 4.30744362, 47.5322571, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
3436
p310.Anchored = true
3437
p310.FormFactor = Enum.FormFactor.Custom
3438
p310.Size = Vector3.new(0.200000003, 1.20000112, 0.200000003)
3439
p310.BottomSurface = Enum.SurfaceType.Smooth
3440
p310.TopSurface = Enum.SurfaceType.Smooth
3441
b110 = Instance.new("CylinderMesh", p310)
3442
b110.Name = "Mesh"
3443
p311 = Instance.new("Part", m46)
3444
p311.BrickColor = BrickColor.new("Dusty Rose")
3445
p311.CFrame = CFrame.new(10.5566101, 4.54746437, 47.5317078, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
3446
p311.Anchored = true
3447
p311.FormFactor = Enum.FormFactor.Custom
3448
p311.Size = Vector3.new(1, 1, 1)
3449
p311.BottomSurface = Enum.SurfaceType.Smooth
3450
p311.TopSurface = Enum.SurfaceType.Smooth
3451
b111 = Instance.new("SpecialMesh", p311)
3452
b111.MeshId = "http://www.roblox.com/asset/?id=90782182"
3453
b111.TextureId = ""
3454
b111.MeshType = Enum.MeshType.FileMesh
3455
b111.Name = "Mesh"
3456
b111.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
3457
p312 = Instance.new("Part", m46)
3458
p312.BrickColor = BrickColor.new("Pastel yellow")
3459
p312.Material = Enum.Material.SmoothPlastic
3460
p312.CFrame = CFrame.new(10.5519104, 4.74712563, 47.5312805, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
3461
p312.Anchored = true
3462
p312.FormFactor = Enum.FormFactor.Custom
3463
p312.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
3464
p312.BottomSurface = Enum.SurfaceType.Smooth
3465
p312.TopSurface = Enum.SurfaceType.Smooth
3466
b112 = Instance.new("SpecialMesh", p312)
3467
b112.MeshType = Enum.MeshType.Sphere
3468
b112.Name = "Mesh"
3469
b112.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
3470
x10 = Instance.new("PointLight", p312)
3471
x10.Color = Color3.new(1, 1, 0.498039)
3472
x10.Range = 15
3473
p313 = Instance.new("Part", m46)
3474
p313.BrickColor = BrickColor.new("Dusty Rose")
3475
p313.Material = Enum.Material.SmoothPlastic
3476
p313.CFrame = CFrame.new(10.5514221, 4.76714516, 47.5311584, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
3477
p313.Anchored = true
3478
p313.FormFactor = Enum.FormFactor.Custom
3479
p313.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
3480
p313.BottomSurface = Enum.SurfaceType.Smooth
3481
p313.TopSurface = Enum.SurfaceType.Smooth
3482
b113 = Instance.new("SpecialMesh", p313)
3483
b113.MeshType = Enum.MeshType.Sphere
3484
b113.Name = "Mesh"
3485
b113.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
3486
p314 = Instance.new("Part", m47)
3487
p314.BrickColor = BrickColor.new("Medium stone grey")
3488
p314.Material = Enum.Material.Concrete
3489
p314.CFrame = CFrame.new(9.9616394, 1.72985184, 51.5982666, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
3490
p314.Anchored = true
3491
p314.FormFactor = Enum.FormFactor.Custom
3492
p314.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
3493
p314.BottomSurface = Enum.SurfaceType.Smooth
3494
p314.TopSurface = Enum.SurfaceType.Smooth
3495
b114 = Instance.new("CylinderMesh", p314)
3496
b114.Name = "Mesh"
3497
p315 = Instance.new("Part", m47)
3498
p315.BrickColor = BrickColor.new("Reddish brown")
3499
p315.Material = Enum.Material.Wood
3500
p315.CFrame = CFrame.new(9.19741821, 1.83010221, 50.7975464, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
3501
p315.Anchored = true
3502
p315.FormFactor = Enum.FormFactor.Custom
3503
p315.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
3504
p315.BottomSurface = Enum.SurfaceType.Smooth
3505
p315.TopSurface = Enum.SurfaceType.Smooth
3506
p316 = Instance.new("Part", m47)
3507
p316.BrickColor = BrickColor.new("Medium stone grey")
3508
p316.Material = Enum.Material.Concrete
3509
p316.CFrame = CFrame.new(9.96057129, 1.02593255, 50, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
3510
p316.Anchored = true
3511
p316.FormFactor = Enum.FormFactor.Custom
3512
p316.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
3513
p316.BottomSurface = Enum.SurfaceType.Smooth
3514
p316.TopSurface = Enum.SurfaceType.Smooth
3515
b115 = Instance.new("CylinderMesh", p316)
3516
b115.Name = "Mesh"
3517
p317 = Instance.new("Part", m47)
3518
p317.BrickColor = BrickColor.new("Medium stone grey")
3519
p317.Material = Enum.Material.Concrete
3520
p317.CFrame = CFrame.new(8.36062622, 1.03047967, 49.9990845, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
3521
p317.Anchored = true
3522
p317.FormFactor = Enum.FormFactor.Custom
3523
p317.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
3524
p317.BottomSurface = Enum.SurfaceType.Smooth
3525
p317.TopSurface = Enum.SurfaceType.Smooth
3526
b116 = Instance.new("CylinderMesh", p317)
3527
b116.Name = "Mesh"
3528
p318 = Instance.new("Part", m47)
3529
p318.BrickColor = BrickColor.new("Medium stone grey")
3530
p318.Material = Enum.Material.Concrete
3531
p318.CFrame = CFrame.new(8.3616333, 1.73441422, 51.59729, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
3532
p318.Anchored = true
3533
p318.FormFactor = Enum.FormFactor.Custom
3534
p318.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
3535
p318.BottomSurface = Enum.SurfaceType.Smooth
3536
p318.TopSurface = Enum.SurfaceType.Smooth
3537
b117 = Instance.new("CylinderMesh", p318)
3538
b117.Name = "Mesh"
3539
p319 = Instance.new("Part", m47)
3540
p319.BrickColor = BrickColor.new("Reddish brown")
3541
p319.Material = Enum.Material.Wood
3542
p319.CFrame = CFrame.new(9.20205688, 3.63202858, 51.5932617, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
3543
p319.Anchored = true
3544
p319.FormFactor = Enum.FormFactor.Custom
3545
p319.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
3546
p319.BottomSurface = Enum.SurfaceType.Smooth
3547
p319.TopSurface = Enum.SurfaceType.Smooth
3548
p320 = Instance.new("Part", m48)
3549
p320.BrickColor = BrickColor.new("Medium stone grey")
3550
p320.Material = Enum.Material.Concrete
3551
p320.CFrame = CFrame.new(-10.166626, 0.5066607, 42.8592834, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
3552
p320.Anchored = true
3553
p320.FormFactor = Enum.FormFactor.Custom
3554
p320.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
3555
p320.BottomSurface = Enum.SurfaceType.Smooth
3556
p320.TopSurface = Enum.SurfaceType.Smooth
3557
b118 = Instance.new("CylinderMesh", p320)
3558
b118.Name = "Mesh"
3559
p321 = Instance.new("Part", m48)
3560
p321.BrickColor = BrickColor.new("Medium stone grey")
3561
p321.Material = Enum.Material.Concrete
3562
p321.CFrame = CFrame.new(-10.1646118, 1.20568132, 42.857605, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
3563
p321.Anchored = true
3564
p321.FormFactor = Enum.FormFactor.Custom
3565
p321.Size = Vector3.new(0.400000006, 1.20000076, 0.400000006)
3566
p321.BottomSurface = Enum.SurfaceType.Smooth
3567
p321.TopSurface = Enum.SurfaceType.Smooth
3568
b119 = Instance.new("CylinderMesh", p321)
3569
b119.Name = "Mesh"
3570
p322 = Instance.new("Part", m48)
3571
p322.BrickColor = BrickColor.new("Dusty Rose")
3572
p322.Material = Enum.Material.Concrete
3573
p322.Reflectance = 0.20000000298023
3574
p322.CFrame = CFrame.new(-10.1623535, 2.00669241, 42.8557129, -0.999992847, -0.00285560009, -0.000583045126, 0.00285403873, -0.999992371, 0.00240225228, -0.000589072471, 0.00240054913, 0.999994397)
3575
p322.Anchored = true
3576
p322.FormFactor = Enum.FormFactor.Custom
3577
p322.Size = Vector3.new(2.00001645, 0.399999976, 2)
3578
p322.BottomSurface = Enum.SurfaceType.Smooth
3579
p322.TopSurface = Enum.SurfaceType.Smooth
3580
b120 = Instance.new("CylinderMesh", p322)
3581
b120.Name = "Mesh"
3582
p323 = Instance.new("Part", m48)
3583
p323.BrickColor = BrickColor.new("Brick yellow")
3584
p323.Material = Enum.Material.Concrete
3585
p323.CFrame = CFrame.new(-10.1723633, 2.00673819, 42.8556519, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
3586
p323.Anchored = true
3587
p323.FormFactor = Enum.FormFactor.Custom
3588
p323.Size = Vector3.new(2.1400001, 0.200000003, 2.06000042)
3589
p323.BottomSurface = Enum.SurfaceType.Smooth
3590
p323.TopSurface = Enum.SurfaceType.Smooth
3591
b121 = Instance.new("CylinderMesh", p323)
3592
b121.Name = "Mesh"
3593
p324 = Instance.new("Part", m49)
3594
p324.BrickColor = BrickColor.new("Medium stone grey")
3595
p324.Material = Enum.Material.Concrete
3596
p324.CFrame = CFrame.new(-10.1689453, 0.516273737, 46.859314, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
3597
p324.Anchored = true
3598
p324.FormFactor = Enum.FormFactor.Custom
3599
p324.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
3600
p324.BottomSurface = Enum.SurfaceType.Smooth
3601
p324.TopSurface = Enum.SurfaceType.Smooth
3602
b122 = Instance.new("CylinderMesh", p324)
3603
b122.Name = "Mesh"
3604
p325 = Instance.new("Part", m49)
3605
p325.BrickColor = BrickColor.new("Medium stone grey")
3606
p325.Material = Enum.Material.Concrete
3607
p325.CFrame = CFrame.new(-10.1669312, 1.2152791, 46.8576355, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
3608
p325.Anchored = true
3609
p325.FormFactor = Enum.FormFactor.Custom
3610
p325.Size = Vector3.new(0.400000006, 1.20000076, 0.400000006)
3611
p325.BottomSurface = Enum.SurfaceType.Smooth
3612
p325.TopSurface = Enum.SurfaceType.Smooth
3613
b123 = Instance.new("CylinderMesh", p325)
3614
b123.Name = "Mesh"
3615
p326 = Instance.new("Part", m49)
3616
p326.BrickColor = BrickColor.new("Dusty Rose")
3617
p326.Material = Enum.Material.Concrete
3618
p326.Reflectance = 0.20000000298023
3619
p326.CFrame = CFrame.new(-10.1646423, 2.01632071, 46.8556824, -0.999992847, -0.00285560009, -0.000583045126, 0.00285403873, -0.999992371, 0.00240225228, -0.000589072471, 0.00240054913, 0.999994397)
3620
p326.Anchored = true
3621
p326.FormFactor = Enum.FormFactor.Custom
3622
p326.Size = Vector3.new(2.00001645, 0.399999976, 2)
3623
p326.BottomSurface = Enum.SurfaceType.Smooth
3624
p326.TopSurface = Enum.SurfaceType.Smooth
3625
b124 = Instance.new("CylinderMesh", p326)
3626
b124.Name = "Mesh"
3627
p327 = Instance.new("Part", m49)
3628
p327.BrickColor = BrickColor.new("Brick yellow")
3629
p327.Material = Enum.Material.Concrete
3630
p327.CFrame = CFrame.new(-10.1746521, 2.01633596, 46.8556824, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
3631
p327.Anchored = true
3632
p327.FormFactor = Enum.FormFactor.Custom
3633
p327.Size = Vector3.new(2.1400001, 0.200000003, 2.06000042)
3634
p327.BottomSurface = Enum.SurfaceType.Smooth
3635
p327.TopSurface = Enum.SurfaceType.Smooth
3636
b125 = Instance.new("CylinderMesh", p327)
3637
b125.Name = "Mesh"
3638
p328 = Instance.new("Part", m)
3639
p328.BrickColor = BrickColor.new("Dark stone grey")
3640
p328.Material = Enum.Material.Pebble
3641
p328.CFrame = CFrame.new(-23.5415344, 42.0779266, 31.6868896, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3642
p328.Anchored = true
3643
p328.FormFactor = Enum.FormFactor.Custom
3644
p328.Size = Vector3.new(45.2700005, 1.79999804, 2.80001736)
3645
p328.BottomSurface = Enum.SurfaceType.Smooth
3646
p328.TopSurface = Enum.SurfaceType.Smooth
3647
p329 = Instance.new("Seat", m)
3648
p329.BrickColor = BrickColor.new("Sand red")
3649
p329.Transparency = 1
3650
p329.CFrame = CFrame.new(-0.174499512, 1.9647001, 12.3618774, 0.000582925277, 0.00285565224, 0.999992788, -0.0024022474, 0.999992371, -0.00285414211, -0.999994338, -0.00240059383, 0.000588951225)
3651
p329.Anchored = true
3652
p329.FormFactor = Enum.FormFactor.Custom
3653
p329.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
3654
p329.FrontSurface = Enum.SurfaceType.Hinge
3655
p330 = Instance.new("Part", m)
3656
p330.BrickColor = BrickColor.new("Sand red")
3657
p330.Material = Enum.Material.Concrete
3658
p330.CFrame = CFrame.new(-8.66809082, 27.7768841, 7.65991211, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3659
p330.Anchored = true
3660
p330.FormFactor = Enum.FormFactor.Custom
3661
p330.Size = Vector3.new(2.86999059, 26.600008, 31.8000011)
3662
p330.BottomSurface = Enum.SurfaceType.Smooth
3663
p330.TopSurface = Enum.SurfaceType.Smooth
3664
p331 = Instance.new("Part", m)
3665
p331.BrickColor = BrickColor.new("Dark stone grey")
3666
p331.Material = Enum.Material.Concrete
3667
p331.CFrame = CFrame.new(-5.04040527, 42.4246521, 31.5272522, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3668
p331.Anchored = true
3669
p331.FormFactor = Enum.FormFactor.Custom
3670
p331.Size = Vector3.new(51.8699951, 2.60000014, 41.0000114)
3671
p331.BottomSurface = Enum.SurfaceType.Smooth
3672
p331.TopSurface = Enum.SurfaceType.Smooth
3673
p332 = Instance.new("Part", m)
3674
p332.BrickColor = BrickColor.new("Medium stone grey")
3675
p332.Material = Enum.Material.SmoothPlastic
3676
p332.Reflectance = 0.20000000298023
3677
p332.Transparency = 0.5
3678
p332.CFrame = CFrame.new(-3.03018188, 6.06105995, 7.77032471, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
3679
p332.Anchored = true
3680
p332.FormFactor = Enum.FormFactor.Custom
3681
p332.Size = Vector3.new(14.8000221, 6.80000496, 0.200000003)
3682
p332.BottomSurface = Enum.SurfaceType.Smooth
3683
p332.TopSurface = Enum.SurfaceType.Smooth
3684
p333 = Instance.new("Part", m)
3685
p333.BrickColor = BrickColor.new("Dark stone grey")
3686
p333.Material = Enum.Material.Pebble
3687
p333.CFrame = CFrame.new(-9.00686646, 14.1780901, 7.49224854, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3688
p333.Anchored = true
3689
p333.FormFactor = Enum.FormFactor.Custom
3690
p333.Size = Vector3.new(3.26999068, 0.599997938, 32.8000145)
3691
p333.BottomSurface = Enum.SurfaceType.Smooth
3692
p333.TopSurface = Enum.SurfaceType.Smooth
3693
p334 = Instance.new("Part", m)
3694
p334.BrickColor = BrickColor.new("Dusty Rose")
3695
p334.Material = Enum.Material.SmoothPlastic
3696
p334.CFrame = CFrame.new(-6.73013306, 6.07158852, 7.74816895, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
3697
p334.Anchored = true
3698
p334.FormFactor = Enum.FormFactor.Custom
3699
p334.Size = Vector3.new(0.200000003, 6.40000105, 0.399989128)
3700
p334.BottomSurface = Enum.SurfaceType.Smooth
3701
p334.TopSurface = Enum.SurfaceType.Smooth
3702
p335 = Instance.new("Part", m)
3703
p335.BrickColor = BrickColor.new("Dusty Rose")
3704
p335.Material = Enum.Material.Brick
3705
p335.CFrame = CFrame.new(-4.11669922, 10.7645779, 7.668396, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
3706
p335.Anchored = true
3707
p335.FormFactor = Enum.FormFactor.Custom
3708
p335.Size = Vector3.new(17.399992, 2.59999824, 1.59998918)
3709
p335.BottomSurface = Enum.SurfaceType.Smooth
3710
p335.TopSurface = Enum.SurfaceType.Smooth
3711
p336 = Instance.new("Part", m)
3712
p336.BrickColor = BrickColor.new("Dark stone grey")
3713
p336.Material = Enum.Material.Pebble
3714
p336.CFrame = CFrame.new(-8.91043091, 12.9783373, 7.69537354, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3715
p336.Anchored = true
3716
p336.FormFactor = Enum.FormFactor.Custom
3717
p336.Size = Vector3.new(2.86999059, 1.79999804, 32.200016)
3718
p336.BottomSurface = Enum.SurfaceType.Smooth
3719
p336.TopSurface = Enum.SurfaceType.Smooth
3720
p337 = Instance.new("Part", m)
3721
p337.BrickColor = BrickColor.new("Dusty Rose")
3722
p337.Material = Enum.Material.Brick
3723
p337.CFrame = CFrame.new(-11.7875061, 6.98610878, 7.77294922, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3724
p337.Anchored = true
3725
p337.FormFactor = Enum.FormFactor.Custom
3726
p337.Size = Vector3.new(2.59999228, 10.2000017, 2.47998929)
3727
p337.BottomSurface = Enum.SurfaceType.Smooth
3728
p337.TopSurface = Enum.SurfaceType.Smooth
3729
p338 = Instance.new("Part", m)
3730
p338.BrickColor = BrickColor.new("Dusty Rose")
3731
p338.Material = Enum.Material.Brick
3732
p338.CFrame = CFrame.new(-17.7280579, 6.80295753, 7.7401123, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
3733
p338.Anchored = true
3734
p338.FormFactor = Enum.FormFactor.Custom
3735
p338.Size = Vector3.new(9.39998913, 10.5999947, 1.59998918)
3736
p338.BottomSurface = Enum.SurfaceType.Smooth
3737
p338.TopSurface = Enum.SurfaceType.Smooth
3738
p339 = Instance.new("Part", m)
3739
p339.BrickColor = BrickColor.new("Medium stone grey")
3740
p339.Material = Enum.Material.Brick
3741
p339.CFrame = CFrame.new(-8.92550659, 43.1841583, 10.022644, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3742
p339.Anchored = true
3743
p339.FormFactor = Enum.FormFactor.Custom
3744
p339.Size = Vector3.new(8.46998692, 0.599997938, 32.8000145)
3745
p339.BottomSurface = Enum.SurfaceType.Smooth
3746
p339.TopSurface = Enum.SurfaceType.Smooth
3747
p340 = Instance.new("Part", m)
3748
p340.BrickColor = BrickColor.new("Sand red")
3749
p340.Material = Enum.Material.Concrete
3750
p340.CFrame = CFrame.new(-24.4828491, 27.8829327, 33.0203857, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3751
p340.Anchored = true
3752
p340.FormFactor = Enum.FormFactor.Custom
3753
p340.Size = Vector3.new(47.870018, 26.5999985, 0.200000003)
3754
p340.BottomSurface = Enum.SurfaceType.Smooth
3755
p340.TopSurface = Enum.SurfaceType.Smooth
3756
p341 = Instance.new("Part", m)
3757
p341.BrickColor = BrickColor.new("Dark stone grey")
3758
p341.Material = Enum.Material.Pebble
3759
p341.CFrame = CFrame.new(-8.82754517, 41.9781342, 7.62573242, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3760
p341.Anchored = true
3761
p341.FormFactor = Enum.FormFactor.Custom
3762
p341.Size = Vector3.new(2.86999059, 1.79999804, 32.200016)
3763
p341.BottomSurface = Enum.SurfaceType.Smooth
3764
p341.TopSurface = Enum.SurfaceType.Smooth
3765
p342 = Instance.new("Part", m)
3766
p342.BrickColor = BrickColor.new("Dusty Rose")
3767
p342.Material = Enum.Material.SmoothPlastic
3768
p342.CFrame = CFrame.new(-2.9395752, 2.76065993, 7.75836182, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
3769
p342.Anchored = true
3770
p342.FormFactor = Enum.FormFactor.Custom
3771
p342.Size = Vector3.new(14.9999905, 0.200000003, 0.399989128)
3772
p342.BottomSurface = Enum.SurfaceType.Smooth
3773
p342.TopSurface = Enum.SurfaceType.Smooth
3774
p343 = Instance.new("Part", m)
3775
p343.BrickColor = BrickColor.new("Sand red")
3776
p343.Material = Enum.Material.Concrete
3777
p343.CFrame = CFrame.new(-23.6445923, 1.01985955, 7.80541992, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3778
p343.Anchored = true
3779
p343.FormFactor = Enum.FormFactor.Custom
3780
p343.Size = Vector3.new(3.04999042, 1.79999804, 2.79999971)
3781
p343.BottomSurface = Enum.SurfaceType.Smooth
3782
p343.TopSurface = Enum.SurfaceType.Smooth
3783
p344 = Instance.new("Part", m)
3784
p344.BrickColor = BrickColor.new("Dusty Rose")
3785
p344.Material = Enum.Material.Brick
3786
p344.CFrame = CFrame.new(-4.14358521, 1.36408293, 7.76104736, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
3787
p344.Anchored = true
3788
p344.FormFactor = Enum.FormFactor.Custom
3789
p344.Size = Vector3.new(17.399992, 2.59999824, 1.59998918)
3790
p344.BottomSurface = Enum.SurfaceType.Smooth
3791
p344.TopSurface = Enum.SurfaceType.Smooth
3792
p345 = Instance.new("Part", m)
3793
p345.BrickColor = BrickColor.new("Sand red")
3794
p345.Material = Enum.Material.Concrete
3795
p345.CFrame = CFrame.new(-11.8446045, 0.985969782, 7.72247314, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3796
p345.Anchored = true
3797
p345.FormFactor = Enum.FormFactor.Custom
3798
p345.Size = Vector3.new(2.86999059, 1.79999804, 2.79999971)
3799
p345.BottomSurface = Enum.SurfaceType.Smooth
3800
p345.TopSurface = Enum.SurfaceType.Smooth
3801
p346 = Instance.new("Part", m)
3802
p346.BrickColor = BrickColor.new("Dusty Rose")
3803
p346.Material = Enum.Material.SmoothPlastic
3804
p346.CFrame = CFrame.new(-10.3301086, 6.08187294, 7.74603271, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
3805
p346.Anchored = true
3806
p346.FormFactor = Enum.FormFactor.Custom
3807
p346.Size = Vector3.new(0.200000003, 6.40000105, 0.399989128)
3808
p346.BottomSurface = Enum.SurfaceType.Smooth
3809
p346.TopSurface = Enum.SurfaceType.Smooth
3810
p347 = Instance.new("Part", m)
3811
p347.BrickColor = BrickColor.new("Dusty Rose")
3812
p347.Material = Enum.Material.SmoothPlastic
3813
p347.CFrame = CFrame.new(-2.92071533, 9.36134911, 7.74249268, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
3814
p347.Anchored = true
3815
p347.FormFactor = Enum.FormFactor.Custom
3816
p347.Size = Vector3.new(14.9999905, 0.200000003, 0.399989128)
3817
p347.BottomSurface = Enum.SurfaceType.Smooth
3818
p347.TopSurface = Enum.SurfaceType.Smooth
3819
p348 = Instance.new("Part", m)
3820
p348.BrickColor = BrickColor.new("Sand red")
3821
p348.Material = Enum.Material.Concrete
3822
p348.CFrame = CFrame.new(-8.94470215, 0.977775812, 7.75909424, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
3823
p348.Anchored = true
3824
p348.FormFactor = Enum.FormFactor.Custom
3825
p348.Size = Vector3.new(27.0000076, 1.79999804, 2.00000024)
3826
p348.BottomSurface = Enum.SurfaceType.Smooth
3827
p348.TopSurface = Enum.SurfaceType.Smooth
3828
p349 = Instance.new("Part", m)
3829
p349.BrickColor = BrickColor.new("Dusty Rose")
3830
p349.Material = Enum.Material.Brick
3831
p349.CFrame = CFrame.new(-23.5874634, 7.01976967, 7.76605225, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3832
p349.Anchored = true
3833
p349.FormFactor = Enum.FormFactor.Custom
3834
p349.Size = Vector3.new(2.59999228, 10.2000017, 2.47998929)
3835
p349.BottomSurface = Enum.SurfaceType.Smooth
3836
p349.TopSurface = Enum.SurfaceType.Smooth
3837
p350 = Instance.new("Part", m)
3838
p350.BrickColor = BrickColor.new("Dark stone grey")
3839
p350.Material = Enum.Material.Pebble
3840
p350.CFrame = CFrame.new(-6.45562744, 42.0857239, 55.6617432, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3841
p350.Anchored = true
3842
p350.FormFactor = Enum.FormFactor.Custom
3843
p350.Size = Vector3.new(2.80000043, 1.79999804, 38.2000084)
3844
p350.BottomSurface = Enum.SurfaceType.Smooth
3845
p350.TopSurface = Enum.SurfaceType.Smooth
3846
p351 = Instance.new("Seat", m)
3847
p351.BrickColor = BrickColor.new("Sand red")
3848
p351.Transparency = 1
3849
p351.CFrame = CFrame.new(9.24795532, 1.9723295, 25.1973267, 0.999992847, 0.00285565224, -0.000582820969, -0.00285412627, 0.999992371, 0.00240224763, 0.000589011179, -0.00240059383, 0.999994397)
3850
p351.Anchored = true
3851
p351.FormFactor = Enum.FormFactor.Custom
3852
p351.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
3853
p351.FrontSurface = Enum.SurfaceType.Hinge
3854
p352 = Instance.new("Seat", m)
3855
p352.BrickColor = BrickColor.new("Sand red")
3856
p352.Transparency = 1
3857
p352.CFrame = CFrame.new(9.18179321, 1.9566282, 18.5973816, -0.999992847, 0.00285565224, 0.000582820969, 0.00285412627, 0.999992371, -0.00240224763, -0.000589011179, -0.00240059383, -0.999994397)
3858
p352.Anchored = true
3859
p352.FormFactor = Enum.FormFactor.Custom
3860
p352.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
3861
p352.FrontSurface = Enum.SurfaceType.Hinge
3862
p353 = Instance.new("Part", m)
3863
p353.BrickColor = BrickColor.new("Dusty Rose")
3864
p353.Material = Enum.Material.SmoothPlastic
3865
p353.CFrame = CFrame.new(11.9478149, 4.43052101, 13.0487061, 0.706689715, -0.70751363, -0.00285569415, -0.000319564599, 0.00371687044, -0.999992192, 0.707518935, 0.706686199, 0.00240054168)
3866
p353.Anchored = true
3867
p353.FormFactor = Enum.FormFactor.Custom
3868
p353.Size = Vector3.new(0.200000003, 0.800000012, 4.79998827)
3869
p353.BottomSurface = Enum.SurfaceType.Smooth
3870
p353.TopSurface = Enum.SurfaceType.Smooth
3871
p354 = Instance.new("Part", m)
3872
p354.BrickColor = BrickColor.new("Brick yellow")
3873
p354.Material = Enum.Material.Concrete
3874
p354.CFrame = CFrame.new(7.33169556, 14.5476427, 14.2408447, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
3875
p354.Anchored = true
3876
p354.FormFactor = Enum.FormFactor.Custom
3877
p354.Size = Vector3.new(12.2699909, 0.200000003, 5.39999866)
3878
p354.BottomSurface = Enum.SurfaceType.Smooth
3879
p354.TopSurface = Enum.SurfaceType.Smooth
3880
p355 = Instance.new("Part", m)
3881
p355.BrickColor = BrickColor.new("Sand red")
3882
p355.Material = Enum.Material.Concrete
3883
p355.CFrame = CFrame.new(5.75524902, 0.935737848, 7.73284912, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3884
p355.Anchored = true
3885
p355.FormFactor = Enum.FormFactor.Custom
3886
p355.Size = Vector3.new(2.86999059, 1.79999804, 2.79999971)
3887
p355.BottomSurface = Enum.SurfaceType.Smooth
3888
p355.TopSurface = Enum.SurfaceType.Smooth
3889
p356 = Instance.new("Part", m)
3890
p356.BrickColor = BrickColor.new("Dusty Rose")
3891
p356.Material = Enum.Material.Brick
3892
p356.CFrame = CFrame.new(13.9584961, 5.85712624, 25.9606934, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3893
p356.Anchored = true
3894
p356.FormFactor = Enum.FormFactor.Custom
3895
p356.Size = Vector3.new(1.59999228, 7.19999504, 0.800000012)
3896
p356.BottomSurface = Enum.SurfaceType.Smooth
3897
p356.TopSurface = Enum.SurfaceType.Smooth
3898
p357 = Instance.new("Part", m)
3899
p357.BrickColor = BrickColor.new("Brick yellow")
3900
p357.Material = Enum.Material.Concrete
3901
p357.CFrame = CFrame.new(-13.3283691, 2.64595962, 30.627594, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3902
p357.Anchored = true
3903
p357.FormFactor = Enum.FormFactor.Custom
3904
p357.Size = Vector3.new(2.0699904, 1.39999795, 2.24999785)
3905
p357.BottomSurface = Enum.SurfaceType.Smooth
3906
p357.TopSurface = Enum.SurfaceType.Smooth
3907
b126 = Instance.new("CylinderMesh", p357)
3908
b126.Name = "Mesh"
3909
p358 = Instance.new("Part", m)
3910
p358.BrickColor = BrickColor.new("Sand red")
3911
p358.Material = Enum.Material.Concrete
3912
p358.CFrame = CFrame.new(-2.85913086, 1.22254229, 33.3821411, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3913
p358.Anchored = true
3914
p358.FormFactor = Enum.FormFactor.Custom
3915
p358.Size = Vector3.new(2.97999024, 1.79999804, 2.79999971)
3916
p358.BottomSurface = Enum.SurfaceType.Smooth
3917
p358.TopSurface = Enum.SurfaceType.Smooth
3918
p359 = Instance.new("Part", m)
3919
p359.BrickColor = BrickColor.new("Sand red")
3920
p359.Material = Enum.Material.Concrete
3921
p359.CFrame = CFrame.new(13.944519, 0.956779718, 25.8724365, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3922
p359.Anchored = true
3923
p359.FormFactor = Enum.FormFactor.Custom
3924
p359.Size = Vector3.new(17.399992, 1.79999804, 2.00000024)
3925
p359.BottomSurface = Enum.SurfaceType.Smooth
3926
p359.TopSurface = Enum.SurfaceType.Smooth
3927
p360 = Instance.new("Part", m)
3928
p360.BrickColor = BrickColor.new("Sand red")
3929
p360.Material = Enum.Material.Concrete
3930
p360.CFrame = CFrame.new(7.15487671, 0.933189631, 8.33374023, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
3931
p360.Anchored = true
3932
p360.FormFactor = Enum.FormFactor.Custom
3933
p360.Size = Vector3.new(2.86999059, 1.79999804, 2.79999971)
3934
p360.BottomSurface = Enum.SurfaceType.Smooth
3935
p360.TopSurface = Enum.SurfaceType.Smooth
3936
p361 = Instance.new("Part", m)
3937
p361.BrickColor = BrickColor.new("Dusty Rose")
3938
p361.Material = Enum.Material.Brick
3939
p361.CFrame = CFrame.new(10.2698059, 10.7320004, 11.3355103, 0.706689656, 0.00285571627, -0.70751375, -0.000319607789, 0.999992311, 0.00371686602, 0.707519054, -0.00240055937, 0.706686199)
3940
p361.Anchored = true
3941
p361.FormFactor = Enum.FormFactor.Custom
3942
p361.Size = Vector3.new(6.1999898, 2.59999824, 1.59998918)
3943
p361.BottomSurface = Enum.SurfaceType.Smooth
3944
p361.TopSurface = Enum.SurfaceType.Smooth
3945
p362 = Instance.new("Part", m)
3946
p362.BrickColor = BrickColor.new("Dark stone grey")
3947
p362.Material = Enum.Material.Concrete
3948
p362.CFrame = CFrame.new(13.9413147, 0.157570243, 26.5744019, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3949
p362.Anchored = true
3950
p362.FormFactor = Enum.FormFactor.Custom
3951
p362.Size = Vector3.new(18.7999878, 0.200000003, 0.399989128)
3952
p362.BottomSurface = Enum.SurfaceType.Smooth
3953
p362.TopSurface = Enum.SurfaceType.Smooth
3954
p363 = Instance.new("Part", m)
3955
p363.BrickColor = BrickColor.new("Dusty Rose")
3956
p363.Material = Enum.Material.SmoothPlastic
3957
p363.CFrame = CFrame.new(13.9616699, 7.15604591, 25.9575806, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3958
p363.Anchored = true
3959
p363.FormFactor = Enum.FormFactor.Custom
3960
p363.Size = Vector3.new(17.1999912, 0.200000003, 0.399989128)
3961
p363.BottomSurface = Enum.SurfaceType.Smooth
3962
p363.TopSurface = Enum.SurfaceType.Smooth
3963
p364 = Instance.new("Part", m)
3964
p364.BrickColor = BrickColor.new("Dusty Rose")
3965
p364.Material = Enum.Material.Brick
3966
p364.CFrame = CFrame.new(5.81231689, 6.93586159, 7.78338623, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3967
p364.Anchored = true
3968
p364.FormFactor = Enum.FormFactor.Custom
3969
p364.Size = Vector3.new(2.59999228, 10.2000017, 2.47998929)
3970
p364.BottomSurface = Enum.SurfaceType.Smooth
3971
p364.TopSurface = Enum.SurfaceType.Smooth
3972
p365 = Instance.new("Part", m)
3973
p365.BrickColor = BrickColor.new("Sand red")
3974
p365.Material = Enum.Material.Concrete
3975
p365.CFrame = CFrame.new(13.9504089, 0.932014704, 15.9375, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3976
p365.Anchored = true
3977
p365.FormFactor = Enum.FormFactor.Custom
3978
p365.Size = Vector3.new(2.86999059, 1.79999804, 2.79999971)
3979
p365.BottomSurface = Enum.SurfaceType.Smooth
3980
p365.TopSurface = Enum.SurfaceType.Smooth
3981
p366 = Instance.new("Part", m)
3982
p366.BrickColor = BrickColor.new("Dusty Rose")
3983
p366.Material = Enum.Material.SmoothPlastic
3984
p366.CFrame = CFrame.new(8.66400146, 1.03327203, 9.84411621, 0.706689656, -0.70751375, -0.00285567157, -0.000319581712, 0.00371683156, -0.999992311, 0.707518995, 0.706686258, 0.00240052212)
3985
p366.Anchored = true
3986
p366.FormFactor = Enum.FormFactor.Custom
3987
p366.Size = Vector3.new(0.200000003, 0.800000012, 1.99998808)
3988
p366.BottomSurface = Enum.SurfaceType.Smooth
3989
p366.TopSurface = Enum.SurfaceType.Smooth
3990
p367 = Instance.new("Part", m)
3991
p367.BrickColor = BrickColor.new("Dusty Rose")
3992
p367.Material = Enum.Material.SmoothPlastic
3993
p367.CFrame = CFrame.new(13.9576416, 5.75615883, 25.9609375, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
3994
p367.Anchored = true
3995
p367.FormFactor = Enum.FormFactor.Custom
3996
p367.Size = Vector3.new(2.00000024, 7.40000486, 0.399989128)
3997
p367.BottomSurface = Enum.SurfaceType.Smooth
3998
p367.TopSurface = Enum.SurfaceType.Smooth
3999
p368 = Instance.new("Part", m)
4000
p368.BrickColor = BrickColor.new("Dusty Rose")
4001
p368.Material = Enum.Material.Brick
4002
p368.CFrame = CFrame.new(13.9533691, 6.07966042, 35.8600464, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4003
p368.Anchored = true
4004
p368.FormFactor = Enum.FormFactor.Custom
4005
p368.Size = Vector3.new(2.59999228, 12.0000038, 2.40000606)
4006
p368.BottomSurface = Enum.SurfaceType.Smooth
4007
p368.TopSurface = Enum.SurfaceType.Smooth
4008
p369 = Instance.new("Part", m)
4009
p369.BrickColor = BrickColor.new("Brick yellow")
4010
p369.Material = Enum.Material.Concrete
4011
p369.CFrame = CFrame.new(9.97796631, 14.5903978, 35.2023926, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4012
p369.Anchored = true
4013
p369.FormFactor = Enum.FormFactor.Custom
4014
p369.Size = Vector3.new(41.8699913, 0.200000003, 5.1999979)
4015
p369.BottomSurface = Enum.SurfaceType.Smooth
4016
p369.TopSurface = Enum.SurfaceType.Smooth
4017
p370 = Instance.new("Part", m)
4018
p370.BrickColor = BrickColor.new("Sand red")
4019
p370.Material = Enum.Material.Concrete
4020
p370.CFrame = CFrame.new(-23.658844, 1.07817864, 31.9501343, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4021
p370.Anchored = true
4022
p370.FormFactor = Enum.FormFactor.Custom
4023
p370.Size = Vector3.new(45.9999886, 1.79999804, 2.00000024)
4024
p370.BottomSurface = Enum.SurfaceType.Smooth
4025
p370.TopSurface = Enum.SurfaceType.Smooth
4026
p371 = Instance.new("Part", m)
4027
p371.BrickColor = BrickColor.new("Black")
4028
p371.Material = Enum.Material.Concrete
4029
p371.CFrame = CFrame.new(8.95126343, 2.63311172, 10.1233521, -0.707513869, 0.00285561942, -0.706689596, 0.0037167829, 0.999992311, 0.000319567393, 0.706686318, -0.0024005333, -0.707519054)
4030
p371.Anchored = true
4031
p371.CanCollide = false
4032
p371.FormFactor = Enum.FormFactor.Custom
4033
p371.Size = Vector3.new(0.500000536, 1.60000014, 0.200000003)
4034
p371.BottomSurface = Enum.SurfaceType.Smooth
4035
p371.TopSurface = Enum.SurfaceType.Smooth
4036
p372 = Instance.new("Part", m)
4037
p372.BrickColor = BrickColor.new("Dusty Rose")
4038
p372.Material = Enum.Material.Brick
4039
p372.CFrame = CFrame.new(13.9456787, 1.35678923, 25.871521, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4040
p372.Anchored = true
4041
p372.FormFactor = Enum.FormFactor.Custom
4042
p372.Size = Vector3.new(17.399992, 2.59999824, 1.59998918)
4043
p372.BottomSurface = Enum.SurfaceType.Smooth
4044
p372.TopSurface = Enum.SurfaceType.Smooth
4045
p373 = Instance.new("Part", m)
4046
p373.BrickColor = BrickColor.new("Dark stone grey")
4047
p373.Material = Enum.Material.DiamondPlate
4048
p373.CFrame = CFrame.new(-22.3479919, 5.63326454, 35.8400879, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4049
p373.Anchored = true
4050
p373.FormFactor = Enum.FormFactor.Custom
4051
p373.Size = Vector3.new(4.60001373, 0.200000003, 0.200000003)
4052
p373.BottomSurface = Enum.SurfaceType.Smooth
4053
p373.TopSurface = Enum.SurfaceType.Smooth
4054
p374 = Instance.new("Part", m)
4055
p374.BrickColor = BrickColor.new("Sand red")
4056
p374.Material = Enum.Material.Concrete
4057
p374.CFrame = CFrame.new(12.0791626, 0.930488825, 13.1986084, 0.706689477, 0.00285581616, -0.707513928, -0.000319605693, 0.999992371, 0.00371700851, 0.707519114, -0.00240067206, 0.706686139)
4058
p374.Anchored = true
4059
p374.FormFactor = Enum.FormFactor.Custom
4060
p374.Size = Vector3.new(0.600000024, 1.79999804, 1.99999952)
4061
p374.BottomSurface = Enum.SurfaceType.Smooth
4062
p374.TopSurface = Enum.SurfaceType.Smooth
4063
p375 = Instance.new("Part", m)
4064
p375.BrickColor = BrickColor.new("Dark stone grey")
4065
p375.Material = Enum.Material.Pebble
4066
p375.CFrame = CFrame.new(14.1765442, 14.1796007, 35.7058716, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4067
p375.Anchored = true
4068
p375.FormFactor = Enum.FormFactor.Custom
4069
p375.Size = Vector3.new(42.8699951, 0.599997938, 3.19999981)
4070
p375.BottomSurface = Enum.SurfaceType.Smooth
4071
p375.TopSurface = Enum.SurfaceType.Smooth
4072
p376 = Instance.new("Part", m)
4073
p376.BrickColor = BrickColor.new("Brick yellow")
4074
p376.Material = Enum.Material.WoodPlanks
4075
p376.CFrame = CFrame.new(10.2368469, 0.189979911, 35.3371582, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4076
p376.Anchored = true
4077
p376.FormFactor = Enum.FormFactor.Custom
4078
p376.Size = Vector3.new(42.0699921, 0.200000003, 5.79999733)
4079
p376.BottomSurface = Enum.SurfaceType.Smooth
4080
p376.TopSurface = Enum.SurfaceType.Smooth
4081
p377 = Instance.new("Part", m)
4082
p377.BrickColor = BrickColor.new("Dark stone grey")
4083
p377.Material = Enum.Material.DiamondPlate
4084
p377.CFrame = CFrame.new(-22.3536682, 3.63321877, 35.8449097, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4085
p377.Anchored = true
4086
p377.FormFactor = Enum.FormFactor.Custom
4087
p377.Size = Vector3.new(4.60001373, 0.200000003, 0.200000003)
4088
p377.BottomSurface = Enum.SurfaceType.Smooth
4089
p377.TopSurface = Enum.SurfaceType.Smooth
4090
p378 = Instance.new("Part", m)
4091
p378.BrickColor = BrickColor.new("Sand red")
4092
p378.Material = Enum.Material.Concrete
4093
p378.CFrame = CFrame.new(13.9388123, 0.979927301, 35.8723755, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4094
p378.Anchored = true
4095
p378.FormFactor = Enum.FormFactor.Custom
4096
p378.Size = Vector3.new(2.99999022, 1.79999804, 2.79999971)
4097
p378.BottomSurface = Enum.SurfaceType.Smooth
4098
p378.TopSurface = Enum.SurfaceType.Smooth
4099
p379 = Instance.new("Part", m)
4100
p379.BrickColor = BrickColor.new("Brick yellow")
4101
p379.Material = Enum.Material.Concrete
4102
p379.CFrame = CFrame.new(-7.2204895, 14.6339769, 32.8923035, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4103
p379.Anchored = true
4104
p379.FormFactor = Enum.FormFactor.Custom
4105
p379.Size = Vector3.new(47.6700096, 0.200000003, 29.200016)
4106
p379.BottomSurface = Enum.SurfaceType.Smooth
4107
p379.TopSurface = Enum.SurfaceType.Smooth
4108
p380 = Instance.new("Seat", m)
4109
p380.BrickColor = BrickColor.new("Sand red")
4110
p380.Transparency = 1
4111
p380.CFrame = CFrame.new(-6.77450562, 1.98368204, 12.4279785, -0.000582925277, 0.00285565224, -0.999992788, 0.0024022474, 0.999992371, 0.00285414211, 0.999994338, -0.00240059383, -0.000588951225)
4112
p380.Anchored = true
4113
p380.FormFactor = Enum.FormFactor.Custom
4114
p380.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
4115
p380.FrontSurface = Enum.SurfaceType.Hinge
4116
p381 = Instance.new("Seat", m)
4117
p381.BrickColor = BrickColor.new("Sand red")
4118
p381.Transparency = 1
4119
p381.CFrame = CFrame.new(-19.774353, 2.02077627, 12.4203491, -0.000582925277, 0.00285565224, -0.999992788, 0.0024022474, 0.999992371, 0.00285414211, 0.999994338, -0.00240059383, -0.000588951225)
4120
p381.Anchored = true
4121
p381.FormFactor = Enum.FormFactor.Custom
4122
p381.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
4123
p381.FrontSurface = Enum.SurfaceType.Hinge
4124
p382 = Instance.new("Seat", m)
4125
p382.BrickColor = BrickColor.new("Sand red")
4126
p382.Transparency = 1
4127
p382.CFrame = CFrame.new(-13.1743774, 2.00179434, 12.354248, 0.000582925277, 0.00285565224, 0.999992788, -0.0024022474, 0.999992371, -0.00285414211, -0.999994338, -0.00240059383, 0.000588951225)
4128
p382.Anchored = true
4129
p382.FormFactor = Enum.FormFactor.Custom
4130
p382.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
4131
p382.FrontSurface = Enum.SurfaceType.Hinge
4132
p383 = Instance.new("Part", m)
4133
p383.BrickColor = BrickColor.new("Brick yellow")
4134
p383.Material = Enum.Material.WoodPlanks
4135
p383.CFrame = CFrame.new(-8.46124268, 0.235893577, 32.2262268, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4136
p383.Anchored = true
4137
p383.FormFactor = Enum.FormFactor.Custom
4138
p383.Size = Vector3.new(47.8700218, 0.200000003, 31.6000099)
4139
p383.BottomSurface = Enum.SurfaceType.Smooth
4140
p383.TopSurface = Enum.SurfaceType.Smooth
4141
p384 = Instance.new("Part", m)
4142
p384.BrickColor = BrickColor.new("Dark stone grey")
4143
p384.Material = Enum.Material.Pebble
4144
p384.CFrame = CFrame.new(10.2986145, 12.9324236, 11.4180298, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
4145
p384.Anchored = true
4146
p384.FormFactor = Enum.FormFactor.Custom
4147
p384.Size = Vector3.new(11.6699915, 1.79999804, 2.79999971)
4148
p384.BottomSurface = Enum.SurfaceType.Smooth
4149
p384.TopSurface = Enum.SurfaceType.Smooth
4150
p385 = Instance.new("Part", m)
4151
p385.BrickColor = BrickColor.new("Dark stone grey")
4152
p385.Material = Enum.Material.Pebble
4153
p385.CFrame = CFrame.new(13.973053, 12.9804735, 35.8086548, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4154
p385.Anchored = true
4155
p385.FormFactor = Enum.FormFactor.Custom
4156
p385.Size = Vector3.new(42.670002, 1.79999804, 2.79999971)
4157
p385.BottomSurface = Enum.SurfaceType.Smooth
4158
p385.TopSurface = Enum.SurfaceType.Smooth
4159
p386 = Instance.new("Part", m)
4160
p386.BrickColor = BrickColor.new("Dusty Rose")
4161
p386.Material = Enum.Material.Brick
4162
p386.CFrame = CFrame.new(13.9474792, 6.10491371, 45.8598938, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4163
p386.Anchored = true
4164
p386.FormFactor = Enum.FormFactor.Custom
4165
p386.Size = Vector3.new(17.399992, 11.9999962, 1.59998918)
4166
p386.BottomSurface = Enum.SurfaceType.Smooth
4167
p386.TopSurface = Enum.SurfaceType.Smooth
4168
p387 = Instance.new("Part", m)
4169
p387.BrickColor = BrickColor.new("Dusty Rose")
4170
p387.Material = Enum.Material.SmoothPlastic
4171
p387.CFrame = CFrame.new(4.46984863, 6.03962135, 7.75482178, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
4172
p387.Anchored = true
4173
p387.FormFactor = Enum.FormFactor.Custom
4174
p387.Size = Vector3.new(0.200000003, 6.40000105, 0.399989128)
4175
p387.BottomSurface = Enum.SurfaceType.Smooth
4176
p387.TopSurface = Enum.SurfaceType.Smooth
4177
p388 = Instance.new("Part", m)
4178
p388.BrickColor = BrickColor.new("Dark stone grey")
4179
p388.Material = Enum.Material.DiamondPlate
4180
p388.CFrame = CFrame.new(-21.7542725, 3.43152809, 35.8457031, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4181
p388.Anchored = true
4182
p388.FormFactor = Enum.FormFactor.Custom
4183
p388.Size = Vector3.new(4.60001373, 0.200000003, 1.4000001)
4184
p388.BottomSurface = Enum.SurfaceType.Smooth
4185
p388.TopSurface = Enum.SurfaceType.Smooth
4186
p389 = Instance.new("Part", m)
4187
p389.BrickColor = BrickColor.new("Dark stone grey")
4188
p389.Material = Enum.Material.DiamondPlate
4189
p389.CFrame = CFrame.new(-22.3468323, 6.0332737, 35.8391724, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4190
p389.Anchored = true
4191
p389.FormFactor = Enum.FormFactor.Custom
4192
p389.Size = Vector3.new(4.60001373, 0.200000003, 0.200000003)
4193
p389.BottomSurface = Enum.SurfaceType.Smooth
4194
p389.TopSurface = Enum.SurfaceType.Smooth
4195
p390 = Instance.new("Seat", m)
4196
p390.BrickColor = BrickColor.new("Sand red")
4197
p390.Transparency = 1
4198
p390.CFrame = CFrame.new(9.17443848, 1.98542154, 31.1972961, -0.999992847, 0.00285565224, 0.000582820969, 0.00285412627, 0.999992371, -0.00240224763, -0.000589011179, -0.00240059383, -0.999994397)
4199
p390.Anchored = true
4200
p390.FormFactor = Enum.FormFactor.Custom
4201
p390.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
4202
p390.FrontSurface = Enum.SurfaceType.Hinge
4203
p391 = Instance.new("Seat", m)
4204
p391.BrickColor = BrickColor.new("Sand red")
4205
p391.Transparency = 1
4206
p391.CFrame = CFrame.new(9.2406311, 2.00110769, 37.7972412, 0.999992847, 0.00285565224, -0.000582820969, -0.00285412627, 0.999992371, 0.00240224763, 0.000589011179, -0.00240059383, 0.999994397)
4207
p391.Anchored = true
4208
p391.FormFactor = Enum.FormFactor.Custom
4209
p391.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
4210
p391.FrontSurface = Enum.SurfaceType.Hinge
4211
p392 = Instance.new("Part", m)
4212
p392.BrickColor = BrickColor.new("Dusty Rose")
4213
p392.Material = Enum.Material.Fabric
4214
p392.CFrame = CFrame.new(-0.760528564, 0.362602532, 31.6954041, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
4215
p392.Anchored = true
4216
p392.FormFactor = Enum.FormFactor.Custom
4217
p392.Size = Vector3.new(13.3999901, 0.200000003, 46.0000038)
4218
p392.BottomSurface = Enum.SurfaceType.Smooth
4219
p392.TopSurface = Enum.SurfaceType.Smooth
4220
p393 = Instance.new("Part", m)
4221
p393.BrickColor = BrickColor.new("Dusty Rose")
4222
p393.Material = Enum.Material.Brick
4223
p393.CFrame = CFrame.new(-2.79830933, 8.52252769, 33.3746033, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4224
p393.Anchored = true
4225
p393.FormFactor = Enum.FormFactor.Custom
4226
p393.Size = Vector3.new(2.59999228, 12.7999992, 2.47998929)
4227
p393.BottomSurface = Enum.SurfaceType.Smooth
4228
p393.TopSurface = Enum.SurfaceType.Smooth
4229
p394 = Instance.new("Part", m)
4230
p394.BrickColor = BrickColor.new("Dusty Rose")
4231
p394.Material = Enum.Material.SmoothPlastic
4232
p394.CFrame = CFrame.new(11.8674316, 1.03058648, 12.986145, 0.706689656, -0.70751375, -0.00285567157, -0.000319581712, 0.00371683156, -0.999992311, 0.707518995, 0.706686258, 0.00240052212)
4233
p394.Anchored = true
4234
p394.FormFactor = Enum.FormFactor.Custom
4235
p394.Size = Vector3.new(0.400000036, 0.800000012, 1.99998808)
4236
p394.BottomSurface = Enum.SurfaceType.Smooth
4237
p394.TopSurface = Enum.SurfaceType.Smooth
4238
p395 = Instance.new("Part", m)
4239
p395.BrickColor = BrickColor.new("Dark stone grey")
4240
p395.Material = Enum.Material.DiamondPlate
4241
p395.CFrame = CFrame.new(-22.3502502, 4.83327675, 35.84198, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4242
p395.Anchored = true
4243
p395.FormFactor = Enum.FormFactor.Custom
4244
p395.Size = Vector3.new(4.60001373, 0.200000003, 0.200000003)
4245
p395.BottomSurface = Enum.SurfaceType.Smooth
4246
p395.TopSurface = Enum.SurfaceType.Smooth
4247
p396 = Instance.new("Part", m)
4248
p396.BrickColor = BrickColor.new("Dusty Rose")
4249
p396.Material = Enum.Material.Brick
4250
p396.CFrame = CFrame.new(13.3869934, 6.02999306, 14.4810791, 0.706689477, 0.00285581616, -0.707513928, -0.000319605693, 0.999992371, 0.00371700851, 0.707519114, -0.00240067206, 0.706686139)
4251
p396.Anchored = true
4252
p396.FormFactor = Enum.FormFactor.Custom
4253
p396.Size = Vector3.new(2.65999222, 12, 2.39998937)
4254
p396.BottomSurface = Enum.SurfaceType.Smooth
4255
p396.TopSurface = Enum.SurfaceType.Smooth
4256
p397 = Instance.new("Part", m)
4257
p397.BrickColor = BrickColor.new("Sand red")
4258
p397.Material = Enum.Material.Concrete
4259
p397.CFrame = CFrame.new(14.0153198, 27.7796001, 35.7730713, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4260
p397.Anchored = true
4261
p397.FormFactor = Enum.FormFactor.Custom
4262
p397.Size = Vector3.new(42.6699944, 26.6000023, 2.79999971)
4263
p397.BottomSurface = Enum.SurfaceType.Smooth
4264
p397.TopSurface = Enum.SurfaceType.Smooth
4265
p398 = Instance.new("Part", m)
4266
p398.BrickColor = BrickColor.new("Dusty Rose")
4267
p398.Material = Enum.Material.Brick
4268
p398.CFrame = CFrame.new(13.9649658, 6.03168678, 15.8602905, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4269
p398.Anchored = true
4270
p398.FormFactor = Enum.FormFactor.Custom
4271
p398.Size = Vector3.new(2.59999228, 12, 2.39998937)
4272
p398.BottomSurface = Enum.SurfaceType.Smooth
4273
p398.TopSurface = Enum.SurfaceType.Smooth
4274
p399 = Instance.new("Part", m)
4275
p399.BrickColor = BrickColor.new("Dusty Rose")
4276
p399.Material = Enum.Material.SmoothPlastic
4277
p399.CFrame = CFrame.new(13.9676514, 9.35797691, 26.4523315, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4278
p399.Anchored = true
4279
p399.FormFactor = Enum.FormFactor.Custom
4280
p399.Size = Vector3.new(18.5999889, 0.200000003, 0.399989128)
4281
p399.BottomSurface = Enum.SurfaceType.Smooth
4282
p399.TopSurface = Enum.SurfaceType.Smooth
4283
p400 = Instance.new("Part", m)
4284
p400.BrickColor = BrickColor.new("Dark stone grey")
4285
p400.Material = Enum.Material.Pebble
4286
p400.CFrame = CFrame.new(14.0558777, 41.9802856, 35.7390137, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4287
p400.Anchored = true
4288
p400.FormFactor = Enum.FormFactor.Custom
4289
p400.Size = Vector3.new(42.670002, 1.79999804, 2.79999971)
4290
p400.BottomSurface = Enum.SurfaceType.Smooth
4291
p400.TopSurface = Enum.SurfaceType.Smooth
4292
p401 = Instance.new("Part", m)
4293
p401.BrickColor = BrickColor.new("Reddish brown")
4294
p401.Material = Enum.Material.Concrete
4295
p401.CFrame = CFrame.new(-21.749176, 4.72577858, 33.442627, 0.000582970097, 0.00285563874, 0.999992609, -0.00240225135, 0.999992013, -0.00285413326, -0.999994159, -0.00240058731, 0.000589070609)
4296
p401.Anchored = true
4297
p401.FormFactor = Enum.FormFactor.Custom
4298
p401.Size = Vector3.new(0.200000003, 2.80000019, 1.4000001)
4299
p401.BottomSurface = Enum.SurfaceType.Smooth
4300
p401.TopSurface = Enum.SurfaceType.Smooth
4301
p402 = Instance.new("Part", m)
4302
p402.BrickColor = BrickColor.new("Medium stone grey")
4303
p402.Material = Enum.Material.DiamondPlate
4304
p402.CFrame = CFrame.new(-21.8557129, 4.04500771, 41.3442383, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4305
p402.Anchored = true
4306
p402.FormFactor = Enum.FormFactor.Custom
4307
p402.Size = Vector3.new(2.40001392, 1.40000081, 1.20000005)
4308
p402.BottomSurface = Enum.SurfaceType.Smooth
4309
p402.TopSurface = Enum.SurfaceType.Smooth
4310
p403 = Instance.new("Part", m)
4311
p403.BrickColor = BrickColor.new("Medium stone grey")
4312
p403.Material = Enum.Material.Concrete
4313
p403.CFrame = CFrame.new(10.2640381, 8.73155785, 11.340332, 0.706689656, 0.00285571627, -0.70751375, -0.000319607789, 0.999992311, 0.00371686602, 0.707519054, -0.00240055937, 0.706686199)
4314
p403.Anchored = true
4315
p403.FormFactor = Enum.FormFactor.Custom
4316
p403.Size = Vector3.new(4.99999046, 2.99999928, 1.19998896)
4317
p403.BottomSurface = Enum.SurfaceType.Smooth
4318
p403.TopSurface = Enum.SurfaceType.Smooth
4319
p404 = Instance.new("Part", m)
4320
p404.BrickColor = BrickColor.new("Sand red")
4321
p404.Material = Enum.Material.Concrete
4322
p404.CFrame = CFrame.new(-17.9576111, 1.15897393, 30.5484314, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4323
p404.Anchored = true
4324
p404.FormFactor = Enum.FormFactor.Custom
4325
p404.Size = Vector3.new(2.26999044, 1.599998, 9.39999771)
4326
p404.BottomSurface = Enum.SurfaceType.Smooth
4327
p404.TopSurface = Enum.SurfaceType.Smooth
4328
p405 = Instance.new("Part", m)
4329
p405.BrickColor = BrickColor.new("Dusty Rose")
4330
p405.Material = Enum.Material.Brick
4331
p405.CFrame = CFrame.new(7.11993408, 6.03304482, 8.27191162, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
4332
p405.Anchored = true
4333
p405.FormFactor = Enum.FormFactor.Custom
4334
p405.Size = Vector3.new(2.60999203, 12, 2.39998937)
4335
p405.BottomSurface = Enum.SurfaceType.Smooth
4336
p405.TopSurface = Enum.SurfaceType.Smooth
4337
p406 = Instance.new("Part", m)
4338
p406.BrickColor = BrickColor.new("Brown")
4339
p406.Material = Enum.Material.Wood
4340
p406.CFrame = CFrame.new(10.2252808, 3.33252907, 11.3950806, 0.706689596, 0.00285583455, -0.70751375, -0.000319865416, 0.999992073, 0.00371677568, 0.707519054, -0.0024003163, 0.706686199)
4341
p406.Anchored = true
4342
p406.CanCollide = false
4343
p406.FormFactor = Enum.FormFactor.Custom
4344
p406.Size = Vector3.new(5, 6.59999466, 0.400000006)
4345
p406.BottomSurface = Enum.SurfaceType.Smooth
4346
p406.TopSurface = Enum.SurfaceType.Smooth
4347
p407 = Instance.new("Part", m)
4348
p407.BrickColor = BrickColor.new("Dusty Rose")
4349
p407.Material = Enum.Material.SmoothPlastic
4350
p407.CFrame = CFrame.new(10.1169434, 6.73131752, 11.2035522, 0.706689656, -0.70751375, -0.00285567157, -0.000319581712, 0.00371683156, -0.999992311, 0.707518995, 0.706686258, 0.00240052212)
4351
p407.Anchored = true
4352
p407.FormFactor = Enum.FormFactor.Custom
4353
p407.Size = Vector3.new(4.99999905, 0.800000012, 0.200000003)
4354
p407.BottomSurface = Enum.SurfaceType.Smooth
4355
p407.TopSurface = Enum.SurfaceType.Smooth
4356
p408 = Instance.new("Part", m)
4357
p408.BrickColor = BrickColor.new("Dark stone grey")
4358
p408.Material = Enum.Material.Pebble
4359
p408.CFrame = CFrame.new(10.4435425, 14.1316118, 11.2738037, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
4360
p408.Anchored = true
4361
p408.FormFactor = Enum.FormFactor.Custom
4362
p408.Size = Vector3.new(12.0699911, 0.599997938, 3.19999981)
4363
p408.BottomSurface = Enum.SurfaceType.Smooth
4364
p408.TopSurface = Enum.SurfaceType.Smooth
4365
p409 = Instance.new("Part", m)
4366
p409.BrickColor = BrickColor.new("Dusty Rose")
4367
p409.Material = Enum.Material.Brick
4368
p409.CFrame = CFrame.new(12.2313232, 4.73038673, 13.3309937, 0.706689656, 0.00285571627, -0.70751375, -0.000319607789, 0.999992311, 0.00371686602, 0.707519054, -0.00240055937, 0.706686199)
4369
p409.Anchored = true
4370
p409.FormFactor = Enum.FormFactor.Custom
4371
p409.Size = Vector3.new(0.59999007, 9.3999958, 1.59998918)
4372
p409.BottomSurface = Enum.SurfaceType.Smooth
4373
p409.TopSurface = Enum.SurfaceType.Smooth
4374
p410 = Instance.new("Part", m)
4375
p410.BrickColor = BrickColor.new("Dark stone grey")
4376
p410.Material = Enum.Material.DiamondPlate
4377
p410.CFrame = CFrame.new(-22.351593, 4.83855629, 38.0419922, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4378
p410.Anchored = true
4379
p410.FormFactor = Enum.FormFactor.Custom
4380
p410.Size = Vector3.new(0.200000003, 2.60000038, 0.200000003)
4381
p410.BottomSurface = Enum.SurfaceType.Smooth
4382
p410.TopSurface = Enum.SurfaceType.Smooth
4383
p411 = Instance.new("Part", m)
4384
p411.BrickColor = BrickColor.new("Dark stone grey")
4385
p411.Material = Enum.Material.DiamondPlate
4386
p411.CFrame = CFrame.new(-21.1549988, 4.44446754, 41.9436646, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4387
p411.Anchored = true
4388
p411.FormFactor = Enum.FormFactor.Custom
4389
p411.Size = Vector3.new(0.800013602, 0.200000003, 0.200000003)
4390
p411.BottomSurface = Enum.SurfaceType.Smooth
4391
p411.TopSurface = Enum.SurfaceType.Smooth
4392
p412 = Instance.new("Part", m)
4393
p412.BrickColor = BrickColor.new("Dusty Rose")
4394
p412.Material = Enum.Material.Brick
4395
p412.CFrame = CFrame.new(13.9725342, 10.7574825, 25.848938, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4396
p412.Anchored = true
4397
p412.FormFactor = Enum.FormFactor.Custom
4398
p412.Size = Vector3.new(17.399992, 2.59999824, 1.59998918)
4399
p412.BottomSurface = Enum.SurfaceType.Smooth
4400
p412.TopSurface = Enum.SurfaceType.Smooth
4401
p413 = Instance.new("Part", m)
4402
p413.BrickColor = BrickColor.new("Sand red")
4403
p413.Material = Enum.Material.Concrete
4404
p413.CFrame = CFrame.new(-5.99685669, 27.887495, 56.9961853, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4405
p413.Anchored = true
4406
p413.FormFactor = Enum.FormFactor.Custom
4407
p413.Size = Vector3.new(0.200000003, 26.6000023, 37.2000084)
4408
p413.BottomSurface = Enum.SurfaceType.Smooth
4409
p413.TopSurface = Enum.SurfaceType.Smooth
4410
p414 = Instance.new("Part", m)
4411
p414.BrickColor = BrickColor.new("Medium stone grey")
4412
p414.Material = Enum.Material.Concrete
4413
p414.CFrame = CFrame.new(-10.1640625, 0.49607113, 38.4594116, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
4414
p414.Anchored = true
4415
p414.FormFactor = Enum.FormFactor.Custom
4416
p414.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
4417
p414.BottomSurface = Enum.SurfaceType.Smooth
4418
p414.TopSurface = Enum.SurfaceType.Smooth
4419
b127 = Instance.new("CylinderMesh", p414)
4420
b127.Name = "Mesh"
4421
p415 = Instance.new("Part", m)
4422
p415.BrickColor = BrickColor.new("Grime")
4423
p415.Material = Enum.Material.Concrete
4424
p415.CFrame = CFrame.new(-13.2720337, 3.46993446, 40.680603, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
4425
p415.Anchored = true
4426
p415.FormFactor = Enum.FormFactor.Custom
4427
p415.Size = Vector3.new(2.26999044, 0.200000003, 20.4000092)
4428
p415.BottomSurface = Enum.SurfaceType.Smooth
4429
p415.TopSurface = Enum.SurfaceType.Smooth
4430
p416 = Instance.new("Part", m)
4431
p416.BrickColor = BrickColor.new("Dark stone grey")
4432
p416.Material = Enum.Material.Concrete
4433
p416.CFrame = CFrame.new(8.61730957, 43.541153, 12.9698486, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
4434
p416.Anchored = true
4435
p416.FormFactor = Enum.FormFactor.Custom
4436
p416.Size = Vector3.new(12.2699909, 0.200000003, 8.79999924)
4437
p416.BottomSurface = Enum.SurfaceType.Smooth
4438
p416.TopSurface = Enum.SurfaceType.Smooth
4439
p417 = Instance.new("Part", m)
4440
p417.BrickColor = BrickColor.new("Reddish brown")
4441
p417.Material = Enum.Material.Wood
4442
p417.CFrame = CFrame.new(10.2181702, 3.3325901, 11.4020996, 0.706689596, 0.00285583455, -0.70751375, -0.000319865416, 0.999992073, 0.00371677568, 0.707519054, -0.0024003163, 0.706686199)
4443
p417.Anchored = true
4444
p417.CanCollide = false
4445
p417.FormFactor = Enum.FormFactor.Custom
4446
p417.Size = Vector3.new(4.20000076, 6.19999456, 0.459999949)
4447
p417.BottomSurface = Enum.SurfaceType.Smooth
4448
p417.TopSurface = Enum.SurfaceType.Smooth
4449
p418 = Instance.new("Part", m)
4450
p418.BrickColor = BrickColor.new("Dusty Rose")
4451
p418.Material = Enum.Material.SmoothPlastic
4452
p418.CFrame = CFrame.new(13.9549561, 6.57662392, 34.4588623, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4453
p418.Anchored = true
4454
p418.FormFactor = Enum.FormFactor.Custom
4455
p418.Size = Vector3.new(0.200000003, 7.80000591, 0.399989128)
4456
p418.BottomSurface = Enum.SurfaceType.Smooth
4457
p418.TopSurface = Enum.SurfaceType.Smooth
4458
p419 = Instance.new("Part", m)
4459
p419.BrickColor = BrickColor.new("Grime")
4460
p419.Material = Enum.Material.Concrete
4461
p419.CFrame = CFrame.new(-13.2510986, 3.44553566, 30.5456543, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4462
p419.Anchored = true
4463
p419.FormFactor = Enum.FormFactor.Custom
4464
p419.Size = Vector3.new(2.26999044, 0.200000003, 2.39999795)
4465
p419.BottomSurface = Enum.SurfaceType.Smooth
4466
p419.TopSurface = Enum.SurfaceType.Smooth
4467
b128 = Instance.new("CylinderMesh", p419)
4468
b128.Name = "Mesh"
4469
p420 = Instance.new("Part", m)
4470
p420.BrickColor = BrickColor.new("Dark stone grey")
4471
p420.Material = Enum.Material.DiamondPlate
4472
p420.CFrame = CFrame.new(-21.7489624, 4.82627296, 33.6424866, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4473
p420.Anchored = true
4474
p420.FormFactor = Enum.FormFactor.Custom
4475
p420.Size = Vector3.new(0.200000003, 2.60000038, 1.4000001)
4476
p420.BottomSurface = Enum.SurfaceType.Smooth
4477
p420.TopSurface = Enum.SurfaceType.Smooth
4478
p421 = Instance.new("Part", m)
4479
p421.BrickColor = BrickColor.new("Dusty Rose")
4480
p421.Material = Enum.Material.Brick
4481
p421.CFrame = CFrame.new(-23.6441345, 6.17826271, 31.9378967, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4482
p421.Anchored = true
4483
p421.FormFactor = Enum.FormFactor.Custom
4484
p421.Size = Vector3.new(45.9999924, 11.9999962, 1.59998918)
4485
p421.BottomSurface = Enum.SurfaceType.Smooth
4486
p421.TopSurface = Enum.SurfaceType.Smooth
4487
p422 = Instance.new("Part", m)
4488
p422.BrickColor = BrickColor.new("Dusty Rose")
4489
p422.Material = Enum.Material.SmoothPlastic
4490
p422.CFrame = CFrame.new(0.869781494, 6.04989052, 7.75268555, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
4491
p422.Anchored = true
4492
p422.FormFactor = Enum.FormFactor.Custom
4493
p422.Size = Vector3.new(0.200000003, 6.40000105, 0.399989128)
4494
p422.BottomSurface = Enum.SurfaceType.Smooth
4495
p422.TopSurface = Enum.SurfaceType.Smooth
4496
p423 = Instance.new("Part", m)
4497
p423.BrickColor = BrickColor.new("Medium stone grey")
4498
p423.Material = Enum.Material.Brick
4499
p423.CFrame = CFrame.new(10.5263367, 43.1314697, 11.2041626, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
4500
p423.Anchored = true
4501
p423.FormFactor = Enum.FormFactor.Custom
4502
p423.Size = Vector3.new(12.0699911, 0.599997938, 3.19999981)
4503
p423.BottomSurface = Enum.SurfaceType.Smooth
4504
p423.TopSurface = Enum.SurfaceType.Smooth
4505
p424 = Instance.new("Part", m)
4506
p424.BrickColor = BrickColor.new("Dark stone grey")
4507
p424.Material = Enum.Material.DiamondPlate
4508
p424.CFrame = CFrame.new(-22.3514404, 4.43322182, 35.8430176, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4509
p424.Anchored = true
4510
p424.FormFactor = Enum.FormFactor.Custom
4511
p424.Size = Vector3.new(4.60001373, 0.200000003, 0.200000003)
4512
p424.BottomSurface = Enum.SurfaceType.Smooth
4513
p424.TopSurface = Enum.SurfaceType.Smooth
4514
p425 = Instance.new("Seat", m)
4515
p425.BrickColor = BrickColor.new("Sand red")
4516
p425.Transparency = 1
4517
p425.CFrame = CFrame.new(-10.1565552, 2.28652334, 34.4550781, 0.000582925277, 0.00285565224, 0.999992847, -0.0024022474, 0.999992371, -0.00285412627, -0.999994338, -0.00240059383, 0.000589011179)
4518
p425.Anchored = true
4519
p425.FormFactor = Enum.FormFactor.Custom
4520
p425.Size = Vector3.new(1.19999933, 0.200000003, 2)
4521
p425.FrontSurface = Enum.SurfaceType.Hinge
4522
p426 = Instance.new("Seat", m)
4523
p426.BrickColor = BrickColor.new("Sand red")
4524
p426.Transparency = 1
4525
p426.CFrame = CFrame.new(-10.1589355, 2.29612112, 38.4550781, 0.000582925277, 0.00285565224, 0.999992847, -0.0024022474, 0.999992371, -0.00285412627, -0.999994338, -0.00240059383, 0.000589011179)
4526
p426.Anchored = true
4527
p426.FormFactor = Enum.FormFactor.Custom
4528
p426.Size = Vector3.new(1.19999933, 0.200000003, 2)
4529
p426.FrontSurface = Enum.SurfaceType.Hinge
4530
p427 = Instance.new("Part", m)
4531
p427.BrickColor = BrickColor.new("Dusty Rose")
4532
p427.Material = Enum.Material.Brick
4533
p427.CFrame = CFrame.new(10.2591553, 7.03139687, 11.3444214, 0.706689656, 0.00285571627, -0.70751375, -0.000319607789, 0.999992311, 0.00371686602, 0.707519054, -0.00240055937, 0.706686199)
4534
p427.Anchored = true
4535
p427.FormFactor = Enum.FormFactor.Custom
4536
p427.Size = Vector3.new(4.99999046, 0.400000006, 1.59998918)
4537
p427.BottomSurface = Enum.SurfaceType.Smooth
4538
p427.TopSurface = Enum.SurfaceType.Smooth
4539
p428 = Instance.new("Part", m)
4540
p428.BrickColor = BrickColor.new("Brick yellow")
4541
p428.Material = Enum.Material.Concrete
4542
p428.CFrame = CFrame.new(-17.8533936, 2.65867019, 30.5448914, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4543
p428.Anchored = true
4544
p428.FormFactor = Enum.FormFactor.Custom
4545
p428.Size = Vector3.new(1.86999035, 1.39999795, 9.1999979)
4546
p428.BottomSurface = Enum.SurfaceType.Smooth
4547
p428.TopSurface = Enum.SurfaceType.Smooth
4548
p429 = Instance.new("Part", m)
4549
p429.BrickColor = BrickColor.new("Brick yellow")
4550
p429.Material = Enum.Material.Concrete
4551
p429.CFrame = CFrame.new(-13.2745667, 2.56968093, 40.5827942, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
4552
p429.Anchored = true
4553
p429.FormFactor = Enum.FormFactor.Custom
4554
p429.Size = Vector3.new(1.86999035, 1.599998, 20.2000084)
4555
p429.BottomSurface = Enum.SurfaceType.Smooth
4556
p429.TopSurface = Enum.SurfaceType.Smooth
4557
p430 = Instance.new("Part", m)
4558
p430.BrickColor = BrickColor.new("Dusty Rose")
4559
p430.Material = Enum.Material.SmoothPlastic
4560
p430.CFrame = CFrame.new(13.9490967, 2.75597548, 25.9682007, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4561
p430.Anchored = true
4562
p430.FormFactor = Enum.FormFactor.Custom
4563
p430.Size = Vector3.new(17.1999912, 0.200000003, 0.399989128)
4564
p430.BottomSurface = Enum.SurfaceType.Smooth
4565
p430.TopSurface = Enum.SurfaceType.Smooth
4566
p431 = Instance.new("Part", m)
4567
p431.BrickColor = BrickColor.new("Dusty Rose")
4568
p431.Material = Enum.Material.SmoothPlastic
4569
p431.CFrame = CFrame.new(13.962738, 5.73526955, 17.2609863, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4570
p431.Anchored = true
4571
p431.FormFactor = Enum.FormFactor.Custom
4572
p431.Size = Vector3.new(0.200000003, 7.40000486, 0.399989128)
4573
p431.BottomSurface = Enum.SurfaceType.Smooth
4574
p431.TopSurface = Enum.SurfaceType.Smooth
4575
p432 = Instance.new("Part", m)
4576
p432.BrickColor = BrickColor.new("Sand red")
4577
p432.Material = Enum.Material.Concrete
4578
p432.CFrame = CFrame.new(10.3467407, 27.7313824, 11.3230591, 0.706689477, 0.00285581616, -0.707513928, -0.000319605693, 0.999992371, 0.00371700851, 0.707519114, -0.00240067206, 0.706686139)
4579
p432.Anchored = true
4580
p432.FormFactor = Enum.FormFactor.Custom
4581
p432.Size = Vector3.new(11.6199875, 26.5999908, 2.79999971)
4582
p432.BottomSurface = Enum.SurfaceType.Smooth
4583
p432.TopSurface = Enum.SurfaceType.Smooth
4584
p433 = Instance.new("Part", m)
4585
p433.BrickColor = BrickColor.new("Dark stone grey")
4586
p433.Material = Enum.Material.Pebble
4587
p433.CFrame = CFrame.new(-23.6243286, 13.0781145, 31.7565002, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4588
p433.Anchored = true
4589
p433.FormFactor = Enum.FormFactor.Custom
4590
p433.Size = Vector3.new(45.2700005, 1.79999804, 2.80001736)
4591
p433.BottomSurface = Enum.SurfaceType.Smooth
4592
p433.TopSurface = Enum.SurfaceType.Smooth
4593
p434 = Instance.new("Part", m)
4594
p434.BrickColor = BrickColor.new("Brick yellow")
4595
p434.Material = Enum.Material.WoodPlanks
4596
p434.CFrame = CFrame.new(7.64456177, 0.145286918, 13.6392822, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
4597
p434.Anchored = true
4598
p434.FormFactor = Enum.FormFactor.Custom
4599
p434.Size = Vector3.new(12.6699905, 0.200000003, 6.79999876)
4600
p434.BottomSurface = Enum.SurfaceType.Smooth
4601
p434.TopSurface = Enum.SurfaceType.Smooth
4602
p435 = Instance.new("Part", m)
4603
p435.BrickColor = BrickColor.new("Brick yellow")
4604
p435.Material = Enum.Material.Concrete
4605
p435.CFrame = CFrame.new(-10.1698303, 1.99614847, 38.4557495, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
4606
p435.Anchored = true
4607
p435.FormFactor = Enum.FormFactor.Custom
4608
p435.Size = Vector3.new(2.1400001, 0.200000003, 2.06000042)
4609
p435.BottomSurface = Enum.SurfaceType.Smooth
4610
p435.TopSurface = Enum.SurfaceType.Smooth
4611
b129 = Instance.new("CylinderMesh", p435)
4612
b129.Name = "Mesh"
4613
p436 = Instance.new("Part", m)
4614
p436.BrickColor = BrickColor.new("Dark stone grey")
4615
p436.Material = Enum.Material.DiamondPlate
4616
p436.CFrame = CFrame.new(-22.3525696, 4.03321266, 35.8439331, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4617
p436.Anchored = true
4618
p436.FormFactor = Enum.FormFactor.Custom
4619
p436.Size = Vector3.new(4.60001373, 0.200000003, 0.200000003)
4620
p436.BottomSurface = Enum.SurfaceType.Smooth
4621
p436.TopSurface = Enum.SurfaceType.Smooth
4622
p437 = Instance.new("Part", m)
4623
p437.BrickColor = BrickColor.new("Sand red")
4624
p437.Material = Enum.Material.Concrete
4625
p437.CFrame = CFrame.new(13.3335571, 0.930229425, 14.4545288, 0.706689477, 0.00285581616, -0.707513928, -0.000319605693, 0.999992371, 0.00371700851, 0.707519114, -0.00240067206, 0.706686139)
4626
p437.Anchored = true
4627
p437.FormFactor = Enum.FormFactor.Custom
4628
p437.Size = Vector3.new(2.94999003, 1.79999804, 2.79999971)
4629
p437.BottomSurface = Enum.SurfaceType.Smooth
4630
p437.TopSurface = Enum.SurfaceType.Smooth
4631
p438 = Instance.new("Part", m)
4632
p438.BrickColor = BrickColor.new("Medium stone grey")
4633
p438.Material = Enum.Material.Concrete
4634
p438.CFrame = CFrame.new(-10.1620483, 1.19509149, 38.4577332, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
4635
p438.Anchored = true
4636
p438.FormFactor = Enum.FormFactor.Custom
4637
p438.Size = Vector3.new(0.400000006, 1.20000076, 0.400000006)
4638
p438.BottomSurface = Enum.SurfaceType.Smooth
4639
p438.TopSurface = Enum.SurfaceType.Smooth
4640
b130 = Instance.new("CylinderMesh", p438)
4641
b130.Name = "Mesh"
4642
p439 = Instance.new("Part", m)
4643
p439.BrickColor = BrickColor.new("Dark stone grey")
4644
p439.Material = Enum.Material.Pebble
4645
p439.CFrame = CFrame.new(-23.8559265, 14.2786608, 31.7185364, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
4646
p439.Anchored = true
4647
p439.FormFactor = Enum.FormFactor.Custom
4648
p439.Size = Vector3.new(3.26999068, 0.599997938, 45.2000122)
4649
p439.BottomSurface = Enum.SurfaceType.Smooth
4650
p439.TopSurface = Enum.SurfaceType.Smooth
4651
p440 = Instance.new("Part", m)
4652
p440.BrickColor = BrickColor.new("Dusty Rose")
4653
p440.Material = Enum.Material.Brick
4654
p440.CFrame = CFrame.new(8.25042725, 4.73241615, 9.41070557, 0.706689656, 0.00285571627, -0.70751375, -0.000319607789, 0.999992311, 0.00371686602, 0.707519054, -0.00240055937, 0.706686199)
4655
p440.Anchored = true
4656
p440.FormFactor = Enum.FormFactor.Custom
4657
p440.Size = Vector3.new(0.59999007, 9.3999958, 1.59998918)
4658
p440.BottomSurface = Enum.SurfaceType.Smooth
4659
p440.TopSurface = Enum.SurfaceType.Smooth
4660
p441 = Instance.new("Part", m)
4661
p441.BrickColor = BrickColor.new("Pastel yellow")
4662
p441.Material = Enum.Material.Fabric
4663
p441.CFrame = CFrame.new(-0.760803223, 0.252601951, 31.6956787, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
4664
p441.Anchored = true
4665
p441.FormFactor = Enum.FormFactor.Custom
4666
p441.Size = Vector3.new(14.5999889, 0.200000003, 46.0000038)
4667
p441.BottomSurface = Enum.SurfaceType.Smooth
4668
p441.TopSurface = Enum.SurfaceType.Smooth
4669
p442 = Instance.new("Part", m)
4670
p442.BrickColor = BrickColor.new("Dusty Rose")
4671
p442.Material = Enum.Material.Concrete
4672
p442.Reflectance = 0.20000000298023
4673
p442.CFrame = CFrame.new(-10.1597595, 1.99611795, 38.4558105, -0.999992847, -0.00285560009, -0.000583045126, 0.00285403873, -0.999992371, 0.00240225228, -0.000589072471, 0.00240054913, 0.999994397)
4674
p442.Anchored = true
4675
p442.FormFactor = Enum.FormFactor.Custom
4676
p442.Size = Vector3.new(2.00001645, 0.399999976, 2)
4677
p442.BottomSurface = Enum.SurfaceType.Smooth
4678
p442.TopSurface = Enum.SurfaceType.Smooth
4679
b131 = Instance.new("CylinderMesh", p442)
4680
b131.Name = "Mesh"
4681
p443 = Instance.new("Part", m)
4682
p443.BrickColor = BrickColor.new("Dark stone grey")
4683
p443.Material = Enum.Material.Pebble
4684
p443.CFrame = CFrame.new(10.3814087, 41.9322205, 11.3484497, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
4685
p443.Anchored = true
4686
p443.FormFactor = Enum.FormFactor.Custom
4687
p443.Size = Vector3.new(11.6699915, 1.79999804, 2.79999971)
4688
p443.BottomSurface = Enum.SurfaceType.Smooth
4689
p443.TopSurface = Enum.SurfaceType.Smooth
4690
p444 = Instance.new("Part", m)
4691
p444.BrickColor = BrickColor.new("Grime")
4692
p444.Material = Enum.Material.Concrete
4693
p444.CFrame = CFrame.new(-17.9510803, 3.45896339, 30.5429382, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4694
p444.Anchored = true
4695
p444.FormFactor = Enum.FormFactor.Custom
4696
p444.Size = Vector3.new(2.26999044, 0.200000003, 9.39999771)
4697
p444.BottomSurface = Enum.SurfaceType.Smooth
4698
p444.TopSurface = Enum.SurfaceType.Smooth
4699
p445 = Instance.new("Part", m)
4700
p445.BrickColor = BrickColor.new("Dark stone grey")
4701
p445.Material = Enum.Material.DiamondPlate
4702
p445.CFrame = CFrame.new(-22.3491211, 5.23325539, 35.8410645, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4703
p445.Anchored = true
4704
p445.FormFactor = Enum.FormFactor.Custom
4705
p445.Size = Vector3.new(4.60001373, 0.200000003, 0.200000003)
4706
p445.BottomSurface = Enum.SurfaceType.Smooth
4707
p445.TopSurface = Enum.SurfaceType.Smooth
4708
p446 = Instance.new("Part", m)
4709
p446.BrickColor = BrickColor.new("Sand red")
4710
p446.Material = Enum.Material.Concrete
4711
p446.CFrame = CFrame.new(8.38095093, 0.932396173, 9.5612793, 0.706689477, 0.00285581616, -0.707513928, -0.000319605693, 0.999992371, 0.00371700851, 0.707519114, -0.00240067206, 0.706686139)
4712
p446.Anchored = true
4713
p446.FormFactor = Enum.FormFactor.Custom
4714
p446.Size = Vector3.new(0.600000024, 1.79999804, 1.99999952)
4715
p446.BottomSurface = Enum.SurfaceType.Smooth
4716
p446.TopSurface = Enum.SurfaceType.Smooth
4717
p447 = Instance.new("Part", m)
4718
p447.BrickColor = BrickColor.new("Medium stone grey")
4719
p447.Material = Enum.Material.SmoothPlastic
4720
p447.Reflectance = 0.20000000298023
4721
p447.Transparency = 0.5
4722
p447.CFrame = CFrame.new(13.9788513, 6.05802345, 26.3601685, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4723
p447.Anchored = true
4724
p447.FormFactor = Enum.FormFactor.Custom
4725
p447.Size = Vector3.new(18.0000229, 6.80000496, 0.200000003)
4726
p447.BottomSurface = Enum.SurfaceType.Smooth
4727
p447.TopSurface = Enum.SurfaceType.Smooth
4728
p448 = Instance.new("Part", m)
4729
p448.BrickColor = BrickColor.new("Dusty Rose")
4730
p448.Material = Enum.Material.SmoothPlastic
4731
p448.CFrame = CFrame.new(8.53106689, 4.03229713, 9.69537354, 0.706689715, -0.70751363, -0.00285569415, -0.000319564599, 0.00371687044, -0.999992192, 0.707518935, 0.706686199, 0.00240054168)
4732
p448.Anchored = true
4733
p448.FormFactor = Enum.FormFactor.Custom
4734
p448.Size = Vector3.new(0.200000003, 0.800000012, 5.19998789)
4735
p448.BottomSurface = Enum.SurfaceType.Smooth
4736
p448.TopSurface = Enum.SurfaceType.Smooth
4737
p449 = Instance.new("Part", m)
4738
p449.BrickColor = BrickColor.new("Sand red")
4739
p449.Material = Enum.Material.Concrete
4740
p449.CFrame = CFrame.new(-13.2576294, 1.14556146, 30.5511475, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4741
p449.Anchored = true
4742
p449.FormFactor = Enum.FormFactor.Custom
4743
p449.Size = Vector3.new(2.26999044, 1.599998, 2.39999795)
4744
p449.BottomSurface = Enum.SurfaceType.Smooth
4745
p449.TopSurface = Enum.SurfaceType.Smooth
4746
b132 = Instance.new("CylinderMesh", p449)
4747
b132.Name = "Mesh"
4748
p450 = Instance.new("Seat", m)
4749
p450.BrickColor = BrickColor.new("Sand red")
4750
p450.Transparency = 1
4751
p450.CFrame = CFrame.new(9.23294067, 2.0300231, 50.7971497, 0.999992847, 0.00285565224, -0.000582820969, -0.00285412627, 0.999992371, 0.00240224763, 0.000589011179, -0.00240059383, 0.999994397)
4752
p450.Anchored = true
4753
p450.FormFactor = Enum.FormFactor.Custom
4754
p450.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
4755
p450.FrontSurface = Enum.SurfaceType.Hinge
4756
p451 = Instance.new("Seat", m)
4757
p451.BrickColor = BrickColor.new("Sand red")
4758
p451.Transparency = 1
4759
p451.CFrame = CFrame.new(9.16677856, 2.01436758, 44.1972046, -0.999992847, 0.00285565224, 0.000582820969, 0.00285412627, 0.999992371, -0.00240224763, -0.000589011179, -0.00240059383, -0.999994397)
4760
p451.Anchored = true
4761
p451.FormFactor = Enum.FormFactor.Custom
4762
p451.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
4763
p451.FrontSurface = Enum.SurfaceType.Hinge
4764
p452 = Instance.new("Part", m)
4765
p452.BrickColor = BrickColor.new("Dark stone grey")
4766
p452.Material = Enum.Material.DiamondPlate
4767
p452.CFrame = CFrame.new(-21.1525879, 5.85123634, 44.7402344, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4768
p452.Anchored = true
4769
p452.FormFactor = Enum.FormFactor.Custom
4770
p452.Size = Vector3.new(0.800013602, 0.200000003, 0.200000003)
4771
p452.BottomSurface = Enum.SurfaceType.Smooth
4772
p452.TopSurface = Enum.SurfaceType.Smooth
4773
p453 = Instance.new("Part", m)
4774
p453.BrickColor = BrickColor.new("Dark stone grey")
4775
p453.Material = Enum.Material.DiamondPlate
4776
p453.CFrame = CFrame.new(-21.1566162, 4.45118141, 44.7435913, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4777
p453.Anchored = true
4778
p453.FormFactor = Enum.FormFactor.Custom
4779
p453.Size = Vector3.new(0.800013602, 0.200000003, 0.200000003)
4780
p453.BottomSurface = Enum.SurfaceType.Smooth
4781
p453.TopSurface = Enum.SurfaceType.Smooth
4782
p454 = Instance.new("Part", m)
4783
p454.BrickColor = BrickColor.new("Dark stone grey")
4784
p454.Material = Enum.Material.DiamondPlate
4785
p454.CFrame = CFrame.new(-21.7527161, 6.25821877, 46.9388428, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4786
p454.Anchored = true
4787
p454.FormFactor = Enum.FormFactor.Custom
4788
p454.Size = Vector3.new(2.80001402, 0.200000003, 1.4000001)
4789
p454.BottomSurface = Enum.SurfaceType.Smooth
4790
p454.TopSurface = Enum.SurfaceType.Smooth
4791
p455 = Instance.new("Part", m)
4792
p455.BrickColor = BrickColor.new("Medium stone grey")
4793
p455.Material = Enum.Material.DiamondPlate
4794
p455.CFrame = CFrame.new(-21.8510437, 6.85848427, 46.9373474, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4795
p455.Anchored = true
4796
p455.FormFactor = Enum.FormFactor.Custom
4797
p455.Size = Vector3.new(2.40001392, 1.40000081, 1.20000005)
4798
p455.BottomSurface = Enum.SurfaceType.Smooth
4799
p455.TopSurface = Enum.SurfaceType.Smooth
4800
p456 = Instance.new("Part", m)
4801
p456.BrickColor = BrickColor.new("Sand red")
4802
p456.Material = Enum.Material.Concrete
4803
p456.CFrame = CFrame.new(-13.278595, 1.169945, 40.6860962, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
4804
p456.Anchored = true
4805
p456.FormFactor = Enum.FormFactor.Custom
4806
p456.Size = Vector3.new(2.26999044, 1.599998, 20.4000092)
4807
p456.BottomSurface = Enum.SurfaceType.Smooth
4808
p456.TopSurface = Enum.SurfaceType.Smooth
4809
p457 = Instance.new("Part", m)
4810
p457.BrickColor = BrickColor.new("Reddish brown")
4811
p457.Material = Enum.Material.Concrete
4812
p457.CFrame = CFrame.new(-21.7578735, 4.76180458, 48.4424438, 0.000582970097, 0.00285563874, 0.999992609, -0.00240225135, 0.999992013, -0.00285413326, -0.999994159, -0.00240058731, 0.000589070609)
4813
p457.Anchored = true
4814
p457.FormFactor = Enum.FormFactor.Custom
4815
p457.Size = Vector3.new(0.200000003, 2.80000019, 1.4000001)
4816
p457.BottomSurface = Enum.SurfaceType.Smooth
4817
p457.TopSurface = Enum.SurfaceType.Smooth
4818
p458 = Instance.new("Part", m)
4819
p458.BrickColor = BrickColor.new("Reddish brown")
4820
p458.Material = Enum.Material.Concrete
4821
p458.CFrame = CFrame.new(-21.7615051, 1.94405496, 40.9492188, 0.000582970097, 0.00285563874, 0.999992609, -0.00240225135, 0.999992013, -0.00285413326, -0.999994159, -0.00240058731, 0.000589070609)
4822
p458.Anchored = true
4823
p458.FormFactor = Enum.FormFactor.Custom
4824
p458.Size = Vector3.new(15.1999969, 2.80000019, 1.4000001)
4825
p458.BottomSurface = Enum.SurfaceType.Smooth
4826
p458.TopSurface = Enum.SurfaceType.Smooth
4827
p459 = Instance.new("Part", m)
4828
p459.BrickColor = BrickColor.new("Dark stone grey")
4829
p459.Material = Enum.Material.Pebble
4830
p459.CFrame = CFrame.new(-4.83505249, 14.2816057, 55.9645081, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4831
p459.Anchored = true
4832
p459.FormFactor = Enum.FormFactor.Custom
4833
p459.Size = Vector3.new(3.26999903, 0.599997938, 41.2000008)
4834
p459.BottomSurface = Enum.SurfaceType.Smooth
4835
p459.TopSurface = Enum.SurfaceType.Smooth
4836
p460 = Instance.new("Part", m)
4837
p460.BrickColor = BrickColor.new("Dusty Rose")
4838
p460.Material = Enum.Material.Brick
4839
p460.CFrame = CFrame.new(-5.85614014, 6.88396645, 55.7467346, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
4840
p460.Anchored = true
4841
p460.FormFactor = Enum.FormFactor.Custom
4842
p460.Size = Vector3.new(37.1999931, 10.5999947, 1.59998918)
4843
p460.BottomSurface = Enum.SurfaceType.Smooth
4844
p460.TopSurface = Enum.SurfaceType.Smooth
4845
p461 = Instance.new("Part", m)
4846
p461.BrickColor = BrickColor.new("Dark stone grey")
4847
p461.Material = Enum.Material.DiamondPlate
4848
p461.CFrame = CFrame.new(-21.7574768, 3.44475746, 41.3457031, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4849
p461.Anchored = true
4850
p461.FormFactor = Enum.FormFactor.Custom
4851
p461.Size = Vector3.new(2.80001402, 0.200000003, 1.4000001)
4852
p461.BottomSurface = Enum.SurfaceType.Smooth
4853
p461.TopSurface = Enum.SurfaceType.Smooth
4854
p462 = Instance.new("Part", m)
4855
p462.BrickColor = BrickColor.new("Medium stone grey")
4856
p462.Material = Enum.Material.DiamondPlate
4857
p462.CFrame = CFrame.new(-21.8534241, 5.45176125, 44.1408691, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4858
p462.Anchored = true
4859
p462.FormFactor = Enum.FormFactor.Custom
4860
p462.Size = Vector3.new(2.40001392, 1.40000081, 1.20000005)
4861
p462.BottomSurface = Enum.SurfaceType.Smooth
4862
p462.TopSurface = Enum.SurfaceType.Smooth
4863
p463 = Instance.new("Part", m)
4864
p463.BrickColor = BrickColor.new("Dark stone grey")
4865
p463.Material = Enum.Material.DiamondPlate
4866
p463.CFrame = CFrame.new(-21.7550659, 4.85149574, 44.142334, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4867
p463.Anchored = true
4868
p463.FormFactor = Enum.FormFactor.Custom
4869
p463.Size = Vector3.new(2.80001402, 0.200000003, 1.4000001)
4870
p463.BottomSurface = Enum.SurfaceType.Smooth
4871
p463.TopSurface = Enum.SurfaceType.Smooth
4872
p464 = Instance.new("Part", m)
4873
p464.BrickColor = BrickColor.new("Sand red")
4874
p464.Material = Enum.Material.Concrete
4875
p464.CFrame = CFrame.new(13.9328308, 1.00482965, 45.8721008, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4876
p464.Anchored = true
4877
p464.FormFactor = Enum.FormFactor.Custom
4878
p464.Size = Vector3.new(17.399992, 1.79999804, 2.00000024)
4879
p464.BottomSurface = Enum.SurfaceType.Smooth
4880
p464.TopSurface = Enum.SurfaceType.Smooth
4881
p465 = Instance.new("Part", m)
4882
p465.BrickColor = BrickColor.new("Dark stone grey")
4883
p465.Material = Enum.Material.DiamondPlate
4884
p465.CFrame = CFrame.new(-21.7510986, 6.2515049, 44.1389771, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4885
p465.Anchored = true
4886
p465.FormFactor = Enum.FormFactor.Custom
4887
p465.Size = Vector3.new(2.80001402, 0.200000003, 1.4000001)
4888
p465.BottomSurface = Enum.SurfaceType.Smooth
4889
p465.TopSurface = Enum.SurfaceType.Smooth
4890
p466 = Instance.new("Part", m)
4891
p466.BrickColor = BrickColor.new("Dark stone grey")
4892
p466.Material = Enum.Material.Pebble
4893
p466.CFrame = CFrame.new(-6.23834229, 13.0850573, 55.7315369, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4894
p466.Anchored = true
4895
p466.FormFactor = Enum.FormFactor.Custom
4896
p466.Size = Vector3.new(2.80000043, 1.79999804, 37.5999985)
4897
p466.BottomSurface = Enum.SurfaceType.Smooth
4898
p466.TopSurface = Enum.SurfaceType.Smooth
4899
p467 = Instance.new("Seat", m)
4900
p467.BrickColor = BrickColor.new("Sand red")
4901
p467.Transparency = 1
4902
p467.CFrame = CFrame.new(-10.161499, 2.3066802, 42.8549805, 0.000582925277, 0.00285565224, 0.999992847, -0.0024022474, 0.999992371, -0.00285412627, -0.999994338, -0.00240059383, 0.000589011179)
4903
p467.Anchored = true
4904
p467.FormFactor = Enum.FormFactor.Custom
4905
p467.Size = Vector3.new(1.19999933, 0.200000003, 2)
4906
p467.FrontSurface = Enum.SurfaceType.Hinge
4907
p468 = Instance.new("Seat", m)
4908
p468.BrickColor = BrickColor.new("Sand red")
4909
p468.Transparency = 1
4910
p468.CFrame = CFrame.new(-10.1638184, 2.3163085, 46.8549805, 0.000582925277, 0.00285565224, 0.999992847, -0.0024022474, 0.999992371, -0.00285412627, -0.999994338, -0.00240059383, 0.000589011179)
4911
p468.Anchored = true
4912
p468.FormFactor = Enum.FormFactor.Custom
4913
p468.Size = Vector3.new(1.19999933, 0.200000003, 2)
4914
p468.FrontSurface = Enum.SurfaceType.Hinge
4915
p469 = Instance.new("Part", m)
4916
p469.BrickColor = BrickColor.new("Dark stone grey")
4917
p469.Material = Enum.Material.DiamondPlate
4918
p469.CFrame = CFrame.new(-21.7590942, 3.45148659, 44.1457214, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4919
p469.Anchored = true
4920
p469.FormFactor = Enum.FormFactor.Custom
4921
p469.Size = Vector3.new(2.80001402, 0.200000003, 1.4000001)
4922
p469.BottomSurface = Enum.SurfaceType.Smooth
4923
p469.TopSurface = Enum.SurfaceType.Smooth
4924
p470 = Instance.new("Part", m)
4925
p470.BrickColor = BrickColor.new("Dark stone grey")
4926
p470.Material = Enum.Material.DiamondPlate
4927
p470.CFrame = CFrame.new(-21.1502686, 7.25792885, 47.5368347, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4928
p470.Anchored = true
4929
p470.FormFactor = Enum.FormFactor.Custom
4930
p470.Size = Vector3.new(0.800013602, 0.200000003, 0.200000003)
4931
p470.BottomSurface = Enum.SurfaceType.Smooth
4932
p470.TopSurface = Enum.SurfaceType.Smooth
4933
p471 = Instance.new("Part", m)
4934
p471.BrickColor = BrickColor.new("Brick yellow")
4935
p471.Material = Enum.Material.Concrete
4936
p471.CFrame = CFrame.new(-21.6638184, 1.14383721, 40.9511719, -0.999991953, 0.00285563571, 0.000582938781, 0.00285412651, 0.999990523, -0.00240224437, -0.000589070958, -0.00240059011, -0.999993324)
4937
p471.Anchored = true
4938
p471.FormFactor = Enum.FormFactor.Custom
4939
p471.Size = Vector3.new(1.60000014, 1.19999981, 15.6000023)
4940
p471.BottomSurface = Enum.SurfaceType.Smooth
4941
p471.TopSurface = Enum.SurfaceType.Smooth
4942
p472 = Instance.new("Part", m)
4943
p472.BrickColor = BrickColor.new("Dusty Rose")
4944
p472.Material = Enum.Material.Brick
4945
p472.CFrame = CFrame.new(13.9416504, 6.12771034, 55.8598633, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4946
p472.Anchored = true
4947
p472.FormFactor = Enum.FormFactor.Custom
4948
p472.Size = Vector3.new(2.59999228, 12.0000038, 2.40000606)
4949
p472.BottomSurface = Enum.SurfaceType.Smooth
4950
p472.TopSurface = Enum.SurfaceType.Smooth
4951
p473 = Instance.new("Part", m)
4952
p473.BrickColor = BrickColor.new("Medium stone grey")
4953
p473.Material = Enum.Material.DiamondPlate
4954
p473.CFrame = CFrame.new(-21.8573608, 4.05172157, 44.1441956, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
4955
p473.Anchored = true
4956
p473.FormFactor = Enum.FormFactor.Custom
4957
p473.Size = Vector3.new(2.40001392, 1.40000081, 1.20000005)
4958
p473.BottomSurface = Enum.SurfaceType.Smooth
4959
p473.TopSurface = Enum.SurfaceType.Smooth
4960
p474 = Instance.new("Part", m)
4961
p474.BrickColor = BrickColor.new("Sand red")
4962
p474.Material = Enum.Material.Concrete
4963
p474.CFrame = CFrame.new(13.927124, 1.02796197, 55.8720703, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
4964
p474.Anchored = true
4965
p474.FormFactor = Enum.FormFactor.Custom
4966
p474.Size = Vector3.new(2.99999022, 1.79999804, 2.79999971)
4967
p474.BottomSurface = Enum.SurfaceType.Smooth
4968
p474.TopSurface = Enum.SurfaceType.Smooth
4969
p475 = Instance.new("Part", m)
4970
p475.BrickColor = BrickColor.new("Sand red")
4971
p475.Material = Enum.Material.Concrete
4972
p475.CFrame = CFrame.new(-5.97268677, 1.0840838, 55.760498, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
4973
p475.Anchored = true
4974
p475.FormFactor = Enum.FormFactor.Custom
4975
p475.Size = Vector3.new(37.400013, 1.79999804, 2.00000024)
4976
p475.BottomSurface = Enum.SurfaceType.Smooth
4977
p475.TopSurface = Enum.SurfaceType.Smooth
4978
m.Parent = game:service("Workspace")
4979
m:MakeJoints()