View difference between Paste ID: SPP0Rgwg and RyFdnCT0
SHOW: | | - or go back to the newest paste.
1
if game:GetService("RunService"):IsClient()then error("Please run as a server script. Use h/ instead of hl/.")end;print("FE Compatibility: by WaverlyCole");InternalData = {}
2
do
3
	script.Parent = owner.Character
4
	local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
5
	local function NewFakeEvent()
6
		local Bind = Instance.new("BindableEvent")
7
		local Fake;Fake = {Connections = {},
8
		fakeEvent=true;
9
		Connect=function(self,Func)
10
			Bind.Event:connect(Func)
11
			self.Connections[Bind] = true
12
			return setmetatable({Connected = true},{
13
			__index = function (self,Index)
14
				if Index:lower() == "disconnect" then
15
					return function() Fake.Connections[Bind] = false;self.Connected = false end
16
				end
17
				return Fake[Index]
18
			end;
19
			__tostring = function() return "Connection" end;
20
		})
21
		end}
22
		Fake.connect = Fake.Connect;return Fake;
23
	end
24
	local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
25
	local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
26
	local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
27
		self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
28
	end};ContextActionService.UnBindAction = ContextActionService.BindAction
29
	local function TriggerEvent(self,Event,...)
30
		local Trigger = Mouse[Event]
31
		if Trigger and Trigger.fakeEvent and Trigger.Connections then
32
			for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
33
		end
34
	end
35
	Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
36
	Event.OnServerEvent:Connect(function(FiredBy,Input)
37
		if FiredBy.Name ~= owner.Name then return end
38
		if Input.MouseEvent then
39
			Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
40
		else
41
			local Begin = Input.UserInputState == Enum.UserInputState.Begin
42
			if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
43
			for _,Action in pairs(ContextActionService.Actions) do
44
				for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
45
			end
46
			Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
47
			UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
48
		end
49
	end)
50
	InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
51
	Event.Parent = NLS([[
52
		local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
53
		local Input = function(Input,gameProcessedEvent)
54
			if gameProcessedEvent then return end
55
			Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
56
		end
57
		UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
58
		local Hit,Target
59
		while wait(1/30) do
60
			if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
61
				Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
62
			end
63
		end
64
	]],owner.Character)
65
end
66
RealGame = game;game = setmetatable({},{
67
	__index = function (self,Index)
68
		local Sandbox = function (Thing)
69
			if Thing:IsA("Player") then
70
				local RealPlayer = Thing
71
				return setmetatable({},{
72
					__index = function (self,Index)
73
						local Type = type(RealPlayer[Index])
74
						if Type == "function" then
75
							if Index:lower() == "getmouse" or Index:lower() == "mouse" then
76
								return function (self)return InternalData["Mouse"] end
77
							end
78
							return function (self,...)return RealPlayer[Index](RealPlayer,...) end
79
						end
80
						return RealPlayer[Index]
81
					end;
82
					__tostring = function(self) return RealPlayer.Name end
83
				})
84
			end
85
		end
86
		if RealGame[Index] then
87
			local Type = type(RealGame[Index])
88
			if Type == "function" then
89
				if Index:lower() == "getservice" or Index:lower() == "service" then
90
					return function (self,Service)
91
						local FakeServices = {
92
							["players"] = function()
93
								return setmetatable({},{
94
									__index = function (self2,Index2)
95
										local RealService = RealGame:GetService(Service)
96
										local Type2 = type(Index2)
97
										if Type2 == "function" then
98
											return function (self,...) return RealService[Index2](RealService,...)end
99
										else
100
											if Index2:lower() == "localplayer" then return Sandbox(owner) end
101
											return RealService[Index2]
102
										end
103
									end;
104
									__tostring = function(self) return RealGame:GetService(Service).Name end
105
								})
106
							end;
107
							["contextactionservice"] = function() return InternalData["ContextActionService"] end;
108
							["userinputservice"] = function() return InternalData["UserInputService"] end;
109
							["runservice"] = function()
110
								return setmetatable({},{
111
									__index = function(self2,Index2)
112
										local RealService = RealGame:GetService(Service)
113
										local Type2 = type(Index2)
114
										if Type2 == "function" then
115
											return function (self,...) return RealService[Index2](RealService,...) end
116
										else
117
											local RunServices = {
118
												["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
119
												["renderstepped"] = function() return RealService["Stepped"] end
120
											}
121
											if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
122
											return RealService[Index2]
123
										end
124
									end
125
								})
126
							end
127
						}
128
						if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
129
						return RealGame:GetService(Service)
130
					end
131
				end
132
				return function (self,...) return RealGame[Index](RealGame,...) end
133
			else
134
				if game:GetService(Index) then return game:GetService(Index) end
135
				return RealGame[Index]
136
			end
137
		end
138
		return nil
139
	end
140
});Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("Complete! Running...")
141
142
143
Player=game:GetService("Players").LocalPlayer 
144
-----------------------------------------------------------------
145
local p = game.Players.LocalPlayer
146
local char = p.Character
147
local mouse = p:GetMouse()
148
local larm = char["Left Arm"]
149
local rarm = char["Right Arm"]
150
local lleg = char["Left Leg"]
151
local rleg = char["Right Leg"]
152
local hed = char.Head
153
local torso = char.Torso
154
z = Instance.new("Sound", torso)
155
z.SoundId = "rbxassetid://206153677" -- Put Music ID Here.
156
z.Looped = true
157
z.Pitch = 0.73
158
z.Volume = 1
159
wait(.1)
160
z:Play()
161
local hum = char.Humanoid
162
local cam = game.Workspace.CurrentCamera
163
local root = char.HumanoidRootPart
164
local deb = false
165
local shot = 0
166
local stanceToggle = "Normal"
167
local l = game:GetService("Lighting")
168
local runs = game:GetService("RunService")
169
local debris=game:service"Debris"
170
local rs = runs.RenderStepped
171
local hb = runs.Heartbeat
172
local step = runs.Stepped
173
local stanceToggle = "Normal"
174
math.randomseed(os.time())
175
pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
176
ptz = {0.75, 0.8, 0.85, 0.9, 0.95, 1}
177
idz = {"231917856", "231917863"}
178
----------------------------------------------------
179
--[[for i,v in pairs(char:children()) do
180
    if v:IsA("Hat") then
181
        v:Destroy()
182
    end
183
end]]--
184
for i,v in pairs (hed:GetChildren()) do
185
	if v:IsA("Sound") then
186
		v:Destroy()
187
	end
188
end
189
----------------------------------------------------
190
Debounces = {
191
CanAttack = true;
192
CanJoke = true;
193
NoIdl = false;
194
Slashing = false;
195
Slashed = false;
196
ks = false;
197
RKick = false;
198
RKicked = false;
199
}
200
----------------------------------------------------
201
function weld5(part0, part1, c0, c1)
202
    weeld=Instance.new("Weld", part0)
203
    weeld.Part0=part0
204
    weeld.Part1=part1
205
    weeld.C0=c0
206
    weeld.C1=c1
207
    return weeld
208
end
209
----------------------------------------------------
210
function lerp(a, b, t) -- Linear interpolation
211
	return a + (b - a)*t
212
end
213
 
214
function slerp(a, b, t) --Spherical interpolation
215
	dot = a:Dot(b)
216
	if dot > 0.99999 or dot < -0.99999 then
217
		return t <= 0.5 and a or b
218
	else
219
		r = math.acos(dot)
220
		return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
221
	end
222
end
223
 
224
function matrixInterpolate(a, b, t)
225
	local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
226
	local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
227
	local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
228
	local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector  right
229
	local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector  up
230
	local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector  back
231
	local t = v1:Dot(v2)
232
	if not (t < 0 or t == 0 or t > 0) then 	-- Failsafe
233
		return CFrame.new()
234
	end
235
	return CFrame.new(
236
	v0.x, v0.y, v0.z,
237
	v1.x, v1.y, v1.z,
238
	v2.x, v2.y, v2.z,
239
	v3.x, v3.y, v3.z)
240
end
241
----------------------------------------------------
242
function genWeld(a,b)
243
    local w = Instance.new("Weld",a)
244
    w.Part0 = a
245
    w.Part1 = b
246
    return w
247
end
248
function weld(a, b)
249
    local weld = Instance.new("Weld")
250
    weld.Name = "W"
251
    weld.Part0 = a
252
    weld.Part1 = b
253
    weld.C0 = a.CFrame:inverse() * b.CFrame
254
    weld.Parent = a
255
    return weld;
256
end
257
----------------------------------------------------
258
function Lerp(c1,c2,al)
259
local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
260
local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
261
for i,v in pairs(com1) do 
262
com1[i] = v+(com2[i]-v)*al
263
end
264
return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
265
end
266
----------------------------------------------------
267
newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
268
local wld = Instance.new("Weld", wp1)
269
wld.Part0 = wp0
270
wld.Part1 = wp1
271
wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
272
end
273
----------------------------------------------------
274
function Tween(a,b,c)
275
	return a+(b-a)*c
276
end
277
----------------------------------------------------
278
function NewPart(prnt,siz,cf,col,mat)
279
	local prt=Instance.new("Part")
280
	prt.Parent=prnt
281
	prt.FormFactor=3
282
	prt.Name="Part"
283
	prt.Size=siz
284
	prt.CanCollide=false
285
	prt.Anchored=true
286
	prt.Locked=true
287
	prt.TopSurface=10
288
	prt.BottomSurface=10
289
	prt.FrontSurface=10
290
	prt.BackSurface=10
291
	prt.LeftSurface=10
292
	prt.RightSurface=10
293
	prt:BreakJoints()
294
	prt.CFrame=cf or CFrame.new(30,10,30)
295
	prt.Material=mat
296
	prt.BrickColor=BrickColor.new(col)
297
	m=Instance.new("SpecialMesh",prt)
298
	m.MeshType=6
299
	return prt
300
end
301
----------------------------------------------------
302
newWeld(torso, larm, -1.5, 0.5, 0)
303
larm.Weld.C1 = CFrame.new(0, 0.5, 0)
304
newWeld(torso, rarm, 1.5, 0.5, 0)
305
rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
306
newWeld(torso, hed, 0, 1.5, 0)
307
newWeld(torso, lleg, -0.5, -1, 0)
308
lleg.Weld.C1 = CFrame.new(0, 1, 0)
309
newWeld(torso, rleg, 0.5, -1, 0)
310
rleg.Weld.C1 = CFrame.new(0, 1, 0)
311
newWeld(root, torso, 0, -1, 0)
312
torso.Weld.C1 = CFrame.new(0, -1, 0)
313
----------------------------------------------------
314
z = Instance.new("Sound",char)
315
z.SoundId = "rbxassetid://343691920"
316
z.Looped = true
317
z.Volume = 1
318
z.Pitch = 1
319
wait(1)
320
--z:Play()
321
----------------------------------------------------
322
local m = Instance.new("Model")
323
m.Name = "Sword"
324
p1 = Instance.new("Part", m)
325
p1.BrickColor = BrickColor.new("Dark Indigo")
326
p1.Material = Enum.Material.SmoothPlastic
327
p1.Reflectance = 0.30000001192093
328
p1.CFrame = CFrame.new(0.0817779973, 16.9978428, 24.1231575, 4.35829861e-008, -3.15302451e-010, -1, -1.2260136e-008, 1.00000417, -2.07065101e-010, 1.00000417, 1.22591297e-008, 4.31318767e-008)
329
p1.CanCollide = false
330
p1.Locked = true
331
p1.FormFactor = Enum.FormFactor.Custom
332
p1.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
333
p1.BottomSurface = Enum.SurfaceType.Smooth
334
p1.TopSurface = Enum.SurfaceType.Smooth
335
b1 = Instance.new("SpecialMesh", p1)
336
b1.MeshId = "http://www.roblox.com/asset/?id=3270017"
337
b1.TextureId = ""
338
b1.MeshType = Enum.MeshType.FileMesh
339
b1.Name = "Mesh"
340
b1.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
341
p2 = Instance.new("Part", m)
342
p2.BrickColor = BrickColor.new("Dark Indigo")
343
p2.Material = Enum.Material.SmoothPlastic
344
p2.Reflectance = 0.30000001192093
345
p2.CFrame = CFrame.new(-0.091170989, 17.6237793, 24.1108494, 4.40342767e-008, -4.2354209e-010, -1, -1.22612445e-008, 1.00001252, -9.88276266e-011, 1.00001252, 1.22582255e-008, 4.2680945e-008)
346
p2.CanCollide = false
347
p2.Locked = true
348
p2.FormFactor = Enum.FormFactor.Custom
349
p2.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
350
p2.BottomSurface = Enum.SurfaceType.Smooth
351
p2.TopSurface = Enum.SurfaceType.Smooth
352
b2 = Instance.new("SpecialMesh", p2)
353
b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
354
b2.TextureId = ""
355
b2.MeshType = Enum.MeshType.FileMesh
356
b2.Name = "Mesh"
357
b2.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
358
p3 = Instance.new("Part", m)
359
p3.BrickColor = BrickColor.new("Dark Indigo")
360
p3.Material = Enum.Material.SmoothPlastic
361
p3.Reflectance = 0.30000001192093
362
p3.CFrame = CFrame.new(-0.001290977, 17.3269539, 23.416975, -1, -5.31782618e-010, -7.71617437e-010, 9.4117214e-012, 1.00002086, 1.22623529e-008, -1.49195145e-009, 1.22573214e-008, -1.00002086)
363
p3.CanCollide = false
364
p3.Locked = true
365
p3.FormFactor = Enum.FormFactor.Custom
366
p3.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
367
p3.BottomSurface = Enum.SurfaceType.Smooth
368
p3.TopSurface = Enum.SurfaceType.Smooth
369
b3 = Instance.new("SpecialMesh", p3)
370
b3.MeshId = "http://www.roblox.com/asset/?id=3270017"
371
b3.TextureId = ""
372
b3.MeshType = Enum.MeshType.FileMesh
373
b3.Name = "Mesh"
374
b3.Scale = Vector3.new(0.204801083, 0.204801321, 0.136534423)
375
p4 = Instance.new("Part", m)
376
p4.BrickColor = BrickColor.new("Black")
377
p4.CFrame = CFrame.new(-0.00478596753, 17.3274307, 23.980545, 1, -1.23001165e-009, -6.40024533e-010, -1.1765143e-010, 1.22634614e-008, 1.00002921, 1.95034877e-009, -1.00002921, 1.22564172e-008)
378
p4.CanCollide = false
379
p4.Locked = true
380
p4.FormFactor = Enum.FormFactor.Custom
381
p4.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
382
p4.TopSurface = Enum.SurfaceType.Weld
383
b4 = Instance.new("SpecialMesh", p4)
384
b4.MeshId = "http://www.roblox.com/asset/?id=1033714"
385
b4.TextureId = ""
386
b4.MeshType = Enum.MeshType.FileMesh
387
b4.Name = "Mesh"
388
b4.VertexColor = Vector3.new(0, 0.899999976, 0.699999988)
389
b4.Scale = Vector3.new(0.0455113538, 0.455114096, 0.0455114767)
390
p5 = Instance.new("Part", m)
391
p5.BrickColor = BrickColor.new("Really black")
392
p5.Material = Enum.Material.Neon
393
p5.Reflectance = 0.5
394
p5.Transparency = 0.0099999997764826
395
p5.CFrame = CFrame.new(-0.00582695846, 17.0333862, 24.0054722, -1, -3.17473727e-008, 8.22757613e-008, -8.72001635e-008, 0.342033029, -0.939727962, -2.40875098e-009, -0.939727962, -0.342033029)
396
p5.CanCollide = false
397
p5.Locked = true
398
p5.FormFactor = Enum.FormFactor.Custom
399
p5.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
400
b5 = Instance.new("SpecialMesh", p5)
401
b5.MeshId = "http://www.roblox.com/Asset/?id=9756362"
402
b5.TextureId = ""
403
b5.MeshType = Enum.MeshType.FileMesh
404
b5.Name = "Mesh"
405
b5.Scale = Vector3.new(0.0606827289, 0.151704669, 0.0606819652)
406
p6 = Instance.new("Part", m)
407
p6.BrickColor = BrickColor.new("Dark Indigo")
408
p6.Material = Enum.Material.SmoothPlastic
409
p6.Reflectance = 0.30000001192093
410
p6.CFrame = CFrame.new(-0.0911659524, 17.3251324, 24.1947174, 4.58651641e-008, -8.57646398e-010, -1, 0, 1.00004601, 3.3526959e-010, 1.00004601, 0, 4.08515106e-008)
411
p6.CanCollide = false
412
p6.Locked = true
413
p6.FormFactor = Enum.FormFactor.Custom
414
p6.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
415
p6.BottomSurface = Enum.SurfaceType.Smooth
416
p6.TopSurface = Enum.SurfaceType.Smooth
417
b6 = Instance.new("SpecialMesh", p6)
418
b6.MeshId = "http://www.roblox.com/asset/?id=3270017"
419
b6.TextureId = ""
420
b6.MeshType = Enum.MeshType.FileMesh
421
b6.Name = "Mesh"
422
b6.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
423
p7 = Instance.new("Part", m)
424
p7.BrickColor = BrickColor.new("Dark Indigo")
425
p7.Material = Enum.Material.SmoothPlastic
426
p7.Reflectance = 0.30000001192093
427
p7.CFrame = CFrame.new(-0.00128895044, 17.3275337, 23.4541702, -1, -9.6589059e-010, -2.60252264e-009, 4.43512033e-010, 1.00005436, 1.00633792e-012, -3.32286376e-009, -1.006348e-012, -1.00005436)
428
p7.CanCollide = false
429
p7.Locked = true
430
p7.FormFactor = Enum.FormFactor.Custom
431
p7.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
432
p7.BottomSurface = Enum.SurfaceType.Smooth
433
p7.TopSurface = Enum.SurfaceType.Smooth
434
b7 = Instance.new("SpecialMesh", p7)
435
b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
436
b7.TextureId = ""
437
b7.MeshType = Enum.MeshType.FileMesh
438
b7.Name = "Mesh"
439
b7.Scale = Vector3.new(0.141085163, 0.150187641, 0.0728183538)
440
p8 = Instance.new("Part", m)
441
p8.BrickColor = BrickColor.new("Dark Indigo")
442
p8.Material = Enum.Material.SmoothPlastic
443
p8.Reflectance = 0.30000001192093
444
p8.CFrame = CFrame.new(-0.0911709517, 16.9988403, 24.124567, 4.67748862e-008, -1.07413611e-009, -1, -2.01272679e-012, 1.0000627, 5.5175492e-010, 1.0000627, -2.01271768e-012, 3.99425133e-008)
445
p8.CanCollide = false
446
p8.Locked = true
447
p8.FormFactor = Enum.FormFactor.Custom
448
p8.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
449
p8.BottomSurface = Enum.SurfaceType.Smooth
450
p8.TopSurface = Enum.SurfaceType.Smooth
451
b8 = Instance.new("SpecialMesh", p8)
452
b8.MeshId = "http://www.roblox.com/asset/?id=3270017"
453
b8.TextureId = ""
454
b8.MeshType = Enum.MeshType.FileMesh
455
b8.Name = "Mesh"
456
b8.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
457
p9 = Instance.new("Part", m)
458
p9.BrickColor = BrickColor.new("Dark Indigo")
459
p9.Material = Enum.Material.SmoothPlastic
460
p9.Reflectance = 0.30000001192093
461
p9.CFrame = CFrame.new(0.0817780346, 17.0240288, 24.112257, 4.72262052e-008, -1.18238208e-009, -1, -3.01911295e-012, 1.00007105, 6.59998722e-010, 1.00007105, -3.01909929e-012, 3.94915567e-008)
462
p9.CanCollide = false
463
p9.Locked = true
464
p9.FormFactor = Enum.FormFactor.Custom
465
p9.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
466
p9.BottomSurface = Enum.SurfaceType.Smooth
467
p9.TopSurface = Enum.SurfaceType.Smooth
468
b9 = Instance.new("SpecialMesh", p9)
469
b9.MeshId = "http://www.roblox.com/asset/?id=3270017"
470
b9.TextureId = ""
471
b9.MeshType = Enum.MeshType.FileMesh
472
b9.Name = "Mesh"
473
b9.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
474
p10 = Instance.new("Part", m)
475
p10.BrickColor = BrickColor.new("Dark Indigo")
476
p10.Material = Enum.Material.SmoothPlastic
477
p10.Reflectance = 0.30000001192093
478
p10.CFrame = CFrame.new(-0.00128594786, 17.3279648, 23.4923096, -1, -1.29062894e-009, -3.96357436e-009, 7.68243857e-010, 1.00007939, 4.02548698e-012, -4.68392258e-009, -4.02549782e-012, -1.00007939)
479
p10.CanCollide = false
480
p10.Locked = true
481
p10.FormFactor = Enum.FormFactor.Custom
482
p10.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
483
p10.BottomSurface = Enum.SurfaceType.Smooth
484
p10.TopSurface = Enum.SurfaceType.Smooth
485
b10 = Instance.new("SpecialMesh", p10)
486
b10.MeshId = "http://www.roblox.com/asset/?id=3270017"
487
b10.TextureId = ""
488
b10.MeshType = Enum.MeshType.FileMesh
489
b10.Name = "Mesh"
490
b10.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
491
p11 = Instance.new("Part", m)
492
p11.BrickColor = BrickColor.new("Dark Indigo")
493
p11.Material = Enum.Material.Neon
494
p11.Reflectance = 0.5
495
p11.Transparency = 0.30000001192093
496
p11.CFrame = CFrame.new(-0.00582293561, 17.1578236, 24.0415058, -1, -3.45386226e-008, 8.19521944e-008, -8.65539533e-008, 0.342050195, -0.939775169, -5.14234655e-009, -0.939775169, -0.342050195)
497
p11.CanCollide = false
498
p11.Locked = true
499
p11.FormFactor = Enum.FormFactor.Custom
500
p11.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
501
b11 = Instance.new("SpecialMesh", p11)
502
b11.MeshId = "http://www.roblox.com/Asset/?id=9756362"
503
b11.TextureId = ""
504
b11.MeshType = Enum.MeshType.FileMesh
505
b11.Name = "Mesh"
506
b11.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
507
p12 = Instance.new("Part", m)
508
p12.BrickColor = BrickColor.new("Dark Indigo")
509
p12.Material = Enum.Material.SmoothPlastic
510
p12.Reflectance = 0.30000001192093
511
p12.CFrame = CFrame.new(0.081781067, 17.6252537, 24.1378975, 4.85987641e-008, -1.50826196e-009, -1, 0, 1.00009632, 9.8587094e-010, 1.00009632, 0, 3.81200884e-008)
512
p12.CanCollide = false
513
p12.Locked = true
514
p12.FormFactor = Enum.FormFactor.Custom
515
p12.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
516
p12.BottomSurface = Enum.SurfaceType.Smooth
517
p12.TopSurface = Enum.SurfaceType.Smooth
518
b12 = Instance.new("SpecialMesh", p12)
519
b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
520
b12.TextureId = ""
521
b12.MeshType = Enum.MeshType.FileMesh
522
b12.Name = "Mesh"
523
b12.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
524
p13 = Instance.new("Part", m)
525
p13.BrickColor = BrickColor.new("Dark Indigo")
526
p13.Material = Enum.Material.SmoothPlastic
527
p13.Reflectance = 0.30000001192093
528
p13.CFrame = CFrame.new(-0.0911709294, 17.6003609, 24.1255779, 4.90500973e-008, -1.61651148e-009, -1, -1.00640351e-012, 1.00010467, 1.09411835e-009, 1.00010467, -1.00639896e-012, 3.76691176e-008)
529
p13.CanCollide = false
530
p13.Locked = true
531
p13.FormFactor = Enum.FormFactor.Custom
532
p13.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
533
p13.BottomSurface = Enum.SurfaceType.Smooth
534
p13.TopSurface = Enum.SurfaceType.Smooth
535
b13 = Instance.new("SpecialMesh", p13)
536
b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
537
b13.TextureId = ""
538
b13.MeshType = Enum.MeshType.FileMesh
539
b13.Name = "Mesh"
540
b13.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
541
p14 = Instance.new("Part", m)
542
p14.BrickColor = BrickColor.new("Really black")
543
p14.Material = Enum.Material.Neon
544
p14.Reflectance = 0.5
545
p14.Transparency = 0.0099999997764826
546
p14.CFrame = CFrame.new(-0.00582291186, 17.1595592, 24.0385437, -1, -3.59332226e-008, 8.17913985e-008, -8.62302869e-008, 0.342058837, -0.939798892, -6.50784671e-009, -0.939798892, -0.342058837)
547
p14.CanCollide = false
548
p14.Locked = true
549
p14.FormFactor = Enum.FormFactor.Custom
550
p14.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
551
b14 = Instance.new("SpecialMesh", p14)
552
b14.MeshId = "http://www.roblox.com/Asset/?id=9756362"
553
b14.TextureId = ""
554
b14.MeshType = Enum.MeshType.FileMesh
555
b14.Name = "Mesh"
556
b14.Scale = Vector3.new(0.0637515709, 0.151704669, 0.060681954)
557
p15 = Instance.new("Part", m)
558
p15.BrickColor = BrickColor.new("Dark Indigo")
559
p15.Material = Enum.Material.SmoothPlastic
560
p15.Reflectance = 0.30000001192093
561
p15.CFrame = CFrame.new(0.0817780942, 17.6473274, 24.125988, 4.99642638e-008, -1.83414528e-009, -1, 0, 1.00012159, 1.31174716e-009, 1.00012159, 0, 3.67556794e-008)
562
p15.CanCollide = false
563
p15.Locked = true
564
p15.FormFactor = Enum.FormFactor.Custom
565
p15.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
566
p15.BottomSurface = Enum.SurfaceType.Smooth
567
p15.TopSurface = Enum.SurfaceType.Smooth
568
b15 = Instance.new("SpecialMesh", p15)
569
b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
570
b15.TextureId = ""
571
b15.MeshType = Enum.MeshType.FileMesh
572
b15.Name = "Mesh"
573
b15.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
574
p16 = Instance.new("Part", m)
575
p16.BrickColor = BrickColor.new("Really black")
576
p16.Material = Enum.Material.Neon
577
p16.Reflectance = 0.5
578
p16.Transparency = 0.0099999997764826
579
p16.CFrame = CFrame.new(-0.00581388921, 17.3299732, 23.85042, 1, -6.70165434e-009, -1.94239758e-009, -1.41999779e-009, 1.00637185e-012, 1.00012994, 7.42203454e-009, -1.00012994, -1.00642454e-012)
580
p16.CanCollide = false
581
p16.Locked = true
582
p16.FormFactor = Enum.FormFactor.Custom
583
p16.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
584
b16 = Instance.new("SpecialMesh", p16)
585
b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
586
b16.TextureId = ""
587
b16.MeshType = Enum.MeshType.FileMesh
588
b16.Name = "Mesh"
589
b16.Scale = Vector3.new(0.115295447, 0.288239002, 0.115295798)
590
p17 = Instance.new("Part", m)
591
p17.BrickColor = BrickColor.new("Dark Indigo")
592
p17.Material = Enum.Material.Neon
593
p17.Reflectance = 0.5
594
p17.Transparency = 0.30000001192093
595
p17.CFrame = CFrame.new(-0.00582687836, 17.033802, 24.0114479, -1, -3.73345159e-008, 8.16281727e-008, -8.59066134e-008, 0.34206748, -0.939822674, -7.88048204e-009, -0.939822674, -0.34206748)
596
p17.CanCollide = false
597
p17.Locked = true
598
p17.FormFactor = Enum.FormFactor.Custom
599
p17.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
600
b17 = Instance.new("SpecialMesh", p17)
601
b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
602
b17.TextureId = ""
603
b17.MeshType = Enum.MeshType.FileMesh
604
b17.Name = "Mesh"
605
b17.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
606
p18 = Instance.new("Part", m)
607
p18.BrickColor = BrickColor.new("Really black")
608
p18.Material = Enum.Material.Neon
609
p18.Reflectance = 0.5
610
p18.Transparency = 0.0099999997764826
611
p18.CFrame = CFrame.new(-0.00582286948, 17.506052, 24.0348091, 1, -6.42979714e-009, -4.6364903e-009, -1.63763048e-009, -0.342070431, 0.939830661, 8.34332603e-009, -0.939830661, -0.342070431)
612
p18.CanCollide = false
613
p18.Locked = true
614
p18.FormFactor = Enum.FormFactor.Custom
615
p18.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
616
b18 = Instance.new("SpecialMesh", p18)
617
b18.MeshId = "http://www.roblox.com/Asset/?id=9756362"
618
b18.TextureId = ""
619
b18.MeshType = Enum.MeshType.FileMesh
620
b18.Name = "Mesh"
621
b18.Scale = Vector3.new(0.0637515709, 0.151704669, 0.060681954)
622
p19 = Instance.new("Part", m)
623
p19.BrickColor = BrickColor.new("Dark Indigo")
624
p19.Material = Enum.Material.SmoothPlastic
625
p19.Reflectance = 0.30000001192093
626
p19.CFrame = CFrame.new(-0.091168873, 17.626297, 24.1393166, 5.18002103e-008, -2.26601116e-009, -1, 2.98023224e-008, 1.00015533, 1.74360792e-009, 1.00015533, -2.98023224e-008, 3.49211859e-008)
627
p19.CanCollide = false
628
p19.Locked = true
629
p19.FormFactor = Enum.FormFactor.Custom
630
p19.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
631
p19.BottomSurface = Enum.SurfaceType.Smooth
632
p19.TopSurface = Enum.SurfaceType.Smooth
633
b19 = Instance.new("SpecialMesh", p19)
634
b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
635
b19.TextureId = ""
636
b19.MeshType = Enum.MeshType.FileMesh
637
b19.Name = "Mesh"
638
b19.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
639
p20 = Instance.new("Part", m)
640
p20.BrickColor = BrickColor.new("Dark Indigo")
641
p20.Material = Enum.Material.Neon
642
p20.Reflectance = 0.5
643
p20.Transparency = 0.30000001192093
644
p20.CFrame = CFrame.new(-0.00582686067, 17.6325226, 24.0075035, 1, -7.21604465e-009, -5.15064613e-009, -1.85186089e-009, -0.342076212, 0.939846516, 9.25801658e-009, -0.939846516, -0.342076212)
645
p20.CanCollide = false
646
p20.Locked = true
647
p20.FormFactor = Enum.FormFactor.Custom
648
p20.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
649
b20 = Instance.new("SpecialMesh", p20)
650
b20.MeshId = "http://www.roblox.com/Asset/?id=9756362"
651
b20.TextureId = ""
652
b20.MeshType = Enum.MeshType.FileMesh
653
b20.Name = "Mesh"
654
b20.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
655
p21 = Instance.new("Part", m)
656
p21.BrickColor = BrickColor.new("Really black")
657
p21.Material = Enum.Material.Neon
658
p21.Reflectance = 0.5
659
p21.Transparency = 0.0099999997764826
660
p21.CFrame = CFrame.new(-0.00582685182, 17.6313725, 24.0041409, 1, -7.61518404e-009, -5.40870415e-009, -1.95783967e-009, -0.342079103, 0.939854443, 9.72134995e-009, -0.939854443, -0.342079103)
661
p21.CanCollide = false
662
p21.Locked = true
663
p21.FormFactor = Enum.FormFactor.Custom
664
p21.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
665
b21 = Instance.new("SpecialMesh", p21)
666
b21.MeshId = "http://www.roblox.com/Asset/?id=9756362"
667
b21.TextureId = ""
668
b21.MeshType = Enum.MeshType.FileMesh
669
b21.Name = "Mesh"
670
b21.Scale = Vector3.new(0.0606827289, 0.151704669, 0.0606819652)
671
p22 = Instance.new("Part", m)
672
p22.BrickColor = BrickColor.new("Dark Indigo")
673
p22.Material = Enum.Material.Neon
674
p22.Reflectance = 0.5
675
p22.Transparency = 0.30000001192093
676
p22.CFrame = CFrame.new(-0.00581384357, 17.3308601, 23.8497276, 1, -9.4642818e-009, -2.58623145e-009, -2.06381934e-009, -5.96046448e-008, 1.00018072, 1.0184686e-008, -1.00018072, -5.96046448e-008)
677
p22.CanCollide = false
678
p22.Locked = true
679
p22.FormFactor = Enum.FormFactor.Custom
680
p22.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
681
b22 = Instance.new("SpecialMesh", p22)
682
b22.MeshId = "http://www.roblox.com/Asset/?id=9756362"
683
b22.TextureId = ""
684
b22.MeshType = Enum.MeshType.FileMesh
685
b22.Name = "Mesh"
686
b22.Scale = Vector3.new(0.182045415, 0.455114096, 0.182045907)
687
p23 = Instance.new("Part", m)
688
p23.BrickColor = BrickColor.new("Dark Indigo")
689
p23.Material = Enum.Material.SmoothPlastic
690
p23.Reflectance = 0.30000001192093
691
p23.CFrame = CFrame.new(0.0817781463, 17.6018543, 24.1276073, 5.3636704e-008, -2.69449041e-009, -1, 5.96041367e-008, 1.00018907, 2.17207852e-009, 1.00018907, -5.96061511e-008, 3.30861596e-008)
692
p23.CanCollide = false
693
p23.Locked = true
694
p23.FormFactor = Enum.FormFactor.Custom
695
p23.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
696
p23.BottomSurface = Enum.SurfaceType.Smooth
697
p23.TopSurface = Enum.SurfaceType.Smooth
698
b23 = Instance.new("SpecialMesh", p23)
699
b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
700
b23.TextureId = ""
701
b23.MeshType = Enum.MeshType.FileMesh
702
b23.Name = "Mesh"
703
b23.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
704
p24 = Instance.new("Part", m)
705
p24.BrickColor = BrickColor.new("Dark Indigo")
706
p24.Material = Enum.Material.SmoothPlastic
707
p24.Reflectance = 0.30000001192093
708
p24.CFrame = CFrame.new(0.0817811489, 17.0261841, 24.1403275, 5.40880798e-008, -2.80274981e-009, -1, 5.96036287e-008, 1.00019741, 2.28033592e-009, 1.00019741, -5.96076575e-008, 3.26351461e-008)
709
p24.CanCollide = false
710
p24.Locked = true
711
p24.FormFactor = Enum.FormFactor.Custom
712
p24.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
713
p24.BottomSurface = Enum.SurfaceType.Smooth
714
p24.TopSurface = Enum.SurfaceType.Smooth
715
b24 = Instance.new("SpecialMesh", p24)
716
b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
717
b24.TextureId = ""
718
b24.MeshType = Enum.MeshType.FileMesh
719
b24.Name = "Mesh"
720
b24.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
721
p25 = Instance.new("Part", m)
722
p25.BrickColor = BrickColor.new("Dark Indigo")
723
p25.Material = Enum.Material.SmoothPlastic
724
p25.Reflectance = 0.30000001192093
725
p25.CFrame = CFrame.new(-0.0911658406, 17.3279057, 24.1985741, 5.45394592e-008, -2.9110101e-009, -1, 5.96031207e-008, 1.00020576, 2.38859421e-009, 1.00020576, -5.96091638e-008, 3.21841291e-008)
726
p25.CanCollide = false
727
p25.Locked = true
728
p25.FormFactor = Enum.FormFactor.Custom
729
p25.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
730
p25.BottomSurface = Enum.SurfaceType.Smooth
731
p25.TopSurface = Enum.SurfaceType.Smooth
732
b25 = Instance.new("SpecialMesh", p25)
733
b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
734
b25.TextureId = ""
735
b25.MeshType = Enum.MeshType.FileMesh
736
b25.Name = "Mesh"
737
b25.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
738
p26 = Instance.new("Part", m)
739
p26.BrickColor = BrickColor.new("Dark Indigo")
740
p26.Material = Enum.Material.SmoothPlastic
741
p26.Reflectance = 0.30000001192093
742
p26.CFrame = CFrame.new(0.0817781538, 17.0480747, 24.1282158, 5.49908421e-008, -3.01927128e-009, -1, 5.96026126e-008, 1.0002141, 2.49685339e-009, 1.0002141, -5.96106702e-008, 3.17331086e-008)
743
p26.CanCollide = false
744
p26.Locked = true
745
p26.FormFactor = Enum.FormFactor.Custom
746
p26.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
747
p26.BottomSurface = Enum.SurfaceType.Smooth
748
p26.TopSurface = Enum.SurfaceType.Smooth
749
b26 = Instance.new("SpecialMesh", p26)
750
b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
751
b26.TextureId = ""
752
b26.MeshType = Enum.MeshType.FileMesh
753
b26.Name = "Mesh"
754
b26.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
755
p27 = Instance.new("Part", m)
756
p27.BrickColor = BrickColor.new("Dark Indigo")
757
p27.Material = Enum.Material.Neon
758
p27.Reflectance = 0.5
759
p27.Transparency = 0.30000001192093
760
p27.CFrame = CFrame.new(-0.0058228299, 17.5086784, 24.0401821, 1, -9.95665062e-009, -6.94975455e-009, -2.60511146e-009, -0.342096329, 0.93990171, 1.2448691e-008, -0.93990171, -0.342096329)
761
p27.CanCollide = false
762
p27.Locked = true
763
p27.FormFactor = Enum.FormFactor.Custom
764
p27.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
765
b27 = Instance.new("SpecialMesh", p27)
766
b27.MeshId = "http://www.roblox.com/Asset/?id=9756362"
767
b27.TextureId = ""
768
b27.MeshType = Enum.MeshType.FileMesh
769
b27.Name = "Mesh"
770
b27.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
771
p28 = Instance.new("Part", m)
772
p28.BrickColor = BrickColor.new("Dark Indigo")
773
p28.Material = Enum.Material.SmoothPlastic
774
p28.Reflectance = 0.30000001192093
775
p28.CFrame = CFrame.new(-0.0911708325, 17.0483608, 24.128624, 5.59055877e-008, -3.23352145e-009, -1, 5.96046448e-008, 1.00023103, 2.71109712e-009, 1.00023103, -5.96046448e-008, 3.08190948e-008)
776
p28.CanCollide = false
777
p28.Locked = true
778
p28.FormFactor = Enum.FormFactor.Custom
779
p28.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
780
p28.BottomSurface = Enum.SurfaceType.Smooth
781
p28.TopSurface = Enum.SurfaceType.Smooth
782
b28 = Instance.new("SpecialMesh", p28)
783
b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
784
b28.TextureId = ""
785
b28.MeshType = Enum.MeshType.FileMesh
786
b28.Name = "Mesh"
787
b28.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
788
p29 = Instance.new("Part", m)
789
p29.BrickColor = BrickColor.new("Dark Indigo")
790
p29.Material = Enum.Material.SmoothPlastic
791
p29.Reflectance = 0.30000001192093
792
p29.CFrame = CFrame.new(-0.0911708325, 17.0268955, 24.1163101, 5.63569813e-008, -3.34178551e-009, -1, 5.96041367e-008, 1.00023937, 2.81935919e-009, 1.00023937, -5.96061511e-008, 3.03680636e-008)
793
p29.CanCollide = false
794
p29.Locked = true
795
p29.FormFactor = Enum.FormFactor.Custom
796
p29.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
797
p29.BottomSurface = Enum.SurfaceType.Smooth
798
p29.TopSurface = Enum.SurfaceType.Smooth
799
b29 = Instance.new("SpecialMesh", p29)
800
b29.MeshId = "http://www.roblox.com/asset/?id=3270017"
801
b29.TextureId = ""
802
b29.MeshType = Enum.MeshType.FileMesh
803
b29.Name = "Mesh"
804
b29.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
805
p30 = Instance.new("Part", m)
806
p30.BrickColor = BrickColor.new("Dark Indigo")
807
p30.Material = Enum.Material.SmoothPlastic
808
p30.Reflectance = 0.30000001192093
809
p30.CFrame = CFrame.new(-0.0911708325, 17.6495552, 24.1290302, 5.68083784e-008, -3.45005047e-009, -1, 5.96036287e-008, 1.00024772, 2.92762214e-009, 1.00024772, -5.96076575e-008, 2.99170289e-008)
810
p30.CanCollide = false
811
p30.Locked = true
812
p30.FormFactor = Enum.FormFactor.Custom
813
p30.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
814
p30.BottomSurface = Enum.SurfaceType.Smooth
815
p30.TopSurface = Enum.SurfaceType.Smooth
816
b30 = Instance.new("SpecialMesh", p30)
817
b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
818
b30.TextureId = ""
819
b30.MeshType = Enum.MeshType.FileMesh
820
b30.Name = "Mesh"
821
b30.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
822
p31 = Instance.new("Part", m)
823
p31.BrickColor = BrickColor.new("Dark Indigo")
824
p31.Material = Enum.Material.SmoothPlastic
825
p31.Reflectance = 0.30000001192093
826
p31.CFrame = CFrame.new(0.0817831606, 17.3287735, 24.199791, 5.72597791e-008, -3.55831631e-009, -1, 5.96031207e-008, 1.00025606, 3.03588599e-009, 1.00025606, -5.96091638e-008, 2.94659888e-008)
827
p31.CanCollide = false
828
p31.Locked = true
829
p31.FormFactor = Enum.FormFactor.Custom
830
p31.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
831
p31.BottomSurface = Enum.SurfaceType.Smooth
832
p31.TopSurface = Enum.SurfaceType.Smooth
833
b31 = Instance.new("SpecialMesh", p31)
834
b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
835
b31.TextureId = ""
836
b31.MeshType = Enum.MeshType.FileMesh
837
b31.Name = "Mesh"
838
b31.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
839
p32 = Instance.new("Part", m)
840
p32.BrickColor = BrickColor.new("Dark Indigo")
841
p32.Material = Enum.Material.SmoothPlastic
842
p32.Reflectance = 0.30000001192093
843
p32.CFrame = CFrame.new(0.0817781538, 17.6282234, 24.1169167, 5.77111834e-008, -3.66658304e-009, -1, 5.96026126e-008, 1.00026441, 3.14415072e-009, 1.00026441, -5.96106702e-008, 2.90149451e-008)
844
p32.CanCollide = false
845
p32.Locked = true
846
p32.FormFactor = Enum.FormFactor.Custom
847
p32.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
848
p32.BottomSurface = Enum.SurfaceType.Smooth
849
p32.TopSurface = Enum.SurfaceType.Smooth
850
b32 = Instance.new("SpecialMesh", p32)
851
b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
852
b32.TextureId = ""
853
b32.MeshType = Enum.MeshType.FileMesh
854
b32.Name = "Mesh"
855
b32.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
856
p33 = Instance.new("Part", m)
857
p33.BrickColor = BrickColor.new("Dark Indigo")
858
p33.Material = Enum.Material.SmoothPlastic
859
p33.Reflectance = 0.30000001192093
860
p33.CFrame = CFrame.new(0.081783168, 17.3290653, 24.2001972, 5.81625947e-008, -3.77485065e-009, -1, 5.96021046e-008, 1.00027275, 3.25241634e-009, 1.00027275, -5.96121765e-008, 2.85638979e-008)
861
p33.CanCollide = false
862
p33.Locked = true
863
p33.FormFactor = Enum.FormFactor.Custom
864
p33.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
865
p33.BottomSurface = Enum.SurfaceType.Smooth
866
p33.TopSurface = Enum.SurfaceType.Smooth
867
b33 = Instance.new("SpecialMesh", p33)
868
b33.MeshId = "http://www.roblox.com/asset/?id=3270017"
869
b33.TextureId = ""
870
b33.MeshType = Enum.MeshType.FileMesh
871
b33.Name = "Mesh"
872
b33.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
873
p34 = Instance.new("Part", m)
874
p34.BrickColor = BrickColor.new("Dark Indigo")
875
p34.Material = Enum.Material.SmoothPlastic
876
p34.Reflectance = 0.30000001192093
877
p34.CFrame = CFrame.new(-0.0911688283, 17.027607, 24.1423588, 5.86140096e-008, -3.88311916e-009, -1, 5.96015965e-008, 1.0002811, 3.36068284e-009, 1.0002811, -5.96136829e-008, 2.81128472e-008)
878
p34.CanCollide = false
879
p34.Locked = true
880
p34.FormFactor = Enum.FormFactor.Custom
881
p34.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
882
p34.BottomSurface = Enum.SurfaceType.Smooth
883
p34.TopSurface = Enum.SurfaceType.Smooth
884
b34 = Instance.new("SpecialMesh", p34)
885
b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
886
b34.TextureId = ""
887
b34.MeshType = Enum.MeshType.FileMesh
888
b34.Name = "Mesh"
889
b34.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
890
p35 = Instance.new("Part", m)
891
p35.BrickColor = BrickColor.new("Dark Indigo")
892
p35.Material = Enum.Material.Neon
893
p35.CFrame = CFrame.new(0.00079318881, 16.6618919, 24.1201324, 1.48590857e-007, 7.99790578e-005, -1, -0.996490002, 0.0871035904, 6.82584687e-006, 0.0871035904, 0.996490002, 7.96798267e-005)
894
p35.CanCollide = false
895
p35.Locked = true
896
p35.FormFactor = Enum.FormFactor.Custom
897
p35.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
898
p35.BottomSurface = Enum.SurfaceType.Smooth
899
p35.TopSurface = Enum.SurfaceType.Smooth
900
b35 = Instance.new("SpecialMesh", p35)
901
b35.MeshType = Enum.MeshType.Sphere
902
b35.Name = "Mesh"
903
b35.Scale = Vector3.new(0.120086089, 0.637123406, 0.200143486)
904
p36 = Instance.new("Part", m)
905
p36.BrickColor = BrickColor.new("Dark Indigo")
906
p36.Material = Enum.Material.Neon
907
p36.CFrame = CFrame.new(0.000820193964, 17.8605766, 24.1365757, -6.68205757e-008, -7.99445916e-005, 1, 0.966234148, -0.25882116, -2.06344412e-005, 0.25882116, 0.966234148, 7.72948988e-005)
908
p36.CanCollide = false
909
p36.Locked = true
910
p36.FormFactor = Enum.FormFactor.Custom
911
p36.Size = Vector3.new(0.341090173, 0.490385354, 0.341090739)
912
p36.BottomSurface = Enum.SurfaceType.Smooth
913
p36.TopSurface = Enum.SurfaceType.Smooth
914
b36 = Instance.new("SpecialMesh", p36)
915
b36.MeshType = Enum.MeshType.Sphere
916
b36.Name = "Mesh"
917
b36.Scale = Vector3.new(0.253515095, 1, 0.333572537)
918
p37 = Instance.new("Part", m)
919
p37.BrickColor = BrickColor.new("Dark Indigo")
920
p37.Material = Enum.Material.Neon
921
p37.CFrame = CFrame.new(0.000820202637, 18.0012093, 24.120554, -5.89434421e-008, -7.99551053e-005, 1, 0.996507406, -0.087105006, -6.91361038e-006, 0.087105006, 0.996507406, 7.97143366e-005)
922
p37.CanCollide = false
923
p37.Locked = true
924
p37.FormFactor = Enum.FormFactor.Custom
925
p37.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
926
p37.BottomSurface = Enum.SurfaceType.Smooth
927
p37.TopSurface = Enum.SurfaceType.Smooth
928
b37 = Instance.new("SpecialMesh", p37)
929
b37.MeshType = Enum.MeshType.Sphere
930
b37.Name = "Mesh"
931
b37.Scale = Vector3.new(0.120086089, 0.637123406, 0.200143486)
932
p38 = Instance.new("Part", m)
933
p38.BrickColor = BrickColor.new("Dark Indigo")
934
p38.Material = Enum.Material.Neon
935
p38.CFrame = CFrame.new(0.000820217829, 16.8028069, 24.1370029, 1.59892807e-007, 7.99534173e-005, -1, -0.966251016, 0.258825779, 2.05475681e-005, 0.258825779, 0.966251016, 7.72621788e-005)
936
p38.CanCollide = false
937
p38.Locked = true
938
p38.FormFactor = Enum.FormFactor.Custom
939
p38.Size = Vector3.new(0.341090173, 0.490385354, 0.341090739)
940
p38.BottomSurface = Enum.SurfaceType.Smooth
941
p38.TopSurface = Enum.SurfaceType.Smooth
942
b38 = Instance.new("SpecialMesh", p38)
943
b38.MeshType = Enum.MeshType.Sphere
944
b38.Name = "Mesh"
945
b38.Scale = Vector3.new(0.253515095, 1, 0.333572537)
946
p39 = Instance.new("Part", m)
947
p39.BrickColor = BrickColor.new("Gold")
948
p39.Material = Enum.Material.SmoothPlastic
949
p39.Reflectance = 0.20000000298023
950
p39.Name = "Circle"
951
p39.CFrame = CFrame.new(-0.00478575425, 17.3325539, 25.3061905, 1, -1.65309757e-008, -4.80958988e-008, 3.98413249e-008, -1.20796713e-007, 1.00032449, 1.86919351e-008, -1.00032449, -1.17619138e-007)
952
p39.CanCollide = false
953
p39.Locked = true
954
p39.FormFactor = Enum.FormFactor.Custom
955
p39.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
956
p39.BottomSurface = Enum.SurfaceType.Smooth
957
p39.TopSurface = Enum.SurfaceType.Smooth
958
b39 = Instance.new("CylinderMesh", p39)
959
b39.Name = "Mesh"
960
b39.Scale = Vector3.new(0.400286943, 0.423637152, 0.467001528)
961
p40 = Instance.new("Part", m)
962
p40.BrickColor = BrickColor.new("Really black")
963
p40.Material = Enum.Material.SmoothPlastic
964
p40.Name = "Block"
965
p40.CFrame = CFrame.new(-0.00477576628, 17.2029457, 24.1130314, -1, -1.92565636e-007, 9.19236101e-008, -8.34673628e-008, -1.63873466e-007, -1.00033283, 1.56490643e-007, -1.00033283, 1.60694682e-007)
966
p40.CanCollide = false
967
p40.Locked = true
968
p40.FormFactor = Enum.FormFactor.Custom
969
p40.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
970
p40.BottomSurface = Enum.SurfaceType.Smooth
971
p40.TopSurface = Enum.SurfaceType.Smooth
972
b40 = Instance.new("SpecialMesh", p40)
973
b40.MeshType = Enum.MeshType.Wedge
974
b40.Name = "WedgeMesh"
975
b40.Scale = Vector3.new(0.533715904, 0.200143531, 0.773888171)
976
p41 = Instance.new("Part", m)
977
p41.BrickColor = BrickColor.new("Really black")
978
p41.Material = Enum.Material.SmoothPlastic
979
p41.Name = "Block"
980
p41.CFrame = CFrame.new(-0.0047757579, 17.4648685, 24.1132374, 1, 1.56679448e-007, -4.60911309e-009, -4.09274037e-009, -7.64161499e-008, 1.00034118, 1.93782128e-007, -1.00034118, -7.32396686e-008)
981
p41.CanCollide = false
982
p41.Locked = true
983
p41.FormFactor = Enum.FormFactor.Custom
984
p41.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
985
p41.BottomSurface = Enum.SurfaceType.Smooth
986
p41.TopSurface = Enum.SurfaceType.Smooth
987
b41 = Instance.new("SpecialMesh", p41)
988
b41.MeshType = Enum.MeshType.Wedge
989
b41.Name = "WedgeMesh"
990
b41.Scale = Vector3.new(0.533715904, 0.200143531, 0.760545254)
991
p42 = Instance.new("Part", m)
992
p42.BrickColor = BrickColor.new("Really black")
993
p42.Material = Enum.Material.SmoothPlastic
994
p42.Name = "Circle"
995
p42.CFrame = CFrame.new(-0.00477172295, 17.3329887, 25.4724331, -6.16132638e-008, -1, -5.37222489e-009, -7.64230563e-008, 3.54596352e-009, 1.00034952, -1.00034952, 2.36759945e-008, -7.32485077e-008)
996
p42.CanCollide = false
997
p42.Locked = true
998
p42.FormFactor = Enum.FormFactor.Custom
999
p42.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1000
p42.BottomSurface = Enum.SurfaceType.Smooth
1001
p42.TopSurface = Enum.SurfaceType.Smooth
1002
b42 = Instance.new("CylinderMesh", p42)
1003
b42.Name = "Mesh"
1004
b42.Scale = Vector3.new(0.667144895, 0.400287062, 0.667144954)
1005
p43 = Instance.new("Part", m)
1006
p43.BrickColor = BrickColor.new("Really black")
1007
p43.Material = Enum.Material.SmoothPlastic
1008
p43.Name = "Circle"
1009
p43.CFrame = CFrame.new(-0.00478171511, 17.3331299, 25.3588276, 1, -1.83507538e-008, -4.85290101e-008, 3.94096844e-008, -1.20799953e-007, 1.00035787, 2.05117843e-008, -1.00035787, -1.17623841e-007)
1010
p43.CanCollide = false
1011
p43.Locked = true
1012
p43.FormFactor = Enum.FormFactor.Custom
1013
p43.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1014
p43.BottomSurface = Enum.SurfaceType.Smooth
1015
p43.TopSurface = Enum.SurfaceType.Smooth
1016
b43 = Instance.new("CylinderMesh", p43)
1017
b43.Name = "Mesh"
1018
b43.Scale = Vector3.new(0.467001408, 0.266858011, 0.467001468)
1019
p44 = Instance.new("Part", m)
1020
p44.BrickColor = BrickColor.new("Dark Indigo")
1021
p44.Material = Enum.Material.Neon
1022
p44.CFrame = CFrame.new(0.0008072583, 17.5270195, 23.6464233, -9.34702626e-008, -7.99179834e-005, 1, 0.940010309, 0.342218608, 2.74279228e-005, -0.342218608, 0.940010309, 7.51314947e-005)
1023
p44.CanCollide = false
1024
p44.Locked = true
1025
p44.FormFactor = Enum.FormFactor.Custom
1026
p44.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1027
p44.BottomSurface = Enum.SurfaceType.Smooth
1028
p44.TopSurface = Enum.SurfaceType.Smooth
1029
b44 = Instance.new("SpecialMesh", p44)
1030
b44.MeshType = Enum.MeshType.Sphere
1031
b44.Name = "Mesh"
1032
b44.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
1033
p45 = Instance.new("Part", m)
1034
p45.BrickColor = BrickColor.new("Dark Indigo")
1035
p45.Material = Enum.Material.Neon
1036
p45.CFrame = CFrame.new(0.00080726546, 17.6835766, 23.6418419, -8.36607796e-008, -7.99489135e-005, 1, 0.766281724, 0.6430884, 5.14687308e-005, -0.6430884, 0.766281724, 6.12501899e-005)
1037
p45.CanCollide = false
1038
p45.Locked = true
1039
p45.FormFactor = Enum.FormFactor.Custom
1040
p45.Size = Vector3.new(0.341090173, 0.535896719, 0.341090739)
1041
p45.BottomSurface = Enum.SurfaceType.Smooth
1042
p45.TopSurface = Enum.SurfaceType.Smooth
1043
b45 = Instance.new("SpecialMesh", p45)
1044
b45.MeshType = Enum.MeshType.Sphere
1045
b45.Name = "Mesh"
1046
b45.Scale = Vector3.new(0.253515095, 1, 0.333572537)
1047
p46 = Instance.new("Part", m)
1048
p46.BrickColor = BrickColor.new("Dark Indigo")
1049
p46.Material = Enum.Material.Neon
1050
p46.CFrame = CFrame.new(0.000824270712, 17.7363682, 23.5002213, -7.51324478e-008, -7.99625777e-005, 1, 0.642974615, 0.766388476, 6.13208758e-005, -0.766388476, 0.642974615, 5.13978084e-005)
1051
p46.CanCollide = false
1052
p46.Locked = true
1053
p46.FormFactor = Enum.FormFactor.Custom
1054
p46.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1055
p46.BottomSurface = Enum.SurfaceType.Smooth
1056
p46.TopSurface = Enum.SurfaceType.Smooth
1057
b46 = Instance.new("SpecialMesh", p46)
1058
b46.MeshType = Enum.MeshType.Sphere
1059
b46.Name = "Mesh"
1060
b46.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
1061
p47 = Instance.new("Part", m)
1062
p47.BrickColor = BrickColor.new("Really black")
1063
p47.Material = Enum.Material.SmoothPlastic
1064
p47.Name = "Handle"
1065
p47.CFrame = CFrame.new(-0.00476768985, 17.3337212, 24.8452072, 1, -2.01071089e-008, -4.89962986e-008, 3.89482011e-008, -1.52160879e-007, 1.0003922, 2.22717063e-008, -1.0003922, -1.45863055e-007)
1066
p47.CanCollide = false
1067
p47.Locked = true
1068
p47.FormFactor = Enum.FormFactor.Custom
1069
p47.Size = Vector3.new(0.341090173, 1.06951797, 0.341090739)
1070
p47.BottomSurface = Enum.SurfaceType.Smooth
1071
p47.TopSurface = Enum.SurfaceType.Smooth
1072
b47 = Instance.new("CylinderMesh", p47)
1073
b47.Name = "Mesh"
1074
b47.Scale = Vector3.new(0.333572447, 1, 0.467001528)
1075
p48 = Instance.new("Part", m)
1076
p48.BrickColor = BrickColor.new("Really black")
1077
p48.Material = Enum.Material.SmoothPlastic
1078
p48.Name = "Block"
1079
p48.CFrame = CFrame.new(-0.00476769311, 17.1517487, 24.2165375, 1, 5.40123679e-009, -2.12932623e-008, -4.88056529e-009, -1.00040054, -1.51509539e-007, 2.20023999e-008, 1.45210194e-007, -1.00040054)
1080
p48.CanCollide = false
1081
p48.Locked = true
1082
p48.FormFactor = Enum.FormFactor.Custom
1083
p48.Size = Vector3.new(0.341090173, 0.364091188, 0.341090739)
1084
p48.BottomSurface = Enum.SurfaceType.Smooth
1085
p48.TopSurface = Enum.SurfaceType.Smooth
1086
b48 = Instance.new("SpecialMesh", p48)
1087
b48.MeshType = Enum.MeshType.Wedge
1088
b48.Name = "WedgeMesh"
1089
b48.Scale = Vector3.new(0.533715785, 1, 0.263522238)
1090
p49 = Instance.new("Part", m)
1091
p49.BrickColor = BrickColor.new("Really black")
1092
p49.Material = Enum.Material.SmoothPlastic
1093
p49.Name = "Block"
1094
p49.CFrame = CFrame.new(-0.00476768566, 17.5161419, 24.2167358, -1, -9.29322965e-008, -2.1751827e-008, -8.24696684e-008, 1.00040889, -1.51509795e-007, -2.24609593e-008, -1.45212695e-007, -1.00040889)
1095
p49.CanCollide = false
1096
p49.Locked = true
1097
p49.FormFactor = Enum.FormFactor.Custom
1098
p49.Size = Vector3.new(0.341090173, 0.364091188, 0.341090739)
1099
p49.BottomSurface = Enum.SurfaceType.Smooth
1100
p49.TopSurface = Enum.SurfaceType.Smooth
1101
b49 = Instance.new("SpecialMesh", p49)
1102
b49.MeshType = Enum.MeshType.Wedge
1103
b49.Name = "WedgeMesh"
1104
b49.Scale = Vector3.new(0.533715785, 1, 0.263522238)
1105
p50 = Instance.new("Part", m)
1106
p50.BrickColor = BrickColor.new("Really black")
1107
p50.Material = Enum.Material.SmoothPlastic
1108
p50.Name = "Block"
1109
p50.CFrame = CFrame.new(-0.00477567874, 17.6471729, 24.1264477, 1, -2.22103953e-008, -5.61780666e-009, -5.09713516e-009, -1.51509767e-007, 1.00041723, 2.29195471e-008, -1.00041723, -1.45214912e-007)
1110
p50.CanCollide = false
1111
p50.Locked = true
1112
p50.FormFactor = Enum.FormFactor.Custom
1113
p50.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1114
p50.BottomSurface = Enum.SurfaceType.Smooth
1115
p50.TopSurface = Enum.SurfaceType.Smooth
1116
b50 = Instance.new("BlockMesh", p50)
1117
b50.Name = "Mesh"
1118
b50.Scale = Vector3.new(0.533715785, 0.266858011, 0.300215244)
1119
p51 = Instance.new("Part", m)
1120
p51.BrickColor = BrickColor.new("Really black")
1121
p51.Material = Enum.Material.SmoothPlastic
1122
p51.Name = "Block"
1123
p51.CFrame = CFrame.new(-0.0047756657, 17.0212688, 24.126646, 1, -2.26689671e-008, -5.72609116e-009, -5.20541787e-009, -1.51510022e-007, 1.00042558, 2.33781261e-008, -1.00042558, -1.45217129e-007)
1124
p51.CanCollide = false
1125
p51.Locked = true
1126
p51.FormFactor = Enum.FormFactor.Custom
1127
p51.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1128
p51.BottomSurface = Enum.SurfaceType.Smooth
1129
p51.TopSurface = Enum.SurfaceType.Smooth
1130
b51 = Instance.new("BlockMesh", p51)
1131
b51.Name = "Mesh"
1132
b51.Scale = Vector3.new(0.533715785, 0.266858011, 0.300215244)
1133
p52 = Instance.new("Part", m)
1134
p52.BrickColor = BrickColor.new("Really black")
1135
p52.Material = Enum.Material.SmoothPlastic
1136
p52.Name = "Block"
1137
p52.CFrame = CFrame.new(-0.00477165729, 17.334446, 24.1609974, 1, -2.31275425e-008, -5.83437654e-009, -5.31370148e-009, -1.51510278e-007, 1.00043392, 2.38367086e-008, -1.00043392, -1.45219346e-007)
1138
p52.CanCollide = false
1139
p52.Locked = true
1140
p52.FormFactor = Enum.FormFactor.Custom
1141
p52.Size = Vector3.new(0.341090173, 0.341090739, 0.523380995)
1142
p52.BottomSurface = Enum.SurfaceType.Smooth
1143
p52.TopSurface = Enum.SurfaceType.Smooth
1144
b52 = Instance.new("BlockMesh", p52)
1145
b52.Name = "Mesh"
1146
b52.Scale = Vector3.new(0.533715785, 0.0667145103, 1)
1147
p53 = Instance.new("Part", m)
1148
p53.BrickColor = BrickColor.new("Deep orange")
1149
p53.Material = Enum.Material.Neon
1150
p53.Name = "Circle"
1151
p53.CFrame = CFrame.new(-0.00477161724, 17.3345947, 25.4747982, -6.65724826e-008, -1, -6.5974981e-009, -1.07784714e-007, 4.76686246e-009, 1.00044227, -1.00044227, 1.87171736e-008, -1.01495679e-007)
1152
p53.CanCollide = false
1153
p53.Locked = true
1154
p53.FormFactor = Enum.FormFactor.Custom
1155
p53.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1156
p53.BottomSurface = Enum.SurfaceType.Smooth
1157
p53.TopSurface = Enum.SurfaceType.Smooth
1158
b53 = Instance.new("CylinderMesh", p53)
1159
b53.Name = "Mesh"
1160
b53.Scale = Vector3.new(0.533715785, 0.467001498, 0.42771104)
1161
p54 = Instance.new("Part", m)
1162
p54.BrickColor = BrickColor.new("Really black")
1163
p54.Material = Enum.Material.Neon
1164
p54.Name = "Circle"
1165
p54.CFrame = CFrame.new(-0.00477160793, 17.3347397, 25.4750118, -6.70239686e-008, -1, -6.7057826e-009, -1.07784665e-007, 4.87513985e-009, 1.00045061, -1.00045061, 1.82660429e-008, -1.01497477e-007)
1166
p54.CanCollide = false
1167
p54.Locked = true
1168
p54.FormFactor = Enum.FormFactor.Custom
1169
p54.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1170
p54.BottomSurface = Enum.SurfaceType.Smooth
1171
p54.TopSurface = Enum.SurfaceType.Smooth
1172
b54 = Instance.new("CylinderMesh", p54)
1173
b54.Name = "Mesh"
1174
b54.Scale = Vector3.new(0.533715785, 0.490944952, 0.188277081)
1175
p55 = Instance.new("Part", m)
1176
p55.BrickColor = BrickColor.new("Dark Indigo")
1177
p55.Material = Enum.Material.Metal
1178
p55.CFrame = CFrame.new(-0.00487261312, 17.3358631, 24.8431625, 1.57569445e-007, 7.99628251e-005, -1, -1.00045907, -7.75639055e-005, -1.52042574e-007, -7.75701919e-005, 1.00045907, 7.99498011e-005)
1179
p55.CanCollide = false
1180
p55.Locked = true
1181
p55.FormFactor = Enum.FormFactor.Custom
1182
p55.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1183
p55.BottomSurface = Enum.SurfaceType.Smooth
1184
p55.TopSurface = Enum.SurfaceType.Smooth
1185
b55 = Instance.new("SpecialMesh", p55)
1186
b55.MeshType = Enum.MeshType.Sphere
1187
b55.Name = "Mesh"
1188
b55.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
1189
p56 = Instance.new("Part", m)
1190
p56.BrickColor = BrickColor.new("Dark Indigo")
1191
p56.Material = Enum.Material.Metal
1192
p56.CFrame = CFrame.new(-0.00489160931, 17.3360176, 24.6020527, 1.57678528e-007, 7.9963298e-005, -1, -1.00046766, -7.75645822e-005, -1.51934799e-007, -7.75708468e-005, 1.00046766, 7.99500122e-005)
1193
p56.CanCollide = false
1194
p56.Locked = true
1195
p56.FormFactor = Enum.FormFactor.Custom
1196
p56.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1197
p56.BottomSurface = Enum.SurfaceType.Smooth
1198
p56.TopSurface = Enum.SurfaceType.Smooth
1199
b56 = Instance.new("SpecialMesh", p56)
1200
b56.MeshType = Enum.MeshType.Sphere
1201
b56.Name = "Mesh"
1202
b56.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
1203
p57 = Instance.new("Part", m)
1204
p57.BrickColor = BrickColor.new("Dark Indigo")
1205
p57.Material = Enum.Material.Metal
1206
p57.CFrame = CFrame.new(-0.00487858616, 17.3361664, 25.1031246, 1.57787611e-007, 7.9963771e-005, -1, -1.00047624, -7.75652588e-005, -1.51827024e-007, -7.75715016e-005, 1.00047624, 7.99502232e-005)
1207
p57.CanCollide = false
1208
p57.Locked = true
1209
p57.FormFactor = Enum.FormFactor.Custom
1210
p57.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1211
p57.BottomSurface = Enum.SurfaceType.Smooth
1212
p57.TopSurface = Enum.SurfaceType.Smooth
1213
b57 = Instance.new("SpecialMesh", p57)
1214
b57.MeshType = Enum.MeshType.Sphere
1215
b57.Name = "Mesh"
1216
b57.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
1217
p58 = Instance.new("Part", m)
1218
p58.BrickColor = BrickColor.new("Really black")
1219
p58.Material = Enum.Material.SmoothPlastic
1220
p58.Name = "Block"
1221
p58.CFrame = CFrame.new(-0.00478160288, 16.9596806, 24.0546551, 1, 1.48938852e-007, -1.81332169e-007, 1.68964405e-007, -1.07752044e-007, 1.0004847, 2.01558578e-007, -1.0004847, -1.01534603e-007)
1222
p58.CanCollide = false
1223
p58.Locked = true
1224
p58.FormFactor = Enum.FormFactor.Custom
1225
p58.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1226
p58.BottomSurface = Enum.SurfaceType.Smooth
1227
p58.TopSurface = Enum.SurfaceType.Smooth
1228
b58 = Instance.new("SpecialMesh", p58)
1229
b58.MeshType = Enum.MeshType.Wedge
1230
b58.Name = "WedgeMesh"
1231
b58.Scale = Vector3.new(0.533715785, 0.43030858, 0.0667144954)
1232
p59 = Instance.new("Part", m)
1233
p59.BrickColor = BrickColor.new("Really black")
1234
p59.Material = Enum.Material.SmoothPlastic
1235
p59.Name = "Block"
1236
p59.CFrame = CFrame.new(-0.00478159869, 17.711134, 24.0548553, -1, -2.01216096e-007, 9.40176719e-008, -8.1391633e-008, -1.95222029e-007, -1.00049305, 1.47857392e-007, -1.00049305, 1.89007366e-007)
1237
p59.CanCollide = false
1238
p59.Locked = true
1239
p59.FormFactor = Enum.FormFactor.Custom
1240
p59.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1241
p59.BottomSurface = Enum.SurfaceType.Smooth
1242
p59.TopSurface = Enum.SurfaceType.Smooth
1243
b59 = Instance.new("SpecialMesh", p59)
1244
b59.MeshType = Enum.MeshType.Wedge
1245
b59.Name = "WedgeMesh"
1246
b59.Scale = Vector3.new(0.533715785, 0.430308461, 0.066714488)
1247
p60 = Instance.new("Part", m)
1248
p60.BrickColor = BrickColor.new("Really black")
1249
p60.Material = Enum.Material.SmoothPlastic
1250
p60.Name = "Block"
1251
p60.CFrame = CFrame.new(-0.00477158185, 16.9599533, 24.151247, -1, -6.06010246e-008, -6.70318911e-009, 6.18247498e-009, 1.95222356e-007, 1.00050139, -1.15000091e-007, 1.00050139, -1.89009967e-007)
1252
p60.CanCollide = false
1253
p60.Locked = true
1254
p60.FormFactor = Enum.FormFactor.Custom
1255
p60.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1256
p60.BottomSurface = Enum.SurfaceType.Smooth
1257
p60.TopSurface = Enum.SurfaceType.Smooth
1258
b60 = Instance.new("SpecialMesh", p60)
1259
b60.MeshType = Enum.MeshType.Wedge
1260
b60.Name = "WedgeMesh"
1261
b60.Scale = Vector3.new(0.533715785, 0.133429006, 0.0667144954)
1262
p61 = Instance.new("Part", m)
1263
p61.BrickColor = BrickColor.new("Really black")
1264
p61.Material = Enum.Material.SmoothPlastic
1265
p61.Name = "Block"
1266
p61.CFrame = CFrame.new(-0.00477157859, 17.7114239, 24.1514492, 1, 1.14698487e-007, -8.06112936e-008, -9.3758139e-008, 1.07750871e-007, -1.00050974, -5.9477852e-008, 1.00050974, 1.01540152e-007)
1267
p61.CanCollide = false
1268
p61.Locked = true
1269
p61.FormFactor = Enum.FormFactor.Custom
1270
p61.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1271
p61.BottomSurface = Enum.SurfaceType.Smooth
1272
p61.TopSurface = Enum.SurfaceType.Smooth
1273
b61 = Instance.new("SpecialMesh", p61)
1274
b61.MeshType = Enum.MeshType.Wedge
1275
b61.Name = "WedgeMesh"
1276
b61.Scale = Vector3.new(0.533715785, 0.133429006, 0.066714488)
1277
p62 = Instance.new("Part", m)
1278
p62.BrickColor = BrickColor.new("Dark Indigo")
1279
p62.Material = Enum.Material.Neon
1280
p62.CFrame = CFrame.new(0.00079741748, 16.927433, 23.5033798, -1.67933258e-008, 7.99278641e-005, -1, -0.643061221, -0.766491234, -6.12398726e-005, -0.766491234, 0.643061221, 5.13551895e-005)
1281
p62.CanCollide = false
1282
p62.Locked = true
1283
p62.FormFactor = Enum.FormFactor.Custom
1284
p62.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1285
p62.BottomSurface = Enum.SurfaceType.Smooth
1286
p62.TopSurface = Enum.SurfaceType.Smooth
1287
b62 = Instance.new("SpecialMesh", p62)
1288
b62.MeshType = Enum.MeshType.Sphere
1289
b62.Name = "Mesh"
1290
b62.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
1291
p63 = Instance.new("Part", m)
1292
p63.BrickColor = BrickColor.new("Dark Indigo")
1293
p63.Material = Enum.Material.Neon
1294
p63.CFrame = CFrame.new(0.000782429241, 17.1366653, 23.6502075, -3.03043635e-009, 7.99336412e-005, -1, -0.940160811, -0.342273146, -2.7342714e-005, -0.342273146, 0.940160811, 7.50943873e-005)
1295
p63.CanCollide = false
1296
p63.Locked = true
1297
p63.FormFactor = Enum.FormFactor.Custom
1298
p63.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1299
p63.BottomSurface = Enum.SurfaceType.Smooth
1300
p63.TopSurface = Enum.SurfaceType.Smooth
1301
b63 = Instance.new("SpecialMesh", p63)
1302
b63.MeshType = Enum.MeshType.Sphere
1303
b63.Name = "Mesh"
1304
b63.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
1305
p64 = Instance.new("Part", m)
1306
p64.BrickColor = BrickColor.new("Dark Indigo")
1307
p64.Material = Enum.Material.Neon
1308
p64.Name = "Blade"
1309
p64.CFrame = CFrame.new(0.000641356688, 17.335743, 20.9020824, 7.15408532e-009, 7.99334157e-005, -1, -1.00053501, -7.74263026e-005, 4.5656634e-010, -7.74243817e-005, 1.00053501, 7.99181071e-005)
1310
p64.CanCollide = false
1311
p64.Locked = true
1312
p64.FormFactor = Enum.FormFactor.Custom
1313
p64.Size = Vector3.new(0.341090173, 5.01877022, 0.341090739)
1314
p64.BottomSurface = Enum.SurfaceType.Smooth
1315
p64.TopSurface = Enum.SurfaceType.Smooth
1316
b64 = Instance.new("SpecialMesh", p64)
1317
b64.MeshType = Enum.MeshType.Sphere
1318
b64.Name = "Mesh"
1319
b64.Scale = Vector3.new(0.787231028, 1, 0.333572537)
1320
p65 = Instance.new("Part", m)
1321
p65.BrickColor = BrickColor.new("Dark Indigo")
1322
p65.Material = Enum.Material.Neon
1323
p65.CFrame = CFrame.new(0.00080744864, 16.980526, 23.6458302, -1.31658453e-008, 7.99317349e-005, -1, -0.766410947, -0.643196464, -5.13876876e-005, -0.643196464, 0.766410947, 6.12100048e-005)
1324
p65.CanCollide = false
1325
p65.Locked = true
1326
p65.FormFactor = Enum.FormFactor.Custom
1327
p65.Size = Vector3.new(0.341090173, 0.535896719, 0.341090739)
1328
p65.BottomSurface = Enum.SurfaceType.Smooth
1329
p65.TopSurface = Enum.SurfaceType.Smooth
1330
b65 = Instance.new("SpecialMesh", p65)
1331
b65.MeshType = Enum.MeshType.Sphere
1332
b65.Name = "Mesh"
1333
b65.Scale = Vector3.new(0.253515095, 1, 0.333572537)
1334
p66 = Instance.new("Part", m)
1335
p66.BrickColor = BrickColor.new("Dark Indigo")
1336
p66.Material = Enum.Material.Neon
1337
p66.CFrame = CFrame.new(0.000547376403, 17.3361092, 21.0322189, 7.37782102e-009, 7.99343616e-005, -1, -1.00055218, -7.74254731e-005, 6.87577995e-010, -7.74232903e-005, 1.00055218, 7.99185291e-005)
1338
p66.CanCollide = false
1339
p66.Locked = true
1340
p66.FormFactor = Enum.FormFactor.Custom
1341
p66.Size = Vector3.new(0.341090173, 3.76720667, 0.341090739)
1342
p66.BottomSurface = Enum.SurfaceType.Smooth
1343
p66.TopSurface = Enum.SurfaceType.Smooth
1344
b66 = Instance.new("SpecialMesh", p66)
1345
b66.MeshType = Enum.MeshType.Sphere
1346
b66.Name = "Mesh"
1347
b66.Scale = Vector3.new(0.920660138, 1, 0.333572537)
1348
p67 = Instance.new("Part", m)
1349
p67.BrickColor = BrickColor.new("Gold")
1350
p67.Material = Enum.Material.SmoothPlastic
1351
p67.Reflectance = 0.30000001192093
1352
p67.Name = "Circle"
1353
p67.CFrame = CFrame.new(-0.00478551397, 17.336647, 24.348484, 1, 3.08064045e-008, -3.62128816e-008, -5.07114386e-008, 2.21291032e-007, -1.00056064, 3.00788088e-008, 1.00056064, 2.23485017e-007)
1354
p67.CanCollide = false
1355
p67.Locked = true
1356
p67.FormFactor = Enum.FormFactor.Custom
1357
p67.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1358
p67.BottomSurface = Enum.SurfaceType.Smooth
1359
p67.TopSurface = Enum.SurfaceType.Smooth
1360
b67 = Instance.new("CylinderMesh", p67)
1361
b67.Name = "Mesh"
1362
b67.Scale = Vector3.new(0.400286883, 0.533716023, 0.467001468)
1363
p68 = Instance.new("Part", m)
1364
p68.BrickColor = BrickColor.new("Gold")
1365
p68.Material = Enum.Material.SmoothPlastic
1366
p68.Reflectance = 0.30000001192093
1367
p68.Name = "Circle"
1368
p68.CFrame = CFrame.new(-0.00478850631, 17.3367958, 24.2894917, 1, 3.12650421e-008, -3.61045807e-008, -5.08201019e-008, 2.21288374e-007, -1.00056899, 3.05374463e-008, 1.00056899, 2.23491384e-007)
1369
p68.CanCollide = false
1370
p68.Locked = true
1371
p68.FormFactor = Enum.FormFactor.Custom
1372
p68.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1373
p68.BottomSurface = Enum.SurfaceType.Smooth
1374
p68.TopSurface = Enum.SurfaceType.Smooth
1375
b68 = Instance.new("CylinderMesh", p68)
1376
b68.Name = "Mesh"
1377
b68.Scale = Vector3.new(0.467001408, 0.266858011, 0.467001468)
1378
p69 = Instance.new("Part", m)
1379
p69.BrickColor = BrickColor.new("Really black")
1380
p69.Material = Enum.Material.SmoothPlastic
1381
p69.Name = "Block"
1382
p69.CFrame = CFrame.new(-0.00478150323, 17.0238495, 24.0341129, -1, -2.05844628e-007, 9.51298489e-008, -8.02730185e-008, -1.76898766e-007, -1.00057733, 1.43231958e-007, -1.00057733, 1.79107602e-007)
1383
p69.CanCollide = false
1384
p69.Locked = true
1385
p69.FormFactor = Enum.FormFactor.Custom
1386
p69.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1387
p69.BottomSurface = Enum.SurfaceType.Smooth
1388
p69.TopSurface = Enum.SurfaceType.Smooth
1389
b69 = Instance.new("SpecialMesh", p69)
1390
b69.MeshType = Enum.MeshType.Wedge
1391
b69.Name = "WedgeMesh"
1392
b69.Scale = Vector3.new(0.533715904, 0.29687953, 0.300215244)
1393
p70 = Instance.new("Part", m)
1394
p70.BrickColor = BrickColor.new("Really black")
1395
p70.Material = Enum.Material.SmoothPlastic
1396
p70.Name = "Block"
1397
p70.CFrame = CFrame.new(-0.00478149857, 17.6501446, 24.0343189, 1, 1.43400342e-007, -7.81537324e-009, -7.30847916e-009, -8.94201833e-008, 1.00058568, 2.07126419e-007, -1.00058568, -9.16313638e-008)
1398
p70.CanCollide = false
1399
p70.Locked = true
1400
p70.FormFactor = Enum.FormFactor.Custom
1401
p70.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
1402
p70.BottomSurface = Enum.SurfaceType.Smooth
1403
p70.TopSurface = Enum.SurfaceType.Smooth
1404
b70 = Instance.new("SpecialMesh", p70)
1405
b70.MeshType = Enum.MeshType.Wedge
1406
b70.Name = "WedgeMesh"
1407
b70.Scale = Vector3.new(0.533715785, 0.29687953, 0.300215244)
1408
w1 = Instance.new("Weld", p1)
1409
w1.Name = "Part_Weld"
1410
w1.Part0 = p1
1411
w1.C0 = CFrame.new(-24.1230564, -16.9977722, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1412
w1.Part1 = p2
1413
w1.C1 = CFrame.new(-24.1105461, -17.623558, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1414
w2 = Instance.new("Weld", p2)
1415
w2.Name = "Part_Weld"
1416
w2.Part0 = p2
1417
w2.C0 = CFrame.new(-24.1105461, -17.623558, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1418
w2.Part1 = p3
1419
w2.C1 = CFrame.new(-0.00129098259, -17.3265915, 23.4164867, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
1420
w3 = Instance.new("Weld", p3)
1421
w3.Name = "Part_Weld"
1422
w3.Part0 = p3
1423
w3.C0 = CFrame.new(-0.00129098259, -17.3265915, 23.4164867, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
1424
w3.Part1 = p4
1425
w3.C1 = CFrame.new(0.00478598243, 23.979847, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
1426
w4 = Instance.new("Weld", p4)
1427
w4.Name = "Part_Weld"
1428
w4.Part0 = p4
1429
w4.C0 = CFrame.new(0.00478598243, 23.979847, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
1430
w4.Part1 = p5
1431
w4.C1 = CFrame.new(-0.00582549348, 16.7313747, 24.2155914, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
1432
w5 = Instance.new("Weld", p5)
1433
w5.Name = "Part_Weld"
1434
w5.Part0 = p5
1435
w5.C0 = CFrame.new(-0.00582549348, 16.7313747, 24.2155914, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
1436
w5.Part1 = p6
1437
w5.C1 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1438
w6 = Instance.new("Weld", p6)
1439
w6.Name = "Part_Weld"
1440
w6.Part0 = p6
1441
w6.C0 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1442
w6.Part1 = p7
1443
w6.C1 = CFrame.new(-0.00128898257, -17.3265896, 23.452898, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
1444
w7 = Instance.new("Weld", p7)
1445
w7.Name = "Part_Weld"
1446
w7.Part0 = p7
1447
w7.C0 = CFrame.new(-0.00128898257, -17.3265896, 23.452898, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
1448
w7.Part1 = p8
1449
w7.C1 = CFrame.new(-24.1230564, -16.9977722, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1450
w8 = Instance.new("Weld", p8)
1451
w8.Name = "Part_Weld"
1452
w8.Part0 = p8
1453
w8.C0 = CFrame.new(-24.1230564, -16.9977722, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1454
w8.Part1 = p9
1455
w8.C1 = CFrame.new(-24.1105442, -17.0228176, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1456
w9 = Instance.new("Weld", p9)
1457
w9.Name = "Part_Weld"
1458
w9.Part0 = p9
1459
w9.C0 = CFrame.new(-24.1105442, -17.0228176, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1460
w9.Part1 = p10
1461
w9.C1 = CFrame.new(-0.00128598255, -17.3265877, 23.4904461, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
1462
w10 = Instance.new("Weld", p10)
1463
w10.Name = "Part_Weld"
1464
w10.Part0 = p10
1465
w10.C0 = CFrame.new(-0.00128598255, -17.3265877, 23.4904461, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
1466
w10.Part1 = p11
1467
w10.C1 = CFrame.new(-0.00582148228, 16.721838, 24.3436203, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
1468
w11 = Instance.new("Weld", p11)
1469
w11.Name = "Part_Weld"
1470
w11.Part0 = p11
1471
w11.C0 = CFrame.new(-0.00582148228, 16.721838, 24.3436203, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
1472
w11.Part1 = p12
1473
w11.C1 = CFrame.new(-24.1355762, -17.6235542, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1474
w12 = Instance.new("Weld", p12)
1475
w12.Name = "Part_Weld"
1476
w12.Part0 = p12
1477
w12.C0 = CFrame.new(-24.1355762, -17.6235542, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1478
w12.Part1 = p13
1479
w12.C1 = CFrame.new(-24.1230564, -17.5985184, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1480
w13 = Instance.new("Weld", p13)
1481
w13.Name = "Part_Weld"
1482
w13.Part0 = p13
1483
w13.C0 = CFrame.new(-24.1230564, -17.5985184, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1484
w13.Part1 = p14
1485
w13.C1 = CFrame.new(-0.00582148228, 16.7180405, 24.3436241, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
1486
w14 = Instance.new("Weld", p14)
1487
w14.Name = "Part_Weld"
1488
w14.Part0 = p14
1489
w14.C0 = CFrame.new(-0.00582148228, 16.7180405, 24.3436241, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
1490
w14.Part1 = p15
1491
w14.C1 = CFrame.new(-24.1230602, -17.6451797, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1492
w15 = Instance.new("Weld", p15)
1493
w15.Name = "Part_Weld"
1494
w15.Part0 = p15
1495
w15.C0 = CFrame.new(-24.1230602, -17.6451797, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1496
w15.Part1 = p16
1497
w15.C1 = CFrame.new(0.00581398234, 23.8473282, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
1498
w16 = Instance.new("Weld", p16)
1499
w16.Name = "Part_Weld"
1500
w16.Part0 = p16
1501
w16.C0 = CFrame.new(0.00581398234, 23.8473282, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
1502
w16.Part1 = p17
1503
w16.C1 = CFrame.new(-0.00582549348, 16.7351685, 24.2155857, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
1504
w17 = Instance.new("Weld", p17)
1505
w17.Name = "Part_Weld"
1506
w17.Part0 = p17
1507
w17.C0 = CFrame.new(-0.00582549348, 16.7351685, 24.2155857, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
1508
w17.Part1 = p18
1509
w17.C1 = CFrame.new(0.00582298217, 28.5685654, -8.22870255, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
1510
w18 = Instance.new("Weld", p18)
1511
w18.Name = "Part_Weld"
1512
w18.Part0 = p18
1513
w18.C0 = CFrame.new(0.00582298217, 28.5685654, -8.22870255, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
1514
w18.Part1 = p19
1515
w18.C1 = CFrame.new(-24.1355762, -17.6235542, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1516
w19 = Instance.new("Weld", p19)
1517
w19.Name = "Part_Weld"
1518
w19.Part0 = p19
1519
w19.C0 = CFrame.new(-24.1355762, -17.6235542, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1520
w19.Part1 = p20
1521
w19.C1 = CFrame.new(0.0058269822, 28.5856762, -8.35672283, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
1522
w20 = Instance.new("Weld", p20)
1523
w20.Name = "Part_Weld"
1524
w20.Part0 = p20
1525
w20.C0 = CFrame.new(0.0058269822, 28.5856762, -8.35672283, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
1526
w20.Part1 = p21
1527
w20.C1 = CFrame.new(0.0058269822, 28.5818806, -8.35671997, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
1528
w21 = Instance.new("Weld", p21)
1529
w21.Name = "Part_Weld"
1530
w21.Part0 = p21
1531
w21.C0 = CFrame.new(0.0058269822, 28.5818806, -8.35671997, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
1532
w21.Part1 = p22
1533
w21.C1 = CFrame.new(0.00581398234, 23.8454285, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
1534
w22 = Instance.new("Weld", p22)
1535
w22.Name = "Part_Weld"
1536
w22.Part0 = p22
1537
w22.C0 = CFrame.new(0.00581398234, 23.8454285, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
1538
w22.Part1 = p23
1539
w22.C1 = CFrame.new(-24.1230564, -17.5985184, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1540
w23 = Instance.new("Weld", p23)
1541
w23.Name = "Part_Weld"
1542
w23.Part0 = p23
1543
w23.C0 = CFrame.new(-24.1230564, -17.5985184, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1544
w23.Part1 = p24
1545
w23.C1 = CFrame.new(-24.1355724, -17.0228157, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1546
w24 = Instance.new("Weld", p24)
1547
w24.Name = "Part_Weld"
1548
w24.Part0 = p24
1549
w24.C0 = CFrame.new(-24.1355724, -17.0228157, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1550
w24.Part1 = p25
1551
w24.C1 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1552
w25 = Instance.new("Weld", p25)
1553
w25.Name = "Part_Weld"
1554
w25.Part0 = p25
1555
w25.C0 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1556
w25.Part1 = p26
1557
w25.C1 = CFrame.new(-24.1230602, -17.0444183, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1558
w26 = Instance.new("Weld", p26)
1559
w26.Name = "Part_Weld"
1560
w26.Part0 = p26
1561
w26.C0 = CFrame.new(-24.1230602, -17.0444183, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1562
w26.Part1 = p27
1563
w26.C1 = CFrame.new(0.00582298217, 28.5723495, -8.22870922, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
1564
w27 = Instance.new("Weld", p27)
1565
w27.Name = "Part_Weld"
1566
w27.Part0 = p27
1567
w27.C0 = CFrame.new(0.00582298217, 28.5723495, -8.22870922, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
1568
w27.Part1 = p28
1569
w27.C1 = CFrame.new(-24.1230602, -17.0444183, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1570
w28 = Instance.new("Weld", p28)
1571
w28.Name = "Part_Weld"
1572
w28.Part0 = p28
1573
w28.C0 = CFrame.new(-24.1230602, -17.0444183, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1574
w28.Part1 = p29
1575
w28.C1 = CFrame.new(-24.1105461, -17.0228176, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1576
w29 = Instance.new("Weld", p29)
1577
w29.Name = "Part_Weld"
1578
w29.Part0 = p29
1579
w29.C0 = CFrame.new(-24.1105461, -17.0228176, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1580
w29.Part1 = p30
1581
w29.C1 = CFrame.new(-24.1230602, -17.6451797, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1582
w30 = Instance.new("Weld", p30)
1583
w30.Name = "Part_Weld"
1584
w30.Part0 = p30
1585
w30.C0 = CFrame.new(-24.1230602, -17.6451797, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1586
w30.Part1 = p31
1587
w30.C1 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1588
w31 = Instance.new("Weld", p31)
1589
w31.Name = "Part_Weld"
1590
w31.Part0 = p31
1591
w31.C0 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1592
w31.Part1 = p32
1593
w31.C1 = CFrame.new(-24.1105461, -17.623558, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1594
w32 = Instance.new("Weld", p32)
1595
w32.Name = "Part_Weld"
1596
w32.Part0 = p32
1597
w32.C0 = CFrame.new(-24.1105461, -17.623558, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1598
w32.Part1 = p33
1599
w32.C1 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1600
w33 = Instance.new("Weld", p33)
1601
w33.Name = "Part_Weld"
1602
w33.Part0 = p33
1603
w33.C0 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1604
w33.Part1 = p34
1605
w33.C1 = CFrame.new(-24.1355762, -17.0228157, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1606
w34 = Instance.new("Weld", p34)
1607
w34.Name = "Part_Weld"
1608
w34.Part0 = p34
1609
w34.C0 = CFrame.new(-24.1355762, -17.0228157, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
1610
w34.Part1 = p35
1611
w34.C1 = CFrame.new(14.4940586, -25.472023, -0.00124175288, 1.43580564e-007, -0.996205807, 0.0870786756, 7.99639602e-005, 0.0870786756, 0.996205807, -1, 6.82021982e-006, 7.96725799e-005)
1612
w35 = Instance.new("Weld", p35)
1613
w35.Name = "Part_Weld"
1614
w35.Part0 = p35
1615
w35.C0 = CFrame.new(14.4940586, -25.472023, -0.00124175288, 1.43580564e-007, -0.996205807, 0.0870786756, 7.99639602e-005, 0.0870786756, 0.996205807, -1, 6.82021982e-006, 7.96725799e-005)
1616
w35.Part1 = p36
1617
w35.C1 = CFrame.new(-23.4905338, -18.6877365, -0.00231588027, -6.73044269e-008, 0.965950191, 0.258745164, -7.9960977e-005, -0.258745164, 0.965950191, 1, -2.06246077e-005, 7.72562125e-005)
1618
w36 = Instance.new("Weld", p36)
1619
w36.Name = "Part_Weld"
1620
w36.Part0 = p36
1621
w36.C0 = CFrame.new(-23.4905338, -18.6877365, -0.00231588027, -6.73044269e-008, 0.965950191, 0.258745164, -7.9960977e-005, -0.258745164, 0.965950191, 1, -2.06246077e-005, 7.72562125e-005)
1622
w36.Part1 = p37
1623
w36.C1 = CFrame.new(-20.0270557, -22.4545212, -0.00261686975, -5.65146365e-008, 0.996205807, 0.0870787427, -7.99718109e-005, -0.0870787427, 0.996205807, 1, -6.90764546e-006, 7.96737659e-005)
1624
w37 = Instance.new("Weld", p37)
1625
w37.Name = "Part_Weld"
1626
w37.Part0 = p37
1627
w37.C0 = CFrame.new(-20.0270557, -22.4545212, -0.00261686975, -5.65146365e-008, 0.996205807, 0.0870787427, -7.99718109e-005, -0.0870787427, 0.996205807, 1, -6.90764546e-006, 7.96737659e-005)
1628
w37.Part1 = p38
1629
w37.C1 = CFrame.new(9.9821434, -27.6539307, -0.00138907926, 1.51681888e-007, -0.965950251, 0.258745104, 7.99381232e-005, 0.258745104, 0.965950251, -1, 2.05371834e-005, 7.7255012e-005)
1630
w38 = Instance.new("Weld", p38)
1631
w38.Name = "Circle_Weld"
1632
w38.Part0 = p38
1633
w38.C0 = CFrame.new(9.9821434, -27.6539307, -0.00138907926, 1.51681888e-007, -0.965950251, 0.258745104, 7.99381232e-005, 0.258745104, 0.965950251, -1, 2.05371834e-005, 7.7255012e-005)
1634
w38.Part1 = p39
1635
w38.C1 = CFrame.new(0.0047852057, 25.2979832, -17.3269272, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
1636
w39 = Instance.new("Weld", p39)
1637
w39.Name = "Block_Weld"
1638
w39.Part0 = p39
1639
w39.C0 = CFrame.new(0.0047852057, 25.2979832, -17.3269272, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
1640
w39.Part1 = p40
1641
w39.C1 = CFrame.new(-0.0047786939, 24.1050091, 17.197216, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
1642
w40 = Instance.new("Weld", p40)
1643
w40.Name = "Block_Weld"
1644
w40.Part0 = p40
1645
w40.C0 = CFrame.new(-0.0047786939, 24.1050091, 17.197216, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
1646
w40.Part1 = p41
1647
w40.C1 = CFrame.new(0.00477176718, 24.105011, -17.4589081, 1, 2.07054943e-010, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -3.15302451e-010, 1.00000417, 5.59730822e-008)
1648
w41 = Instance.new("Weld", p41)
1649
w41.Name = "Circle_Weld"
1650
w41.Part0 = p41
1651
w41.C0 = CFrame.new(0.00477176718, 24.105011, -17.4589081, 1, 2.07054943e-010, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -3.15302451e-010, 1.00000417, 5.59730822e-008)
1652
w41.Part1 = p42
1653
w41.C1 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
1654
w42 = Instance.new("Weld", p42)
1655
w42.Name = "Circle_Weld"
1656
w42.Part0 = p42
1657
w42.C0 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
1658
w42.Part1 = p43
1659
w42.C1 = CFrame.new(0.00478120567, 25.3497562, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
1660
w43 = Instance.new("Weld", p43)
1661
w43.Name = "Part_Weld"
1662
w43.Part0 = p43
1663
w43.C0 = CFrame.new(0.00478120567, 25.3497562, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
1664
w43.Part1 = p44
1665
w43.C1 = CFrame.new(-8.3771925, -28.2052784, -0.00306228409, -8.2402039e-008, 0.939670146, -0.34209463, -7.99348854e-005, 0.34209463, 0.939670146, 1, 2.74226113e-005, 7.50846593e-005)
1666
w44 = Instance.new("Weld", p44)
1667
w44.Name = "Part_Weld"
1668
w44.Part0 = p44
1669
w44.C0 = CFrame.new(-8.3771925, -28.2052784, -0.00306228409, -8.2402039e-008, 0.939670146, -0.34209463, -7.99348854e-005, 0.34209463, 0.939670146, 1, 2.74226113e-005, 7.50846593e-005)
1670
w44.Part1 = p45
1671
w44.C1 = CFrame.new(1.65195179, -29.4663048, -0.00316305994, -6.7120709e-008, 0.765997827, -0.642849922, -7.99612535e-005, 0.642849922, 0.765997827, 1, 5.14543863e-005, 6.12074291e-005)
1672
w45 = Instance.new("Weld", p45)
1673
w45.Name = "Part_Weld"
1674
w45.Part0 = p45
1675
w45.C0 = CFrame.new(1.65195179, -29.4663048, -0.00316305994, -6.7120709e-008, 0.765997827, -0.642849922, -7.99612535e-005, 0.642849922, 0.765997827, 1, 5.14543863e-005, 6.12074291e-005)
1676
w45.Part1 = p46
1677
w45.C1 = CFrame.new(6.60119534, -28.6809769, -0.00311731314, -5.62940841e-008, 0.642730832, -0.766097665, -7.99720437e-005, 0.766097665, 0.642730832, 1, 6.13024604e-005, 5.13578198e-005)
1678
w46 = Instance.new("Weld", p46)
1679
w46.Name = "Handle_Weld"
1680
w46.Part0 = p46
1681
w46.C0 = CFrame.new(6.60119534, -28.6809769, -0.00311731314, -5.62940841e-008, 0.642730832, -0.766097665, -7.99720437e-005, 0.766097665, 0.642730832, 1, 6.13024604e-005, 5.13578198e-005)
1682
w46.Part1 = p47
1683
w46.C1 = CFrame.new(0.0047672065, 24.8354683, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
1684
w47 = Instance.new("Weld", p47)
1685
w47.Name = "Block_Weld"
1686
w47.Part0 = p47
1687
w47.C0 = CFrame.new(0.0047672065, 24.8354683, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
1688
w47.Part1 = p48
1689
w47.C1 = CFrame.new(0.00476798182, 17.1448765, 24.2068424, 1, 2.0706413e-010, 5.89352567e-010, 3.15302451e-010, -1.00000417, -1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
1690
w48 = Instance.new("Weld", p48)
1691
w48.Name = "Block_Weld"
1692
w48.Part0 = p48
1693
w48.C0 = CFrame.new(0.00476798182, 17.1448765, 24.2068424, 1, 2.0706413e-010, 5.89352567e-010, 3.15302451e-010, -1.00000417, -1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
1694
w48.Part1 = p49
1695
w48.C1 = CFrame.new(-0.00476645119, -17.5089798, 24.2068386, -1, -8.76302053e-008, -5.89353621e-010, -8.77380799e-008, 1.00000417, 1.22588393e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
1696
w49 = Instance.new("Weld", p49)
1697
w49.Name = "Block_Weld"
1698
w49.Part0 = p49
1699
w49.C0 = CFrame.new(-0.00476645119, -17.5089798, 24.2068386, -1, -8.76302053e-008, -5.89353621e-010, -8.77380799e-008, 1.00000417, 1.22588393e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
1700
w49.Part1 = p50
1701
w49.C1 = CFrame.new(0.00477598188, 24.1163845, -17.6398087, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
1702
w50 = Instance.new("Weld", p50)
1703
w50.Name = "Block_Weld"
1704
w50.Part0 = p50
1705
w50.C0 = CFrame.new(0.00477598188, 24.1163845, -17.6398087, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
1706
w50.Part1 = p51
1707
w50.C1 = CFrame.new(0.00477598188, 24.1163807, -17.0140247, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
1708
w51 = Instance.new("Weld", p51)
1709
w51.Name = "Block_Weld"
1710
w51.Part0 = p51
1711
w51.C0 = CFrame.new(0.00477598188, 24.1163807, -17.0140247, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
1712
w51.Part1 = p52
1713
w51.C1 = CFrame.new(0.00477198185, 24.1505146, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
1714
w52 = Instance.new("Weld", p52)
1715
w52.Name = "Circle_Weld"
1716
w52.Part0 = p52
1717
w52.C0 = CFrame.new(0.00477198185, 24.1505146, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
1718
w52.Part1 = p53
1719
w52.C1 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
1720
w53 = Instance.new("Weld", p53)
1721
w53.Name = "Circle_Weld"
1722
w53.Part0 = p53
1723
w53.C0 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
1724
w53.Part1 = p54
1725
w53.C1 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
1726
w54 = Instance.new("Weld", p54)
1727
w54.Name = "Part_Weld"
1728
w54.Part0 = p54
1729
w54.C0 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
1730
w54.Part1 = p55
1731
w54.C1 = CFrame.new(17.3298321, -24.83041, -0.00685525918, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
1732
w55 = Instance.new("Weld", p55)
1733
w55.Name = "Part_Weld"
1734
w55.Part0 = p55
1735
w55.C0 = CFrame.new(17.3298321, -24.83041, -0.00685525918, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
1736
w55.Part1 = p56
1737
w55.C1 = CFrame.new(17.3298187, -24.589201, -0.00685497746, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
1738
w56 = Instance.new("Weld", p56)
1739
w56.Name = "Part_Weld"
1740
w56.Part0 = p56
1741
w56.C0 = CFrame.new(17.3298187, -24.589201, -0.00685497746, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
1742
w56.Part1 = p57
1743
w56.C1 = CFrame.new(17.3298569, -25.0898247, -0.00688199606, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
1744
w57 = Instance.new("Weld", p57)
1745
w57.Name = "Block_Weld"
1746
w57.Part0 = p57
1747
w57.C0 = CFrame.new(17.3298569, -25.0898247, -0.00688199606, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
1748
w57.Part1 = p58
1749
w57.C1 = CFrame.new(0.00477481494, 24.0429974, -16.9514599, 1, 1.75053344e-007, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -1.75160864e-007, 1.00000417, 5.59724995e-008)
1750
w58 = Instance.new("Weld", p58)
1751
w58.Name = "Block_Weld"
1752
w58.Part0 = p58
1753
w58.C0 = CFrame.new(0.00477481494, 24.0429974, -16.9514599, 1, 1.75053344e-007, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -1.75160864e-007, 1.00000417, 5.59724995e-008)
1754
w58.Part1 = p59
1755
w58.C1 = CFrame.new(-0.00478463899, 24.0429974, 17.7023983, -1, -8.76302053e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380728e-008, -1.00000417, 3.14551158e-008)
1756
w59 = Instance.new("Weld", p59)
1757
w59.Name = "Block_Weld"
1758
w59.Part0 = p59
1759
w59.C0 = CFrame.new(-0.00478463899, 24.0429974, 17.7023983, -1, -8.76302053e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380728e-008, -1.00000417, 3.14551158e-008)
1760
w59.Part1 = p60
1761
w59.C1 = CFrame.new(-0.00476987194, -24.1391392, -16.9514465, -1, -2.07070638e-010, -8.80099833e-008, -8.7551598e-008, 3.14538156e-008, 1.00000417, -3.1531e-010, 1.00000417, -3.14548245e-008)
1762
w60 = Instance.new("Weld", p60)
1763
w60.Name = "Block_Weld"
1764
w60.Part0 = p60
1765
w60.C0 = CFrame.new(-0.00476987194, -24.1391392, -16.9514465, -1, -2.07070638e-010, -8.80099833e-008, -8.7551598e-008, 3.14538156e-008, 1.00000417, -3.1531e-010, 1.00000417, -3.14548245e-008)
1766
w60.Part1 = p61
1767
w60.C1 = CFrame.new(0.00477564055, -24.1391373, 17.7023945, 1, -8.72160655e-008, -8.68385541e-008, 8.72896635e-008, -5.59740911e-008, 1.00000417, -8.71074661e-008, -1.00000417, -5.59733735e-008)
1768
w61 = Instance.new("Weld", p61)
1769
w61.Name = "Part_Weld"
1770
w61.Part0 = p61
1771
w61.C0 = CFrame.new(0.00477564055, -24.1391373, 17.7023945, 1, -8.72160655e-008, -8.68385541e-008, 8.72896635e-008, -5.59740911e-008, 1.00000417, -8.71074661e-008, -1.00000417, -5.59733735e-008)
1772
w61.Part1 = p62
1773
w61.C1 = CFrame.new(28.8705769, -2.13716507, 0.000626247609, 3.0559022e-010, -0.642730772, -0.766097605, 7.99049012e-005, -0.766097605, 0.642730772, -1, -6.12150252e-005, 5.13566411e-005)
1774
w62 = Instance.new("Weld", p62)
1775
w62.Name = "Part_Weld"
1776
w62.Part0 = p62
1777
w62.C0 = CFrame.new(28.8705769, -2.13716507, 0.000626247609, 3.0559022e-010, -0.642730772, -0.766097605, 7.99049012e-005, -0.766097605, 0.642730772, -1, -6.12150252e-005, 5.13566411e-005)
1778
w62.Part1 = p63
1779
w62.C1 = CFrame.new(24.1805763, -16.3523483, -0.000524612726, 3.40151018e-010, -0.939669967, -0.3420946, 7.99047266e-005, -0.3420946, 0.939669967, -1, -2.73351798e-005, 7.50834879e-005)
1780
w63 = Instance.new("Weld", p63)
1781
w63.Name = "Blade_Weld"
1782
w63.Part0 = p63
1783
w63.C0 = CFrame.new(24.1805763, -16.3523483, -0.000524612726, 3.40151018e-010, -0.939669967, -0.3420946, 7.99047266e-005, -0.3420946, 0.939669967, -1, -2.73351798e-005, 7.50834879e-005)
1784
w63.Part1 = p64
1785
w63.C1 = CFrame.new(17.3280849, -20.8895588, -0.00102815893, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
1786
w64 = Instance.new("Weld", p64)
1787
w64.Name = "Part_Weld"
1788
w64.Part0 = p64
1789
w64.C0 = CFrame.new(17.3280849, -20.8895588, -0.00102815893, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
1790
w64.Part1 = p65
1791
w64.C1 = CFrame.new(28.1923103, -7.19278717, 0.000232279766, 3.23780114e-010, -0.765997767, -0.642849863, 7.99048503e-005, -0.642849863, 0.765997767, -1, -5.13669547e-005, 6.12062577e-005)
1792
w65 = Instance.new("Weld", p65)
1793
w65.Name = "Part_Weld"
1794
w65.Part0 = p65
1795
w65.C0 = CFrame.new(28.1923103, -7.19278717, 0.000232279766, 3.23780114e-010, -0.765997767, -0.642849863, 7.99048503e-005, -0.642849863, 0.765997767, -1, -5.13669547e-005, 6.12062577e-005)
1796
w65.Part1 = p66
1797
w65.C1 = CFrame.new(17.3281631, -21.0192661, -0.00113252318, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
1798
w66 = Instance.new("Weld", p66)
1799
w66.Name = "Circle_Weld"
1800
w66.Part0 = p66
1801
w66.C0 = CFrame.new(17.3281631, -21.0192661, -0.00113252318, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
1802
w66.Part1 = p67
1803
w66.C1 = CFrame.new(0.00478675682, -24.3348389, 17.3269215, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
1804
w67 = Instance.new("Weld", p67)
1805
w67.Name = "Circle_Weld"
1806
w67.Part0 = p67
1807
w67.C0 = CFrame.new(0.00478675682, -24.3348389, 17.3269215, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
1808
w67.Part1 = p68
1809
w67.C1 = CFrame.new(0.00478975661, -24.2756767, 17.3269253, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
1810
w68 = Instance.new("Weld", p68)
1811
w68.Name = "Block_Weld"
1812
w68.Part0 = p68
1813
w68.C0 = CFrame.new(0.00478975661, -24.2756767, 17.3269253, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
1814
w68.Part1 = p69
1815
w68.C1 = CFrame.new(-0.00478469487, 24.0202389, 17.0140171, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
1816
w69 = Instance.new("Weld", p69)
1817
w69.Name = "Block_Weld"
1818
w69.Part0 = p69
1819
w69.C0 = CFrame.new(-0.00478469487, 24.0202389, 17.0140171, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
1820
w69.Part1 = p70
1821
w69.C1 = CFrame.new(0.00477778213, 24.0202408, -17.6398048, 1, 2.07054943e-010, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -3.15302451e-010, 1.00000417, 5.59730822e-008)
1822
m.Parent = char
1823
m:MakeJoints()
1824
----------------------------------------------------
1825
local cor = Instance.new("Part", char.Sword)
1826
cor.Name = "Thingy"
1827
cor.Locked = true
1828
cor.BottomSurface = 0
1829
cor.CanCollide = false
1830
cor.Size = Vector3.new(1, 1, 1)
1831
cor.Transparency = 1
1832
cor.TopSurface = 0
1833
corw = Instance.new("Weld", cor)
1834
corw.Part0 = rarm
1835
corw.Part1 = cor
1836
corw.C0 = CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0))
1837
corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1838
weld1 = Instance.new("Weld", char.Sword)
1839
weld1.Part0 = cor
1840
weld1.Part1 = char.Sword.Handle
1841
weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1842
----------------------------------------------------
1843
local m2 = Instance.new("Model")
1844
m2.Name = "Wings"
1845
p1 = Instance.new("Part", m2)
1846
p1.BrickColor = BrickColor.new("Dark Indigo")
1847
p1.Material = Enum.Material.Neon
1848
p1.CFrame = CFrame.new(28.7928066, 27.8741341, 25.9347725, -0.579227924, -0.579227805, -0.573576331, 0.707106769, -0.707106769, 0, -0.405579776, -0.405579716, 0.819152117)
1849
p1.FormFactor = Enum.FormFactor.Custom
1850
p1.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
1851
p1.BottomSurface = Enum.SurfaceType.Smooth
1852
p1.TopSurface = Enum.SurfaceType.Smooth
1853
b1 = Instance.new("SpecialMesh", p1)
1854
b1.MeshType = Enum.MeshType.Sphere
1855
b1.Name = "Mesh"
1856
p2 = Instance.new("Part", m2)
1857
p2.BrickColor = BrickColor.new("Dark Indigo")
1858
p2.Material = Enum.Material.SmoothPlastic
1859
p2.Reflectance = 0.30000001192093
1860
p2.CFrame = CFrame.new(23.8806973, 23.7568359, 26.9065781, -0.573576033, 0.346188396, -0.742403686, 0, -0.906307817, -0.422617972, -0.819152117, -0.24240382, 0.519836783)
1861
p2.CanCollide = false
1862
p2.FormFactor = Enum.FormFactor.Custom
1863
p2.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
1864
p2.BottomSurface = Enum.SurfaceType.Smooth
1865
p2.TopSurface = Enum.SurfaceType.Smooth
1866
b2 = Instance.new("SpecialMesh", p2)
1867
b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
1868
b2.TextureId = ""
1869
b2.MeshType = Enum.MeshType.FileMesh
1870
b2.Name = "Mesh"
1871
b2.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
1872
p3 = Instance.new("Part", m2)
1873
p3.BrickColor = BrickColor.new("Dark Indigo")
1874
p3.Material = Enum.Material.SmoothPlastic
1875
p3.Reflectance = 0.30000001192093
1876
p3.CFrame = CFrame.new(23.7651176, 23.6910381, 26.9875221, -0.573576033, 0.346188247, -0.742403686, -2.40360578e-007, -0.906307697, -0.422617912, -0.819152117, -0.242403969, 0.519836664)
1877
p3.CanCollide = false
1878
p3.FormFactor = Enum.FormFactor.Custom
1879
p3.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
1880
p3.BottomSurface = Enum.SurfaceType.Smooth
1881
p3.TopSurface = Enum.SurfaceType.Smooth
1882
b3 = Instance.new("SpecialMesh", p3)
1883
b3.MeshId = "http://www.roblox.com/asset/?id=3270017"
1884
b3.TextureId = ""
1885
b3.MeshType = Enum.MeshType.FileMesh
1886
b3.Name = "Mesh"
1887
b3.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
1888
p4 = Instance.new("Part", m2)
1889
p4.BrickColor = BrickColor.new("Dark Indigo")
1890
p4.Material = Enum.Material.SmoothPlastic
1891
p4.Reflectance = 0.30000001192093
1892
p4.CFrame = CFrame.new(29.5663891, 25.8075085, 26.4371891, -0.573576391, 0.280166149, 0.769750714, 2.08616257e-007, -0.939692259, 0.342020333, 0.819151878, 0.196174487, 0.538985968)
1893
p4.CanCollide = false
1894
p4.FormFactor = Enum.FormFactor.Custom
1895
p4.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
1896
p4.BottomSurface = Enum.SurfaceType.Smooth
1897
p4.TopSurface = Enum.SurfaceType.Smooth
1898
b4 = Instance.new("SpecialMesh", p4)
1899
b4.MeshId = "http://www.roblox.com/asset/?id=3270017"
1900
b4.TextureId = ""
1901
b4.MeshType = Enum.MeshType.FileMesh
1902
b4.Name = "Mesh"
1903
b4.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
1904
p5 = Instance.new("Part", m2)
1905
p5.BrickColor = BrickColor.new("Dark Indigo")
1906
p5.Material = Enum.Material.SmoothPlastic
1907
p5.Reflectance = 0.30000001192093
1908
p5.CFrame = CFrame.new(23.880703, 23.7568455, 26.9065876, -0.573576212, 0.346188098, -0.742403805, -4.76837158e-007, -0.906307578, -0.422617912, -0.819152236, -0.242404133, 0.519836485)
1909
p5.CanCollide = false
1910
p5.FormFactor = Enum.FormFactor.Custom
1911
p5.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
1912
p5.BottomSurface = Enum.SurfaceType.Smooth
1913
p5.TopSurface = Enum.SurfaceType.Smooth
1914
b5 = Instance.new("SpecialMesh", p5)
1915
b5.MeshId = "http://www.roblox.com/asset/?id=3270017"
1916
b5.TextureId = ""
1917
b5.MeshType = Enum.MeshType.FileMesh
1918
b5.Name = "Mesh"
1919
b5.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
1920
p6 = Instance.new("Part", m2)
1921
p6.BrickColor = BrickColor.new("Dark Indigo")
1922
p6.Material = Enum.Material.SmoothPlastic
1923
p6.Reflectance = 0.30000001192093
1924
p6.CFrame = CFrame.new(23.6530266, 23.6272411, 27.0660267, -0.573576212, 0.346187949, -0.742403805, -7.17197622e-007, -0.906307459, -0.422617853, -0.819152236, -0.242404282, 0.519836366)
1925
p6.CanCollide = false
1926
p6.FormFactor = Enum.FormFactor.Custom
1927
p6.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
1928
p6.BottomSurface = Enum.SurfaceType.Smooth
1929
p6.TopSurface = Enum.SurfaceType.Smooth
1930
b6 = Instance.new("SpecialMesh", p6)
1931
b6.MeshId = "http://www.roblox.com/asset/?id=3270017"
1932
b6.TextureId = ""
1933
b6.MeshType = Enum.MeshType.FileMesh
1934
b6.Name = "Mesh"
1935
b6.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
1936
p7 = Instance.new("Part", m2)
1937
p7.BrickColor = BrickColor.new("Dark Indigo")
1938
p7.Material = Enum.Material.SmoothPlastic
1939
p7.Reflectance = 0.30000001192093
1940
p7.CFrame = CFrame.new(23.7651253, 23.6910515, 26.9875393, -0.573576212, 0.3461878, -0.742403805, -9.57558086e-007, -0.90630734, -0.422617793, -0.819152236, -0.242404431, 0.519836247)
1941
p7.CanCollide = false
1942
p7.FormFactor = Enum.FormFactor.Custom
1943
p7.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
1944
p7.BottomSurface = Enum.SurfaceType.Smooth
1945
p7.TopSurface = Enum.SurfaceType.Smooth
1946
b7 = Instance.new("SpecialMesh", p7)
1947
b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
1948
b7.TextureId = ""
1949
b7.MeshType = Enum.MeshType.FileMesh
1950
b7.Name = "Mesh"
1951
b7.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
1952
p8 = Instance.new("Part", m2)
1953
p8.BrickColor = BrickColor.new("Dark Indigo")
1954
p8.Material = Enum.Material.SmoothPlastic
1955
p8.Reflectance = 0.30000001192093
1956
p8.CFrame = CFrame.new(23.6530304, 23.6272488, 27.0660381, -0.573576212, 0.346187651, -0.742403805, -1.19791855e-006, -0.90630722, -0.422617733, -0.819152236, -0.24240458, 0.519836128)
1957
p8.CanCollide = false
1958
p8.FormFactor = Enum.FormFactor.Custom
1959
p8.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
1960
p8.BottomSurface = Enum.SurfaceType.Smooth
1961
p8.TopSurface = Enum.SurfaceType.Smooth
1962
b8 = Instance.new("SpecialMesh", p8)
1963
b8.MeshId = "http://www.roblox.com/asset/?id=3270017"
1964
b8.TextureId = ""
1965
b8.MeshType = Enum.MeshType.FileMesh
1966
b8.Name = "Mesh"
1967
b8.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
1968
p9 = Instance.new("Part", m2)
1969
p9.BrickColor = BrickColor.new("Dark Indigo")
1970
p9.Material = Enum.Material.SmoothPlastic
1971
p9.Reflectance = 0.30000001192093
1972
p9.CFrame = CFrame.new(30.2536392, 23.691061, 26.9184284, -0.573576212, -0.346188962, 0.74240309, 4.47034836e-007, -0.906307578, -0.422616601, 0.81915164, -0.242404819, 0.519836843)
1973
p9.CanCollide = false
1974
p9.FormFactor = Enum.FormFactor.Custom
1975
p9.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
1976
p9.BottomSurface = Enum.SurfaceType.Smooth
1977
p9.TopSurface = Enum.SurfaceType.Smooth
1978
b9 = Instance.new("SpecialMesh", p9)
1979
b9.MeshId = "http://www.roblox.com/asset/?id=3270017"
1980
b9.TextureId = ""
1981
b9.MeshType = Enum.MeshType.FileMesh
1982
b9.Name = "Mesh"
1983
b9.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
1984
p10 = Instance.new("Part", m2)
1985
p10.BrickColor = BrickColor.new("Dark Indigo")
1986
p10.Material = Enum.Material.SmoothPlastic
1987
p10.Reflectance = 0.30000001192093
1988
p10.CFrame = CFrame.new(27.9471893, 26.8180733, 25.3034286, -0.573576212, 0.469845235, 0.671010077, 2.86794574e-007, -0.819150567, 0.573576927, 0.81915164, 0.328989446, 0.469847172)
1989
p10.CanCollide = false
1990
p10.FormFactor = Enum.FormFactor.Custom
1991
p10.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
1992
p10.BottomSurface = Enum.SurfaceType.Smooth
1993
p10.TopSurface = Enum.SurfaceType.Smooth
1994
b10 = Instance.new("SpecialMesh", p10)
1995
b10.MeshId = "http://www.roblox.com/asset/?id=3270017"
1996
b10.TextureId = ""
1997
b10.MeshType = Enum.MeshType.FileMesh
1998
b10.Name = "Mesh"
1999
b10.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2000
p11 = Instance.new("Part", m2)
2001
p11.BrickColor = BrickColor.new("Dark Indigo")
2002
p11.Material = Enum.Material.SmoothPlastic
2003
p11.Reflectance = 0.30000001192093
2004
p11.CFrame = CFrame.new(27.8153667, 25.7751122, 25.211132, -0.573576212, 0.469845206, 0.671010017, 3.03888498e-007, -0.819150567, 0.573576987, 0.81915164, 0.328989416, 0.469847172)
2005
p11.CanCollide = false
2006
p11.FormFactor = Enum.FormFactor.Custom
2007
p11.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2008
p11.BottomSurface = Enum.SurfaceType.Smooth
2009
p11.TopSurface = Enum.SurfaceType.Smooth
2010
b11 = Instance.new("SpecialMesh", p11)
2011
b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
2012
b11.TextureId = ""
2013
b11.MeshType = Enum.MeshType.FileMesh
2014
b11.Name = "Mesh"
2015
b11.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2016
p12 = Instance.new("Part", m2)
2017
p12.BrickColor = BrickColor.new("Dark Indigo")
2018
p12.Material = Enum.Material.SmoothPlastic
2019
p12.Reflectance = 0.30000001192093
2020
p12.CFrame = CFrame.new(29.655653, 24.6090927, 26.4997177, -0.573576212, 0.212011248, 0.791239619, 2.79475898e-007, -0.965924561, 0.258820325, 0.81915164, 0.14845185, 0.554032922)
2021
p12.CanCollide = false
2022
p12.FormFactor = Enum.FormFactor.Custom
2023
p12.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2024
p12.BottomSurface = Enum.SurfaceType.Smooth
2025
p12.TopSurface = Enum.SurfaceType.Smooth
2026
b12 = Instance.new("SpecialMesh", p12)
2027
b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
2028
b12.TextureId = ""
2029
b12.MeshType = Enum.MeshType.FileMesh
2030
b12.Name = "Mesh"
2031
b12.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2032
p13 = Instance.new("Part", m2)
2033
p13.BrickColor = BrickColor.new("Dark Indigo")
2034
p13.Material = Enum.Material.SmoothPlastic
2035
p13.Reflectance = 0.30000001192093
2036
p13.CFrame = CFrame.new(27.9198303, 25.8644161, 25.2842865, -0.573576212, 0.469845116, 0.671010017, 2.51205847e-007, -0.819150507, 0.573577106, 0.81915164, 0.328989446, 0.469847202)
2037
p13.CanCollide = false
2038
p13.FormFactor = Enum.FormFactor.Custom
2039
p13.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2040
p13.BottomSurface = Enum.SurfaceType.Smooth
2041
p13.TopSurface = Enum.SurfaceType.Smooth
2042
b13 = Instance.new("SpecialMesh", p13)
2043
b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
2044
b13.TextureId = ""
2045
b13.MeshType = Enum.MeshType.FileMesh
2046
b13.Name = "Mesh"
2047
b13.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2048
p14 = Instance.new("Part", m2)
2049
p14.BrickColor = BrickColor.new("Dark Indigo")
2050
p14.Material = Enum.Material.SmoothPlastic
2051
p14.Reflectance = 0.30000001192093
2052
p14.CFrame = CFrame.new(29.778841, 24.6493893, 26.5859776, -0.573576212, 0.212011158, 0.791239619, 2.26793262e-007, -0.965924621, 0.258820474, 0.81915164, 0.148451865, 0.554032922)
2053
p14.CanCollide = false
2054
p14.FormFactor = Enum.FormFactor.Custom
2055
p14.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2056
p14.BottomSurface = Enum.SurfaceType.Smooth
2057
p14.TopSurface = Enum.SurfaceType.Smooth
2058
b14 = Instance.new("SpecialMesh", p14)
2059
b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
2060
b14.TextureId = ""
2061
b14.MeshType = Enum.MeshType.FileMesh
2062
b14.Name = "Mesh"
2063
b14.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2064
p15 = Instance.new("Part", m2)
2065
p15.BrickColor = BrickColor.new("Dark Indigo")
2066
p15.Material = Enum.Material.SmoothPlastic
2067
p15.Reflectance = 0.30000001192093
2068
p15.CFrame = CFrame.new(29.3303242, 25.7026424, 26.271925, -0.573576212, 0.280165315, 0.769750893, 1.98523225e-007, -0.939691305, 0.342021316, 0.81915164, 0.196174055, 0.538986266)
2069
p15.CanCollide = false
2070
p15.FormFactor = Enum.FormFactor.Custom
2071
p15.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2072
p15.BottomSurface = Enum.SurfaceType.Smooth
2073
p15.TopSurface = Enum.SurfaceType.Smooth
2074
b15 = Instance.new("SpecialMesh", p15)
2075
b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
2076
b15.TextureId = ""
2077
b15.MeshType = Enum.MeshType.FileMesh
2078
b15.Name = "Mesh"
2079
b15.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2080
p16 = Instance.new("Part", m2)
2081
p16.BrickColor = BrickColor.new("Dark Indigo")
2082
p16.Material = Enum.Material.SmoothPlastic
2083
p16.Reflectance = 0.30000001192093
2084
p16.CFrame = CFrame.new(29.8983212, 24.6884689, 26.6696377, -0.573576272, 0.212011099, 0.791239798, 1.39939146e-007, -0.965924501, 0.258820534, 0.81915158, 0.148451924, 0.554033041)
2085
p16.CanCollide = false
2086
p16.FormFactor = Enum.FormFactor.Custom
2087
p16.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
2088
p16.BottomSurface = Enum.SurfaceType.Smooth
2089
p16.TopSurface = Enum.SurfaceType.Smooth
2090
b16 = Instance.new("SpecialMesh", p16)
2091
b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
2092
b16.TextureId = ""
2093
b16.MeshType = Enum.MeshType.FileMesh
2094
b16.Name = "Mesh"
2095
b16.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2096
p17 = Instance.new("Part", m2)
2097
p17.BrickColor = BrickColor.new("Dark Indigo")
2098
p17.Material = Enum.Material.SmoothPlastic
2099
p17.Reflectance = 0.30000001192093
2100
p17.CFrame = CFrame.new(29.5664043, 25.8075294, 26.4372196, -0.573576272, 0.280165255, 0.769751072, 1.1166911e-007, -0.939691126, 0.342021376, 0.81915158, 0.196174115, 0.538986385)
2101
p17.CanCollide = false
2102
p17.FormFactor = Enum.FormFactor.Custom
2103
p17.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
2104
p17.BottomSurface = Enum.SurfaceType.Smooth
2105
p17.TopSurface = Enum.SurfaceType.Smooth
2106
b17 = Instance.new("SpecialMesh", p17)
2107
b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
2108
b17.TextureId = ""
2109
b17.MeshType = Enum.MeshType.FileMesh
2110
b17.Name = "Mesh"
2111
b17.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2112
p18 = Instance.new("Part", m2)
2113
p18.BrickColor = BrickColor.new("Dark Indigo")
2114
p18.Material = Enum.Material.SmoothPlastic
2115
p18.Reflectance = 0.30000001192093
2116
p18.CFrame = CFrame.new(28.021162, 25.9510212, 25.3552322, -0.573576331, 0.469845086, 0.671010435, 8.10900147e-008, -0.819150269, 0.573577285, 0.819151521, 0.328989595, 0.469847381)
2117
p18.CanCollide = false
2118
p18.FormFactor = Enum.FormFactor.Custom
2119
p18.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
2120
p18.BottomSurface = Enum.SurfaceType.Smooth
2121
p18.TopSurface = Enum.SurfaceType.Smooth
2122
b18 = Instance.new("SpecialMesh", p18)
2123
b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
2124
b18.TextureId = ""
2125
b18.MeshType = Enum.MeshType.FileMesh
2126
b18.Name = "Mesh"
2127
b18.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2128
p19 = Instance.new("Part", m2)
2129
p19.BrickColor = BrickColor.new("Dark Indigo")
2130
p19.Material = Enum.Material.SmoothPlastic
2131
p19.Reflectance = 0.30000001192093
2132
p19.CFrame = CFrame.new(30.3657436, 23.6272507, 26.9969234, -0.573576272, -0.346189439, 0.74240303, -9.24166343e-009, -0.906307697, -0.422616035, 0.819151521, -0.242404714, 0.519837141)
2133
p19.CanCollide = false
2134
p19.FormFactor = Enum.FormFactor.Custom
2135
p19.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
2136
p19.BottomSurface = Enum.SurfaceType.Smooth
2137
p19.TopSurface = Enum.SurfaceType.Smooth
2138
b19 = Instance.new("SpecialMesh", p19)
2139
b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
2140
b19.TextureId = ""
2141
b19.MeshType = Enum.MeshType.FileMesh
2142
b19.Name = "Mesh"
2143
b19.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2144
p20 = Instance.new("Part", m2)
2145
p20.BrickColor = BrickColor.new("Dark Indigo")
2146
p20.Material = Enum.Material.SmoothPlastic
2147
p20.Reflectance = 0.30000001192093
2148
p20.CFrame = CFrame.new(30.2536469, 23.6910553, 26.9184265, -0.573576272, -0.346189529, 0.742402911, -2.63107069e-007, -0.906307518, -0.422615975, 0.819151521, -0.242404476, 0.519837141)
2149
p20.CanCollide = false
2150
p20.FormFactor = Enum.FormFactor.Custom
2151
p20.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2152
p20.BottomSurface = Enum.SurfaceType.Smooth
2153
p20.TopSurface = Enum.SurfaceType.Smooth
2154
b20 = Instance.new("SpecialMesh", p20)
2155
b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
2156
b20.TextureId = ""
2157
b20.MeshType = Enum.MeshType.FileMesh
2158
b20.Name = "Mesh"
2159
b20.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2160
p21 = Instance.new("Part", m2)
2161
p21.BrickColor = BrickColor.new("Dark Indigo")
2162
p21.Material = Enum.Material.SmoothPlastic
2163
p21.Reflectance = 0.30000001192093
2164
p21.CFrame = CFrame.new(27.8458843, 26.7314644, 25.2324886, -0.573576272, 0.469844759, 0.671010494, -4.23347274e-007, -0.819149971, 0.573577166, 0.819151521, 0.328989863, 0.469847023)
2165
p21.CanCollide = false
2166
p21.FormFactor = Enum.FormFactor.Custom
2167
p21.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2168
p21.BottomSurface = Enum.SurfaceType.Smooth
2169
p21.TopSurface = Enum.SurfaceType.Smooth
2170
b21 = Instance.new("SpecialMesh", p21)
2171
b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
2172
b21.TextureId = ""
2173
b21.MeshType = Enum.MeshType.FileMesh
2174
b21.Name = "Mesh"
2175
b21.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2176
p22 = Instance.new("Part", m2)
2177
p22.BrickColor = BrickColor.new("Dark Indigo")
2178
p22.Material = Enum.Material.SmoothPlastic
2179
p22.Reflectance = 0.30000001192093
2180
p22.CFrame = CFrame.new(30.1380615, 23.756855, 26.8374882, -0.573576212, -0.346189648, 0.742402732, -5.1367897e-007, -0.906307459, -0.422615856, 0.819151521, -0.242404282, 0.519837141)
2181
p22.CanCollide = false
2182
p22.FormFactor = Enum.FormFactor.Custom
2183
p22.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2184
p22.BottomSurface = Enum.SurfaceType.Smooth
2185
p22.TopSurface = Enum.SurfaceType.Smooth
2186
b22 = Instance.new("SpecialMesh", p22)
2187
b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
2188
b22.TextureId = ""
2189
b22.MeshType = Enum.MeshType.FileMesh
2190
b22.Name = "Mesh"
2191
b22.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2192
p23 = Instance.new("Part", m2)
2193
p23.BrickColor = BrickColor.new("Dark Indigo")
2194
p23.Material = Enum.Material.SmoothPlastic
2195
p23.Reflectance = 0.30000001192093
2196
p23.CFrame = CFrame.new(29.4501858, 25.7558784, 26.3558216, -0.573576212, 0.280164778, 0.769751191, -6.73919146e-007, -0.939690709, 0.342021406, 0.819151521, 0.196174636, 0.538986027)
2197
p23.CanCollide = false
2198
p23.FormFactor = Enum.FormFactor.Custom
2199
p23.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2200
p23.BottomSurface = Enum.SurfaceType.Smooth
2201
p23.TopSurface = Enum.SurfaceType.Smooth
2202
b23 = Instance.new("SpecialMesh", p23)
2203
b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
2204
b23.TextureId = ""
2205
b23.MeshType = Enum.MeshType.FileMesh
2206
b23.Name = "Mesh"
2207
b23.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2208
p24 = Instance.new("Part", m2)
2209
p24.BrickColor = BrickColor.new("Dark Indigo")
2210
p24.Material = Enum.Material.SmoothPlastic
2211
p24.Reflectance = 0.30000001192093
2212
p24.CFrame = CFrame.new(29.3303471, 25.702631, 26.2719078, -0.573576272, 0.280164808, 0.76975143, -7.04498234e-007, -0.939690709, 0.342021465, 0.819151461, 0.196174651, 0.538986087)
2213
p24.CanCollide = false
2214
p24.FormFactor = Enum.FormFactor.Custom
2215
p24.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2216
p24.BottomSurface = Enum.SurfaceType.Smooth
2217
p24.TopSurface = Enum.SurfaceType.Smooth
2218
b24 = Instance.new("SpecialMesh", p24)
2219
b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
2220
b24.TextureId = ""
2221
b24.MeshType = Enum.MeshType.FileMesh
2222
b24.Name = "Mesh"
2223
b24.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2224
p25 = Instance.new("Part", m2)
2225
p25.BrickColor = BrickColor.new("Dark Indigo")
2226
p25.Material = Enum.Material.SmoothPlastic
2227
p25.Reflectance = 0.30000001192093
2228
p25.CFrame = CFrame.new(29.7788715, 24.6493816, 26.5859661, -0.573576331, 0.212010548, 0.791240335, -7.63082312e-007, -0.965923905, 0.258820742, 0.819151402, 0.14845252, 0.554032862)
2229
p25.CanCollide = false
2230
p25.FormFactor = Enum.FormFactor.Custom
2231
p25.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2232
p25.BottomSurface = Enum.SurfaceType.Smooth
2233
p25.TopSurface = Enum.SurfaceType.Smooth
2234
b25 = Instance.new("SpecialMesh", p25)
2235
b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
2236
b25.TextureId = ""
2237
b25.MeshType = Enum.MeshType.FileMesh
2238
b25.Name = "Mesh"
2239
b25.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2240
p26 = Instance.new("Part", m2)
2241
p26.BrickColor = BrickColor.new("Dark Indigo")
2242
p26.Material = Enum.Material.SmoothPlastic
2243
p26.Reflectance = 0.30000001192093
2244
p26.CFrame = CFrame.new(29.450201, 25.7558823, 26.3558235, -0.573576331, 0.280164748, 0.769751668, -7.91352306e-007, -0.93969059, 0.342021525, 0.819151402, 0.196174681, 0.538986146)
2245
p26.CanCollide = false
2246
p26.FormFactor = Enum.FormFactor.Custom
2247
p26.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2248
p26.BottomSurface = Enum.SurfaceType.Smooth
2249
p26.TopSurface = Enum.SurfaceType.Smooth
2250
b26 = Instance.new("SpecialMesh", p26)
2251
b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
2252
b26.TextureId = ""
2253
b26.MeshType = Enum.MeshType.FileMesh
2254
b26.Name = "Mesh"
2255
b26.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2256
p27 = Instance.new("Part", m2)
2257
p27.BrickColor = BrickColor.new("Dark Indigo")
2258
p27.Material = Enum.Material.SmoothPlastic
2259
p27.Reflectance = 0.30000001192093
2260
p27.CFrame = CFrame.new(30.3657703, 23.6272449, 26.9969063, -0.57357645, -0.346190155, 0.74240309, -9.161393e-007, -0.90630734, -0.422615707, 0.819151342, -0.242404088, 0.51983732)
2261
p27.CanCollide = false
2262
p27.FormFactor = Enum.FormFactor.Custom
2263
p27.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
2264
p27.BottomSurface = Enum.SurfaceType.Smooth
2265
p27.TopSurface = Enum.SurfaceType.Smooth
2266
b27 = Instance.new("SpecialMesh", p27)
2267
b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
2268
b27.TextureId = ""
2269
b27.MeshType = Enum.MeshType.FileMesh
2270
b27.Name = "Mesh"
2271
b27.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2272
p28 = Instance.new("Part", m2)
2273
p28.BrickColor = BrickColor.new("Dark Indigo")
2274
p28.Material = Enum.Material.SmoothPlastic
2275
p28.Reflectance = 0.30000001192093
2276
p28.CFrame = CFrame.new(28.0211868, 25.9510098, 25.3552094, -0.57357645, 0.469844639, 0.67101109, -1.07637948e-006, -0.819149673, 0.573577106, 0.819151342, 0.328990191, 0.469846785)
2277
p28.CanCollide = false
2278
p28.FormFactor = Enum.FormFactor.Custom
2279
p28.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
2280
p28.BottomSurface = Enum.SurfaceType.Smooth
2281
p28.TopSurface = Enum.SurfaceType.Smooth
2282
b28 = Instance.new("SpecialMesh", p28)
2283
b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
2284
b28.TextureId = ""
2285
b28.MeshType = Enum.MeshType.FileMesh
2286
b28.Name = "Mesh"
2287
b28.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2288
p29 = Instance.new("Part", m2)
2289
p29.BrickColor = BrickColor.new("Dark Indigo")
2290
p29.Material = Enum.Material.Neon
2291
p29.CFrame = CFrame.new(31.2683067, 23.2277946, 27.6474876, 0.280168235, -0.769749522, -0.573576212, 0.939691305, 0.342017233, -1.0690095e-006, 0.19617486, -0.538985491, 0.819151521)
2292
p29.FormFactor = Enum.FormFactor.Custom
2293
p29.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
2294
p29.BottomSurface = Enum.SurfaceType.Smooth
2295
p29.TopSurface = Enum.SurfaceType.Smooth
2296
b29 = Instance.new("SpecialMesh", p29)
2297
b29.MeshType = Enum.MeshType.Sphere
2298
b29.Name = "Mesh"
2299
p30 = Instance.new("Part", m2)
2300
p30.BrickColor = BrickColor.new("Dark Indigo")
2301
p30.Material = Enum.Material.SmoothPlastic
2302
p30.Reflectance = 0.30000001192093
2303
p30.CFrame = CFrame.new(29.655632, 24.6090698, 26.4996777, -0.573576212, 0.2120094, 0.791238904, -1.13902195e-006, -0.965922236, 0.258820891, 0.819151521, 0.148452237, 0.554032147)
2304
p30.CanCollide = false
2305
p30.FormFactor = Enum.FormFactor.Custom
2306
p30.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2307
p30.BottomSurface = Enum.SurfaceType.Smooth
2308
p30.TopSurface = Enum.SurfaceType.Smooth
2309
b30 = Instance.new("SpecialMesh", p30)
2310
b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
2311
b30.TextureId = ""
2312
b30.MeshType = Enum.MeshType.FileMesh
2313
b30.Name = "Mesh"
2314
b30.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2315
p31 = Instance.new("Part", m2)
2316
p31.BrickColor = BrickColor.new("Dark Indigo")
2317
p31.Material = Enum.Material.SmoothPlastic
2318
p31.Reflectance = 0.30000001192093
2319
p31.CFrame = CFrame.new(30.138031, 23.7568359, 26.8374538, -0.573576212, -0.346189976, 0.742401063, -1.26856219e-006, -0.906306148, -0.422614396, 0.819151521, -0.242403775, 0.519836485)
2320
p31.CanCollide = false
2321
p31.FormFactor = Enum.FormFactor.Custom
2322
p31.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2323
p31.BottomSurface = Enum.SurfaceType.Smooth
2324
p31.TopSurface = Enum.SurfaceType.Smooth
2325
b31 = Instance.new("SpecialMesh", p31)
2326
b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
2327
b31.TextureId = ""
2328
b31.MeshType = Enum.MeshType.FileMesh
2329
b31.Name = "Mesh"
2330
b31.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2331
p32 = Instance.new("Part", m2)
2332
p32.BrickColor = BrickColor.new("Dark Indigo")
2333
p32.Material = Enum.Material.SmoothPlastic
2334
p32.Reflectance = 0.30000001192093
2335
p32.CFrame = CFrame.new(27.741394, 26.6421375, 25.1592979, -0.573576212, 0.469842911, 0.671009958, -1.42880219e-006, -0.819147944, 0.573576748, 0.819151521, 0.328989625, 0.4698461)
2336
p32.CanCollide = false
2337
p32.FormFactor = Enum.FormFactor.Custom
2338
p32.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2339
p32.BottomSurface = Enum.SurfaceType.Smooth
2340
p32.TopSurface = Enum.SurfaceType.Smooth
2341
b32 = Instance.new("SpecialMesh", p32)
2342
b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
2343
b32.TextureId = ""
2344
b32.MeshType = Enum.MeshType.FileMesh
2345
b32.Name = "Mesh"
2346
b32.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2347
p33 = Instance.new("Part", m2)
2348
p33.BrickColor = BrickColor.new("Dark Indigo")
2349
p33.Material = Enum.Material.Neon
2350
p33.CFrame = CFrame.new(32.7100258, 25.2490444, 28.6569691, -0.14224124, -0.806705832, -0.573576093, 0.984804153, -0.173650295, -1.38238238e-006, -0.0996002704, -0.564861953, 0.819151759)
2351
p33.FormFactor = Enum.FormFactor.Custom
2352
p33.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
2353
p33.BottomSurface = Enum.SurfaceType.Smooth
2354
p33.TopSurface = Enum.SurfaceType.Smooth
2355
b33 = Instance.new("SpecialMesh", p33)
2356
b33.MeshType = Enum.MeshType.Sphere
2357
b33.Name = "Mesh"
2358
p34 = Instance.new("Part", m2)
2359
p34.BrickColor = BrickColor.new("Dark Indigo")
2360
p34.Material = Enum.Material.SmoothPlastic
2361
p34.Reflectance = 0.30000001192093
2362
p34.CFrame = CFrame.new(27.919817, 25.8643856, 25.2842369, -0.573576391, 0.469842792, 0.671009898, -1.37759764e-006, -0.819147885, 0.573576868, 0.8191517, 0.328989476, 0.46984604)
2363
p34.CanCollide = false
2364
p34.FormFactor = Enum.FormFactor.Custom
2365
p34.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2366
p34.BottomSurface = Enum.SurfaceType.Smooth
2367
p34.TopSurface = Enum.SurfaceType.Smooth
2368
b34 = Instance.new("SpecialMesh", p34)
2369
b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
2370
b34.TextureId = ""
2371
b34.MeshType = Enum.MeshType.FileMesh
2372
b34.Name = "Mesh"
2373
b34.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2374
p35 = Instance.new("Part", m2)
2375
p35.BrickColor = BrickColor.new("Dark Indigo")
2376
p35.Material = Enum.Material.SmoothPlastic
2377
p35.Reflectance = 0.30000001192093
2378
p35.CFrame = CFrame.new(29.8982925, 24.6884441, 26.6695824, -0.573576391, 0.212008998, 0.791238666, -1.40201018e-006, -0.965921998, 0.25882113, 0.8191517, 0.148452297, 0.554031909)
2379
p35.CanCollide = false
2380
p35.FormFactor = Enum.FormFactor.Custom
2381
p35.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
2382
p35.BottomSurface = Enum.SurfaceType.Smooth
2383
p35.TopSurface = Enum.SurfaceType.Smooth
2384
b35 = Instance.new("SpecialMesh", p35)
2385
b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
2386
b35.TextureId = ""
2387
b35.MeshType = Enum.MeshType.FileMesh
2388
b35.Name = "Mesh"
2389
b35.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2390
p36 = Instance.new("Part", m2)
2391
p36.BrickColor = BrickColor.new("Dark Indigo")
2392
p36.Material = Enum.Material.SmoothPlastic
2393
p36.Reflectance = 0.30000001192093
2394
p36.CFrame = CFrame.new(27.8153496, 25.7750854, 25.2110863, -0.573576391, 0.469842672, 0.671009898, -1.43028012e-006, -0.819147885, 0.573576927, 0.8191517, 0.328989506, 0.4698461)
2395
p36.CanCollide = false
2396
p36.FormFactor = Enum.FormFactor.Custom
2397
p36.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2398
p36.BottomSurface = Enum.SurfaceType.Smooth
2399
p36.TopSurface = Enum.SurfaceType.Smooth
2400
b36 = Instance.new("SpecialMesh", p36)
2401
b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
2402
b36.TextureId = ""
2403
b36.MeshType = Enum.MeshType.FileMesh
2404
b36.Name = "Mesh"
2405
b36.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2406
p37 = Instance.new("Part", m2)
2407
p37.BrickColor = BrickColor.new("Dark Indigo")
2408
p37.Material = Enum.Material.Neon
2409
p37.CFrame = CFrame.new(30.7430439, 27.8460693, 27.2796841, -0.409572512, -0.709406137, -0.573576272, 0.866021335, -0.500000834, -1.38386031e-006, -0.286787719, -0.49673146, 0.819151938)
2410
p37.FormFactor = Enum.FormFactor.Custom
2411
p37.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
2412
p37.BottomSurface = Enum.SurfaceType.Smooth
2413
p37.TopSurface = Enum.SurfaceType.Smooth
2414
b37 = Instance.new("SpecialMesh", p37)
2415
b37.MeshType = Enum.MeshType.Sphere
2416
b37.Name = "Mesh"
2417
p38 = Instance.new("Part", m2)
2418
p38.BrickColor = BrickColor.new("Dark Indigo")
2419
p38.Material = Enum.Material.Neon
2420
p38.CFrame = CFrame.new(32.7113533, 27.1965656, 28.6579113, -0.28016308, -0.769750178, -0.573576272, 0.939688683, -0.342021704, -1.3540581e-006, -0.196174175, -0.538985133, 0.819152057)
2421
p38.FormFactor = Enum.FormFactor.Custom
2422
p38.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
2423
p38.BottomSurface = Enum.SurfaceType.Smooth
2424
p38.TopSurface = Enum.SurfaceType.Smooth
2425
b38 = Instance.new("SpecialMesh", p38)
2426
b38.MeshType = Enum.MeshType.Sphere
2427
b38.Name = "Mesh"
2428
p39 = Instance.new("Part", m2)
2429
p39.BrickColor = BrickColor.new("Dark Indigo")
2430
p39.Material = Enum.Material.SmoothPlastic
2431
p39.Reflectance = 0.30000001192093
2432
p39.CFrame = CFrame.new(26.2033787, 25.7750854, 25.2801971, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
2433
p39.CanCollide = false
2434
p39.FormFactor = Enum.FormFactor.Custom
2435
p39.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2436
p39.BottomSurface = Enum.SurfaceType.Smooth
2437
p39.TopSurface = Enum.SurfaceType.Smooth
2438
b39 = Instance.new("SpecialMesh", p39)
2439
b39.MeshId = "http://www.roblox.com/asset/?id=3270017"
2440
b39.TextureId = ""
2441
b39.MeshType = Enum.MeshType.FileMesh
2442
b39.Name = "Mesh"
2443
b39.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2444
p40 = Instance.new("Part", m2)
2445
p40.BrickColor = BrickColor.new("Dark Indigo")
2446
p40.Material = Enum.Material.SmoothPlastic
2447
p40.Reflectance = 0.30000001192093
2448
p40.CFrame = CFrame.new(25.9975967, 25.9509888, 25.4242878, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
2449
p40.CanCollide = false
2450
p40.FormFactor = Enum.FormFactor.Custom
2451
p40.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
2452
p40.BottomSurface = Enum.SurfaceType.Smooth
2453
p40.TopSurface = Enum.SurfaceType.Smooth
2454
b40 = Instance.new("SpecialMesh", p40)
2455
b40.MeshId = "http://www.roblox.com/asset/?id=3270017"
2456
b40.TextureId = ""
2457
b40.MeshType = Enum.MeshType.FileMesh
2458
b40.Name = "Mesh"
2459
b40.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2460
p41 = Instance.new("Part", m2)
2461
p41.BrickColor = BrickColor.new("Dark Indigo")
2462
p41.Material = Enum.Material.SmoothPlastic
2463
p41.Reflectance = 0.30000001192093
2464
p41.CFrame = CFrame.new(26.098917, 25.8643856, 25.3533516, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
2465
p41.CanCollide = false
2466
p41.FormFactor = Enum.FormFactor.Custom
2467
p41.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2468
p41.BottomSurface = Enum.SurfaceType.Smooth
2469
p41.TopSurface = Enum.SurfaceType.Smooth
2470
b41 = Instance.new("SpecialMesh", p41)
2471
b41.MeshId = "http://www.roblox.com/asset/?id=3270017"
2472
b41.TextureId = ""
2473
b41.MeshType = Enum.MeshType.FileMesh
2474
b41.Name = "Mesh"
2475
b41.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2476
p42 = Instance.new("Part", m2)
2477
p42.BrickColor = BrickColor.new("Dark Indigo")
2478
p42.Material = Enum.Material.SmoothPlastic
2479
p42.Reflectance = 0.30000001192093
2480
p42.CFrame = CFrame.new(24.12043, 24.6884346, 26.7387066, -0.573574483, -0.212014884, -0.791238487, -2.23079792e-006, -0.965923309, 0.258816421, -0.819151402, 0.148452327, 0.554032683)
2481
p42.CanCollide = false
2482
p42.FormFactor = Enum.FormFactor.Custom
2483
p42.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
2484
p42.BottomSurface = Enum.SurfaceType.Smooth
2485
p42.TopSurface = Enum.SurfaceType.Smooth
2486
b42 = Instance.new("SpecialMesh", p42)
2487
b42.MeshId = "http://www.roblox.com/asset/?id=3270017"
2488
b42.TextureId = ""
2489
b42.MeshType = Enum.MeshType.FileMesh
2490
b42.Name = "Mesh"
2491
b42.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2492
p43 = Instance.new("Part", m2)
2493
p43.BrickColor = BrickColor.new("Dark Indigo")
2494
p43.Material = Enum.Material.SmoothPlastic
2495
p43.Reflectance = 0.30000001192093
2496
p43.CFrame = CFrame.new(24.12043, 24.6884365, 26.7387066, -0.573574483, -0.212014899, -0.791238487, -2.30996147e-006, -0.96592325, 0.258816421, -0.819151402, 0.148452222, 0.554032683)
2497
p43.CanCollide = false
2498
p43.FormFactor = Enum.FormFactor.Custom
2499
p43.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
2500
p43.BottomSurface = Enum.SurfaceType.Smooth
2501
p43.TopSurface = Enum.SurfaceType.Smooth
2502
b43 = Instance.new("SpecialMesh", p43)
2503
b43.MeshId = "http://www.roblox.com/asset/?id=3270017"
2504
b43.TextureId = ""
2505
b43.MeshType = Enum.MeshType.FileMesh
2506
b43.Name = "Mesh"
2507
b43.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2508
p44 = Instance.new("Part", m2)
2509
p44.BrickColor = BrickColor.new("Dark Indigo")
2510
p44.Material = Enum.Material.SmoothPlastic
2511
p44.Reflectance = 0.30000001192093
2512
p44.CFrame = CFrame.new(24.3630924, 24.6090679, 26.5687962, -0.573574483, -0.212014914, -0.791238487, -2.38912503e-006, -0.96592319, 0.258816421, -0.819151402, 0.148452118, 0.554032683)
2513
p44.CanCollide = false
2514
p44.FormFactor = Enum.FormFactor.Custom
2515
p44.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2516
p44.BottomSurface = Enum.SurfaceType.Smooth
2517
p44.TopSurface = Enum.SurfaceType.Smooth
2518
b44 = Instance.new("SpecialMesh", p44)
2519
b44.MeshId = "http://www.roblox.com/asset/?id=3270017"
2520
b44.TextureId = ""
2521
b44.MeshType = Enum.MeshType.FileMesh
2522
b44.Name = "Mesh"
2523
b44.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2524
p45 = Instance.new("Part", m2)
2525
p45.BrickColor = BrickColor.new("Dark Indigo")
2526
p45.Material = Enum.Material.SmoothPlastic
2527
p45.Reflectance = 0.30000001192093
2528
p45.CFrame = CFrame.new(24.2399025, 24.6493645, 26.6550598, -0.573574483, -0.212014928, -0.791238487, -2.46828859e-006, -0.965923131, 0.258816421, -0.819151402, 0.148452014, 0.554032683)
2529
p45.CanCollide = false
2530
p45.FormFactor = Enum.FormFactor.Custom
2531
p45.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2532
p45.BottomSurface = Enum.SurfaceType.Smooth
2533
p45.TopSurface = Enum.SurfaceType.Smooth
2534
b45 = Instance.new("SpecialMesh", p45)
2535
b45.MeshId = "http://www.roblox.com/asset/?id=3270017"
2536
b45.TextureId = ""
2537
b45.MeshType = Enum.MeshType.FileMesh
2538
b45.Name = "Mesh"
2539
b45.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2540
p46 = Instance.new("Part", m2)
2541
p46.BrickColor = BrickColor.new("Dark Indigo")
2542
p46.Material = Enum.Material.SmoothPlastic
2543
p46.Reflectance = 0.30000001192093
2544
p46.CFrame = CFrame.new(24.3630962, 24.6090736, 26.5688019, -0.573574483, -0.212014943, -0.791238487, -2.54745214e-006, -0.965923071, 0.258816421, -0.819151402, 0.148451909, 0.554032683)
2545
p46.CanCollide = false
2546
p46.FormFactor = Enum.FormFactor.Custom
2547
p46.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2548
p46.BottomSurface = Enum.SurfaceType.Smooth
2549
p46.TopSurface = Enum.SurfaceType.Smooth
2550
b46 = Instance.new("SpecialMesh", p46)
2551
b46.MeshId = "http://www.roblox.com/asset/?id=3270017"
2552
b46.TextureId = ""
2553
b46.MeshType = Enum.MeshType.FileMesh
2554
b46.Name = "Mesh"
2555
b46.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2556
p47 = Instance.new("Part", m2)
2557
p47.BrickColor = BrickColor.new("Dark Indigo")
2558
p47.Material = Enum.Material.SmoothPlastic
2559
p47.Reflectance = 0.30000001192093
2560
p47.CFrame = CFrame.new(24.2399063, 24.6493702, 26.6550655, -0.573574483, -0.212014958, -0.791238487, -2.6266157e-006, -0.965923011, 0.258816421, -0.819151402, 0.148451805, 0.554032683)
2561
p47.CanCollide = false
2562
p47.FormFactor = Enum.FormFactor.Custom
2563
p47.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2564
p47.BottomSurface = Enum.SurfaceType.Smooth
2565
p47.TopSurface = Enum.SurfaceType.Smooth
2566
b47 = Instance.new("SpecialMesh", p47)
2567
b47.MeshId = "http://www.roblox.com/asset/?id=3270017"
2568
b47.TextureId = ""
2569
b47.MeshType = Enum.MeshType.FileMesh
2570
b47.Name = "Mesh"
2571
b47.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2572
p48 = Instance.new("Part", m2)
2573
p48.BrickColor = BrickColor.new("Dark Indigo")
2574
p48.Material = Enum.Material.Neon
2575
p48.CFrame = CFrame.new(25.2453995, 27.8142643, 25.9324112, 0.579229355, 0.579225123, -0.573574543, 0.707105756, -0.707103014, -2.67389237e-006, -0.405579329, -0.40558058, -0.819151223)
2576
p48.FormFactor = Enum.FormFactor.Custom
2577
p48.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
2578
p48.BottomSurface = Enum.SurfaceType.Smooth
2579
p48.TopSurface = Enum.SurfaceType.Smooth
2580
b48 = Instance.new("SpecialMesh", p48)
2581
b48.MeshType = Enum.MeshType.Sphere
2582
b48.Name = "Mesh"
2583
p49 = Instance.new("Part", m2)
2584
p49.BrickColor = BrickColor.new("Dark Indigo")
2585
p49.Material = Enum.Material.SmoothPlastic
2586
p49.Reflectance = 0.30000001192093
2587
p49.CFrame = CFrame.new(26.2033863, 25.7751026, 25.2802086, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
2588
p49.CanCollide = false
2589
p49.FormFactor = Enum.FormFactor.Custom
2590
p49.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2591
p49.BottomSurface = Enum.SurfaceType.Smooth
2592
p49.TopSurface = Enum.SurfaceType.Smooth
2593
b49 = Instance.new("SpecialMesh", p49)
2594
b49.MeshId = "http://www.roblox.com/asset/?id=3270017"
2595
b49.TextureId = ""
2596
b49.MeshType = Enum.MeshType.FileMesh
2597
b49.Name = "Mesh"
2598
b49.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2599
p50 = Instance.new("Part", m2)
2600
p50.BrickColor = BrickColor.new("Dark Indigo")
2601
p50.Material = Enum.Material.SmoothPlastic
2602
p50.Reflectance = 0.30000001192093
2603
p50.CFrame = CFrame.new(25.9976063, 25.9510059, 25.4242992, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
2604
p50.CanCollide = false
2605
p50.FormFactor = Enum.FormFactor.Custom
2606
p50.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
2607
p50.BottomSurface = Enum.SurfaceType.Smooth
2608
p50.TopSurface = Enum.SurfaceType.Smooth
2609
b50 = Instance.new("SpecialMesh", p50)
2610
b50.MeshId = "http://www.roblox.com/asset/?id=3270017"
2611
b50.TextureId = ""
2612
b50.MeshType = Enum.MeshType.FileMesh
2613
b50.Name = "Mesh"
2614
b50.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2615
p51 = Instance.new("Part", m2)
2616
p51.BrickColor = BrickColor.new("Dark Indigo")
2617
p51.Material = Enum.Material.SmoothPlastic
2618
p51.Reflectance = 0.30000001192093
2619
p51.CFrame = CFrame.new(26.0989265, 25.8644028, 25.353363, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
2620
p51.CanCollide = false
2621
p51.FormFactor = Enum.FormFactor.Custom
2622
p51.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2623
p51.BottomSurface = Enum.SurfaceType.Smooth
2624
p51.TopSurface = Enum.SurfaceType.Smooth
2625
b51 = Instance.new("SpecialMesh", p51)
2626
b51.MeshId = "http://www.roblox.com/asset/?id=3270017"
2627
b51.TextureId = ""
2628
b51.MeshType = Enum.MeshType.FileMesh
2629
b51.Name = "Mesh"
2630
b51.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2631
p52 = Instance.new("Part", m2)
2632
p52.BrickColor = BrickColor.new("Dark Indigo")
2633
p52.Material = Enum.Material.Neon
2634
p52.CFrame = CFrame.new(21.2912331, 25.2490387, 28.7011547, 0.142246991, 0.806705594, -0.573574483, 0.984804809, -0.173645705, -2.66166035e-006, -0.0995996594, -0.564862788, -0.819151103)
2635
p52.FormFactor = Enum.FormFactor.Custom
2636
p52.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
2637
p52.BottomSurface = Enum.SurfaceType.Smooth
2638
p52.TopSurface = Enum.SurfaceType.Smooth
2639
b52 = Instance.new("SpecialMesh", p52)
2640
b52.MeshType = Enum.MeshType.Sphere
2641
b52.Name = "Mesh"
2642
p53 = Instance.new("Part", m2)
2643
p53.BrickColor = BrickColor.new("Dark Indigo")
2644
p53.Material = Enum.Material.Neon
2645
p53.CFrame = CFrame.new(23.2582321, 27.8460655, 27.3238525, 0.409577936, 0.709403872, -0.573574483, 0.866023481, -0.499996662, -2.64914797e-006, -0.28678745, -0.496732205, -0.819151103)
2646
p53.FormFactor = Enum.FormFactor.Custom
2647
p53.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
2648
p53.BottomSurface = Enum.SurfaceType.Smooth
2649
p53.TopSurface = Enum.SurfaceType.Smooth
2650
b53 = Instance.new("SpecialMesh", p53)
2651
b53.MeshType = Enum.MeshType.Sphere
2652
b53.Name = "Mesh"
2653
p54 = Instance.new("Part", m2)
2654
p54.BrickColor = BrickColor.new("Dark Indigo")
2655
p54.Material = Enum.Material.Neon
2656
p54.CFrame = CFrame.new(21.2899132, 27.1965466, 28.7020855, 0.280168742, 0.769748747, -0.573574483, 0.939690113, -0.342017204, -2.64914797e-006, -0.196173787, -0.538985729, -0.819151103)
2657
p54.FormFactor = Enum.FormFactor.Custom
2658
p54.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
2659
p54.BottomSurface = Enum.SurfaceType.Smooth
2660
p54.TopSurface = Enum.SurfaceType.Smooth
2661
b54 = Instance.new("SpecialMesh", p54)
2662
b54.MeshType = Enum.MeshType.Sphere
2663
b54.Name = "Mesh"
2664
p55 = Instance.new("Part", m2)
2665
p55.BrickColor = BrickColor.new("Dark Indigo")
2666
p55.Material = Enum.Material.Neon
2667
p55.CFrame = CFrame.new(22.732933, 23.2277641, 27.6916542, -0.280163169, 0.769749939, -0.573574483, 0.939688265, 0.342020243, -2.67457881e-006, 0.196175426, -0.538984358, -0.819150984)
2668
p55.FormFactor = Enum.FormFactor.Custom
2669
p55.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
2670
p55.BottomSurface = Enum.SurfaceType.Smooth
2671
p55.TopSurface = Enum.SurfaceType.Smooth
2672
b55 = Instance.new("SpecialMesh", p55)
2673
b55.MeshType = Enum.MeshType.Sphere
2674
b55.Name = "Mesh"
2675
p56 = Instance.new("Part", m2)
2676
p56.BrickColor = BrickColor.new("Dark Indigo")
2677
p56.Material = Enum.Material.SmoothPlastic
2678
p56.Reflectance = 0.30000001192093
2679
p56.CFrame = CFrame.new(26.1728668, 26.7314224, 25.3015804, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
2680
p56.CanCollide = false
2681
p56.FormFactor = Enum.FormFactor.Custom
2682
p56.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2683
p56.BottomSurface = Enum.SurfaceType.Smooth
2684
p56.TopSurface = Enum.SurfaceType.Smooth
2685
b56 = Instance.new("SpecialMesh", p56)
2686
b56.MeshId = "http://www.roblox.com/asset/?id=3270017"
2687
b56.TextureId = ""
2688
b56.MeshType = Enum.MeshType.FileMesh
2689
b56.Name = "Mesh"
2690
b56.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2691
p57 = Instance.new("Part", m2)
2692
p57.BrickColor = BrickColor.new("Dark Indigo")
2693
p57.Material = Enum.Material.SmoothPlastic
2694
p57.Reflectance = 0.30000001192093
2695
p57.CFrame = CFrame.new(26.0715504, 26.8180256, 25.3725224, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
2696
p57.CanCollide = false
2697
p57.FormFactor = Enum.FormFactor.Custom
2698
p57.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
2699
p57.BottomSurface = Enum.SurfaceType.Smooth
2700
p57.TopSurface = Enum.SurfaceType.Smooth
2701
b57 = Instance.new("SpecialMesh", p57)
2702
b57.MeshId = "http://www.roblox.com/asset/?id=3270017"
2703
b57.TextureId = ""
2704
b57.MeshType = Enum.MeshType.FileMesh
2705
b57.Name = "Mesh"
2706
b57.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2707
p58 = Instance.new("Part", m2)
2708
p58.BrickColor = BrickColor.new("Dark Indigo")
2709
p58.Material = Enum.Material.SmoothPlastic
2710
p58.Reflectance = 0.30000001192093
2711
p58.CFrame = CFrame.new(26.2773418, 26.6421242, 25.2284393, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
2712
p58.CanCollide = false
2713
p58.FormFactor = Enum.FormFactor.Custom
2714
p58.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2715
p58.BottomSurface = Enum.SurfaceType.Smooth
2716
p58.TopSurface = Enum.SurfaceType.Smooth
2717
b58 = Instance.new("SpecialMesh", p58)
2718
b58.MeshId = "http://www.roblox.com/asset/?id=3270017"
2719
b58.TextureId = ""
2720
b58.MeshType = Enum.MeshType.FileMesh
2721
b58.Name = "Mesh"
2722
b58.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2723
p59 = Instance.new("Part", m2)
2724
p59.BrickColor = BrickColor.new("Dark Indigo")
2725
p59.Material = Enum.Material.SmoothPlastic
2726
p59.Reflectance = 0.30000001192093
2727
p59.CFrame = CFrame.new(24.6884308, 25.7025909, 26.3410091, -0.573574424, -0.280167818, -0.769747615, -2.71658587e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172908, 0.538984478)
2728
p59.CanCollide = false
2729
p59.FormFactor = Enum.FormFactor.Custom
2730
p59.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2731
p59.BottomSurface = Enum.SurfaceType.Smooth
2732
p59.TopSurface = Enum.SurfaceType.Smooth
2733
b59 = Instance.new("SpecialMesh", p59)
2734
b59.MeshId = "http://www.roblox.com/asset/?id=3270017"
2735
b59.TextureId = ""
2736
b59.MeshType = Enum.MeshType.FileMesh
2737
b59.Name = "Mesh"
2738
b59.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2739
p60 = Instance.new("Part", m2)
2740
p60.BrickColor = BrickColor.new("Dark Indigo")
2741
p60.Material = Enum.Material.SmoothPlastic
2742
p60.Reflectance = 0.30000001192093
2743
p60.CFrame = CFrame.new(24.4523582, 25.807478, 26.5063095, -0.573574424, -0.280167848, -0.769747615, -2.7445908e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172863, 0.538984478)
2744
p60.CanCollide = false
2745
p60.FormFactor = Enum.FormFactor.Custom
2746
p60.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
2747
p60.BottomSurface = Enum.SurfaceType.Smooth
2748
p60.TopSurface = Enum.SurfaceType.Smooth
2749
b60 = Instance.new("SpecialMesh", p60)
2750
b60.MeshId = "http://www.roblox.com/asset/?id=3270017"
2751
b60.TextureId = ""
2752
b60.MeshType = Enum.MeshType.FileMesh
2753
b60.Name = "Mesh"
2754
b60.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2755
p61 = Instance.new("Part", m2)
2756
p61.BrickColor = BrickColor.new("Dark Indigo")
2757
p61.Material = Enum.Material.SmoothPlastic
2758
p61.Reflectance = 0.30000001192093
2759
p61.CFrame = CFrame.new(24.5685883, 25.7558403, 26.4249287, -0.573574424, -0.280167878, -0.769747615, -2.77259574e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172819, 0.538984478)
2760
p61.CanCollide = false
2761
p61.FormFactor = Enum.FormFactor.Custom
2762
p61.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2763
p61.BottomSurface = Enum.SurfaceType.Smooth
2764
p61.TopSurface = Enum.SurfaceType.Smooth
2765
b61 = Instance.new("SpecialMesh", p61)
2766
b61.MeshId = "http://www.roblox.com/asset/?id=3270017"
2767
b61.TextureId = ""
2768
b61.MeshType = Enum.MeshType.FileMesh
2769
b61.Name = "Mesh"
2770
b61.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2771
p62 = Instance.new("Part", m2)
2772
p62.BrickColor = BrickColor.new("Dark Indigo")
2773
p62.Material = Enum.Material.SmoothPlastic
2774
p62.Reflectance = 0.30000001192093
2775
p62.CFrame = CFrame.new(24.6884365, 25.7025948, 26.3410149, -0.573574424, -0.280167907, -0.769747615, -2.80060067e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172774, 0.538984478)
2776
p62.CanCollide = false
2777
p62.FormFactor = Enum.FormFactor.Custom
2778
p62.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2779
p62.BottomSurface = Enum.SurfaceType.Smooth
2780
p62.TopSurface = Enum.SurfaceType.Smooth
2781
b62 = Instance.new("SpecialMesh", p62)
2782
b62.MeshId = "http://www.roblox.com/asset/?id=3270017"
2783
b62.TextureId = ""
2784
b62.MeshType = Enum.MeshType.FileMesh
2785
b62.Name = "Mesh"
2786
b62.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2787
p63 = Instance.new("Part", m2)
2788
p63.BrickColor = BrickColor.new("Dark Indigo")
2789
p63.Material = Enum.Material.SmoothPlastic
2790
p63.Reflectance = 0.30000001192093
2791
p63.CFrame = CFrame.new(24.452364, 25.8074818, 26.5063152, -0.573574424, -0.280167937, -0.769747615, -2.8286056e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172729, 0.538984478)
2792
p63.CanCollide = false
2793
p63.FormFactor = Enum.FormFactor.Custom
2794
p63.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
2795
p63.BottomSurface = Enum.SurfaceType.Smooth
2796
p63.TopSurface = Enum.SurfaceType.Smooth
2797
b63 = Instance.new("SpecialMesh", p63)
2798
b63.MeshId = "http://www.roblox.com/asset/?id=3270017"
2799
b63.TextureId = ""
2800
b63.MeshType = Enum.MeshType.FileMesh
2801
b63.Name = "Mesh"
2802
b63.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2803
p64 = Instance.new("Part", m2)
2804
p64.BrickColor = BrickColor.new("Dark Indigo")
2805
p64.Material = Enum.Material.SmoothPlastic
2806
p64.Reflectance = 0.30000001192093
2807
p64.CFrame = CFrame.new(24.568594, 25.7558441, 26.4249344, -0.573574424, -0.280167967, -0.769747615, -2.85661054e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172684, 0.538984478)
2808
p64.CanCollide = false
2809
p64.FormFactor = Enum.FormFactor.Custom
2810
p64.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2811
p64.BottomSurface = Enum.SurfaceType.Smooth
2812
p64.TopSurface = Enum.SurfaceType.Smooth
2813
b64 = Instance.new("SpecialMesh", p64)
2814
b64.MeshId = "http://www.roblox.com/asset/?id=3270017"
2815
b64.TextureId = ""
2816
b64.MeshType = Enum.MeshType.FileMesh
2817
b64.Name = "Mesh"
2818
b64.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2819
p65 = Instance.new("Part", m2)
2820
p65.BrickColor = BrickColor.new("Medium stone grey")
2821
p65.Transparency = 1
2822
p65.Name = "TorsoPart"
2823
p65.CFrame = CFrame.new(27.0399818, 25.1251049, 25.3600311, 0.999996543, 2.59280205e-006, 8.94069672e-008, 2.77161598e-006, 0.999995351, 1.56462193e-006, 6.2584877e-007, 1.51991844e-006, 0.999998093)
2824
p65.FormFactor = Enum.FormFactor.Symmetric
2825
p65.Size = Vector3.new(4, 4, 2)
2826
w1 = Instance.new("Weld", p1)
2827
w1.Name = "Part_Weld"
2828
w1.Part0 = p1
2829
w1.C0 = CFrame.new(7.48623466, 46.9062119, -4.72964478, -0.579227924, 0.707106769, -0.405579776, -0.579227805, -0.707106769, -0.405579716, -0.573576331, 0, 0.819152117)
2830
w1.Part1 = p2
2831
w1.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
2832
w2 = Instance.new("Weld", p2)
2833
w2.Name = "Part_Weld"
2834
w2.Part0 = p2
2835
w2.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
2836
w2.Part1 = p3
2837
w2.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
2838
w3 = Instance.new("Weld", p3)
2839
w3.Name = "Part_Weld"
2840
w3.Part0 = p3
2841
w3.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
2842
w3.Part1 = p4
2843
w3.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
2844
w4 = Instance.new("Weld", p4)
2845
w4.Name = "Part_Weld"
2846
w4.Part0 = p4
2847
w4.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
2848
w4.Part1 = p5
2849
w4.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
2850
w5 = Instance.new("Weld", p5)
2851
w5.Name = "Part_Weld"
2852
w5.Part0 = p5
2853
w5.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
2854
w5.Part1 = p6
2855
w5.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
2856
w6 = Instance.new("Weld", p6)
2857
w6.Name = "Part_Weld"
2858
w6.Part0 = p6
2859
w6.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
2860
w6.Part1 = p7
2861
w6.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
2862
w7 = Instance.new("Weld", p7)
2863
w7.Name = "Part_Weld"
2864
w7.Part0 = p7
2865
w7.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
2866
w7.Part1 = p8
2867
w7.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
2868
w8 = Instance.new("Weld", p8)
2869
w8.Name = "Part_Weld"
2870
w8.Part0 = p8
2871
w8.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
2872
w8.Part1 = p9
2873
w8.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
2874
w9 = Instance.new("Weld", p9)
2875
w9.Name = "Part_Weld"
2876
w9.Part0 = p9
2877
w9.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
2878
w9.Part1 = p10
2879
w9.C1 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
2880
w10 = Instance.new("Weld", p10)
2881
w10.Name = "Part_Weld"
2882
w10.Part0 = p10
2883
w10.C0 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
2884
w10.Part1 = p11
2885
w10.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
2886
w11 = Instance.new("Weld", p11)
2887
w11.Name = "Part_Weld"
2888
w11.Part0 = p11
2889
w11.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
2890
w11.Part1 = p12
2891
w11.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
2892
w12 = Instance.new("Weld", p12)
2893
w12.Name = "Part_Weld"
2894
w12.Part0 = p12
2895
w12.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
2896
w12.Part1 = p13
2897
w12.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
2898
w13 = Instance.new("Weld", p13)
2899
w13.Name = "Part_Weld"
2900
w13.Part0 = p13
2901
w13.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
2902
w13.Part1 = p14
2903
w13.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
2904
w14 = Instance.new("Weld", p14)
2905
w14.Name = "Part_Weld"
2906
w14.Part0 = p14
2907
w14.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
2908
w14.Part1 = p15
2909
w14.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
2910
w15 = Instance.new("Weld", p15)
2911
w15.Name = "Part_Weld"
2912
w15.Part0 = p15
2913
w15.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
2914
w15.Part1 = p16
2915
w15.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
2916
w16 = Instance.new("Weld", p16)
2917
w16.Name = "Part_Weld"
2918
w16.Part0 = p16
2919
w16.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
2920
w16.Part1 = p17
2921
w16.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
2922
w17 = Instance.new("Weld", p17)
2923
w17.Name = "Part_Weld"
2924
w17.Part0 = p17
2925
w17.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
2926
w17.Part1 = p18
2927
w17.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
2928
w18 = Instance.new("Weld", p18)
2929
w18.Name = "Part_Weld"
2930
w18.Part0 = p18
2931
w18.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
2932
w18.Part1 = p19
2933
w18.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
2934
w19 = Instance.new("Weld", p19)
2935
w19.Name = "Part_Weld"
2936
w19.Part0 = p19
2937
w19.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
2938
w19.Part1 = p20
2939
w19.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
2940
w20 = Instance.new("Weld", p20)
2941
w20.Name = "Part_Weld"
2942
w20.Part0 = p20
2943
w20.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
2944
w20.Part1 = p21
2945
w20.C1 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
2946
w21 = Instance.new("Weld", p21)
2947
w21.Name = "Part_Weld"
2948
w21.Part0 = p21
2949
w21.C0 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
2950
w21.Part1 = p22
2951
w21.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
2952
w22 = Instance.new("Weld", p22)
2953
w22.Name = "Part_Weld"
2954
w22.Part0 = p22
2955
w22.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
2956
w22.Part1 = p23
2957
w22.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
2958
w23 = Instance.new("Weld", p23)
2959
w23.Name = "Part_Weld"
2960
w23.Part0 = p23
2961
w23.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
2962
w23.Part1 = p24
2963
w23.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
2964
w24 = Instance.new("Weld", p24)
2965
w24.Name = "Part_Weld"
2966
w24.Part0 = p24
2967
w24.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
2968
w24.Part1 = p25
2969
w24.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
2970
w25 = Instance.new("Weld", p25)
2971
w25.Name = "Part_Weld"
2972
w25.Part0 = p25
2973
w25.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
2974
w25.Part1 = p26
2975
w25.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
2976
w26 = Instance.new("Weld", p26)
2977
w26.Name = "Part_Weld"
2978
w26.Part0 = p26
2979
w26.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
2980
w26.Part1 = p27
2981
w26.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
2982
w27 = Instance.new("Weld", p27)
2983
w27.Name = "Part_Weld"
2984
w27.Part0 = p27
2985
w27.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
2986
w27.Part1 = p28
2987
w27.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
2988
w28 = Instance.new("Weld", p28)
2989
w28.Name = "Part_Weld"
2990
w28.Part0 = p28
2991
w28.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
2992
w28.Part1 = p29
2993
w28.C1 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998)
2994
w29 = Instance.new("Weld", p29)
2995
w29.Name = "Part_Weld"
2996
w29.Part0 = p29
2997
w29.C0 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998)
2998
w29.Part1 = p30
2999
w29.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
3000
w30 = Instance.new("Weld", p30)
3001
w30.Name = "Part_Weld"
3002
w30.Part0 = p30
3003
w30.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
3004
w30.Part1 = p31
3005
w30.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
3006
w31 = Instance.new("Weld", p31)
3007
w31.Name = "Part_Weld"
3008
w31.Part0 = p31
3009
w31.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
3010
w31.Part1 = p32
3011
w31.C1 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
3012
w32 = Instance.new("Weld", p32)
3013
w32.Name = "Part_Weld"
3014
w32.Part0 = p32
3015
w32.C0 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
3016
w32.Part1 = p33
3017
w32.C1 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998)
3018
w33 = Instance.new("Weld", p33)
3019
w33.Name = "Part_Weld"
3020
w33.Part0 = p33
3021
w33.C0 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998)
3022
w33.Part1 = p34
3023
w33.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
3024
w34 = Instance.new("Weld", p34)
3025
w34.Name = "Part_Weld"
3026
w34.Part0 = p34
3027
w34.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
3028
w34.Part1 = p35
3029
w34.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
3030
w35 = Instance.new("Weld", p35)
3031
w35.Name = "Part_Weld"
3032
w35.Part0 = p35
3033
w35.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
3034
w35.Part1 = p36
3035
w35.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
3036
w36 = Instance.new("Weld", p36)
3037
w36.Name = "Part_Weld"
3038
w36.Part0 = p36
3039
w36.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
3040
w36.Part1 = p37
3041
w36.C1 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998)
3042
w37 = Instance.new("Weld", p37)
3043
w37.Name = "Part_Weld"
3044
w37.Part0 = p37
3045
w37.C0 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998)
3046
w37.Part1 = p38
3047
w37.C1 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998)
3048
w38 = Instance.new("Weld", p38)
3049
w38.Name = "Part_Weld"
3050
w38.Part0 = p38
3051
w38.C0 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998)
3052
w38.Part1 = p39
3053
w38.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3054
w39 = Instance.new("Weld", p39)
3055
w39.Name = "Part_Weld"
3056
w39.Part0 = p39
3057
w39.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3058
w39.Part1 = p40
3059
w39.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3060
w40 = Instance.new("Weld", p40)
3061
w40.Name = "Part_Weld"
3062
w40.Part0 = p40
3063
w40.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3064
w40.Part1 = p41
3065
w40.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3066
w41 = Instance.new("Weld", p41)
3067
w41.Name = "Part_Weld"
3068
w41.Part0 = p41
3069
w41.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3070
w41.Part1 = p42
3071
w41.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
3072
w42 = Instance.new("Weld", p42)
3073
w42.Name = "Part_Weld"
3074
w42.Part0 = p42
3075
w42.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
3076
w42.Part1 = p43
3077
w42.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
3078
w43 = Instance.new("Weld", p43)
3079
w43.Name = "Part_Weld"
3080
w43.Part0 = p43
3081
w43.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
3082
w43.Part1 = p44
3083
w43.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
3084
w44 = Instance.new("Weld", p44)
3085
w44.Name = "Part_Weld"
3086
w44.Part0 = p44
3087
w44.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
3088
w44.Part1 = p45
3089
w44.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
3090
w45 = Instance.new("Weld", p45)
3091
w45.Name = "Part_Weld"
3092
w45.Part0 = p45
3093
w45.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
3094
w45.Part1 = p46
3095
w45.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
3096
w46 = Instance.new("Weld", p46)
3097
w46.Name = "Part_Weld"
3098
w46.Part0 = p46
3099
w46.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
3100
w46.Part1 = p47
3101
w46.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
3102
w47 = Instance.new("Weld", p47)
3103
w47.Name = "Part_Weld"
3104
w47.Part0 = p47
3105
w47.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
3106
w47.Part1 = p48
3107
w47.C1 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998)
3108
w48 = Instance.new("Weld", p48)
3109
w48.Name = "Part_Weld"
3110
w48.Part0 = p48
3111
w48.C0 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998)
3112
w48.Part1 = p49
3113
w48.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3114
w49 = Instance.new("Weld", p49)
3115
w49.Name = "Part_Weld"
3116
w49.Part0 = p49
3117
w49.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3118
w49.Part1 = p50
3119
w49.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3120
w50 = Instance.new("Weld", p50)
3121
w50.Name = "Part_Weld"
3122
w50.Part0 = p50
3123
w50.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3124
w50.Part1 = p51
3125
w50.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3126
w51 = Instance.new("Weld", p51)
3127
w51.Name = "Part_Weld"
3128
w51.Part0 = p51
3129
w51.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3130
w51.Part1 = p52
3131
w51.C1 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998)
3132
w52 = Instance.new("Weld", p52)
3133
w52.Name = "Part_Weld"
3134
w52.Part0 = p52
3135
w52.C0 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998)
3136
w52.Part1 = p53
3137
w52.C1 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998)
3138
w53 = Instance.new("Weld", p53)
3139
w53.Name = "Part_Weld"
3140
w53.Part0 = p53
3141
w53.C0 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998)
3142
w53.Part1 = p54
3143
w53.C1 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998)
3144
w54 = Instance.new("Weld", p54)
3145
w54.Name = "Part_Weld"
3146
w54.Part0 = p54
3147
w54.C0 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998)
3148
w54.Part1 = p55
3149
w54.C1 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938)
3150
w55 = Instance.new("Weld", p55)
3151
w55.Name = "Part_Weld"
3152
w55.Part0 = p55
3153
w55.C0 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938)
3154
w55.Part1 = p56
3155
w55.C1 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3156
w56 = Instance.new("Weld", p56)
3157
w56.Name = "Part_Weld"
3158
w56.Part0 = p56
3159
w56.C0 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3160
w56.Part1 = p57
3161
w56.C1 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3162
w57 = Instance.new("Weld", p57)
3163
w57.Name = "Part_Weld"
3164
w57.Part0 = p57
3165
w57.C0 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3166
w57.Part1 = p58
3167
w57.C1 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3168
w58 = Instance.new("Weld", p58)
3169
w58.Name = "Part_Weld"
3170
w58.Part0 = p58
3171
w58.C0 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
3172
w58.Part1 = p59
3173
w58.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
3174
w59 = Instance.new("Weld", p59)
3175
w59.Name = "Part_Weld"
3176
w59.Part0 = p59
3177
w59.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
3178
w59.Part1 = p60
3179
w59.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
3180
w60 = Instance.new("Weld", p60)
3181
w60.Name = "Part_Weld"
3182
w60.Part0 = p60
3183
w60.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
3184
w60.Part1 = p61
3185
w60.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
3186
w61 = Instance.new("Weld", p61)
3187
w61.Name = "Part_Weld"
3188
w61.Part0 = p61
3189
w61.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
3190
w61.Part1 = p62
3191
w61.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
3192
w62 = Instance.new("Weld", p62)
3193
w62.Name = "Part_Weld"
3194
w62.Part0 = p62
3195
w62.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
3196
w62.Part1 = p63
3197
w62.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
3198
w63 = Instance.new("Weld", p63)
3199
w63.Name = "Part_Weld"
3200
w63.Part0 = p63
3201
w63.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
3202
w63.Part1 = p64
3203
w63.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
3204
w64 = Instance.new("Weld", p64)
3205
w64.Name = "TorsoPart_Weld"
3206
w64.Part0 = p64
3207
w64.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
3208
w64.Part1 = p65
3209
w64.C1 = CFrame.new(-27.0399971, -25.1251144, -25.3600025, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3210
m2.Parent = char
3211
m2:MakeJoints()
3212
----------------------------------------------------
3213
local cor2 = Instance.new("Part", char.Wings)
3214
cor2.Name = "Thingy"
3215
cor2.Locked = true
3216
cor2.BottomSurface = 0
3217
cor2.CanCollide = false
3218
cor2.Size = Vector3.new(0.2, 0.2, 0.2)
3219
cor2.Transparency = 1
3220
cor2.TopSurface = 0
3221
corw2 = Instance.new("Weld", cor2)
3222
corw2.Part0 = torso
3223
corw2.Part1 = cor2
3224
corw2.C0 = CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
3225
corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
3226
weld2 = Instance.new("Weld", char.Wings)
3227
weld2.Part0 = cor2
3228
weld2.Part1 = char.Wings.TorsoPart
3229
weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
3230
----------------------------------------------------
3231
local animpose = "Idle"
3232
local lastanimpose = "Idle"
3233
local sine = 0
3234
local change = 1
3235
local val = 0
3236
local ffing = false
3237
local och = 0
3238
----------------------------------------------------
3239
wPart = function(x,y,z,color,tr,cc,an,parent)
3240
    local wp = Instance.new('WedgePart',parent or Weapon)
3241
    wp.formFactor = 'Custom'
3242
    wp.Size = Vector3.new(x,y,z)
3243
    wp.BrickColor = BrickColor.new(color)
3244
    wp.CanCollide = cc
3245
    wp.Transparency = tr
3246
    wp.Anchored = an
3247
    wp.TopSurface,wp.BottomSurface = 0,0
3248
    return wp
3249
end
3250
3251
Mesh = function(par,num,x,y,z)
3252
    local msh = _
3253
    if num == 1 then
3254
        msh = Instance.new("CylinderMesh",par)
3255
    elseif num == 2 then
3256
        msh = Instance.new("SpecialMesh",par)
3257
        msh.MeshType = 3
3258
    elseif num == 3 then
3259
        msh = Instance.new("BlockMesh",par)
3260
    elseif num == 4 then
3261
        msh = Instance.new("SpecialMesh",par)
3262
        msh.MeshType = "Torso"
3263
    elseif type(num) == 'string' then
3264
        msh = Instance.new("SpecialMesh",par)
3265
        msh.MeshId = num
3266
    end 
3267
    msh.Scale = Vector3.new(x,y,z)
3268
    return msh
3269
end
3270
3271
local function CFrameFromTopBack(at, top, back)
3272
    local right = top:Cross(back)
3273
    return CFrame.new(at.x, at.y, at.z,
3274
    right.x, top.x, back.x,
3275
    right.y, top.y, back.y,
3276
    right.z, top.z, back.z)
3277
end
3278
3279
function Triangle(a, b, c)
3280
    local edg1 = (c-a):Dot((b-a).unit)
3281
    local edg2 = (a-b):Dot((c-b).unit)
3282
    local edg3 = (b-c):Dot((a-c).unit)
3283
    if edg1 <= (b-a).magnitude and edg1 >= 0 then
3284
        a, b, c = a, b, c
3285
    elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
3286
        a, b, c = b, c, a
3287
    elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
3288
        a, b, c = c, a, b
3289
    else 
3290
        print("unreachable")
3291
    end
3292
    local len1 = (c-a):Dot((b-a).unit)
3293
    local len2 = (b-a).magnitude - len1
3294
    local width = (a + (b-a).unit*len1 - c).magnitude
3295
    local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
3296
    local list = {}
3297
    if len1 > 0.01 then
3298
        local w1 = wPart(0,0,0,'Dark Indigo',0.5,false,true,char)
3299
        local sz = Vector3.new(0.2, width, len1)
3300
        w1.Size = sz
3301
        local sp = Mesh(w1,2,0,0,0)
3302
        sp.MeshType='Wedge'
3303
        sp.Scale=Vector3.new(0,1,1)*sz/w1.Size
3304
        w1:BreakJoints()
3305
        w1.Anchored = true
3306
        w1.Transparency = 0.7
3307
        Spawn(function()
3308
            for i=0,1,0.1 do
3309
                wait()
3310
                w1.Transparency=w1.Transparency+0.03
3311
            end
3312
        end)
3313
        w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
3314
        table.insert(list,w1)
3315
    end
3316
    if len2 > 0.01 then
3317
        local w2 = wPart(0,0,0,'Dark Indigo',0.5,false,true,char)
3318
        local sz = Vector3.new(0.2, width, len2) 
3319
        w2.Size = sz
3320
        local sp = Mesh(w2,2,0,0,0)
3321
        sp.MeshType='Wedge'
3322
        sp.Scale=Vector3.new(0,1,1)*sz/w2.Size
3323
        w2:BreakJoints()
3324
        w2.Anchored = true
3325
        w2.Transparency = 0.7
3326
        Spawn(function()
3327
            for i=0,1,0.1 do
3328
                wait()
3329
                w2.Transparency=w2.Transparency+0.03
3330
            end
3331
        end)
3332
        w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
3333
        table.insert(list,w2)
3334
    end
3335
    return unpack(list)
3336
end
3337
3338
function trail(p,t,h)
3339
	Spawn(function()
3340
		local blcf = p.CFrame
3341
		local scfr = blcf
3342
		for i=1,t do
3343
			local blcf = p.CFrame
3344
			if scfr and (p.Position-scfr.p).magnitude > .1 then
3345
				local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
3346
				if a then game.Debris:AddItem(a,1) end 
3347
				if b then game.Debris:AddItem(b,1) end
3348
				local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
3349
				if a then game.Debris:AddItem(a,1) end 
3350
				if b then game.Debris:AddItem(b,1) end
3351
				scfr = blcf
3352
			elseif not scfr then
3353
				scfr = blcf
3354
			end
3355
			game:service'RunService'.RenderStepped:wait()
3356
		end
3357
		scfr=nil
3358
	end)
3359
end
3360
trail(char.Sword.Blade,1e1000,5)
3361
----------------------------------------------------
3362
char.Sword.Blade.Touched:connect(function(ht)
3363
    hit = ht.Parent
3364
    if ht and hit:IsA("Model") then
3365
		if hit:FindFirstChild("Humanoid") then
3366
			if hit.Name ~= p.Name then
3367
				if Debounces.Slashing == true and Debounces.Slashed == false then
3368
					Debounces.Slashed = true
3369
					hit:FindFirstChild("Humanoid"):TakeDamage(math.random(8000,10000))
3370
					wait(.3)
3371
					Debounces.Slashed = false
3372
				end
3373
			end
3374
		end
3375
    elseif ht and hit:IsA("Hat") then
3376
        if hit.Parent.Name ~= p.Name then
3377
            if hit.Parent:FindFirstChild("Humanoid") then
3378
				if Debounces.Slashing == true and Debounces.Slashed == false then
3379
					Debounces.Slashed = true
3380
					hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(8000,1000))
3381
					wait(.3)
3382
					Debounces.Slashed = false
3383
				end
3384
            end
3385
        end
3386
    end    
3387
end)
3388
3389
----------------------------------------------------
3390
function attackone()
3391
	for i = 1, 10 do
3392
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.6, 0.9, -0.62)*CFrame.Angles(math.rad(170),math.rad(20),math.rad(-60)), 0.56)
3393
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0.2)*CFrame.Angles(math.rad(-30),math.rad(-10),math.rad(-20)), 0.5)
3394
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2)*CFrame.Angles(math.rad(10),math.rad(-46),0), 0.47)
3395
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-8), math.rad(46), 0), 0.55)
3396
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(20), math.rad(-10)), 0.43)
3397
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(-20), math.rad(10)), 0.43)
3398
		if Debounces.on == false then break end
3399
		rs:wait()
3400
	end
3401
	--trail(char.Sword.Blade,5,6)
3402
	Debounces.Slashing = true
3403
	z = Instance.new("Sound", hed)
3404
	z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
3405
	z.Pitch = ptz[math.random(1,#ptz)]
3406
	z.Volume = 1
3407
	wait(.01)
3408
	z:Play()
3409
	for i = 1, 10 do
3410
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, .3)*CFrame.Angles(math.rad(-10),math.rad(-15),math.rad(50)), 0.67)
3411
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4, 0.7, -0.3)*CFrame.Angles(math.rad(80),math.rad(-10),math.rad(-20)), 0.58)
3412
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(-14),math.rad(40),0), 0.54)
3413
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(-40), 0), 0.66)
3414
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(20), math.rad(-10)), 0.5)
3415
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-20), math.rad(10)), 0.5)
3416
		if Debounces.on == false then break end
3417
		rs:wait()
3418
	end
3419
	Debounces.Slashing = false
3420
end
3421
----------------------------------------------------
3422
function attacktwo()
3423
	for i = 1, 5 do
3424
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.25, 0.9, 0)*CFrame.Angles(math.rad(170),math.rad(20),math.rad(60)), 0.8)
3425
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0.17)*CFrame.Angles(math.rad(-30),math.rad(-10),math.rad(-20)), 0.8)
3426
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2)*CFrame.Angles(math.rad(-10),math.rad(46),0), 0.8)
3427
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(8), math.rad(-46), 0), 0.8)
3428
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(20), math.rad(-10)), 0.8)
3429
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(-20), math.rad(10)), 0.8)
3430
		if Debounces.on == false then break end
3431
		rs:wait()
3432
	end
3433
	--trail(char.Sword.Blade,5,6)
3434
	Debounces.Slashing = true
3435
	z = Instance.new("Sound", hed)
3436
	z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
3437
	z.Pitch = ptz[math.random(1,#ptz)]
3438
	z.Volume = 1
3439
	wait(.01)
3440
	z:Play()
3441
	for i = 1, 10 do
3442
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.8, 0.5, -0.35)*CFrame.Angles(math.rad(0),math.rad(-15),math.rad(-50)), 0.77)
3443
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4, 0.6, -0.35)*CFrame.Angles(math.rad(-50),math.rad(10),math.rad(-20)), 0.58)
3444
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.54)
3445
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-9), math.rad(40), 0), 0.66)
3446
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(20), math.rad(-10)), 0.5)
3447
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-20), math.rad(10)), 0.5)
3448
		if Debounces.on == false then break end
3449
		rs:wait()
3450
	end
3451
	Debounces.Slashing = false
3452
end
3453
----------------------------------------------------
3454
function attackthree()
3455
	for i = 1, 10 do
3456
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-50)), 0.63)
3457
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(50)), 0.63)
3458
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0.1)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.54)
3459
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(10), math.rad(0), 0), 0.66)
3460
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.5)
3461
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.5, -0.5) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.5)
3462
		corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
3463
		if Debounces.on == false then
3464
			break
3465
		end
3466
		rs:wait()
3467
	end
3468
	--trail(char.Sword.Blade,5,6)
3469
	Debounces.Slashing = true
3470
	z = Instance.new("Sound", hed)
3471
	z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
3472
	z.Pitch = ptz[math.random(1,#ptz)]
3473
	z.Volume = 1
3474
	wait(.01)
3475
	z:Play()
3476
	for i = 1, 10 do
3477
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(40)), 0.7)
3478
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(-40)), 0.7)
3479
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-40), 0, 0), 0.7)
3480
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.7)
3481
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
3482
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
3483
		corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
3484
		if Debounces.on==false then
3485
			break
3486
		end
3487
		rs:wait()
3488
	end
3489
	Debounces.Slashing = false
3490
end
3491
----------------------------------------------------
3492
ComboNum = 0
3493
mouse.Button1Down:connect(function()
3494
	if Debounces.CanAttack == true then
3495
		Debounces.CanAttack = false
3496
		Debounces.NoIdl = true
3497
		Debounces.on = true
3498
		if ComboNum == 0 then
3499
			attackone()
3500
		elseif ComboNum == 1  then
3501
			attacktwo()
3502
		elseif ComboNum == 2 then
3503
			attackthree()
3504
		end
3505
		ComboNum = ComboNum + 1
3506
		Debounces.CanAttack = true
3507
		Debounces.NoIdl = false
3508
		Debounces.on = false
3509
		wait(.5)
3510
		if Debounces.CanAttack == true then
3511
			ComboNum = 0
3512
		end
3513
	end
3514
end)
3515
----------------------------------------------------
3516
local player = game.Players.LocalPlayer
3517
local pchar = player.Character
3518
local mouse = player:GetMouse()
3519
local cam = workspace.CurrentCamera
3520
3521
local rad = math.rad
3522
3523
local keysDown = {}
3524
local flySpeed = 0
3525
local MAX_FLY_SPEED = 150
3526
3527
local canFly = false
3528
local flyToggled = false
3529
3530
local forward, side = 0, 0
3531
local lastForward, lastSide = 0, 0
3532
3533
local floatBP = Instance.new("BodyPosition")
3534
floatBP.maxForce = Vector3.new(0, math.huge, 0)
3535
local flyBV = Instance.new("BodyVelocity")
3536
flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
3537
local turnBG = Instance.new("BodyGyro")
3538
turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
3539
3540
mouse.KeyDown:connect(function(key)
3541
        keysDown[key] = true
3542
        
3543
        if key == "f" then
3544
                flyToggled = not flyToggled
3545
                
3546
        if not flyToggled then
3547
                stanceToggle = "Normal"
3548
                floatBP.Parent = nil
3549
                flyBV.Parent = nil
3550
                turnBG.Parent = nil
3551
                root.Velocity = Vector3.new()
3552
                pchar.Humanoid.PlatformStand = false
3553
        end
3554
end
3555
        
3556
end)
3557
mouse.KeyUp:connect(function(key)
3558
        keysDown[key] = nil
3559
end)
3560
3561
local function updateFly()
3562
3563
        if not flyToggled then return end
3564
        
3565
        lastForward = forward
3566
        lastSide = side
3567
        
3568
        forward = 0
3569
        side = 0
3570
        
3571
        if keysDown.w then
3572
                forward = forward + 1
3573
        end
3574
        if keysDown.s then
3575
                forward = forward - 1
3576
        end
3577
        if keysDown.a then
3578
                side = side - 1
3579
        end
3580
        if keysDown.d then
3581
                side = side + 1
3582
        end
3583
        
3584
        canFly = (forward ~= 0 or side ~= 0)
3585
        
3586
        if canFly then
3587
                stanceToggle = "Floating"
3588
                turnBG.Parent = root
3589
                floatBP.Parent = nil
3590
                flyBV.Parent = root
3591
                
3592
                flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
3593
                if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
3594
        else
3595
                floatBP.position = root.Position
3596
                floatBP.Parent = root
3597
                
3598
                flySpeed = flySpeed - 1
3599
                if flySpeed < 0 then flySpeed = 0 end
3600
        end
3601
        
3602
        local camCF = cam.CoordinateFrame
3603
        local in_forward = canFly and forward or lastForward
3604
        local in_side = canFly and side or lastSide
3605
        
3606
        flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side, 
3607
in_forward * 0.2, 0).p) - camCF.p) * flySpeed
3608
        
3609
        turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0, 
3610
0)
3611
end
3612
3613
game:service'RunService'.RenderStepped:connect(function()
3614
        if flyToggled then
3615
                pchar.Humanoid.PlatformStand = true
3616
        end
3617
        updateFly()
3618
end)
3619
----------------------------------------------------
3620
function Charge()
3621
	pt=Instance.new('Part',torso)
3622
	pt.Anchored=true
3623
	pt.CanCollide=false
3624
	pt.Locked = true
3625
	pt.FormFactor='Custom'
3626
	pt.Size=Vector3.new(1,1,1)
3627
	pt.CFrame=root.CFrame*CFrame.new(0,-1,0)
3628
	pt.Transparency=0.2
3629
	pt.BrickColor=BrickColor.new("Dark Indigo")
3630
	msh=Instance.new('SpecialMesh',pt)
3631
	msh.MeshId='http://www.roblox.com/asset/?id=20329976'
3632
	msh.Scale=Vector3.new(6,3,6)
3633
	pt2=pt:clone()
3634
	pt2.Parent = torso
3635
	pt2.Transparency=0.4
3636
	pt2.CFrame=root.CFrame*CFrame.new(0,-1,0)
3637
	pt2.BrickColor=BrickColor.new("Dark Indigo")
3638
	msh2=msh:clone()
3639
	msh2.Parent=pt2
3640
	msh2.Scale=Vector3.new(8,4,8)
3641
	pt3=Instance.new('Part',torso)
3642
	pt3.Anchored=true
3643
	pt3.CanCollide=false
3644
	pt3.Locked = true
3645
	pt3.FormFactor='Custom'
3646
	pt3.Size=Vector3.new(1,1,1)
3647
	pt3.CFrame=root.CFrame*CFrame.new(0,-1,0)
3648
	pt3.Transparency=0.6
3649
	pt3.BrickColor=BrickColor.new("Dark Indigo")
3650
	msh3=Instance.new('SpecialMesh',pt3)
3651
	msh3.MeshId='http://www.roblox.com/asset/?id=20329976'
3652
	msh3.Scale=Vector3.new(12,6,12)
3653
	pt4=pt:clone()
3654
	pt4.Parent = torso
3655
	pt4.CFrame=root.CFrame*CFrame.new(0,-1,0)
3656
	pt4.Transparency=0.8
3657
	pt4.BrickColor=BrickColor.new("Dark Indigo")
3658
	msh4=msh:clone()
3659
	msh4.Parent=pt4
3660
	msh4.Scale=Vector3.new(16,8,16)
3661
	coroutine.resume(coroutine.create(function() 
3662
        for i=1, math.huge, 4 do
3663
			if Charging == true then
3664
				wait()
3665
				pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2+0.11*math.cos(sine/10)),0)
3666
				pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2+0.12*math.cos(sine/12)),0)
3667
				pt3.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2+0.13*math.cos(sine/14)),0)
3668
				pt4.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2+0.14*math.cos(sine/16)),0)
3669
				pt.CFrame = pt.CFrame+Vector3.new(0,0.01,0)
3670
				pt2.CFrame = pt2.CFrame+Vector3.new(0,0.01,0)
3671
				pt3.CFrame = pt3.CFrame+Vector3.new(0,0.01,0)
3672
				pt4.CFrame = pt4.CFrame+Vector3.new(0,0.01,0)
3673
				msh.Scale = msh.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/9),0.05)
3674
				msh2.Scale = msh2.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/7),0.05)
3675
				msh3.Scale = msh3.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/5),0.05)
3676
				msh4.Scale = msh4.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/3),0.05)
3677
				elseif Charging == false then
3678
				pt:Remove()
3679
				pt2:Remove()
3680
				pt3:Remove()
3681
				pt4:Remove()
3682
				break
3683
			end
3684
		end
3685
    end))
3686
end
3687
----------------------------------------------------
3688
local chot={}
3689
local cns=0
3690
mod3 = Instance.new("Model",char)
3691
mouse.KeyDown:connect(function(key)
3692
	if key == "e" then
3693
		Charging = true
3694
		if Debounces.CanAttack == true then
3695
			Debounces.CanAttack = false
3696
			Debounces.NoIdl = true
3697
			Debounces.on = true
3698
			chot={}
3699
			Charge()
3700
			for i = 1, 20 do
3701
				rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(20)), 0.4)
3702
				larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-26),math.rad(0),math.rad(-40)), 0.4)
3703
				hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-50),0), 0.2)
3704
				hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(-40),math.rad(0),0), 0.2)
3705
				torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(0, math.rad(50), math.rad(0)), 0.05)
3706
				lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(10), math.rad(-10)), 0.4)
3707
				rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(10)), 0.4)
3708
				corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.8, 0.44) * CFrame.Angles(math.rad(-150), math.rad(0), math.rad(0)), 0.4)
3709
				if Debounces.on == false then
3710
					break 
3711
				end
3712
				rs:wait()
3713
			end
3714
			local nt=0
3715
			for i=0,5,0.02 do
3716
				nt=nt+1
3717
				cns=i
3718
				if nt>=2 then
3719
					nt=0
3720
					local cho=NewPart(mod3,Vector3.new(2,2,2),char.Sword.Blade.CFrame*CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))*CFrame.new(0,5+cns,0),"Dark Indigo","Neon")
3721
					debris:AddItem(cho,1)
3722
					cho.Mesh.MeshType=3
3723
					table.insert(chot,cho)
3724
				end
3725
				wait()
3726
			end
3727
			Charging = false
3728
			for i = 1, 10 do
3729
				rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-50)), 0.63)
3730
				larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(50)), 0.63)
3731
				hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0.1)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.54)
3732
				torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(10), math.rad(0), 0), 0.66)
3733
				lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.5)
3734
				rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.5, -0.5) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.5)
3735
				corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
3736
				if Debounces.on == false then
3737
					break
3738
				end
3739
				rs:wait()
3740
			end
3741
			Spawn(function()
3742
				local Parts = {}
3743
				for Y = -5,5 do
3744
					local P = Instance.new("Part",char)
3745
					P.Anchored = true
3746
					P.FormFactor = "Custom"
3747
					P.CanCollide = false
3748
					P.Size = Vector3.new(1,2,1)
3749
					P.Material = "Neon"
3750
					P.TopSurface = "SmoothNoOutlines"
3751
					P.BottomSurface = "SmoothNoOutlines"
3752
					P.BrickColor = BrickColor.new("Dark Indigo")
3753
					P.Name = tostring(Y)
3754
					local i = (Y+5)/(10)
3755
					i = 1-math.cos(math.pi*i-(math.pi/2))
3756
					P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
3757
					--[[P.Touched:connect(function(ht)
3758
						local hit = ht.Parent
3759
						if hit:FindFirstChild("Humanoid") then
3760
							hit.Humanoid:TakeDamage(math.random(20,50))
3761
						end
3762
					end)]]--
3763
					P.Touched:connect(function(ht)
3764
						hit = ht.Parent
3765
						if ht and hit:IsA("Model") then
3766
							if hit:FindFirstChild("Humanoid") then
3767
								if hit.Name ~= p.Name then
3768
									hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5000,7500))
3769
									hit:FindFirstChild("Humanoid").PlatformStand = true
3770
									wait(1)
3771
								end
3772
							end
3773
						elseif ht and hit:IsA("Hat") then
3774
							if hit.Parent.Name ~= p.Name then
3775
								if hit.Parent:FindFirstChild("Humanoid") then
3776
									hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5000,7500))
3777
									hit:FindFirstChild("Humanoid").PlatformStand = true
3778
									wait(1)
3779
								end
3780
							end
3781
						end
3782
					end)
3783
					Parts[#Parts+1] = P
3784
				end
3785
				local BREAKIT = false
3786
				local CParts = {}
3787
				local Rocks = {}
3788
				local LastPos = nil
3789
				for i = 1,70 do
3790
					for i2,v in pairs(Parts) do
3791
						v.CFrame = v.CFrame*CFrame.new(0,0,-4)
3792
						local cf = v.CFrame
3793
						v.Size = v.Size+Vector3.new(1.1,0.35,0.2)
3794
						v.CFrame = cf
3795
						v.Transparency = v.Transparency+0.02
3796
						if v.Transparency >= 0.975 then BREAKIT = true end
3797
						if v.Name == "0" then
3798
							local Ignore = {}
3799
							for i,v in pairs(game:GetService("Players"):GetPlayers()) do
3800
								if v.Character ~= nil then
3801
									Ignore[#Ignore+1] = v.Character
3802
								end
3803
							end
3804
							local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
3805
							local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
3806
							if Hit ~= nil then
3807
								if #Rocks == 0 then
3808
									for i = 1,5 do
3809
										local P = Instance.new("Part",char)
3810
										Rocks[#Rocks+1] = P
3811
										P.Anchored = true
3812
										P.FormFactor = "Custom"
3813
										P.BrickColor = Hit.BrickColor
3814
										P.Material = Hit.Material
3815
										P.TopSurface = "Smooth"
3816
										P.BottomSurface = "Smooth"
3817
										P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
3818
									end
3819
								end
3820
								for i,P in pairs(Rocks) do
3821
									P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
3822
								end
3823
								local P = Instance.new("Part",char)
3824
								CParts[#CParts+1] = {P,tick()}
3825
								P.Anchored = true
3826
								P.FormFactor = "Custom"
3827
								P.BrickColor = Hit.BrickColor
3828
								P.Material = Hit.Material
3829
								P.TopSurface = "Smooth"
3830
								P.BottomSurface = "Smooth"
3831
								P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
3832
								Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
3833
								Pos = Pos.p
3834
								P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
3835
								local P = P:Clone()
3836
								CParts[#CParts+1] = {P,tick()}
3837
								P.Parent = char
3838
								Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
3839
								Pos = Pos.p
3840
								P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
3841
								if LastPos ~= nil then
3842
									local P = P:Clone()
3843
									CParts[#CParts+1] = {P,tick()}
3844
									P.Parent = char
3845
									P.BrickColor = BrickColor.new("Crimson")
3846
									P.Material = "Granite"
3847
									Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
3848
									Pos = Pos.p
3849
									local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
3850
									P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
3851
									--P.Velocity = Vector3.new(0,-1000,0)
3852
									P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
3853
								end
3854
								LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
3855
							end
3856
						end
3857
					end
3858
					if BREAKIT then break end
3859
					wait(0.002)
3860
				end
3861
				for i,v in pairs(Rocks) do
3862
					CParts[#CParts+1] = {v,tick()}
3863
				end
3864
				for i,v in pairs(Parts) do
3865
					v:Destroy()
3866
				end
3867
				Parts = nil
3868
				while true do
3869
					local t = tick()
3870
					local p = nil
3871
					for i,v in pairs(CParts) do
3872
						if t-v[2] > 4 then
3873
							v[1].Transparency = v[1].Transparency+0.05
3874
							if v[1].Transparency >= 1 then
3875
								v[1]:Destroy()
3876
								CParts[i] = nil
3877
							end
3878
						end
3879
						p = v
3880
					end
3881
					if p == nil then break end
3882
					wait(0.002)
3883
				end
3884
				for i,v in pairs(CParts) do
3885
					v:Destroy()
3886
				end
3887
				CParts = {}
3888
			end)
3889
			for i = 1, 10 do
3890
				larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(40)), 0.7)
3891
				rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(-40)), 0.7)
3892
				torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-40), 0, 0), 0.7)
3893
				hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.7)
3894
				lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
3895
				rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
3896
				corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
3897
				if Debounces.on==false then
3898
					break
3899
				end
3900
				rs:wait()
3901
			end
3902
			if Debounces.CanAttack == false then
3903
				Debounces.CanAttack = true
3904
				Debounces.NoIdl = false
3905
				Debounces.on = false
3906
            end
3907
        end
3908
    end
3909
end)
3910
----------------------------------------------------
3911
mouse.KeyDown:connect(function(key)
3912
    if string.byte(key) == 52 then
3913
        char.Humanoid.WalkSpeed = 28
3914
    end
3915
end)
3916
mouse.KeyUp:connect(function(key)
3917
    if string.byte(key) == 52 then
3918
        char.Humanoid.WalkSpeed = 16
3919
    end
3920
end)
3921
----------------------------------------------------
3922
game:GetService("RunService").RenderStepped:connect(function()
3923
if char.Humanoid.Jump == true then
3924
jump = true
3925
else
3926
jump = false
3927
end
3928
char.Humanoid.FreeFalling:connect(function(f)
3929
if f then
3930
ffing = true
3931
else
3932
ffing = false
3933
end
3934
end)
3935
sine = sine + change
3936
if jumpn == true then
3937
animpose = "Jumping"
3938
elseif ffing == true then
3939
animpose = "Freefalling"
3940
elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 5 then
3941
animpose = "Idle"
3942
elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
3943
animpose = "Walking"
3944
elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
3945
animpose = "Running"
3946
end
3947
if animpose ~= lastanimpose then
3948
sine = 0
3949
if Debounces.NoIdl == false then
3950
for i = 1, 2 do
3951
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8+2*math.cos(sine/14))), 0.4)
3952
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8-2*math.cos(sine/14))), 0.4)
3953
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2)
3954
hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
3955
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.1*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05)
3956
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4)
3957
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4)
3958
corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
3959
end
3960
wait()
3961
end
3962
else
3963
end
3964
lastanimpose = animpose
3965
if Debounces.NoIdl == false then
3966
if animpose == "Idle" then
3967
change = 0.5
3968
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/10),0)*CFrame.Angles(math.rad(-10),math.rad(-10),math.rad(14+2*math.cos(sine/10))), 0.4)
3969
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/10),0)*CFrame.Angles(math.rad(-20),math.rad(6),math.rad(-10-2*math.cos(sine/10))), 0.4)
3970
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/10)),math.rad(20),0), 0.2)
3971
hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
3972
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.16*math.cos(sine/10), 0) * CFrame.Angles(0, math.rad(-20), math.rad(0)), 0.05)
3973
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0-0.1*math.cos(sine/10), -0.55) * CFrame.Angles(math.rad(-10+1*math.cos(sine/10)), math.rad(10), math.rad(-0-2*math.cos(sine/10))), 0.4)
3974
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1-0.1*math.cos(sine/10), 0) * CFrame.Angles(0, math.rad(-10), math.rad(0+2*math.cos(sine/10))), 0.4)
3975
corw2.C0 = Lerp(corw2.C0, CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.05)
3976
corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
3977
--[[rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/8),0)*CFrame.Angles(math.rad(-10+4*math.cos(sine/8)),math.rad(-20-2*math.cos(sine/8)),math.rad(10+2*math.cos(sine/8))), 0.2)
3978
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/8),0)*CFrame.Angles(math.rad(0),math.rad(10+2*math.cos(sine/8)),math.rad(-18-2*math.cos(sine/8))), 0.2)
3979
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-18),math.rad(20+4*math.cos(sine/8)),0), 0.2)
3980
hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(-12-3*math.cos(sine/8)),math.rad(0),0), 0.2)
3981
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0+2*math.cos(sine/8)), math.rad(-20-4*math.cos(sine/8)), 0), 0.2)
3982
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0-2*math.cos(sine/8)), math.rad(20+4*math.cos(sine/8)), math.rad(-5+1*math.cos(sine/8))), 0.2)
3983
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0-4*math.cos(sine/8)), math.rad(-10-4*math.cos(sine/8)), math.rad(5+1*math.cos(sine/8))), 0.2)]]--
3984
elseif animpose == "Walking" then
3985
change = 1
3986
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
3987
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
3988
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
3989
hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
3990
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.17*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
3991
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
3992
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
3993
corw2.C0 = Lerp(corw2.C0, CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.05)
3994
corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
3995
elseif animpose == "Running" then
3996
change = 1
3997
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(-22),math.rad(20+2*math.cos(sine/14))), 0.2)
3998
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-10),math.rad(10),math.rad(-14-2*math.cos(sine/14))), 0.2)
3999
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(20),0,0), 0.4)
4000
hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
4001
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-40),0, math.rad(0)), 0.05)
4002
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(-8)), 0.4)
4003
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(8)), 0.4)
4004
corw2.C0 = Lerp(corw2.C0, CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(0)), 0.05)
4005
corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
4006
end
4007
end
4008
och=och+1
4009
for _,v in pairs(chot) do
4010
	pcall(function()
4011
		v.CFrame=v.CFrame:lerp(char.Sword.Blade.CFrame,0.1)
4012
		v.Mesh.Scale=Vector3.new(Tween(v.Mesh.Scale.X,0,0.1),Tween(v.Mesh.Scale.Y,0,0.1),Tween(v.Mesh.Scale.Z,0,0.1))
4013
	end)
4014
end
4015
end)
4016
--[[while true do wait(0.2) https://preview.c9users.io/jaspher/rbx_stoof/RMMech.lua
4017
	if charge == true then
4018
		MagicRing(BrickColor.new('Dark Indigo'),torso.CFrame*CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,math.rad(90)),0,-0.2,0,0,0,0,0.4,0.4,0.4,.08)
4019
	end
4020
end]]--