View difference between Paste ID: yk9B8ykH and UTqjc2NH
SHOW: | | - or go back to the newest paste.
1
2
 if game:GetService("RunService"):IsClient() then error("Please run as a server script. Use h/ instead of hl/.") end
3
print("FE Compatibility: by WaverlyCole & Mokiros")
4
InternalData = {}
5
do
6
	script.Parent = owner.Character
7
	local Event = Instance.new("RemoteEvent")
8
	Event.Name = "UserInput"
9
	local function NewFakeEvent()
10
		local Fake = {fakeEvent=true,Connect=function(self,Func)self.Function=Func end}Fake.connect = Fake.Connect
11
		return Fake
12
	end
13
	local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
14
	local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
15
	local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
16
		self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
17
	end};ContextActionService.UnBindAction = ContextActionService.BindAction
18
	local function TriggerEvent(self,Event,...)
19
		local Trigger = Mouse[Event]
20
		if Trigger and Trigger.fakeEvent and Trigger.Function then
21
			Trigger.Function(...)
22
		end
23
	end
24
	Mouse.TrigEvent = TriggerEvent
25
	UserInputService.TrigEvent = TriggerEvent
26
	Event.OnServerEvent:Connect(function(FiredBy,Input)
27
		if FiredBy.Name ~= owner.Name then end
28
		if Input.MouseEvent then
29
			Mouse.Target = Input.Target
30
			Mouse.Hit = Input.Hit
31
		else
32
			local Begin = Input.UserInputState == Enum.UserInputState.Begin
33
			if Input.UserInputType == Enum.UserInputType.MouseButton1 then
34
				return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up")
35
			end
36
			for _,Action in pairs(ContextActionService.Actions) do
37
				for _,Key in pairs(Action.Keys) do
38
					if Key==Input.KeyCode then
39
						Action.Function(Action.Name,Input.UserInputState,Input)
40
					end
41
				end
42
			end
43
			Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
44
			UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
45
		end
46
	end)
47
	InternalData["Mouse"] = Mouse
48
	InternalData["ContextActionService"] = ContextActionService
49
	InternalData["UserInputService"] = UserInputService
50
	Event.Parent = NLS([[
51
		local Player = owner
52
		local Event = script:WaitForChild("UserInput")
53
		local UserInputService = game:GetService("UserInputService")
54
		local Mouse = Player:GetMouse()
55
		local Input = function(Input,gameProcessedEvent)
56
			if gameProcessedEvent then return end
57
			Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
58
		end
59
		UserInputService.InputBegan:Connect(Input)
60
		UserInputService.InputEnded:Connect(Input)
61
		local Hit,Target
62
		while wait(1/30) do
63
			if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
64
				Hit,Target = Mouse.Hit,Mouse.Target
65
				Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
66
			end
67
		end
68
	]],owner.Character)
69
end
70
RealGame = game;game = setmetatable({},{
71
	__index = function (self,Index)
72
		local Sandbox = function (Thing)
73
			if Thing:IsA("Player") then
74
				local RealPlayer = Thing
75
				return setmetatable({},{
76
					__index = function (self,Index)
77
						local Type = type(RealPlayer[Index])
78
						if Type == "function" then
79
							if Index:lower() == "getmouse" or Index:lower() == "mouse" then
80
								return function (self)
81
									return InternalData["Mouse"]
82
								end
83
							end
84
							return function (self,...)
85
								return RealPlayer[Index](RealPlayer,...)
86
							end
87
						else
88
							if Index == "PlrObj" then
89
								return RealPlayer
90
							end
91
							return RealPlayer[Index]
92
						end
93
					end;
94
					__tostring = function(self)
95
						return RealPlayer.Name
96
					end
97
				})
98
			end
99
		end
100
		if RealGame[Index] then
101
			local Type = type(RealGame[Index])
102
			if Type == "function" then
103
				if Index:lower() == "getservice" or Index:lower() == "service" then
104
					return function (self,Service)
105
						if Service:lower() == "players" then
106
							return setmetatable({},{
107
								__index = function (self2,Index2)
108
									local RealService = RealGame:GetService(Service)
109
									local Type2 = type(Index2)
110
									if Type2 == "function" then
111
										return function (self,...)
112
											return RealService[Index2](RealService,...)
113
										end
114
									else
115
										if Index2:lower() == "localplayer" then
116
											return Sandbox(owner)
117
										end
118
										return RealService[Index2]
119
									end
120
								end;
121
								__tostring = function(self)
122
									return RealGame:GetService(Service).Name
123
								end
124
							})
125
						elseif Service:lower() == "contextactionservice" then
126
							return InternalData["ContextActionService"]
127
						elseif Service:lower() == "contextactionservice" then
128
							return InternalData["UserInputService"]
129
						elseif Service:lower() == "runservice" then
130
							return setmetatable({},{
131
								__index = function(self2,Index2)
132
									local RealService = RealGame:GetService(Service)
133
									local Type2 = type(Index2)
134
									if Type2 == "function" then
135
										return function (self,...)
136
											return RealService[Index2](RealService,...)
137
										end
138
									else
139
										if Index2:lower() == "bindtorenderstep" then
140
											return function (self,Name,Priority,Function)
141
												return RealGame:GetService("RunService").Stepped:Connect(Function)
142
											end
143
										end
144
										if Index2:lower() == "renderstepped" then
145
											return RealService["Stepped"]
146
										end
147
										return RealService[Index2]
148
									end
149
								end
150
							})
151
						else
152
							return RealGame:GetService(Service)
153
						end
154
					end
155
				end
156
				return function (self,...)
157
					return RealGame[Index](RealGame,...)
158
				end
159
			else
160
				if game:GetService(Index) then
161
					return game:GetService(Index)
162
				end
163
				return RealGame[Index]
164
			end
165
		else
166
			return nil
167
		end
168
	end
169
});Game = game;owner = game:GetService("Players").LocalPlayer;script = {}
170
print("Complete! Running...")
171
172
local player = game.Players.LocalPlayer
173
local char = player.Character
174
local matteobasev1 = Instance.new("Model", workspace)
175
matteobasev1.Name = "matteobasev1"
176
177
local spawnlocation = Instance.new("SpawnLocation", matteobasev1)
178
spawnlocation.Anchored = true
179
spawnlocation.Friction = 0.3
180
spawnlocation.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
181
spawnlocation.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
182
spawnlocation.TopSurface = Enum.SurfaceType.SmoothNoOutlines
183
spawnlocation.BackSurface = Enum.SurfaceType.SmoothNoOutlines
184
spawnlocation.Size = Vector3.new(6, 1.2, 6)
185
spawnlocation.Locked = true
186
spawnlocation.RightSurface = Enum.SurfaceType.SmoothNoOutlines
187
spawnlocation.CFrame = CFrame.new(-743, 385.6, -1078)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
188
spawnlocation.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
189
190
 bench = Instance.new("Model", matteobasev1)
191
bench.Name = "Bench"
192
193
 part = Instance.new("Part", bench)
194
part.TopSurface = Enum.SurfaceType.Smooth
195
part.Reflectance = 0.1
196
part.Anchored = true
197
part.Size = Vector3.new(1, 1.2, 1)
198
part.Locked = true
199
part.CFrame = CFrame.new(-785.559, 385.6, -1166.144)* CFrame.Angles(-0, -1.5687247514725, -0)
200
part.BrickColor = BrickColor.new("Dark stone grey")
201
part.Friction = 0.3
202
part.BottomSurface = Enum.SurfaceType.Smooth
203
204
 part_2 = Instance.new("Part", bench)
205
part_2.FormFactor = Enum.FormFactor.Custom
206
part_2.TopSurface = Enum.SurfaceType.Smooth
207
part_2.Reflectance = 0.1
208
part_2.Anchored = true
209
part_2.Size = Vector3.new(8, 0.2, 0.6)
210
part_2.Locked = true
211
part_2.CFrame = CFrame.new(-785.759, 386.3, -1162.644)* CFrame.Angles(-0, -1.5687247514725, -0)
212
part_2.BrickColor = BrickColor.new("Nougat")
213
part_2.Friction = 0.3
214
part_2.BottomSurface = Enum.SurfaceType.Smooth
215
216
 part_3 = Instance.new("Part", bench)
217
part_3.FormFactor = Enum.FormFactor.Custom
218
part_3.TopSurface = Enum.SurfaceType.Smooth
219
part_3.Reflectance = 0.1
220
part_3.Anchored = true
221
part_3.Size = Vector3.new(8, 0.2, 0.6)
222
part_3.Locked = true
223
part_3.CFrame = CFrame.new(-784.759, 386.3, -1162.644)* CFrame.Angles(-0, -1.5687247514725, -0)
224
part_3.BrickColor = BrickColor.new("Nougat")
225
part_3.Friction = 0.3
226
part_3.BottomSurface = Enum.SurfaceType.Smooth
227
228
 part_4 = Instance.new("Part", bench)
229
part_4.TopSurface = Enum.SurfaceType.Smooth
230
part_4.Reflectance = 0.1
231
part_4.Anchored = true
232
part_4.Size = Vector3.new(1, 1.2, 1)
233
part_4.Locked = true
234
part_4.CFrame = CFrame.new(-785.559, 385.6, -1159.144)* CFrame.Angles(-0, -1.5687247514725, -0)
235
part_4.BrickColor = BrickColor.new("Dark stone grey")
236
part_4.Friction = 0.3
237
part_4.BottomSurface = Enum.SurfaceType.Smooth
238
239
 part_5 = Instance.new("Part", bench)
240
part_5.FormFactor = Enum.FormFactor.Custom
241
part_5.TopSurface = Enum.SurfaceType.Smooth
242
part_5.Reflectance = 0.1
243
part_5.Anchored = true
244
part_5.Size = Vector3.new(8, 0.2, 0.6)
245
part_5.Locked = true
246
part_5.CFrame = CFrame.new(-783.759, 386.3, -1162.644)* CFrame.Angles(-0, -1.5687247514725, -0)
247
part_5.BrickColor = BrickColor.new("Nougat")
248
part_5.Friction = 0.3
249
part_5.BottomSurface = Enum.SurfaceType.Smooth
250
251
 part_6 = Instance.new("Part", bench)
252
part_6.FormFactor = Enum.FormFactor.Custom
253
part_6.TopSurface = Enum.SurfaceType.Smooth
254
part_6.Reflectance = 0.1
255
part_6.Anchored = true
256
part_6.Size = Vector3.new(1, 1.2, 1)
257
part_6.Locked = true
258
part_6.CFrame = CFrame.new(-783.359, 385.6, -1166.144)* CFrame.Angles(-0, -1.5687247514725, -0)
259
part_6.BrickColor = BrickColor.new("Dark stone grey")
260
part_6.Friction = 0.3
261
part_6.BottomSurface = Enum.SurfaceType.Smooth
262
263
 part_7 = Instance.new("Part", bench)
264
part_7.TopSurface = Enum.SurfaceType.Smooth
265
part_7.Reflectance = 0.1
266
part_7.Anchored = true
267
part_7.Size = Vector3.new(1, 1.2, 1)
268
part_7.Locked = true
269
part_7.CFrame = CFrame.new(-783.559, 385.6, -1159.144)* CFrame.Angles(-0, -1.5687247514725, -0)
270
part_7.BrickColor = BrickColor.new("Dark stone grey")
271
part_7.Friction = 0.3
272
part_7.BottomSurface = Enum.SurfaceType.Smooth
273
274
 part_8 = Instance.new("Part", bench)
275
part_8.FormFactor = Enum.FormFactor.Custom
276
part_8.TopSurface = Enum.SurfaceType.Smooth
277
part_8.Reflectance = 0.1
278
part_8.Anchored = true
279
part_8.Size = Vector3.new(8, 0.2, 0.6)
280
part_8.Locked = true
281
part_8.CFrame = CFrame.new(-783.159, 386.7, -1162.644)* CFrame.Angles(1.5707963705063, -0.26179873943329, 1.5707963705063)
282
part_8.BrickColor = BrickColor.new("Nougat")
283
part_8.Friction = 0.3
284
part_8.BottomSurface = Enum.SurfaceType.Smooth
285
286
 part_9 = Instance.new("Part", bench)
287
part_9.FormFactor = Enum.FormFactor.Custom
288
part_9.TopSurface = Enum.SurfaceType.Smooth
289
part_9.Reflectance = 0.1
290
part_9.Anchored = true
291
part_9.Size = Vector3.new(8, 0.2, 0.6)
292
part_9.Locked = true
293
part_9.CFrame = CFrame.new(-782.959, 387.5, -1162.644)* CFrame.Angles(1.5707963705063, -0.26179873943329, 1.5707963705063)
294
part_9.BrickColor = BrickColor.new("Nougat")
295
part_9.Friction = 0.3
296
part_9.BottomSurface = Enum.SurfaceType.Smooth
297
298
 part_10 = Instance.new("Part", bench)
299
part_10.FormFactor = Enum.FormFactor.Custom
300
part_10.TopSurface = Enum.SurfaceType.Smooth
301
part_10.Reflectance = 0.1
302
part_10.Anchored = true
303
part_10.Size = Vector3.new(8, 0.2, 0.6)
304
part_10.Locked = true
305
part_10.CFrame = CFrame.new(-782.759, 388.4, -1162.644)* CFrame.Angles(1.5707963705063, -0.26179873943329, 1.5707963705063)
306
part_10.BrickColor = BrickColor.new("Nougat")
307
part_10.Friction = 0.3
308
part_10.BottomSurface = Enum.SurfaceType.Smooth
309
310
 seat = Instance.new("Seat", bench)
311
seat.Anchored = true
312
seat.Friction = 0.3
313
seat.BottomSurface = Enum.SurfaceType.Smooth
314
seat.TopSurface = Enum.SurfaceType.Smooth
315
seat.Transparency = 1
316
seat.FormFactor = Enum.FormFactor.Symmetric
317
seat.BrickColor = BrickColor.new("Black")
318
seat.Size = Vector3.new(4, 1, 2)
319
seat.Locked = true
320
seat.CFrame = CFrame.new(-784.659, 385.9, -1162.744)* CFrame.Angles(-0, 1.5687537193298, -0)
321
322
 bench_2 = Instance.new("Model", matteobasev1)
323
bench_2.Name = "Bench"
324
325
 part_11 = Instance.new("Part", bench_2)
326
part_11.TopSurface = Enum.SurfaceType.Smooth
327
part_11.Reflectance = 0.1
328
part_11.Anchored = true
329
part_11.Size = Vector3.new(1, 1.2, 1)
330
part_11.Locked = true
331
part_11.CFrame = CFrame.new(-802.775, 385.6, -1159.144)* CFrame.Angles(-0, 1.5704510211945, -0)
332
part_11.BrickColor = BrickColor.new("Dark stone grey")
333
part_11.Friction = 0.3
334
part_11.BottomSurface = Enum.SurfaceType.Smooth
335
336
 part_12 = Instance.new("Part", bench_2)
337
part_12.FormFactor = Enum.FormFactor.Custom
338
part_12.TopSurface = Enum.SurfaceType.Smooth
339
part_12.Reflectance = 0.1
340
part_12.Anchored = true
341
part_12.Size = Vector3.new(8, 0.2, 0.6)
342
part_12.Locked = true
343
part_12.CFrame = CFrame.new(-802.575, 386.3, -1162.644)* CFrame.Angles(-0, 1.5704510211945, -0)
344
part_12.BrickColor = BrickColor.new("Nougat")
345
part_12.Friction = 0.3
346
part_12.BottomSurface = Enum.SurfaceType.Smooth
347
348
 part_13 = Instance.new("Part", bench_2)
349
part_13.FormFactor = Enum.FormFactor.Custom
350
part_13.TopSurface = Enum.SurfaceType.Smooth
351
part_13.Reflectance = 0.1
352
part_13.Anchored = true
353
part_13.Size = Vector3.new(8, 0.2, 0.6)
354
part_13.Locked = true
355
part_13.CFrame = CFrame.new(-803.575, 386.3, -1162.644)* CFrame.Angles(-0, 1.5704510211945, -0)
356
part_13.BrickColor = BrickColor.new("Nougat")
357
part_13.Friction = 0.3
358
part_13.BottomSurface = Enum.SurfaceType.Smooth
359
360
 part_14 = Instance.new("Part", bench_2)
361
part_14.TopSurface = Enum.SurfaceType.Smooth
362
part_14.Reflectance = 0.1
363
part_14.Anchored = true
364
part_14.Size = Vector3.new(1, 1.2, 1)
365
part_14.Locked = true
366
part_14.CFrame = CFrame.new(-802.775, 385.6, -1166.144)* CFrame.Angles(-0, 1.5704510211945, -0)
367
part_14.BrickColor = BrickColor.new("Dark stone grey")
368
part_14.Friction = 0.3
369
part_14.BottomSurface = Enum.SurfaceType.Smooth
370
371
 part_15 = Instance.new("Part", bench_2)
372
part_15.FormFactor = Enum.FormFactor.Custom
373
part_15.TopSurface = Enum.SurfaceType.Smooth
374
part_15.Reflectance = 0.1
375
part_15.Anchored = true
376
part_15.Size = Vector3.new(8, 0.2, 0.6)
377
part_15.Locked = true
378
part_15.CFrame = CFrame.new(-804.575, 386.3, -1162.644)* CFrame.Angles(-0, 1.5704510211945, -0)
379
part_15.BrickColor = BrickColor.new("Nougat")
380
part_15.Friction = 0.3
381
part_15.BottomSurface = Enum.SurfaceType.Smooth
382
383
 part_16 = Instance.new("Part", bench_2)
384
part_16.FormFactor = Enum.FormFactor.Custom
385
part_16.TopSurface = Enum.SurfaceType.Smooth
386
part_16.Reflectance = 0.1
387
part_16.Anchored = true
388
part_16.Size = Vector3.new(1, 1.2, 1)
389
part_16.Locked = true
390
part_16.CFrame = CFrame.new(-804.975, 385.6, -1159.144)* CFrame.Angles(-0, 1.5704510211945, -0)
391
part_16.BrickColor = BrickColor.new("Dark stone grey")
392
part_16.Friction = 0.3
393
part_16.BottomSurface = Enum.SurfaceType.Smooth
394
395
 part_17 = Instance.new("Part", bench_2)
396
part_17.TopSurface = Enum.SurfaceType.Smooth
397
part_17.Reflectance = 0.1
398
part_17.Anchored = true
399
part_17.Size = Vector3.new(1, 1.2, 1)
400
part_17.Locked = true
401
part_17.CFrame = CFrame.new(-804.775, 385.6, -1166.144)* CFrame.Angles(-0, 1.5704510211945, -0)
402
part_17.BrickColor = BrickColor.new("Dark stone grey")
403
part_17.Friction = 0.3
404
part_17.BottomSurface = Enum.SurfaceType.Smooth
405
406
 part_18 = Instance.new("Part", bench_2)
407
part_18.FormFactor = Enum.FormFactor.Custom
408
part_18.TopSurface = Enum.SurfaceType.Smooth
409
part_18.Reflectance = 0.1
410
part_18.Anchored = true
411
part_18.Size = Vector3.new(8, 0.2, 0.6)
412
part_18.Locked = true
413
part_18.CFrame = CFrame.new(-805.175, 386.7, -1162.644)* CFrame.Angles(1.5707963705063, 0.26179930567741, -1.5707963705063)
414
part_18.BrickColor = BrickColor.new("Nougat")
415
part_18.Friction = 0.3
416
part_18.BottomSurface = Enum.SurfaceType.Smooth
417
418
 part_19 = Instance.new("Part", bench_2)
419
part_19.FormFactor = Enum.FormFactor.Custom
420
part_19.TopSurface = Enum.SurfaceType.Smooth
421
part_19.Reflectance = 0.1
422
part_19.Anchored = true
423
part_19.Size = Vector3.new(8, 0.2, 0.6)
424
part_19.Locked = true
425
part_19.CFrame = CFrame.new(-805.375, 387.5, -1162.644)* CFrame.Angles(1.5707963705063, 0.26179930567741, -1.5707963705063)
426
part_19.BrickColor = BrickColor.new("Nougat")
427
part_19.Friction = 0.3
428
part_19.BottomSurface = Enum.SurfaceType.Smooth
429
430
 part_20 = Instance.new("Part", bench_2)
431
part_20.FormFactor = Enum.FormFactor.Custom
432
part_20.TopSurface = Enum.SurfaceType.Smooth
433
part_20.Reflectance = 0.1
434
part_20.Anchored = true
435
part_20.Size = Vector3.new(8, 0.2, 0.6)
436
part_20.Locked = true
437
part_20.CFrame = CFrame.new(-805.575, 388.4, -1162.644)* CFrame.Angles(1.5707963705063, 0.26179930567741, -1.5707963705063)
438
part_20.BrickColor = BrickColor.new("Nougat")
439
part_20.Friction = 0.3
440
part_20.BottomSurface = Enum.SurfaceType.Smooth
441
442
 seat_2 = Instance.new("Seat", bench_2)
443
seat_2.Anchored = true
444
seat_2.Friction = 0.3
445
seat_2.BottomSurface = Enum.SurfaceType.Smooth
446
seat_2.TopSurface = Enum.SurfaceType.Smooth
447
seat_2.Transparency = 1
448
seat_2.FormFactor = Enum.FormFactor.Symmetric
449
seat_2.BrickColor = BrickColor.new("Black")
450
seat_2.Size = Vector3.new(4, 1, 2)
451
seat_2.Locked = true
452
seat_2.CFrame = CFrame.new(-803.675, 385.9, -1162.544)* CFrame.Angles(-0, -1.5707963705063, 0)
453
454
 hot_dog_stand = Instance.new("Model", matteobasev1)
455
hot_dog_stand.Name = "Hot Dog Stand"
456
457
 part_21 = Instance.new("Part", hot_dog_stand)
458
part_21.FormFactor = Enum.FormFactor.Symmetric
459
part_21.TopSurface = Enum.SurfaceType.Smooth
460
part_21.Anchored = true
461
part_21.Size = Vector3.new(1, 1, 1)
462
part_21.Locked = true
463
part_21.CFrame = CFrame.new(-751.667, 389.3, -1160.943)* CFrame.Angles(1.5707963705063, -3.576267090466e-006, 7.9580878562316e-013)
464
part_21.BrickColor = BrickColor.new("Brick yellow")
465
part_21.Friction = 0.3
466
part_21.BottomSurface = Enum.SurfaceType.Smooth
467
468
 mesh = Instance.new("SpecialMesh", part_21)
469
mesh.Scale = Vector3.new(0.5, 2, 0.5)
470
471
 decal = Instance.new("Decal", part_21)
472
decal.Texture = "http://www.roblox.com/asset/?id=12722072"
473
474
 part_22 = Instance.new("Part", hot_dog_stand)
475
part_22.FormFactor = Enum.FormFactor.Symmetric
476
part_22.TopSurface = Enum.SurfaceType.Smooth
477
part_22.Anchored = true
478
part_22.Size = Vector3.new(1, 1, 1)
479
part_22.Locked = true
480
part_22.CFrame = CFrame.new(-752.667, 389.3, -1163.943)* CFrame.Angles(1.5707963705063, -3.576267090466e-006, -1.5707963705063)
481
part_22.BrickColor = BrickColor.new("Institutional white")
482
part_22.Friction = 0.3
483
part_22.BottomSurface = Enum.SurfaceType.Smooth
484
485
 mesh_2 = Instance.new("SpecialMesh", part_22)
486
mesh_2.Scale = Vector3.new(0.5, 2, 0.5)
487
488
 part_23 = Instance.new("Part", hot_dog_stand)
489
part_23.FormFactor = Enum.FormFactor.Symmetric
490
part_23.TopSurface = Enum.SurfaceType.Smooth
491
part_23.Anchored = true
492
part_23.Size = Vector3.new(1, 1, 1)
493
part_23.Locked = true
494
part_23.CFrame = CFrame.new(-752.667, 389.3, -1162.943)* CFrame.Angles(1.5707963705063, -3.576267090466e-006, -1.5707963705063)
495
part_23.BrickColor = BrickColor.new("Institutional white")
496
part_23.Friction = 0.3
497
part_23.BottomSurface = Enum.SurfaceType.Smooth
498
499
 mesh_3 = Instance.new("SpecialMesh", part_23)
500
mesh_3.Scale = Vector3.new(0.5, 2, 0.5)
501
502
 part_24 = Instance.new("Part", hot_dog_stand)
503
part_24.FormFactor = Enum.FormFactor.Symmetric
504
part_24.TopSurface = Enum.SurfaceType.Smooth
505
part_24.Anchored = true
506
part_24.Size = Vector3.new(1, 1, 1)
507
part_24.Locked = true
508
part_24.CFrame = CFrame.new(-752.667, 389.3, -1160.943)* CFrame.Angles(1.5707963705063, -3.576267090466e-006, 7.9580878562316e-013)
509
part_24.BrickColor = BrickColor.new("Brick yellow")
510
part_24.Friction = 0.3
511
part_24.BottomSurface = Enum.SurfaceType.Smooth
512
513
 mesh_4 = Instance.new("SpecialMesh", part_24)
514
mesh_4.Scale = Vector3.new(0.5, 2, 0.5)
515
516
 decal_2 = Instance.new("Decal", part_24)
517
decal_2.Texture = "http://www.roblox.com/asset/?id=12722072"
518
519
 part_25 = Instance.new("Part", hot_dog_stand)
520
part_25.FormFactor = Enum.FormFactor.Symmetric
521
part_25.TopSurface = Enum.SurfaceType.Smooth
522
part_25.Anchored = true
523
part_25.Size = Vector3.new(1, 1, 1)
524
part_25.Locked = true
525
part_25.CFrame = CFrame.new(-753.667, 389.3, -1160.943)* CFrame.Angles(1.5707963705063, -3.576267090466e-006, 7.9580878562316e-013)
526
part_25.BrickColor = BrickColor.new("Brick yellow")
527
part_25.Friction = 0.3
528
part_25.BottomSurface = Enum.SurfaceType.Smooth
529
530
 mesh_5 = Instance.new("SpecialMesh", part_25)
531
mesh_5.Scale = Vector3.new(0.5, 2, 0.5)
532
533
 decal_3 = Instance.new("Decal", part_25)
534
decal_3.Texture = "http://www.roblox.com/asset/?id=12722072"
535
536
 h2 = Instance.new("Model", hot_dog_stand)
537
h2.Name = "H2"
538
539
 pole = Instance.new("Part", h2)
540
pole.FormFactor = Enum.FormFactor.Plate
541
pole.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
542
pole.TopSurface = Enum.SurfaceType.SmoothNoOutlines
543
pole.Anchored = true
544
pole.Material = Enum.Material.Concrete
545
pole.Size = Vector3.new(1, 1.2, 1)
546
pole.Name = "Pole"
547
pole.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
548
pole.Locked = true
549
pole.CFrame = CFrame.new(-748.812, 394.211, -1156.943)* CFrame.Angles(3.1415927410126, 3.5414160493019e-008, 2.6005439758301)
550
pole.RightSurface = Enum.SurfaceType.SmoothNoOutlines
551
pole.BackSurface = Enum.SurfaceType.SmoothNoOutlines
552
pole.BrickColor = BrickColor.new("Dark stone grey")
553
pole.Friction = 0.3
554
pole.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
555
556
 mesh_6 = Instance.new("CylinderMesh", pole)
557
mesh_6.Scale = Vector3.new(1, 1, 0.5)
558
559
 cloth = Instance.new("Part", h2)
560
cloth.FormFactor = Enum.FormFactor.Plate
561
cloth.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
562
cloth.TopSurface = Enum.SurfaceType.SmoothNoOutlines
563
cloth.Anchored = true
564
cloth.Size = Vector3.new(7, 0.4, 2)
565
cloth.Name = "Cloth"
566
cloth.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
567
cloth.Locked = true
568
cloth.CFrame = CFrame.new(-749.591, 395, -1157.443)* CFrame.Angles(-7.8051535012946e-008, 6.4592541093589e-008, 2.5481772422791)
569
cloth.RightSurface = Enum.SurfaceType.SmoothNoOutlines
570
cloth.BackSurface = Enum.SurfaceType.SmoothNoOutlines
571
cloth.BrickColor = BrickColor.new("Bright red")
572
cloth.Friction = 0.3
573
cloth.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
574
575
 metal = Instance.new("Part", h2)
576
metal.FormFactor = Enum.FormFactor.Plate
577
metal.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
578
metal.TopSurface = Enum.SurfaceType.SmoothNoOutlines
579
metal.Reflectance = 0.2
580
metal.Anchored = true
581
metal.Size = Vector3.new(4, 2.4, 2)
582
metal.Name = "Metal"
583
metal.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
584
metal.Locked = true
585
metal.CFrame = CFrame.new(-752.167, 389.9, -1157.443)* CFrame.Angles(-3.1415927410126, 7.9580786405131e-013, -3.1415891647339)
586
metal.RightSurface = Enum.SurfaceType.SmoothNoOutlines
587
metal.BackSurface = Enum.SurfaceType.SmoothNoOutlines
588
metal.BrickColor = BrickColor.new("Light stone grey")
589
metal.Friction = 0.3
590
metal.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
591
592
 cloth_2 = Instance.new("Part", h2)
593
cloth_2.FormFactor = Enum.FormFactor.Plate
594
cloth_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
595
cloth_2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
596
cloth_2.Anchored = true
597
cloth_2.Size = Vector3.new(7, 0.4, 2)
598
cloth_2.Name = "Cloth"
599
cloth_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
600
cloth_2.Locked = true
601
cloth_2.CFrame = CFrame.new(-749.568, 394.932, -1159.343)* CFrame.Angles(-4.4720483316496e-008, 1.1400754829083e-007, -0.59341549873352)
602
cloth_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
603
cloth_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
604
cloth_2.BrickColor = BrickColor.new("Bright yellow")
605
cloth_2.Friction = 0.3
606
cloth_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
607
608
 pole_2 = Instance.new("Part", h2)
609
pole_2.FormFactor = Enum.FormFactor.Plate
610
pole_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
611
pole_2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
612
pole_2.Anchored = true
613
pole_2.Material = Enum.Material.Concrete
614
pole_2.Size = Vector3.new(1, 0.8, 1)
615
pole_2.Name = "Pole"
616
pole_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
617
pole_2.Locked = true
618
pole_2.CFrame = CFrame.new(-749.095, 388.394, -1156.943)* CFrame.Angles(-8.7251814662181e-009, 4.8164793042815e-008, -0.78540223836899)
619
pole_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
620
pole_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
621
pole_2.BrickColor = BrickColor.new("Dark stone grey")
622
pole_2.Friction = 0.3
623
pole_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
624
625
 mesh_7 = Instance.new("CylinderMesh", pole_2)
626
mesh_7.Scale = Vector3.new(1, 1, 0.5)
627
628
 pole_3 = Instance.new("Part", h2)
629
pole_3.FormFactor = Enum.FormFactor.Plate
630
pole_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
631
pole_3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
632
pole_3.Anchored = true
633
pole_3.Material = Enum.Material.Concrete
634
pole_3.Size = Vector3.new(1, 0.8, 1)
635
pole_3.Name = "Pole"
636
pole_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
637
pole_3.Locked = true
638
pole_3.CFrame = CFrame.new(-755.367, 388.41, -1156.943)* CFrame.Angles(3.141592502594, 3.6129819136477e-008, 2.3561980724335)
639
pole_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
640
pole_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
641
pole_3.BrickColor = BrickColor.new("Dark stone grey")
642
pole_3.Friction = 0.3
643
pole_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
644
645
 mesh_8 = Instance.new("CylinderMesh", pole_3)
646
mesh_8.Scale = Vector3.new(1, 1, 0.5)
647
648
 cloth_3 = Instance.new("Part", h2)
649
cloth_3.FormFactor = Enum.FormFactor.Plate
650
cloth_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
651
cloth_3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
652
cloth_3.Anchored = true
653
cloth_3.Size = Vector3.new(7, 0.4, 2)
654
cloth_3.Name = "Cloth"
655
cloth_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
656
cloth_3.Locked = true
657
cloth_3.CFrame = CFrame.new(-755.122, 394.976, -1159.343)* CFrame.Angles(-1.4296095862676e-008, 6.553705134138e-009, -2.5481841564178)
658
cloth_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
659
cloth_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
660
cloth_3.BrickColor = BrickColor.new("Bright yellow")
661
cloth_3.Friction = 0.3
662
cloth_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
663
664
 pole_4 = Instance.new("Part", h2)
665
pole_4.FormFactor = Enum.FormFactor.Plate
666
pole_4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
667
pole_4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
668
pole_4.Anchored = true
669
pole_4.Material = Enum.Material.Concrete
670
pole_4.Size = Vector3.new(1, 1.2, 1)
671
pole_4.Name = "Pole"
672
pole_4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
673
pole_4.Locked = true
674
pole_4.CFrame = CFrame.new(-755.558, 394.236, -1156.943)* CFrame.Angles(3.141592502594, -6.1726979083687e-008, -2.6005368232727)
675
pole_4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
676
pole_4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
677
pole_4.BrickColor = BrickColor.new("Dark stone grey")
678
pole_4.Friction = 0.3
679
pole_4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
680
681
 mesh_9 = Instance.new("CylinderMesh", pole_4)
682
mesh_9.Scale = Vector3.new(1, 1, 0.5)
683
684
 metal_2 = Instance.new("Part", h2)
685
metal_2.FormFactor = Enum.FormFactor.Plate
686
metal_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
687
metal_2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
688
metal_2.Reflectance = 0.2
689
metal_2.Anchored = true
690
metal_2.Size = Vector3.new(6, 2, 4)
691
metal_2.Name = "Metal"
692
metal_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
693
metal_2.Locked = true
694
metal_2.CFrame = CFrame.new(-752.167, 387.5, -1158.443)* CFrame.Angles(-3.1415927410126, 7.9580786405131e-013, -3.1415891647339)
695
metal_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
696
metal_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
697
metal_2.Friction = 0.3
698
metal_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
699
700
 metal_3 = Instance.new("Part", h2)
701
metal_3.FormFactor = Enum.FormFactor.Symmetric
702
metal_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
703
metal_3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
704
metal_3.Reflectance = 0.2
705
metal_3.Anchored = true
706
metal_3.Size = Vector3.new(1, 1, 1)
707
metal_3.Name = "Metal"
708
metal_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
709
metal_3.Locked = true
710
metal_3.CFrame = CFrame.new(-752.067, 385.41, -1157.743)* CFrame.Angles(3.141592502594, 4.8316906031687e-013, -3.1415891647339)
711
metal_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
712
metal_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
713
metal_3.BrickColor = BrickColor.new("Really black")
714
metal_3.Friction = 0.3
715
metal_3.Shape = Enum.PartType.Cylinder
716
metal_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
717
718
 metal_4 = Instance.new("Part", h2)
719
metal_4.FormFactor = Enum.FormFactor.Plate
720
metal_4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
721
metal_4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
722
metal_4.Reflectance = 0.2
723
metal_4.Anchored = true
724
metal_4.Size = Vector3.new(1, 0.4, 1)
725
metal_4.Name = "Metal"
726
metal_4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
727
metal_4.Locked = true
728
metal_4.CFrame = CFrame.new(-751.967, 386.11, -1157.743)* CFrame.Angles(-1.5707963705063, 3.6954766073904e-006, -3.1415917873383)
729
metal_4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
730
metal_4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
731
metal_4.Friction = 0.3
732
metal_4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
733
734
 metal_5 = Instance.new("Part", h2)
735
metal_5.FormFactor = Enum.FormFactor.Plate
736
metal_5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
737
metal_5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
738
metal_5.Reflectance = 0.2
739
metal_5.Anchored = true
740
metal_5.Size = Vector3.new(6, 0.4, 5)
741
metal_5.Name = "Metal"
742
metal_5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
743
metal_5.Locked = true
744
metal_5.CFrame = CFrame.new(-752.167, 388.6, -1158.943)* CFrame.Angles(-3.1415927410126, 7.9580786405131e-013, -3.1415891647339)
745
metal_5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
746
metal_5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
747
metal_5.Friction = 0.3
748
metal_5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
749
750
 cloth_4 = Instance.new("Part", h2)
751
cloth_4.FormFactor = Enum.FormFactor.Plate
752
cloth_4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
753
cloth_4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
754
cloth_4.Anchored = true
755
cloth_4.Size = Vector3.new(7, 0.4, 2)
756
cloth_4.Name = "Cloth"
757
cloth_4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
758
cloth_4.Locked = true
759
cloth_4.CFrame = CFrame.new(-755.123, 394.976, -1157.443)* CFrame.Angles(-3.0961444963395e-008, 3.1261436106433e-008, -2.5481841564178)
760
cloth_4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
761
cloth_4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
762
cloth_4.BrickColor = BrickColor.new("Bright red")
763
cloth_4.Friction = 0.3
764
cloth_4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
765
766
 cloth_5 = Instance.new("Part", h2)
767
cloth_5.FormFactor = Enum.FormFactor.Plate
768
cloth_5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
769
cloth_5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
770
cloth_5.Anchored = true
771
cloth_5.Size = Vector3.new(7, 0.4, 2)
772
cloth_5.Name = "Cloth"
773
cloth_5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
774
cloth_5.Locked = true
775
cloth_5.CFrame = CFrame.new(-755.123, 394.976, -1161.243)* CFrame.Angles(-2.9799616996229e-008, -1.8364576703789e-007, -2.5481843948364)
776
cloth_5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
777
cloth_5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
778
cloth_5.BrickColor = BrickColor.new("Bright red")
779
cloth_5.Friction = 0.3
780
cloth_5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
781
782
 cloth_6 = Instance.new("Part", h2)
783
cloth_6.FormFactor = Enum.FormFactor.Plate
784
cloth_6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
785
cloth_6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
786
cloth_6.Anchored = true
787
cloth_6.Size = Vector3.new(7, 0.4, 2)
788
cloth_6.Name = "Cloth"
789
cloth_6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
790
cloth_6.Locked = true
791
cloth_6.CFrame = CFrame.new(-749.568, 394.931, -1161.243)* CFrame.Angles(-4.5302012807724e-008, 6.5539325078134e-009, 2.5481770038605)
792
cloth_6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
793
cloth_6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
794
cloth_6.BrickColor = BrickColor.new("Bright red")
795
cloth_6.Friction = 0.3
796
cloth_6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
797
798
 cloth_7 = Instance.new("Part", h2)
799
cloth_7.FormFactor = Enum.FormFactor.Plate
800
cloth_7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
801
cloth_7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
802
cloth_7.Anchored = true
803
cloth_7.Size = Vector3.new(7, 0.4, 2)
804
cloth_7.Name = "Cloth"
805
cloth_7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
806
cloth_7.Locked = true
807
cloth_7.CFrame = CFrame.new(-755.123, 394.976, -1163.243)* CFrame.Angles(-2.9799616996229e-008, -1.8364576703789e-007, -2.5481843948364)
808
cloth_7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
809
cloth_7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
810
cloth_7.BrickColor = BrickColor.new("Bright yellow")
811
cloth_7.Friction = 0.3
812
cloth_7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
813
814
 metal_6 = Instance.new("Part", h2)
815
metal_6.FormFactor = Enum.FormFactor.Plate
816
metal_6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
817
metal_6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
818
metal_6.Reflectance = 0.2
819
metal_6.Anchored = true
820
metal_6.Size = Vector3.new(1, 2, 2)
821
metal_6.Name = "Metal"
822
metal_6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
823
metal_6.Locked = true
824
metal_6.CFrame = CFrame.new(-754.667, 387.5, -1160.443)* CFrame.Angles(-3.1415927410126, 7.9580786405131e-013, -3.1415891647339)
825
metal_6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
826
metal_6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
827
metal_6.Friction = 0.3
828
metal_6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
829
830
 metal_7 = Instance.new("Part", h2)
831
metal_7.FormFactor = Enum.FormFactor.Plate
832
metal_7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
833
metal_7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
834
metal_7.Reflectance = 0.2
835
metal_7.Anchored = true
836
metal_7.Size = Vector3.new(1, 2, 2)
837
metal_7.Name = "Metal"
838
metal_7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
839
metal_7.Locked = true
840
metal_7.CFrame = CFrame.new(-749.667, 387.5, -1160.443)* CFrame.Angles(-3.1415927410126, 7.9580786405131e-013, -3.1415891647339)
841
metal_7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
842
metal_7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
843
metal_7.Friction = 0.3
844
metal_7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
845
846
 hot_dog_sign = Instance.new("Model", h2)
847
hot_dog_sign.Name = "Hot Dog Sign"
848
849
 hot_dog = Instance.new("Part", hot_dog_sign)
850
hot_dog.FormFactor = Enum.FormFactor.Plate
851
hot_dog.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
852
hot_dog.TopSurface = Enum.SurfaceType.SmoothNoOutlines
853
hot_dog.Anchored = true
854
hot_dog.Size = Vector3.new(2, 0.8, 1)
855
hot_dog.Name = "Hot Dog"
856
hot_dog.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
857
hot_dog.Locked = true
858
hot_dog.CFrame = CFrame.new(-754.767, 387.61, -1160.843)* CFrame.Angles(1.4389646053314, 1.5692522525787, -1.4577828645706)
859
hot_dog.RightSurface = Enum.SurfaceType.SmoothNoOutlines
860
hot_dog.BackSurface = Enum.SurfaceType.SmoothNoOutlines
861
hot_dog.BrickColor = BrickColor.new("CGA brown")
862
hot_dog.Friction = 0.3
863
hot_dog.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
864
865
 hot_dog_2 = Instance.new("Part", hot_dog_sign)
866
hot_dog_2.FormFactor = Enum.FormFactor.Plate
867
hot_dog_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
868
hot_dog_2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
869
hot_dog_2.Anchored = true
870
hot_dog_2.Size = Vector3.new(1, 0.4, 1)
871
hot_dog_2.Name = "Hot Dog"
872
hot_dog_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
873
hot_dog_2.Locked = true
874
hot_dog_2.CFrame = CFrame.new(-755.067, 387.61, -1159.743)* CFrame.Angles(3.141592502594, -1.0456858490215e-007, -1.5707927942276)
875
hot_dog_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
876
hot_dog_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
877
hot_dog_2.BrickColor = BrickColor.new("CGA brown")
878
hot_dog_2.Friction = 0.3
879
hot_dog_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
880
881
 mesh_10 = Instance.new("CylinderMesh", hot_dog_2)
882
mesh_10.Scale = Vector3.new(0.8, 1, 1)
883
884
 hot_dog_3 = Instance.new("Part", hot_dog_sign)
885
hot_dog_3.FormFactor = Enum.FormFactor.Plate
886
hot_dog_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
887
hot_dog_3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
888
hot_dog_3.Anchored = true
889
hot_dog_3.Size = Vector3.new(1, 0.4, 1)
890
hot_dog_3.Name = "Hot Dog"
891
hot_dog_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
892
hot_dog_3.Locked = true
893
hot_dog_3.CFrame = CFrame.new(-755.067, 387.61, -1161.943)* CFrame.Angles(3.141592502594, -1.0456858490215e-007, -1.5707927942276)
894
hot_dog_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
895
hot_dog_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
896
hot_dog_3.BrickColor = BrickColor.new("CGA brown")
897
hot_dog_3.Friction = 0.3
898
hot_dog_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
899
900
 mesh_11 = Instance.new("CylinderMesh", hot_dog_3)
901
mesh_11.Scale = Vector3.new(0.8, 1, 1)
902
903
 cloth_8 = Instance.new("Part", h2)
904
cloth_8.FormFactor = Enum.FormFactor.Plate
905
cloth_8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
906
cloth_8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
907
cloth_8.Anchored = true
908
cloth_8.Size = Vector3.new(7, 0.4, 2)
909
cloth_8.Name = "Cloth"
910
cloth_8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
911
cloth_8.Locked = true
912
cloth_8.CFrame = CFrame.new(-749.544, 394.963, -1163.243)* CFrame.Angles(-4.4720483316496e-008, 1.1400754829083e-007, -0.59341549873352)
913
cloth_8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
914
cloth_8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
915
cloth_8.BrickColor = BrickColor.new("Bright yellow")
916
cloth_8.Friction = 0.3
917
cloth_8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
918
919
 metal_8 = Instance.new("Part", h2)
920
metal_8.FormFactor = Enum.FormFactor.Plate
921
metal_8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
922
metal_8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
923
metal_8.Reflectance = 0.2
924
metal_8.Anchored = true
925
metal_8.Size = Vector3.new(6, 0.4, 9)
926
metal_8.Name = "Metal"
927
metal_8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
928
metal_8.Locked = true
929
metal_8.CFrame = CFrame.new(-752.167, 386.4, -1160.943)* CFrame.Angles(-3.1415927410126, 7.9580786405131e-013, -3.1415891647339)
930
metal_8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
931
metal_8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
932
metal_8.Friction = 0.3
933
metal_8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
934
935
 metal_9 = Instance.new("Part", h2)
936
metal_9.FormFactor = Enum.FormFactor.Plate
937
metal_9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
938
metal_9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
939
metal_9.Reflectance = 0.2
940
metal_9.Anchored = true
941
metal_9.Size = Vector3.new(1, 2, 5)
942
metal_9.Name = "Metal"
943
metal_9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
944
metal_9.Locked = true
945
metal_9.CFrame = CFrame.new(-754.667, 387.5, -1162.943)* CFrame.Angles(-3.1415927410126, 7.9580786405131e-013, -3.1415891647339)
946
metal_9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
947
metal_9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
948
metal_9.Friction = 0.3
949
metal_9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
950
951
 metal_10 = Instance.new("Part", h2)
952
metal_10.FormFactor = Enum.FormFactor.Plate
953
metal_10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
954
metal_10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
955
metal_10.Reflectance = 0.2
956
metal_10.Anchored = true
957
metal_10.Size = Vector3.new(6, 0.4, 5)
958
metal_10.Name = "Metal"
959
metal_10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
960
metal_10.Locked = true
961
metal_10.CFrame = CFrame.new(-752.167, 388.6, -1162.943)* CFrame.Angles(-3.1415927410126, 7.9580786405131e-013, -3.1415891647339)
962
metal_10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
963
metal_10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
964
metal_10.Friction = 0.3
965
metal_10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
966
967
 cloth_9 = Instance.new("Part", h2)
968
cloth_9.FormFactor = Enum.FormFactor.Plate
969
cloth_9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
970
cloth_9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
971
cloth_9.Anchored = true
972
cloth_9.Size = Vector3.new(7, 0.4, 2)
973
cloth_9.Name = "Cloth"
974
cloth_9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
975
cloth_9.Locked = true
976
cloth_9.CFrame = CFrame.new(-755.123, 394.976, -1165.243)* CFrame.Angles(-2.9799616996229e-008, -1.8364576703789e-007, -2.5481843948364)
977
cloth_9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
978
cloth_9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
979
cloth_9.BrickColor = BrickColor.new("Bright red")
980
cloth_9.Friction = 0.3
981
cloth_9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
982
983
 metal_11 = Instance.new("Part", h2)
984
metal_11.FormFactor = Enum.FormFactor.Plate
985
metal_11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
986
metal_11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
987
metal_11.Reflectance = 0.2
988
metal_11.Anchored = true
989
metal_11.Size = Vector3.new(1, 2, 5)
990
metal_11.Name = "Metal"
991
metal_11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
992
metal_11.Locked = true
993
metal_11.CFrame = CFrame.new(-749.667, 387.5, -1162.943)* CFrame.Angles(-3.1415927410126, 7.9580786405131e-013, -3.1415891647339)
994
metal_11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
995
metal_11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
996
metal_11.Friction = 0.3
997
metal_11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
998
999
 metal_12 = Instance.new("Part", h2)
1000
metal_12.FormFactor = Enum.FormFactor.Symmetric
1001
metal_12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1002
metal_12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1003
metal_12.Reflectance = 0.2
1004
metal_12.Anchored = true
1005
metal_12.Size = Vector3.new(2, 2, 2)
1006
metal_12.Name = "Metal"
1007
metal_12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1008
metal_12.Locked = true
1009
metal_12.CFrame = CFrame.new(-754.967, 385.91, -1163.443)* CFrame.Angles(3.141592502594, 4.8316906031687e-013, -3.1415891647339)
1010
metal_12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1011
metal_12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1012
metal_12.BrickColor = BrickColor.new("Really black")
1013
metal_12.Friction = 0.3
1014
metal_12.Shape = Enum.PartType.Cylinder
1015
metal_12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1016
1017
 cloth_10 = Instance.new("Part", h2)
1018
cloth_10.FormFactor = Enum.FormFactor.Plate
1019
cloth_10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1020
cloth_10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1021
cloth_10.Anchored = true
1022
cloth_10.Size = Vector3.new(7, 0.4, 2)
1023
cloth_10.Name = "Cloth"
1024
cloth_10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1025
cloth_10.Locked = true
1026
cloth_10.CFrame = CFrame.new(-749.544, 394.963, -1165.243)* CFrame.Angles(-7.8051535012946e-008, 6.4592541093589e-008, 2.5481772422791)
1027
cloth_10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1028
cloth_10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1029
cloth_10.BrickColor = BrickColor.new("Bright red")
1030
cloth_10.Friction = 0.3
1031
cloth_10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1032
1033
 metal_13 = Instance.new("Part", h2)
1034
metal_13.FormFactor = Enum.FormFactor.Plate
1035
metal_13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1036
metal_13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1037
metal_13.Reflectance = 0.2
1038
metal_13.Anchored = true
1039
metal_13.Size = Vector3.new(1, 2, 2)
1040
metal_13.Name = "Metal"
1041
metal_13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1042
metal_13.Locked = true
1043
metal_13.CFrame = CFrame.new(-754.167, 387.5, -1164.943)* CFrame.Angles(-1.570796251297, -1.5692913532257, -1.5707964897156)
1044
metal_13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1045
metal_13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1046
metal_13.Friction = 0.3
1047
metal_13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1048
1049
 metal_14 = Instance.new("Part", h2)
1050
metal_14.FormFactor = Enum.FormFactor.Symmetric
1051
metal_14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1052
metal_14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1053
metal_14.Reflectance = 0.2
1054
metal_14.Anchored = true
1055
metal_14.Size = Vector3.new(2, 2, 2)
1056
metal_14.Name = "Metal"
1057
metal_14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1058
metal_14.Locked = true
1059
metal_14.CFrame = CFrame.new(-749.367, 385.91, -1163.443)* CFrame.Angles(3.141592502594, 4.8316906031687e-013, -3.1415891647339)
1060
metal_14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1061
metal_14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1062
metal_14.BrickColor = BrickColor.new("Really black")
1063
metal_14.Friction = 0.3
1064
metal_14.Shape = Enum.PartType.Cylinder
1065
metal_14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1066
1067
 part_26 = Instance.new("Part", h2)
1068
part_26.FormFactor = Enum.FormFactor.Plate
1069
part_26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1070
part_26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1071
part_26.Anchored = true
1072
part_26.Material = Enum.Material.Concrete
1073
part_26.Size = Vector3.new(1, 1.6, 1)
1074
part_26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1075
part_26.Locked = true
1076
part_26.CFrame = CFrame.new(-753.667, 389.11, -1165.543)* CFrame.Angles(1.5431486368179, 1.5667550563812, 0.82545256614685)
1077
part_26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1078
part_26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1079
part_26.BrickColor = BrickColor.new("Dark stone grey")
1080
part_26.Friction = 0.3
1081
part_26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1082
1083
 mesh_12 = Instance.new("CylinderMesh", part_26)
1084
mesh_12.Scale = Vector3.new(1, 1, 0.5)
1085
1086
 metal_15 = Instance.new("Part", h2)
1087
metal_15.FormFactor = Enum.FormFactor.Plate
1088
metal_15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1089
metal_15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1090
metal_15.Reflectance = 0.2
1091
metal_15.Anchored = true
1092
metal_15.Size = Vector3.new(4, 2, 1)
1093
metal_15.Name = "Metal"
1094
metal_15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1095
metal_15.Locked = true
1096
metal_15.CFrame = CFrame.new(-752.167, 387.5, -1164.943)* CFrame.Angles(3.6056587403299e-012, -7.9580786405131e-013, -3.5762711831921e-006)
1097
metal_15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1098
metal_15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1099
metal_15.Friction = 0.3
1100
metal_15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1101
1102
 metal_16 = Instance.new("Part", h2)
1103
metal_16.FormFactor = Enum.FormFactor.Plate
1104
metal_16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1105
metal_16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1106
metal_16.Reflectance = 0.2
1107
metal_16.Anchored = true
1108
metal_16.Size = Vector3.new(1, 2, 2)
1109
metal_16.Name = "Metal"
1110
metal_16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1111
metal_16.Locked = true
1112
metal_16.CFrame = CFrame.new(-750.167, 387.5, -1164.943)* CFrame.Angles(-1.570796251297, -1.5692913532257, -1.5707964897156)
1113
metal_16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1114
metal_16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1115
metal_16.Friction = 0.3
1116
metal_16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1117
1118
 part_27 = Instance.new("Part", h2)
1119
part_27.FormFactor = Enum.FormFactor.Plate
1120
part_27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1121
part_27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1122
part_27.Anchored = true
1123
part_27.Material = Enum.Material.Concrete
1124
part_27.Size = Vector3.new(1, 1.6, 1)
1125
part_27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1126
part_27.Locked = true
1127
part_27.CFrame = CFrame.new(-750.667, 389.11, -1165.543)* CFrame.Angles(1.5431486368179, 1.5667550563812, 0.82545256614685)
1128
part_27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1129
part_27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1130
part_27.BrickColor = BrickColor.new("Dark stone grey")
1131
part_27.Friction = 0.3
1132
part_27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1133
1134
 mesh_13 = Instance.new("CylinderMesh", part_27)
1135
mesh_13.Scale = Vector3.new(1, 1, 0.5)
1136
1137
 part_28 = Instance.new("Part", h2)
1138
part_28.FormFactor = Enum.FormFactor.Plate
1139
part_28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1140
part_28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1141
part_28.Anchored = true
1142
part_28.Material = Enum.Material.Concrete
1143
part_28.Size = Vector3.new(1, 0.8, 1)
1144
part_28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1145
part_28.Locked = true
1146
part_28.CFrame = CFrame.new(-753.667, 389.729, -1166.421)* CFrame.Angles(1.4671876430511, 1.5692522525787, 0.31684654951096)
1147
part_28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1148
part_28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1149
part_28.BrickColor = BrickColor.new("Dark stone grey")
1150
part_28.Friction = 0.3
1151
part_28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1152
1153
 mesh_14 = Instance.new("CylinderMesh", part_28)
1154
mesh_14.Scale = Vector3.new(1, 1, 0.5)
1155
1156
 part_29 = Instance.new("Part", h2)
1157
part_29.FormFactor = Enum.FormFactor.Plate
1158
part_29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1159
part_29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1160
part_29.Anchored = true
1161
part_29.Material = Enum.Material.Concrete
1162
part_29.Size = Vector3.new(1, 0.8, 1)
1163
part_29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1164
part_29.Locked = true
1165
part_29.CFrame = CFrame.new(-750.667, 389.729, -1166.421)* CFrame.Angles(1.4671876430511, 1.5692522525787, 0.31684654951096)
1166
part_29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1167
part_29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1168
part_29.BrickColor = BrickColor.new("Dark stone grey")
1169
part_29.Friction = 0.3
1170
part_29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1171
1172
 mesh_15 = Instance.new("CylinderMesh", part_29)
1173
mesh_15.Scale = Vector3.new(1, 1, 0.5)
1174
1175
 part_30 = Instance.new("Part", h2)
1176
part_30.FormFactor = Enum.FormFactor.Plate
1177
part_30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1178
part_30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1179
part_30.Anchored = true
1180
part_30.Material = Enum.Material.Concrete
1181
part_30.Size = Vector3.new(1, 0.8, 1)
1182
part_30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1183
part_30.Locked = true
1184
part_30.CFrame = CFrame.new(-753.667, 389.809, -1167.1)* CFrame.Angles(2.275153875351, 1.5692141056061, -0.5895888209343)
1185
part_30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1186
part_30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1187
part_30.BrickColor = BrickColor.new("Dark stone grey")
1188
part_30.Friction = 0.3
1189
part_30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1190
1191
 mesh_16 = Instance.new("CylinderMesh", part_30)
1192
mesh_16.Scale = Vector3.new(1, 1, 0.5)
1193
1194
 part_31 = Instance.new("Part", h2)
1195
part_31.FormFactor = Enum.FormFactor.Plate
1196
part_31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1197
part_31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1198
part_31.Anchored = true
1199
part_31.Material = Enum.Material.Concrete
1200
part_31.Size = Vector3.new(1, 0.8, 1)
1201
part_31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1202
part_31.Locked = true
1203
part_31.CFrame = CFrame.new(-750.667, 389.809, -1167.1)* CFrame.Angles(1.4439319372177, 1.5692522525787, 0.106734149158)
1204
part_31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1205
part_31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1206
part_31.BrickColor = BrickColor.new("Dark stone grey")
1207
part_31.Friction = 0.3
1208
part_31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1209
1210
 mesh_17 = Instance.new("CylinderMesh", part_31)
1211
mesh_17.Scale = Vector3.new(1, 1, 0.5)
1212
1213
 pole_5 = Instance.new("Part", h2)
1214
pole_5.FormFactor = Enum.FormFactor.Plate
1215
pole_5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1216
pole_5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1217
pole_5.Anchored = true
1218
pole_5.Material = Enum.Material.Concrete
1219
pole_5.Size = Vector3.new(1, 4, 1)
1220
pole_5.Name = "Pole"
1221
pole_5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1222
pole_5.Locked = true
1223
pole_5.CFrame = CFrame.new(-748.567, 391.911, -1156.943)* CFrame.Angles(-6.4131874921713e-008, 7.5636677365765e-008, 0.017449637874961)
1224
pole_5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1225
pole_5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1226
pole_5.BrickColor = BrickColor.new("Dark stone grey")
1227
pole_5.Friction = 0.3
1228
pole_5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1229
1230
 mesh_18 = Instance.new("CylinderMesh", pole_5)
1231
mesh_18.Scale = Vector3.new(1, 1, 0.5)
1232
1233
 pole_6 = Instance.new("Part", h2)
1234
pole_6.FormFactor = Enum.FormFactor.Plate
1235
pole_6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1236
pole_6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1237
pole_6.Anchored = true
1238
pole_6.Material = Enum.Material.Concrete
1239
pole_6.Size = Vector3.new(1, 0.8, 1)
1240
pole_6.Name = "Pole"
1241
pole_6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1242
pole_6.Locked = true
1243
pole_6.CFrame = CFrame.new(-748.575, 389.616, -1156.943)* CFrame.Angles(-1.0048883503089e-008, 9.8790224001277e-008, -0.069816626608372)
1244
pole_6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1245
pole_6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1246
pole_6.BrickColor = BrickColor.new("Dark stone grey")
1247
pole_6.Friction = 0.3
1248
pole_6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1249
1250
 mesh_19 = Instance.new("CylinderMesh", pole_6)
1251
mesh_19.Scale = Vector3.new(1, 1, 0.5)
1252
1253
 pole_7 = Instance.new("Part", h2)
1254
pole_7.FormFactor = Enum.FormFactor.Plate
1255
pole_7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1256
pole_7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1257
pole_7.Anchored = true
1258
pole_7.Material = Enum.Material.Concrete
1259
pole_7.Size = Vector3.new(1, 0.8, 1)
1260
pole_7.Name = "Pole"
1261
pole_7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1262
pole_7.Locked = true
1263
pole_7.CFrame = CFrame.new(-748.72, 388.954, -1156.943)* CFrame.Angles(-6.537939611917e-008, 1.0771233860396e-007, -0.29670974612236)
1264
pole_7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1265
pole_7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1266
pole_7.BrickColor = BrickColor.new("Dark stone grey")
1267
pole_7.Friction = 0.3
1268
pole_7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1269
1270
 mesh_20 = Instance.new("CylinderMesh", pole_7)
1271
mesh_20.Scale = Vector3.new(1, 1, 0.5)
1272
1273
 pole_8 = Instance.new("Part", h2)
1274
pole_8.FormFactor = Enum.FormFactor.Plate
1275
pole_8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1276
pole_8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1277
pole_8.Anchored = true
1278
pole_8.Material = Enum.Material.Concrete
1279
pole_8.Size = Vector3.new(1, 4, 1)
1280
pole_8.Name = "Pole"
1281
pole_8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1282
pole_8.Locked = true
1283
pole_8.CFrame = CFrame.new(-755.834, 391.936, -1156.943)* CFrame.Angles(-3.1415927410126, -5.7972329159384e-009, -3.1241357326508)
1284
pole_8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1285
pole_8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1286
pole_8.BrickColor = BrickColor.new("Dark stone grey")
1287
pole_8.Friction = 0.3
1288
pole_8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1289
1290
 mesh_21 = Instance.new("CylinderMesh", pole_8)
1291
mesh_21.Scale = Vector3.new(1, 1, 0.5)
1292
1293
 pole_9 = Instance.new("Part", h2)
1294
pole_9.FormFactor = Enum.FormFactor.Plate
1295
pole_9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1296
pole_9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1297
pole_9.Anchored = true
1298
pole_9.Material = Enum.Material.Concrete
1299
pole_9.Size = Vector3.new(1, 0.8, 1)
1300
pole_9.Name = "Pole"
1301
pole_9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1302
pole_9.Locked = true
1303
pole_9.CFrame = CFrame.new(-755.867, 389.641, -1156.943)* CFrame.Angles(3.1415927410126, -4.2462886540306e-009, 3.0717830657959)
1304
pole_9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1305
pole_9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1306
pole_9.BrickColor = BrickColor.new("Dark stone grey")
1307
pole_9.Friction = 0.3
1308
pole_9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1309
1310
 mesh_22 = Instance.new("CylinderMesh", pole_9)
1311
mesh_22.Scale = Vector3.new(1, 1, 0.5)
1312
1313
 pole_10 = Instance.new("Part", h2)
1314
pole_10.FormFactor = Enum.FormFactor.Plate
1315
pole_10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1316
pole_10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1317
pole_10.Anchored = true
1318
pole_10.Material = Enum.Material.Concrete
1319
pole_10.Size = Vector3.new(1, 0.8, 1)
1320
pole_10.Name = "Pole"
1321
pole_10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1322
pole_10.Locked = true
1323
pole_10.CFrame = CFrame.new(-755.733, 388.976, -1156.943)* CFrame.Angles(3.1415927410126, 9.4663050731469e-009, 2.8448901176453)
1324
pole_10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1325
pole_10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1326
pole_10.BrickColor = BrickColor.new("Dark stone grey")
1327
pole_10.Friction = 0.3
1328
pole_10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1329
1330
 mesh_23 = Instance.new("CylinderMesh", pole_10)
1331
mesh_23.Scale = Vector3.new(1, 1, 0.5)
1332
1333
 model = Instance.new("Model", matteobasev1)
1334
1335
 part_32 = Instance.new("Part", model)
1336
part_32.FormFactor = Enum.FormFactor.Custom
1337
part_32.TopSurface = Enum.SurfaceType.Smooth
1338
part_32.Anchored = true
1339
part_32.Material = Enum.Material.Wood
1340
part_32.Size = Vector3.new(3.2, 0.2, 0.2)
1341
part_32.Locked = true
1342
part_32.CFrame = CFrame.new(-795.19, 388.391, -1165.779)* CFrame.Angles(0.17453294992447, 0, -0)
1343
part_32.BrickColor = BrickColor.new("Brown")
1344
part_32.Friction = 0.3
1345
part_32.BottomSurface = Enum.SurfaceType.Smooth
1346
1347
 part_33 = Instance.new("Part", model)
1348
part_33.FormFactor = Enum.FormFactor.Custom
1349
part_33.TopSurface = Enum.SurfaceType.Smooth
1350
part_33.Anchored = true
1351
part_33.Material = Enum.Material.Wood
1352
part_33.Size = Vector3.new(2.2, 0.2, 2)
1353
part_33.Locked = true
1354
part_33.CFrame = CFrame.new(-795.1, 385.1, -1167)
1355
part_33.BrickColor = BrickColor.new("Brown")
1356
part_33.Friction = 0.3
1357
part_33.BottomSurface = Enum.SurfaceType.Smooth
1358
1359
 part_34 = Instance.new("Part", model)
1360
part_34.FormFactor = Enum.FormFactor.Custom
1361
part_34.TopSurface = Enum.SurfaceType.Smooth
1362
part_34.Anchored = true
1363
part_34.Material = Enum.Material.Wood
1364
part_34.Size = Vector3.new(1.2, 3.2, 1)
1365
part_34.Locked = true
1366
part_34.CFrame = CFrame.new(-795.1, 386.9, -1166.9)
1367
part_34.BrickColor = BrickColor.new("Brown")
1368
part_34.Friction = 0.3
1369
part_34.BottomSurface = Enum.SurfaceType.Smooth
1370
1371
 part_35 = Instance.new("Part", model)
1372
part_35.FormFactor = Enum.FormFactor.Custom
1373
part_35.TopSurface = Enum.SurfaceType.Smooth
1374
part_35.Anchored = true
1375
part_35.Material = Enum.Material.Wood
1376
part_35.Size = Vector3.new(3.2, 0.2, 2)
1377
part_35.Locked = true
1378
part_35.CFrame = CFrame.new(-795.19, 388.45, -1166.7)* CFrame.Angles(0.17453293502331, 0, -0)
1379
part_35.BrickColor = BrickColor.new("Brown")
1380
part_35.Friction = 0.3
1381
part_35.BottomSurface = Enum.SurfaceType.Smooth
1382
1383
 model_2 = Instance.new("Model", matteobasev1)
1384
1385
 part_36 = Instance.new("Part", model_2)
1386
part_36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1387
part_36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1388
part_36.Anchored = true
1389
part_36.Size = Vector3.new(25, 1.2, 2)
1390
part_36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1391
part_36.Locked = true
1392
part_36.CFrame = CFrame.new(-860.5, 385.6, -1108)
1393
part_36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1394
part_36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1395
part_36.BrickColor = BrickColor.new("New Yeller")
1396
part_36.Friction = 0.3
1397
part_36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1398
1399
 fire = Instance.new("Fire", part_36)
1400
fire.Enabled = false
1401
fire.Heat = 25
1402
fire.Color = Color3.new(1, 0.580392, 0)
1403
fire.SecondaryColor = Color3.new(1, 0, 0)
1404
fire.Size = 30
1405
1406
 part_37 = Instance.new("Part", model_2)
1407
part_37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1408
part_37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1409
part_37.Anchored = true
1410
part_37.Size = Vector3.new(25, 1.2, 6)
1411
part_37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1412
part_37.Locked = true
1413
part_37.CFrame = CFrame.new(-860.5, 385.6, -1104)
1414
part_37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1415
part_37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1416
part_37.BrickColor = BrickColor.new("Black")
1417
part_37.Friction = 0.3
1418
part_37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1419
1420
 fire_2 = Instance.new("Fire", part_37)
1421
fire_2.Enabled = false
1422
fire_2.Heat = 25
1423
fire_2.Color = Color3.new(1, 0.580392, 0)
1424
fire_2.SecondaryColor = Color3.new(1, 0, 0)
1425
fire_2.Size = 30
1426
1427
 part_38 = Instance.new("Part", model_2)
1428
part_38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1429
part_38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1430
part_38.Anchored = true
1431
part_38.Size = Vector3.new(10, 1.2, 9)
1432
part_38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1433
part_38.Locked = true
1434
part_38.CFrame = CFrame.new(-853, 385.6, -1113.5)
1435
part_38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1436
part_38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1437
part_38.BrickColor = BrickColor.new("Black")
1438
part_38.Friction = 0.3
1439
part_38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1440
1441
 fire_3 = Instance.new("Fire", part_38)
1442
fire_3.Enabled = false
1443
fire_3.Heat = 25
1444
fire_3.Color = Color3.new(1, 0.580392, 0)
1445
fire_3.SecondaryColor = Color3.new(1, 0, 0)
1446
fire_3.Size = 30
1447
1448
 part_39 = Instance.new("Part", model_2)
1449
part_39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1450
part_39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1451
part_39.Anchored = true
1452
part_39.Size = Vector3.new(5, 1.2, 9)
1453
part_39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1454
part_39.Locked = true
1455
part_39.CFrame = CFrame.new(-860.5, 385.6, -1113.5)
1456
part_39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1457
part_39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1458
part_39.BrickColor = BrickColor.new("New Yeller")
1459
part_39.Friction = 0.3
1460
part_39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1461
1462
 fire_4 = Instance.new("Fire", part_39)
1463
fire_4.Enabled = false
1464
fire_4.Heat = 25
1465
fire_4.Color = Color3.new(1, 0.580392, 0)
1466
fire_4.SecondaryColor = Color3.new(1, 0, 0)
1467
fire_4.Size = 30
1468
1469
 part_40 = Instance.new("Part", model_2)
1470
part_40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1471
part_40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1472
part_40.Anchored = true
1473
part_40.Size = Vector3.new(10, 1.2, 9)
1474
part_40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1475
part_40.Locked = true
1476
part_40.CFrame = CFrame.new(-868, 385.6, -1113.5)
1477
part_40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1478
part_40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1479
part_40.BrickColor = BrickColor.new("Black")
1480
part_40.Friction = 0.3
1481
part_40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1482
1483
 part_41 = Instance.new("Part", model_2)
1484
part_41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1485
part_41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1486
part_41.Anchored = true
1487
part_41.Size = Vector3.new(25, 1.2, 6)
1488
part_41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1489
part_41.Locked = true
1490
part_41.CFrame = CFrame.new(-845, 385.6, -1113.5)* CFrame.Angles(-0, -1.5707963705063, 0)
1491
part_41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1492
part_41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1493
part_41.BrickColor = BrickColor.new("Black")
1494
part_41.Friction = 0.3
1495
part_41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1496
1497
 fire_5 = Instance.new("Fire", part_41)
1498
fire_5.Enabled = false
1499
fire_5.Heat = 25
1500
fire_5.Color = Color3.new(1, 0.580392, 0)
1501
fire_5.SecondaryColor = Color3.new(1, 0, 0)
1502
fire_5.Size = 30
1503
1504
 part_42 = Instance.new("Part", model_2)
1505
part_42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1506
part_42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1507
part_42.Anchored = true
1508
part_42.Size = Vector3.new(25, 1.2, 6)
1509
part_42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1510
part_42.Locked = true
1511
part_42.CFrame = CFrame.new(-876, 385.6, -1113.5)* CFrame.Angles(-0, -1.5707963705063, 0)
1512
part_42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1513
part_42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1514
part_42.BrickColor = BrickColor.new("Black")
1515
part_42.Friction = 0.3
1516
part_42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1517
1518
 part_43 = Instance.new("Part", model_2)
1519
part_43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1520
part_43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1521
part_43.Anchored = true
1522
part_43.Size = Vector3.new(25, 1.2, 2)
1523
part_43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1524
part_43.Locked = true
1525
part_43.CFrame = CFrame.new(-860.5, 385.6, -1119)
1526
part_43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1527
part_43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1528
part_43.BrickColor = BrickColor.new("New Yeller")
1529
part_43.Friction = 0.3
1530
part_43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1531
1532
 part_44 = Instance.new("Part", model_2)
1533
part_44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1534
part_44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1535
part_44.Anchored = true
1536
part_44.Size = Vector3.new(25, 1.2, 6)
1537
part_44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1538
part_44.Locked = true
1539
part_44.CFrame = CFrame.new(-860.5, 385.6, -1123)
1540
part_44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1541
part_44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1542
part_44.BrickColor = BrickColor.new("Black")
1543
part_44.Friction = 0.3
1544
part_44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1545
1546
 stones = Instance.new("Model", matteobasev1)
1547
stones.Name = "Stones"
1548
stones.PrimaryPart = handle
1549
1550
 handle = Instance.new("Part", stones)
1551
handle.FormFactor = Enum.FormFactor.Symmetric
1552
handle.CanCollide = false
1553
handle.TopSurface = Enum.SurfaceType.Smooth
1554
handle.Anchored = true
1555
handle.Size = Vector3.new(2, 1, 1)
1556
handle.Name = "Handle"
1557
handle.Locked = true
1558
handle.CFrame = CFrame.new(-788, 385.5, -1174.5)* CFrame.Angles(3.158444883411e-007, 3.3643914321146e-008, 3.141592502594)
1559
handle.Friction = 0.3
1560
handle.BottomSurface = Enum.SurfaceType.Smooth
1561
1562
 mesh_24 = Instance.new("SpecialMesh", handle)
1563
mesh_24.Scale = Vector3.new(4, 4, 4)
1564
mesh_24.MeshId = "http://www.roblox.com/asset/?id=1290033"
1565
mesh_24.TextureId = "http://www.roblox.com/asset/?id=1290030"
1566
mesh_24.MeshType = Enum.MeshType.FileMesh
1567
1568
 handle_2 = Instance.new("Part", stones)
1569
handle_2.FormFactor = Enum.FormFactor.Symmetric
1570
handle_2.CanCollide = false
1571
handle_2.TopSurface = Enum.SurfaceType.Smooth
1572
handle_2.Anchored = true
1573
handle_2.Size = Vector3.new(2, 1, 1)
1574
handle_2.Name = "Handle"
1575
handle_2.Locked = true
1576
handle_2.CFrame = CFrame.new(-783, 385.5, -1182.5)* CFrame.Angles(-0, 0, 3.1415927410126)
1577
handle_2.Friction = 0.3
1578
handle_2.BottomSurface = Enum.SurfaceType.Smooth
1579
1580
 mesh_25 = Instance.new("SpecialMesh", handle_2)
1581
mesh_25.Scale = Vector3.new(4, 4, 4)
1582
mesh_25.MeshId = "http://www.roblox.com/asset/?id=1290033"
1583
mesh_25.TextureId = "http://www.roblox.com/asset/?id=1290030"
1584
mesh_25.MeshType = Enum.MeshType.FileMesh
1585
1586
 handle_3 = Instance.new("Part", stones)
1587
handle_3.FormFactor = Enum.FormFactor.Symmetric
1588
handle_3.CanCollide = false
1589
handle_3.TopSurface = Enum.SurfaceType.Smooth
1590
handle_3.Anchored = true
1591
handle_3.Size = Vector3.new(2, 1, 1)
1592
handle_3.Name = "Handle"
1593
handle_3.Locked = true
1594
handle_3.CFrame = CFrame.new(-783, 386.5, -1182.5)* CFrame.Angles(-0, 0, 3.1415927410126)
1595
handle_3.Friction = 0.3
1596
handle_3.BottomSurface = Enum.SurfaceType.Smooth
1597
1598
 mesh_26 = Instance.new("SpecialMesh", handle_3)
1599
mesh_26.Scale = Vector3.new(4, 4, 4)
1600
mesh_26.MeshId = "http://www.roblox.com/asset/?id=1290033"
1601
mesh_26.TextureId = "http://www.roblox.com/asset/?id=1290030"
1602
mesh_26.MeshType = Enum.MeshType.FileMesh
1603
1604
 handle_4 = Instance.new("Part", stones)
1605
handle_4.FormFactor = Enum.FormFactor.Symmetric
1606
handle_4.CanCollide = false
1607
handle_4.TopSurface = Enum.SurfaceType.Smooth
1608
handle_4.Anchored = true
1609
handle_4.Size = Vector3.new(2, 1, 1)
1610
handle_4.Name = "Handle"
1611
handle_4.Locked = true
1612
handle_4.CFrame = CFrame.new(-755, 385.5, -1177.5)* CFrame.Angles(-0, 0, 3.1415927410126)
1613
handle_4.Friction = 0.3
1614
handle_4.BottomSurface = Enum.SurfaceType.Smooth
1615
1616
 mesh_27 = Instance.new("SpecialMesh", handle_4)
1617
mesh_27.Scale = Vector3.new(4, 4, 4)
1618
mesh_27.MeshId = "http://www.roblox.com/asset/?id=1290033"
1619
mesh_27.TextureId = "http://www.roblox.com/asset/?id=1290030"
1620
mesh_27.MeshType = Enum.MeshType.FileMesh
1621
1622
 handle_5 = Instance.new("Part", stones)
1623
handle_5.FormFactor = Enum.FormFactor.Symmetric
1624
handle_5.CanCollide = false
1625
handle_5.TopSurface = Enum.SurfaceType.Smooth
1626
handle_5.Anchored = true
1627
handle_5.Size = Vector3.new(2, 1, 1)
1628
handle_5.Name = "Handle"
1629
handle_5.Locked = true
1630
handle_5.CFrame = CFrame.new(-788, 385.5, -1180.5)* CFrame.Angles(-0, 0, 3.1415927410126)
1631
handle_5.Friction = 0.3
1632
handle_5.BottomSurface = Enum.SurfaceType.Smooth
1633
1634
 mesh_28 = Instance.new("SpecialMesh", handle_5)
1635
mesh_28.Scale = Vector3.new(4, 4, 4)
1636
mesh_28.MeshId = "http://www.roblox.com/asset/?id=1290033"
1637
mesh_28.TextureId = "http://www.roblox.com/asset/?id=1290030"
1638
mesh_28.MeshType = Enum.MeshType.FileMesh
1639
1640
 handle_6 = Instance.new("Part", stones)
1641
handle_6.FormFactor = Enum.FormFactor.Symmetric
1642
handle_6.CanCollide = false
1643
handle_6.TopSurface = Enum.SurfaceType.Smooth
1644
handle_6.Anchored = true
1645
handle_6.Size = Vector3.new(2, 1, 1)
1646
handle_6.Name = "Handle"
1647
handle_6.Locked = true
1648
handle_6.CFrame = CFrame.new(-783, 385.5, -1175.5)* CFrame.Angles(-0, 0, 3.1415927410126)
1649
handle_6.Friction = 0.3
1650
handle_6.BottomSurface = Enum.SurfaceType.Smooth
1651
1652
 mesh_29 = Instance.new("SpecialMesh", handle_6)
1653
mesh_29.Scale = Vector3.new(4, 4, 4)
1654
mesh_29.MeshId = "http://www.roblox.com/asset/?id=1290033"
1655
mesh_29.TextureId = "http://www.roblox.com/asset/?id=1290030"
1656
mesh_29.MeshType = Enum.MeshType.FileMesh
1657
1658
 handle_7 = Instance.new("Part", stones)
1659
handle_7.FormFactor = Enum.FormFactor.Symmetric
1660
handle_7.CanCollide = false
1661
handle_7.TopSurface = Enum.SurfaceType.Smooth
1662
handle_7.Anchored = true
1663
handle_7.Size = Vector3.new(2, 1, 1)
1664
handle_7.Name = "Handle"
1665
handle_7.Locked = true
1666
handle_7.CFrame = CFrame.new(-777, 385.5, -1182.5)* CFrame.Angles(-0, 0, 3.1415927410126)
1667
handle_7.Friction = 0.3
1668
handle_7.BottomSurface = Enum.SurfaceType.Smooth
1669
1670
 mesh_30 = Instance.new("SpecialMesh", handle_7)
1671
mesh_30.Scale = Vector3.new(4, 4, 4)
1672
mesh_30.MeshId = "http://www.roblox.com/asset/?id=1290033"
1673
mesh_30.TextureId = "http://www.roblox.com/asset/?id=1290030"
1674
mesh_30.MeshType = Enum.MeshType.FileMesh
1675
1676
 handle_8 = Instance.new("Part", stones)
1677
handle_8.FormFactor = Enum.FormFactor.Symmetric
1678
handle_8.CanCollide = false
1679
handle_8.TopSurface = Enum.SurfaceType.Smooth
1680
handle_8.Anchored = true
1681
handle_8.Size = Vector3.new(2, 1, 1)
1682
handle_8.Name = "Handle"
1683
handle_8.Locked = true
1684
handle_8.CFrame = CFrame.new(-780, 385.5, -1189.5)* CFrame.Angles(-0, 0, 3.1415927410126)
1685
handle_8.Friction = 0.3
1686
handle_8.BottomSurface = Enum.SurfaceType.Smooth
1687
1688
 mesh_31 = Instance.new("SpecialMesh", handle_8)
1689
mesh_31.Scale = Vector3.new(4, 4, 4)
1690
mesh_31.MeshId = "http://www.roblox.com/asset/?id=1290033"
1691
mesh_31.TextureId = "http://www.roblox.com/asset/?id=1290030"
1692
mesh_31.MeshType = Enum.MeshType.FileMesh
1693
1694
 handle_9 = Instance.new("Part", stones)
1695
handle_9.FormFactor = Enum.FormFactor.Symmetric
1696
handle_9.CanCollide = false
1697
handle_9.TopSurface = Enum.SurfaceType.Smooth
1698
handle_9.Anchored = true
1699
handle_9.Size = Vector3.new(2, 1, 1)
1700
handle_9.Name = "Handle"
1701
handle_9.Locked = true
1702
handle_9.CFrame = CFrame.new(-790, 385.5, -1190.5)* CFrame.Angles(-0, 0, 3.1415927410126)
1703
handle_9.Friction = 0.3
1704
handle_9.BottomSurface = Enum.SurfaceType.Smooth
1705
1706
 mesh_32 = Instance.new("SpecialMesh", handle_9)
1707
mesh_32.Scale = Vector3.new(4, 4, 4)
1708
mesh_32.MeshId = "http://www.roblox.com/asset/?id=1290033"
1709
mesh_32.TextureId = "http://www.roblox.com/asset/?id=1290030"
1710
mesh_32.MeshType = Enum.MeshType.FileMesh
1711
1712
 handle_10 = Instance.new("Part", stones)
1713
handle_10.FormFactor = Enum.FormFactor.Symmetric
1714
handle_10.CanCollide = false
1715
handle_10.TopSurface = Enum.SurfaceType.Smooth
1716
handle_10.Anchored = true
1717
handle_10.Size = Vector3.new(2, 1, 1)
1718
handle_10.Name = "Handle"
1719
handle_10.Locked = true
1720
handle_10.CFrame = CFrame.new(-795, 385.5, -1186.5)* CFrame.Angles(-0, 0, 3.1415927410126)
1721
handle_10.Friction = 0.3
1722
handle_10.BottomSurface = Enum.SurfaceType.Smooth
1723
1724
 mesh_33 = Instance.new("SpecialMesh", handle_10)
1725
mesh_33.Scale = Vector3.new(4, 4, 4)
1726
mesh_33.MeshId = "http://www.roblox.com/asset/?id=1290033"
1727
mesh_33.TextureId = "http://www.roblox.com/asset/?id=1290030"
1728
mesh_33.MeshType = Enum.MeshType.FileMesh
1729
1730
 handle_11 = Instance.new("Part", stones)
1731
handle_11.FormFactor = Enum.FormFactor.Symmetric
1732
handle_11.CanCollide = false
1733
handle_11.TopSurface = Enum.SurfaceType.Smooth
1734
handle_11.Anchored = true
1735
handle_11.Size = Vector3.new(2, 1, 1)
1736
handle_11.Name = "Handle"
1737
handle_11.Locked = true
1738
handle_11.CFrame = CFrame.new(-785, 385.5, -1193.5)* CFrame.Angles(-0, 0, 3.1415927410126)
1739
handle_11.Friction = 0.3
1740
handle_11.BottomSurface = Enum.SurfaceType.Smooth
1741
1742
 mesh_34 = Instance.new("SpecialMesh", handle_11)
1743
mesh_34.Scale = Vector3.new(4, 4, 4)
1744
mesh_34.MeshId = "http://www.roblox.com/asset/?id=1290033"
1745
mesh_34.TextureId = "http://www.roblox.com/asset/?id=1290030"
1746
mesh_34.MeshType = Enum.MeshType.FileMesh
1747
1748
 tree = Instance.new("Model", matteobasev1)
1749
tree.Name = "tree"
1750
1751
 handle_12 = Instance.new("Part", tree)
1752
handle_12.TopSurface = Enum.SurfaceType.Smooth
1753
handle_12.Anchored = true
1754
handle_12.Size = Vector3.new(17, 31.2, 19)
1755
handle_12.Name = "Handle"
1756
handle_12.Locked = true
1757
handle_12.CFrame = CFrame.new(-679.5, 400.6, -1130.5)* CFrame.Angles(3.1415927410126, -0, -3.1415927410126)
1758
handle_12.BrickColor = BrickColor.new("Reddish brown")
1759
handle_12.Friction = 0.3
1760
handle_12.BottomSurface = Enum.SurfaceType.Smooth
1761
1762
 mesh_35 = Instance.new("SpecialMesh", handle_12)
1763
mesh_35.Scale = Vector3.new(30, 30, 30)
1764
mesh_35.MeshId = "http://www.roblox.com/asset/?id=1090398"
1765
mesh_35.TextureId = "http://www.roblox.com/asset/?id=2325125"
1766
mesh_35.MeshType = Enum.MeshType.FileMesh
1767
1768
 tree_2 = Instance.new("Part", tree)
1769
tree_2.LeftSurface = Enum.SurfaceType.Glue
1770
tree_2.TopSurface = Enum.SurfaceType.Glue
1771
tree_2.Anchored = true
1772
tree_2.Size = Vector3.new(49, 1.2, 15)
1773
tree_2.Name = "Tree"
1774
tree_2.FrontSurface = Enum.SurfaceType.Glue
1775
tree_2.Locked = true
1776
tree_2.CFrame = CFrame.new(-686.5, 416.8, -1133.5)* CFrame.Angles(3.1415927410126, -0, -3.1415927410126)
1777
tree_2.RightSurface = Enum.SurfaceType.Glue
1778
tree_2.BackSurface = Enum.SurfaceType.Glue
1779
tree_2.BrickColor = BrickColor.new("Institutional white")
1780
tree_2.Friction = 0.3
1781
tree_2.BottomSurface = Enum.SurfaceType.Glue
1782
1783
 mesh_36 = Instance.new("SpecialMesh", tree_2)
1784
mesh_36.Scale = Vector3.new(28, 17, 28)
1785
mesh_36.MeshId = "http://www.roblox.com/asset/?id=1290033"
1786
mesh_36.TextureId = "http://www.roblox.com/asset/?id=2861779"
1787
mesh_36.VertexColor = Vector3.new(1, 1, -1)
1788
mesh_36.MeshType = Enum.MeshType.FileMesh
1789
1790
 tree_3 = Instance.new("Model", matteobasev1)
1791
tree_3.Name = "tree"
1792
1793
 handle_13 = Instance.new("Part", tree_3)
1794
handle_13.TopSurface = Enum.SurfaceType.Smooth
1795
handle_13.Anchored = true
1796
handle_13.Size = Vector3.new(17, 31.2, 19)
1797
handle_13.Name = "Handle"
1798
handle_13.Locked = true
1799
handle_13.CFrame = CFrame.new(-801, 400.6, -968)* CFrame.Angles(0, 1.5707963705063, 0)
1800
handle_13.BrickColor = BrickColor.new("Reddish brown")
1801
handle_13.Friction = 0.3
1802
handle_13.BottomSurface = Enum.SurfaceType.Smooth
1803
1804
 mesh_37 = Instance.new("SpecialMesh", handle_13)
1805
mesh_37.Scale = Vector3.new(30, 30, 30)
1806
mesh_37.MeshId = "http://www.roblox.com/asset/?id=1090398"
1807
mesh_37.TextureId = "http://www.roblox.com/asset/?id=2325125"
1808
mesh_37.MeshType = Enum.MeshType.FileMesh
1809
1810
 tree_4 = Instance.new("Part", tree_3)
1811
tree_4.LeftSurface = Enum.SurfaceType.Glue
1812
tree_4.TopSurface = Enum.SurfaceType.Glue
1813
tree_4.Anchored = true
1814
tree_4.Size = Vector3.new(49, 1.2, 15)
1815
tree_4.Name = "Tree"
1816
tree_4.FrontSurface = Enum.SurfaceType.Glue
1817
tree_4.Locked = true
1818
tree_4.CFrame = CFrame.new(-798, 416.8, -975)* CFrame.Angles(0, 1.5707963705063, 0)
1819
tree_4.RightSurface = Enum.SurfaceType.Glue
1820
tree_4.BackSurface = Enum.SurfaceType.Glue
1821
tree_4.BrickColor = BrickColor.new("Institutional white")
1822
tree_4.Friction = 0.3
1823
tree_4.BottomSurface = Enum.SurfaceType.Glue
1824
1825
 mesh_38 = Instance.new("SpecialMesh", tree_4)
1826
mesh_38.Scale = Vector3.new(28, 17, 28)
1827
mesh_38.MeshId = "http://www.roblox.com/asset/?id=1290033"
1828
mesh_38.TextureId = "http://www.roblox.com/asset/?id=2861779"
1829
mesh_38.VertexColor = Vector3.new(1, 1, -1)
1830
mesh_38.MeshType = Enum.MeshType.FileMesh
1831
1832
 tree_5 = Instance.new("Model", matteobasev1)
1833
tree_5.Name = "tree"
1834
1835
 handle_14 = Instance.new("Part", tree_5)
1836
handle_14.TopSurface = Enum.SurfaceType.Smooth
1837
handle_14.Anchored = true
1838
handle_14.Size = Vector3.new(17, 31.2, 19)
1839
handle_14.Name = "Handle"
1840
handle_14.Locked = true
1841
handle_14.CFrame = CFrame.new(-873, 400.6, -1183)* CFrame.Angles(-0, -1.5707963705063, 0)
1842
handle_14.BrickColor = BrickColor.new("Reddish brown")
1843
handle_14.Friction = 0.3
1844
handle_14.BottomSurface = Enum.SurfaceType.Smooth
1845
1846
 mesh_39 = Instance.new("SpecialMesh", handle_14)
1847
mesh_39.Scale = Vector3.new(30, 30, 30)
1848
mesh_39.MeshId = "http://www.roblox.com/asset/?id=1090398"
1849
mesh_39.TextureId = "http://www.roblox.com/asset/?id=2325125"
1850
mesh_39.MeshType = Enum.MeshType.FileMesh
1851
1852
 tree_6 = Instance.new("Part", tree_5)
1853
tree_6.LeftSurface = Enum.SurfaceType.Glue
1854
tree_6.TopSurface = Enum.SurfaceType.Glue
1855
tree_6.Anchored = true
1856
tree_6.Size = Vector3.new(49, 1.2, 15)
1857
tree_6.Name = "Tree"
1858
tree_6.FrontSurface = Enum.SurfaceType.Glue
1859
tree_6.Locked = true
1860
tree_6.CFrame = CFrame.new(-876, 416.8, -1176)* CFrame.Angles(-0, -1.5707963705063, 0)
1861
tree_6.RightSurface = Enum.SurfaceType.Glue
1862
tree_6.BackSurface = Enum.SurfaceType.Glue
1863
tree_6.BrickColor = BrickColor.new("Institutional white")
1864
tree_6.Friction = 0.3
1865
tree_6.BottomSurface = Enum.SurfaceType.Glue
1866
1867
 mesh_40 = Instance.new("SpecialMesh", tree_6)
1868
mesh_40.Scale = Vector3.new(28, 17, 28)
1869
mesh_40.MeshId = "http://www.roblox.com/asset/?id=1290033"
1870
mesh_40.TextureId = "http://www.roblox.com/asset/?id=2861779"
1871
mesh_40.VertexColor = Vector3.new(1, 1, -1)
1872
mesh_40.MeshType = Enum.MeshType.FileMesh
1873
1874
 part_45 = Instance.new("Part", matteobasev1)
1875
part_45.FormFactor = Enum.FormFactor.Symmetric
1876
part_45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1877
part_45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1878
part_45.Anchored = true
1879
part_45.Size = Vector3.new(26.6, 1, 25.2)
1880
part_45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1881
part_45.Locked = true
1882
part_45.CFrame = CFrame.new(-861.872, 412.764, -1080.004)* CFrame.Angles(-0.76070982217789, 2.3078196420556e-007, -2.4401390419371e-007)
1883
part_45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1884
part_45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1885
part_45.BrickColor = BrickColor.new("Dirt brown")
1886
part_45.Friction = 0.3
1887
part_45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1888
1889
 part_46 = Instance.new("Part", matteobasev1)
1890
part_46.FormFactor = Enum.FormFactor.Symmetric
1891
part_46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1892
part_46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1893
part_46.Anchored = true
1894
part_46.Size = Vector3.new(1, 9.6, 10.8)
1895
part_46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1896
part_46.Locked = true
1897
part_46.CFrame = CFrame.new(-849.473, 399.8, -1070.857)* CFrame.Angles(1.5497051890634e-006, -1.2935967401428e-012, -2.8424267384253e-007)
1898
part_46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1899
part_46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1900
part_46.BrickColor = BrickColor.new("Mid gray")
1901
part_46.Friction = 0.3
1902
part_46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1903
1904
 part_47 = Instance.new("Part", matteobasev1)
1905
part_47.FormFactor = Enum.FormFactor.Symmetric
1906
part_47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1907
part_47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1908
part_47.Anchored = true
1909
part_47.Size = Vector3.new(26.6, 1, 23.8)
1910
part_47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1911
part_47.Locked = true
1912
part_47.CFrame = CFrame.new(-861.872, 412.535, -1062.223)* CFrame.Angles(-2.3808801174164, 2.8059790224688e-007, -3.141592502594)
1913
part_47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1914
part_47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1915
part_47.BrickColor = BrickColor.new("Dirt brown")
1916
part_47.Friction = 0.3
1917
part_47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1918
1919
 part_48 = Instance.new("Part", matteobasev1)
1920
part_48.FormFactor = Enum.FormFactor.Symmetric
1921
part_48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1922
part_48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1923
part_48.Anchored = true
1924
part_48.Size = Vector3.new(1, 18.6, 10.6)
1925
part_48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1926
part_48.Locked = true
1927
part_48.CFrame = CFrame.new(-849.473, 395.3, -1081.557)* CFrame.Angles(1.5497051890634e-006, -1.2935967401428e-012, -3.3319867043247e-007)
1928
part_48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1929
part_48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1930
part_48.BrickColor = BrickColor.new("Mid gray")
1931
part_48.Friction = 0.3
1932
part_48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1933
1934
 part_49 = Instance.new("Part", matteobasev1)
1935
part_49.FormFactor = Enum.FormFactor.Symmetric
1936
part_49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1937
part_49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1938
part_49.Anchored = true
1939
part_49.Size = Vector3.new(25, 18.6, 1)
1940
part_49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1941
part_49.Locked = true
1942
part_49.CFrame = CFrame.new(-861.473, 395.3, -1087.357)* CFrame.Angles(1.5497051890634e-006, -1.2935967401428e-012, -3.3319867043247e-007)
1943
part_49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1944
part_49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1945
part_49.BrickColor = BrickColor.new("Mid gray")
1946
part_49.Friction = 0.3
1947
part_49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1948
1949
 part_50 = Instance.new("Part", matteobasev1)
1950
part_50.FormFactor = Enum.FormFactor.Symmetric
1951
part_50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1952
part_50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1953
part_50.Anchored = true
1954
part_50.Size = Vector3.new(1, 18.6, 33.2)
1955
part_50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1956
part_50.Locked = true
1957
part_50.CFrame = CFrame.new(-874.472, 395.3, -1071.257)* CFrame.Angles(1.5497051890634e-006, -1.2935967401428e-012, -3.3319867043247e-007)
1958
part_50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1959
part_50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1960
part_50.BrickColor = BrickColor.new("Mid gray")
1961
part_50.Friction = 0.3
1962
part_50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1963
1964
 part_51 = Instance.new("Part", matteobasev1)
1965
part_51.FormFactor = Enum.FormFactor.Symmetric
1966
part_51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1967
part_51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1968
part_51.Anchored = true
1969
part_51.Size = Vector3.new(1, 18.6, 10.8)
1970
part_51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1971
part_51.Locked = true
1972
part_51.CFrame = CFrame.new(-849.473, 395.3, -1060.057)* CFrame.Angles(1.5497051890634e-006, -1.2935967401428e-012, -3.3319867043247e-007)
1973
part_51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1974
part_51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1975
part_51.BrickColor = BrickColor.new("Mid gray")
1976
part_51.Friction = 0.3
1977
part_51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1978
1979
 part_52 = Instance.new("Part", matteobasev1)
1980
part_52.FormFactor = Enum.FormFactor.Symmetric
1981
part_52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1982
part_52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1983
part_52.Anchored = true
1984
part_52.Size = Vector3.new(24, 18.6, 1)
1985
part_52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1986
part_52.Locked = true
1987
part_52.CFrame = CFrame.new(-861.972, 395.3, -1055.157)* CFrame.Angles(1.5497051890634e-006, -1.2935967401428e-012, -3.3319867043247e-007)
1988
part_52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1989
part_52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1990
part_52.BrickColor = BrickColor.new("Mid gray")
1991
part_52.Friction = 0.3
1992
part_52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1993
1994
 part_53 = Instance.new("Part", matteobasev1)
1995
part_53.FormFactor = Enum.FormFactor.Symmetric
1996
part_53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1997
part_53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1998
part_53.Anchored = true
1999
part_53.Material = Enum.Material.Fabric
2000
part_53.Size = Vector3.new(26, 1, 33.2)
2001
part_53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2002
part_53.Locked = true
2003
part_53.CFrame = CFrame.new(-861.972, 385.5, -1071.257)* CFrame.Angles(1.5497051890634e-006, -1.2935967401428e-012, -3.3319867043247e-007)
2004
part_53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2005
part_53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2006
part_53.BrickColor = BrickColor.new("Cork")
2007
part_53.Friction = 0.3
2008
part_53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2009
2010
 pointlight = Instance.new("PointLight", part_53)
2011
pointlight.Range = 30
2012
2013
 part_54 = Instance.new("Part", matteobasev1)
2014
part_54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2015
part_54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2016
part_54.Anchored = true
2017
part_54.Size = Vector3.new(78, 6, 2)
2018
part_54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2019
part_54.Locked = true
2020
part_54.CFrame = CFrame.new(-744, 388, -996)* CFrame.Angles(-0, -1.5707963705063, 0)
2021
part_54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2022
part_54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2023
part_54.Friction = 0.3
2024
part_54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2025
2026
 part_55 = Instance.new("Part", matteobasev1)
2027
part_55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2028
part_55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2029
part_55.Anchored = true
2030
part_55.Size = Vector3.new(78, 6, 2)
2031
part_55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2032
part_55.Locked = true
2033
part_55.CFrame = CFrame.new(-691, 388, -996)* CFrame.Angles(0, -1.5707963705063, 0)
2034
part_55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2035
part_55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2036
part_55.Friction = 0.3
2037
part_55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2038
2039
 part_56 = Instance.new("Part", matteobasev1)
2040
part_56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2041
part_56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2042
part_56.Anchored = true
2043
part_56.Size = Vector3.new(51, 1.2, 78)
2044
part_56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2045
part_56.Locked = true
2046
part_56.CFrame = CFrame.new(-717.5, 385.6, -996)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
2047
part_56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2048
part_56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2049
part_56.Friction = 0.3
2050
part_56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2051
2052
 part_57 = Instance.new("Part", matteobasev1)
2053
part_57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2054
part_57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2055
part_57.Anchored = true
2056
part_57.Size = Vector3.new(55, 6, 2)
2057
part_57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2058
part_57.Locked = true
2059
part_57.CFrame = CFrame.new(-717.5, 388, -956)
2060
part_57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2061
part_57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2062
part_57.Friction = 0.3
2063
part_57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2064
2065
 part_58 = Instance.new("Part", matteobasev1)
2066
part_58.FormFactor = Enum.FormFactor.Custom
2067
part_58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2068
part_58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2069
part_58.Anchored = true
2070
part_58.Size = Vector3.new(5, 2.039, 1)
2071
part_58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2072
part_58.Locked = true
2073
part_58.CFrame = CFrame.new(-849.5, 394.532, -1070.5)* CFrame.Angles(3.1415927410126, 1.5707963705063, 0)
2074
part_58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2075
part_58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2076
part_58.Friction = 0.3
2077
part_58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2078
2079
 mesh_41 = Instance.new("BlockMesh", part_58)
2080
mesh_41.Scale = Vector3.new(1, 1, 1.1)
2081
2082
 part_59 = Instance.new("Part", matteobasev1)
2083
part_59.FormFactor = Enum.FormFactor.Custom
2084
part_59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2085
part_59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2086
part_59.Anchored = true
2087
part_59.Size = Vector3.new(3.2, 9.539, 1)
2088
part_59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2089
part_59.Locked = true
2090
part_59.CFrame = CFrame.new(-849.5, 390.769, -1074.6)* CFrame.Angles(3.1415927410126, 1.5707963705063, 0)
2091
part_59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2092
part_59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2093
part_59.Friction = 0.3
2094
part_59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2095
2096
 mesh_42 = Instance.new("BlockMesh", part_59)
2097
mesh_42.Scale = Vector3.new(1, 1, 1.1)
2098
2099
 part_60 = Instance.new("Part", matteobasev1)
2100
part_60.FormFactor = Enum.FormFactor.Custom
2101
part_60.CanCollide = false
2102
part_60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2103
part_60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2104
part_60.Reflectance = 0.2
2105
part_60.Anchored = true
2106
part_60.Material = Enum.Material.Grass
2107
part_60.Size = Vector3.new(5, 7.639, 1)
2108
part_60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2109
part_60.Locked = true
2110
part_60.CFrame = CFrame.new(-849.5, 389.819, -1070.5)* CFrame.Angles(3.1415927410126, 1.5707963705063, 0)
2111
part_60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2112
part_60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2113
part_60.Friction = 0.3
2114
part_60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2115
2116
 mesh_43 = Instance.new("BlockMesh", part_60)
2117
mesh_43.Scale = Vector3.new(1, 1, 0.85)
2118
2119
 decal_4 = Instance.new("Decal", part_60)
2120
decal_4.Face = Enum.NormalId.Back
2121
decal_4.Texture = "http://www.roblox.com/asset/?id=95711052"
2122
2123
 decal_5 = Instance.new("Decal", part_60)
2124
decal_5.Texture = "http://www.roblox.com/asset/?id=95711052"
2125
2126
 part_61 = Instance.new("Part", matteobasev1)
2127
part_61.FormFactor = Enum.FormFactor.Custom
2128
part_61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2129
part_61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2130
part_61.Anchored = true
2131
part_61.Size = Vector3.new(3, 9.539, 1)
2132
part_61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2133
part_61.Locked = true
2134
part_61.CFrame = CFrame.new(-849.5, 390.769, -1066.5)* CFrame.Angles(3.1415927410126, 1.5707963705063, 0)
2135
part_61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2136
part_61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2137
part_61.Friction = 0.3
2138
part_61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2139
2140
 mesh_44 = Instance.new("BlockMesh", part_61)
2141
mesh_44.Scale = Vector3.new(1, 1, 1.1)
2142
2143
 part_62 = Instance.new("Part", matteobasev1)
2144
part_62.FormFactor = Enum.FormFactor.Custom
2145
part_62.CanCollide = false
2146
part_62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2147
part_62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2148
part_62.Reflectance = 0.2
2149
part_62.Anchored = true
2150
part_62.Material = Enum.Material.Grass
2151
part_62.Size = Vector3.new(5, 7.639, 1)
2152
part_62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2153
part_62.Locked = true
2154
part_62.CFrame = CFrame.new(-672.245, 389.819, -1075.234)* CFrame.Angles(1.5707938671112, -1.5672081708908, -1.5708056688309)
2155
part_62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2156
part_62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2157
part_62.Friction = 0.3
2158
part_62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2159
2160
 mesh_45 = Instance.new("BlockMesh", part_62)
2161
mesh_45.Scale = Vector3.new(1, 1, 0.85)
2162
2163
 decal_6 = Instance.new("Decal", part_62)
2164
decal_6.Face = Enum.NormalId.Back
2165
decal_6.Texture = "http://www.roblox.com/asset/?id=95711052"
2166
2167
 decal_7 = Instance.new("Decal", part_62)
2168
decal_7.Texture = "http://www.roblox.com/asset/?id=95711052"
2169
2170
 part_63 = Instance.new("Part", matteobasev1)
2171
part_63.FormFactor = Enum.FormFactor.Custom
2172
part_63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2173
part_63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2174
part_63.Anchored = true
2175
part_63.Size = Vector3.new(3.2, 9.539, 1)
2176
part_63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2177
part_63.Locked = true
2178
part_63.CFrame = CFrame.new(-672.245, 390.769, -1071.134)* CFrame.Angles(1.5707938671112, -1.5672081708908, -1.5708056688309)
2179
part_63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2180
part_63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2181
part_63.Friction = 0.3
2182
part_63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2183
2184
 mesh_46 = Instance.new("BlockMesh", part_63)
2185
mesh_46.Scale = Vector3.new(1, 1, 1.1)
2186
2187
 part_64 = Instance.new("Part", matteobasev1)
2188
part_64.FormFactor = Enum.FormFactor.Symmetric
2189
part_64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2190
part_64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2191
part_64.Anchored = true
2192
part_64.Size = Vector3.new(1, 9.6, 10.8)
2193
part_64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2194
part_64.Locked = true
2195
part_64.CFrame = CFrame.new(-672.272, 399.799, -1074.877)* CFrame.Angles(-3.1415872573853, -1.0882497160358e-011, 3.1415908336639)
2196
part_64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2197
part_64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2198
part_64.BrickColor = BrickColor.new("Mid gray")
2199
part_64.Friction = 0.3
2200
part_64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2201
2202
 part_65 = Instance.new("Part", matteobasev1)
2203
part_65.FormFactor = Enum.FormFactor.Symmetric
2204
part_65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2205
part_65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2206
part_65.Anchored = true
2207
part_65.Size = Vector3.new(26.6, 1, 23.8)
2208
part_65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2209
part_65.Locked = true
2210
part_65.CFrame = CFrame.new(-659.872, 412.535, -1083.511)* CFrame.Angles(-0.76071125268936, -1.3557090596805e-006, 1.3653979067385e-006)
2211
part_65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2212
part_65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2213
part_65.BrickColor = BrickColor.new("Dirt brown")
2214
part_65.Friction = 0.3
2215
part_65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2216
2217
 part_66 = Instance.new("Part", matteobasev1)
2218
part_66.FormFactor = Enum.FormFactor.Custom
2219
part_66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2220
part_66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2221
part_66.Anchored = true
2222
part_66.Size = Vector3.new(3, 9.539, 1)
2223
part_66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2224
part_66.Locked = true
2225
part_66.CFrame = CFrame.new(-672.245, 390.769, -1079.234)* CFrame.Angles(1.5707938671112, -1.5672081708908, -1.5708056688309)
2226
part_66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2227
part_66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2228
part_66.Friction = 0.3
2229
part_66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2230
2231
 mesh_47 = Instance.new("BlockMesh", part_66)
2232
mesh_47.Scale = Vector3.new(1, 1, 1.1)
2233
2234
 part_67 = Instance.new("Part", matteobasev1)
2235
part_67.FormFactor = Enum.FormFactor.Symmetric
2236
part_67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2237
part_67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2238
part_67.Anchored = true
2239
part_67.Size = Vector3.new(1, 18.6, 10.8)
2240
part_67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2241
part_67.Locked = true
2242
part_67.CFrame = CFrame.new(-672.272, 395.3, -1085.677)* CFrame.Angles(-3.1415872573853, -1.0882726143857e-011, 3.1415908336639)
2243
part_67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2244
part_67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2245
part_67.BrickColor = BrickColor.new("Mid gray")
2246
part_67.Friction = 0.3
2247
part_67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2248
2249
 part_68 = Instance.new("Part", matteobasev1)
2250
part_68.FormFactor = Enum.FormFactor.Symmetric
2251
part_68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2252
part_68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2253
part_68.Anchored = true
2254
part_68.Size = Vector3.new(1, 18.6, 10.6)
2255
part_68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2256
part_68.Locked = true
2257
part_68.CFrame = CFrame.new(-672.272, 395.3, -1064.177)* CFrame.Angles(-3.1415872573853, -1.0882726143857e-011, 3.1415908336639)
2258
part_68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2259
part_68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2260
part_68.BrickColor = BrickColor.new("Mid gray")
2261
part_68.Friction = 0.3
2262
part_68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2263
2264
 part_69 = Instance.new("Part", matteobasev1)
2265
part_69.FormFactor = Enum.FormFactor.Symmetric
2266
part_69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2267
part_69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2268
part_69.Anchored = true
2269
part_69.Material = Enum.Material.Fabric
2270
part_69.Size = Vector3.new(26, 1, 33.2)
2271
part_69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2272
part_69.Locked = true
2273
part_69.CFrame = CFrame.new(-659.772, 385.5, -1074.477)* CFrame.Angles(-3.1415872573853, -1.0882726143857e-011, 3.1415908336639)
2274
part_69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2275
part_69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2276
part_69.BrickColor = BrickColor.new("Cork")
2277
part_69.Friction = 0.3
2278
part_69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2279
2280
 pointlight_2 = Instance.new("PointLight", part_69)
2281
pointlight_2.Range = 30
2282
2283
 part_70 = Instance.new("Part", matteobasev1)
2284
part_70.FormFactor = Enum.FormFactor.Custom
2285
part_70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2286
part_70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2287
part_70.Anchored = true
2288
part_70.Size = Vector3.new(5, 2.039, 1)
2289
part_70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2290
part_70.Locked = true
2291
part_70.CFrame = CFrame.new(-672.245, 394.532, -1075.234)* CFrame.Angles(1.5707938671112, -1.5672081708908, -1.5708056688309)
2292
part_70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2293
part_70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2294
part_70.Friction = 0.3
2295
part_70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2296
2297
 mesh_48 = Instance.new("BlockMesh", part_70)
2298
mesh_48.Scale = Vector3.new(1, 1, 1.1)
2299
2300
 part_71 = Instance.new("Part", matteobasev1)
2301
part_71.FormFactor = Enum.FormFactor.Symmetric
2302
part_71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2303
part_71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2304
part_71.Anchored = true
2305
part_71.Size = Vector3.new(24, 18.6, 1)
2306
part_71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2307
part_71.Locked = true
2308
part_71.CFrame = CFrame.new(-659.772, 395.3, -1090.577)* CFrame.Angles(-3.1415872573853, -1.0882726143857e-011, 3.1415908336639)
2309
part_71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2310
part_71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2311
part_71.BrickColor = BrickColor.new("Mid gray")
2312
part_71.Friction = 0.3
2313
part_71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2314
2315
 part_72 = Instance.new("Part", matteobasev1)
2316
part_72.FormFactor = Enum.FormFactor.Symmetric
2317
part_72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2318
part_72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2319
part_72.Anchored = true
2320
part_72.Size = Vector3.new(26.6, 1, 25.2)
2321
part_72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2322
part_72.Locked = true
2323
part_72.CFrame = CFrame.new(-659.872, 412.764, -1065.73)* CFrame.Angles(-2.3808703422546, -1.3059109278402e-006, 3.1415913105011)
2324
part_72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2325
part_72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2326
part_72.BrickColor = BrickColor.new("Dirt brown")
2327
part_72.Friction = 0.3
2328
part_72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2329
2330
 part_73 = Instance.new("Part", matteobasev1)
2331
part_73.FormFactor = Enum.FormFactor.Symmetric
2332
part_73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2333
part_73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2334
part_73.Anchored = true
2335
part_73.Size = Vector3.new(1, 18.6, 33.2)
2336
part_73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2337
part_73.Locked = true
2338
part_73.CFrame = CFrame.new(-647.272, 395.3, -1074.477)* CFrame.Angles(-3.1415872573853, -1.0882726143857e-011, 3.1415908336639)
2339
part_73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2340
part_73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2341
part_73.BrickColor = BrickColor.new("Mid gray")
2342
part_73.Friction = 0.3
2343
part_73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2344
2345
 part_74 = Instance.new("Part", matteobasev1)
2346
part_74.FormFactor = Enum.FormFactor.Symmetric
2347
part_74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2348
part_74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2349
part_74.Anchored = true
2350
part_74.Size = Vector3.new(25, 18.6, 1)
2351
part_74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2352
part_74.Locked = true
2353
part_74.CFrame = CFrame.new(-660.272, 395.3, -1058.377)* CFrame.Angles(-3.1415872573853, -1.0882726143857e-011, 3.1415908336639)
2354
part_74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2355
part_74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2356
part_74.BrickColor = BrickColor.new("Mid gray")
2357
part_74.Friction = 0.3
2358
part_74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2359
2360
 part_75 = Instance.new("WedgePart", matteobasev1)
2361
part_75.FormFactor = Enum.FormFactor.Symmetric
2362
part_75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2363
part_75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2364
part_75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2365
part_75.Friction = 0.3
2366
part_75.Size = Vector3.new(26, 16.6, 15.8)
2367
part_75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2368
part_75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2369
part_75.Name = "Part"
2370
part_75.Locked = true
2371
part_75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2372
part_75.CFrame = CFrame.new(-861.972, 412.499, -1079.557)* CFrame.Angles(1.5707985162735, -3.3460730719526e-007, -3.1415927410126)
2373
part_75.BrickColor = BrickColor.new("Dark stone grey")
2374
part_75.Anchored = true
2375
2376
 part_76 = Instance.new("WedgePart", matteobasev1)
2377
part_76.FormFactor = Enum.FormFactor.Symmetric
2378
part_76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2379
part_76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2380
part_76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2381
part_76.Friction = 0.3
2382
part_76.Size = Vector3.new(26, 16.6, 15.8)
2383
part_76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2384
part_76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2385
part_76.Name = "Part"
2386
part_76.Locked = true
2387
part_76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2388
part_76.CFrame = CFrame.new(-861.972, 412.499, -1062.957)* CFrame.Angles(1.5707979202271, -3.4413380944898e-007, 4.4705068091844e-008)
2389
part_76.BrickColor = BrickColor.new("Dark stone grey")
2390
part_76.Anchored = true
2391
2392
 part_77 = Instance.new("WedgePart", matteobasev1)
2393
part_77.FormFactor = Enum.FormFactor.Symmetric
2394
part_77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2395
part_77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2396
part_77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2397
part_77.Friction = 0.3
2398
part_77.Size = Vector3.new(26, 16.6, 15.8)
2399
part_77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2400
part_77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2401
part_77.Name = "Part"
2402
part_77.Locked = true
2403
part_77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2404
part_77.CFrame = CFrame.new(-659.772, 412.499, -1066.177)* CFrame.Angles(1.5708010196686, 1.8673380282053e-006, 3.0378679127807e-008)
2405
part_77.BrickColor = BrickColor.new("Dark stone grey")
2406
part_77.Anchored = true
2407
2408
 part_78 = Instance.new("WedgePart", matteobasev1)
2409
part_78.FormFactor = Enum.FormFactor.Symmetric
2410
part_78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2411
part_78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2412
part_78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2413
part_78.Friction = 0.3
2414
part_78.Size = Vector3.new(26, 16.6, 15.8)
2415
part_78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2416
part_78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2417
part_78.Name = "Part"
2418
part_78.Locked = true
2419
part_78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2420
part_78.CFrame = CFrame.new(-659.772, 412.499, -1082.777)* CFrame.Angles(1.5708017349243, 1.8768644167722e-006, -3.141592502594)
2421
part_78.BrickColor = BrickColor.new("Dark stone grey")
2422
part_78.Anchored = true
2423
2424
 matteobase = Instance.new("Part", matteobasev1)
2425
matteobase.FormFactor = Enum.FormFactor.Symmetric
2426
matteobase.TopSurface = Enum.SurfaceType.Smooth
2427
matteobase.Anchored = true
2428
matteobase.Material = Enum.Material.Grass
2429
matteobase.Size = Vector3.new(267, 1, 277)
2430
matteobase.Name = "matteobase"
2431
matteobase.Locked = true
2432
matteobase.CFrame = CFrame.new(-766.5, 384.5, -1071.5)
2433
matteobase.BrickColor = BrickColor.new("Artichoke")
2434
matteobase.Friction = 0.3
2435
matteobase.BottomSurface = Enum.SurfaceType.Smooth
2436
2437
char.Torso.CFrame = spawnlocation.CFrame
2438
local matteobasev1clone = matteobasev1:Clone()
2439
matteobasev1clone.Parent = game.Players
2440
2441
matteobasev1.Parent = char
2442
2443
wait(.1)
2444
2445
game:GetService("RunService").RenderStepped:connect(function()
2446
	if char:FindFirstChild("matteobasev1")==nil then
2447
		game.Players.matteobasev1.Parent = workspace
2448
		wait(.1)
2449
		game.Workspace.matteobasev1.Parent = char
2450
		local matteobasev1clone = matteobasev1:Clone()
2451
		matteobasev1clone.Parent = game.Players
2452
	end
2453
end)