View difference between Paste ID: JTNphYSS and 2aRXU4nK
SHOW: | | - or go back to the newest paste.
1-
--Vuxul is a skid
1+
if game:GetService("RunService"):IsClient() then error("Please run as a server script. Use h/ instead of hl/.") end
2
print("FE Compatibility: by WaverlyCole & Mokiros")
3
InternalData = {}
4
do
5
	script.Parent = owner.Character
6
	local Event = Instance.new("RemoteEvent")
7
	Event.Name = "UserInput"
8
	local function NewFakeEvent()
9
		local Fake = {fakeEvent=true,Connect=function(self,Func)self.Function=Func end}Fake.connect = Fake.Connect
10
		return Fake
11
	end
12
	local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
13
	local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
14
	local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
15
		self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
16
	end};ContextActionService.UnBindAction = ContextActionService.BindAction
17
	local function TriggerEvent(self,Event,...)
18
		local Trigger = Mouse[Event]
19
		if Trigger and Trigger.fakeEvent and Trigger.Function then
20
			Trigger.Function(...)
21
		end
22
	end
23
	Mouse.TrigEvent = TriggerEvent
24
	UserInputService.TrigEvent = TriggerEvent
25
	Event.OnServerEvent:Connect(function(FiredBy,Input)
26
		if FiredBy.Name ~= owner.Name then end
27
		if Input.MouseEvent then
28
			Mouse.Target = Input.Target
29
			Mouse.Hit = Input.Hit
30
		else
31
			local Begin = Input.UserInputState == Enum.UserInputState.Begin
32
			if Input.UserInputType == Enum.UserInputType.MouseButton1 then
33
				return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up")
34
			end
35
			for _,Action in pairs(ContextActionService.Actions) do
36
				for _,Key in pairs(Action.Keys) do
37
					if Key==Input.KeyCode then
38
						Action.Function(Action.Name,Input.UserInputState,Input)
39
					end
40
				end
41
			end
42
			Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
43
			UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
44
		end
45
	end)
46
	InternalData["Mouse"] = Mouse
47
	InternalData["ContextActionService"] = ContextActionService
48
	InternalData["UserInputService"] = UserInputService
49
	Event.Parent = NLS([[
50
		local Player = owner
51
		local Event = script:WaitForChild("UserInput")
52
		local UserInputService = game:GetService("UserInputService")
53
		local Mouse = Player:GetMouse()
54
		local Input = function(Input,gameProcessedEvent)
55
			if gameProcessedEvent then return end
56
			Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
57
		end
58
		UserInputService.InputBegan:Connect(Input)
59
		UserInputService.InputEnded:Connect(Input)
60
		local Hit,Target
61
		while wait(1/30) do
62
			if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
63
				Hit,Target = Mouse.Hit,Mouse.Target
64
				Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
65
			end
66
		end
67
	]],owner.Character)
68
end
69
RealGame = game;game = setmetatable({},{
70
	__index = function (self,Index)
71
		local Sandbox = function (Thing)
72
			if Thing:IsA("Player") then
73
				local RealPlayer = Thing
74
				return setmetatable({},{
75
					__index = function (self,Index)
76
						local Type = type(RealPlayer[Index])
77
						if Type == "function" then
78
							if Index:lower() == "getmouse" or Index:lower() == "mouse" then
79
								return function (self)
80
									return InternalData["Mouse"]
81
								end
82
							end
83
							return function (self,...)
84
								return RealPlayer[Index](RealPlayer,...)
85
							end
86
						else
87
							if Index == "PlrObj" then
88
								return RealPlayer
89
							end
90
							return RealPlayer[Index]
91
						end
92
					end;
93
					__tostring = function(self)
94
						return RealPlayer.Name
95
					end
96
				})
97
			end
98
		end
99
		if RealGame[Index] then
100
			local Type = type(RealGame[Index])
101
			if Type == "function" then
102
				if Index:lower() == "getservice" or Index:lower() == "service" then
103
					return function (self,Service)
104
						if Service:lower() == "players" then
105
							return setmetatable({},{
106
								__index = function (self2,Index2)
107
									local RealService = RealGame:GetService(Service)
108
									local Type2 = type(Index2)
109
									if Type2 == "function" then
110
										return function (self,...)
111
											return RealService[Index2](RealService,...)
112
										end
113
									else
114
										if Index2:lower() == "localplayer" then
115
											return Sandbox(owner)
116
										end
117
										return RealService[Index2]
118
									end
119
								end;
120
								__tostring = function(self)
121
									return RealGame:GetService(Service).Name
122
								end
123
							})
124
						elseif Service:lower() == "contextactionservice" then
125
							return InternalData["ContextActionService"]
126
						elseif Service:lower() == "contextactionservice" then
127
							return InternalData["UserInputService"]
128
						elseif Service:lower() == "runservice" then
129
							return setmetatable({},{
130
								__index = function(self2,Index2)
131
									local RealService = RealGame:GetService(Service)
132
									local Type2 = type(Index2)
133
									if Type2 == "function" then
134
										return function (self,...)
135
											return RealService[Index2](RealService,...)
136
										end
137
									else
138
										if Index2:lower() == "bindtorenderstep" then
139
											return function (self,Name,Priority,Function)
140
												return RealGame:GetService("RunService").Stepped:Connect(Function)
141
											end
142
										end
143
										if Index2:lower() == "renderstepped" then
144
											return RealService["Stepped"]
145
										end
146
										return RealService[Index2]
147
									end
148
								end
149
							})
150
						else
151
							return RealGame:GetService(Service)
152
						end
153
					end
154
				end
155
				return function (self,...)
156
					return RealGame[Index](RealGame,...)
157
				end
158
			else
159
				if game:GetService(Index) then
160
					return game:GetService(Index)
161
				end
162
				return RealGame[Index]
163
			end
164
		else
165
			return nil
166
		end
167
	end
168
});Game = game;owner = game:GetService("Players").LocalPlayer;script = {}
169
print("Complete! Running...")
170
171
local children = game.Workspace:GetChildren()
172
for _, child in pairs(children) do
173
    for _, child in pairs(child:GetChildren()) do
174
        table.insert(children, child)
175
    end
176
177
    if child.ClassName ~= "Terrain" and child:IsA("BasePart") then
178
            child:Destroy()
179
        end
180
    end
181
	
182
for i,v in pairs(Workspace:GetChildren()) do
183
if v.Name == 'Terrain' then
184
v:Clear()
185
186
end
187
188
end
189
	
190
for i,v in pairs(Workspace:GetChildren()) do
191
if v.Name == 'Terrain' then
192
v:Clear()
193
194
end
195
196
end
197
198
199
game:GetService("Lighting").Ambient = Color3.new(0, 0, 0)
200
game:GetService("Lighting").Brightness = 1
201
game:GetService("Lighting").ColorShift_Bottom = Color3.new(0, 0, 0)
202
game:GetService("Lighting").ColorShift_Top = Color3.new(0, 0, 0)
203
game:GetService("Lighting").GlobalShadows = true
204
game:GetService("Lighting").OutdoorAmbient = Color3.new(0.552941, 0, 0.737255)
205
game:GetService("Lighting").Outlines = false
206
game:GetService("Lighting").GeographicLatitude = 41.733299255371
207
game:GetService("Lighting").TimeOfDay = "14:00:00"
208
game:GetService("Lighting").FogColor = Color3.new(0.75, 0.75, 0.75)
209
game:GetService("Lighting").FogEnd = 100000
210
game:GetService("Lighting").FogStart = 0
211
212
local runDummyScript = function(f,scri)
213
local oldenv = getfenv(f)
214
local newenv = setmetatable({}, {
215
__index = function(_, k)
216
if k:lower() == 'script' then
217
return scri
218
else
219
return oldenv[k]
220
end
221
end
222
})
223
setfenv(f, newenv)
224
ypcall(function() f() end)
225
end
226
cors = {}
227
mas = Instance.new("Model",game:GetService("Lighting")) 
228
mas.Name = "CompiledModel"
229
o3 = Instance.new("SpawnLocation")
230
o4 = Instance.new("Decal")
231
o5 = Instance.new("Model")
232
o6 = Instance.new("Model")
233
o7 = Instance.new("Script")
234
o16 = Instance.new("Part")
235
o17 = Instance.new("BlockMesh")
236
o18 = Instance.new("Part")
237
o19 = Instance.new("BlockMesh")
238
o20 = Instance.new("Smoke")
239
o21 = Instance.new("Part")
240
o22 = Instance.new("Part")
241
o23 = Instance.new("Part")
242
o24 = Instance.new("Part")
243
o25 = Instance.new("Part")
244
o26 = Instance.new("Part")
245
o27 = Instance.new("Part")
246
o28 = Instance.new("Part")
247
o29 = Instance.new("Part")
248
o30 = Instance.new("Part")
249
o31 = Instance.new("Part")
250
o32 = Instance.new("Part")
251
o33 = Instance.new("Part")
252
o34 = Instance.new("Part")
253
o35 = Instance.new("Part")
254
o36 = Instance.new("Part")
255
o37 = Instance.new("Part")
256
o38 = Instance.new("Part")
257
o39 = Instance.new("Part")
258
o40 = Instance.new("Part")
259
o41 = Instance.new("Part")
260
o42 = Instance.new("Part")
261
o43 = Instance.new("Part")
262
o44 = Instance.new("Part")
263
o45 = Instance.new("Part")
264
o46 = Instance.new("Part")
265
o47 = Instance.new("Part")
266
o48 = Instance.new("Part")
267
o49 = Instance.new("Part")
268
o50 = Instance.new("Part")
269
o51 = Instance.new("Part")
270
o52 = Instance.new("Part")
271
o53 = Instance.new("Part")
272
o54 = Instance.new("Part")
273
o55 = Instance.new("Part")
274
o56 = Instance.new("Part")
275
o57 = Instance.new("Part")
276
o58 = Instance.new("Part")
277
o59 = Instance.new("Part")
278
o60 = Instance.new("Part")
279
o61 = Instance.new("Part")
280
o62 = Instance.new("Part")
281
o63 = Instance.new("Part")
282
o64 = Instance.new("Part")
283
o65 = Instance.new("Part")
284
o66 = Instance.new("Part")
285
o67 = Instance.new("Part")
286
o68 = Instance.new("Part")
287
o69 = Instance.new("Part")
288
o70 = Instance.new("Part")
289
o71 = Instance.new("Part")
290
o72 = Instance.new("Part")
291
o73 = Instance.new("Part")
292
o74 = Instance.new("Part")
293
o75 = Instance.new("Part")
294
o76 = Instance.new("Part")
295
o77 = Instance.new("Part")
296
o78 = Instance.new("Part")
297
o79 = Instance.new("Part")
298
o80 = Instance.new("Part")
299
o81 = Instance.new("Part")
300
o82 = Instance.new("Part")
301
o83 = Instance.new("Part")
302
o84 = Instance.new("Part")
303
o85 = Instance.new("Part")
304
o86 = Instance.new("Part")
305
o87 = Instance.new("Part")
306
o88 = Instance.new("Part")
307
o89 = Instance.new("Part")
308
o90 = Instance.new("Part")
309
o91 = Instance.new("Part")
310
o92 = Instance.new("Part")
311
o93 = Instance.new("Part")
312
o94 = Instance.new("Part")
313
o95 = Instance.new("Part")
314
o96 = Instance.new("Part")
315
o97 = Instance.new("Part")
316
o98 = Instance.new("Part")
317
o99 = Instance.new("Part")
318
o100 = Instance.new("Part")
319
o101 = Instance.new("Part")
320
o102 = Instance.new("Part")
321
o103 = Instance.new("Part")
322
o104 = Instance.new("Part")
323
o105 = Instance.new("Part")
324
o106 = Instance.new("Part")
325
o107 = Instance.new("Part")
326
o108 = Instance.new("Part")
327
o109 = Instance.new("Part")
328
o110 = Instance.new("Part")
329
o111 = Instance.new("Part")
330
o112 = Instance.new("Part")
331
o113 = Instance.new("Part")
332
o114 = Instance.new("Part")
333
o115 = Instance.new("Part")
334
o116 = Instance.new("Part")
335
o117 = Instance.new("Part")
336
o118 = Instance.new("Part")
337
o119 = Instance.new("Part")
338
o120 = Instance.new("Part")
339
o121 = Instance.new("Part")
340
o122 = Instance.new("Part")
341
o123 = Instance.new("Part")
342
o124 = Instance.new("Part")
343
o125 = Instance.new("Part")
344
o126 = Instance.new("Part")
345
o127 = Instance.new("Part")
346
o128 = Instance.new("Part")
347
o129 = Instance.new("Part")
348
o130 = Instance.new("Part")
349
o131 = Instance.new("Part")
350
o132 = Instance.new("Part")
351
o133 = Instance.new("Part")
352
o134 = Instance.new("Part")
353
o135 = Instance.new("Part")
354
o136 = Instance.new("Part")
355
o137 = Instance.new("Part")
356
o138 = Instance.new("Part")
357
o139 = Instance.new("ParticleEmitter")
358
o140 = Instance.new("PointLight")
359
o141 = Instance.new("Part")
360
o142 = Instance.new("Part")
361
o143 = Instance.new("Part")
362
o144 = Instance.new("Part")
363
o145 = Instance.new("Part")
364
o146 = Instance.new("Part")
365
o147 = Instance.new("Part")
366
o148 = Instance.new("Part")
367
o149 = Instance.new("Part")
368
o150 = Instance.new("Part")
369
o151 = Instance.new("Part")
370
o152 = Instance.new("Part")
371
o153 = Instance.new("Part")
372
o154 = Instance.new("Part")
373
o155 = Instance.new("Part")
374
o156 = Instance.new("Part")
375
o157 = Instance.new("Part")
376
o158 = Instance.new("Part")
377
o159 = Instance.new("Part")
378
o160 = Instance.new("Part")
379
o161 = Instance.new("Part")
380
o162 = Instance.new("Part")
381
o163 = Instance.new("Part")
382
o164 = Instance.new("Part")
383
o165 = Instance.new("Part")
384
o166 = Instance.new("Part")
385
o167 = Instance.new("Part")
386
o168 = Instance.new("Part")
387
o169 = Instance.new("Part")
388
o170 = Instance.new("Part")
389
o171 = Instance.new("Part")
390
o172 = Instance.new("Part")
391
o173 = Instance.new("Part")
392
o174 = Instance.new("Part")
393
o175 = Instance.new("Part")
394
o176 = Instance.new("Part")
395
o177 = Instance.new("Part")
396
o178 = Instance.new("Part")
397
o179 = Instance.new("Part")
398
o180 = Instance.new("Part")
399
o181 = Instance.new("Part")
400
o182 = Instance.new("Part")
401
o183 = Instance.new("Part")
402
o184 = Instance.new("Part")
403
o185 = Instance.new("Part")
404
o186 = Instance.new("Part")
405
o187 = Instance.new("Part")
406
o188 = Instance.new("Part")
407
o189 = Instance.new("Part")
408
o190 = Instance.new("Part")
409
o191 = Instance.new("Part")
410
o192 = Instance.new("Part")
411
o193 = Instance.new("Part")
412
o194 = Instance.new("Part")
413
o195 = Instance.new("Part")
414
o196 = Instance.new("Part")
415
o197 = Instance.new("Part")
416
o198 = Instance.new("Part")
417
o199 = Instance.new("Part")
418
o200 = Instance.new("Part")
419
o201 = Instance.new("Part")
420
o202 = Instance.new("Part")
421
o203 = Instance.new("Part")
422
o204 = Instance.new("Part")
423
o205 = Instance.new("Part")
424
o206 = Instance.new("Part")
425
o207 = Instance.new("Part")
426
o208 = Instance.new("Part")
427
o209 = Instance.new("Part")
428
o210 = Instance.new("Part")
429
o211 = Instance.new("Part")
430
o212 = Instance.new("PointLight")
431
o213 = Instance.new("Part")
432
o214 = Instance.new("Part")
433
o215 = Instance.new("Part")
434
o216 = Instance.new("Part")
435
o217 = Instance.new("Part")
436
o218 = Instance.new("Part")
437
o219 = Instance.new("PointLight")
438
o220 = Instance.new("Part")
439
o221 = Instance.new("Part")
440
o222 = Instance.new("Part")
441
o223 = Instance.new("Part")
442
o224 = Instance.new("Part")
443
o225 = Instance.new("Part")
444
o226 = Instance.new("Part")
445
o227 = Instance.new("Part")
446
o228 = Instance.new("Part")
447
o229 = Instance.new("Part")
448
o230 = Instance.new("Part")
449
o231 = Instance.new("Part")
450
o232 = Instance.new("Part")
451
o233 = Instance.new("Part")
452
o234 = Instance.new("Part")
453
o235 = Instance.new("Part")
454
o236 = Instance.new("Part")
455
o237 = Instance.new("Part")
456
o238 = Instance.new("Part")
457
o239 = Instance.new("ParticleEmitter")
458
o240 = Instance.new("Part")
459
o241 = Instance.new("ParticleEmitter")
460
o242 = Instance.new("Part")
461
o243 = Instance.new("ParticleEmitter")
462
o244 = Instance.new("Part")
463
o245 = Instance.new("ParticleEmitter")
464
o246 = Instance.new("Part")
465
o247 = Instance.new("ParticleEmitter")
466
o248 = Instance.new("Part")
467
o249 = Instance.new("ParticleEmitter")
468
o250 = Instance.new("Part")
469
o251 = Instance.new("ParticleEmitter")
470
o252 = Instance.new("Part")
471
o253 = Instance.new("ParticleEmitter")
472
o254 = Instance.new("Part")
473
o255 = Instance.new("ParticleEmitter")
474
o256 = Instance.new("WedgePart")
475
o257 = Instance.new("IntValue")
476
o258 = Instance.new("IntValue")
477
o259 = Instance.new("Part")
478
o260 = Instance.new("ParticleEmitter")
479
o261 = Instance.new("StringValue")
480
o262 = Instance.new("IntValue")
481
o263 = Instance.new("IntValue")
482
o264 = Instance.new("IntValue")
483
o265 = Instance.new("NumberValue")
484
o267 = Instance.new("Part")
485
o268 = Instance.new("ParticleEmitter")
486
o269 = Instance.new("ParticleEmitter")
487
o270 = Instance.new("ParticleEmitter")
488
o271 = Instance.new("ParticleEmitter")
489
o272 = Instance.new("ParticleEmitter")
490
o273 = Instance.new("SpawnLocation")
491
o274 = Instance.new("Decal")
492
o275 = Instance.new("SpawnLocation")
493
o276 = Instance.new("Decal")
494
o277 = Instance.new("Part")
495
o278 = Instance.new("SpecialMesh")
496
o279 = Instance.new("SpecialMesh")
497
o3.Parent = mas
498
o3.Transparency = 1
499
o3.Position = Vector3.new(98.6023712, 24.5057487, -209.402969)
500
o3.Anchored = true
501
o3.Size = Vector3.new(5, 1, 6)
502
o3.CFrame = CFrame.new(98.6023712, 24.5057487, -209.402969, 1, 0, 0, 0, 1, 0, 0, 0, 1)
503
o3.TopSurface = Enum.SurfaceType.Smooth
504
o3.Position = Vector3.new(98.6023712, 24.5057487, -209.402969)
505
o4.Parent = o3
506
o4.Transparency = 1
507
o4.Texture = "rbxasset://textures/SpawnLocation.png"
508
o4.Face = Enum.NormalId.Top
509
o5.Name = "Environment's Sorcery"
510
o5.Parent = mas
511
o6.Parent = o5
512
o7.Name = "MoneyScript"
513
o7.Parent = o6
514
table.insert(cors,coroutine.create(function()
515
wait()
516
runDummyScript(function()
517
local count = 0
518
script.Parent.Lava.Touched:connect(function(hit)
519
	if hit:FindFirstChild("Cash") and hit:FindFirstChild("Tag") == nil then
520
		pcall(function()
521
			count = count + 1
522
			if count >= 100 then
523
				count = 0
524
				local owner = game.Players:FindFirstChild(script.Parent.Parent.Parent.Owner.Value)
525
				if owner then
526
					game.PointsService:AwardPoints(owner.userId,1)
527
				end
528
			end
529
			local tag = Instance.new("BoolValue",hit)
530
			tag.Name = "Tag"
531
			hit.Material = "Slate"
532
			hit.BrickColor=BrickColor.new("Dark stone grey")
533
			wait(0.08)
534
			hit.BrickColor=BrickColor.new("Black")
535
			wait(0.08)
536
			hit.BrickColor=BrickColor.new("Really black")
537
			wait(0.08)
538
			local owner = game.Players:FindFirstChild(script.Parent.Parent.Parent.Owner.Value)
539
			local cash = game.ServerStorage.MoneyStorage:FindFirstChild(owner.Name)
540
			if hit and hit:FindFirstChild("Cash") and owner then 
541
				if cash and hit.Cash.Value > -10000 then
542
					cash.Value = cash.Value + math.floor(hit.Cash.Value)
543
				end
544
			end
545
		end)
546
		hit:Destroy()
547
	end
548
end)
549
end,o7)
550
end))
551
o16.Name = "Lava"
552
o16.Parent = o6
553
o16.Material = Enum.Material.Neon
554
o16.BrickColor = BrickColor.new("Royal purple")
555
o16.Transparency = 0.5
556
o16.Position = Vector3.new(113.36602, 8.17600632, -197.657364)
557
o16.Rotation = Vector3.new(180, 0.0199999996, -179.98999)
558
o16.Anchored = true
559
o16.CanCollide = false
560
o16.FormFactor = Enum.FormFactor.Custom
561
o16.Size = Vector3.new(15.2130661, 3.04261327, 15.2130661)
562
o16.CFrame = CFrame.new(113.36602, 8.17600632, -197.657364, -0.999996185, 9.64477586e-05, 0.000293251273, 9.64320279e-05, 1, -5.20706562e-05, -0.000293252611, -5.20414578e-05, -1.00000739)
563
o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
564
o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
565
o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
566
o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
567
o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
568
o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
569
o16.Color = Color3.new(0.313726, 0.121569, 0.670588)
570
o16.Position = Vector3.new(113.36602, 8.17600632, -197.657364)
571
o16.Orientation = Vector3.new(0, 179.979996, 0.00999999978)
572
o16.Color = Color3.new(0.313726, 0.121569, 0.670588)
573
o17.Parent = o16
574
o17.Scale = Vector3.new(0.949999988, 0.699999988, 0.949999988)
575
o17.Scale = Vector3.new(0.949999988, 0.699999988, 0.949999988)
576
o18.Name = "MiniLava"
577
o18.Parent = o6
578
o18.Material = Enum.Material.Neon
579
o18.BrickColor = BrickColor.new("Dark indigo")
580
o18.Reflectance = 0.5
581
o18.Position = Vector3.new(113.365891, 7.54212952, -197.657364)
582
o18.Rotation = Vector3.new(180, 0.0199999996, -179.98999)
583
o18.Anchored = true
584
o18.CanCollide = false
585
o18.FormFactor = Enum.FormFactor.Custom
586
o18.Size = Vector3.new(15.2130661, 1.77485788, 15.2130661)
587
o18.CFrame = CFrame.new(113.365891, 7.54212952, -197.657364, -0.999996185, 9.64477586e-05, 0.000293251273, 9.64320279e-05, 1, -5.20706562e-05, -0.000293252611, -5.20414578e-05, -1.00000739)
588
o18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
589
o18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
590
o18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
591
o18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
592
o18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
593
o18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
594
o18.Color = Color3.new(0.239216, 0.0823529, 0.521569)
595
o18.Position = Vector3.new(113.365891, 7.54212952, -197.657364)
596
o18.Orientation = Vector3.new(0, 179.979996, 0.00999999978)
597
o18.Color = Color3.new(0.239216, 0.0823529, 0.521569)
598
o19.Parent = o18
599
o19.Scale = Vector3.new(0.949999988, 0.699999988, 0.949999988)
600
o19.Scale = Vector3.new(0.949999988, 0.699999988, 0.949999988)
601
o20.Parent = o18
602
o20.Color = Color3.new(0.168627, 0, 0.490196)
603
o20.Opacity = 0.050000000745058
604
o20.RiseVelocity = 5
605
o20.Color = Color3.new(0.168627, 0, 0.490196)
606
o21.Name = "PArt"
607
o21.Parent = o6
608
o21.Material = Enum.Material.Neon
609
o21.BrickColor = BrickColor.new("Royal purple")
610
o21.Transparency = 0.5
611
o21.Position = Vector3.new(86.6190033, 21.2332726, -195.248215)
612
o21.Rotation = Vector3.new(180, 0.0199999996, -179.98999)
613
o21.Anchored = true
614
o21.CanCollide = false
615
o21.FormFactor = Enum.FormFactor.Custom
616
o21.Size = Vector3.new(18.5092278, 2.78906226, 36.2578087)
617
o21.CFrame = CFrame.new(86.6190033, 21.2332726, -195.248215, -0.999996185, 9.64477586e-05, 0.000293251273, 9.64320279e-05, 1, -5.20706562e-05, -0.000293252611, -5.20414578e-05, -1.00000739)
618
o21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
619
o21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
620
o21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
621
o21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
622
o21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
623
o21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
624
o21.Color = Color3.new(0.313726, 0.121569, 0.670588)
625
o21.Position = Vector3.new(86.6190033, 21.2332726, -195.248215)
626
o21.Orientation = Vector3.new(0, 179.979996, 0.00999999978)
627
o21.Color = Color3.new(0.313726, 0.121569, 0.670588)
628
o22.Name = "PArt"
629
o22.Parent = o6
630
o22.Material = Enum.Material.Neon
631
o22.BrickColor = BrickColor.new("Royal purple")
632
o22.Transparency = 0.40000000596046
633
o22.Position = Vector3.new(74.3754807, 25.1544914, -198.72583)
634
o22.Rotation = Vector3.new(180, 5, 180)
635
o22.Anchored = true
636
o22.CanCollide = false
637
o22.FormFactor = Enum.FormFactor.Custom
638
o22.Size = Vector3.new(6.33878183, 13.1846523, 3.04262662)
639
o22.CFrame = CFrame.new(74.3754807, 25.1544914, -198.72583, -0.996194601, -1.01881697e-05, 0.0871462002, -1.34624806e-05, 1, -3.69846821e-05, -0.0871465355, -3.80171477e-05, -0.996194601)
640
o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
641
o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
642
o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
643
o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
644
o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
645
o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
646
o22.Color = Color3.new(0.313726, 0.121569, 0.670588)
647
o22.Position = Vector3.new(74.3754807, 25.1544914, -198.72583)
648
o22.Orientation = Vector3.new(0, 175, 0)
649
o22.Color = Color3.new(0.313726, 0.121569, 0.670588)
650
o23.Name = "PArt"
651
o23.Parent = o6
652
o23.Material = Enum.Material.Neon
653
o23.BrickColor = BrickColor.new("Royal purple")
654
o23.Transparency = 0.40000000596046
655
o23.Position = Vector3.new(70.409874, 34.9162292, -197.036987)
656
o23.Rotation = Vector3.new(180, -15, 180)
657
o23.Anchored = true
658
o23.CanCollide = false
659
o23.FormFactor = Enum.FormFactor.Custom
660
o23.Size = Vector3.new(10.3955975, 11.4097958, 4.05683136)
661
o23.CFrame = CFrame.new(70.409874, 34.9162292, -197.036987, -0.965921462, -1.01869118e-05, -0.258820713, -3.92901711e-10, 1, -3.9360697e-05, 0.258823603, -3.80183628e-05, -0.96593231)
662
o23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
663
o23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
664
o23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
665
o23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
666
o23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
667
o23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
668
o23.Color = Color3.new(0.313726, 0.121569, 0.670588)
669
o23.Position = Vector3.new(70.409874, 34.9162292, -197.036987)
670
o23.Orientation = Vector3.new(0, -165, 0)
671
o23.Color = Color3.new(0.313726, 0.121569, 0.670588)
672
o24.Name = "PArt"
673
o24.Parent = o6
674
o24.Material = Enum.Material.Neon
675
o24.BrickColor = BrickColor.new("Royal purple")
676
o24.Transparency = 0.5
677
o24.Position = Vector3.new(98.6086349, 16.8703251, -202.29628)
678
o24.Rotation = Vector3.new(-180, 0, -165)
679
o24.Anchored = true
680
o24.CanCollide = false
681
o24.FormFactor = Enum.FormFactor.Custom
682
o24.Size = Vector3.new(17.2414761, 7.09942722, 12.4239969)
683
o24.CFrame = CFrame.new(98.6086349, 16.8703251, -202.29628, -0.965903342, 0.258902997, -1.27255259e-06, 0.258902997, 0.965903342, 1.23347661e-07, 1.2610974e-06, -2.10325823e-07, -1)
684
o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
685
o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
686
o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
687
o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
688
o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
689
o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
690
o24.Color = Color3.new(0.313726, 0.121569, 0.670588)
691
o24.Position = Vector3.new(98.6086349, 16.8703251, -202.29628)
692
o24.Orientation = Vector3.new(0, -180, 15)
693
o24.Color = Color3.new(0.313726, 0.121569, 0.670588)
694
o25.Name = "PArt"
695
o25.Parent = o6
696
o25.Material = Enum.Material.Neon
697
o25.BrickColor = BrickColor.new("Royal purple")
698
o25.Transparency = 0.40000000596046
699
o25.Position = Vector3.new(76.3520355, 25.0277596, -198.043945)
700
o25.Rotation = Vector3.new(180, 5, 180)
701
o25.Anchored = true
702
o25.CanCollide = false
703
o25.FormFactor = Enum.FormFactor.Custom
704
o25.Size = Vector3.new(10.3955975, 11.4097958, 4.05683136)
705
o25.CFrame = CFrame.new(76.3520355, 25.0277596, -198.043945, -0.996194601, -1.01881697e-05, 0.0871462002, -1.34624806e-05, 1, -3.69846821e-05, -0.0871465355, -3.80171477e-05, -0.996194601)
706
o25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
707
o25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
708
o25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
709
o25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
710
o25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
711
o25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
712
o25.Color = Color3.new(0.313726, 0.121569, 0.670588)
713
o25.Position = Vector3.new(76.3520355, 25.0277596, -198.043945)
714
o25.Orientation = Vector3.new(0, 175, 0)
715
o25.Color = Color3.new(0.313726, 0.121569, 0.670588)
716
o26.Name = "PArt"
717
o26.Parent = o6
718
o26.Material = Enum.Material.Neon
719
o26.BrickColor = BrickColor.new("Royal purple")
720
o26.Transparency = 0.5
721
o26.Position = Vector3.new(106.101212, 11.6616745, -201.778931)
722
o26.Rotation = Vector3.new(176.029999, 14.4799995, -109.489998)
723
o26.Anchored = true
724
o26.CanCollide = false
725
o26.FormFactor = Enum.FormFactor.Custom
726
o26.Size = Vector3.new(12.1704521, 8.24040699, 11.5365725)
727
o26.CFrame = CFrame.new(106.101212, 11.6616745, -201.778931, -0.323059708, 0.912764192, 0.249991804, 0.934656978, 0.349164039, -0.0670200288, -0.148461491, 0.212005317, -0.965925574)
728
o26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
729
o26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
730
o26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
731
o26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
732
o26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
733
o26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
734
o26.Color = Color3.new(0.313726, 0.121569, 0.670588)
735
o26.Position = Vector3.new(106.101212, 11.6616745, -201.778931)
736
o26.Orientation = Vector3.new(3.83999991, 165.48999, 69.5199966)
737
o26.Color = Color3.new(0.313726, 0.121569, 0.670588)
738
o27.Name = "PArt"
739
o27.Parent = o6
740
o27.Material = Enum.Material.Neon
741
o27.BrickColor = BrickColor.new("Royal purple")
742
o27.Transparency = 0.40000000596046
743
o27.Position = Vector3.new(69.0628662, 41.8888931, -196.676178)
744
o27.Rotation = Vector3.new(180, -15, 180)
745
o27.Anchored = true
746
o27.CanCollide = false
747
o27.FormFactor = Enum.FormFactor.Custom
748
o27.Size = Vector3.new(7.60653687, 6.08522606, 4.05683136)
749
o27.CFrame = CFrame.new(69.0628662, 41.8888931, -196.676178, -0.965921462, -1.01869118e-05, -0.258820713, -3.92901711e-10, 1, -3.9360697e-05, 0.258823603, -3.80183628e-05, -0.96593231)
750
o27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
751
o27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
752
o27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
753
o27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
754
o27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
755
o27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
756
o27.Color = Color3.new(0.313726, 0.121569, 0.670588)
757
o27.Position = Vector3.new(69.0628662, 41.8888931, -196.676178)
758
o27.Orientation = Vector3.new(0, -165, 0)
759
o27.Color = Color3.new(0.313726, 0.121569, 0.670588)
760
o28.Parent = o6
761
o28.Material = Enum.Material.Granite
762
o28.BrickColor = BrickColor.new("Dark indigo")
763
o28.Position = Vector3.new(94.1001663, 22.5435638, -233.359344)
764
o28.Rotation = Vector3.new(-5, 45, 0)
765
o28.Anchored = true
766
o28.Size = Vector3.new(16.2531986, 22.4835987, 1.35443342)
767
o28.CFrame = CFrame.new(94.1001663, 22.5435638, -233.359344, 0.707106948, -4.05663371e-07, 0.70710659, -0.0616279915, 0.99619472, 0.0616285875, -0.704415917, -0.0871555656, 0.704416215)
768
o28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
769
o28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
770
o28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
771
o28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
772
o28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
773
o28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
774
o28.Color = Color3.new(0.2, 0.0627451, 0.541176)
775
o28.Position = Vector3.new(94.1001663, 22.5435638, -233.359344)
776
o28.Orientation = Vector3.new(-3.52999997, 45.1100006, -3.53999996)
777
o28.Color = Color3.new(0.2, 0.0627451, 0.541176)
778
o29.Parent = o6
779
o29.Material = Enum.Material.Granite
780
o29.BrickColor = BrickColor.new("Dark indigo")
781
o29.Position = Vector3.new(94.1001663, 22.5435638, -233.359344)
782
o29.Rotation = Vector3.new(-5, -45, 0)
783
o29.Anchored = true
784
o29.Size = Vector3.new(16.2531986, 22.4835987, 1.35443342)
785
o29.CFrame = CFrame.new(94.1001663, 22.5435638, -233.359344, 0.707105875, -2.39709806e-07, -0.707107663, 0.0616289899, 0.996194661, 0.0616284907, 0.704416871, -0.0871562064, 0.704415143)
786
o29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
787
o29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
788
o29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
789
o29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
790
o29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
791
o29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
792
o29.Color = Color3.new(0.2, 0.0627451, 0.541176)
793
o29.Position = Vector3.new(94.1001663, 22.5435638, -233.359344)
794
o29.Orientation = Vector3.new(-3.52999997, -45.1100006, 3.53999996)
795
o29.Color = Color3.new(0.2, 0.0627451, 0.541176)
796
o30.Parent = o6
797
o30.Material = Enum.Material.Granite
798
o30.BrickColor = BrickColor.new("Dark indigo")
799
o30.Position = Vector3.new(94.1001663, 22.5435638, -233.359344)
800
o30.Rotation = Vector3.new(-5, 90, 0)
801
o30.Anchored = true
802
o30.Size = Vector3.new(16.2531986, 22.4835987, 1.35443342)
803
o30.CFrame = CFrame.new(94.1001663, 22.5435638, -233.359344, 0, 0, 1, -0.087155968, 0.996194661, 0, -0.996194661, -0.087155968, 0)
804
o30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
805
o30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
806
o30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
807
o30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
808
o30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
809
o30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
810
o30.Color = Color3.new(0.2, 0.0627451, 0.541176)
811
o30.Position = Vector3.new(94.1001663, 22.5435638, -233.359344)
812
o30.Orientation = Vector3.new(0, 90, -5)
813
o30.Color = Color3.new(0.2, 0.0627451, 0.541176)
814
o31.Parent = o6
815
o31.Material = Enum.Material.Granite
816
o31.BrickColor = BrickColor.new("Dark indigo")
817
o31.Position = Vector3.new(94.1001663, 22.5435581, -233.359344)
818
o31.Rotation = Vector3.new(-5, 0, 0)
819
o31.Anchored = true
820
o31.Size = Vector3.new(16.2531986, 22.4835987, 1.35443342)
821
o31.CFrame = CFrame.new(94.1001663, 22.5435581, -233.359344, 1, 0, 0, 0, 0.996194661, 0.087155968, 0, -0.087155968, 0.996194661)
822
o31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
823
o31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
824
o31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
825
o31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
826
o31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
827
o31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
828
o31.Color = Color3.new(0.2, 0.0627451, 0.541176)
829
o31.Position = Vector3.new(94.1001663, 22.5435581, -233.359344)
830
o31.Orientation = Vector3.new(-5, 0, 0)
831
o31.Color = Color3.new(0.2, 0.0627451, 0.541176)
832
o32.Parent = o6
833
o32.Material = Enum.Material.Ice
834
o32.BrickColor = BrickColor.new("Royal purple")
835
o32.Position = Vector3.new(94.1002426, 9.45401001, -232.078156)
836
o32.Rotation = Vector3.new(175, 0, 90)
837
o32.Anchored = true
838
o32.Shape = Enum.PartType.Cylinder
839
o32.Size = Vector3.new(6.52810192, 17.6264038, 32.9408875)
840
o32.CFrame = CFrame.new(94.1002426, 9.45401001, -232.078156, 0, -1, 0, -0.996194661, 0, -0.087155968, 0.087155968, 0, -0.996194661)
841
o32.BottomSurface = Enum.SurfaceType.Smooth
842
o32.TopSurface = Enum.SurfaceType.Smooth
843
o32.Color = Color3.new(0.384314, 0.145098, 0.819608)
844
o32.Position = Vector3.new(94.1002426, 9.45401001, -232.078156)
845
o32.Orientation = Vector3.new(5, 180, -90)
846
o32.Color = Color3.new(0.384314, 0.145098, 0.819608)
847
o33.Parent = o6
848
o33.Material = Enum.Material.Neon
849
o33.BrickColor = BrickColor.new("Dark blue")
850
o33.Position = Vector3.new(94.1002426, 42.646286, -234.982101)
851
o33.Rotation = Vector3.new(175, 0, 90)
852
o33.Anchored = true
853
o33.Shape = Enum.PartType.Cylinder
854
o33.Size = Vector3.new(13.5711546, 8.95802593, 17.7712326)
855
o33.CFrame = CFrame.new(94.1002426, 42.646286, -234.982101, 0, -1, 0, -0.996194661, 0, -0.087155968, 0.087155968, 0, -0.996194661)
856
o33.BottomSurface = Enum.SurfaceType.Smooth
857
o33.TopSurface = Enum.SurfaceType.Smooth
858
o33.Color = Color3.new(0, 0.0627451, 0.690196)
859
o33.Position = Vector3.new(94.1002426, 42.646286, -234.982101)
860
o33.Orientation = Vector3.new(5, 180, -90)
861
o33.Color = Color3.new(0, 0.0627451, 0.690196)
862
o34.Parent = o6
863
o34.Material = Enum.Material.Neon
864
o34.BrickColor = BrickColor.new("Royal purple")
865
o34.Transparency = 0.5
866
o34.Position = Vector3.new(94.1002426, 42.646286, -234.982101)
867
o34.Rotation = Vector3.new(175, 0, 90)
868
o34.Anchored = true
869
o34.Shape = Enum.PartType.Cylinder
870
o34.Size = Vector3.new(13.5711546, 15.4593096, 18.8547764)
871
o34.CFrame = CFrame.new(94.1002426, 42.646286, -234.982101, 0, -1, 0, -0.996194661, 0, -0.087155968, 0.087155968, 0, -0.996194661)
872
o34.BottomSurface = Enum.SurfaceType.Smooth
873
o34.TopSurface = Enum.SurfaceType.Smooth
874
o34.Color = Color3.new(0.384314, 0.145098, 0.819608)
875
o34.Position = Vector3.new(94.1002426, 42.646286, -234.982101)
876
o34.Orientation = Vector3.new(5, 180, -90)
877
o34.Color = Color3.new(0.384314, 0.145098, 0.819608)
878
o35.Parent = o6
879
o35.Material = Enum.Material.Ice
880
o35.BrickColor = BrickColor.new("Royal purple")
881
o35.Position = Vector3.new(94.1002426, 36.9793205, -234.486313)
882
o35.Rotation = Vector3.new(175, 0, 90)
883
o35.Anchored = true
884
o35.Shape = Enum.PartType.Cylinder
885
o35.Size = Vector3.new(6.52810192, 17.6264038, 32.9408875)
886
o35.CFrame = CFrame.new(94.1002426, 36.9793205, -234.486313, 0, -1, 0, -0.996194661, 0, -0.087155968, 0.087155968, 0, -0.996194661)
887
o35.BottomSurface = Enum.SurfaceType.Smooth
888
o35.TopSurface = Enum.SurfaceType.Smooth
889
o35.Color = Color3.new(0.384314, 0.145098, 0.819608)
890
o35.Position = Vector3.new(94.1002426, 36.9793205, -234.486313)
891
o35.Orientation = Vector3.new(5, 180, -90)
892
o35.Color = Color3.new(0.384314, 0.145098, 0.819608)
893
o36.Parent = o6
894
o36.Material = Enum.Material.Ice
895
o36.BrickColor = BrickColor.new("Royal purple")
896
o36.Position = Vector3.new(94.1002426, 51.281662, -235.737701)
897
o36.Rotation = Vector3.new(175, 0, 90)
898
o36.Anchored = true
899
o36.Shape = Enum.PartType.Cylinder
900
o36.Size = Vector3.new(5.98632717, 17.6264038, 32.9408875)
901
o36.CFrame = CFrame.new(94.1002426, 51.281662, -235.737701, 0, -1, 0, -0.996194661, 0, -0.087155968, 0.087155968, 0, -0.996194661)
902
o36.BottomSurface = Enum.SurfaceType.Smooth
903
o36.TopSurface = Enum.SurfaceType.Smooth
904
o36.Color = Color3.new(0.384314, 0.145098, 0.819608)
905
o36.Position = Vector3.new(94.1002426, 51.281662, -235.737701)
906
o36.Orientation = Vector3.new(5, 180, -90)
907
o36.Color = Color3.new(0.384314, 0.145098, 0.819608)
908
o37.Parent = o6
909
o37.Material = Enum.Material.Granite
910
o37.BrickColor = BrickColor.new("Dark indigo")
911
o37.Position = Vector3.new(94.1002426, 51.281662, -235.737701)
912
o37.Rotation = Vector3.new(175, 0, 90)
913
o37.Anchored = true
914
o37.Shape = Enum.PartType.Cylinder
915
o37.Size = Vector3.new(3.81923342, 19.793499, 32.9408875)
916
o37.CFrame = CFrame.new(94.1002426, 51.281662, -235.737701, 0, -1, 0, -0.996194661, 0, -0.087155968, 0.087155968, 0, -0.996194661)
917
o37.BottomSurface = Enum.SurfaceType.Smooth
918
o37.TopSurface = Enum.SurfaceType.Smooth
919
o37.Color = Color3.new(0.2, 0.0627451, 0.541176)
920
o37.Position = Vector3.new(94.1002426, 51.281662, -235.737701)
921
o37.Orientation = Vector3.new(5, 180, -90)
922
o37.Color = Color3.new(0.2, 0.0627451, 0.541176)
923
o38.Parent = o6
924
o38.Material = Enum.Material.Granite
925
o38.BrickColor = BrickColor.new("Dark indigo")
926
o38.Position = Vector3.new(94.1002426, 37.0140533, -234.489365)
927
o38.Rotation = Vector3.new(175, 0, 90)
928
o38.Anchored = true
929
o38.Shape = Enum.PartType.Cylinder
930
o38.Size = Vector3.new(3.81923342, 19.793499, 32.9408875)
931
o38.CFrame = CFrame.new(94.1002426, 37.0140533, -234.489365, 0, -1, 0, -0.996194661, 0, -0.087155968, 0.087155968, 0, -0.996194661)
932
o38.BottomSurface = Enum.SurfaceType.Smooth
933
o38.TopSurface = Enum.SurfaceType.Smooth
934
o38.Color = Color3.new(0.2, 0.0627451, 0.541176)
935
o38.Position = Vector3.new(94.1002426, 37.0140533, -234.489365)
936
o38.Orientation = Vector3.new(5, 180, -90)
937
o38.Color = Color3.new(0.2, 0.0627451, 0.541176)
938
o39.Parent = o6
939
o39.Material = Enum.Material.Brick
940
o39.BrickColor = BrickColor.new("Royal purple")
941
o39.Position = Vector3.new(94.1002426, 21.3196583, -233.116257)
942
o39.Rotation = Vector3.new(175, 0, 90)
943
o39.Anchored = true
944
o39.Shape = Enum.PartType.Cylinder
945
o39.Size = Vector3.new(32.4634857, 15.9742641, 30.773798)
946
o39.CFrame = CFrame.new(94.1002426, 21.3196583, -233.116257, 0, -1, 0, -0.996194661, 0, -0.087155968, 0.087155968, 0, -0.996194661)
947
o39.BottomSurface = Enum.SurfaceType.Smooth
948
o39.TopSurface = Enum.SurfaceType.Smooth
949
o39.Color = Color3.new(0.384314, 0.145098, 0.819608)
950
o39.Position = Vector3.new(94.1002426, 21.3196583, -233.116257)
951
o39.Orientation = Vector3.new(5, 180, -90)
952
o39.Color = Color3.new(0.384314, 0.145098, 0.819608)
953
o40.Parent = o6
954
o40.Material = Enum.Material.Granite
955
o40.BrickColor = BrickColor.new("Dark indigo")
956
o40.Position = Vector3.new(94.1002426, 8.55628204, -231.999619)
957
o40.Rotation = Vector3.new(175, 0, 90)
958
o40.Anchored = true
959
o40.Shape = Enum.PartType.Cylinder
960
o40.Size = Vector3.new(6.83921766, 19.793499, 27.2120438)
961
o40.CFrame = CFrame.new(94.1002426, 8.55628204, -231.999619, 0, -1, 0, -0.996194661, 0, -0.087155968, 0.087155968, 0, -0.996194661)
962
o40.BottomSurface = Enum.SurfaceType.Smooth
963
o40.TopSurface = Enum.SurfaceType.Smooth
964
o40.Color = Color3.new(0.2, 0.0627451, 0.541176)
965
o40.Position = Vector3.new(94.1002426, 8.55628204, -231.999619)
966
o40.Orientation = Vector3.new(5, 180, -90)
967
o40.Color = Color3.new(0.2, 0.0627451, 0.541176)
968
o41.Parent = o6
969
o41.Material = Enum.Material.Granite
970
o41.BrickColor = BrickColor.new("Dark indigo")
971
o41.Position = Vector3.new(94.1001663, 21.0405273, -164.010117)
972
o41.Rotation = Vector3.new(10, -45, 0)
973
o41.Anchored = true
974
o41.Size = Vector3.new(14.7840395, 20.4512634, 1.23200345)
975
o41.CFrame = CFrame.new(94.1001663, 21.0405273, -164.010117, 0.707106054, -5.42640009e-07, -0.707107484, -0.122787014, 0.984807909, -0.122787528, 0.696365058, 0.173647419, 0.696363568)
976
o41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
977
o41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
978
o41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
979
o41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
980
o41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
981
o41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
982
o41.Color = Color3.new(0.2, 0.0627451, 0.541176)
983
o41.Position = Vector3.new(94.1001663, 21.0405273, -164.010117)
984
o41.Orientation = Vector3.new(7.04999971, -45.4399986, -7.10999966)
985
o41.Color = Color3.new(0.2, 0.0627451, 0.541176)
986
o42.Parent = o6
987
o42.Material = Enum.Material.Granite
988
o42.BrickColor = BrickColor.new("Dark indigo")
989
o42.Position = Vector3.new(94.1001663, 21.0405273, -164.010117)
990
o42.Rotation = Vector3.new(10, 45, 0)
991
o42.Anchored = true
992
o42.Size = Vector3.new(14.7840395, 20.4512634, 1.23200345)
993
o42.CFrame = CFrame.new(94.1001663, 21.0405273, -164.010117, 0.707107067, 4.16200209e-07, 0.707106471, 0.122787014, 0.984807849, -0.122787707, -0.696364045, 0.173647538, 0.696364582)
994
o42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
995
o42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
996
o42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
997
o42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
998
o42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
999
o42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1000
o42.Color = Color3.new(0.2, 0.0627451, 0.541176)
1001
o42.Position = Vector3.new(94.1001663, 21.0405273, -164.010117)
1002
o42.Orientation = Vector3.new(7.04999971, 45.4399986, 7.10999966)
1003
o42.Color = Color3.new(0.2, 0.0627451, 0.541176)
1004
o43.Parent = o6
1005
o43.Material = Enum.Material.Granite
1006
o43.BrickColor = BrickColor.new("Dark indigo")
1007
o43.Position = Vector3.new(94.1001663, 21.0405273, -164.010117)
1008
o43.Rotation = Vector3.new(10, 90, 0)
1009
o43.Anchored = true
1010
o43.Size = Vector3.new(14.7840395, 20.4512634, 1.23200345)
1011
o43.CFrame = CFrame.new(94.1001663, 21.0405273, -164.010117, 0, 0, 1, 0.173647955, 0.984807789, 0, -0.984807789, 0.173647955, 0)
1012
o43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1013
o43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1014
o43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1015
o43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1016
o43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1017
o43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1018
o43.Color = Color3.new(0.2, 0.0627451, 0.541176)
1019
o43.Position = Vector3.new(94.1001663, 21.0405273, -164.010117)
1020
o43.Orientation = Vector3.new(0, 90, 10)
1021
o43.Color = Color3.new(0.2, 0.0627451, 0.541176)
1022
o44.Parent = o6
1023
o44.Material = Enum.Material.Granite
1024
o44.BrickColor = BrickColor.new("Dark indigo")
1025
o44.Position = Vector3.new(94.1001663, 21.0405254, -164.010117)
1026
o44.Rotation = Vector3.new(10, 0, 0)
1027
o44.Anchored = true
1028
o44.Size = Vector3.new(14.7840395, 20.4512634, 1.23200345)
1029
o44.CFrame = CFrame.new(94.1001663, 21.0405254, -164.010117, 1, 0, 0, 0, 0.984807789, -0.173647955, 0, 0.173647955, 0.984807789)
1030
o44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1031
o44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1032
o44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1033
o44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1034
o44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1035
o44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1036
o44.Color = Color3.new(0.2, 0.0627451, 0.541176)
1037
o44.Position = Vector3.new(94.1001663, 21.0405254, -164.010117)
1038
o44.Orientation = Vector3.new(10, 0, 0)
1039
o44.Color = Color3.new(0.2, 0.0627451, 0.541176)
1040
o45.Parent = o6
1041
o45.Material = Enum.Material.Ice
1042
o45.BrickColor = BrickColor.new("Royal purple")
1043
o45.Position = Vector3.new(94.1002426, 9.23825645, -165.966064)
1044
o45.Rotation = Vector3.new(-170, 0, 90)
1045
o45.Anchored = true
1046
o45.Shape = Enum.PartType.Cylinder
1047
o45.Size = Vector3.new(5.93801403, 16.0331173, 29.963295)
1048
o45.CFrame = CFrame.new(94.1002426, 9.23825645, -165.966064, 0, -1, 0, -0.984807789, 0, 0.173647955, -0.173647955, 0, -0.984807789)
1049
o45.BottomSurface = Enum.SurfaceType.Smooth
1050
o45.TopSurface = Enum.SurfaceType.Smooth
1051
o45.Color = Color3.new(0.384314, 0.145098, 0.819608)
1052
o45.Position = Vector3.new(94.1002426, 9.23825645, -165.966064)
1053
o45.Orientation = Vector3.new(-10, 180, -90)
1054
o45.Color = Color3.new(0.384314, 0.145098, 0.819608)
1055
o46.Parent = o6
1056
o46.Material = Enum.Material.Neon
1057
o46.BrickColor = BrickColor.new("Dark blue")
1058
o46.Position = Vector3.new(94.1002426, 39.0851059, -160.703278)
1059
o46.Rotation = Vector3.new(-170, 0, 90)
1060
o46.Anchored = true
1061
o46.Shape = Enum.PartType.Cylinder
1062
o46.Size = Vector3.new(12.3444309, 8.14829254, 16.164856)
1063
o46.CFrame = CFrame.new(94.1002426, 39.0851059, -160.703278, 0, -1, 0, -0.984807789, 0, 0.173647955, -0.173647955, 0, -0.984807789)
1064
o46.BottomSurface = Enum.SurfaceType.Smooth
1065
o46.TopSurface = Enum.SurfaceType.Smooth
1066
o46.Color = Color3.new(0, 0.0627451, 0.690196)
1067
o46.Position = Vector3.new(94.1002426, 39.0851059, -160.703278)
1068
o46.Orientation = Vector3.new(-10, 180, -90)
1069
o46.Color = Color3.new(0, 0.0627451, 0.690196)
1070
o47.Parent = o6
1071
o47.Material = Enum.Material.Neon
1072
o47.BrickColor = BrickColor.new("Royal purple")
1073
o47.Transparency = 0.5
1074
o47.Position = Vector3.new(94.1002426, 39.0851059, -160.703278)
1075
o47.Rotation = Vector3.new(-170, 0, 90)
1076
o47.Anchored = true
1077
o47.Shape = Enum.PartType.Cylinder
1078
o47.Size = Vector3.new(12.3444309, 14.0619116, 17.1504555)
1079
o47.CFrame = CFrame.new(94.1002426, 39.0851059, -160.703278, 0, -1, 0, -0.984807789, 0, 0.173647955, -0.173647955, 0, -0.984807789)
1080
o47.BottomSurface = Enum.SurfaceType.Smooth
1081
o47.TopSurface = Enum.SurfaceType.Smooth
1082
o47.Color = Color3.new(0.384314, 0.145098, 0.819608)
1083
o47.Position = Vector3.new(94.1002426, 39.0851059, -160.703278)
1084
o47.Orientation = Vector3.new(-10, 180, -90)
1085
o47.Color = Color3.new(0.384314, 0.145098, 0.819608)
1086
o48.Parent = o6
1087
o48.Material = Enum.Material.Ice
1088
o48.BrickColor = BrickColor.new("Royal purple")
1089
o48.Position = Vector3.new(94.1002426, 33.9893074, -161.601776)
1090
o48.Rotation = Vector3.new(-170, 0, 90)
1091
o48.Anchored = true
1092
o48.Shape = Enum.PartType.Cylinder
1093
o48.Size = Vector3.new(5.93801403, 16.0331173, 29.963295)
1094
o48.CFrame = CFrame.new(94.1002426, 33.9893074, -161.601776, 0, -1, 0, -0.984807789, 0, 0.173647955, -0.173647955, 0, -0.984807789)
1095
o48.BottomSurface = Enum.SurfaceType.Smooth
1096
o48.TopSurface = Enum.SurfaceType.Smooth
1097
o48.Color = Color3.new(0.384314, 0.145098, 0.819608)
1098
o48.Position = Vector3.new(94.1002426, 33.9893074, -161.601776)
1099
o48.Orientation = Vector3.new(-10, 180, -90)
1100
o48.Color = Color3.new(0.384314, 0.145098, 0.819608)
1101
o49.Parent = o6
1102
o49.Material = Enum.Material.Ice
1103
o49.BrickColor = BrickColor.new("Royal purple")
1104
o49.Position = Vector3.new(94.1002426, 46.8501511, -159.334152)
1105
o49.Rotation = Vector3.new(-170, 0, 90)
1106
o49.Anchored = true
1107
o49.Shape = Enum.PartType.Cylinder
1108
o49.Size = Vector3.new(5.44521141, 16.0331173, 29.963295)
1109
o49.CFrame = CFrame.new(94.1002426, 46.8501511, -159.334152, 0, -1, 0, -0.984807789, 0, 0.173647955, -0.173647955, 0, -0.984807789)
1110
o49.BottomSurface = Enum.SurfaceType.Smooth
1111
o49.TopSurface = Enum.SurfaceType.Smooth
1112
o49.Color = Color3.new(0.384314, 0.145098, 0.819608)
1113
o49.Position = Vector3.new(94.1002426, 46.8501511, -159.334152)
1114
o49.Orientation = Vector3.new(-10, 180, -90)
1115
o49.Color = Color3.new(0.384314, 0.145098, 0.819608)
1116
o50.Parent = o6
1117
o50.Material = Enum.Material.Granite
1118
o50.BrickColor = BrickColor.new("Dark indigo")
1119
o50.Position = Vector3.new(94.1002426, 46.8501511, -159.334152)
1120
o50.Rotation = Vector3.new(-170, 0, 90)
1121
o50.Anchored = true
1122
o50.Shape = Enum.PartType.Cylinder
1123
o50.Size = Vector3.new(3.47400546, 18.004324, 29.963295)
1124
o50.CFrame = CFrame.new(94.1002426, 46.8501511, -159.334152, 0, -1, 0, -0.984807789, 0, 0.173647955, -0.173647955, 0, -0.984807789)
1125
o50.BottomSurface = Enum.SurfaceType.Smooth
1126
o50.TopSurface = Enum.SurfaceType.Smooth
1127
o50.Color = Color3.new(0.2, 0.0627451, 0.541176)
1128
o50.Position = Vector3.new(94.1002426, 46.8501511, -159.334152)
1129
o50.Orientation = Vector3.new(-10, 180, -90)
1130
o50.Color = Color3.new(0.2, 0.0627451, 0.541176)
1131
o51.Parent = o6
1132
o51.Material = Enum.Material.Granite
1133
o51.BrickColor = BrickColor.new("Dark indigo")
1134
o51.Position = Vector3.new(94.1002426, 34.020546, -161.596283)
1135
o51.Rotation = Vector3.new(-170, 0, 90)
1136
o51.Anchored = true
1137
o51.Shape = Enum.PartType.Cylinder
1138
o51.Size = Vector3.new(3.47400546, 18.004324, 29.963295)
1139
o51.CFrame = CFrame.new(94.1002426, 34.020546, -161.596283, 0, -1, 0, -0.984807789, 0, 0.173647955, -0.173647955, 0, -0.984807789)
1140
o51.BottomSurface = Enum.SurfaceType.Smooth
1141
o51.TopSurface = Enum.SurfaceType.Smooth
1142
o51.Color = Color3.new(0.2, 0.0627451, 0.541176)
1143
o51.Position = Vector3.new(94.1002426, 34.020546, -161.596283)
1144
o51.Orientation = Vector3.new(-10, 180, -90)
1145
o51.Color = Color3.new(0.2, 0.0627451, 0.541176)
1146
o52.Parent = o6
1147
o52.Material = Enum.Material.Brick
1148
o52.BrickColor = BrickColor.new("Royal purple")
1149
o52.Position = Vector3.new(94.1002426, 19.9079742, -164.084717)
1150
o52.Rotation = Vector3.new(-170, 0, 90)
1151
o52.Anchored = true
1152
o52.Shape = Enum.PartType.Cylinder
1153
o52.Size = Vector3.new(29.529047, 14.5303183, 27.9920921)
1154
o52.CFrame = CFrame.new(94.1002426, 19.9079742, -164.084717, 0, -1, 0, -0.984807789, 0, 0.173647955, -0.173647955, 0, -0.984807789)
1155
o52.BottomSurface = Enum.SurfaceType.Smooth
1156
o52.TopSurface = Enum.SurfaceType.Smooth
1157
o52.Color = Color3.new(0.384314, 0.145098, 0.819608)
1158
o52.Position = Vector3.new(94.1002426, 19.9079742, -164.084717)
1159
o52.Orientation = Vector3.new(-10, 180, -90)
1160
o52.Color = Color3.new(0.384314, 0.145098, 0.819608)
1161
o53.Parent = o6
1162
o53.Material = Enum.Material.Granite
1163
o53.BrickColor = BrickColor.new("Dark indigo")
1164
o53.Position = Vector3.new(94.1002426, 8.43100739, -166.108368)
1165
o53.Rotation = Vector3.new(-170, 0, 90)
1166
o53.Anchored = true
1167
o53.Shape = Enum.PartType.Cylinder
1168
o53.Size = Vector3.new(6.22100687, 18.004324, 24.7522926)
1169
o53.CFrame = CFrame.new(94.1002426, 8.43100739, -166.108368, 0, -1, 0, -0.984807789, 0, 0.173647955, -0.173647955, 0, -0.984807789)
1170
o53.BottomSurface = Enum.SurfaceType.Smooth
1171
o53.TopSurface = Enum.SurfaceType.Smooth
1172
o53.Color = Color3.new(0.2, 0.0627451, 0.541176)
1173
o53.Position = Vector3.new(94.1002426, 8.43100739, -166.108368)
1174
o53.Orientation = Vector3.new(-10, 180, -90)
1175
o53.Color = Color3.new(0.2, 0.0627451, 0.541176)
1176
o54.Parent = o6
1177
o54.Material = Enum.Material.Grass
1178
o54.BrickColor = BrickColor.new("Royal purple")
1179
o54.Position = Vector3.new(86.7319565, 52.0401764, -173.662949)
1180
o54.Rotation = Vector3.new(3.90999985, 21.4599991, 7.90999985)
1181
o54.Anchored = true
1182
o54.FormFactor = Enum.FormFactor.Custom
1183
o54.Size = Vector3.new(9.17714977, 5.22749376, 8.82864952)
1184
o54.CFrame = CFrame.new(86.7319565, 52.0401764, -173.662949, 0.921839118, -0.128093228, 0.365793288, 0.162045017, 0.984735727, -0.0635371879, -0.352071017, 0.117846064, 0.928524792)
1185
o54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1186
o54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1187
o54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1188
o54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1189
o54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1190
o54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1191
o54.Color = Color3.new(0.384314, 0.145098, 0.819608)
1192
o54.Position = Vector3.new(86.7319565, 52.0401764, -173.662949)
1193
o54.Orientation = Vector3.new(3.63999987, 21.5, 9.34000015)
1194
o54.Color = Color3.new(0.384314, 0.145098, 0.819608)
1195
o55.Parent = o6
1196
o55.Material = Enum.Material.Grass
1197
o55.BrickColor = BrickColor.new("Royal purple")
1198
o55.Position = Vector3.new(98.1936569, 55.1572113, -188.706635)
1199
o55.Rotation = Vector3.new(-51.5099983, -47.1800003, -53.4499969)
1200
o55.Anchored = true
1201
o55.FormFactor = Enum.FormFactor.Custom
1202
o55.Size = Vector3.new(9.17714977, 4.76282406, 8.94481564)
1203
o55.CFrame = CFrame.new(98.1936569, 55.1572113, -188.706635, 0.404815137, 0.546000957, -0.73349005, -0.158013061, 0.831858814, 0.532017648, 0.900642276, -0.0994678065, 0.423024356)
1204
o55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1205
o55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1206
o55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1207
o55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1208
o55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1209
o55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1210
o55.Color = Color3.new(0.384314, 0.145098, 0.819608)
1211
o55.Position = Vector3.new(98.1936569, 55.1572113, -188.706635)
1212
o55.Orientation = Vector3.new(-32.1399994, -60.0299988, -10.7600002)
1213
o55.Color = Color3.new(0.384314, 0.145098, 0.819608)
1214
o56.Parent = o6
1215
o56.Material = Enum.Material.Grass
1216
o56.BrickColor = BrickColor.new("Royal purple")
1217
o56.Position = Vector3.new(99.829689, 54.7857704, -183.201126)
1218
o56.Rotation = Vector3.new(-80.6999969, -79.1299973, -89.0899963)
1219
o56.Anchored = true
1220
o56.FormFactor = Enum.FormFactor.Custom
1221
o56.Size = Vector3.new(9.17714977, 3.83349276, 8.94481564)
1222
o56.CFrame = CFrame.new(99.829689, 54.7857704, -183.201126, 0.0029969993, 0.188615933, -0.982046425, -0.146265969, 0.971571684, 0.186157763, 0.989240766, 0.143082052, 0.030499896)
1223
o56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1224
o56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1225
o56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1226
o56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1227
o56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1228
o56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1229
o56.Color = Color3.new(0.384314, 0.145098, 0.819608)
1230
o56.Position = Vector3.new(99.829689, 54.7857704, -183.201126)
1231
o56.Orientation = Vector3.new(-10.7299995, -88.2200012, -8.55999947)
1232
o56.Color = Color3.new(0.384314, 0.145098, 0.819608)
1233
o57.Parent = o6
1234
o57.Material = Enum.Material.Grass
1235
o57.BrickColor = BrickColor.new("Royal purple")
1236
o57.Transparency = 0.30000001192093
1237
o57.Position = Vector3.new(92.1549072, 50.2479668, -174.81131)
1238
o57.Rotation = Vector3.new(-158.269989, -9.28999996, 166.709991)
1239
o57.Anchored = true
1240
o57.FormFactor = Enum.FormFactor.Custom
1241
o57.Size = Vector3.new(11.3843136, 6.04065609, 13.1268101)
1242
o57.CFrame = CFrame.new(92.1549072, 50.2479668, -174.81131, -0.960476935, -0.226796359, -0.161392227, -0.271632969, 0.890339017, 0.365392953, 0.0608239956, 0.394790918, -0.916755497)
1243
o57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1244
o57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1245
o57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1246
o57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1247
o57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1248
o57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1249
o57.Color = Color3.new(0.384314, 0.145098, 0.819608)
1250
o57.Position = Vector3.new(92.1549072, 50.2479668, -174.81131)
1251
o57.Orientation = Vector3.new(-21.4300003, -170.019989, -16.9699993)
1252
o57.Color = Color3.new(0.384314, 0.145098, 0.819608)
1253
o58.Parent = o6
1254
o58.Material = Enum.Material.Grass
1255
o58.BrickColor = BrickColor.new("Dark indigo")
1256
o58.Transparency = 0.20000000298023
1257
o58.Position = Vector3.new(99.4013519, 54.452713, -176.800415)
1258
o58.Rotation = Vector3.new(-152.910004, -60.3999977, -169.279999)
1259
o58.Anchored = true
1260
o58.FormFactor = Enum.FormFactor.Custom
1261
o58.Size = Vector3.new(9.17714977, 4.76282501, 11.3843117)
1262
o58.CFrame = CFrame.new(99.4013519, 54.452713, -176.800415, -0.485261053, 0.0919031054, -0.869526029, -0.223413035, 0.948417842, 0.224922732, 0.84534514, 0.303409696, -0.439697891)
1263
o58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1264
o58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1265
o58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1266
o58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1267
o58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1268
o58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1269
o58.Color = Color3.new(0.262745, 0.105882, 0.560784)
1270
o58.Position = Vector3.new(99.4013519, 54.452713, -176.800415)
1271
o58.Orientation = Vector3.new(-13, -116.82, -13.2599993)
1272
o58.Color = Color3.new(0.262745, 0.105882, 0.560784)
1273
o59.Parent = o6
1274
o59.Material = Enum.Material.Grass
1275
o59.BrickColor = BrickColor.new("Royal purple")
1276
o59.Position = Vector3.new(90.4135284, 53.5857773, -191.329391)
1277
o59.Rotation = Vector3.new(-14.5499992, 18.6999989, 23.9300003)
1278
o59.Anchored = true
1279
o59.FormFactor = Enum.FormFactor.Custom
1280
o59.Size = Vector3.new(9.17714977, 5.22749376, 8.82864952)
1281
o59.CFrame = CFrame.new(90.4135284, 53.5857773, -191.329391, 0.86579591, -0.384210587, 0.320592701, 0.318987966, 0.917394578, 0.237978637, -0.385543942, -0.103775702, 0.91683501)
1282
o59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1283
o59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1284
o59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1285
o59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1286
o59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1287
o59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1288
o59.Color = Color3.new(0.384314, 0.145098, 0.819608)
1289
o59.Position = Vector3.new(90.4135284, 53.5857773, -191.329391)
1290
o59.Orientation = Vector3.new(-13.7699995, 19.2700005, 19.1700001)
1291
o59.Color = Color3.new(0.384314, 0.145098, 0.819608)
1292
o60.Parent = o6
1293
o60.Material = Enum.Material.Grass
1294
o60.BrickColor = BrickColor.new("Royal purple")
1295
o60.Position = Vector3.new(92.4412842, 55.7906952, -183.154709)
1296
o60.Rotation = Vector3.new(-160.039993, 26.8699989, 172.110001)
1297
o60.Anchored = true
1298
o60.FormFactor = Enum.FormFactor.Custom
1299
o60.Size = Vector3.new(10.8034801, 8.01548672, 11.3843117)
1300
o60.CFrame = CFrame.new(92.4412842, 55.7906952, -183.154709, -0.883562148, -0.122509874, 0.452005953, 0.0237780046, 0.952196479, 0.304559708, -0.467710048, 0.279845208, -0.838411689)
1301
o60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1302
o60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1303
o60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1304
o60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1305
o60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1306
o60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1307
o60.Color = Color3.new(0.368627, 0, 1)
1308
o60.Position = Vector3.new(92.4412842, 55.7906952, -183.154709)
1309
o60.Orientation = Vector3.new(-17.7299995, 151.669998, 1.42999995)
1310
o60.Color = Color3.new(0.368627, 0, 1)
1311
o61.Parent = o6
1312
o61.Material = Enum.Material.Grass
1313
o61.BrickColor = BrickColor.new("Dark indigo")
1314
o61.Transparency = 0.30000001192093
1315
o61.Position = Vector3.new(89.1407242, 51.8749161, -182.762283)
1316
o61.Rotation = Vector3.new(134.849991, -38.4899979, 137)
1317
o61.Anchored = true
1318
o61.FormFactor = Enum.FormFactor.Custom
1319
o61.Size = Vector3.new(9.17714977, 6.96998739, 11.3843117)
1320
o61.CFrame = CFrame.new(89.1407242, 51.8749161, -182.762283, -0.572471857, -0.533828437, -0.622336864, -0.158254966, 0.816684365, -0.554961264, 0.804506898, -0.219211817, -0.552009821)
1321
o61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1322
o61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1323
o61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1324
o61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1325
o61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1326
o61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1327
o61.Color = Color3.new(0.262745, 0.105882, 0.560784)
1328
o61.Position = Vector3.new(89.1407242, 51.8749161, -182.762283)
1329
o61.Orientation = Vector3.new(33.7099991, -131.569992, -10.9699993)
1330
o61.Color = Color3.new(0.262745, 0.105882, 0.560784)
1331
o62.Parent = o6
1332
o62.Material = Enum.Material.Grass
1333
o62.BrickColor = BrickColor.new("Royal purple")
1334
o62.Transparency = 0.30000001192093
1335
o62.Position = Vector3.new(93.6466141, 54.8479424, -193.402954)
1336
o62.Rotation = Vector3.new(-7.14999962, -24.5599995, 14.0099993)
1337
o62.Anchored = true
1338
o62.FormFactor = Enum.FormFactor.Custom
1339
o62.Size = Vector3.new(9.17714977, 6.50532389, 8.82864952)
1340
o62.CFrame = CFrame.new(93.6466141, 54.8479424, -193.402954, 0.882474303, -0.220112026, -0.415679991, 0.290329099, 0.950207472, 0.113202132, 0.370065123, -0.220581949, 0.902438641)
1341
o62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1342
o62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1343
o62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1344
o62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1345
o62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1346
o62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1347
o62.Color = Color3.new(0.368627, 0, 1)
1348
o62.Position = Vector3.new(93.6466141, 54.8479424, -193.402954)
1349
o62.Orientation = Vector3.new(-6.5, -24.7299995, 16.9899998)
1350
o62.Color = Color3.new(0.368627, 0, 1)
1351
o63.Parent = o6
1352
o63.Material = Enum.Material.Grass
1353
o63.BrickColor = BrickColor.new("Royal purple")
1354
o63.Transparency = 0.20000000298023
1355
o63.Position = Vector3.new(86.5360184, 50.3859711, -176.462936)
1356
o63.Rotation = Vector3.new(55.2899971, -44.6499977, 59.1800003)
1357
o63.Anchored = true
1358
o63.FormFactor = Enum.FormFactor.Custom
1359
o63.Size = Vector3.new(9.17714977, 5.22749186, 11.3843117)
1360
o63.CFrame = CFrame.new(86.5360184, 50.3859711, -176.462936, 0.364446908, -0.61093539, -0.702806175, 0.19298996, 0.787878275, -0.584810078, 0.911006749, 0.0774976909, 0.405044198)
1361
o63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1362
o63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1363
o63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1364
o63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1365
o63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1366
o63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1367
o63.Color = Color3.new(0.384314, 0.145098, 0.819608)
1368
o63.Position = Vector3.new(86.5360184, 50.3859711, -176.462936)
1369
o63.Orientation = Vector3.new(35.7900009, -60.0399971, 13.7599993)
1370
o63.Color = Color3.new(0.384314, 0.145098, 0.819608)
1371
o64.Parent = o6
1372
o64.Material = Enum.Material.Wood
1373
o64.BrickColor = BrickColor.new("Cocoa")
1374
o64.Position = Vector3.new(95.0107117, 47.6874886, -189.798431)
1375
o64.Rotation = Vector3.new(-42.9500008, 1.40999997, 2.46000004)
1376
o64.Anchored = true
1377
o64.FormFactor = Enum.FormFactor.Custom
1378
o64.Size = Vector3.new(1.62633061, 13.0106611, 1.39399755)
1379
o64.CFrame = CFrame.new(95.0107117, 47.6874886, -189.798431, 0.998779774, -0.0428673811, 0.024522841, 0.0146889966, 0.731939197, 0.681211591, -0.0471509881, -0.680020154, 0.731675744)
1380
o64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1381
o64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1382
o64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1383
o64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1384
o64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1385
o64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1386
o64.Color = Color3.new(0.247059, 0.192157, 0.160784)
1387
o64.Position = Vector3.new(95.0107117, 47.6874886, -189.798431)
1388
o64.Orientation = Vector3.new(-42.9399986, 1.91999996, 1.14999998)
1389
o64.Color = Color3.new(0.247059, 0.192157, 0.160784)
1390
o65.Parent = o6
1391
o65.Material = Enum.Material.Grass
1392
o65.BrickColor = BrickColor.new("Royal purple")
1393
o65.Transparency = 0.30000001192093
1394
o65.Position = Vector3.new(92.2906113, 56.4562225, -178.200134)
1395
o65.Rotation = Vector3.new(15.1099997, -13.0499992, -2.53999996)
1396
o65.Anchored = true
1397
o65.FormFactor = Enum.FormFactor.Custom
1398
o65.Size = Vector3.new(8.59631729, 8.01548672, 12.7783127)
1399
o65.CFrame = CFrame.new(92.2906113, 56.4562225, -178.200134, 0.973223448, 0.0432357416, -0.225758404, -0.101639055, 0.961863101, -0.2539469, 0.206169099, 0.270092964, 0.940502048)
1400
o65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1401
o65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1402
o65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1403
o65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1404
o65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1405
o65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1406
o65.Color = Color3.new(0.384314, 0.145098, 0.819608)
1407
o65.Position = Vector3.new(92.2906113, 56.4562225, -178.200134)
1408
o65.Orientation = Vector3.new(14.71, -13.5, -6.02999973)
1409
o65.Color = Color3.new(0.384314, 0.145098, 0.819608)
1410
o66.Parent = o6
1411
o66.Material = Enum.Material.Wood
1412
o66.BrickColor = BrickColor.new("Cocoa")
1413
o66.Position = Vector3.new(98.347641, 22.9291687, -183.718475)
1414
o66.Rotation = Vector3.new(-21.7399998, 78.8300018, 26.2999992)
1415
o66.Anchored = true
1416
o66.FormFactor = Enum.FormFactor.Custom
1417
o66.Size = Vector3.new(4.6466589, 6.38915443, 4.6466589)
1418
o66.CFrame = CFrame.new(98.347641, 22.9291687, -183.718475, 0.173647091, -0.0858319327, 0.981060505, 0.0858310387, 0.993722916, 0.0717477277, -0.981060505, 0.0717466474, 0.17992416)
1419
o66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1420
o66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1421
o66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1422
o66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1423
o66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1424
o66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1425
o66.Color = Color3.new(0.247059, 0.192157, 0.160784)
1426
o66.Position = Vector3.new(98.347641, 22.9291687, -183.718475)
1427
o66.Orientation = Vector3.new(-4.11000013, 79.6100006, 4.94000006)
1428
o66.Color = Color3.new(0.247059, 0.192157, 0.160784)
1429
o67.Parent = o6
1430
o67.Material = Enum.Material.Wood
1431
o67.BrickColor = BrickColor.new("Cocoa")
1432
o67.Position = Vector3.new(100.370926, 51.2270966, -178.048828)
1433
o67.Rotation = Vector3.new(5, -15, 165)
1434
o67.Anchored = true
1435
o67.FormFactor = Enum.FormFactor.Custom
1436
o67.Size = Vector3.new(2.20716333, 5.92448616, 1.97482991)
1437
o67.CFrame = CFrame.new(100.370926, 51.2270966, -178.048828, -0.933012784, -0.24999997, -0.258818775, 0.279622942, -0.956411958, -0.0841856748, -0.226490945, -0.150917992, 0.962250352)
1438
o67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1439
o67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1440
o67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1441
o67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1442
o67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1443
o67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1444
o67.Color = Color3.new(0.247059, 0.192157, 0.160784)
1445
o67.Position = Vector3.new(100.370926, 51.2270966, -178.048828)
1446
o67.Orientation = Vector3.new(4.82999992, -15.0499992, 163.699997)
1447
o67.Color = Color3.new(0.247059, 0.192157, 0.160784)
1448
o68.Parent = o6
1449
o68.Material = Enum.Material.Wood
1450
o68.BrickColor = BrickColor.new("Cocoa")
1451
o68.Position = Vector3.new(97.5601273, 45.525177, -179.303772)
1452
o68.Rotation = Vector3.new(5, -15, 145)
1453
o68.Anchored = true
1454
o68.FormFactor = Enum.FormFactor.Custom
1455
o68.Size = Vector3.new(2.90416169, 8.59631252, 2.67182899)
1456
o68.CFrame = CFrame.new(97.5601273, 45.525177, -179.303772, -0.791238129, -0.554034591, -0.258820295, 0.589874089, -0.803095102, -0.0841830373, -0.161217019, -0.219280183, 0.962250173)
1457
o68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1458
o68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1459
o68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1460
o68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1461
o68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1462
o68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1463
o68.Color = Color3.new(0.247059, 0.192157, 0.160784)
1464
o68.Position = Vector3.new(97.5601273, 45.525177, -179.303772)
1465
o68.Orientation = Vector3.new(4.82999992, -15.0499992, 143.699997)
1466
o68.Color = Color3.new(0.247059, 0.192157, 0.160784)
1467
o69.Parent = o6
1468
o69.Material = Enum.Material.Wood
1469
o69.BrickColor = BrickColor.new("Cocoa")
1470
o69.Position = Vector3.new(88.4189453, 46.0147324, -176.292816)
1471
o69.Rotation = Vector3.new(-137.23999, 27.6800003, 137.73999)
1472
o69.Anchored = true
1473
o69.FormFactor = Enum.FormFactor.Custom
1474
o69.Size = Vector3.new(2.32332969, 6.73764992, 2.09099674)
1475
o69.CFrame = CFrame.new(88.4189453, 46.0147324, -176.292816, -0.65535593, -0.595552921, 0.464570016, -0.260401964, 0.75550282, 0.601170778, -0.709012926, 0.273005903, -0.650206447)
1476
o69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1477
o69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1478
o69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1479
o69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1480
o69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1481
o69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1482
o69.Color = Color3.new(0.247059, 0.192157, 0.160784)
1483
o69.Position = Vector3.new(88.4189453, 46.0147324, -176.292816)
1484
o69.Orientation = Vector3.new(-36.9500008, 144.449997, -19.0200005)
1485
o69.Color = Color3.new(0.247059, 0.192157, 0.160784)
1486
o70.Parent = o6
1487
o70.Material = Enum.Material.Wood
1488
o70.BrickColor = BrickColor.new("Cocoa")
1489
o70.Position = Vector3.new(92.5867767, 43.0453796, -178.570267)
1490
o70.Rotation = Vector3.new(-123.559998, -7.26999998, 124.110001)
1491
o70.Anchored = true
1492
o70.FormFactor = Enum.FormFactor.Custom
1493
o70.Size = Vector3.new(2.90416169, 6.73764992, 2.67182899)
1494
o70.CFrame = CFrame.new(92.5867767, 43.0453796, -178.570267, -0.556347013, -0.821269572, -0.126468927, -0.516786993, 0.22279115, 0.826616824, -0.650699019, 0.525243342, -0.54837054)
1495
o70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1496
o70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1497
o70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1498
o70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1499
o70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1500
o70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1501
o70.Color = Color3.new(0.247059, 0.192157, 0.160784)
1502
o70.Position = Vector3.new(92.5867767, 43.0453796, -178.570267)
1503
o70.Orientation = Vector3.new(-55.75, -167.009995, -66.6800003)
1504
o70.Color = Color3.new(0.247059, 0.192157, 0.160784)
1505
o71.Parent = o6
1506
o71.Material = Enum.Material.Wood
1507
o71.BrickColor = BrickColor.new("Cocoa")
1508
o71.Position = Vector3.new(100.053894, 21.4135685, -185.335907)
1509
o71.Rotation = Vector3.new(-31.2600002, 18.3999996, 39.1599998)
1510
o71.Anchored = true
1511
o71.FormFactor = Enum.FormFactor.Custom
1512
o71.Size = Vector3.new(4.6466589, 8.82864761, 4.6466589)
1513
o71.CFrame = CFrame.new(100.053894, 21.4135685, -185.335907, 0.735702932, -0.59927398, 0.315613598, 0.412887931, 0.766207695, 0.492391497, -0.536902964, -0.231940806, 0.811134219)
1514
o71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1515
o71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1516
o71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1517
o71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1518
o71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1519
o71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1520
o71.Color = Color3.new(0.247059, 0.192157, 0.160784)
1521
o71.Position = Vector3.new(100.053894, 21.4135685, -185.335907)
1522
o71.Orientation = Vector3.new(-29.5, 21.2600002, 28.3199997)
1523
o71.Color = Color3.new(0.247059, 0.192157, 0.160784)
1524
o72.Parent = o6
1525
o72.Material = Enum.Material.Wood
1526
o72.BrickColor = BrickColor.new("Cocoa")
1527
o72.Position = Vector3.new(93.0067596, 21.9593925, -186.610001)
1528
o72.Rotation = Vector3.new(154.300003, 51.9799995, 65)
1529
o72.Anchored = true
1530
o72.FormFactor = Enum.FormFactor.Custom
1531
o72.Size = Vector3.new(4.99515772, 9.18829155, 5.11132431)
1532
o72.CFrame = CFrame.new(93.0067596, 21.9593925, -186.610001, 0.260241091, -0.558185995, 0.787847042, -0.672326267, -0.690401495, -0.267063975, 0.693002224, -0.460189193, -0.554953933)
1533
o72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1534
o72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1535
o72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1536
o72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1537
o72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1538
o72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1539
o72.Color = Color3.new(0.247059, 0.192157, 0.160784)
1540
o72.Position = Vector3.new(93.0067596, 21.9593925, -186.610001)
1541
o72.Orientation = Vector3.new(15.4899998, 125.159996, -135.759995)
1542
o72.Color = Color3.new(0.247059, 0.192157, 0.160784)
1543
o73.Parent = o6
1544
o73.Material = Enum.Material.Wood
1545
o73.BrickColor = BrickColor.new("Cocoa")
1546
o73.Position = Vector3.new(95.0486603, 46.2005272, -188.167572)
1547
o73.Rotation = Vector3.new(-47.6699982, 1.82999992, 0.979999959)
1548
o73.Anchored = true
1549
o73.FormFactor = Enum.FormFactor.Custom
1550
o73.Size = Vector3.new(2.09099674, 8.59632301, 1.97483015)
1551
o73.CFrame = CFrame.new(95.0486603, 46.2005272, -188.167572, 0.999344468, -0.0170144141, 0.0319559276, -0.0121570053, 0.673716247, 0.738890111, -0.0341010131, -0.738794267, 0.673067689)
1552
o73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1553
o73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1554
o73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1555
o73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1556
o73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1557
o73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1558
o73.Color = Color3.new(0.247059, 0.192157, 0.160784)
1559
o73.Position = Vector3.new(95.0486603, 46.2005272, -188.167572)
1560
o73.Orientation = Vector3.new(-47.6399994, 2.72000003, -1.02999997)
1561
o73.Color = Color3.new(0.247059, 0.192157, 0.160784)
1562
o74.Parent = o6
1563
o74.Material = Enum.Material.Wood
1564
o74.BrickColor = BrickColor.new("Cocoa")
1565
o74.Position = Vector3.new(95.0315018, 42.1230316, -183.054611)
1566
o74.Rotation = Vector3.new(-57.0599976, 3.03999996, -1.86000001)
1567
o74.Anchored = true
1568
o74.FormFactor = Enum.FormFactor.Custom
1569
o74.Size = Vector3.new(2.90416169, 7.78314638, 2.67182899)
1570
o74.CFrame = CFrame.new(95.0315018, 42.1230316, -183.054611, 0.998065948, 0.032425914, 0.0530367605, -0.0621439964, 0.541979849, 0.838090658, -0.00156899984, -0.839765728, 0.542946696)
1571
o74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1572
o74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1573
o74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1574
o74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1575
o74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1576
o74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1577
o74.Color = Color3.new(0.247059, 0.192157, 0.160784)
1578
o74.Position = Vector3.new(95.0315018, 42.1230316, -183.054611)
1579
o74.Orientation = Vector3.new(-56.9399986, 5.57999992, -6.53999996)
1580
o74.Color = Color3.new(0.247059, 0.192157, 0.160784)
1581
o75.Parent = o6
1582
o75.Material = Enum.Material.Wood
1583
o75.BrickColor = BrickColor.new("Cocoa")
1584
o75.Position = Vector3.new(97.9308624, 23.0398102, -187.217453)
1585
o75.Rotation = Vector3.new(24.7999992, 31.1199989, 6.54999971)
1586
o75.Anchored = true
1587
o75.FormFactor = Enum.FormFactor.Custom
1588
o75.Size = Vector3.new(4.6466589, 8.36398315, 4.6466589)
1589
o75.CFrame = CFrame.new(97.9308624, 23.0398102, -187.217453, 0.850532711, -0.0975873694, 0.5167889, 0.318836868, 0.877145827, -0.359107643, -0.418254852, 0.470204145, 0.777155697)
1590
o75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1591
o75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1592
o75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1593
o75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1594
o75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1595
o75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1596
o75.Color = Color3.new(0.247059, 0.192157, 0.160784)
1597
o75.Position = Vector3.new(97.9308624, 23.0398102, -187.217453)
1598
o75.Orientation = Vector3.new(21.0499992, 33.6199989, 19.9799995)
1599
o75.Color = Color3.new(0.247059, 0.192157, 0.160784)
1600
o76.Parent = o6
1601
o76.Material = Enum.Material.Wood
1602
o76.BrickColor = BrickColor.new("Cocoa")
1603
o76.Position = Vector3.new(94.8216934, 23.1857681, -183.87413)
1604
o76.Rotation = Vector3.new(159.910004, 66.2200012, -146.649994)
1605
o76.Anchored = true
1606
o76.FormFactor = Enum.FormFactor.Custom
1607
o76.Size = Vector3.new(4.6466589, 6.38915443, 4.6466589)
1608
o76.CFrame = CFrame.new(94.8216934, 23.1857681, -183.87413, -0.336823881, 0.221667081, 0.915102959, 0.253642917, 0.957326055, -0.138535947, -0.906760693, 0.185447156, -0.378674537)
1609
o76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1610
o76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1611
o76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1612
o76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1613
o76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1614
o76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1615
o76.Color = Color3.new(0.247059, 0.192157, 0.160784)
1616
o76.Position = Vector3.new(94.8216934, 23.1857681, -183.87413)
1617
o76.Orientation = Vector3.new(7.96000004, 112.479996, 14.8399992)
1618
o76.Color = Color3.new(0.247059, 0.192157, 0.160784)
1619
o77.Parent = o6
1620
o77.Material = Enum.Material.Wood
1621
o77.BrickColor = BrickColor.new("Cocoa")
1622
o77.Position = Vector3.new(94.422348, 43.3825684, -179.940369)
1623
o77.Rotation = Vector3.new(7.54999971, 0.479999989, 8.34999943)
1624
o77.Anchored = true
1625
o77.FormFactor = Enum.FormFactor.Custom
1626
o77.Size = Vector3.new(2.90416169, 10.1064758, 2.67182899)
1627
o77.CFrame = CFrame.new(94.422348, 43.3825684, -179.940369, 0.989354134, -0.145286009, 0.00838558376, 0.145122021, 0.980656266, -0.131350413, 0.0108600007, 0.131169036, 0.991300523)
1628
o77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1629
o77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1630
o77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1631
o77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1632
o77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1633
o77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1634
o77.Color = Color3.new(0.247059, 0.192157, 0.160784)
1635
o77.Position = Vector3.new(94.422348, 43.3825684, -179.940369)
1636
o77.Orientation = Vector3.new(7.54999971, 0.479999989, 8.42000008)
1637
o77.Color = Color3.new(0.247059, 0.192157, 0.160784)
1638
o78.Parent = o6
1639
o78.Material = Enum.Material.Wood
1640
o78.BrickColor = BrickColor.new("Cocoa")
1641
o78.Position = Vector3.new(96.091713, 33.2778587, -181.925751)
1642
o78.Rotation = Vector3.new(12.2799997, 1.44999993, 9.55000019)
1643
o78.Anchored = true
1644
o78.FormFactor = Enum.FormFactor.Custom
1645
o78.Size = Vector3.new(3.71732712, 18.0058079, 3.48499441)
1646
o78.CFrame = CFrame.new(96.091713, 33.2778587, -181.925751, 0.985825241, -0.165843755, 0.0253852494, 0.167425051, 0.962668717, -0.21269165, 0.0108360024, 0.213926941, 0.976789534)
1647
o78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1648
o78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1649
o78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1650
o78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1651
o78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1652
o78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1653
o78.Color = Color3.new(0.247059, 0.192157, 0.160784)
1654
o78.Position = Vector3.new(96.091713, 33.2778587, -181.925751)
1655
o78.Orientation = Vector3.new(12.2799997, 1.49000001, 9.86999989)
1656
o78.Color = Color3.new(0.247059, 0.192157, 0.160784)
1657
o79.Parent = o6
1658
o79.Material = Enum.Material.Wood
1659
o79.BrickColor = BrickColor.new("Cocoa")
1660
o79.Position = Vector3.new(96.606041, 30.6599731, -182.500824)
1661
o79.Rotation = Vector3.new(15.1099997, -13.0499992, 12.46)
1662
o79.Anchored = true
1663
o79.FormFactor = Enum.FormFactor.Custom
1664
o79.Size = Vector3.new(4.64665937, 12.5459795, 4.64665937)
1665
o79.CFrame = CFrame.new(96.606041, 30.6599731, -182.500824, 0.951251209, -0.210126758, -0.225760803, 0.150772035, 0.95539397, -0.253949165, 0.269052058, 0.207531035, 0.940500855)
1666
o79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1667
o79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1668
o79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1669
o79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1670
o79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1671
o79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1672
o79.Color = Color3.new(0.247059, 0.192157, 0.160784)
1673
o79.Position = Vector3.new(96.606041, 30.6599731, -182.500824)
1674
o79.Orientation = Vector3.new(14.71, -13.5, 8.97000027)
1675
o79.Color = Color3.new(0.247059, 0.192157, 0.160784)
1676
o80.Parent = o6
1677
o80.Material = Enum.Material.Wood
1678
o80.BrickColor = BrickColor.new("Cocoa")
1679
o80.Position = Vector3.new(96.3574448, 22.6485596, -182.16095)
1680
o80.Rotation = Vector3.new(-175, 70, 175)
1681
o80.Anchored = true
1682
o80.FormFactor = Enum.FormFactor.Custom
1683
o80.Size = Vector3.new(4.6466589, 6.38915443, 4.6466589)
1684
o80.CFrame = CFrame.new(96.3574448, 22.6485596, -182.16095, -0.340718895, -0.0298089068, 0.939692616, -0.00523599796, 0.999541879, 0.0298089534, -0.940150619, 0.00523624523, -0.340718895)
1685
o80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1686
o80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1687
o80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1688
o80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1689
o80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1690
o80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1691
o80.Color = Color3.new(0.247059, 0.192157, 0.160784)
1692
o80.Position = Vector3.new(96.3574448, 22.6485596, -182.16095)
1693
o80.Orientation = Vector3.new(-1.70999992, 109.93, -0.299999982)
1694
o80.Color = Color3.new(0.247059, 0.192157, 0.160784)
1695
o81.Parent = o6
1696
o81.Material = Enum.Material.Wood
1697
o81.BrickColor = BrickColor.new("Cocoa")
1698
o81.Position = Vector3.new(96.7405243, 27.1313686, -183.098953)
1699
o81.Rotation = Vector3.new(-175, 70, -170)
1700
o81.Anchored = true
1701
o81.FormFactor = Enum.FormFactor.Custom
1702
o81.Size = Vector3.new(5.34365749, 5.34365749, 5.34365749)
1703
o81.CFrame = CFrame.new(96.7405243, 27.1313686, -183.098953, -0.336823881, 0.0593909658, 0.939692736, 0.253642917, 0.966838479, 0.0298092347, -0.906760693, 0.24838686, -0.340718389)
1704
o81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1705
o81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1706
o81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1707
o81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1708
o81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1709
o81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1710
o81.Color = Color3.new(0.247059, 0.192157, 0.160784)
1711
o81.Position = Vector3.new(96.7405243, 27.1313686, -183.098953)
1712
o81.Orientation = Vector3.new(-1.70999992, 109.93, 14.6999998)
1713
o81.Color = Color3.new(0.247059, 0.192157, 0.160784)
1714
o82.Parent = o6
1715
o82.Material = Enum.Material.Wood
1716
o82.BrickColor = BrickColor.new("Cocoa")
1717
o82.Position = Vector3.new(93.8972397, 34.1045952, -179.469635)
1718
o82.Rotation = Vector3.new(-127.959999, 11.9399996, -22.5)
1719
o82.Anchored = true
1720
o82.FormFactor = Enum.FormFactor.Custom
1721
o82.Size = Vector3.new(2.09099674, 3.83349848, 1.97483015)
1722
o82.CFrame = CFrame.new(93.8972397, 34.1045952, -179.469635, 0.903891265, 0.374398232, 0.206900164, 0.0846671537, -0.630696595, 0.771397173, 0.419301063, -0.679740906, -0.601780236)
1723
o82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1724
o82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1725
o82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1726
o82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1727
o82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1728
o82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1729
o82.Color = Color3.new(0.247059, 0.192157, 0.160784)
1730
o82.Position = Vector3.new(93.8972397, 34.1045952, -179.469635)
1731
o82.Orientation = Vector3.new(-50.4799995, 161.029999, 172.349991)
1732
o82.Color = Color3.new(0.247059, 0.192157, 0.160784)
1733
o83.Parent = o6
1734
o83.Material = Enum.Material.Wood
1735
o83.BrickColor = BrickColor.new("Cocoa")
1736
o83.Position = Vector3.new(97.755043, 21.9009857, -181.361786)
1737
o83.Rotation = Vector3.new(10.0900002, 63.7199974, -52.9599991)
1738
o83.Anchored = true
1739
o83.FormFactor = Enum.FormFactor.Custom
1740
o83.Size = Vector3.new(4.6466589, 6.38915443, 4.6466589)
1741
o83.CFrame = CFrame.new(97.755043, 21.9009857, -181.361786, 0.266658038, 0.353399962, 0.89666152, -0.691317081, 0.718378544, -0.0775428563, -0.671546042, -0.59920001, 0.435872883)
1742
o83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1743
o83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1744
o83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1745
o83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1746
o83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1747
o83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1748
o83.Color = Color3.new(0.247059, 0.192157, 0.160784)
1749
o83.Position = Vector3.new(97.755043, 21.9009857, -181.361786)
1750
o83.Orientation = Vector3.new(4.44999981, 64.0800018, -43.8999977)
1751
o83.Color = Color3.new(0.247059, 0.192157, 0.160784)
1752
o84.Parent = o6
1753
o84.Material = Enum.Material.Wood
1754
o84.BrickColor = BrickColor.new("Cocoa")
1755
o84.Position = Vector3.new(113.105141, 26.2516937, -215.44165)
1756
o84.Rotation = Vector3.new(-109.25, -19.3199997, -121.110001)
1757
o84.Anchored = true
1758
o84.FormFactor = Enum.FormFactor.Custom
1759
o84.Size = Vector3.new(1.31839693, 6.0426569, 1.20853066)
1760
o84.CFrame = CFrame.new(113.105141, 26.2516937, -215.44165, -0.487555832, 0.808010459, -0.330769509, 0.120891958, 0.437676042, 0.890968442, 0.864681721, 0.394409537, -0.311073452)
1761
o84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1762
o84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1763
o84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1764
o84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1765
o84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1766
o84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1767
o84.Color = Color3.new(0.247059, 0.192157, 0.160784)
1768
o84.Position = Vector3.new(113.105141, 26.2516937, -215.44165)
1769
o84.Orientation = Vector3.new(-63, -133.23999, 15.4399996)
1770
o84.Color = Color3.new(0.247059, 0.192157, 0.160784)
1771
o85.Parent = o6
1772
o85.Material = Enum.Material.Wood
1773
o85.BrickColor = BrickColor.new("Cocoa")
1774
o85.Position = Vector3.new(112.097549, 25.8185959, -215.949326)
1775
o85.Rotation = Vector3.new(-106.57, -15.0199995, -120.32)
1776
o85.Anchored = true
1777
o85.FormFactor = Enum.FormFactor.Custom
1778
o85.Size = Vector3.new(1.97759557, 3.62559628, 1.86772919)
1779
o85.CFrame = CFrame.new(112.097549, 25.8185959, -215.949326, -0.487555832, 0.833764076, -0.259088337, 0.120891958, 0.358357817, 0.92572391, 0.864681721, 0.420020401, -0.275514781)
1780
o85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1781
o85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1782
o85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1783
o85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1784
o85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1785
o85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1786
o85.Color = Color3.new(0.247059, 0.192157, 0.160784)
1787
o85.Position = Vector3.new(112.097549, 25.8185959, -215.949326)
1788
o85.Orientation = Vector3.new(-67.7799988, -136.759995, 18.6399994)
1789
o85.Color = Color3.new(0.247059, 0.192157, 0.160784)
1790
o86.Parent = o6
1791
o86.Material = Enum.Material.Wood
1792
o86.BrickColor = BrickColor.new("Cocoa")
1793
o86.Position = Vector3.new(104.992638, 43.8267899, -216.539993)
1794
o86.Rotation = Vector3.new(-180, -25, -15)
1795
o86.Anchored = true
1796
o86.FormFactor = Enum.FormFactor.Custom
1797
o86.Size = Vector3.new(2.08746219, 5.60318327, 1.86772895)
1798
o86.CFrame = CFrame.new(104.992638, 43.8267899, -216.539993, 0.875426114, 0.234569415, -0.422618508, 0.258819044, -0.965925813, 5.60789374e-07, -0.408218056, -0.109382197, -0.906307638)
1799
o86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1800
o86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1801
o86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1802
o86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1803
o86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1804
o86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1805
o86.Color = Color3.new(0.247059, 0.192157, 0.160784)
1806
o86.Position = Vector3.new(104.992638, 43.8267899, -216.539993)
1807
o86.Orientation = Vector3.new(0, -155, 165)
1808
o86.Color = Color3.new(0.247059, 0.192157, 0.160784)
1809
o87.Parent = o6
1810
o87.Material = Enum.Material.Wood
1811
o87.BrickColor = BrickColor.new("Cocoa")
1812
o87.Position = Vector3.new(107.487, 38.351181, -217.703125)
1813
o87.Rotation = Vector3.new(180, -25, -35)
1814
o87.Anchored = true
1815
o87.FormFactor = Enum.FormFactor.Custom
1816
o87.Size = Vector3.new(2.74666047, 8.13010883, 2.52692771)
1817
o87.CFrame = CFrame.new(107.487, 38.351181, -217.703125, 0.742402971, 0.519838393, -0.422617942, 0.573578, -0.819150925, -2.22170058e-07, -0.346188009, -0.242404193, -0.906307936)
1818
o87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1819
o87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1820
o87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1821
o87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1822
o87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1823
o87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1824
o87.Color = Color3.new(0.247059, 0.192157, 0.160784)
1825
o87.Position = Vector3.new(107.487, 38.351181, -217.703125)
1826
o87.Orientation = Vector3.new(0, -155, 145)
1827
o87.Color = Color3.new(0.247059, 0.192157, 0.160784)
1828
o88.Parent = o6
1829
o88.Material = Enum.Material.Wood
1830
o88.BrickColor = BrickColor.new("Cocoa")
1831
o88.Position = Vector3.new(112.312218, 39.0606155, -225.402527)
1832
o88.Rotation = Vector3.new(-33, 5.4000001, -18.9799995)
1833
o88.Anchored = true
1834
o88.FormFactor = Enum.FormFactor.Custom
1835
o88.Size = Vector3.new(2.19732857, 6.37224627, 1.97759557)
1836
o88.CFrame = CFrame.new(112.312218, 39.0606155, -225.402527, 0.941453874, 0.323727936, 0.0941530541, -0.321205974, 0.776422381, 0.542213082, 0.102426983, -0.540711164, 0.834949195)
1837
o88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1838
o88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1839
o88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1840
o88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1841
o88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1842
o88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1843
o88.Color = Color3.new(0.247059, 0.192157, 0.160784)
1844
o88.Position = Vector3.new(112.312218, 39.0606155, -225.402527)
1845
o88.Orientation = Vector3.new(-32.829998, 6.42999983, -22.4699993)
1846
o88.Color = Color3.new(0.247059, 0.192157, 0.160784)
1847
o89.Parent = o6
1848
o89.Material = Enum.Material.Wood
1849
o89.BrickColor = BrickColor.new("Cocoa")
1850
o89.Position = Vector3.new(110.514557, 36.0752563, -221.41246)
1851
o89.Rotation = Vector3.new(-63.1699982, 29.6299992, -20.5599995)
1852
o89.Anchored = true
1853
o89.FormFactor = Enum.FormFactor.Custom
1854
o89.Size = Vector3.new(2.74666047, 6.37224627, 2.52692771)
1855
o89.CFrame = CFrame.new(110.514557, 36.0752563, -221.41246, 0.813903987, 0.305275977, 0.494334757, -0.571533024, 0.267720819, 0.775677502, 0.104451999, -0.913855672, 0.392374367)
1856
o89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1857
o89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1858
o89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1859
o89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1860
o89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1861
o89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1862
o89.Color = Color3.new(0.247059, 0.192157, 0.160784)
1863
o89.Position = Vector3.new(110.514557, 36.0752563, -221.41246)
1864
o89.Orientation = Vector3.new(-50.8699989, 51.5599976, -64.9000015)
1865
o89.Color = Color3.new(0.247059, 0.192157, 0.160784)
1866
o90.Parent = o6
1867
o90.Material = Enum.Material.Wood
1868
o90.BrickColor = BrickColor.new("Cocoa")
1869
o90.Position = Vector3.new(114.710381, 38.2568359, -212.789886)
1870
o90.Rotation = Vector3.new(-119.18, -24.4599991, -144.860001)
1871
o90.Anchored = true
1872
o90.FormFactor = Enum.FormFactor.Custom
1873
o90.Size = Vector3.new(1.97759557, 8.13011837, 1.86772919)
1874
o90.CFrame = CFrame.new(114.710381, 38.2568359, -212.789886, -0.744386077, 0.523858845, -0.414078861, -0.0150830019, 0.606762052, 0.794740438, 0.667579055, 0.597839296, -0.443763882)
1875
o90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1876
o90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1877
o90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1878
o90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1879
o90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1880
o90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1881
o90.Color = Color3.new(0.247059, 0.192157, 0.160784)
1882
o90.Position = Vector3.new(114.710381, 38.2568359, -212.789886)
1883
o90.Orientation = Vector3.new(-52.6299973, -136.979996, -1.41999996)
1884
o90.Color = Color3.new(0.247059, 0.192157, 0.160784)
1885
o91.Parent = o6
1886
o91.Material = Enum.Material.Wood
1887
o91.BrickColor = BrickColor.new("Cocoa")
1888
o91.Position = Vector3.new(111.410248, 34.8366051, -216.748016)
1889
o91.Rotation = Vector3.new(-110.18, -19.9599991, -144.690002)
1890
o91.Anchored = true
1891
o91.FormFactor = Enum.FormFactor.Custom
1892
o91.Size = Vector3.new(2.74666047, 7.36104298, 2.52692771)
1893
o91.CFrame = CFrame.new(111.410248, 34.8366051, -216.748016, -0.767038465, 0.543261826, -0.34134829, -0.0620440356, 0.466726989, 0.882222474, 0.638594329, 0.697877109, -0.324291378)
1894
o91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1895
o91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1896
o91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1897
o91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1898
o91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1899
o91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1900
o91.Color = Color3.new(0.247059, 0.192157, 0.160784)
1901
o91.Position = Vector3.new(111.410248, 34.8366051, -216.748016)
1902
o91.Orientation = Vector3.new(-61.9099998, -133.529999, -7.56999969)
1903
o91.Color = Color3.new(0.247059, 0.192157, 0.160784)
1904
o92.Parent = o6
1905
o92.Material = Enum.Material.Wood
1906
o92.BrickColor = BrickColor.new("Cocoa")
1907
o92.Position = Vector3.new(110.032341, 36.2800102, -219.286514)
1908
o92.Rotation = Vector3.new(176.649994, -40.4300003, -173.800003)
1909
o92.Anchored = true
1910
o92.FormFactor = Enum.FormFactor.Custom
1911
o92.Size = Vector3.new(2.74666047, 9.55837154, 2.52692771)
1912
o92.CFrame = CFrame.new(110.032341, 36.2800102, -219.286514, -0.756711841, 0.0822420195, -0.648554862, 0.145515963, 0.988356829, -0.0444514342, 0.637347817, -0.128012002, -0.75986886)
1913
o92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1914
o92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1915
o92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1916
o92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1917
o92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1918
o92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1919
o92.Color = Color3.new(0.247059, 0.192157, 0.160784)
1920
o92.Position = Vector3.new(110.032341, 36.2800102, -219.286514)
1921
o92.Orientation = Vector3.new(2.54999995, -139.520004, 8.38000011)
1922
o92.Color = Color3.new(0.247059, 0.192157, 0.160784)
1923
o93.Parent = o6
1924
o93.Material = Enum.Material.Wood
1925
o93.BrickColor = BrickColor.new("Cocoa")
1926
o93.Position = Vector3.new(109.489807, 26.5960217, -217.476761)
1927
o93.Rotation = Vector3.new(170.319992, -41.0599976, -176.660004)
1928
o93.Anchored = true
1929
o93.FormFactor = Enum.FormFactor.Custom
1930
o93.Size = Vector3.new(3.51572537, 17.0292988, 3.29599261)
1931
o93.CFrame = CFrame.new(109.489807, 26.5960217, -217.476761, -0.752744794, 0.043987073, -0.656841218, 0.167730957, 0.977650642, -0.126749992, 0.636585832, -0.205583006, -0.743299425)
1932
o93.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1933
o93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1934
o93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1935
o93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1936
o93.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1937
o93.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1938
o93.Color = Color3.new(0.247059, 0.192157, 0.160784)
1939
o93.Position = Vector3.new(109.489807, 26.5960217, -217.476761)
1940
o93.Orientation = Vector3.new(7.27999973, -138.529999, 9.73999977)
1941
o93.Color = Color3.new(0.247059, 0.192157, 0.160784)
1942
o94.Parent = o6
1943
o94.Material = Enum.Material.Wood
1944
o94.BrickColor = BrickColor.new("Cocoa")
1945
o94.Position = Vector3.new(109.326775, 24.0821266, -216.914307)
1946
o94.Rotation = Vector3.new(169, -26.3299999, -174.779999)
1947
o94.Anchored = true
1948
o94.FormFactor = Enum.FormFactor.Custom
1949
o94.Size = Vector3.new(4.39465714, 11.8655729, 4.39465714)
1950
o94.CFrame = CFrame.new(109.326775, 24.0821266, -216.914307, -0.892538846, 0.0816005245, -0.443526447, 0.17364797, 0.969846249, -0.171010315, 0.416197926, -0.22965081, -0.879795313)
1951
o94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1952
o94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1953
o94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1954
o94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1955
o94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1956
o94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1957
o94.Color = Color3.new(0.247059, 0.192157, 0.160784)
1958
o94.Position = Vector3.new(109.326775, 24.0821266, -216.914307)
1959
o94.Orientation = Vector3.new(9.84999943, -153.25, 10.1499996)
1960
o94.Color = Color3.new(0.247059, 0.192157, 0.160784)
1961
o95.Parent = o6
1962
o95.Material = Enum.Material.Wood
1963
o95.BrickColor = BrickColor.new("Cocoa")
1964
o95.Position = Vector3.new(110.29599, 16.5620499, -215.921753)
1965
o95.Rotation = Vector3.new(-180, -25, 175)
1966
o95.Anchored = true
1967
o95.FormFactor = Enum.FormFactor.Custom
1968
o95.Size = Vector3.new(4.39465618, 6.04265165, 4.39465618)
1969
o95.CFrame = CFrame.new(110.29599, 16.5620499, -215.921753, -0.902858973, -0.0789900199, -0.42261821, -0.0871559978, 0.996194661, 3.31776249e-07, 0.421009988, 0.0368340127, -0.906307817)
1970
o95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1971
o95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1972
o95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1973
o95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1974
o95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1975
o95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1976
o95.Color = Color3.new(0.247059, 0.192157, 0.160784)
1977
o95.Position = Vector3.new(110.29599, 16.5620499, -215.921753)
1978
o95.Orientation = Vector3.new(0, -155, -5)
1979
o95.Color = Color3.new(0.247059, 0.192157, 0.160784)
1980
o96.Parent = o6
1981
o96.Material = Enum.Material.Wood
1982
o96.BrickColor = BrickColor.new("Cocoa")
1983
o96.Position = Vector3.new(109.015869, 20.7082882, -216.173416)
1984
o96.Rotation = Vector3.new(-180, -25, -170)
1985
o96.Anchored = true
1986
o96.FormFactor = Enum.FormFactor.Custom
1987
o96.Size = Vector3.new(5.05385494, 5.05385494, 5.05385494)
1988
o96.CFrame = CFrame.new(109.015869, 20.7082882, -216.173416, -0.892538846, 0.157378539, -0.422618419, 0.17364797, 0.984807789, 6.59647341e-08, 0.416197926, -0.0733867809, -0.906307697)
1989
o96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1990
o96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1991
o96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1992
o96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1993
o96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1994
o96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1995
o96.Color = Color3.new(0.247059, 0.192157, 0.160784)
1996
o96.Position = Vector3.new(109.015869, 20.7082882, -216.173416)
1997
o96.Orientation = Vector3.new(0, -155, 10)
1998
o96.Color = Color3.new(0.247059, 0.192157, 0.160784)
1999
o97.Parent = o6
2000
o97.Material = Enum.Material.Wood
2001
o97.BrickColor = BrickColor.new("Cocoa")
2002
o97.Position = Vector3.new(106.703384, 16.0696411, -212.829422)
2003
o97.Rotation = Vector3.new(156.940002, -36.5999985, 25.6999989)
2004
o97.Anchored = true
2005
o97.FormFactor = Enum.FormFactor.Custom
2006
o97.Size = Vector3.new(4.72425508, 7.25118113, 4.8341217)
2007
o97.CFrame = CFrame.new(106.703384, 16.0696411, -212.829422, 0.72343123, -0.348100513, -0.596215904, -0.609369218, -0.727880895, -0.314417988, -0.324525118, 0.59077543, -0.738693416)
2008
o97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2009
o97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2010
o97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2011
o97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2012
o97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2013
o97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2014
o97.Color = Color3.new(0.247059, 0.192157, 0.160784)
2015
o97.Position = Vector3.new(106.703384, 16.0696411, -212.829422)
2016
o97.Orientation = Vector3.new(18.3299999, -141.089996, -140.059998)
2017
o97.Color = Color3.new(0.247059, 0.192157, 0.160784)
2018
o98.Parent = o6
2019
o98.Material = Enum.Material.Wood
2020
o98.BrickColor = BrickColor.new("Cocoa")
2021
o98.Position = Vector3.new(107.112785, 15.1367702, -219.152527)
2022
o98.Rotation = Vector3.new(-124.18, 47.2799988, 158.87999)
2023
o98.Anchored = true
2024
o98.FormFactor = Enum.FormFactor.Custom
2025
o98.Size = Vector3.new(4.39465618, 8.34984398, 4.39465618)
2026
o98.CFrame = CFrame.new(107.112785, 15.1367702, -219.152527, -0.632793844, -0.244473964, 0.734713852, 0.364522874, 0.743076921, 0.561212718, -0.683150828, 0.622951925, -0.381098151)
2027
o98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2028
o98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2029
o98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2030
o98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2031
o98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2032
o98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2033
o98.Color = Color3.new(0.247059, 0.192157, 0.160784)
2034
o98.Position = Vector3.new(107.112785, 15.1367702, -219.152527)
2035
o98.Orientation = Vector3.new(-34.1399994, 117.419998, 26.1299992)
2036
o98.Color = Color3.new(0.247059, 0.192157, 0.160784)
2037
o99.Parent = o6
2038
o99.Material = Enum.Material.Wood
2039
o99.BrickColor = BrickColor.new("Cocoa")
2040
o99.Position = Vector3.new(105.388214, 16.5138683, -216.986115)
2041
o99.Rotation = Vector3.new(153.62999, 49.2299995, -142.339996)
2042
o99.Anchored = true
2043
o99.FormFactor = Enum.FormFactor.Custom
2044
o99.Size = Vector3.new(4.39465618, 7.91037941, 4.39465618)
2045
o99.CFrame = CFrame.new(105.388214, 16.5138683, -216.986115, -0.516888916, 0.398980021, 0.757390797, 0.281169981, 0.91478914, -0.290007412, -0.808559954, 0.0630539581, -0.585025609)
2046
o99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2047
o99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2048
o99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2049
o99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2050
o99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2051
o99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2052
o99.Color = Color3.new(0.247059, 0.192157, 0.160784)
2053
o99.Position = Vector3.new(105.388214, 16.5138683, -216.986115)
2054
o99.Orientation = Vector3.new(16.8599987, 127.68, 17.0900002)
2055
o99.Color = Color3.new(0.247059, 0.192157, 0.160784)
2056
o100.Parent = o6
2057
o100.Material = Enum.Material.Wood
2058
o100.BrickColor = BrickColor.new("Cocoa")
2059
o100.Position = Vector3.new(111.367767, 14.012476, -214.935257)
2060
o100.Rotation = Vector3.new(177.589996, 21.1700001, 132.470001)
2061
o100.Anchored = true
2062
o100.FormFactor = Enum.FormFactor.Custom
2063
o100.Size = Vector3.new(4.39465618, 6.04265165, 4.39465618)
2064
o100.CFrame = CFrame.new(111.367767, 14.012476, -214.935257, -0.629662931, -0.68782115, 0.361146271, -0.747214913, 0.663421929, -0.0392578915, -0.212589964, -0.294573069, -0.931682527)
2065
o100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2066
o100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2067
o100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2068
o100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2069
o100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2070
o100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2071
o100.Color = Color3.new(0.247059, 0.192157, 0.160784)
2072
o100.Position = Vector3.new(111.367767, 14.012476, -214.935257)
2073
o100.Orientation = Vector3.new(2.25, 158.809998, -48.3999977)
2074
o100.Color = Color3.new(0.247059, 0.192157, 0.160784)
2075
o101.Parent = o6
2076
o101.Material = Enum.Material.Wood
2077
o101.BrickColor = BrickColor.new("Cocoa")
2078
o101.Position = Vector3.new(108.647087, 16.6980438, -217.666962)
2079
o101.Rotation = Vector3.new(-174.979996, 4.98000002, 179.559998)
2080
o101.Anchored = true
2081
o101.FormFactor = Enum.FormFactor.Custom
2082
o101.Size = Vector3.new(4.39465618, 6.04265165, 4.39465618)
2083
o101.CFrame = CFrame.new(108.647087, 16.6980438, -217.666962, -0.996194661, -0.00759613235, 0.0868243203, 0, 0.99619472, 0.0871556178, -0.087155968, 0.0868239626, -0.992403865)
2084
o101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2085
o101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2086
o101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2087
o101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2088
o101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2089
o101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2090
o101.Color = Color3.new(0.247059, 0.192157, 0.160784)
2091
o101.Position = Vector3.new(108.647087, 16.6980438, -217.666962)
2092
o101.Orientation = Vector3.new(-5, 175, 0)
2093
o101.Color = Color3.new(0.247059, 0.192157, 0.160784)
2094
o102.Parent = o6
2095
o102.Material = Enum.Material.Wood
2096
o102.BrickColor = BrickColor.new("Cocoa")
2097
o102.Position = Vector3.new(108.770462, 16.9269753, -214.330246)
2098
o102.Rotation = Vector3.new(169, -26.3299999, -174.779999)
2099
o102.Anchored = true
2100
o102.FormFactor = Enum.FormFactor.Custom
2101
o102.Size = Vector3.new(4.39465618, 6.04265165, 4.39465618)
2102
o102.CFrame = CFrame.new(108.770462, 16.9269753, -214.330246, -0.892538846, 0.0816005245, -0.443526447, 0.17364797, 0.969846249, -0.171010315, 0.416197926, -0.22965081, -0.879795313)
2103
o102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2104
o102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2105
o102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2106
o102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2107
o102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2108
o102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2109
o102.Color = Color3.new(0.247059, 0.192157, 0.160784)
2110
o102.Position = Vector3.new(108.770462, 16.9269753, -214.330246)
2111
o102.Orientation = Vector3.new(9.84999943, -153.25, 10.1499996)
2112
o102.Color = Color3.new(0.247059, 0.192157, 0.160784)
2113
o103.Parent = o6
2114
o103.Material = Enum.Material.Grass
2115
o103.BrickColor = BrickColor.new("Royal purple")
2116
o103.Transparency = 0.30000001192093
2117
o103.Position = Vector3.new(116.965363, 29.5051746, -173.62619)
2118
o103.Rotation = Vector3.new(171.199997, 61.8499985, -160.019989)
2119
o103.Anchored = true
2120
o103.FormFactor = Enum.FormFactor.Custom
2121
o103.Size = Vector3.new(5.39263582, 3.82262874, 5.18785143)
2122
o103.CFrame = CFrame.new(116.965363, 29.5051746, -173.62619, -0.443435162, 0.1611958, 0.881692231, 0.210886076, 0.974843264, -0.0721638948, -0.871144295, 0.153936595, -0.466273725)
2123
o103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2124
o103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2125
o103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2126
o103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2127
o103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2128
o103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2129
o103.Color = Color3.new(0.368627, 0, 1)
2130
o103.Position = Vector3.new(116.965363, 29.5051746, -173.62619)
2131
o103.Orientation = Vector3.new(4.13999987, 117.869995, 12.21)
2132
o103.Color = Color3.new(0.368627, 0, 1)
2133
o104.Parent = o6
2134
o104.Material = Enum.Material.Grass
2135
o104.BrickColor = BrickColor.new("Royal purple")
2136
o104.Transparency = 0.10000000149012
2137
o104.Position = Vector3.new(115.25425, 29.5838089, -176.481537)
2138
o104.Rotation = Vector3.new(-85.659996, 64.1699982, 63.2599983)
2139
o104.Anchored = true
2140
o104.FormFactor = Enum.FormFactor.Custom
2141
o104.Size = Vector3.new(5.39263582, 2.79870939, 5.25611258)
2142
o104.CFrame = CFrame.new(115.25425, 29.5838089, -176.481537, 0.196023926, -0.38908124, 0.900105774, -0.336166859, 0.835626483, 0.434419364, -0.921176672, -0.387742311, 0.0330065638)
2143
o104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2144
o104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2145
o104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2146
o104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2147
o104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2148
o104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2149
o104.Color = Color3.new(0.384314, 0.145098, 0.819608)
2150
o104.Position = Vector3.new(115.25425, 29.5838089, -176.481537)
2151
o104.Orientation = Vector3.new(-25.75, 87.9000015, -21.9099998)
2152
o104.Color = Color3.new(0.384314, 0.145098, 0.819608)
2153
o105.Parent = o6
2154
o105.Material = Enum.Material.Grass
2155
o105.BrickColor = BrickColor.new("Royal purple")
2156
o105.Transparency = 0.10000000149012
2157
o105.Position = Vector3.new(116.392685, 28.7176533, -179.546082)
2158
o105.Rotation = Vector3.new(-17.7799988, 55.1199989, -5.65999985)
2159
o105.Anchored = true
2160
o105.FormFactor = Enum.FormFactor.Custom
2161
o105.Size = Vector3.new(5.39263582, 2.25261974, 5.25611258)
2162
o105.CFrame = CFrame.new(116.392685, 28.7176533, -179.546082, 0.569051206, 0.056349948, 0.820369065, -0.343182117, 0.922887325, 0.174657404, -0.747266233, -0.380925, 0.544508398)
2163
o105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2164
o105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2165
o105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2166
o105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2167
o105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2168
o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2169
o105.Color = Color3.new(0.384314, 0.145098, 0.819608)
2170
o105.Position = Vector3.new(116.392685, 28.7176533, -179.546082)
2171
o105.Orientation = Vector3.new(-10.0599995, 56.4300003, -20.3999996)
2172
o105.Color = Color3.new(0.384314, 0.145098, 0.819608)
2173
o106.Parent = o6
2174
o106.Material = Enum.Material.Grass
2175
o106.BrickColor = BrickColor.new("Royal purple")
2176
o106.Transparency = 0.30000001192093
2177
o106.Position = Vector3.new(111.2155, 48.7410355, -221.012878)
2178
o106.Rotation = Vector3.new(169, -26.3299999, 170.220001)
2179
o106.Anchored = true
2180
o106.FormFactor = Enum.FormFactor.Custom
2181
o106.Size = Vector3.new(8.1301136, 7.58078241, 12.0853062)
2182
o106.CFrame = CFrame.new(111.2155, 48.7410355, -221.012878, -0.883246303, -0.152185351, -0.443526328, -0.0832830295, 0.981743038, -0.171010122, 0.461454183, -0.114105836, -0.879795372)
2183
o106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2184
o106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2185
o106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2186
o106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2187
o106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2188
o106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2189
o106.Color = Color3.new(0.384314, 0.145098, 0.819608)
2190
o106.Position = Vector3.new(111.2155, 48.7410355, -221.012878)
2191
o106.Orientation = Vector3.new(9.84999943, -153.25, -4.8499999)
2192
o106.Color = Color3.new(0.384314, 0.145098, 0.819608)
2193
o107.Parent = o6
2194
o107.Material = Enum.Material.Wood
2195
o107.BrickColor = BrickColor.new("Cocoa")
2196
o107.Position = Vector3.new(114.170456, 26.8287201, -214.921722)
2197
o107.Rotation = Vector3.new(-109.25, -19.3199997, -121.110001)
2198
o107.Anchored = true
2199
o107.FormFactor = Enum.FormFactor.Custom
2200
o107.Size = Vector3.new(0.878931284, 8.67944717, 0.769065082)
2201
o107.CFrame = CFrame.new(114.170456, 26.8287201, -214.921722, -0.487555832, 0.808010459, -0.330769509, 0.120891958, 0.437676042, 0.890968442, 0.864681721, 0.394409537, -0.311073452)
2202
o107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2203
o107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2204
o107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2205
o107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2206
o107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2207
o107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2208
o107.Color = Color3.new(0.247059, 0.192157, 0.160784)
2209
o107.Position = Vector3.new(114.170456, 26.8287201, -214.921722)
2210
o107.Orientation = Vector3.new(-63, -133.23999, 15.4399996)
2211
o107.Color = Color3.new(0.247059, 0.192157, 0.160784)
2212
o108.Parent = o6
2213
o108.Material = Enum.Material.Grass
2214
o108.BrickColor = BrickColor.new("Royal purple")
2215
o108.Transparency = 0.30000001192093
2216
o108.Position = Vector3.new(117.847717, 28.984005, -172.353241)
2217
o108.Rotation = Vector3.new(-177.080002, 18.7600002, -157.849991)
2218
o108.Anchored = true
2219
o108.FormFactor = Enum.FormFactor.Custom
2220
o108.Size = Vector3.new(5.39263582, 3.07175636, 5.18785143)
2221
o108.CFrame = CFrame.new(117.847717, 28.984005, -172.353241, -0.876999319, 0.35691905, 0.321684688, 0.391649157, 0.918848634, 0.0482503138, -0.278358102, 0.168303013, -0.945616603)
2222
o108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2223
o108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2224
o108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2225
o108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2226
o108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2227
o108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2228
o108.Color = Color3.new(0.384314, 0.145098, 0.819608)
2229
o108.Position = Vector3.new(117.847717, 28.984005, -172.353241)
2230
o108.Orientation = Vector3.new(-2.76999998, 161.209991, 23.0900002)
2231
o108.Color = Color3.new(0.384314, 0.145098, 0.819608)
2232
o109.Parent = o6
2233
o109.Material = Enum.Material.Grass
2234
o109.BrickColor = BrickColor.new("Dark indigo")
2235
o109.Transparency = 0.30000001192093
2236
o109.Position = Vector3.new(121.31662, 26.9807854, -175.649689)
2237
o109.Rotation = Vector3.new(25.7799988, 5.48999977, -23.3400002)
2238
o109.Anchored = true
2239
o109.FormFactor = Enum.FormFactor.Custom
2240
o109.Size = Vector3.new(5.39263582, 4.09567356, 6.68959856)
2241
o109.CFrame = CFrame.new(121.31662, 26.9807854, -175.649689, 0.913982093, 0.394295633, 0.0957488194, -0.318464041, 0.843322575, -0.432882994, -0.251431018, 0.365154713, 0.896350682)
2242
o109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2243
o109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2244
o109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2245
o109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2246
o109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2247
o109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2248
o109.Color = Color3.new(0.262745, 0.105882, 0.560784)
2249
o109.Position = Vector3.new(121.31662, 26.9807854, -175.649689)
2250
o109.Orientation = Vector3.new(25.6499996, 6.0999999, -20.6899986)
2251
o109.Color = Color3.new(0.262745, 0.105882, 0.560784)
2252
o110.Parent = o6
2253
o110.Material = Enum.Material.Grass
2254
o110.BrickColor = BrickColor.new("Dark indigo")
2255
o110.Transparency = 0.20000000298023
2256
o110.Position = Vector3.new(105.109962, 46.9687691, -217.826859)
2257
o110.Rotation = Vector3.new(-138.279999, 73.7900009, 130.720001)
2258
o110.Anchored = true
2259
o110.FormFactor = Enum.FormFactor.Custom
2260
o110.Size = Vector3.new(8.67944527, 4.5045228, 10.7669058)
2261
o110.CFrame = CFrame.new(105.109962, 46.9687691, -217.826859, -0.182093963, -0.211555004, 0.960253239, -0.148885965, 0.97125268, 0.185744882, -0.971943796, -0.109145217, -0.208356827)
2262
o110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2263
o110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2264
o110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2265
o110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2266
o110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2267
o110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2268
o110.Color = Color3.new(0.262745, 0.105882, 0.560784)
2269
o110.Position = Vector3.new(105.109962, 46.9687691, -217.826859)
2270
o110.Orientation = Vector3.new(-10.6999998, 102.239998, -8.72000027)
2271
o110.Color = Color3.new(0.262745, 0.105882, 0.560784)
2272
o111.Parent = o6
2273
o111.Material = Enum.Material.Wood
2274
o111.BrickColor = BrickColor.new("Cocoa")
2275
o111.Position = Vector3.new(115.804268, 39.5233727, -211.541977)
2276
o111.Rotation = Vector3.new(-123.809998, -26.6899986, -145.25)
2277
o111.Anchored = true
2278
o111.FormFactor = Enum.FormFactor.Custom
2279
o111.Size = Vector3.new(1.53812981, 12.3050547, 1.31839693)
2280
o111.CFrame = CFrame.new(115.804268, 39.5233727, -211.541977, -0.734094203, 0.509288967, -0.449144214, 0.0105240028, 0.669885933, 0.742389381, 0.678966165, 0.540256917, -0.497119129)
2281
o111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2282
o111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2283
o111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2284
o111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2285
o111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2286
o111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2287
o111.Color = Color3.new(0.247059, 0.192157, 0.160784)
2288
o111.Position = Vector3.new(115.804268, 39.5233727, -211.541977)
2289
o111.Orientation = Vector3.new(-47.9399986, -137.899994, 0.899999976)
2290
o111.Color = Color3.new(0.247059, 0.192157, 0.160784)
2291
o112.Parent = o6
2292
o112.Material = Enum.Material.Grass
2293
o112.BrickColor = BrickColor.new("Pink")
2294
o112.Transparency = 0.5
2295
o112.Position = Vector3.new(71.1536865, 22.1200104, -225.242889)
2296
o112.Rotation = Vector3.new(0, -25, 0)
2297
o112.Anchored = true
2298
o112.Size = Vector3.new(7.60653305, 7.60653305, 7.60653305)
2299
o112.CFrame = CFrame.new(71.1536865, 22.1200104, -225.242889, 0.906302869, 0, -0.422615439, 0, 1, 0, 0.422615439, 0, 0.906302869)
2300
o112.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2301
o112.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2302
o112.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2303
o112.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2304
o112.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2305
o112.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2306
o112.Color = Color3.new(1, 0.4, 0.8)
2307
o112.Position = Vector3.new(71.1536865, 22.1200104, -225.242889)
2308
o112.Orientation = Vector3.new(0, -25, 0)
2309
o112.Color = Color3.new(1, 0.4, 0.8)
2310
o113.Parent = o6
2311
o113.Material = Enum.Material.Grass
2312
o113.BrickColor = BrickColor.new("Royal purple")
2313
o113.Position = Vector3.new(120.374634, 44.9543686, -212.859406)
2314
o113.Rotation = Vector3.new(-146.429993, -55.0200005, -134.029999)
2315
o113.Anchored = true
2316
o113.FormFactor = Enum.FormFactor.Custom
2317
o113.Size = Vector3.new(8.67944527, 4.94399071, 8.34984493)
2318
o113.CFrame = CFrame.new(120.374634, 44.9543686, -212.859406, -0.398486912, 0.412169069, -0.819344223, 0.284170926, 0.904859126, 0.316980958, 0.872040808, -0.106521018, -0.477700919)
2319
o113.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2320
o113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2321
o113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2322
o113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2323
o113.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2324
o113.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2325
o113.Color = Color3.new(0.384314, 0.145098, 0.819608)
2326
o113.Position = Vector3.new(120.374634, 44.9543686, -212.859406)
2327
o113.Orientation = Vector3.new(-18.4799995, -120.239998, 17.4300003)
2328
o113.Color = Color3.new(0.384314, 0.145098, 0.819608)
2329
o114.Parent = o6
2330
o114.Material = Enum.Material.Grass
2331
o114.BrickColor = BrickColor.new("Royal purple")
2332
o114.Position = Vector3.new(114.071724, 47.7055931, -217.387314)
2333
o114.Rotation = Vector3.new(-13.6199999, 11.9899998, 1.87)
2334
o114.Anchored = true
2335
o114.FormFactor = Enum.FormFactor.Custom
2336
o114.Size = Vector3.new(10.2175751, 7.58078241, 10.7669058)
2337
o114.CFrame = CFrame.new(114.071724, 47.7055931, -217.387314, 0.977674365, -0.0320039876, 0.207674518, -0.0170760062, 0.972962976, 0.230329007, -0.209431067, -0.228733003, 0.950694442)
2338
o114.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2339
o114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2340
o114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2341
o114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2342
o114.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2343
o114.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2344
o114.Color = Color3.new(0.368627, 0, 1)
2345
o114.Position = Vector3.new(114.071724, 47.7055931, -217.387314)
2346
o114.Orientation = Vector3.new(-13.3199997, 12.3199997, -1.00999999)
2347
o114.Color = Color3.new(0.368627, 0, 1)
2348
o115.Parent = o6
2349
o115.Material = Enum.Material.Grass
2350
o115.BrickColor = BrickColor.new("Dark indigo")
2351
o115.Transparency = 0.30000001192093
2352
o115.Position = Vector3.new(116.017715, 44.0486183, -219.924408)
2353
o115.Rotation = Vector3.new(91.5099945, 53.0499992, -98.1800003)
2354
o115.Anchored = true
2355
o115.FormFactor = Enum.FormFactor.Custom
2356
o115.Size = Vector3.new(8.67944527, 6.59198427, 10.7669058)
2357
o115.CFrame = CFrame.new(116.017715, 44.0486183, -219.924408, -0.0854849741, 0.595058262, 0.799123347, -0.087534979, 0.794472277, -0.600958765, -0.992486775, -0.121324182, -0.0158270337)
2358
o115.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2359
o115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2360
o115.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2361
o115.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2362
o115.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2363
o115.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2364
o115.Color = Color3.new(0.262745, 0.105882, 0.560784)
2365
o115.Position = Vector3.new(116.017715, 44.0486183, -219.924408)
2366
o115.Orientation = Vector3.new(36.9399986, 91.1299973, -6.28999996)
2367
o115.Color = Color3.new(0.262745, 0.105882, 0.560784)
2368
o116.Parent = o6
2369
o116.Material = Enum.Material.Grass
2370
o116.BrickColor = BrickColor.new("Royal purple")
2371
o116.Transparency = 0.30000001192093
2372
o116.Position = Vector3.new(119.354897, 45.9726181, -209.317642)
2373
o116.Rotation = Vector3.new(-168.589996, -14.6599998, -157.959991)
2374
o116.Anchored = true
2375
o116.FormFactor = Enum.FormFactor.Custom
2376
o116.Size = Vector3.new(8.67944527, 6.15252066, 8.34984493)
2377
o116.CFrame = CFrame.new(119.354897, 45.9726181, -209.317642, -0.896717787, 0.363096088, -0.253097683, 0.321476907, 0.927366793, 0.191424787, 0.304219931, 0.090288952, -0.948313355)
2378
o116.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2379
o116.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2380
o116.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2381
o116.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2382
o116.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2383
o116.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2384
o116.Color = Color3.new(0.368627, 0, 1)
2385
o116.Position = Vector3.new(119.354897, 45.9726181, -209.317642)
2386
o116.Orientation = Vector3.new(-11.04, -165.059998, 19.1199989)
2387
o116.Color = Color3.new(0.368627, 0, 1)
2388
o117.Parent = o6
2389
o117.Material = Enum.Material.Wood
2390
o117.BrickColor = BrickColor.new("Cocoa")
2391
o117.Position = Vector3.new(122.278732, 25.0661545, -174.501953)
2392
o117.Rotation = Vector3.new(-13.71, -26.9499989, 126.699997)
2393
o117.Anchored = true
2394
o117.FormFactor = Enum.FormFactor.Custom
2395
o117.Size = Vector3.new(1.39978945, 3.75732636, 1.25244284)
2396
o117.CFrame = CFrame.new(122.278732, 25.0661545, -174.501953, -0.532741249, -0.714730084, -0.453153104, 0.714729369, -0.666715741, 0.211310402, -0.453154206, -0.211308077, 0.866025507)
2397
o117.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2398
o117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2399
o117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2400
o117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2401
o117.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2402
o117.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2403
o117.Color = Color3.new(0.247059, 0.192157, 0.160784)
2404
o117.Position = Vector3.new(122.278732, 25.0661545, -174.501953)
2405
o117.Orientation = Vector3.new(-12.1999998, -27.6199989, 133.009995)
2406
o117.Color = Color3.new(0.247059, 0.192157, 0.160784)
2407
o118.Parent = o6
2408
o118.Material = Enum.Material.Wood
2409
o118.BrickColor = BrickColor.new("Cocoa")
2410
o118.Position = Vector3.new(118.958977, 22.9779873, -175.729553)
2411
o118.Rotation = Vector3.new(-13.71, -26.9499989, 106.699997)
2412
o118.Anchored = true
2413
o118.FormFactor = Enum.FormFactor.Custom
2414
o118.Size = Vector3.new(1.84182799, 5.45180655, 1.69448161)
2415
o118.CFrame = CFrame.new(118.958977, 22.9779873, -175.729553, -0.256159097, -0.853835166, -0.453153521, 0.899657309, -0.382053792, 0.211309135, -0.353552133, -0.35355413, 0.866025627)
2416
o118.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2417
o118.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2418
o118.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2419
o118.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2420
o118.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2421
o118.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2422
o118.Color = Color3.new(0.247059, 0.192157, 0.160784)
2423
o118.Position = Vector3.new(118.958977, 22.9779873, -175.729553)
2424
o118.Orientation = Vector3.new(-12.1999998, -27.6199989, 113.009995)
2425
o118.Color = Color3.new(0.247059, 0.192157, 0.160784)
2426
o119.Parent = o6
2427
o119.Material = Enum.Material.Wood
2428
o119.BrickColor = BrickColor.new("Cocoa")
2429
o119.Position = Vector3.new(114.143188, 26.7204781, -175.338409)
2430
o119.Rotation = Vector3.new(-164.399994, 57.9599991, 169.550003)
2431
o119.Anchored = true
2432
o119.FormFactor = Enum.FormFactor.Custom
2433
o119.Size = Vector3.new(1.47346246, 4.27303696, 1.32611609)
2434
o119.CFrame = CFrame.new(114.143188, 26.7204781, -175.338409, -0.521726012, -0.0962205753, 0.847669542, 0.0494449995, 0.988538325, 0.142643407, -0.851679027, 0.116333798, -0.510988533)
2435
o119.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2436
o119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2437
o119.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2438
o119.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2439
o119.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2440
o119.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2441
o119.Color = Color3.new(0.247059, 0.192157, 0.160784)
2442
o119.Position = Vector3.new(114.143188, 26.7204781, -175.338409)
2443
o119.Orientation = Vector3.new(-8.19999981, 121.079994, 2.8599999)
2444
o119.Color = Color3.new(0.247059, 0.192157, 0.160784)
2445
o120.Parent = o6
2446
o120.Material = Enum.Material.Wood
2447
o120.BrickColor = BrickColor.new("Cocoa")
2448
o120.Position = Vector3.new(115.460442, 23.5049477, -176.076385)
2449
o120.Rotation = Vector3.new(-129.919998, 29.1399994, 133.580002)
2450
o120.Anchored = true
2451
o120.FormFactor = Enum.FormFactor.Custom
2452
o120.Size = Vector3.new(1.84182799, 4.27303696, 1.69448161)
2453
o120.CFrame = CFrame.new(115.460442, 23.5049477, -176.076385, -0.602154911, -0.632677913, 0.486958057, -0.207370952, 0.712941945, 0.669859052, -0.770977795, 0.302377939, -0.560500503)
2454
o120.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2455
o120.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2456
o120.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2457
o120.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2458
o120.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2459
o120.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2460
o120.Color = Color3.new(0.247059, 0.192157, 0.160784)
2461
o120.Position = Vector3.new(115.460442, 23.5049477, -176.076385)
2462
o120.Orientation = Vector3.new(-42.0599976, 139.020004, -16.2199993)
2463
o120.Color = Color3.new(0.247059, 0.192157, 0.160784)
2464
o121.Parent = o6
2465
o121.Material = Enum.Material.Wood
2466
o121.BrickColor = BrickColor.new("Cocoa")
2467
o121.Position = Vector3.new(120.001373, 25.7254066, -181.280624)
2468
o121.Rotation = Vector3.new(-34.6699982, 8.97000027, -31.3299999)
2469
o121.Anchored = true
2470
o121.FormFactor = Enum.FormFactor.Custom
2471
o121.Size = Vector3.new(1.32611609, 5.45181322, 1.25244296)
2472
o121.CFrame = CFrame.new(120.001373, 25.7254066, -181.280624, 0.843734682, 0.513627827, 0.155878767, -0.503398836, 0.656405747, 0.561890662, 0.186282948, -0.552555799, 0.812392056)
2473
o121.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2474
o121.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2475
o121.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2476
o121.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2477
o121.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2478
o121.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2479
o121.Color = Color3.new(0.247059, 0.192157, 0.160784)
2480
o121.Position = Vector3.new(120.001373, 25.7254066, -181.280624)
2481
o121.Orientation = Vector3.new(-34.1899986, 10.8599997, -37.4799995)
2482
o121.Color = Color3.new(0.247059, 0.192157, 0.160784)
2483
o122.Parent = o6
2484
o122.Material = Enum.Material.Wood
2485
o122.BrickColor = BrickColor.new("Cocoa")
2486
o122.Position = Vector3.new(117.842628, 23.2071819, -178.790573)
2487
o122.Rotation = Vector3.new(-42.1800003, 14.9399996, -33.0099983)
2488
o122.Anchored = true
2489
o122.FormFactor = Enum.FormFactor.Custom
2490
o122.Size = Vector3.new(1.84182799, 4.93609428, 1.69448161)
2491
o122.CFrame = CFrame.new(117.842628, 23.2071819, -178.790573, 0.81025219, 0.526347578, 0.257778257, -0.548844099, 0.52715987, 0.648746967, 0.205576047, -0.667128742, 0.71601516)
2492
o122.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2493
o122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2494
o122.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2495
o122.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2496
o122.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2497
o122.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2498
o122.Color = Color3.new(0.247059, 0.192157, 0.160784)
2499
o122.Position = Vector3.new(117.842628, 23.2071819, -178.790573)
2500
o122.Orientation = Vector3.new(-40.4500008, 19.7999992, -46.1499977)
2501
o122.Color = Color3.new(0.247059, 0.192157, 0.160784)
2502
o123.Parent = o6
2503
o123.Material = Enum.Material.Grass
2504
o123.BrickColor = BrickColor.new("Dark indigo")
2505
o123.Transparency = 0.20000000298023
2506
o123.Position = Vector3.new(120.184387, 27.5303974, -181.397232)
2507
o123.Rotation = Vector3.new(-23.8899994, -4.96000004, -27.7099991)
2508
o123.Anchored = true
2509
o123.FormFactor = Enum.FormFactor.Custom
2510
o123.Size = Vector3.new(5.39263582, 2.79871011, 6.68959856)
2511
o123.CFrame = CFrame.new(120.184387, 27.5303974, -181.397232, 0.882021725, 0.463198453, -0.0865152329, -0.394097865, 0.825792074, 0.403428257, 0.258310914, -0.321737051, 0.910912097)
2512
o123.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2513
o123.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2514
o123.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2515
o123.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2516
o123.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2517
o123.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2518
o123.Color = Color3.new(0.262745, 0.105882, 0.560784)
2519
o123.Position = Vector3.new(120.184387, 27.5303974, -181.397232)
2520
o123.Orientation = Vector3.new(-23.789999, -5.42999983, -25.5100002)
2521
o123.Color = Color3.new(0.262745, 0.105882, 0.560784)
2522
o124.Parent = o6
2523
o124.Material = Enum.Material.Grass
2524
o124.BrickColor = BrickColor.new("Royal purple")
2525
o124.Transparency = 0.30000001192093
2526
o124.Position = Vector3.new(108.932632, 43.1711617, -223.933273)
2527
o124.Rotation = Vector3.new(-24.6099987, 46.9799995, 2.45000005)
2528
o124.Anchored = true
2529
o124.FormFactor = Enum.FormFactor.Custom
2530
o124.Size = Vector3.new(10.7669077, 5.71305275, 12.4149036)
2531
o124.CFrame = CFrame.new(108.932632, 43.1711617, -223.933273, 0.681601942, -0.0291872341, 0.731140852, -0.265298963, 0.921358407, 0.284104198, -0.681934953, -0.387616903, 0.620256305)
2532
o124.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2533
o124.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2534
o124.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2535
o124.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2536
o124.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2537
o124.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2538
o124.Color = Color3.new(0.384314, 0.145098, 0.819608)
2539
o124.Position = Vector3.new(108.932632, 43.1711617, -223.933273)
2540
o124.Orientation = Vector3.new(-16.5100002, 49.6899986, -16.0599995)
2541
o124.Color = Color3.new(0.384314, 0.145098, 0.819608)
2542
o125.Parent = o6
2543
o125.Material = Enum.Material.Wood
2544
o125.BrickColor = BrickColor.new("Cocoa")
2545
o125.Position = Vector3.new(115.49292, 19.570982, -177.867493)
2546
o125.Rotation = Vector3.new(-3.39999986, -31.3099995, -23.2699986)
2547
o125.Anchored = true
2548
o125.FormFactor = Enum.FormFactor.Custom
2549
o125.Size = Vector3.new(2.35753989, 7.95669651, 2.35753989)
2550
o125.CFrame = CFrame.new(115.49292, 19.570982, -177.867493, 0.784886181, 0.337508768, -0.519655228, -0.365998089, 0.929232359, 0.0507206693, 0.499999106, 0.150382832, 0.852869272)
2551
o125.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2552
o125.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2553
o125.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2554
o125.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2555
o125.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2556
o125.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2557
o125.Color = Color3.new(0.247059, 0.192157, 0.160784)
2558
o125.Position = Vector3.new(115.49292, 19.570982, -177.867493)
2559
o125.Orientation = Vector3.new(-2.90999985, -31.3499985, -21.5)
2560
o125.Color = Color3.new(0.247059, 0.192157, 0.160784)
2561
o126.Parent = o6
2562
o126.Material = Enum.Material.Wood
2563
o126.BrickColor = BrickColor.new("Cocoa")
2564
o126.Position = Vector3.new(112.700745, 14.7944107, -179.037369)
2565
o126.Rotation = Vector3.new(-13.71, -26.9499989, -43.2999992)
2566
o126.Anchored = true
2567
o126.FormFactor = Enum.FormFactor.Custom
2568
o126.Size = Vector3.new(2.54869938, 3.50446081, 2.54869938)
2569
o126.CFrame = CFrame.new(112.700745, 14.7944107, -179.037369, 0.648759723, 0.611360908, -0.453154117, -0.588096738, 0.780699015, 0.211308599, 0.482962787, 0.129409939, 0.866025388)
2570
o126.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2571
o126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2572
o126.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2573
o126.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2574
o126.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2575
o126.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2576
o126.Color = Color3.new(0.247059, 0.192157, 0.160784)
2577
o126.Position = Vector3.new(112.700745, 14.7944107, -179.037369)
2578
o126.Orientation = Vector3.new(-12.1999998, -27.6199989, -36.9899979)
2579
o126.Color = Color3.new(0.247059, 0.192157, 0.160784)
2580
o127.Parent = o6
2581
o127.Material = Enum.Material.Wood
2582
o127.BrickColor = BrickColor.new("Cocoa")
2583
o127.Position = Vector3.new(114.254707, 16.5655899, -178.141373)
2584
o127.Rotation = Vector3.new(-13.71, -26.9499989, -28.2999992)
2585
o127.Anchored = true
2586
o127.FormFactor = Enum.FormFactor.Custom
2587
o127.Size = Vector3.new(2.93100405, 2.93100405, 2.93100405)
2588
o127.CFrame = CFrame.new(114.254707, 16.5655899, -178.141373, 0.784886181, 0.422617942, -0.453153133, -0.365998089, 0.906307936, 0.211308599, 0.499999106, -1.49011337e-08, 0.866025925)
2589
o127.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2590
o127.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2591
o127.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2592
o127.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2593
o127.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2594
o127.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2595
o127.Color = Color3.new(0.247059, 0.192157, 0.160784)
2596
o127.Position = Vector3.new(114.254707, 16.5655899, -178.141373)
2597
o127.Orientation = Vector3.new(-12.1999998, -27.6199989, -21.9899998)
2598
o127.Color = Color3.new(0.247059, 0.192157, 0.160784)
2599
o128.Parent = o6
2600
o128.Material = Enum.Material.Wood
2601
o128.BrickColor = BrickColor.new("Cocoa")
2602
o128.Position = Vector3.new(114.731834, 13.0299625, -178.404144)
2603
o128.Rotation = Vector3.new(11.7799997, -25.5699997, -169.190002)
2604
o128.Anchored = true
2605
o128.FormFactor = Enum.FormFactor.Custom
2606
o128.Size = Vector3.new(2.73985147, 4.20535231, 2.80356908)
2607
o128.CFrame = CFrame.new(114.731834, 13.0299625, -178.404144, -0.886032403, 0.169187337, -0.431650639, -0.0970860422, -0.978103459, -0.184087142, -0.453344196, -0.121199928, 0.883056998)
2608
o128.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2609
o128.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2610
o128.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2611
o128.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2612
o128.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2613
o128.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2614
o128.Color = Color3.new(0.247059, 0.192157, 0.160784)
2615
o128.Position = Vector3.new(114.731834, 13.0299625, -178.404144)
2616
o128.Orientation = Vector3.new(10.6099997, -26.0499992, -174.330002)
2617
o128.Color = Color3.new(0.247059, 0.192157, 0.160784)
2618
o129.Parent = o6
2619
o129.Material = Enum.Material.Grass
2620
o129.BrickColor = BrickColor.new("Royal purple")
2621
o129.Position = Vector3.new(113.232834, 46.6511078, -209.923355)
2622
o129.Rotation = Vector3.new(-143.23999, 18.7099991, 161.029999)
2623
o129.Anchored = true
2624
o129.FormFactor = Enum.FormFactor.Custom
2625
o129.Size = Vector3.new(8.67944527, 4.50452185, 8.45971107)
2626
o129.CFrame = CFrame.new(113.232834, 46.6511078, -209.923355, -0.895676434, -0.307966143, 0.320812315, -0.0789160356, 0.820024014, 0.566862226, -0.437648207, 0.482407928, -0.758779705)
2627
o129.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2628
o129.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2629
o129.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2630
o129.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2631
o129.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2632
o129.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2633
o129.Color = Color3.new(0.384314, 0.145098, 0.819608)
2634
o129.Position = Vector3.new(113.232834, 46.6511078, -209.923355)
2635
o129.Orientation = Vector3.new(-34.5299988, 157.080002, -5.5)
2636
o129.Color = Color3.new(0.384314, 0.145098, 0.819608)
2637
o130.Parent = o6
2638
o130.Material = Enum.Material.Wood
2639
o130.BrickColor = BrickColor.new("Cocoa")
2640
o130.Position = Vector3.new(113.508919, 13.9429417, -176.371704)
2641
o130.Rotation = Vector3.new(-136.5, -65.3199997, -116.610001)
2642
o130.Anchored = true
2643
o130.FormFactor = Enum.FormFactor.Custom
2644
o130.Size = Vector3.new(2.54869938, 4.58765745, 2.54869938)
2645
o130.CFrame = CFrame.new(113.508919, 13.9429417, -176.371704, -0.187049016, 0.373394907, -0.908619285, 0.368461043, 0.884083152, 0.287460238, 0.91063112, -0.281021625, -0.302948385)
2646
o130.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2647
o130.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2648
o130.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2649
o130.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2650
o130.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2651
o130.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2652
o130.Color = Color3.new(0.247059, 0.192157, 0.160784)
2653
o130.Position = Vector3.new(113.508919, 13.9429417, -176.371704)
2654
o130.Orientation = Vector3.new(-16.7099991, -108.439995, 22.6299992)
2655
o130.Color = Color3.new(0.247059, 0.192157, 0.160784)
2656
o131.Parent = o6
2657
o131.Material = Enum.Material.Grass
2658
o131.BrickColor = BrickColor.new("Royal purple")
2659
o131.Position = Vector3.new(108.693649, 46.7549667, -212.925674)
2660
o131.Rotation = Vector3.new(-163.669998, 48, 164.23999)
2661
o131.Anchored = true
2662
o131.FormFactor = Enum.FormFactor.Custom
2663
o131.Size = Vector3.new(8.67944527, 3.6255908, 8.45971107)
2664
o131.CFrame = CFrame.new(108.693649, 46.7549667, -212.925674, -0.643941939, -0.181681812, 0.743189394, -0.0594909936, 0.980344474, 0.188110843, -0.762757897, 0.0769193769, -0.642093301)
2665
o131.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2666
o131.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2667
o131.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2668
o131.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2669
o131.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2670
o131.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2671
o131.Color = Color3.new(0.384314, 0.145098, 0.819608)
2672
o131.Position = Vector3.new(108.693649, 46.7549667, -212.925674)
2673
o131.Orientation = Vector3.new(-10.8400002, 130.830002, -3.47000003)
2674
o131.Color = Color3.new(0.384314, 0.145098, 0.819608)
2675
o132.Parent = o6
2676
o132.Material = Enum.Material.Wood
2677
o132.BrickColor = BrickColor.new("Cocoa")
2678
o132.Position = Vector3.new(112.452637, 14.9117107, -177.669907)
2679
o132.Rotation = Vector3.new(-45.1699982, -43.7299995, -58.3400002)
2680
o132.Anchored = true
2681
o132.FormFactor = Enum.FormFactor.Custom
2682
o132.Size = Vector3.new(2.54869938, 3.50446081, 2.54869938)
2683
o132.CFrame = CFrame.new(112.452637, 14.9117107, -177.669907, 0.379272163, 0.615077317, -0.691254318, -0.342787117, 0.787315905, 0.512475014, 0.8594473, 0.0425855406, 0.509447575)
2684
o132.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2685
o132.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2686
o132.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2687
o132.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2688
o132.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2689
o132.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2690
o132.Color = Color3.new(0.247059, 0.192157, 0.160784)
2691
o132.Position = Vector3.new(112.452637, 14.9117107, -177.669907)
2692
o132.Orientation = Vector3.new(-30.8299999, -53.6100006, -23.5299988)
2693
o132.Color = Color3.new(0.247059, 0.192157, 0.160784)
2694
o133.Parent = o6
2695
o133.Material = Enum.Material.Wood
2696
o133.BrickColor = BrickColor.new("Cocoa")
2697
o133.Position = Vector3.new(113.861198, 14.2548923, -178.832733)
2698
o133.Rotation = Vector3.new(-3.39999986, -31.3099995, -23.2699986)
2699
o133.Anchored = true
2700
o133.FormFactor = Enum.FormFactor.Custom
2701
o133.Size = Vector3.new(2.54869938, 3.50446081, 2.54869938)
2702
o133.CFrame = CFrame.new(113.861198, 14.2548923, -178.832733, 0.784886181, 0.337508768, -0.519655228, -0.365998089, 0.929232359, 0.0507206693, 0.499999106, 0.150382832, 0.852869272)
2703
o133.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2704
o133.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2705
o133.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2706
o133.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2707
o133.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2708
o133.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2709
o133.Color = Color3.new(0.247059, 0.192157, 0.160784)
2710
o133.Position = Vector3.new(113.861198, 14.2548923, -178.832733)
2711
o133.Orientation = Vector3.new(-2.90999985, -31.3499985, -21.5)
2712
o133.Color = Color3.new(0.247059, 0.192157, 0.160784)
2713
o134.Parent = o6
2714
o134.Material = Enum.Material.Grass
2715
o134.BrickColor = BrickColor.new("Plum")
2716
o134.Transparency = 0.5
2717
o134.Position = Vector3.new(96.6516953, 18.4435215, -220.882889)
2718
o134.Rotation = Vector3.new(0, 20, 0)
2719
o134.Anchored = true
2720
o134.Size = Vector3.new(8.62073612, 4.31036901, 8.62073708)
2721
o134.CFrame = CFrame.new(96.6516953, 18.4435215, -220.882889, 0.939687371, 0, 0.342018127, 0, 1, 0, -0.342018127, 0, 0.939687371)
2722
o134.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2723
o134.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2724
o134.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2725
o134.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2726
o134.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2727
o134.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2728
o134.Color = Color3.new(0.482353, 0.184314, 0.482353)
2729
o134.Position = Vector3.new(96.6516953, 18.4435215, -220.882889)
2730
o134.Orientation = Vector3.new(0, 20, 0)
2731
o134.Color = Color3.new(0.482353, 0.184314, 0.482353)
2732
o135.Parent = o6
2733
o135.Material = Enum.Material.Grass
2734
o135.BrickColor = BrickColor.new("Pink")
2735
o135.Transparency = 0.5
2736
o135.Position = Vector3.new(96.0017776, 20.0916061, -221.185974)
2737
o135.Rotation = Vector3.new(0, -25, 0)
2738
o135.Anchored = true
2739
o135.Size = Vector3.new(7.60653305, 7.60653305, 7.60653305)
2740
o135.CFrame = CFrame.new(96.0017776, 20.0916061, -221.185974, 0.906302869, 0, -0.422615439, 0, 1, 0, 0.422615439, 0, 0.906302869)
2741
o135.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2742
o135.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2743
o135.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2744
o135.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2745
o135.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2746
o135.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2747
o135.Color = Color3.new(1, 0.4, 0.8)
2748
o135.Position = Vector3.new(96.0017776, 20.0916061, -221.185974)
2749
o135.Orientation = Vector3.new(0, -25, 0)
2750
o135.Color = Color3.new(1, 0.4, 0.8)
2751
o136.Parent = o6
2752
o136.Material = Enum.Material.Grass
2753
o136.BrickColor = BrickColor.new("Magenta")
2754
o136.Transparency = 0.5
2755
o136.Position = Vector3.new(95.7482147, 18.9506226, -216.495346)
2756
o136.Anchored = true
2757
o136.Size = Vector3.new(6.33877754, 6.33877754, 6.33877754)
2758
o136.CFrame = CFrame.new(95.7482147, 18.9506226, -216.495346, 0.999994457, -9.15174159e-09, 1.78813934e-07, 9.8083488e-09, 1, 0, -1.78813934e-07, -2.53856891e-09, 0.999994457)
2759
o136.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2760
o136.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2761
o136.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2762
o136.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2763
o136.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2764
o136.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2765
o136.Color = Color3.new(0.666667, 0, 0.666667)
2766
o136.Position = Vector3.new(95.7482147, 18.9506226, -216.495346)
2767
o136.Color = Color3.new(0.666667, 0, 0.666667)
2768
o137.Parent = o6
2769
o137.Material = Enum.Material.Wood
2770
o137.BrickColor = BrickColor.new("Cocoa")
2771
o137.Position = Vector3.new(92.8902664, 30.8982201, -197.963898)
2772
o137.Rotation = Vector3.new(-175.209991, -2.64999986, -129.639999)
2773
o137.Anchored = true
2774
o137.FormFactor = Enum.FormFactor.Custom
2775
o137.Size = Vector3.new(1.77485764, 2.53551102, 1.77485764)
2776
o137.CFrame = CFrame.new(92.8902664, 30.8982201, -197.963898, -0.637290835, 0.769238651, -0.046176523, 0.764912784, 0.638712943, 0.0833920911, 0.0936419666, 0.0178240091, -0.995446384)
2777
o137.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2778
o137.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2779
o137.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2780
o137.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2781
o137.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2782
o137.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2783
o137.Color = Color3.new(0.247059, 0.192157, 0.160784)
2784
o137.Position = Vector3.new(92.8902664, 30.8982201, -197.963898)
2785
o137.Orientation = Vector3.new(-4.77999973, -177.339996, 50.1399994)
2786
o137.Color = Color3.new(0.247059, 0.192157, 0.160784)
2787
o138.Parent = o6
2788
o138.Material = Enum.Material.Neon
2789
o138.BrickColor = BrickColor.new("Royal purple")
2790
o138.Transparency = 0.30000001192093
2791
o138.Position = Vector3.new(91.5643234, 36.3188629, -198.366302)
2792
o138.Anchored = true
2793
o138.Shape = Enum.PartType.Ball
2794
o138.Size = Vector3.new(3.80326915, 3.80326915, 3.80326915)
2795
o138.CFrame = CFrame.new(91.5643234, 36.3188629, -198.366302, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2796
o138.BottomSurface = Enum.SurfaceType.Smooth
2797
o138.TopSurface = Enum.SurfaceType.Smooth
2798
o138.Color = Color3.new(0.52549, 0.113725, 1)
2799
o138.Position = Vector3.new(91.5643234, 36.3188629, -198.366302)
2800
o138.Color = Color3.new(0.52549, 0.113725, 1)
2801
o139.Parent = o138
2802
o139.Transparency = NumberSequence.new(1,0.78750002384186,0.5625,0.70624995231628,1)
2803
o139.Size = NumberSequence.new(3.625,0.87499976158142)
2804
o139.Color = ColorSequence.new(Color3.new(0, 0, 0.998184),Color3.new(0.510018, 0, 0.998474))
2805
o139.LightEmission = 1
2806
o139.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
2807
o139.Lifetime = NumberRange.new(1,1)
2808
o139.Rate = 15
2809
o139.Speed = NumberRange.new(0,0)
2810
o139.VelocitySpread = -100
2811
o139.Color = ColorSequence.new(Color3.new(0, 0, 0.998184),Color3.new(0.510018, 0, 0.998474))
2812
o140.Parent = o138
2813
o140.Color = Color3.new(0.294118, 0, 1)
2814
o140.Range = 40
2815
o140.Color = Color3.new(0.294118, 0, 1)
2816
o141.Parent = o6
2817
o141.Material = Enum.Material.Wood
2818
o141.BrickColor = BrickColor.new("Cocoa")
2819
o141.Position = Vector3.new(91.0410385, 34.8282585, -199.954056)
2820
o141.Rotation = Vector3.new(-116.049995, -84.6699982, -66.0100021)
2821
o141.Anchored = true
2822
o141.FormFactor = Enum.FormFactor.Custom
2823
o141.Size = Vector3.new(1.77485764, 2.53551102, 1.77485764)
2824
o141.CFrame = CFrame.new(91.0410385, 34.8282585, -199.954056, 0.0377419963, 0.0848009735, -0.995682836, 0.764912963, 0.638712585, 0.0833928138, 0.643026948, -0.76475817, -0.0407590754)
2825
o141.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2826
o141.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2827
o141.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2828
o141.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2829
o141.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2830
o141.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2831
o141.Color = Color3.new(0.247059, 0.192157, 0.160784)
2832
o141.Position = Vector3.new(91.0410385, 34.8282585, -199.954056)
2833
o141.Orientation = Vector3.new(-4.77999973, -92.3399963, 50.1399994)
2834
o141.Color = Color3.new(0.247059, 0.192157, 0.160784)
2835
o142.Parent = o6
2836
o142.Material = Enum.Material.Wood
2837
o142.BrickColor = BrickColor.new("Cocoa")
2838
o142.Position = Vector3.new(90.0918884, 36.6031151, -195.730972)
2839
o142.Rotation = Vector3.new(-15.1799994, 69.2399979, 39.2799988)
2840
o142.Anchored = true
2841
o142.FormFactor = Enum.FormFactor.Custom
2842
o142.Size = Vector3.new(1.77485764, 2.53551102, 1.77485764)
2843
o142.CFrame = CFrame.new(90.0918884, 36.6031151, -195.730972, 0.274419904, -0.224420905, 0.935055614, 0.421491891, 0.90207082, 0.092804946, -0.864313781, 0.368650824, 0.342137784)
2844
o142.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2845
o142.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2846
o142.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2847
o142.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2848
o142.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2849
o142.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2850
o142.Color = Color3.new(0.247059, 0.192157, 0.160784)
2851
o142.Position = Vector3.new(90.0918884, 36.6031151, -195.730972)
2852
o142.Orientation = Vector3.new(-5.31999969, 69.9000015, 25.039999)
2853
o142.Color = Color3.new(0.247059, 0.192157, 0.160784)
2854
o143.Parent = o6
2855
o143.Material = Enum.Material.Wood
2856
o143.BrickColor = BrickColor.new("Cocoa")
2857
o143.Position = Vector3.new(90.5578918, 34.8282585, -196.640625)
2858
o143.Rotation = Vector3.new(-12.4099998, 67.1800003, 61.6099968)
2859
o143.Anchored = true
2860
o143.FormFactor = Enum.FormFactor.Custom
2861
o143.Size = Vector3.new(1.77485764, 2.53551102, 1.77485764)
2862
o143.CFrame = CFrame.new(90.5578918, 34.8282585, -196.640625, 0.184460923, -0.341251016, 0.921695232, 0.764913678, 0.638711572, 0.0833945051, -0.61715579, 0.689634144, 0.378844947)
2863
o143.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2864
o143.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2865
o143.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2866
o143.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2867
o143.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2868
o143.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2869
o143.Color = Color3.new(0.247059, 0.192157, 0.160784)
2870
o143.Position = Vector3.new(90.5578918, 34.8282585, -196.640625)
2871
o143.Orientation = Vector3.new(-4.77999973, 67.659996, 50.1399994)
2872
o143.Color = Color3.new(0.247059, 0.192157, 0.160784)
2873
o144.Parent = o6
2874
o144.Material = Enum.Material.Wood
2875
o144.BrickColor = BrickColor.new("Cocoa")
2876
o144.Position = Vector3.new(89.2132874, 36.6031151, -198.265869)
2877
o144.Rotation = Vector3.new(-5.32999992, -0.099999994, 25.039999)
2878
o144.Anchored = true
2879
o144.FormFactor = Enum.FormFactor.Custom
2880
o144.Size = Vector3.new(1.77485764, 2.53551102, 1.77485764)
2881
o144.CFrame = CFrame.new(89.2132874, 36.6031151, -198.265869, 0.906046271, -0.423175156, -0.00169782504, 0.421492159, 0.902070582, 0.0928068906, -0.037742015, -0.0848029554, 0.995682657)
2882
o144.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2883
o144.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2884
o144.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2885
o144.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2886
o144.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2887
o144.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2888
o144.Color = Color3.new(0.247059, 0.192157, 0.160784)
2889
o144.Position = Vector3.new(89.2132874, 36.6031151, -198.265869)
2890
o144.Orientation = Vector3.new(-5.32999992, -0.099999994, 25.039999)
2891
o144.Color = Color3.new(0.247059, 0.192157, 0.160784)
2892
o145.Parent = o6
2893
o145.Material = Enum.Material.Wood
2894
o145.BrickColor = BrickColor.new("Cocoa")
2895
o145.Position = Vector3.new(90.2274704, 34.8282585, -198.139114)
2896
o145.Rotation = Vector3.new(-4.78999996, -2.33999991, 49.9399986)
2897
o145.Anchored = true
2898
o145.FormFactor = Enum.FormFactor.Custom
2899
o145.Size = Vector3.new(1.77485764, 2.53551102, 1.77485764)
2900
o145.CFrame = CFrame.new(90.2274704, 34.8282585, -198.139114, 0.643026352, -0.764758646, -0.0407606922, 0.764913499, 0.63871181, 0.0833941028, -0.0377420224, -0.0848030075, 0.995682657)
2901
o145.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2902
o145.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2903
o145.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2904
o145.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2905
o145.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2906
o145.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2907
o145.Color = Color3.new(0.247059, 0.192157, 0.160784)
2908
o145.Position = Vector3.new(90.2274704, 34.8282585, -198.139114)
2909
o145.Orientation = Vector3.new(-4.77999973, -2.33999991, 50.1399994)
2910
o145.Color = Color3.new(0.247059, 0.192157, 0.160784)
2911
o146.Parent = o6
2912
o146.Material = Enum.Material.Wood
2913
o146.BrickColor = BrickColor.new("Cocoa")
2914
o146.Position = Vector3.new(90.9247971, 32.7256546, -197.853287)
2915
o146.Rotation = Vector3.new(-4.1500001, 3.3499999, -14.8399992)
2916
o146.Anchored = true
2917
o146.FormFactor = Enum.FormFactor.Custom
2918
o146.Size = Vector3.new(2.02840877, 4.31036949, 2.02840877)
2919
o146.CFrame = CFrame.new(90.9247971, 32.7256546, -197.853287, 0.965001583, 0.255669057, 0.0583545044, -0.259513885, 0.963037789, 0.0721855685, -0.0377419852, -0.0848029926, 0.995682657)
2920
o146.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2921
o146.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2922
o146.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2923
o146.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2924
o146.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2925
o146.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2926
o146.Color = Color3.new(0.247059, 0.192157, 0.160784)
2927
o146.Position = Vector3.new(90.9247971, 32.7256546, -197.853287)
2928
o146.Orientation = Vector3.new(-4.13999987, 3.3499999, -15.0799999)
2929
o146.Color = Color3.new(0.247059, 0.192157, 0.160784)
2930
o147.Parent = o6
2931
o147.Material = Enum.Material.Wood
2932
o147.BrickColor = BrickColor.new("Cocoa")
2933
o147.Position = Vector3.new(91.1517258, 30.2841225, -197.928574)
2934
o147.Rotation = Vector3.new(9.73999977, 0.829999983, 15.0799999)
2935
o147.Anchored = true
2936
o147.FormFactor = Enum.FormFactor.Custom
2937
o147.Size = Vector3.new(2.02840877, 4.5639205, 2.02840877)
2938
o147.CFrame = CFrame.new(91.1517258, 30.2841225, -197.928574, 0.965473115, -0.260102332, 0.014443391, 0.258740038, 0.951024413, -0.169133499, 0.0302560031, 0.167030916, 0.985487282)
2939
o147.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2940
o147.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2941
o147.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2942
o147.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2943
o147.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2944
o147.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2945
o147.Color = Color3.new(0.247059, 0.192157, 0.160784)
2946
o147.Position = Vector3.new(91.1517258, 30.2841225, -197.928574)
2947
o147.Orientation = Vector3.new(9.73999977, 0.839999974, 15.2199993)
2948
o147.Color = Color3.new(0.247059, 0.192157, 0.160784)
2949
o148.Parent = o6
2950
o148.Material = Enum.Material.Wood
2951
o148.BrickColor = BrickColor.new("Cocoa")
2952
o148.Position = Vector3.new(91.1382675, 26.7236671, -197.91423)
2953
o148.Rotation = Vector3.new(-9.67000008, 2.57999992, -14.7799997)
2954
o148.Anchored = true
2955
o148.FormFactor = Enum.FormFactor.Custom
2956
o148.Size = Vector3.new(2.02840877, 4.69069481, 2.02840877)
2957
o148.CFrame = CFrame.new(91.1382675, 26.7236671, -197.91423, 0.965925813, 0.254886925, 0.0449434072, -0.258818954, 0.951251268, 0.167731136, 0, -0.173648044, 0.984807789)
2958
o148.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2959
o148.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2960
o148.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2961
o148.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2962
o148.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2963
o148.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2964
o148.Color = Color3.new(0.247059, 0.192157, 0.160784)
2965
o148.Position = Vector3.new(91.1382675, 26.7236671, -197.91423)
2966
o148.Orientation = Vector3.new(-9.65999985, 2.6099999, -15.2199993)
2967
o148.Color = Color3.new(0.247059, 0.192157, 0.160784)
2968
o149.Parent = o6
2969
o149.Material = Enum.Material.Grass
2970
o149.BrickColor = BrickColor.new("Royal purple")
2971
o149.Position = Vector3.new(94.9501419, 11.2915821, -185.515808)
2972
o149.Rotation = Vector3.new(-146.48999, -71.9899979, -141.48999)
2973
o149.Anchored = true
2974
o149.FormFactor = Enum.FormFactor.Custom
2975
o149.Size = Vector3.new(24.8479919, 14.705966, 15.2130566)
2976
o149.CFrame = CFrame.new(94.9501419, 11.2915821, -185.515808, -0.241977036, 0.19251208, -0.950992227, 0.108326018, 0.979352117, 0.170689806, 0.964216113, -0.0617141835, -0.257834762)
2977
o149.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2978
o149.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2979
o149.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2980
o149.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2981
o149.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2982
o149.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2983
o149.Color = Color3.new(0.384314, 0.145098, 0.819608)
2984
o149.Position = Vector3.new(94.9501419, 11.2915821, -185.515808)
2985
o149.Orientation = Vector3.new(-9.82999992, -105.169998, 6.30999994)
2986
o149.Color = Color3.new(0.384314, 0.145098, 0.819608)
2987
o150.Parent = o6
2988
o150.Material = Enum.Material.Slate
2989
o150.BrickColor = BrickColor.new("Dark indigo")
2990
o150.Position = Vector3.new(68.4026642, 13.708952, -217.268036)
2991
o150.Rotation = Vector3.new(175, -70, -180)
2992
o150.Anchored = true
2993
o150.FormFactor = Enum.FormFactor.Custom
2994
o150.Size = Vector3.new(30.2305851, 15.1417141, 21.6497974)
2995
o150.CFrame = CFrame.new(68.4026642, 13.708952, -217.268036, -0.342019975, 5.60614204e-08, -0.939692676, 0.0818999931, 0.996194661, -0.0298090819, 0.936116874, -0.0871561244, -0.340718478)
2996
o150.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2997
o150.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2998
o150.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2999
o150.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3000
o150.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3001
o150.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3002
o150.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3003
o150.Position = Vector3.new(68.4026642, 13.708952, -217.268036)
3004
o150.Orientation = Vector3.new(1.70999992, -109.93, 4.69999981)
3005
o150.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3006
o151.Parent = o6
3007
o151.Material = Enum.Material.Slate
3008
o151.BrickColor = BrickColor.new("Dark indigo")
3009
o151.Position = Vector3.new(92.1823807, 15.0411091, -228.886368)
3010
o151.Rotation = Vector3.new(1.33999991, 14.9399996, -5.17999983)
3011
o151.Anchored = true
3012
o151.FormFactor = Enum.FormFactor.Custom
3013
o151.Size = Vector3.new(12.2001305, 19.822506, 11.927043)
3014
o151.CFrame = CFrame.new(92.1823807, 15.0411091, -228.886368, 0.962250233, 0.0871557966, 0.257834166, -0.084186025, 0.996194661, -0.0225576255, -0.258819073, 4.62804373e-08, 0.965925813)
3015
o151.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3016
o151.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3017
o151.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3018
o151.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3019
o151.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3020
o151.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3021
o151.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3022
o151.Position = Vector3.new(92.1823807, 15.0411091, -228.886368)
3023
o151.Orientation = Vector3.new(1.28999996, 14.9499998, -4.82999992)
3024
o151.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3025
o152.Parent = o6
3026
o152.Material = Enum.Material.Slate
3027
o152.BrickColor = BrickColor.new("Dark indigo")
3028
o152.Position = Vector3.new(82.2007217, 20.1618176, -224.479126)
3029
o152.Rotation = Vector3.new(3.49000001, 34.8499985, -6.0999999)
3030
o152.Anchored = true
3031
o152.FormFactor = Enum.FormFactor.Custom
3032
o152.Size = Vector3.new(18.2853565, 27.033247, 11.927043)
3033
o152.CFrame = CFrame.new(82.2007217, 20.1618176, -224.479126, 0.816034675, 0.087155968, 0.571394145, -0.0713939741, 0.996194661, -0.0499906391, -0.573576808, 0, 0.819151759)
3034
o152.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3035
o152.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3036
o152.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3037
o152.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3038
o152.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3039
o152.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3040
o152.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3041
o152.Position = Vector3.new(82.2007217, 20.1618176, -224.479126)
3042
o152.Orientation = Vector3.new(2.86999989, 34.8999977, -4.0999999)
3043
o152.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3044
o153.Parent = o6
3045
o153.Material = Enum.Material.Slate
3046
o153.BrickColor = BrickColor.new("Dark indigo")
3047
o153.Position = Vector3.new(80.8200912, 18.3436775, -216.05928)
3048
o153.Rotation = Vector3.new(2.65999985, 14.7699995, -10.3499994)
3049
o153.Anchored = true
3050
o153.FormFactor = Enum.FormFactor.Custom
3051
o153.Size = Vector3.new(22.771965, 23.3969593, 11.927043)
3052
o153.CFrame = CFrame.new(80.8200912, 18.3436775, -216.05928, 0.951251328, 0.173647955, 0.254887044, -0.167731062, 0.984807789, -0.0449434035, -0.258819103, 0, 0.965925813)
3053
o153.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3054
o153.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3055
o153.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3056
o153.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3057
o153.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3058
o153.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3059
o153.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3060
o153.Position = Vector3.new(80.8200912, 18.3436775, -216.05928)
3061
o153.Orientation = Vector3.new(2.57999992, 14.7799997, -9.67000008)
3062
o153.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3063
o154.Parent = o6
3064
o154.Material = Enum.Material.Slate
3065
o154.BrickColor = BrickColor.new("Dark indigo")
3066
o154.Position = Vector3.new(68.556366, 21.9799652, -213.058533)
3067
o154.Rotation = Vector3.new(0, 55, 0)
3068
o154.Anchored = true
3069
o154.FormFactor = Enum.FormFactor.Custom
3070
o154.Size = Vector3.new(25.5579395, 30.6695404, 11.927043)
3071
o154.CFrame = CFrame.new(68.556366, 21.9799652, -213.058533, 0.573575675, 3.7252903e-09, 0.819152594, 7.4505806e-09, 0.999999881, 0, -0.819152594, -7.4505806e-09, 0.573575675)
3072
o154.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3073
o154.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3074
o154.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3075
o154.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3076
o154.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3077
o154.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3078
o154.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3079
o154.Position = Vector3.new(68.556366, 21.9799652, -213.058533)
3080
o154.Orientation = Vector3.new(0, 55, 0)
3081
o154.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3082
o155.Parent = o6
3083
o155.Material = Enum.Material.Slate
3084
o155.BrickColor = BrickColor.new("Dark indigo")
3085
o155.Position = Vector3.new(65.7333984, 24.5357628, -204.531097)
3086
o155.Rotation = Vector3.new(-180, -70, -175)
3087
o155.Anchored = true
3088
o155.FormFactor = Enum.FormFactor.Custom
3089
o155.Size = Vector3.new(19.8784046, 35.7811317, 11.3590899)
3090
o155.CFrame = CFrame.new(65.7333984, 24.5357628, -204.531097, -0.340718269, 0.0298090708, -0.939692378, 0.0871559456, 0.996194661, 0, 0.936116517, -0.0818998218, -0.342019767)
3091
o155.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3092
o155.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3093
o155.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3094
o155.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3095
o155.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3096
o155.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3097
o155.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3098
o155.Position = Vector3.new(65.7333984, 24.5357628, -204.531097)
3099
o155.Orientation = Vector3.new(0, -110, 5)
3100
o155.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3101
o156.Parent = o6
3102
o156.Material = Enum.Material.Slate
3103
o156.BrickColor = BrickColor.new("Dark indigo")
3104
o156.Position = Vector3.new(71.3895569, 22.5479202, -209.277008)
3105
o156.Rotation = Vector3.new(-180, -40, 175)
3106
o156.Anchored = true
3107
o156.FormFactor = Enum.FormFactor.Custom
3108
o156.Size = Vector3.new(13.0629578, 31.8054543, 11.3590899)
3109
o156.CFrame = CFrame.new(71.3895569, 22.5479202, -209.277008, -0.763127446, -0.0667653307, -0.642786205, -0.087155588, 0.996192157, 4.72965098e-08, 0.640340328, 0.0560227334, -0.76604569)
3110
o156.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3111
o156.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3112
o156.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3113
o156.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3114
o156.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3115
o156.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3116
o156.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3117
o156.Position = Vector3.new(71.3895569, 22.5479202, -209.277008)
3118
o156.Orientation = Vector3.new(0, -140, -5)
3119
o156.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3120
o157.Parent = o6
3121
o157.Material = Enum.Material.Slate
3122
o157.BrickColor = BrickColor.new("Dark indigo")
3123
o157.Position = Vector3.new(74.161087, 19.4241734, -206.725952)
3124
o157.Rotation = Vector3.new(0, -65, 0)
3125
o157.Anchored = true
3126
o157.FormFactor = Enum.FormFactor.Custom
3127
o157.Size = Vector3.new(18.7424946, 25.5579529, 17.6065826)
3128
o157.CFrame = CFrame.new(74.161087, 19.4241734, -206.725952, 0.422617942, 0, -0.906307876, 0, 1, 0, 0.906307876, 0, 0.422617942)
3129
o157.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3130
o157.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3131
o157.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3132
o157.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3133
o157.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3134
o157.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3135
o157.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3136
o157.Position = Vector3.new(74.161087, 19.4241734, -206.725952)
3137
o157.Orientation = Vector3.new(0, -65, 0)
3138
o157.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3139
o158.Parent = o6
3140
o158.Material = Enum.Material.Slate
3141
o158.BrickColor = BrickColor.new("Dark indigo")
3142
o158.Position = Vector3.new(65.7333603, 23.1158752, -194.875839)
3143
o158.Rotation = Vector3.new(0, -75, 0)
3144
o158.Anchored = true
3145
o158.FormFactor = Enum.FormFactor.Custom
3146
o158.Size = Vector3.new(13.0629549, 32.9413605, 18.1745377)
3147
o158.CFrame = CFrame.new(65.7333603, 23.1158752, -194.875839, 0.258818954, 0, -0.965925813, 0, 1, 0, 0.965925813, 0, 0.258818954)
3148
o158.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3149
o158.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3150
o158.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3151
o158.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3152
o158.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3153
o158.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3154
o158.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3155
o158.Position = Vector3.new(65.7333603, 23.1158752, -194.875839)
3156
o158.Orientation = Vector3.new(0, -75, 0)
3157
o158.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3158
o159.Parent = o6
3159
o159.Material = Enum.Material.Slate
3160
o159.BrickColor = BrickColor.new("Dark indigo")
3161
o159.Position = Vector3.new(70.4434967, 18.2882671, -193.323441)
3162
o159.Rotation = Vector3.new(-180, -85, -180)
3163
o159.Anchored = true
3164
o159.FormFactor = Enum.FormFactor.Custom
3165
o159.Size = Vector3.new(15.3347692, 23.2861423, 19.8783951)
3166
o159.CFrame = CFrame.new(70.4434967, 18.2882671, -193.323441, -0.087155968, 0, -0.996194661, 0, 1, 0, 0.996194661, 0, -0.087155968)
3167
o159.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3168
o159.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3169
o159.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3170
o159.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3171
o159.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3172
o159.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3173
o159.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3174
o159.Position = Vector3.new(70.4434967, 18.2882671, -193.323441)
3175
o159.Orientation = Vector3.new(0, -95, 0)
3176
o159.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3177
o160.Parent = o6
3178
o160.Material = Enum.Material.Slate
3179
o160.BrickColor = BrickColor.new("Dark indigo")
3180
o160.Position = Vector3.new(62.8404846, 27.9434834, -199.089401)
3181
o160.Rotation = Vector3.new(0, -75, 0)
3182
o160.Anchored = true
3183
o160.FormFactor = Enum.FormFactor.Custom
3184
o160.Size = Vector3.new(3.42548227, 42.5965767, 14.7668123)
3185
o160.CFrame = CFrame.new(62.8404846, 27.9434834, -199.089401, 0.258818954, 0, -0.965925813, 0, 1, 0, 0.965925813, 0, 0.258818954)
3186
o160.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3187
o160.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3188
o160.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3189
o160.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3190
o160.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3191
o160.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3192
o160.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3193
o160.Position = Vector3.new(62.8404846, 27.9434834, -199.089401)
3194
o160.Orientation = Vector3.new(0, -75, 0)
3195
o160.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3196
o161.Parent = o6
3197
o161.Material = Enum.Material.Slate
3198
o161.BrickColor = BrickColor.new("Dark indigo")
3199
o161.Position = Vector3.new(64.5284729, 48.0437469, -192.789001)
3200
o161.Rotation = Vector3.new(0, -75, 0)
3201
o161.Anchored = true
3202
o161.FormFactor = Enum.FormFactor.Custom
3203
o161.Size = Vector3.new(16.4706802, 2.39605045, 14.7668123)
3204
o161.CFrame = CFrame.new(64.5284729, 48.0437469, -192.789001, 0.258818954, 0, -0.965925813, 0, 1, 0, 0.965925813, 0, 0.258818954)
3205
o161.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3206
o161.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3207
o161.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3208
o161.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3209
o161.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3210
o161.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3211
o161.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3212
o161.Position = Vector3.new(64.5284729, 48.0437469, -192.789001)
3213
o161.Orientation = Vector3.new(0, -75, 0)
3214
o161.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3215
o162.Parent = o6
3216
o162.Material = Enum.Material.Slate
3217
o162.BrickColor = BrickColor.new("Dark indigo")
3218
o162.Position = Vector3.new(67.5511017, 24.8197365, -189.189041)
3219
o162.Rotation = Vector3.new(0, -75, 0)
3220
o162.Anchored = true
3221
o162.FormFactor = Enum.FormFactor.Custom
3222
o162.Size = Vector3.new(7.95136309, 36.3490829, 14.1988592)
3223
o162.CFrame = CFrame.new(67.5511017, 24.8197365, -189.189041, 0.258818954, 0, -0.965925813, 0, 1, 0, 0.965925813, 0, 0.258818954)
3224
o162.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3225
o162.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3226
o162.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3227
o162.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3228
o162.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3229
o162.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3230
o162.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3231
o162.Position = Vector3.new(67.5511017, 24.8197365, -189.189041)
3232
o162.Orientation = Vector3.new(0, -75, 0)
3233
o162.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3234
o163.Parent = o6
3235
o163.Material = Enum.Material.Slate
3236
o163.BrickColor = BrickColor.new("Dark indigo")
3237
o163.Position = Vector3.new(65.5275726, 45.3751221, -189.060211)
3238
o163.Rotation = Vector3.new(0, -75, 0)
3239
o163.Anchored = true
3240
o163.FormFactor = Enum.FormFactor.Custom
3241
o163.Size = Vector3.new(8.7500515, 3.42293596, 14.7668123)
3242
o163.CFrame = CFrame.new(65.5275726, 45.3751221, -189.060211, 0.258818954, 0, -0.965925813, 0, 1, 0, 0.965925813, 0, 0.258818954)
3243
o163.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3244
o163.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3245
o163.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3246
o163.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3247
o163.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3248
o163.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3249
o163.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3250
o163.Position = Vector3.new(65.5275726, 45.3751221, -189.060211)
3251
o163.Orientation = Vector3.new(0, -75, 0)
3252
o163.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3253
o164.Parent = o6
3254
o164.Material = Enum.Material.Slate
3255
o164.BrickColor = BrickColor.new("Dark indigo")
3256
o164.Position = Vector3.new(66.2323151, 24.5357628, -183.133774)
3257
o164.Rotation = Vector3.new(0, -45, 5)
3258
o164.Anchored = true
3259
o164.FormFactor = Enum.FormFactor.Custom
3260
o164.Size = Vector3.new(16.4706802, 35.7811279, 14.7668123)
3261
o164.CFrame = CFrame.new(66.2323151, 24.5357628, -183.133774, 0.704416752, -0.0616286285, -0.707106531, 0.0871559903, 0.996194661, 0, 0.704415739, -0.0616285391, 0.707107544)
3262
o164.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3263
o164.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3264
o164.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3265
o164.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3266
o164.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3267
o164.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3268
o164.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3269
o164.Position = Vector3.new(66.2323151, 24.5357628, -183.133774)
3270
o164.Orientation = Vector3.new(0, -45, 5)
3271
o164.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3272
o165.Parent = o6
3273
o165.Material = Enum.Material.Slate
3274
o165.BrickColor = BrickColor.new("Dark indigo")
3275
o165.Position = Vector3.new(74.5222855, 20.5600777, -180.523407)
3276
o165.Rotation = Vector3.new(-5, -45, 0)
3277
o165.Anchored = true
3278
o165.FormFactor = Enum.FormFactor.Custom
3279
o165.Size = Vector3.new(23.8540821, 27.8297691, 14.7668123)
3280
o165.CFrame = CFrame.new(74.5222855, 20.5600777, -180.523407, 0.707106948, 4.05663371e-07, -0.70710665, 0.0616279915, 0.99619472, 0.0616285875, 0.704415917, -0.0871555656, 0.704416156)
3281
o165.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3282
o165.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3283
o165.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3284
o165.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3285
o165.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3286
o165.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3287
o165.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3288
o165.Position = Vector3.new(74.5222855, 20.5600777, -180.523407)
3289
o165.Orientation = Vector3.new(-3.52999997, -45.1100006, 3.53999996)
3290
o165.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3291
o166.Parent = o6
3292
o166.Material = Enum.Material.Slate
3293
o166.BrickColor = BrickColor.new("Dark indigo")
3294
o166.Position = Vector3.new(74.2402267, 12.694746, -174.283279)
3295
o166.Rotation = Vector3.new(5, -40, 0)
3296
o166.Anchored = true
3297
o166.FormFactor = Enum.FormFactor.Custom
3298
o166.Size = Vector3.new(33.4253273, 15.1417084, 20.0524254)
3299
o166.CFrame = CFrame.new(74.2402267, 12.694746, -174.283279, 0.766045868, -4.85136184e-07, -0.642785907, -0.0560219921, 0.99619472, -0.0667654723, 0.640339911, 0.0871555656, 0.763130844)
3300
o166.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3301
o166.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3302
o166.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3303
o166.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3304
o166.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3305
o166.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3306
o166.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3307
o166.Position = Vector3.new(74.2402267, 12.694746, -174.283279)
3308
o166.Orientation = Vector3.new(3.82999992, -40.1100006, -3.22000003)
3309
o166.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3310
o167.Parent = o6
3311
o167.Material = Enum.Material.Slate
3312
o167.BrickColor = BrickColor.new("Dark indigo")
3313
o167.Position = Vector3.new(82.9901657, 18.7419376, -172.259308)
3314
o167.Rotation = Vector3.new(5, -25, 0)
3315
o167.Anchored = true
3316
o167.FormFactor = Enum.FormFactor.Custom
3317
o167.Size = Vector3.new(24.373558, 24.1934776, 16.3252277)
3318
o167.CFrame = CFrame.new(82.9901657, 18.7419376, -172.259308, 0.906308234, 3.51131064e-07, -0.422617316, -0.036834009, 0.996194661, -0.0789901689, 0.421009094, 0.0871561319, 0.902859449)
3319
o167.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3320
o167.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3321
o167.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3322
o167.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3323
o167.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3324
o167.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3325
o167.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3326
o167.Position = Vector3.new(82.9901657, 18.7419376, -172.259308)
3327
o167.Orientation = Vector3.new(4.52999973, -25.0799999, -2.11999989)
3328
o167.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3329
o168.Parent = o6
3330
o168.Material = Enum.Material.Slate
3331
o168.BrickColor = BrickColor.new("Dark indigo")
3332
o168.Position = Vector3.new(89.5014572, 12.4312439, -168.661789)
3333
o168.Rotation = Vector3.new(-5, -5, 0)
3334
o168.Anchored = true
3335
o168.FormFactor = Enum.FormFactor.Custom
3336
o168.Size = Vector3.new(21.4577312, 14.1528568, 13.7263298)
3337
o168.CFrame = CFrame.new(89.5014572, 12.4312439, -168.661789, 0.996194899, -3.85028045e-08, -0.0871536508, 0.00759599917, 0.996194661, 0.0868243352, 0.0868219957, -0.087155968, 0.992404103)
3338
o168.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3339
o168.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3340
o168.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3341
o168.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3342
o168.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3343
o168.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3344
o168.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3345
o168.Position = Vector3.new(89.5014572, 12.4312439, -168.661789)
3346
o168.Orientation = Vector3.new(-4.98000002, -5.01999998, 0.439999998)
3347
o168.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3348
o169.Parent = o6
3349
o169.Material = Enum.Material.Neon
3350
o169.BrickColor = BrickColor.new("Dark indigo")
3351
o169.Reflectance = 0.5
3352
o169.Position = Vector3.new(86.8722229, 18.8245087, -195.374771)
3353
o169.Rotation = Vector3.new(180, 0.0199999996, -179.98999)
3354
o169.Anchored = true
3355
o169.CanCollide = false
3356
o169.FormFactor = Enum.FormFactor.Custom
3357
o169.Size = Vector3.new(19.0163288, 5.57812452, 35.4971581)
3358
o169.CFrame = CFrame.new(86.8722229, 18.8245087, -195.374771, -0.999996185, 9.64477586e-05, 0.000293251273, 9.64320279e-05, 1, -5.20706562e-05, -0.000293252611, -5.20414578e-05, -1.00000739)
3359
o169.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3360
o169.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3361
o169.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3362
o169.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3363
o169.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3364
o169.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3365
o169.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3366
o169.Position = Vector3.new(86.8722229, 18.8245087, -195.374771)
3367
o169.Orientation = Vector3.new(0, 179.979996, 0.00999999978)
3368
o169.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3369
o170.Parent = o6
3370
o170.Material = Enum.Material.Wood
3371
o170.BrickColor = BrickColor.new("Cocoa")
3372
o170.Position = Vector3.new(92.5602951, 33.9349709, -197.922974)
3373
o170.Rotation = Vector3.new(67.0599976, 28.6399994, -55.4300003)
3374
o170.Anchored = true
3375
o170.FormFactor = Enum.FormFactor.Custom
3376
o170.Size = Vector3.new(1.77485764, 1.6480819, 1.77485764)
3377
o170.CFrame = CFrame.new(92.5602951, 33.9349709, -197.922974, 0.497975945, 0.722710848, 0.479279667, -0.0705789924, 0.584623992, -0.808228552, -0.8643139, 0.368651301, 0.34213689)
3378
o170.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3379
o170.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3380
o170.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3381
o170.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3382
o170.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3383
o170.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3384
o170.Color = Color3.new(0.247059, 0.192157, 0.160784)
3385
o170.Position = Vector3.new(92.5602951, 33.9349709, -197.922974)
3386
o170.Orientation = Vector3.new(53.9199982, 54.4799995, -6.87999964)
3387
o170.Color = Color3.new(0.247059, 0.192157, 0.160784)
3388
o171.Parent = o6
3389
o171.Material = Enum.Material.Slate
3390
o171.BrickColor = BrickColor.new("Dark indigo")
3391
o171.Position = Vector3.new(64.5284729, 25.2811909, -192.789001)
3392
o171.Rotation = Vector3.new(0, -75, 0)
3393
o171.Anchored = true
3394
o171.FormFactor = Enum.FormFactor.Custom
3395
o171.Size = Vector3.new(16.4706802, 37.2719879, 14.7668123)
3396
o171.CFrame = CFrame.new(64.5284729, 25.2811909, -192.789001, 0.258818954, 0, -0.965925813, 0, 1, 0, 0.965925813, 0, 0.258818954)
3397
o171.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3398
o171.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3399
o171.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3400
o171.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3401
o171.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3402
o171.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3403
o171.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3404
o171.Position = Vector3.new(64.5284729, 25.2811909, -192.789001)
3405
o171.Orientation = Vector3.new(0, -75, 0)
3406
o171.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3407
o172.Parent = o6
3408
o172.Material = Enum.Material.Slate
3409
o172.BrickColor = BrickColor.new("Dark indigo")
3410
o172.Position = Vector3.new(66.785675, 17.4107971, -210.490417)
3411
o172.Rotation = Vector3.new(172.899994, -54.6899986, 171.330002)
3412
o172.Anchored = true
3413
o172.FormFactor = Enum.FormFactor.Custom
3414
o172.Size = Vector3.new(33.4253273, 21.5311985, 20.0524254)
3415
o172.CFrame = CFrame.new(66.785675, 17.4107971, -210.490417, -0.571393967, -0.0871561766, -0.816034734, -0.049990993, 0.996194661, -0.0713939816, 0.819151878, 3.02106173e-07, -0.573576689)
3416
o172.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3417
o172.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3418
o172.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3419
o172.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3420
o172.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3421
o172.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3422
o172.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3423
o172.Position = Vector3.new(66.785675, 17.4107971, -210.490417)
3424
o172.Orientation = Vector3.new(4.08999968, -125.099998, -2.86999989)
3425
o172.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3426
o173.Parent = o6
3427
o173.Material = Enum.Material.Slate
3428
o173.BrickColor = BrickColor.new("Dark indigo")
3429
o173.Position = Vector3.new(91.0575027, 22.6189079, -197.859161)
3430
o173.Rotation = Vector3.new(0, -45, 0)
3431
o173.Anchored = true
3432
o173.FormFactor = Enum.FormFactor.Custom
3433
o173.Size = Vector3.new(4.81747246, 5.07102251, 5.493608)
3434
o173.CFrame = CFrame.new(91.0575027, 22.6189079, -197.859161, 0.707107365, 0, -0.707106352, 0, 1, 0, 0.707106352, 0, 0.707107365)
3435
o173.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3436
o173.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3437
o173.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3438
o173.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3439
o173.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3440
o173.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3441
o173.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3442
o173.Position = Vector3.new(91.0575027, 22.6189079, -197.859161)
3443
o173.Orientation = Vector3.new(0, -45, 0)
3444
o173.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3445
o174.Parent = o6
3446
o174.Material = Enum.Material.Slate
3447
o174.BrickColor = BrickColor.new("Dark indigo")
3448
o174.Position = Vector3.new(60.455471, 26.8658905, -196.160065)
3449
o174.Rotation = Vector3.new(0, -75, 0)
3450
o174.Anchored = true
3451
o174.FormFactor = Enum.FormFactor.Custom
3452
o174.Size = Vector3.new(7.84994221, 40.4413872, 8.64355183)
3453
o174.CFrame = CFrame.new(60.455471, 26.8658905, -196.160065, 0.258818954, 0, -0.965925813, 0, 1, 0, 0.965925813, 0, 0.258818954)
3454
o174.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3455
o174.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3456
o174.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3457
o174.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3458
o174.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3459
o174.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3460
o174.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3461
o174.Position = Vector3.new(60.455471, 26.8658905, -196.160065)
3462
o174.Orientation = Vector3.new(0, -75, 0)
3463
o174.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3464
o175.Parent = o6
3465
o175.Material = Enum.Material.Grass
3466
o175.BrickColor = BrickColor.new("Royal purple")
3467
o175.Position = Vector3.new(95.8301926, 11.6030464, -208.626038)
3468
o175.Rotation = Vector3.new(0, -75, -5)
3469
o175.Anchored = true
3470
o175.FormFactor = Enum.FormFactor.Custom
3471
o175.Size = Vector3.new(17.74856, 10.3955946, 15.9737139)
3472
o175.CFrame = CFrame.new(95.8301926, 11.6030464, -208.626038, 0.257834047, 0.022557104, -0.965925872, -0.0871560201, 0.996194661, -5.41637576e-07, 0.962250233, 0.0841863975, 0.258818895)
3473
o175.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3474
o175.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3475
o175.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3476
o175.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3477
o175.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3478
o175.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3479
o175.Color = Color3.new(0.384314, 0.145098, 0.819608)
3480
o175.Position = Vector3.new(95.8301926, 11.6030464, -208.626038)
3481
o175.Orientation = Vector3.new(0, -75, -5)
3482
o175.Color = Color3.new(0.384314, 0.145098, 0.819608)
3483
o176.Parent = o6
3484
o176.Material = Enum.Material.Grass
3485
o176.BrickColor = BrickColor.new("Royal purple")
3486
o176.Position = Vector3.new(75.3514633, 8.42004967, -198.126938)
3487
o176.Rotation = Vector3.new(172.519989, 19.4099998, -170.389999)
3488
o176.Anchored = true
3489
o176.FormFactor = Enum.FormFactor.Custom
3490
o176.Size = Vector3.new(25.1015415, 10.649147, 24.5944538)
3491
o176.CFrame = CFrame.new(75.3514633, 8.42004967, -198.126938, -0.929956734, 0.157377824, 0.332283944, 0.122786969, 0.984807849, -0.122787617, -0.346559912, -0.0733870342, -0.93515265)
3492
o176.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3493
o176.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3494
o176.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3495
o176.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3496
o176.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3497
o176.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3498
o176.Color = Color3.new(0.384314, 0.145098, 0.819608)
3499
o176.Position = Vector3.new(75.3514633, 8.42004967, -198.126938)
3500
o176.Orientation = Vector3.new(7.04999971, 160.440002, 7.10999966)
3501
o176.Color = Color3.new(0.384314, 0.145098, 0.819608)
3502
o177.Parent = o6
3503
o177.Material = Enum.Material.Grass
3504
o177.BrickColor = BrickColor.new("Royal purple")
3505
o177.Position = Vector3.new(76.4224854, 10.7289734, -182.912552)
3506
o177.Rotation = Vector3.new(159.580002, 63.1899986, -157.349991)
3507
o177.Anchored = true
3508
o177.FormFactor = Enum.FormFactor.Custom
3509
o177.Size = Vector3.new(25.1015415, 15.2130651, 13.4382076)
3510
o177.CFrame = CFrame.new(76.4224854, 10.7289734, -182.912552, -0.416197866, 0.173648819, 0.892538726, 0.0733869746, 0.984807611, -0.157379359, -0.906307697, -2.36338053e-07, -0.422618389)
3511
o177.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3512
o177.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3513
o177.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3514
o177.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3515
o177.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3516
o177.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3517
o177.Color = Color3.new(0.384314, 0.145098, 0.819608)
3518
o177.Position = Vector3.new(76.4224854, 10.7289734, -182.912552)
3519
o177.Orientation = Vector3.new(9.05000019, 115.339996, 4.25999975)
3520
o177.Color = Color3.new(0.384314, 0.145098, 0.819608)
3521
o178.Parent = o6
3522
o178.Material = Enum.Material.Grass
3523
o178.BrickColor = BrickColor.new("Royal purple")
3524
o178.Position = Vector3.new(80.9823151, 9.94906044, -215.17691)
3525
o178.Rotation = Vector3.new(-168.48999, -29.5, -174.269989)
3526
o178.Anchored = true
3527
o178.FormFactor = Enum.FormFactor.Custom
3528
o178.Size = Vector3.new(22.0589314, 11.6633501, 15.9737167)
3529
o178.CFrame = CFrame.new(80.9823151, 9.94906044, -215.17691, -0.866025269, 0.0868241936, -0.492404044, 0, 0.98480773, 0.173648313, 0.500000179, 0.15038383, -0.852868378)
3530
o178.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3531
o178.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3532
o178.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3533
o178.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3534
o178.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3535
o178.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3536
o178.Color = Color3.new(0.384314, 0.145098, 0.819608)
3537
o178.Position = Vector3.new(80.9823151, 9.94906044, -215.17691)
3538
o178.Orientation = Vector3.new(-10, -150, 0)
3539
o178.Color = Color3.new(0.384314, 0.145098, 0.819608)
3540
o179.Parent = o6
3541
o179.Material = Enum.Material.Grass
3542
o179.BrickColor = BrickColor.new("Royal purple")
3543
o179.Position = Vector3.new(80.7364426, 11.7727985, -200.703262)
3544
o179.Rotation = Vector3.new(-174.759995, -14.0799999, -169.349991)
3545
o179.Anchored = true
3546
o179.FormFactor = Enum.FormFactor.Custom
3547
o179.Size = Vector3.new(18.5092182, 16.7343674, 26.1157551)
3548
o179.CFrame = CFrame.new(80.7364426, 11.7727985, -200.703262, -0.953275025, 0.179207951, -0.24321045, 0.162171006, 0.982784092, 0.0885208398, 0.254887015, 0.0449430197, -0.965925872)
3549
o179.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3550
o179.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3551
o179.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3552
o179.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3553
o179.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3554
o179.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3555
o179.Color = Color3.new(0.384314, 0.145098, 0.819608)
3556
o179.Position = Vector3.new(80.7364426, 11.7727985, -200.703262)
3557
o179.Orientation = Vector3.new(-5.07999992, -165.869995, 9.36999989)
3558
o179.Color = Color3.new(0.384314, 0.145098, 0.819608)
3559
o180.Parent = o6
3560
o180.Material = Enum.Material.Slate
3561
o180.BrickColor = BrickColor.new("Dark indigo")
3562
o180.Position = Vector3.new(91.0575027, 21.1821213, -197.859161)
3563
o180.Rotation = Vector3.new(0, -75, 0)
3564
o180.Anchored = true
3565
o180.FormFactor = Enum.FormFactor.Custom
3566
o180.Size = Vector3.new(6.97265673, 4.22585297, 7.39524126)
3567
o180.CFrame = CFrame.new(91.0575027, 21.1821213, -197.859161, 0.258818954, 0, -0.965925813, 0, 1, 0, 0.965925813, 0, 0.258818954)
3568
o180.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3569
o180.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3570
o180.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3571
o180.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3572
o180.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3573
o180.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3574
o180.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3575
o180.Position = Vector3.new(91.0575027, 21.1821213, -197.859161)
3576
o180.Orientation = Vector3.new(0, -75, 0)
3577
o180.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3578
o181.Parent = o6
3579
o181.Material = Enum.Material.Fabric
3580
o181.BrickColor = BrickColor.new("Dark indigo")
3581
o181.Position = Vector3.new(95.0107117, 12.0461807, -221.45668)
3582
o181.Rotation = Vector3.new(-90, -85, -80)
3583
o181.Anchored = true
3584
o181.FormFactor = Enum.FormFactor.Custom
3585
o181.Size = Vector3.new(12.1704397, 10.142045, 19.0163269)
3586
o181.CFrame = CFrame.new(95.0107117, 12.0461807, -221.45668, 0.0151339974, 0.0858320296, -0.996194661, 0.172986969, 0.981060326, 0.087156035, 0.984807849, -0.173647717, -4.57864189e-07)
3587
o181.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3588
o181.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3589
o181.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3590
o181.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3591
o181.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3592
o181.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3593
o181.Color = Color3.new(0.243137, 0.0784314, 0.552941)
3594
o181.Position = Vector3.new(95.0107117, 12.0461807, -221.45668)
3595
o181.Orientation = Vector3.new(-5, -90, 10)
3596
o181.Color = Color3.new(0.243137, 0.0784314, 0.552941)
3597
o182.Parent = o6
3598
o182.Material = Enum.Material.Grass
3599
o182.BrickColor = BrickColor.new("Medium lilac")
3600
o182.Position = Vector3.new(94.9933548, 11.8488026, -172.884369)
3601
o182.Rotation = Vector3.new(-90, -85, -100)
3602
o182.Anchored = true
3603
o182.FormFactor = Enum.FormFactor.Custom
3604
o182.Size = Vector3.new(14.452405, 10.142045, 19.0163269)
3605
o182.CFrame = CFrame.new(94.9933548, 11.8488026, -172.884369, -0.0151339974, 0.0858320296, -0.996194661, -0.172986969, 0.981060326, 0.087156035, 0.984807849, 0.173647717, 4.57864189e-07)
3606
o182.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3607
o182.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3608
o182.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3609
o182.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3610
o182.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3611
o182.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3612
o182.Color = Color3.new(0.203922, 0.0862745, 0.423529)
3613
o182.Position = Vector3.new(94.9933548, 11.8488026, -172.884369)
3614
o182.Orientation = Vector3.new(-5, -90, -10)
3615
o182.Color = Color3.new(0.203922, 0.0862745, 0.423529)
3616
o183.Parent = o6
3617
o183.Material = Enum.Material.Grass
3618
o183.BrickColor = BrickColor.new("Royal purple")
3619
o183.Position = Vector3.new(97.5595703, 13.136919, -185.068329)
3620
o183.Rotation = Vector3.new(-146.48999, -71.9899979, -141.48999)
3621
o183.Anchored = true
3622
o183.FormFactor = Enum.FormFactor.Custom
3623
o183.Size = Vector3.new(24.8479919, 19.2698822, 10.6491413)
3624
o183.CFrame = CFrame.new(97.5595703, 13.136919, -185.068329, -0.241977036, 0.19251208, -0.950992227, 0.108326018, 0.979352117, 0.170689806, 0.964216113, -0.0617141835, -0.257834762)
3625
o183.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3626
o183.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3627
o183.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3628
o183.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3629
o183.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3630
o183.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3631
o183.Color = Color3.new(0.458824, 0.164706, 1)
3632
o183.Position = Vector3.new(97.5595703, 13.136919, -185.068329)
3633
o183.Orientation = Vector3.new(-9.82999992, -105.169998, 6.30999994)
3634
o183.Color = Color3.new(0.458824, 0.164706, 1)
3635
o184.Parent = o6
3636
o184.Material = Enum.Material.Fabric
3637
o184.BrickColor = BrickColor.new("Royal purple")
3638
o184.Position = Vector3.new(98.1027756, 15.2228966, -211.410278)
3639
o184.Rotation = Vector3.new(0, -75, -5)
3640
o184.Anchored = true
3641
o184.FormFactor = Enum.FormFactor.Custom
3642
o184.Size = Vector3.new(12.9310913, 17.2414703, 10.1420441)
3643
o184.CFrame = CFrame.new(98.1027756, 15.2228966, -211.410278, 0.257834047, 0.022557104, -0.965925872, -0.0871560201, 0.996194661, -5.41637576e-07, 0.962250233, 0.0841863975, 0.258818895)
3644
o184.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3645
o184.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3646
o184.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3647
o184.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3648
o184.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3649
o184.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3650
o184.Color = Color3.new(0.309804, 0.0823529, 0.737255)
3651
o184.Position = Vector3.new(98.1027756, 15.2228966, -211.410278)
3652
o184.Orientation = Vector3.new(0, -75, -5)
3653
o184.Color = Color3.new(0.309804, 0.0823529, 0.737255)
3654
o185.Parent = o6
3655
o185.Material = Enum.Material.Grass
3656
o185.BrickColor = BrickColor.new("Royal purple")
3657
o185.Position = Vector3.new(99.8049316, 13.4910717, -212.94545)
3658
o185.Rotation = Vector3.new(39.5599976, -75.8899994, 45.4399986)
3659
o185.Anchored = true
3660
o185.FormFactor = Enum.FormFactor.Custom
3661
o185.Size = Vector3.new(14.452405, 13.6917572, 16.4808197)
3662
o185.CFrame = CFrame.new(99.8049316, 13.4910717, -212.94545, 0.171010062, -0.173648074, -0.969846308, 0.115870044, 0.981060386, -0.155224875, 0.978432357, -0.0858311132, 0.187891766)
3663
o185.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3664
o185.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3665
o185.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3666
o185.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3667
o185.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3668
o185.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3669
o185.Color = Color3.new(0.384314, 0.145098, 0.819608)
3670
o185.Position = Vector3.new(99.8049316, 13.4910717, -212.94545)
3671
o185.Orientation = Vector3.new(8.92999935, -79.0400009, 6.73999977)
3672
o185.Color = Color3.new(0.384314, 0.145098, 0.819608)
3673
o186.Parent = o6
3674
o186.Material = Enum.Material.Fabric
3675
o186.BrickColor = BrickColor.new("Dark indigo")
3676
o186.Position = Vector3.new(99.8049316, 13.4910717, -182.519318)
3677
o186.Rotation = Vector3.new(140.440002, -75.8899994, 134.559998)
3678
o186.Anchored = true
3679
o186.FormFactor = Enum.FormFactor.Custom
3680
o186.Size = Vector3.new(14.452405, 13.6917572, 16.4808197)
3681
o186.CFrame = CFrame.new(99.8049316, 13.4910717, -182.519318, -0.171010062, -0.173648074, -0.969846308, -0.115870044, 0.981060386, -0.155224875, 0.978432357, 0.0858311132, -0.187891766)
3682
o186.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3683
o186.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3684
o186.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3685
o186.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3686
o186.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3687
o186.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3688
o186.Color = Color3.new(0.243137, 0.0784314, 0.552941)
3689
o186.Position = Vector3.new(99.8049316, 13.4910717, -182.519318)
3690
o186.Orientation = Vector3.new(8.92999935, -100.959999, -6.73999977)
3691
o186.Color = Color3.new(0.243137, 0.0784314, 0.552941)
3692
o187.Parent = o6
3693
o187.Material = Enum.Material.Fabric
3694
o187.BrickColor = BrickColor.new("Royal purple")
3695
o187.Position = Vector3.new(103.847931, 11.1171894, -203.245575)
3696
o187.Rotation = Vector3.new(178.48999, 39.3999977, -160.599991)
3697
o187.Anchored = true
3698
o187.FormFactor = Enum.FormFactor.Custom
3699
o187.Size = Vector3.new(9.88848877, 8.62073803, 15.9737177)
3700
o187.CFrame = CFrame.new(103.847931, 11.1171894, -203.245575, -0.728858054, 0.256627887, 0.634750366, 0.316241026, 0.948460937, -0.020333495, -0.607254088, 0.185913891, -0.772449672)
3701
o187.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3702
o187.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3703
o187.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3704
o187.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3705
o187.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3706
o187.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3707
o187.Color = Color3.new(0.384314, 0.145098, 0.819608)
3708
o187.Position = Vector3.new(103.847931, 11.1171894, -203.245575)
3709
o187.Orientation = Vector3.new(1.16999996, 140.589996, 18.4400005)
3710
o187.Color = Color3.new(0.384314, 0.145098, 0.819608)
3711
o188.Parent = o6
3712
o188.Material = Enum.Material.Grass
3713
o188.BrickColor = BrickColor.new("Royal purple")
3714
o188.Position = Vector3.new(113.725418, 9.4342556, -177.169891)
3715
o188.Rotation = Vector3.new(-153.259995, -58.5200005, -160.569992)
3716
o188.Anchored = true
3717
o188.FormFactor = Enum.FormFactor.Custom
3718
o188.Size = Vector3.new(10.9026928, 4.56392097, 11.4097958)
3719
o188.CFrame = CFrame.new(113.725418, 9.4342556, -177.169891, -0.492404908, 0.173648283, -0.852867901, -0.0648779869, 0.969846427, 0.234923109, 0.867944837, 0.17100966, -0.466291159)
3720
o188.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3721
o188.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3722
o188.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3723
o188.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3724
o188.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3725
o188.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3726
o188.Color = Color3.new(0.384314, 0.145098, 0.819608)
3727
o188.Position = Vector3.new(113.725418, 9.4342556, -177.169891)
3728
o188.Orientation = Vector3.new(-13.5900002, -118.669998, -3.82999992)
3729
o188.Color = Color3.new(0.384314, 0.145098, 0.819608)
3730
o189.Parent = o6
3731
o189.Material = Enum.Material.Grass
3732
o189.BrickColor = BrickColor.new("Royal purple")
3733
o189.Position = Vector3.new(109.156387, 10.6899128, -216.125092)
3734
o189.Rotation = Vector3.new(-171.309998, -69.8199997, -165.419998)
3735
o189.Anchored = true
3736
o189.FormFactor = Enum.FormFactor.Custom
3737
o189.Size = Vector3.new(14.452405, 8.11363697, 15.9737177)
3738
o189.CFrame = CFrame.new(109.156387, 10.6899128, -216.125092, -0.333828121, 0.0868230909, -0.938626945, 0.111508034, 0.992394865, 0.0521381423, 0.936015368, -0.0872592703, -0.340970814)
3739
o189.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3740
o189.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3741
o189.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3742
o189.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3743
o189.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3744
o189.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3745
o189.Color = Color3.new(0.458824, 0.164706, 1)
3746
o189.Position = Vector3.new(109.156387, 10.6899128, -216.125092)
3747
o189.Orientation = Vector3.new(-2.99000001, -109.959999, 6.40999985)
3748
o189.Color = Color3.new(0.458824, 0.164706, 1)
3749
o190.Parent = o6
3750
o190.Material = Enum.Material.Grass
3751
o190.BrickColor = BrickColor.new("Royal purple")
3752
o190.Position = Vector3.new(109.156113, 10.6900234, -179.171417)
3753
o190.Rotation = Vector3.new(-8.72999954, -69.8499985, -14.5999994)
3754
o190.Anchored = true
3755
o190.FormFactor = Enum.FormFactor.Custom
3756
o190.Size = Vector3.new(14.452405, 8.11363697, 15.9737177)
3757
o190.CFrame = CFrame.new(109.156113, 10.6900234, -179.171417, 0.333333969, 0.0868247598, -0.938802481, -0.111284994, 0.992412984, 0.0522697344, 0.936217964, 0.0870513394, 0.340467274)
3758
o190.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3759
o190.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3760
o190.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3761
o190.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3762
o190.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3763
o190.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3764
o190.Color = Color3.new(0.458824, 0.164706, 1)
3765
o190.Position = Vector3.new(109.156113, 10.6900234, -179.171417)
3766
o190.Orientation = Vector3.new(-3, -70.0699997, -6.39999962)
3767
o190.Color = Color3.new(0.458824, 0.164706, 1)
3768
o191.Parent = o6
3769
o191.Material = Enum.Material.Grass
3770
o191.BrickColor = BrickColor.new("Royal purple")
3771
o191.Position = Vector3.new(117.68824, 8.25331497, -210.116714)
3772
o191.Rotation = Vector3.new(-170.149994, -44.1199989, -165.98999)
3773
o191.Anchored = true
3774
o191.FormFactor = Enum.FormFactor.Custom
3775
o191.Size = Vector3.new(9.9118042, 4.56405592, 12.6778936)
3776
o191.CFrame = CFrame.new(117.68824, 8.25331497, -210.116714, -0.696537018, 0.17373687, -0.696169317, 0.122918002, 0.984792113, 0.122783005, 0.706914008, -4.88412661e-05, -0.707299531)
3777
o191.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3778
o191.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3779
o191.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3780
o191.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3781
o191.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3782
o191.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3783
o191.Color = Color3.new(0.309804, 0.121569, 0.666667)
3784
o191.Position = Vector3.new(117.68824, 8.25331497, -210.116714)
3785
o191.Orientation = Vector3.new(-7.04999971, -135.449997, 7.10999966)
3786
o191.Color = Color3.new(0.309804, 0.121569, 0.666667)
3787
o192.Parent = o6
3788
o192.Material = Enum.Material.Grass
3789
o192.BrickColor = BrickColor.new("Royal purple")
3790
o192.Position = Vector3.new(103.053864, 11.9178143, -192.407837)
3791
o192.Rotation = Vector3.new(-177.339996, -14.7699995, -169.649994)
3792
o192.Anchored = true
3793
o192.FormFactor = Enum.FormFactor.Custom
3794
o192.Size = Vector3.new(9.88848877, 10.142045, 15.9737177)
3795
o192.CFrame = CFrame.new(103.053864, 11.9178143, -192.407837, -0.951251566, 0.173647806, -0.254885852, 0.167730927, 0.984807789, 0.0449431948, 0.258817881, 4.24235473e-08, -0.96592617)
3796
o192.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3797
o192.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3798
o192.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3799
o192.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3800
o192.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3801
o192.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3802
o192.Color = Color3.new(0.384314, 0.145098, 0.819608)
3803
o192.Position = Vector3.new(103.053864, 11.9178143, -192.407837)
3804
o192.Orientation = Vector3.new(-2.57999992, -165.220001, 9.67000008)
3805
o192.Color = Color3.new(0.384314, 0.145098, 0.819608)
3806
o193.Parent = o6
3807
o193.Material = Enum.Material.Slate
3808
o193.BrickColor = BrickColor.new("Dark indigo")
3809
o193.Position = Vector3.new(113.365891, 7.28860092, -197.657333)
3810
o193.Rotation = Vector3.new(180, 0.0199999996, -179.98999)
3811
o193.Anchored = true
3812
o193.FormFactor = Enum.FormFactor.Custom
3813
o193.Size = Vector3.new(15.2130661, 1.26775551, 15.2130661)
3814
o193.CFrame = CFrame.new(113.365891, 7.28860092, -197.657333, -0.999996185, 9.64477586e-05, 0.000293251273, 9.64320279e-05, 1, -5.20706562e-05, -0.000293252611, -5.20414578e-05, -1.00000739)
3815
o193.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3816
o193.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3817
o193.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3818
o193.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3819
o193.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3820
o193.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3821
o193.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3822
o193.Position = Vector3.new(113.365891, 7.28860092, -197.657333)
3823
o193.Orientation = Vector3.new(0, 179.979996, 0.00999999978)
3824
o193.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3825
o194.Parent = o6
3826
o194.Material = Enum.Material.Fabric
3827
o194.BrickColor = BrickColor.new("Dark indigo")
3828
o194.Position = Vector3.new(117.688278, 8.25330734, -185.221924)
3829
o194.Rotation = Vector3.new(-9.85999966, -44.1499977, -14)
3830
o194.Anchored = true
3831
o194.FormFactor = Enum.FormFactor.Custom
3832
o194.Size = Vector3.new(9.9118042, 4.56405592, 12.6778936)
3833
o194.CFrame = CFrame.new(117.688278, 8.25330734, -185.221924, 0.696191967, 0.1735982, -0.696548939, -0.122657984, 0.984816551, 0.122846894, 0.707298934, -8.77310958e-05, 0.706914604)
3834
o194.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3835
o194.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3836
o194.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3837
o194.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3838
o194.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3839
o194.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3840
o194.Color = Color3.new(0.243137, 0.0784314, 0.552941)
3841
o194.Position = Vector3.new(117.688278, 8.25330734, -185.221924)
3842
o194.Orientation = Vector3.new(-7.05999994, -44.579998, -7.0999999)
3843
o194.Color = Color3.new(0.243137, 0.0784314, 0.552941)
3844
o195.Parent = o6
3845
o195.Material = Enum.Material.Grass
3846
o195.BrickColor = BrickColor.new("Royal purple")
3847
o195.Position = Vector3.new(110.28434, 8.71788025, -184.979187)
3848
o195.Rotation = Vector3.new(-5.00999975, -85.0199966, 0)
3849
o195.Anchored = true
3850
o195.FormFactor = Enum.FormFactor.Custom
3851
o195.Size = Vector3.new(11.4097948, 7.09943199, 15.9737177)
3852
o195.CFrame = CFrame.new(110.28434, 8.71788025, -184.979187, 0.0868849903, 4.53140592e-09, -0.996218324, 0.0869239941, 0.996186137, 0.00758106261, 0.992418885, -0.087253958, 0.0865536034)
3853
o195.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3854
o195.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3855
o195.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3856
o195.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3857
o195.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3858
o195.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3859
o195.Color = Color3.new(0.309804, 0.121569, 0.666667)
3860
o195.Position = Vector3.new(110.28434, 8.71788025, -184.979187)
3861
o195.Orientation = Vector3.new(-0.429999977, -85.0299988, 4.98999977)
3862
o195.Color = Color3.new(0.309804, 0.121569, 0.666667)
3863
o196.Parent = o6
3864
o196.Material = Enum.Material.Slate
3865
o196.BrickColor = BrickColor.new("Dark indigo")
3866
o196.Position = Vector3.new(121.479591, 7.54135132, -197.654968)
3867
o196.Rotation = Vector3.new(0, -0.0199999996, -0.00999999978)
3868
o196.Anchored = true
3869
o196.FormFactor = Enum.FormFactor.Custom
3870
o196.Size = Vector3.new(1.77485764, 1.77485788, 12.6775551)
3871
o196.CFrame = CFrame.new(121.479591, 7.54135132, -197.654968, 0.999996185, 9.64477513e-05, -0.000293340679, -9.64320134e-05, 1, 5.20706599e-05, 0.000293342018, -5.20414578e-05, 1.00000739)
3872
o196.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3873
o196.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3874
o196.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3875
o196.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3876
o196.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3877
o196.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3878
o196.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3879
o196.Position = Vector3.new(121.479591, 7.54135132, -197.654968)
3880
o196.Orientation = Vector3.new(0, -0.0199999996, -0.00999999978)
3881
o196.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3882
o197.Parent = o6
3883
o197.Material = Enum.Material.Slate
3884
o197.BrickColor = BrickColor.new("Dark indigo")
3885
o197.Position = Vector3.new(120.719124, 8.17530823, -197.655197)
3886
o197.Rotation = Vector3.new(180, 0.0199999996, -179.98999)
3887
o197.Anchored = true
3888
o197.CanCollide = false
3889
o197.FormFactor = Enum.FormFactor.Custom
3890
o197.Size = Vector3.new(0.507102191, 3.04261327, 15.2130661)
3891
o197.CFrame = CFrame.new(120.719124, 8.17530823, -197.655197, -0.999996185, 9.64477586e-05, 0.000293251273, 9.64320279e-05, 1, -5.20706562e-05, -0.000293252611, -5.20414578e-05, -1.00000739)
3892
o197.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3893
o197.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3894
o197.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3895
o197.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3896
o197.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3897
o197.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3898
o197.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3899
o197.Position = Vector3.new(120.719124, 8.17530823, -197.655197)
3900
o197.Orientation = Vector3.new(0, 179.979996, 0.00999999978)
3901
o197.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3902
o198.Parent = o6
3903
o198.Material = Enum.Material.Fabric
3904
o198.BrickColor = BrickColor.new("Royal purple")
3905
o198.Position = Vector3.new(107.067596, 7.76239586, -174.141907)
3906
o198.Rotation = Vector3.new(-170.12999, -60.4399986, 179.959991)
3907
o198.Anchored = true
3908
o198.FormFactor = Enum.FormFactor.Custom
3909
o198.Size = Vector3.new(13.945303, 4.56392097, 14.4524059)
3910
o198.CFrame = CFrame.new(107.067596, 7.76239586, -174.141907, -0.493408829, -0.000329639821, -0.869797468, -0.149777934, 0.985094368, 0.0845909938, 0.856804729, 0.172014415, -0.486103624)
3911
o198.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3912
o198.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3913
o198.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3914
o198.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3915
o198.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3916
o198.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3917
o198.Color = Color3.new(0.309804, 0.0823529, 0.737255)
3918
o198.Position = Vector3.new(107.067596, 7.76239586, -174.141907)
3919
o198.Orientation = Vector3.new(-4.8499999, -119.199997, -8.64999962)
3920
o198.Color = Color3.new(0.309804, 0.0823529, 0.737255)
3921
o199.Parent = o6
3922
o199.Material = Enum.Material.Fabric
3923
o199.BrickColor = BrickColor.new("Royal purple")
3924
o199.Position = Vector3.new(113.725418, 9.4342556, -218.245117)
3925
o199.Rotation = Vector3.new(-26.7399998, -58.5200005, -19.4300003)
3926
o199.Anchored = true
3927
o199.FormFactor = Enum.FormFactor.Custom
3928
o199.Size = Vector3.new(10.9026928, 4.56392097, 11.4097958)
3929
o199.CFrame = CFrame.new(113.725418, 9.4342556, -218.245117, 0.492404908, 0.173648283, -0.852867901, 0.0648779869, 0.969846427, 0.234923109, 0.867944837, -0.17100966, 0.466291159)
3930
o199.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3931
o199.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3932
o199.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3933
o199.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3934
o199.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3935
o199.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3936
o199.Color = Color3.new(0.384314, 0.145098, 0.819608)
3937
o199.Position = Vector3.new(113.725418, 9.4342556, -218.245117)
3938
o199.Orientation = Vector3.new(-13.5900002, -61.329998, 3.82999992)
3939
o199.Color = Color3.new(0.384314, 0.145098, 0.819608)
3940
o200.Parent = o6
3941
o200.Material = Enum.Material.Fabric
3942
o200.BrickColor = BrickColor.new("Dark indigo")
3943
o200.Position = Vector3.new(107.067596, 7.76239586, -221.302353)
3944
o200.Rotation = Vector3.new(-9.88000011, -59.5599976, 0.179999992)
3945
o200.Anchored = true
3946
o200.FormFactor = Enum.FormFactor.Custom
3947
o200.Size = Vector3.new(13.945303, 4.56392097, 14.4524059)
3948
o200.CFrame = CFrame.new(107.067596, 7.76239586, -221.302353, 0.506559849, -0.00160024886, -0.8622033, 0.150980949, 0.984711766, 0.0868763849, 0.848882735, -0.174184382, 0.499057025)
3949
o200.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3950
o200.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3951
o200.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3952
o200.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3953
o200.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3954
o200.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3955
o200.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3956
o200.Position = Vector3.new(107.067596, 7.76239586, -221.302353)
3957
o200.Orientation = Vector3.new(-4.98000002, -59.9399986, 8.72000027)
3958
o200.Color = Color3.new(0.239216, 0.0823529, 0.521569)
3959
o201.Parent = o6
3960
o201.Material = Enum.Material.Grass
3961
o201.BrickColor = BrickColor.new("Magenta")
3962
o201.Transparency = 0.5
3963
o201.Position = Vector3.new(76.8731308, 20.9790344, -164.808472)
3964
o201.Rotation = Vector3.new(0, -80, 0)
3965
o201.Anchored = true
3966
o201.Size = Vector3.new(6.33877754, 6.33877754, 6.33877754)
3967
o201.CFrame = CFrame.new(76.8731308, 20.9790344, -164.808472, 0.173647955, 0, -0.984807789, 0, 1, 0, 0.984807789, 0, 0.173647955)
3968
o201.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3969
o201.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3970
o201.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3971
o201.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3972
o201.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3973
o201.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3974
o201.Color = Color3.new(0.666667, 0, 0.666667)
3975
o201.Position = Vector3.new(76.8731308, 20.9790344, -164.808472)
3976
o201.Orientation = Vector3.new(0, -80, 0)
3977
o201.Color = Color3.new(0.666667, 0, 0.666667)
3978
o202.Parent = o6
3979
o202.Material = Enum.Material.Grass
3980
o202.BrickColor = BrickColor.new("Pink")
3981
o202.Transparency = 0.5
3982
o202.Position = Vector3.new(81.5366287, 22.1200104, -165.373322)
3983
o202.Rotation = Vector3.new(-180, -75, -180)
3984
o202.Anchored = true
3985
o202.Size = Vector3.new(7.60653305, 7.60653305, 7.60653305)
3986
o202.CFrame = CFrame.new(81.5366287, 22.1200104, -165.373322, -0.258818954, 0, -0.965925813, 0, 1, 0, 0.965925813, 0, -0.258818954)
3987
o202.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3988
o202.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3989
o202.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3990
o202.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3991
o202.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3992
o202.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3993
o202.Color = Color3.new(1, 0.4, 0.8)
3994
o202.Position = Vector3.new(81.5366287, 22.1200104, -165.373322)
3995
o202.Orientation = Vector3.new(0, -105, 0)
3996
o202.Color = Color3.new(1, 0.4, 0.8)
3997
o203.Parent = o6
3998
o203.Material = Enum.Material.Grass
3999
o203.BrickColor = BrickColor.new("Plum")
4000
o203.Transparency = 0.5
4001
o203.Position = Vector3.new(81.3509598, 20.4719315, -164.680634)
4002
o203.Rotation = Vector3.new(0, -60, 0)
4003
o203.Anchored = true
4004
o203.Size = Vector3.new(8.62073612, 4.31036901, 8.62073708)
4005
o203.CFrame = CFrame.new(81.3509598, 20.4719315, -164.680634, 0.499998987, 0, -0.866025984, 0, 1, 0, 0.866025984, 0, 0.499998987)
4006
o203.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4007
o203.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4008
o203.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4009
o203.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4010
o203.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4011
o203.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4012
o203.Color = Color3.new(0.482353, 0.184314, 0.482353)
4013
o203.Position = Vector3.new(81.3509598, 20.4719315, -164.680634)
4014
o203.Orientation = Vector3.new(0, -60, 0)
4015
o203.Color = Color3.new(0.482353, 0.184314, 0.482353)
4016
o204.Parent = o6
4017
o204.Material = Enum.Material.Grass
4018
o204.BrickColor = BrickColor.new("Plum")
4019
o204.Transparency = 0.5
4020
o204.Position = Vector3.new(71.8036041, 20.4719334, -224.939758)
4021
o204.Rotation = Vector3.new(0, 20, 0)
4022
o204.Anchored = true
4023
o204.Size = Vector3.new(8.62073612, 4.31036901, 8.62073708)
4024
o204.CFrame = CFrame.new(71.8036041, 20.4719334, -224.939758, 0.939687371, 0, 0.342018127, 0, 1, 0, -0.342018127, 0, 0.939687371)
4025
o204.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4026
o204.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4027
o204.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4028
o204.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4029
o204.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4030
o204.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4031
o204.Color = Color3.new(0.482353, 0.184314, 0.482353)
4032
o204.Position = Vector3.new(71.8036041, 20.4719334, -224.939758)
4033
o204.Orientation = Vector3.new(0, 20, 0)
4034
o204.Color = Color3.new(0.482353, 0.184314, 0.482353)
4035
o205.Parent = o6
4036
o205.Material = Enum.Material.Neon
4037
o205.BrickColor = BrickColor.new("Dark blue")
4038
o205.Position = Vector3.new(118.770424, 15.6946697, -185.937057)
4039
o205.Rotation = Vector3.new(-176.199997, -18.6900005, 102.329994)
4040
o205.Anchored = true
4041
o205.Shape = Enum.PartType.Cylinder
4042
o205.Size = Vector3.new(7.68720961, 10.0267963, 5.34762335)
4043
o205.CFrame = CFrame.new(118.770424, 15.6946697, -185.937057, -0.202342913, -0.925416768, -0.320407838, -0.979308605, 0.192363426, 0.0628568158, 0.00346599868, 0.32649684, -0.945191979)
4044
o205.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4045
o205.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4046
o205.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4047
o205.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4048
o205.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4049
o205.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4050
o205.Color = Color3.new(0, 0.0627451, 0.690196)
4051
o205.Position = Vector3.new(118.770424, 15.6946697, -185.937057)
4052
o205.Orientation = Vector3.new(-3.5999999, -161.269989, -78.8899994)
4053
o205.Color = Color3.new(0, 0.0627451, 0.690196)
4054
o206.Parent = o6
4055
o206.Material = Enum.Material.Granite
4056
o206.BrickColor = BrickColor.new("Dark indigo")
4057
o206.Position = Vector3.new(119.649628, 19.949707, -185.952148)
4058
o206.Rotation = Vector3.new(-176.199997, -18.6900005, 102.329994)
4059
o206.Anchored = true
4060
o206.Shape = Enum.PartType.Cylinder
4061
o206.Size = Vector3.new(1.67113173, 10.0267963, 10.0267963)
4062
o206.CFrame = CFrame.new(119.649628, 19.949707, -185.952148, -0.202342913, -0.925416768, -0.320407838, -0.979308605, 0.192363426, 0.0628568158, 0.00346599868, 0.32649684, -0.945191979)
4063
o206.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4064
o206.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4065
o206.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4066
o206.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4067
o206.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4068
o206.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4069
o206.Color = Color3.new(0.2, 0.0627451, 0.541176)
4070
o206.Position = Vector3.new(119.649628, 19.949707, -185.952148)
4071
o206.Orientation = Vector3.new(-3.5999999, -161.269989, -78.8899994)
4072
o206.Color = Color3.new(0.2, 0.0627451, 0.541176)
4073
o207.Parent = o6
4074
o207.Material = Enum.Material.Granite
4075
o207.BrickColor = BrickColor.new("Dark indigo")
4076
o207.Position = Vector3.new(119.852531, 20.9316387, -185.955582)
4077
o207.Rotation = Vector3.new(-176.199997, -18.6900005, 102.329994)
4078
o207.Anchored = true
4079
o207.Shape = Enum.PartType.Cylinder
4080
o207.Size = Vector3.new(1.67113173, 10.0267963, 7.35298395)
4081
o207.CFrame = CFrame.new(119.852531, 20.9316387, -185.955582, -0.202342913, -0.925416768, -0.320407838, -0.979308605, 0.192363426, 0.0628568158, 0.00346599868, 0.32649684, -0.945191979)
4082
o207.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4083
o207.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4084
o207.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4085
o207.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4086
o207.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4087
o207.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4088
o207.Color = Color3.new(0.2, 0.0627451, 0.541176)
4089
o207.Position = Vector3.new(119.852531, 20.9316387, -185.955582)
4090
o207.Orientation = Vector3.new(-3.5999999, -161.269989, -78.8899994)
4091
o207.Color = Color3.new(0.2, 0.0627451, 0.541176)
4092
o208.Parent = o6
4093
o208.Material = Enum.Material.Ice
4094
o208.BrickColor = BrickColor.new("Royal purple")
4095
o208.Position = Vector3.new(118.474495, 11.9310474, -209.285522)
4096
o208.Rotation = Vector3.new(-171.199997, -18.6900005, 102.329994)
4097
o208.Anchored = true
4098
o208.Shape = Enum.PartType.Cylinder
4099
o208.Size = Vector3.new(1.00267863, 10.0267963, 8.68988991)
4100
o208.CFrame = CFrame.new(118.474495, 11.9310474, -209.285522, -0.202343032, -0.925416768, -0.320407748, -0.97588414, 0.1631753, 0.144996971, -0.081900008, 0.342019975, -0.936116874)
4101
o208.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4102
o208.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4103
o208.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4104
o208.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4105
o208.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4106
o208.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4107
o208.Color = Color3.new(0.384314, 0.145098, 0.819608)
4108
o208.Position = Vector3.new(118.474495, 11.9310474, -209.285522)
4109
o208.Orientation = Vector3.new(-8.34000015, -161.110001, -80.5099945)
4110
o208.Color = Color3.new(0.384314, 0.145098, 0.819608)
4111
o209.Parent = o6
4112
o209.Material = Enum.Material.Ice
4113
o209.BrickColor = BrickColor.new("Royal purple")
4114
o209.Position = Vector3.new(119.649628, 19.949707, -185.952148)
4115
o209.Rotation = Vector3.new(-176.199997, -18.6900005, 102.329994)
4116
o209.Anchored = true
4117
o209.Shape = Enum.PartType.Cylinder
4118
o209.Size = Vector3.new(2.33958483, 10.0267963, 8.68988991)
4119
o209.CFrame = CFrame.new(119.649628, 19.949707, -185.952148, -0.202342913, -0.925416768, -0.320407838, -0.979308605, 0.192363426, 0.0628568158, 0.00346599868, 0.32649684, -0.945191979)
4120
o209.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4121
o209.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4122
o209.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4123
o209.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4124
o209.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4125
o209.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4126
o209.Color = Color3.new(0.384314, 0.145098, 0.819608)
4127
o209.Position = Vector3.new(119.649628, 19.949707, -185.952148)
4128
o209.Orientation = Vector3.new(-3.5999999, -161.269989, -78.8899994)
4129
o209.Color = Color3.new(0.384314, 0.145098, 0.819608)
4130
o210.Parent = o6
4131
o210.Material = Enum.Material.Ice
4132
o210.BrickColor = BrickColor.new("Royal purple")
4133
o210.Position = Vector3.new(118.094162, 12.4215565, -185.925476)
4134
o210.Rotation = Vector3.new(-176.199997, -18.6900005, 102.329994)
4135
o210.Anchored = true
4136
o210.Shape = Enum.PartType.Cylinder
4137
o210.Size = Vector3.new(1.00267863, 10.0267963, 8.68988991)
4138
o210.CFrame = CFrame.new(118.094162, 12.4215565, -185.925476, -0.202342913, -0.925416768, -0.320407838, -0.979308605, 0.192363426, 0.0628568158, 0.00346599868, 0.32649684, -0.945191979)
4139
o210.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4140
o210.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4141
o210.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4142
o210.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4143
o210.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4144
o210.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4145
o210.Color = Color3.new(0.384314, 0.145098, 0.819608)
4146
o210.Position = Vector3.new(118.094162, 12.4215565, -185.925476)
4147
o210.Orientation = Vector3.new(-3.5999999, -161.269989, -78.8899994)
4148
o210.Color = Color3.new(0.384314, 0.145098, 0.819608)
4149
o211.Parent = o6
4150
o211.Material = Enum.Material.Neon
4151
o211.BrickColor = BrickColor.new("Royal purple")
4152
o211.Transparency = 0.5
4153
o211.Position = Vector3.new(118.770424, 15.6946697, -185.937057)
4154
o211.Rotation = Vector3.new(-176.199997, -18.6900005, 102.329994)
4155
o211.Anchored = true
4156
o211.Shape = Enum.PartType.Cylinder
4157
o211.Size = Vector3.new(7.68720961, 10.0267963, 7.35298395)
4158
o211.CFrame = CFrame.new(118.770424, 15.6946697, -185.937057, -0.202342913, -0.925416768, -0.320407838, -0.979308605, 0.192363426, 0.0628568158, 0.00346599868, 0.32649684, -0.945191979)
4159
o211.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4160
o211.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4161
o211.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4162
o211.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4163
o211.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4164
o211.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4165
o211.Color = Color3.new(0.384314, 0.145098, 0.819608)
4166
o211.Position = Vector3.new(118.770424, 15.6946697, -185.937057)
4167
o211.Orientation = Vector3.new(-3.5999999, -161.269989, -78.8899994)
4168
o211.Color = Color3.new(0.384314, 0.145098, 0.819608)
4169
o212.Parent = o211
4170
o212.Color = Color3.new(0.619608, 0, 1)
4171
o212.Color = Color3.new(0.619608, 0, 1)
4172
o213.Parent = o6
4173
o213.Material = Enum.Material.Granite
4174
o213.BrickColor = BrickColor.new("Dark indigo")
4175
o213.Position = Vector3.new(117.857483, 11.2759705, -185.921417)
4176
o213.Rotation = Vector3.new(-176.199997, -18.6900005, 102.329994)
4177
o213.Anchored = true
4178
o213.Shape = Enum.PartType.Cylinder
4179
o213.Size = Vector3.new(2.67381144, 10.0267963, 10.0267963)
4180
o213.CFrame = CFrame.new(117.857483, 11.2759705, -185.921417, -0.202342913, -0.925416768, -0.320407838, -0.979308605, 0.192363426, 0.0628568158, 0.00346599868, 0.32649684, -0.945191979)
4181
o213.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4182
o213.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4183
o213.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4184
o213.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4185
o213.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4186
o213.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4187
o213.Color = Color3.new(0.2, 0.0627451, 0.541176)
4188
o213.Position = Vector3.new(117.857483, 11.2759705, -185.921417)
4189
o213.Orientation = Vector3.new(-3.5999999, -161.269989, -78.8899994)
4190
o213.Color = Color3.new(0.2, 0.0627451, 0.541176)
4191
o214.Parent = o6
4192
o214.Material = Enum.Material.Granite
4193
o214.BrickColor = BrickColor.new("Dark indigo")
4194
o214.Position = Vector3.new(118.237816, 10.789463, -209.381363)
4195
o214.Rotation = Vector3.new(-171.199997, -18.6900005, 102.329994)
4196
o214.Anchored = true
4197
o214.Shape = Enum.PartType.Cylinder
4198
o214.Size = Vector3.new(2.67381144, 10.0267963, 10.0267963)
4199
o214.CFrame = CFrame.new(118.237816, 10.789463, -209.381363, -0.202343032, -0.925416768, -0.320407748, -0.97588414, 0.1631753, 0.144996971, -0.081900008, 0.342019975, -0.936116874)
4200
o214.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4201
o214.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4202
o214.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4203
o214.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4204
o214.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4205
o214.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4206
o214.Color = Color3.new(0.2, 0.0627451, 0.541176)
4207
o214.Position = Vector3.new(118.237816, 10.789463, -209.381363)
4208
o214.Orientation = Vector3.new(-8.34000015, -161.110001, -80.5099945)
4209
o214.Color = Color3.new(0.2, 0.0627451, 0.541176)
4210
o215.Parent = o6
4211
o215.Material = Enum.Material.Granite
4212
o215.BrickColor = BrickColor.new("Dark indigo")
4213
o215.Position = Vector3.new(120.029961, 19.4328747, -208.655945)
4214
o215.Rotation = Vector3.new(-171.199997, -18.6900005, 102.329994)
4215
o215.Anchored = true
4216
o215.Shape = Enum.PartType.Cylinder
4217
o215.Size = Vector3.new(1.67113173, 10.0267963, 10.0267963)
4218
o215.CFrame = CFrame.new(120.029961, 19.4328747, -208.655945, -0.202343032, -0.925416768, -0.320407748, -0.97588414, 0.1631753, 0.144996971, -0.081900008, 0.342019975, -0.936116874)
4219
o215.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4220
o215.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4221
o215.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4222
o215.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4223
o215.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4224
o215.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4225
o215.Color = Color3.new(0.2, 0.0627451, 0.541176)
4226
o215.Position = Vector3.new(120.029961, 19.4328747, -208.655945)
4227
o215.Orientation = Vector3.new(-8.34000015, -161.110001, -80.5099945)
4228
o215.Color = Color3.new(0.2, 0.0627451, 0.541176)
4229
o216.Parent = o6
4230
o216.Material = Enum.Material.Granite
4231
o216.BrickColor = BrickColor.new("Dark indigo")
4232
o216.Position = Vector3.new(120.232864, 20.4113693, -208.573853)
4233
o216.Rotation = Vector3.new(-171.199997, -18.6900005, 102.329994)
4234
o216.Anchored = true
4235
o216.Shape = Enum.PartType.Cylinder
4236
o216.Size = Vector3.new(1.67113173, 10.0267963, 7.35298395)
4237
o216.CFrame = CFrame.new(120.232864, 20.4113693, -208.573853, -0.202343032, -0.925416768, -0.320407748, -0.97588414, 0.1631753, 0.144996971, -0.081900008, 0.342019975, -0.936116874)
4238
o216.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4239
o216.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4240
o216.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4241
o216.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4242
o216.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4243
o216.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4244
o216.Color = Color3.new(0.2, 0.0627451, 0.541176)
4245
o216.Position = Vector3.new(120.232864, 20.4113693, -208.573853)
4246
o216.Orientation = Vector3.new(-8.34000015, -161.110001, -80.5099945)
4247
o216.Color = Color3.new(0.2, 0.0627451, 0.541176)
4248
o217.Parent = o6
4249
o217.Material = Enum.Material.Ice
4250
o217.BrickColor = BrickColor.new("Royal purple")
4251
o217.Position = Vector3.new(120.029961, 19.4328747, -208.655945)
4252
o217.Rotation = Vector3.new(-171.199997, -18.6900005, 102.329994)
4253
o217.Anchored = true
4254
o217.Shape = Enum.PartType.Cylinder
4255
o217.Size = Vector3.new(2.33958483, 10.0267963, 8.68988991)
4256
o217.CFrame = CFrame.new(120.029961, 19.4328747, -208.655945, -0.202343032, -0.925416768, -0.320407748, -0.97588414, 0.1631753, 0.144996971, -0.081900008, 0.342019975, -0.936116874)
4257
o217.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4258
o217.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4259
o217.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4260
o217.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4261
o217.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4262
o217.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4263
o217.Color = Color3.new(0.384314, 0.145098, 0.819608)
4264
o217.Position = Vector3.new(120.029961, 19.4328747, -208.655945)
4265
o217.Orientation = Vector3.new(-8.34000015, -161.110001, -80.5099945)
4266
o217.Color = Color3.new(0.384314, 0.145098, 0.819608)
4267
o218.Parent = o6
4268
o218.Material = Enum.Material.Neon
4269
o218.BrickColor = BrickColor.new("Dark blue")
4270
o218.Position = Vector3.new(119.150757, 15.1927147, -209.01181)
4271
o218.Rotation = Vector3.new(-171.199997, -18.6900005, 102.329994)
4272
o218.Anchored = true
4273
o218.Shape = Enum.PartType.Cylinder
4274
o218.Size = Vector3.new(7.68720961, 10.0267963, 5.34762335)
4275
o218.CFrame = CFrame.new(119.150757, 15.1927147, -209.01181, -0.202343032, -0.925416768, -0.320407748, -0.97588414, 0.1631753, 0.144996971, -0.081900008, 0.342019975, -0.936116874)
4276
o218.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4277
o218.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4278
o218.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4279
o218.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4280
o218.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4281
o218.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4282
o218.Color = Color3.new(0, 0.0627451, 0.690196)
4283
o218.Position = Vector3.new(119.150757, 15.1927147, -209.01181)
4284
o218.Orientation = Vector3.new(-8.34000015, -161.110001, -80.5099945)
4285
o218.Color = Color3.new(0, 0.0627451, 0.690196)
4286
o219.Parent = o218
4287
o219.Color = Color3.new(0.619608, 0, 1)
4288
o219.Color = Color3.new(0.619608, 0, 1)
4289
o220.Parent = o6
4290
o220.Material = Enum.Material.Fabric
4291
o220.BrickColor = BrickColor.new("Dark indigo")
4292
o220.Position = Vector3.new(110.284164, 8.71792603, -210.376663)
4293
o220.Rotation = Vector3.new(-174.979996, -84.9799957, -179.979996)
4294
o220.Anchored = true
4295
o220.FormFactor = Enum.FormFactor.Custom
4296
o220.Size = Vector3.new(11.4097948, 7.09943199, 15.9737177)
4297
o220.CFrame = CFrame.new(110.284164, 8.71792603, -210.376663, -0.0874259844, 3.40618826e-05, -0.996170998, -0.0867239833, 0.996203065, 0.00764513481, 0.992388844, 0.0870603025, -0.0870910734)
4298
o220.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4299
o220.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4300
o220.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4301
o220.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4302
o220.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4303
o220.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4304
o220.Color = Color3.new(0.243137, 0.0784314, 0.552941)
4305
o220.Position = Vector3.new(110.284164, 8.71792603, -210.376663)
4306
o220.Orientation = Vector3.new(-0.439999998, -95, -4.98000002)
4307
o220.Color = Color3.new(0.243137, 0.0784314, 0.552941)
4308
o221.Parent = o6
4309
o221.Material = Enum.Material.Grass
4310
o221.BrickColor = BrickColor.new("Royal purple")
4311
o221.Transparency = 0.20000000298023
4312
o221.Position = Vector3.new(114.01104, 43.1650314, -226.148361)
4313
o221.Rotation = Vector3.new(145.619995, 14.2599993, -151.5)
4314
o221.Anchored = true
4315
o221.FormFactor = Enum.FormFactor.Custom
4316
o221.Size = Vector3.new(8.67944527, 4.94398928, 10.7669058)
4317
o221.CFrame = CFrame.new(114.01104, 43.1650314, -226.148361, -0.85172689, 0.462516725, 0.246251017, 0.271654963, 0.791635215, -0.547281682, -0.448067933, -0.399239242, -0.799901962)
4318
o221.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4319
o221.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4320
o221.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4321
o221.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4322
o221.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4323
o221.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4324
o221.Color = Color3.new(0.384314, 0.145098, 0.819608)
4325
o221.Position = Vector3.new(114.01104, 43.1650314, -226.148361)
4326
o221.Orientation = Vector3.new(33.1800003, 162.889999, 18.9399986)
4327
o221.Color = Color3.new(0.384314, 0.145098, 0.819608)
4328
o222.Parent = o6
4329
o222.Material = Enum.Material.Neon
4330
o222.BrickColor = BrickColor.new("Royal purple")
4331
o222.Transparency = 0.5
4332
o222.Position = Vector3.new(119.150757, 15.1927147, -209.01181)
4333
o222.Rotation = Vector3.new(-171.199997, -18.6900005, 102.329994)
4334
o222.Anchored = true
4335
o222.Shape = Enum.PartType.Cylinder
4336
o222.Size = Vector3.new(7.68720961, 10.0267963, 7.35298395)
4337
o222.CFrame = CFrame.new(119.150757, 15.1927147, -209.01181, -0.202343032, -0.925416768, -0.320407748, -0.97588414, 0.1631753, 0.144996971, -0.081900008, 0.342019975, -0.936116874)
4338
o222.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4339
o222.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4340
o222.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4341
o222.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4342
o222.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4343
o222.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4344
o222.Color = Color3.new(0.384314, 0.145098, 0.819608)
4345
o222.Position = Vector3.new(119.150757, 15.1927147, -209.01181)
4346
o222.Orientation = Vector3.new(-8.34000015, -161.110001, -80.5099945)
4347
o222.Color = Color3.new(0.384314, 0.145098, 0.819608)
4348
o223.Parent = o6
4349
o223.Material = Enum.Material.Wood
4350
o223.BrickColor = BrickColor.new("Cocoa")
4351
o223.Position = Vector3.new(91.1678009, 36.6031151, -200.968353)
4352
o223.Rotation = Vector3.new(-91.0499954, -84.6699982, -66.0100021)
4353
o223.Anchored = true
4354
o223.FormFactor = Enum.FormFactor.Custom
4355
o223.Size = Vector3.new(1.77485764, 2.53551102, 1.77485764)
4356
o223.CFrame = CFrame.new(91.1678009, 36.6031151, -200.968353, 0.0377410166, 0.084800981, -0.995682895, 0.421492159, 0.902070761, 0.0928046852, 0.906046271, -0.423175067, -0.00169788045)
4357
o223.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4358
o223.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4359
o223.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4360
o223.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4361
o223.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4362
o223.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4363
o223.Color = Color3.new(0.247059, 0.192157, 0.160784)
4364
o223.Position = Vector3.new(91.1678009, 36.6031151, -200.968353)
4365
o223.Orientation = Vector3.new(-5.31999969, -90.0999985, 25.039999)
4366
o223.Color = Color3.new(0.247059, 0.192157, 0.160784)
4367
o224.Parent = o6
4368
o224.Material = Enum.Material.Wood
4369
o224.BrickColor = BrickColor.new("Cocoa")
4370
o224.Position = Vector3.new(89.8476868, 32.4195213, -196.442612)
4371
o224.Rotation = Vector3.new(-100.110001, 34, 154.300003)
4372
o224.Anchored = true
4373
o224.FormFactor = Enum.FormFactor.Custom
4374
o224.Size = Vector3.new(1.77485764, 2.53551102, 1.77485764)
4375
o224.CFrame = CFrame.new(89.8476868, 32.4195213, -196.442612, -0.746996939, -0.359555691, 0.559209466, 0.419941932, 0.396903366, 0.816159606, -0.515406966, 0.844504297, -0.14549309)
4376
o224.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4377
o224.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4378
o224.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4379
o224.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4380
o224.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4381
o224.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4382
o224.Color = Color3.new(0.247059, 0.192157, 0.160784)
4383
o224.Position = Vector3.new(89.8476868, 32.4195213, -196.442612)
4384
o224.Orientation = Vector3.new(-54.6999969, 104.579994, 46.6199989)
4385
o224.Color = Color3.new(0.247059, 0.192157, 0.160784)
4386
o225.Parent = o6
4387
o225.Material = Enum.Material.Grass
4388
o225.BrickColor = BrickColor.new("Royal purple")
4389
o225.Position = Vector3.new(91.6881332, 25.5469017, -196.518677)
4390
o225.Rotation = Vector3.new(-7.69000006, 6.40999985, -39.5699997)
4391
o225.Anchored = true
4392
o225.FormFactor = Enum.FormFactor.Custom
4393
o225.Size = Vector3.new(0.760653257, 1.64808095, 0.760653317)
4394
o225.CFrame = CFrame.new(91.6881332, 25.5469017, -196.518677, 0.76604414, 0.633022666, 0.111618839, -0.642788053, 0.754406154, 0.133022025, 0, -0.173647985, 0.984807789)
4395
o225.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4396
o225.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4397
o225.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4398
o225.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4399
o225.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4400
o225.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4401
o225.Color = Color3.new(0.384314, 0.145098, 0.819608)
4402
o225.Position = Vector3.new(91.6881332, 25.5469017, -196.518677)
4403
o225.Orientation = Vector3.new(-7.63999987, 6.46999979, -40.4300003)
4404
o225.Color = Color3.new(0.384314, 0.145098, 0.819608)
4405
o226.Parent = o6
4406
o226.Material = Enum.Material.Grass
4407
o226.BrickColor = BrickColor.new("Royal purple")
4408
o226.Position = Vector3.new(92.3218918, 26.5611076, -197.152557)
4409
o226.Rotation = Vector3.new(-18.5799999, 65.3199997, -23.4499989)
4410
o226.Anchored = true
4411
o226.FormFactor = Enum.FormFactor.Custom
4412
o226.Size = Vector3.new(0.760653257, 1.64808095, 0.760653317)
4413
o226.CFrame = CFrame.new(92.3218918, 26.5611076, -197.152557, 0.383021086, 0.166126966, 0.908678532, -0.642788172, 0.754406154, 0.133021981, -0.66341418, -0.635038018, 0.395737886)
4414
o226.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4415
o226.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4416
o226.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4417
o226.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4418
o226.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4419
o226.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4420
o226.Color = Color3.new(0.384314, 0.145098, 0.819608)
4421
o226.Position = Vector3.new(92.3218918, 26.5611076, -197.152557)
4422
o226.Orientation = Vector3.new(-7.63999987, 66.4700012, -40.4300003)
4423
o226.Color = Color3.new(0.384314, 0.145098, 0.819608)
4424
o227.Parent = o6
4425
o227.Material = Enum.Material.Grass
4426
o227.BrickColor = BrickColor.new("Royal purple")
4427
o227.Position = Vector3.new(92.6132355, 27.9793243, -197.816528)
4428
o227.Rotation = Vector3.new(6.42000008, 65.3199997, -23.4499989)
4429
o227.Anchored = true
4430
o227.FormFactor = Enum.FormFactor.Custom
4431
o227.Size = Vector3.new(0.760653257, 1.64808095, 0.760653317)
4432
o227.CFrame = CFrame.new(92.6132355, 27.9793243, -197.816528, 0.383021057, 0.166127056, 0.908678532, -0.302194029, 0.952102482, -0.0466868244, -0.872911096, -0.256715178, 0.414877862)
4433
o227.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4434
o227.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4435
o227.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4436
o227.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4437
o227.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4438
o227.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4439
o227.Color = Color3.new(0.384314, 0.145098, 0.819608)
4440
o227.Position = Vector3.new(92.6132355, 27.9793243, -197.816528)
4441
o227.Orientation = Vector3.new(2.67999983, 65.4599991, -17.6099987)
4442
o227.Color = Color3.new(0.384314, 0.145098, 0.819608)
4443
o228.Parent = o6
4444
o228.Material = Enum.Material.Grass
4445
o228.BrickColor = BrickColor.new("Royal purple")
4446
o228.Position = Vector3.new(92.568573, 27.2261238, -198.357361)
4447
o228.Rotation = Vector3.new(-78.6999969, 83.0599976, 10.1599998)
4448
o228.Anchored = true
4449
o228.FormFactor = Enum.FormFactor.Custom
4450
o228.Size = Vector3.new(0.760653257, 1.64808095, 0.760653317)
4451
o228.CFrame = CFrame.new(92.568573, 27.2261238, -198.357361, 0.118947096, -0.0213225037, 0.99267149, -0.92359668, 0.364590436, 0.118501663, -0.36444506, -0.930924356, 0.023673363)
4452
o228.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4453
o228.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4454
o228.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4455
o228.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4456
o228.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4457
o228.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4458
o228.Color = Color3.new(0.384314, 0.145098, 0.819608)
4459
o228.Position = Vector3.new(92.568573, 27.2261238, -198.357361)
4460
o228.Orientation = Vector3.new(-6.80999994, 88.6299973, -68.4599991)
4461
o228.Color = Color3.new(0.384314, 0.145098, 0.819608)
4462
o229.Parent = o6
4463
o229.Material = Enum.Material.Grass
4464
o229.BrickColor = BrickColor.new("Dark blue")
4465
o229.Position = Vector3.new(90.6706314, 25.9121532, -198.641144)
4466
o229.Rotation = Vector3.new(-7.69000006, 6.40999985, 0.429999977)
4467
o229.Anchored = true
4468
o229.FormFactor = Enum.FormFactor.Custom
4469
o229.Size = Vector3.new(0.760653257, 1.64808095, 0.760653317)
4470
o229.CFrame = CFrame.new(90.6706314, 25.9121532, -198.641144, 0.993722439, -0.00748153776, 0.111620061, -0.0074796672, 0.991084397, 0.133020401, -0.111620307, -0.133019805, 0.984807909)
4471
o229.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4472
o229.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4473
o229.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4474
o229.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4475
o229.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4476
o229.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4477
o229.Color = Color3.new(0, 0.0627451, 0.690196)
4478
o229.Position = Vector3.new(90.6706314, 25.9121532, -198.641144)
4479
o229.Orientation = Vector3.new(-7.63999987, 6.46999979, -0.429999977)
4480
o229.Color = Color3.new(0, 0.0627451, 0.690196)
4481
o230.Parent = o6
4482
o230.Material = Enum.Material.Grass
4483
o230.BrickColor = BrickColor.new("Dark blue")
4484
o230.Position = Vector3.new(90.9606857, 27.5201187, -198.89119)
4485
o230.Rotation = Vector3.new(-7.69000006, 6.40999985, -14.5699997)
4486
o230.Anchored = true
4487
o230.FormFactor = Enum.FormFactor.Custom
4488
o230.Size = Vector3.new(0.760653257, 1.64808095, 0.760653317)
4489
o230.CFrame = CFrame.new(90.9606857, 27.5201187, -198.89119, 0.961799204, 0.249965966, 0.111621223, -0.263734609, 0.955380142, 0.13301447, -0.0733916163, -0.15737161, 0.984808505)
4490
o230.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4491
o230.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4492
o230.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4493
o230.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4494
o230.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4495
o230.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4496
o230.Color = Color3.new(0, 0.0627451, 0.690196)
4497
o230.Position = Vector3.new(90.9606857, 27.5201187, -198.89119)
4498
o230.Orientation = Vector3.new(-7.63999987, 6.46999979, -15.4299994)
4499
o230.Color = Color3.new(0, 0.0627451, 0.690196)
4500
o231.Parent = o6
4501
o231.Material = Enum.Material.Grass
4502
o231.BrickColor = BrickColor.new("Dark blue")
4503
o231.Position = Vector3.new(91.080307, 28.9178772, -199.093536)
4504
o231.Rotation = Vector3.new(-7.69000006, 6.40999985, 5.42999983)
4505
o231.Anchored = true
4506
o231.FormFactor = Enum.FormFactor.Custom
4507
o231.Size = Vector3.new(0.760653257, 1.64808095, 0.760653317)
4508
o231.CFrame = CFrame.new(91.080307, 28.9178772, -199.093536, 0.989288867, -0.0940638334, 0.111620747, 0.0789312497, 0.987965643, 0.133013517, -0.122790232, -0.12278001, 0.984805882)
4509
o231.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4510
o231.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4511
o231.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4512
o231.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4513
o231.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4514
o231.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4515
o231.Color = Color3.new(0, 0.0627451, 0.690196)
4516
o231.Position = Vector3.new(91.080307, 28.9178772, -199.093536)
4517
o231.Orientation = Vector3.new(-7.63999987, 6.46999979, 4.56999969)
4518
o231.Color = Color3.new(0, 0.0627451, 0.690196)
4519
o232.Parent = o6
4520
o232.Material = Enum.Material.Grass
4521
o232.BrickColor = BrickColor.new("Dark blue")
4522
o232.Position = Vector3.new(90.6378098, 30.0430431, -199.121002)
4523
o232.Rotation = Vector3.new(0.099999994, 12.8199997, 39.1299973)
4524
o232.Anchored = true
4525
o232.FormFactor = Enum.FormFactor.Custom
4526
o232.Size = Vector3.new(0.760653257, 1.64808095, 0.760653317)
4527
o232.CFrame = CFrame.new(90.6378098, 30.0430431, -199.121002, 0.756421804, -0.615314662, 0.22184065, 0.63133198, 0.775510788, -0.00167112052, -0.171011522, 0.141319126, 0.975081086)
4528
o232.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4529
o232.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4530
o232.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4531
o232.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4532
o232.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4533
o232.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4534
o232.Color = Color3.new(0, 0.0627451, 0.690196)
4535
o232.Position = Vector3.new(90.6378098, 30.0430431, -199.121002)
4536
o232.Orientation = Vector3.new(0.099999994, 12.8199997, 39.1499977)
4537
o232.Color = Color3.new(0, 0.0627451, 0.690196)
4538
o233.Parent = o6
4539
o233.Material = Enum.Material.Grass
4540
o233.BrickColor = BrickColor.new("Dark blue")
4541
o233.Position = Vector3.new(90.0178146, 30.4969139, -198.676895)
4542
o233.Rotation = Vector3.new(6.29999971, 52.5099983, 80.5699997)
4543
o233.Anchored = true
4544
o233.FormFactor = Enum.FormFactor.Custom
4545
o233.Size = Vector3.new(0.760653257, 1.64808095, 0.760653317)
4546
o233.CFrame = CFrame.new(90.0178146, 30.4969139, -198.676895, 0.0997735709, -0.600438535, 0.793422401, 0.994793296, 0.0770222172, -0.0668069571, -0.0209978316, 0.795952857, 0.604993939)
4547
o233.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4548
o233.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4549
o233.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4550
o233.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4551
o233.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4552
o233.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4553
o233.Color = Color3.new(0, 0.0627451, 0.690196)
4554
o233.Position = Vector3.new(90.0178146, 30.4969139, -198.676895)
4555
o233.Orientation = Vector3.new(3.82999992, 52.6699982, 85.5699997)
4556
o233.Color = Color3.new(0, 0.0627451, 0.690196)
4557
o234.Parent = o6
4558
o234.Material = Enum.Material.Grass
4559
o234.BrickColor = BrickColor.new("Dark blue")
4560
o234.Position = Vector3.new(89.8059769, 30.5390797, -197.685913)
4561
o234.Rotation = Vector3.new(23.7199993, 76.6199951, 64.4700012)
4562
o234.Anchored = true
4563
o234.FormFactor = Enum.FormFactor.Custom
4564
o234.Size = Vector3.new(0.760653257, 1.64808095, 0.760653317)
4565
o234.CFrame = CFrame.new(89.8059769, 30.5390797, -197.685913, 0.0997733995, -0.208866104, 0.972842097, 0.994789124, 0.0415719151, -0.093098253, -0.0209977347, 0.977058589, 0.211926222)
4566
o234.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4567
o234.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4568
o234.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4569
o234.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4570
o234.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4571
o234.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4572
o234.Color = Color3.new(0, 0.0627451, 0.690196)
4573
o234.Position = Vector3.new(89.8059769, 30.5390797, -197.685913)
4574
o234.Orientation = Vector3.new(5.33999968, 77.7099991, 87.6100006)
4575
o234.Color = Color3.new(0, 0.0627451, 0.690196)
4576
o235.Parent = o6
4577
o235.Material = Enum.Material.Grass
4578
o235.BrickColor = BrickColor.new("Dark blue")
4579
o235.Position = Vector3.new(90.0739746, 30.403019, -196.820251)
4580
o235.Rotation = Vector3.new(172.660004, 46.8099976, -81.6199951)
4581
o235.Anchored = true
4582
o235.FormFactor = Enum.FormFactor.Custom
4583
o235.Size = Vector3.new(0.760653257, 1.2677542, 0.760653317)
4584
o235.CFrame = CFrame.new(90.0739746, 30.403019, -196.820251, 0.0997765809, 0.677107036, 0.729088962, 0.994791508, -0.052419804, -0.0874549523, -0.0209976882, 0.734016478, -0.678808272)
4585
o235.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4586
o235.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4587
o235.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4588
o235.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4589
o235.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4590
o235.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4591
o235.Color = Color3.new(0, 0.0627451, 0.690196)
4592
o235.Position = Vector3.new(90.0739746, 30.403019, -196.820251)
4593
o235.Orientation = Vector3.new(5.01999998, 132.949997, 93.0199966)
4594
o235.Color = Color3.new(0, 0.0627451, 0.690196)
4595
o236.Parent = o6
4596
o236.Material = Enum.Material.Grass
4597
o236.BrickColor = BrickColor.new("Dark blue")
4598
o236.Position = Vector3.new(90.8425293, 30.3304996, -196.603714)
4599
o236.Rotation = Vector3.new(179.080002, -2.86999989, -84.2699966)
4600
o236.Anchored = true
4601
o236.FormFactor = Enum.FormFactor.Custom
4602
o236.Size = Vector3.new(0.760653257, 1.52130532, 0.760653317)
4603
o236.CFrame = CFrame.new(90.8425293, 30.3304996, -196.603714, 0.0997771323, 0.993750513, -0.050040748, 0.994788229, -0.100689933, -0.0160590746, -0.0209972691, -0.0481778495, -0.998617947)
4604
o236.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4605
o236.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4606
o236.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4607
o236.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4608
o236.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4609
o236.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4610
o236.Color = Color3.new(0, 0.0627451, 0.690196)
4611
o236.Position = Vector3.new(90.8425293, 30.3304996, -196.603714)
4612
o236.Orientation = Vector3.new(0.919999957, -177.12999, 95.7799988)
4613
o236.Color = Color3.new(0, 0.0627451, 0.690196)
4614
o237.Parent = o6
4615
o237.Material = Enum.Material.Grass
4616
o237.BrickColor = BrickColor.new("Dark blue")
4617
o237.Position = Vector3.new(92.1044998, 30.3887138, -196.792938)
4618
o237.Rotation = Vector3.new(176.569992, -12.5500002, -104.599998)
4619
o237.Anchored = true
4620
o237.FormFactor = Enum.FormFactor.Custom
4621
o237.Size = Vector3.new(0.760653257, 1.52130532, 0.760653317)
4622
o237.CFrame = CFrame.new(92.1044998, 30.3887138, -196.792938, -0.246122807, 0.944548786, -0.217372894, 0.969233394, 0.239099801, -0.0584658459, -0.00325002475, -0.225074768, -0.974336207)
4623
o237.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4624
o237.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4625
o237.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4626
o237.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4627
o237.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4628
o237.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4629
o237.Color = Color3.new(0, 0.0627451, 0.690196)
4630
o237.Position = Vector3.new(92.1044998, 30.3887138, -196.792938)
4631
o237.Orientation = Vector3.new(3.3499999, -167.419998, 76.1399994)
4632
o237.Color = Color3.new(0, 0.0627451, 0.690196)
4633
o238.Name = "Particlepart"
4634
o238.Parent = o6
4635
o238.Material = Enum.Material.Grass
4636
o238.BrickColor = BrickColor.new("Dark blue")
4637
o238.Transparency = 1
4638
o238.Position = Vector3.new(94.137207, 50.5075111, -235.274445)
4639
o238.Rotation = Vector3.new(175, 0, 0)
4640
o238.Anchored = true
4641
o238.Size = Vector3.new(18.494175, 2.14246869, 18.666563)
4642
o238.CFrame = CFrame.new(94.137207, 50.5075111, -235.274445, 1, 0, 0, 0, -0.996194661, -0.087155968, 0, 0.087155968, -0.996194661)
4643
o238.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4644
o238.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4645
o238.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4646
o238.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4647
o238.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4648
o238.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4649
o238.Color = Color3.new(0, 0.0627451, 0.690196)
4650
o238.Position = Vector3.new(94.137207, 50.5075111, -235.274445)
4651
o238.Orientation = Vector3.new(5, 180, 180)
4652
o238.Color = Color3.new(0, 0.0627451, 0.690196)
4653
o239.Parent = o238
4654
o239.Transparency = NumberSequence.new(0.77499997615814,0.89375001192093)
4655
o239.Rotation = NumberRange.new(1,1)
4656
o239.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4657
o239.LightEmission = 1
4658
o239.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
4659
o239.Lifetime = NumberRange.new(1,1)
4660
o239.Rate = 50
4661
o239.RotSpeed = NumberRange.new(1,1)
4662
o239.Speed = NumberRange.new(3,3)
4663
o239.VelocitySpread = 50
4664
o239.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4665
o240.Name = "Particlepart"
4666
o240.Parent = o6
4667
o240.Material = Enum.Material.Grass
4668
o240.BrickColor = BrickColor.new("Dark blue")
4669
o240.Transparency = 1
4670
o240.Position = Vector3.new(94.1338654, 46.0609131, -159.109375)
4671
o240.Rotation = Vector3.new(-170, 0, 0)
4672
o240.Anchored = true
4673
o240.Size = Vector3.new(16.8224506, 1.94880676, 16.9792557)
4674
o240.CFrame = CFrame.new(94.1338654, 46.0609131, -159.109375, 1, 0, 0, 0, -0.984807789, 0.173647955, 0, -0.173647955, -0.984807789)
4675
o240.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4676
o240.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4677
o240.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4678
o240.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4679
o240.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4680
o240.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4681
o240.Color = Color3.new(0, 0.0627451, 0.690196)
4682
o240.Position = Vector3.new(94.1338654, 46.0609131, -159.109375)
4683
o240.Orientation = Vector3.new(-10, 180, 180)
4684
o240.Color = Color3.new(0, 0.0627451, 0.690196)
4685
o241.Parent = o240
4686
o241.Transparency = NumberSequence.new(0.77499997615814,0.89375001192093)
4687
o241.Rotation = NumberRange.new(1,1)
4688
o241.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4689
o241.LightEmission = 1
4690
o241.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
4691
o241.Lifetime = NumberRange.new(1,1)
4692
o241.Rate = 50
4693
o241.RotSpeed = NumberRange.new(1,1)
4694
o241.Speed = NumberRange.new(3,3)
4695
o241.VelocitySpread = 50
4696
o241.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4697
o242.Name = "Particlepart"
4698
o242.Parent = o6
4699
o242.Material = Enum.Material.Grass
4700
o242.BrickColor = BrickColor.new("Dark blue")
4701
o242.Transparency = 1
4702
o242.Position = Vector3.new(120.165215, 20.0852089, -208.601196)
4703
o242.Rotation = Vector3.new(-171.199997, -18.6900005, 12.3299999)
4704
o242.Anchored = true
4705
o242.Size = Vector3.new(8.689888, 2.00535941, 9.35834408)
4706
o242.CFrame = CFrame.new(120.165215, 20.0852089, -208.601196, 0.925416648, -0.202343717, -0.320407599, -0.163175941, -0.975883901, 0.144997284, -0.342019886, -0.0819000825, -0.936116874)
4707
o242.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4708
o242.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4709
o242.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4710
o242.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4711
o242.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4712
o242.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4713
o242.Color = Color3.new(0, 0.0627451, 0.690196)
4714
o242.Position = Vector3.new(120.165215, 20.0852089, -208.601196)
4715
o242.Orientation = Vector3.new(-8.34000015, -161.110001, -170.509995)
4716
o242.Color = Color3.new(0, 0.0627451, 0.690196)
4717
o243.Parent = o242
4718
o243.Transparency = NumberSequence.new(0.77499997615814,0.89375001192093)
4719
o243.Rotation = NumberRange.new(1,1)
4720
o243.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4721
o243.LightEmission = 1
4722
o243.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
4723
o243.Lifetime = NumberRange.new(0.5,0.5)
4724
o243.Rate = 50
4725
o243.RotSpeed = NumberRange.new(1,1)
4726
o243.Speed = NumberRange.new(3,3)
4727
o243.VelocitySpread = 50
4728
o243.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4729
o244.Name = "Particlepart"
4730
o244.Parent = o6
4731
o244.Material = Enum.Material.Grass
4732
o244.BrickColor = BrickColor.new("Dark blue")
4733
o244.Transparency = 1
4734
o244.Position = Vector3.new(119.784882, 20.6043339, -185.954376)
4735
o244.Rotation = Vector3.new(-176.199997, -18.6900005, 12.3299999)
4736
o244.Anchored = true
4737
o244.Size = Vector3.new(8.689888, 2.00535941, 9.35834408)
4738
o244.CFrame = CFrame.new(119.784882, 20.6043339, -185.954376, 0.92541641, -0.202344, -0.320407957, -0.192364097, -0.979308367, 0.0628581941, -0.326497138, 0.00346497633, -0.94519186)
4739
o244.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4740
o244.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4741
o244.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4742
o244.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4743
o244.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4744
o244.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4745
o244.Color = Color3.new(0, 0.0627451, 0.690196)
4746
o244.Position = Vector3.new(119.784882, 20.6043339, -185.954376)
4747
o244.Orientation = Vector3.new(-3.5999999, -161.269989, -168.889999)
4748
o244.Color = Color3.new(0, 0.0627451, 0.690196)
4749
o245.Parent = o244
4750
o245.Transparency = NumberSequence.new(0.77499997615814,0.89375001192093)
4751
o245.Rotation = NumberRange.new(1,1)
4752
o245.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4753
o245.LightEmission = 1
4754
o245.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
4755
o245.Lifetime = NumberRange.new(0.5,0.5)
4756
o245.Rate = 50
4757
o245.RotSpeed = NumberRange.new(1,1)
4758
o245.Speed = NumberRange.new(3,3)
4759
o245.VelocitySpread = 50
4760
o245.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4761
o246.Name = "Particlepart"
4762
o246.Parent = o6
4763
o246.Material = Enum.Material.Grass
4764
o246.BrickColor = BrickColor.new("Dark blue")
4765
o246.Transparency = 1
4766
o246.Position = Vector3.new(118.237778, 10.7894745, -209.381317)
4767
o246.Rotation = Vector3.new(8.80000019, 18.6900005, -12.3299999)
4768
o246.Anchored = true
4769
o246.Size = Vector3.new(8.689888, 2.00535941, 9.35834408)
4770
o246.CFrame = CFrame.new(118.237778, 10.7894745, -209.381317, 0.925416648, 0.202343717, 0.320407599, -0.163175941, 0.975883901, -0.144997284, -0.342019886, 0.0819000825, 0.936116874)
4771
o246.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4772
o246.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4773
o246.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4774
o246.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4775
o246.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4776
o246.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4777
o246.Color = Color3.new(0, 0.0627451, 0.690196)
4778
o246.Position = Vector3.new(118.237778, 10.7894745, -209.381317)
4779
o246.Orientation = Vector3.new(8.34000015, 18.8899994, -9.48999977)
4780
o246.Color = Color3.new(0, 0.0627451, 0.690196)
4781
o247.Parent = o246
4782
o247.Transparency = NumberSequence.new(0.77499997615814,0.89375001192093)
4783
o247.Rotation = NumberRange.new(1,1)
4784
o247.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4785
o247.LightEmission = 1
4786
o247.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
4787
o247.Lifetime = NumberRange.new(0.5,0.5)
4788
o247.Rate = 50
4789
o247.RotSpeed = NumberRange.new(1,1)
4790
o247.Speed = NumberRange.new(3,3)
4791
o247.VelocitySpread = 50
4792
o247.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4793
o248.Name = "Particlepart"
4794
o248.Parent = o6
4795
o248.Material = Enum.Material.Grass
4796
o248.BrickColor = BrickColor.new("Dark blue")
4797
o248.Transparency = 1
4798
o248.Position = Vector3.new(117.857445, 11.2759762, -185.921417)
4799
o248.Rotation = Vector3.new(3.79999995, 18.6900005, -12.3299999)
4800
o248.Anchored = true
4801
o248.Size = Vector3.new(8.689888, 2.00535941, 9.35834408)
4802
o248.CFrame = CFrame.new(117.857445, 11.2759762, -185.921417, 0.92541641, 0.202344, 0.320407957, -0.192364097, 0.979308367, -0.0628581941, -0.326497138, -0.00346497633, 0.94519186)
4803
o248.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4804
o248.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4805
o248.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4806
o248.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4807
o248.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4808
o248.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4809
o248.Color = Color3.new(0, 0.0627451, 0.690196)
4810
o248.Position = Vector3.new(117.857445, 11.2759762, -185.921417)
4811
o248.Orientation = Vector3.new(3.5999999, 18.7299995, -11.1099997)
4812
o248.Color = Color3.new(0, 0.0627451, 0.690196)
4813
o249.Parent = o248
4814
o249.Transparency = NumberSequence.new(0.77499997615814,0.89375001192093)
4815
o249.Rotation = NumberRange.new(1,1)
4816
o249.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4817
o249.LightEmission = 1
4818
o249.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
4819
o249.Lifetime = NumberRange.new(0.5,0.5)
4820
o249.Rate = 50
4821
o249.RotSpeed = NumberRange.new(1,1)
4822
o249.Speed = NumberRange.new(3,3)
4823
o249.VelocitySpread = 50
4824
o249.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4825
o250.Name = "Particlepart"
4826
o250.Parent = o6
4827
o250.Material = Enum.Material.Grass
4828
o250.BrickColor = BrickColor.new("Dark blue")
4829
o250.Transparency = 1
4830
o250.Position = Vector3.new(94.137207, 38.0941544, -234.18837)
4831
o250.Rotation = Vector3.new(-5, 0, 0)
4832
o250.Anchored = true
4833
o250.Size = Vector3.new(18.494175, 2.14246869, 18.666563)
4834
o250.CFrame = CFrame.new(94.137207, 38.0941544, -234.18837, 1, 0, 0, 0, 0.996194661, 0.087155968, 0, -0.087155968, 0.996194661)
4835
o250.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4836
o250.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4837
o250.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4838
o250.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4839
o250.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4840
o250.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4841
o250.Color = Color3.new(0, 0.0627451, 0.690196)
4842
o250.Position = Vector3.new(94.137207, 38.0941544, -234.18837)
4843
o250.Orientation = Vector3.new(-5, 0, 0)
4844
o250.Color = Color3.new(0, 0.0627451, 0.690196)
4845
o251.Parent = o250
4846
o251.Transparency = NumberSequence.new(0.77499997615814,0.89375001192093)
4847
o251.Rotation = NumberRange.new(1,1)
4848
o251.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4849
o251.LightEmission = 1
4850
o251.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
4851
o251.Lifetime = NumberRange.new(1,1)
4852
o251.Rate = 50
4853
o251.RotSpeed = NumberRange.new(1,1)
4854
o251.Speed = NumberRange.new(3,3)
4855
o251.VelocitySpread = 50
4856
o251.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4857
o252.Name = "Particlepart"
4858
o252.Parent = o6
4859
o252.Material = Enum.Material.Grass
4860
o252.BrickColor = BrickColor.new("Dark blue")
4861
o252.Transparency = 1
4862
o252.Position = Vector3.new(94.1338654, 34.898674, -161.077545)
4863
o252.Rotation = Vector3.new(10, 0, 0)
4864
o252.Anchored = true
4865
o252.Size = Vector3.new(16.8224506, 1.94880676, 16.9792557)
4866
o252.CFrame = CFrame.new(94.1338654, 34.898674, -161.077545, 1, 0, 0, 0, 0.984807789, -0.173647955, 0, 0.173647955, 0.984807789)
4867
o252.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4868
o252.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4869
o252.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4870
o252.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4871
o252.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4872
o252.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4873
o252.Color = Color3.new(0, 0.0627451, 0.690196)
4874
o252.Position = Vector3.new(94.1338654, 34.898674, -161.077545)
4875
o252.Orientation = Vector3.new(10, 0, 0)
4876
o252.Color = Color3.new(0, 0.0627451, 0.690196)
4877
o253.Parent = o252
4878
o253.Transparency = NumberSequence.new(0.77499997615814,0.89375001192093)
4879
o253.Rotation = NumberRange.new(1,1)
4880
o253.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4881
o253.LightEmission = 1
4882
o253.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
4883
o253.Lifetime = NumberRange.new(1,1)
4884
o253.Rate = 50
4885
o253.RotSpeed = NumberRange.new(1,1)
4886
o253.Speed = NumberRange.new(3,3)
4887
o253.VelocitySpread = 50
4888
o253.Color = ColorSequence.new(Color3.new(0.108736, 0, 0.969055),Color3.new(0.511208, 0.145312, 0.96939))
4889
o254.Name = "Treebeam"
4890
o254.Parent = o6
4891
o254.Transparency = 1
4892
o254.Position = Vector3.new(92.4518127, 35.1145821, -197.985916)
4893
o254.Rotation = Vector3.new(0, 0, -130)
4894
o254.Anchored = true
4895
o254.Size = Vector3.new(0.253551096, 0.380326658, 0.253551096)
4896
o254.CFrame = CFrame.new(92.4518127, 35.1145821, -197.985916, -0.642788053, 0.76604414, 0, -0.76604414, -0.642788053, 0, 0, 0, 1)
4897
o254.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4898
o254.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4899
o254.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4900
o254.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4901
o254.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4902
o254.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4903
o254.Position = Vector3.new(92.4518127, 35.1145821, -197.985916)
4904
o254.Orientation = Vector3.new(0, 0, -130)
4905
o255.Name = "Beam"
4906
o255.Parent = o254
4907
o255.Transparency = NumberSequence.new(0.71249997615814,0.875)
4908
o255.Size = NumberSequence.new(0.87499976158142,0.56249976158142)
4909
o255.Color = ColorSequence.new(Color3.new(0.397513, 0, 0.663676),Color3.new(0.327718, 0, 0.904418))
4910
o255.LightEmission = 0.5
4911
o255.Texture = "rbxasset://textures/particles/smoke_main.dds"
4912
o255.Lifetime = NumberRange.new(10,10)
4913
o255.Rate = 50
4914
o255.RotSpeed = NumberRange.new(5,5)
4915
o255.VelocitySpread = 5
4916
o255.Color = ColorSequence.new(Color3.new(0.397513, 0, 0.663676),Color3.new(0.327718, 0, 0.904418))
4917
o256.Parent = o6
4918
o256.Material = Enum.Material.Slate
4919
o256.BrickColor = BrickColor.new("Dark indigo")
4920
o256.Position = Vector3.new(68.2319794, 46.3132629, -196.693817)
4921
o256.Rotation = Vector3.new(-180, -15, 0)
4922
o256.Anchored = true
4923
o256.Size = Vector3.new(5.59080362, 1.06491446, 3.99342942)
4924
o256.CFrame = CFrame.new(68.2319794, 46.3132629, -196.693817, 0.965925813, -2.23517418e-08, -0.258818865, 2.23517347e-08, -1, 8.94069672e-08, -0.258818895, -5.96046448e-08, -0.965925753)
4925
o256.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4926
o256.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4927
o256.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4928
o256.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4929
o256.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4930
o256.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4931
o256.Color = Color3.new(0.239216, 0.0823529, 0.521569)
4932
o256.Position = Vector3.new(68.2319794, 46.3132629, -196.693817)
4933
o256.Orientation = Vector3.new(0, -165, 180)
4934
o256.Color = Color3.new(0.239216, 0.0823529, 0.521569)
4935
o257.Name = "ItemId"
4936
o257.Parent = o5
4937
o257.Value = 2
4938
o258.Name = "ThumbnailId"
4939
o258.Parent = o5
4940
o258.Value = 205368937
4941
o259.Name = "Hitbox"
4942
o259.Parent = o5
4943
o259.Material = Enum.Material.SmoothPlastic
4944
o259.BrickColor = BrickColor.new("Bright blue")
4945
o259.Transparency = 1
4946
o259.Position = Vector3.new(86.7827377, 29.4555435, -198.103561)
4947
o259.Rotation = Vector3.new(180, 0.0199999996, -179.98999)
4948
o259.Anchored = true
4949
o259.CanCollide = false
4950
o259.FormFactor = Enum.FormFactor.Custom
4951
o259.Size = Vector3.new(68.4588013, 45.6391983, 91.2783966)
4952
o259.CFrame = CFrame.new(86.7827377, 29.4555435, -198.103561, -0.999996185, 9.64477586e-05, 0.000293251273, 9.64320279e-05, 1, -5.20706562e-05, -0.000293252611, -5.20414578e-05, -1.00000739)
4953
o259.BottomSurface = Enum.SurfaceType.Smooth
4954
o259.TopSurface = Enum.SurfaceType.Smooth
4955
o259.Color = Color3.new(0.0509804, 0.411765, 0.67451)
4956
o259.Position = Vector3.new(86.7827377, 29.4555435, -198.103561)
4957
o259.Orientation = Vector3.new(0, 179.979996, 0.00999999978)
4958
o259.Color = Color3.new(0.0509804, 0.411765, 0.67451)
4959
o260.Name = "Flies"
4960
o260.Parent = o259
4961
o260.Transparency = NumberSequence.new(1,0.79374998807907,0,0.77499997615814,0.79374998807907,0.77499997615814,0.70624995231628,0.92500001192093,0.91250002384186,0.89999997615814,1)
4962
o260.Rotation = NumberRange.new(25,25)
4963
o260.Size = NumberSequence.new(0.37499964237213,0.12499988079071,0.12499988079071)
4964
o260.Color = ColorSequence.new(Color3.new(0.493431, 0, 0.998459),Color3.new(0.320958, 0, 0.998337))
4965
o260.LightEmission = 1
4966
o260.Texture = "http://www.roblox.com/asset/?id=162595515"
4967
o260.Lifetime = NumberRange.new(8,8)
4968
o260.Rate = 25
4969
o260.RotSpeed = NumberRange.new(25,25)
4970
o260.Speed = NumberRange.new(0,0)
4971
o260.VelocitySpread = 180
4972
o260.Color = ColorSequence.new(Color3.new(0.493431, 0, 0.998459),Color3.new(0.320958, 0, 0.998337))
4973
o261.Name = "Description"
4974
o261.Parent = o5
4975
o261.Value = "An item which turns ores from droppers into cash. Use conveyor belts or place droppers right over it to start making money! Awards 1 Point per 100 ores."
4976
o262.Name = "Cost"
4977
o262.Parent = o5
4978
o262.Value = 100
4979
o263.Name = "Tier"
4980
o263.Parent = o5
4981
o264.Name = "ItemType"
4982
o264.Parent = o5
4983
o264.Value = 2
4984
o265.Name = "ReqPoints"
4985
o265.Parent = o5
4986
o267.Parent = mas
4987
o267.Material = Enum.Material.SmoothPlastic
4988
o267.BrickColor = BrickColor.new("Deep orange")
4989
o267.Transparency = 1
4990
o267.Position = Vector3.new(104.999992, 53.0473289, -194.800018)
4991
o267.Rotation = Vector3.new(90, 0, 180)
4992
o267.Anchored = true
4993
o267.CanCollide = false
4994
o267.FormFactor = Enum.FormFactor.Symmetric
4995
o267.Size = Vector3.new(2, 2, 0.999993801)
4996
o267.CFrame = CFrame.new(104.999992, 53.0473289, -194.800018, -1, -8.74227624e-08, 4.37113954e-08, -4.37113634e-08, -2.18556977e-07, -1, 8.74227766e-08, -1, 2.18556977e-07)
4997
o267.BottomSurface = Enum.SurfaceType.Smooth
4998
o267.TopSurface = Enum.SurfaceType.Smooth
4999
o267.Color = Color3.new(1, 0.686275, 0)
5000
o267.Position = Vector3.new(104.999992, 53.0473289, -194.800018)
5001
o267.Orientation = Vector3.new(90, -180, 0)
5002
o267.Color = Color3.new(1, 0.686275, 0)
5003
o268.Parent = o267
5004
o268.Size = NumberSequence.new(0.10000000149012,0.10000000149012)
5005
o268.Color = ColorSequence.new(Color3.new(0.333333, 0, 0.498039),Color3.new(0.333333, 0, 0.498039))
5006
o268.Texture = "http://www.roblox.com/asset/?id=241685484"
5007
o268.Acceleration = Vector3.new(0, -10, 0)
5008
o268.Lifetime = NumberRange.new(1,2)
5009
o268.Rate = 99
5010
o268.RotSpeed = NumberRange.new(260,260)
5011
o268.Speed = NumberRange.new(10,10)
5012
o268.VelocitySpread = 360
5013
o268.Color = ColorSequence.new(Color3.new(0.333333, 0, 0.498039),Color3.new(0.333333, 0, 0.498039))
5014
o269.Parent = o267
5015
o269.Size = NumberSequence.new(0.10000000149012,0.10000000149012)
5016
o269.Color = ColorSequence.new(Color3.new(0.666667, 0, 0.498039),Color3.new(0.666667, 0, 0.498039))
5017
o269.Texture = "http://www.roblox.com/asset/?id=241685484"
5018
o269.Acceleration = Vector3.new(0, -10, 0)
5019
o269.Lifetime = NumberRange.new(1,2)
5020
o269.Rate = 99
5021
o269.RotSpeed = NumberRange.new(260,260)
5022
o269.Speed = NumberRange.new(10,10)
5023
o269.VelocitySpread = 360
5024
o269.Color = ColorSequence.new(Color3.new(0.666667, 0, 0.498039),Color3.new(0.666667, 0, 0.498039))
5025
o270.Parent = o267
5026
o270.Size = NumberSequence.new(0.10000000149012,0.10000000149012)
5027
o270.Texture = "http://www.roblox.com/asset/?id=241685484"
5028
o270.Acceleration = Vector3.new(0, -10, 0)
5029
o270.Lifetime = NumberRange.new(1,2)
5030
o270.Rate = 99
5031
o270.RotSpeed = NumberRange.new(260,260)
5032
o270.Speed = NumberRange.new(10,10)
5033
o270.VelocitySpread = 360
5034
o271.Parent = o267
5035
o271.Size = NumberSequence.new(0.10000000149012,0.10000000149012)
5036
o271.Color = ColorSequence.new(Color3.new(1, 0.333333, 1),Color3.new(1, 0.333333, 1))
5037
o271.Texture = "http://www.roblox.com/asset/?id=241685484"
5038
o271.Acceleration = Vector3.new(0, -10, 0)
5039
o271.Lifetime = NumberRange.new(1,2)
5040
o271.Rate = 99
5041
o271.RotSpeed = NumberRange.new(260,260)
5042
o271.Speed = NumberRange.new(10,10)
5043
o271.VelocitySpread = 360
5044
o271.Color = ColorSequence.new(Color3.new(1, 0.333333, 1),Color3.new(1, 0.333333, 1))
5045
o272.Parent = o267
5046
o272.Size = NumberSequence.new(0.10000000149012,0.10000000149012)
5047
o272.Color = ColorSequence.new(Color3.new(0.594354, 0.159838, 1),Color3.new(0.594354, 0.159838, 1))
5048
o272.Texture = "http://www.roblox.com/asset/?id=241685484"
5049
o272.Acceleration = Vector3.new(0, -10, 0)
5050
o272.Lifetime = NumberRange.new(1,2)
5051
o272.Rate = 99
5052
o272.RotSpeed = NumberRange.new(260,260)
5053
o272.Speed = NumberRange.new(10,10)
5054
o272.VelocitySpread = 360
5055
o272.Color = ColorSequence.new(Color3.new(0.594354, 0.159838, 1),Color3.new(0.594354, 0.159838, 1))
5056
o273.Parent = mas
5057
o273.Transparency = 1
5058
o273.Position = Vector3.new(79.6023712, 32.5057487, -203.402969)
5059
o273.Anchored = true
5060
o273.Size = Vector3.new(5, 1, 6)
5061
o273.CFrame = CFrame.new(79.6023712, 32.5057487, -203.402969, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5062
o273.TopSurface = Enum.SurfaceType.Smooth
5063
o273.Position = Vector3.new(79.6023712, 32.5057487, -203.402969)
5064
o274.Parent = o273
5065
o274.Transparency = 1
5066
o274.Texture = "rbxasset://textures/SpawnLocation.png"
5067
o274.Face = Enum.NormalId.Top
5068
o275.Parent = mas
5069
o275.Transparency = 1
5070
o275.Position = Vector3.new(62.6023712, 49.5057487, -194.402969)
5071
o275.Anchored = true
5072
o275.Size = Vector3.new(5, 1, 6)
5073
o275.CFrame = CFrame.new(62.6023712, 49.5057487, -194.402969, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5074
o275.TopSurface = Enum.SurfaceType.Smooth
5075
o275.Position = Vector3.new(62.6023712, 49.5057487, -194.402969)
5076
o276.Parent = o275
5077
o276.Transparency = 1
5078
o276.Texture = "rbxasset://textures/SpawnLocation.png"
5079
o276.Face = Enum.NormalId.Top
5080
o277.Name = "Sky"
5081
o277.Parent = mas
5082
o277.Position = Vector3.new(38, 16.6000004, -29)
5083
o277.Rotation = Vector3.new(-180, 0, -180)
5084
o277.Anchored = true
5085
o277.Locked = true
5086
o277.FormFactor = Enum.FormFactor.Symmetric
5087
o277.Size = Vector3.new(2, 2, 2)
5088
o277.CFrame = CFrame.new(38, 16.6000004, -29, -1, 0, 0, 0, 1, 0, 0, 0, -1)
5089
o277.Position = Vector3.new(38, 16.6000004, -29)
5090
o277.Orientation = Vector3.new(0, 180, 0)
5091
o278.Parent = o277
5092
o278.MeshId = "http://www.roblox.com/asset/?id=1527559"
5093
o278.Scale = Vector3.new(-4000, -180, -4000)
5094
o278.TextureId = "http://www.roblox.com/asset/?id=1529455"
5095
o278.VertexColor = Vector3.new(0.829999983, 0, 0.839999974)
5096
o278.MeshType = Enum.MeshType.FileMesh
5097
o278.Scale = Vector3.new(-4000, -180, -4000)
5098
o279.Parent = mas
5099
o279.MeshId = "http://www.roblox.com/asset/?id=1527559"
5100
o279.Scale = Vector3.new(-4000, -180, -4000)
5101
o279.TextureId = "http://www.roblox.com/asset/?id=1529455"
5102
o279.VertexColor = Vector3.new(0.829999983, 0, 0.839999974)
5103
o279.MeshType = Enum.MeshType.FileMesh
5104
o279.Scale = Vector3.new(-4000, -180, -4000)
5105
mas.Parent = workspace
5106
mas:MakeJoints()
5107
local mas1 = mas:GetChildren()
5108
for i=1,#mas1 do
5109
	mas1[i].Parent = workspace 
5110
	ypcall(function() mas1[i]:MakeJoints() end)
5111
end
5112
mas:Destroy()
5113
for i=1,#cors do
5114
coroutine.resume(cors[i])
5115
end
5116
mess_handle.Text = "Resetting"
5117
for i,v in pairs(game:GetService("Players"):GetPlayers()) do
5118
v:LoadCharacter()
5119
end
5120
wait(1)
5121
mess_handle:Remove()
5122
5123
game:GetService("Lighting").Ambient = Color3.new(0, 0, 0)
5124
game:GetService("Lighting").Brightness = 1
5125
game:GetService("Lighting").ColorShift_Bottom = Color3.new(0, 0, 0)
5126
game:GetService("Lighting").ColorShift_Top = Color3.new(0, 0, 0)
5127
game:GetService("Lighting").GlobalShadows = true
5128
game:GetService("Lighting").OutdoorAmbient = Color3.new(0.552941, 0, 0.737255)
5129
game:GetService("Lighting").Outlines = false
5130
game:GetService("Lighting").GeographicLatitude = 41.733299255371
5131
game:GetService("Lighting").TimeOfDay = "14:00:00"
5132
game:GetService("Lighting").FogColor = Color3.new(0.75, 0.75, 0.75)
5133
game:GetService("Lighting").FogEnd = 100000
5134
game:GetService("Lighting").FogStart = 0