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