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