· 6 years ago · Sep 23, 2019, 02:08 AM
1--https://github.com/Mokiros/roblox-FE-compatibility
2if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
3local Player,game,owner = owner,game
4local RealPlayer = Player
5do
6 print("FE Compatibility code V2 by Mokiros")
7 local RealPlayer = RealPlayer
8 script.Parent = RealPlayer.Character
9
10 --Fake event to make stuff like Mouse.KeyDown work
11 local Disconnect_Function = function(this)
12 this[1].Functions[this[2]] = nil
13 end
14 local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
15 local FakeEvent_Metatable = {__index={
16 Connect = function(this,f)
17 local i = tostring(math.random(0,10000))
18 while this.Functions[i] do
19 i = tostring(math.random(0,10000))
20 end
21 this.Functions[i] = f
22 return setmetatable({this,i},Disconnect_Metatable)
23 end
24 }}
25 FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
26 local function fakeEvent()
27 return setmetatable({Functions={}},FakeEvent_Metatable)
28 end
29
30 --Creating fake input objects with fake variables
31 local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
32 FakeMouse.keyUp = FakeMouse.KeyUp
33 FakeMouse.keyDown = FakeMouse.KeyDown
34 local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
35 local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
36 CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
37 end}
38 --Merged 2 functions into one by checking amount of arguments
39 CAS.UnbindAction = CAS.BindAction
40
41 --This function will trigger the events that have been :Connect()'ed
42 local function TriggerEvent(self,ev,...)
43 for _,f in pairs(self[ev].Functions) do
44 f(...)
45 end
46 end
47 FakeMouse.TriggerEvent = TriggerEvent
48 UIS.TriggerEvent = TriggerEvent
49
50 --Client communication
51 local Event = Instance.new("RemoteEvent")
52 Event.Name = "UserInput_Event"
53 Event.OnServerEvent:Connect(function(plr,io)
54 if plr~=RealPlayer then return end
55 FakeMouse.Target = io.Target
56 FakeMouse.Hit = io.Hit
57 if not io.isMouse then
58 local b = io.UserInputState == Enum.UserInputState.Begin
59 if io.UserInputType == Enum.UserInputType.MouseButton1 then
60 return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
61 end
62 if io.UserInputType == Enum.UserInputType.MouseButton2 then
63 return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
64 end
65 for _,t in pairs(CAS.Actions) do
66 for _,k in pairs(t.Keys) do
67 if k==io.KeyCode then
68 t.Function(t.Name,io.UserInputState,io)
69 end
70 end
71 end
72 FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
73 UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
74 end
75 end)
76 Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
77 local Mouse = owner:GetMouse()
78 local UIS = game:GetService("UserInputService")
79 local input = function(io,RobloxHandled)
80 if RobloxHandled then return end
81 --Since InputObject is a client-side instance, we create and pass table instead
82 Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
83 end
84 UIS.InputBegan:Connect(input)
85 UIS.InputEnded:Connect(input)
86
87 local h,t
88 --Give the server mouse data every second frame, but only if the values changed
89 --If player is not moving their mouse, client won't fire events
90 local HB = game:GetService("RunService").Heartbeat
91 while true do
92 if h~=Mouse.Hit or t~=Mouse.Target then
93 h,t=Mouse.Hit,Mouse.Target
94 Event:FireServer({isMouse=true,Target=t,Hit=h})
95 end
96 --Wait 2 frames
97 for i=1,2 do
98 HB:Wait()
99 end
100 end]==],script)
101
102 ----Sandboxed game object that allows the usage of client-side methods and services
103 --Real game object
104 local RealGame = game
105
106 --Metatable for fake service
107 local FakeService_Metatable = {
108 __index = function(self,k)
109 local s = rawget(self,"_RealService")
110 if s then
111 return typeof(s[k])=="function"
112 and function(_,...)return s[k](s,...)end or s[k]
113 end
114 end,
115 __newindex = function(self,k,v)
116 local s = rawget(self,"_RealService")
117 if s then s[k]=v end
118 end
119 }
120 local function FakeService(t,RealService)
121 t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
122 return setmetatable(t,FakeService_Metatable)
123 end
124
125 --Fake game object
126 local FakeGame = {
127 GetService = function(self,s)
128 return rawget(self,s) or RealGame:GetService(s)
129 end,
130 Players = FakeService({
131 LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
132 },"Players"),
133 UserInputService = FakeService(UIS,"UserInputService"),
134 ContextActionService = FakeService(CAS,"ContextActionService"),
135 RunService = FakeService({
136 _btrs = {},
137 RenderStepped = RealGame:GetService("RunService").Heartbeat,
138 BindToRenderStep = function(self,name,_,fun)
139 self._btrs[name] = self.Heartbeat:Connect(fun)
140 end,
141 UnbindFromRenderStep = function(self,name)
142 self._btrs[name]:Disconnect()
143 end,
144 },"RunService")
145 }
146 rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
147 FakeGame.service = FakeGame.GetService
148 FakeService(FakeGame,game)
149 --Changing owner to fake player object to support owner:GetMouse()
150 game,owner = FakeGame,FakeGame.Players.LocalPlayer
151end
152
153local p = game.Players.LocalPlayer--300899323
154local char = p.Character
155local mouse = p:GetMouse()
156local larm = char["Left Arm"]
157local rarm = char["Right Arm"]
158local lleg = char["Left Leg"]
159local rleg = char["Right Leg"]
160local hed = char.Head
161local torso = char.Torso
162local hum = char.Humanoid
163local cam = game.Workspace.CurrentCamera
164local root = char.HumanoidRootPart
165local rj = root.RootJoint
166local deb = false
167local shot = 0
168local stanceToggle = "Idle1"
169local l = game:GetService("Lighting")
170local rs = game:GetService("RunService").RenderStepped
171local hb = game:GetService("RunService").Heartbeat
172local Stepped = game:GetService("RunService").Stepped
173math.randomseed(os.time())
174hum.JumpPower = 100
175---------------------
176
177-------------
178char["Body Colors"].HeadColor = BrickColor.new("Really black")
179char["Body Colors"].TorsoColor = BrickColor.new("Lime green")
180char["Body Colors"].LeftArmColor = BrickColor.new("Really black")
181char["Body Colors"].RightArmColor = BrickColor.new("Really black")
182---------------------------
183local Transforming = true
184hum.WalkSpeed = 0
185local fx = Instance.new("Part",torso)
186wit = torso.BrickColor.Color
187wit2 = Color3.new(0,0,0)
188local glowz = Instance.new("ParticleEmitter",fx)
189glowz.LightEmission = 1
190glowz.Texture = "rbxassetid://284205403"
191glowz.Color = ColorSequence.new(wit)
192glowz.Size = NumberSequence.new(5)
193glowz.Speed = NumberRange.new(25,50)
194glowz.LockedToPart = false
195glowz.Transparency = NumberSequence.new(0.75)
196glowz.RotSpeed = NumberRange.new(-2000,2000)
197glowz.Lifetime = NumberRange.new(1)
198glowz.Rate = 50000
199glowz.VelocitySpread = 9001
200fx.Anchored = true
201fx.Material = "Neon"
202fx.CanCollide = false
203fx.Locked = true
204fx.Transparency = 1
205fx.Material = "Neon"
206fx.Size = Vector3.new(1,1,1)
207fx.TopSurface = "SmoothNoOutlines"
208fx.BottomSurface = "SmoothNoOutlines"
209fx.BrickColor = BrickColor.new("Really black")
210fxm = Instance.new("SpecialMesh",fx)
211fxm.MeshType = "Sphere"
212local sa2 = Instance.new("Sound",torso)
213sa2.SoundId = "rbxassetid://93724183"
214sa2.Pitch = 0.5
215sa2.Volume = 5
216sa2.Looped = false
217sa2:Play()
218local value = 1
219fxm.Scale = Vector3.new(1,1,1)
220for i = 1, 20 do rs:wait()
221 value = value - 0.05
222 fx.Transparency = fx.Transparency - (1/20)
223 fx.CFrame = torso.CFrame
224 fxm.Scale = fxm.Scale + Vector3.new(value,value,value)
225 rs:wait()
226end
227----------------------------------------------------
228GroundWave1 = function()
229 local Transforming = true
230hum.WalkSpeed = 0
231local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
232 local Colors = {"White", "Really black"}
233 local wave = Instance.new("Part", torso)
234 wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
235 wave.Anchored = true
236 wave.CanCollide = false
237 wave.Locked = true
238 wave.Size = Vector3.new(1, 1, 1)
239 wave.TopSurface = "Smooth"
240 wave.BottomSurface = "Smooth"
241 wave.Transparency = 0.35
242 wave.CFrame = HandCF
243 wm = Instance.new("SpecialMesh", wave)
244 wm.MeshId = "rbxassetid://3270017"
245 coroutine.wrap(function()
246 for i = 1, 30, 1 do
247 wm.Scale = Vector3.new(50, 50, 1 + i*50)
248 wave.Size = wm.Scale
249 wave.CFrame = HandCF
250 wave.Transparency = i/30
251 wait()
252 end
253 wait()
254 wave:Destroy()
255 end)()
256end
257----------------------------------------------------
258GroundWave = function()
259 if Transforming == true then
260 local value = 5
261 local value2 = 10
262 local value3 = 20
263local sa2 = Instance.new("Sound",torso)
264sa2.SoundId = "rbxassetid://413682983"
265sa2.Pitch = 1
266sa2.Volume = 10
267sa2.Looped = false
268sa2:Play()
269 local wave = Instance.new("Part", torso)
270local glowz = Instance.new("ParticleEmitter",wave)
271glowz.LightEmission = 1
272glowz.Texture = "0"
273glowz.Color = ColorSequence.new(wit)
274glowz.Size = NumberSequence.new(30)
275glowz.Speed = NumberRange.new(25,100)
276glowz.LockedToPart = false
277glowz.Transparency = NumberSequence.new(0.75)
278glowz.RotSpeed = NumberRange.new(-2000,2000)
279glowz.Lifetime = NumberRange.new(1)
280glowz.Rate = 50000
281glowz.VelocitySpread = 9001
282
283 wave.BrickColor = BrickColor.new("Lime green")
284 wave.Anchored = true
285 wave.CanCollide = false
286 wave.Locked = true
287 wave.Size = Vector3.new(1, 1, 1)
288 wave.TopSurface = "Smooth"
289 wave.BottomSurface = "Smooth"
290 wave.Transparency = 0.35
291 wave.CFrame = fx.CFrame
292 wave.Material = "Neon"
293 wm = Instance.new("SpecialMesh", wave)
294 wm.MeshType = "Sphere"
295 wm.Scale = Vector3.new(1,1,1)
296 local wave2 = Instance.new("Part", torso)
297 wave2.BrickColor = BrickColor.new("Lime green")
298 wave2.Anchored = true
299 wave2.CanCollide = false
300 wave2.Locked = true
301 wave2.Size = Vector3.new(1, 1, 1)
302 wave2.TopSurface = "Smooth"
303 wave2.BottomSurface = "Smooth"
304 wave2.Transparency = 0.35
305 wave2.CFrame = fx.CFrame
306 wave2.Material = "Neon"
307 wm2 = Instance.new("SpecialMesh", wave2)
308 wm2.MeshType = "FileMesh"
309 wm2.MeshId = "http://www.roblox.com/asset/?id=3270017"
310 wm2.Scale = Vector3.new(1,1,1)
311 local wave3 = Instance.new("Part", torso)
312 wave3.BrickColor = BrickColor.new("Really black")
313 wave3.Anchored = true
314 wave3.CanCollide = false
315 wave3.Locked = true
316 wave3.Size = Vector3.new(1, 1, 1)
317 wave3.TopSurface = "Smooth"
318 wave3.BottomSurface = "Smooth"
319 wave3.Transparency = 0.35
320 wave3.CFrame = fx.CFrame
321 wave3.Material = "Neon"
322 wm3 = Instance.new("SpecialMesh", wave3)
323 wm3.MeshType = "FileMesh"
324 wm3.MeshId = "http://www.roblox.com/asset/?id=3270017"
325 wm3.Scale = Vector3.new(1,1,1)
326 coroutine.wrap(function()
327 for i = 1, 18, 1 do
328 value = value - 0.5
329 value2 = value2 - 0.75*1.5
330 value3 = value3 - 0.475*1.5
331 wm.Scale = wm.Scale + Vector3.new(value*3.5,value*3.5,value*3.5)
332 wm2.Scale = wm.Scale + Vector3.new(value2*3.5,value2*3.5,0.5)
333 wm3.Scale = wm.Scale + Vector3.new(value3*3.5,value3*3.5,0.25)
334 --wave.Size = wm.Scale
335 wave.CFrame = fx.CFrame
336 wave.Transparency = i/14
337 --wave2.Size = wm2.Scale
338 wave2.CFrame = fx.CFrame
339 wave2.Rotation = Vector3.new(90, 0, 0)
340 wave2.Transparency = i/14
341 --wave3.Size = wm3.Scale
342 wave3.CFrame = fx.CFrame
343 wave3.Rotation = Vector3.new(90, 0, 0)
344 wave3.Transparency = i/14
345 wait()
346 glowz.Rate = 0
347
348 end
349 wait()
350 wave:Destroy()
351 wave2:Destroy()
352 wave3:Destroy()
353 end)()
354 elseif Transforming == false then
355 wait()
356 end
357end
358
359for i = 1, 100 do rs:wait()
360 fx.CFrame = torso.CFrame
361end
362
363Spawn(function()
364 while wait(1) do
365 GroundWave()
366 end
367end)
368
369wait(4)
370
371Transforming = false
372
373local value2 = 1
374for i = 1, 20 do rs:wait()
375 value2 = value2 - 0.05
376 glowz.Rate = 0
377
378 fx.Transparency = fx.Transparency + (1/20)
379 fx.CFrame = torso.CFrame
380 fxm.Scale = fxm.Scale + Vector3.new(value2,value2,value2)
381 rs:wait()
382end
383glowz:Destroy()
384
385
386local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
387 local valuer = 5
388 local valuer2 = 10
389 local valuer3 = 15
390local sa2 = Instance.new("Sound",torso)
391sa2.SoundId = "rbxassetid://130972023"
392sa2.Pitch = 1
393sa2.Volume = 5
394sa2.Looped = false
395sa2:Play()
396local sar2 = Instance.new("Sound",torso)
397sar2.SoundId = "rbxassetid://153274423"
398sar2.Pitch = 1
399sar2.Volume = 5
400sar2.Looped = false
401sar2:Play()
402 local wave = Instance.new("Part", torso)
403 wave.BrickColor = BrickColor.new("Lime green")
404 wave.Anchored = true
405 wave.CanCollide = false
406 wave.Locked = true
407 wave.Size = Vector3.new(1, 1, 1)
408 wave.TopSurface = "Smooth"
409 wave.BottomSurface = "Smooth"
410 wave.Transparency = 0.35
411 wave.CFrame = HandCF
412 wm = Instance.new("SpecialMesh", wave)
413 wm.MeshId = "rbxassetid://3270017"
414 local wave2 = Instance.new("Part", torso)
415 wave2.BrickColor = BrickColor.new("Really black")
416 wave2.Anchored = true
417 wave2.CanCollide = false
418 wave2.Locked = true
419 wave2.Size = Vector3.new(1, 1, 1)
420 wave2.TopSurface = "Smooth"
421 wave2.BottomSurface = "Smooth"
422 wave2.Transparency = 0.35
423 wave2.CFrame = HandCF
424 wm2 = Instance.new("SpecialMesh", wave2)
425 wm2.MeshId = "rbxassetid://3270017"
426 local wave3 = Instance.new("Part", torso)
427 wave3.BrickColor = BrickColor.new("Lime green")
428 wave3.Anchored = true
429 wave3.CanCollide = false
430 wave3.Locked = true
431 wave3.Size = Vector3.new(1, 1, 1)
432 wave3.TopSurface = "Smooth"
433 wave3.BottomSurface = "Smooth"
434 wave3.Transparency = 0.35
435 wave3.CFrame = HandCF
436 wm3 = Instance.new("SpecialMesh", wave3)
437 wm3.MeshId = "rbxassetid://3270017"
438 coroutine.wrap(function()
439 for i = 1, 14, 1 do
440 valuer = valuer - 0.35
441 valuer2 = valuer - 0.45
442 valuer3 = valuer3 - 0.475
443 wm.Scale = wm.Scale + Vector3.new(valuer*2.5,valuer*2.5, 1 + i*200)
444 wave.Size = wm.Scale
445 wave.CFrame = HandCF
446 wave.Transparency = i/14
447 wm2.Scale = wm2.Scale + Vector3.new(valuer2*2.5,valuer2*2.5, 0 + i*10)
448 wave2.Size = wm2.Scale
449 wave2.CFrame = HandCF
450 wave2.Transparency = i/14
451 wm3.Scale = wm3.Scale + Vector3.new(valuer3*2.5,valuer3*2.5, 1)
452 wave3.Size = wm2.Scale
453 wave3.CFrame = HandCF
454 wave3.Transparency = i/14
455 wait()
456 end
457 wait()
458 wave:Destroy()
459 wave2:Destroy()
460end)()
461hum.WalkSpeed = 16
462--------------------
463
464------------
465fire = Instance.new('Fire',hed) -- change the part to where u want it to stick on
466fire.Color = Color3.new(0,1,0)
467fire.SecondaryColor = Color3.new(0,1,0)
468fire.Enabled = true
469--------------------------------------------------------------------------------------------------------
470plr=game:service'Players'.LocalPlayer
471chr=plr.Character
472local ms = plr:GetMouse()
473CV="Bright red"
474
475local txt = Instance.new("BillboardGui", chr)
476txt.Adornee = chr.Head
477txt.Name = "_status"
478txt.Size = UDim2.new(4, 0, 2.5, 0)
479txt.StudsOffset = Vector3.new(-4, 2, 0)
480local text = Instance.new("TextLabel", txt)
481text.Size = UDim2.new(3, 0, 0.5, 0)
482text.FontSize = "Size24"
483text.TextScaled = true
484text.TextTransparency = 0
485text.BackgroundTransparency = 1
486text.TextTransparency = 0
487text.TextStrokeTransparency = 0
488text.Font = "Bodoni"
489text.TextStrokeColor3 = Color3.new(0,1,0)
490text.Text = "Pumpkin Overseer"
491--------------------------------------------------------
492char["Body Colors"].HeadColor = BrickColor.new("Really black")
493char["Body Colors"].TorsoColor = BrickColor.new("Really black")
494char["Body Colors"].LeftArmColor = BrickColor.new("Really black")
495char["Body Colors"].RightArmColor = BrickColor.new("Really black")
496--------------------------------------------------------------
497fat = Instance.new("BindableEvent",script)
498fat.Name = "Heartbeat"
499
500script:WaitForChild("Heartbeat")
501
502frame = 1/30
503tf = 0
504allowframeloss = false --if set to true will fire every frame it possibly can. This will result in multiple events happening at the same time whenever delta returns frame*2 or greater.
505tossremainder = false --if set to true t will be set to 0 after Fire()-ing.
506lastframe = tick()
507script.Heartbeat:Fire() --ayy lmao
508
509game:GetService("RunService").Heartbeat:connect(function(s,p) --herp derp
510 tf = tf + s
511 if tf >= frame then
512 if allowframeloss then
513 script.Heartbeat:Fire()
514 lastframe=tick()
515 else
516 --print("FIRED "..math.floor(t/frame).." FRAME(S)","REMAINDER "..(t - frame*(math.floor(t/frame))))
517 for i=1, math.floor(tf/frame) do
518 script.Heartbeat:Fire()
519 end
520 lastframe=tick()
521 end
522 if tossremainder then
523 tf = 0
524 else
525 tf = tf - frame * math.floor(tf/frame)
526 end
527 end
528end)
529----------------------------------------------------
530for i,v in pairs(char:children()) do
531 if v:IsA("Hat") then
532 v:Destroy()
533 end
534end
535for i,v in pairs (hed:GetChildren()) do
536 if v:IsA("Sound") then
537 v:Destroy()
538 end
539end
540----------------------------------------------------
541Debounces = {
542CanAttack = true;
543CanJoke = true;
544NoIdl = false;
545Slashing = false;
546Slashed = false;
547ks = false;
548}
549----------------------------------------------------
550function weld5(part0, part1, c0, c1)
551 weeld=Instance.new("Weld", part0)
552 weeld.Part0=part0
553 weeld.Part1=part1
554 weeld.C0=c0
555 weeld.C1=c1
556 return weeld
557end
558----------------------------------------------------
559function NewPart(prnt,siz,cf,trans,anc,mat,col)
560 local prt=Instance.new("Part")
561 prt.Parent=prnt
562 prt.Name="Part"
563 prt.Size=siz
564 prt.CanCollide=false
565 prt.Anchored=anc
566 prt.Locked=true
567 prt.Transparency = trans
568 prt.TopSurface=10
569 prt.BottomSurface=10
570 prt.FrontSurface=10
571 prt.BackSurface=10
572 prt.LeftSurface=10
573 prt.RightSurface=10
574 prt:BreakJoints()
575 prt.CFrame=cf or CFrame.new(30,10,30)
576 prt.Material=mat
577 prt.BrickColor=BrickColor.new(col)
578 m=Instance.new("SpecialMesh",prt)
579 m.MeshType=6
580 return prt
581end
582----------------------------------------------------
583function lerp(a, b, t) -- Linear interpolation
584 return a + (b - a)*t
585end
586
587function slerp(a, b, t) --Spherical interpolation
588 dot = a:Dot(b)
589 if dot > 0.99999 or dot < -0.99999 then
590 return t <= 0.5 and a or b
591 else
592 r = math.acos(dot)
593 return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
594 end
595end
596
597function matrixInterpolate(a, b, t)
598 local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
599 local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
600 local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
601 local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
602 local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
603 local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
604 local t = v1:Dot(v2)
605 if not (t < 0 or t == 0 or t > 0) then -- Failsafe
606 return CFrame.new()
607 end
608 return CFrame.new(
609 v0.x, v0.y, v0.z,
610 v1.x, v1.y, v1.z,
611 v2.x, v2.y, v2.z,
612 v3.x, v3.y, v3.z)
613end
614----------------------------------------------------
615function genWeld(a,b)
616 local w = Instance.new("Weld",a)
617 w.Part0 = a
618 w.Part1 = b
619 return w
620end
621function weld(a, b)
622 local weld = Instance.new("Weld")
623 weld.Name = "W"
624 weld.Part0 = a
625 weld.Part1 = b
626 weld.C0 = a.CFrame:inverse() * b.CFrame
627 weld.Parent = a
628 return weld;
629end
630----------------------------------------------------
631function Lerp(c1,c2,al)
632 local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
633 local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
634 for i,v in pairs(com1) do
635 com1[i] = v+(com2[i]-v)*al
636 end
637 return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
638end
639----------------------------------------------------
640newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
641 local wld = Instance.new("Weld", wp1)
642 wld.Part0 = wp0
643 wld.Part1 = wp1
644 wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
645end
646----------------------------------------------------
647newWeld(torso, larm, -1.5, 0.5, 0)
648larm.Weld.C1 = CFrame.new(0, 0.5, 0)
649newWeld(torso, rarm, 1.5, 0.5, 0)
650rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
651newWeld(torso, hed, 0, 1.5, 0)
652newWeld(torso, lleg, -0.5, -1, 0)
653lleg.Weld.C1 = CFrame.new(0, 1, 0)
654newWeld(torso, rleg, 0.5, -1, 0)
655rleg.Weld.C1 = CFrame.new(0, 1, 0)
656newWeld(root, torso, 0, -1, 0)
657torso.Weld.C1 = CFrame.new(0, -1, 0)
658----------------------------------------------------
659
660hed.face.Texture = "http://www.roblox.com/asset/?id=0"
661hed.Transparency = 1
662
663-----------------------
664LittleWave = function()
665 local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
666 local Colors = {"Lime green", "Black","Really black"}
667 local wave = Instance.new("Part", torso)
668
669
670 wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
671
672
673 wave.Anchored = true
674 wave.CanCollide = false
675 wave.Material = "Neon"
676 wave.Locked = true
677 wave.Size = Vector3.new(1, 1, 1)
678 wave.TopSurface = "Smooth"
679 wave.BottomSurface = "Smooth"
680 wave.Transparency = 0.35
681 wave.CFrame = HandCF
682 wm = Instance.new("SpecialMesh", wave)
683 wm.MeshId = "rbxassetid://3270017"
684 coroutine.wrap(function()
685 for i = 1, 14, 1 do
686 wm.Scale = Vector3.new(0.8 + i*0.8, 0.8 + i*0.8, 0.8)
687 wave.Size = wm.Scale
688 wave.CFrame = HandCF
689 wave.Transparency = i/14
690 wait()
691 end
692 wait()
693 wave:Destroy()
694 end)()
695end
696 Spawn(function()
697 while wait(.8) do
698 LittleWave()
699 end
700end)
701
702-----------------------------
703
704------------------------
705
706-------------------------
707
708
709----------------------------------------------------
710z = Instance.new("Sound", char)
711z.SoundId = "rbxassetid://435750418"
712z.Looped = true
713z.Pitch = 1
714z.Volume = 7
715wait(.1)
716z:Play()
717----------------------------------------------------
718
719
720---------------------
721
722New = function(Object, Parent, Name, Data)
723 local Object = Instance.new(Object)
724 for Index, Value in pairs(Data or {}) do
725 Object[Index] = Value
726 end
727 Object.Parent = Parent
728 Object.Name = Name
729 return Object
730end
731----------------------------------------------------
732--reaper hat
733for _,x in pairs(char:children()) do
734if x:IsA('Hat') then x:remove() end
735if x:IsA('Shirt') then x:remove() end
736if x:IsA('Pants') then x:remove() end
737end
738
739local h = Instance.new('Part', char)
740h.Name = 'DK Hood'
741h.Size = Vector3.new(0.5,0.5,0.5)
742h.CFrame = hed.CFrame
743h.CanCollide = false
744--
745newWeld(hed, h, 0, 0.35, 0)
746--
747local m = Instance.new('SpecialMesh', h)
748m.Name = "Reaper's Cowl"
749m.MeshType = 'FileMesh'
750m.Scale = Vector3.new(0.5,0.5,0.5)
751m.MeshId,m.TextureId = 'http://www.roblox.com/asset/?id=1474596','http://www.roblox.com/asset/?id=103577616'
752m.VertexColor = Vector3.new(1,1,1)
753local shirt = Instance.new("Shirt",p.Character)
754local pants = Instance.new("Pants",p.Character)
755shirt.ShirtTemplate = "rbxassetid://233027251"
756pants.PantsTemplate = "rbxassetid://149639608"
757--Left Arm
758m = Instance.new("Model")
759m.Name = "LeftArm"
760p1 = Instance.new("Part", m)
761p1.BrickColor = BrickColor.new("Lime green")
762p1.Material = Enum.Material.Granite
763p1.CFrame = CFrame.new(-1.5, 5.73969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
764p1.Size = Vector3.new(1, 0.200000048, 1)
765p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
766p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
767p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
768p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
769p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
770p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
771b1 = Instance.new("SpecialMesh", p1)
772b1.MeshType = Enum.MeshType.Brick
773b1.Name = "Mesh"
774b1.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
775p2 = Instance.new("Part", m)
776p2.BrickColor = BrickColor.new("Lime green")
777p2.Material = Enum.Material.Granite
778p2.CFrame = CFrame.new(-1.5, 6.03969383, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
779p2.Size = Vector3.new(1, 0.200000048, 1)
780p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
781p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
782p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
783p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
784p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
785p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
786b2 = Instance.new("SpecialMesh", p2)
787b2.MeshType = Enum.MeshType.Brick
788b2.Name = "Mesh"
789b2.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
790p3 = Instance.new("Part", m)
791p3.BrickColor = BrickColor.new("Lime green")
792p3.Material = Enum.Material.Granite
793p3.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
794p3.Size = Vector3.new(1, 0.200000048, 1)
795p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
796p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
797p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
798p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
799p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
800p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
801b3 = Instance.new("SpecialMesh", p3)
802b3.MeshType = Enum.MeshType.Brick
803b3.Name = "Mesh"
804b3.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
805p4 = Instance.new("Part", m)
806p4.BrickColor = BrickColor.new("Black")
807p4.Material = Enum.Material.SmoothPlastic
808p4.Name = "LeftArmPlate"
809p4.Size = Vector3.new(1, 2, 1)
810p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
811p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
812p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
813p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
814p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
815p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
816b4 = Instance.new("SpecialMesh", p4)
817b4.MeshType = Enum.MeshType.Brick
818b4.Name = "Mesh"
819b4.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
820p5 = Instance.new("Part", m)
821p5.BrickColor = BrickColor.new("Lime green")
822p5.Material = Enum.Material.Granite
823p5.CFrame = CFrame.new(-1.5, 6.33969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
824p5.Size = Vector3.new(1, 0.200000048, 1)
825p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
826p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
827p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
828p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
829p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
830p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
831b5 = Instance.new("SpecialMesh", p5)
832b5.MeshType = Enum.MeshType.Brick
833b5.Name = "Mesh"
834b5.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
835p6 = Instance.new("Part", m)
836p6.BrickColor = BrickColor.new("Lime green")
837p6.Material = Enum.Material.Granite
838p6.CFrame = CFrame.new(-1.5, 5.73969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
839p6.Size = Vector3.new(1, 0.200000048, 1)
840p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
841p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
842p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
843p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
844p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
845p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
846b6 = Instance.new("SpecialMesh", p6)
847b6.MeshType = Enum.MeshType.Brick
848b6.Name = "Mesh"
849b6.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
850p7 = Instance.new("Part", m)
851p7.BrickColor = BrickColor.new("Lime green")
852p7.Material = Enum.Material.Granite
853p7.CFrame = CFrame.new(-1.5, 6.03969383, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
854p7.FormFactor = Enum.FormFactor.Custom
855p7.Size = Vector3.new(1, 0.200000048, 1)
856p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
857p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
858p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
859p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
860p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
861p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
862b7 = Instance.new("SpecialMesh", p7)
863b7.MeshType = Enum.MeshType.Brick
864b7.Name = "Mesh"
865b7.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
866p8 = Instance.new("Part", m)
867p8.BrickColor = BrickColor.new("Lime green")
868p8.Material = Enum.Material.Granite
869p8.CFrame = CFrame.new(-1.5, 6.33969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
870p8.FormFactor = Enum.FormFactor.Custom
871p8.Size = Vector3.new(1, 0.200000048, 1)
872p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
873p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
874p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
875p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
876p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
877p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
878b8 = Instance.new("SpecialMesh", p8)
879b8.MeshType = Enum.MeshType.Brick
880b8.Name = "Mesh"
881b8.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
882p9 = Instance.new("Part", m)
883p9.BrickColor = BrickColor.new("Lime green")
884p9.Material = Enum.Material.Granite
885p9.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
886p9.FormFactor = Enum.FormFactor.Custom
887p9.Size = Vector3.new(1, 0.200000048, 1)
888p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
889p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
890p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
891p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
892p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
893p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
894b9 = Instance.new("SpecialMesh", p9)
895b9.MeshType = Enum.MeshType.Brick
896b9.Name = "Mesh"
897b9.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
898p10 = Instance.new("Part", m)
899p10.BrickColor = BrickColor.new("Black")
900p10.Material = Enum.Material.SmoothPlastic
901p10.CFrame = CFrame.new(-1.5, 6.78969193, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
902p10.FormFactor = Enum.FormFactor.Custom
903p10.Size = Vector3.new(1, 0.349999994, 1)
904p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
905p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
906p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
907p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
908p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
909p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
910b10 = Instance.new("SpecialMesh", p10)
911b10.MeshType = Enum.MeshType.Brick
912b10.Name = "Mesh"
913b10.Scale = Vector3.new(1.12, 1.01999998, 1.12)
914p11 = Instance.new("Part", m)
915p11.BrickColor = BrickColor.new("Black")
916p11.Material = Enum.Material.Metal
917p11.CFrame = CFrame.new(-1.5, 6.48969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
918p11.FormFactor = Enum.FormFactor.Custom
919p11.Size = Vector3.new(1, 0.25, 1)
920p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
921p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
922p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
923p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
924p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
925p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
926b11 = Instance.new("SpecialMesh", p11)
927b11.MeshType = Enum.MeshType.Brick
928b11.Name = "Mesh"
929b11.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
930p12 = Instance.new("Part", m)
931p12.BrickColor = BrickColor.new("Black")
932p12.Material = Enum.Material.Metal
933p12.CFrame = CFrame.new(-1.5, 6.18969154, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
934p12.FormFactor = Enum.FormFactor.Custom
935p12.Size = Vector3.new(1, 0.25, 1)
936p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
937p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
938p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
939p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
940p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
941p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
942b12 = Instance.new("SpecialMesh", p12)
943b12.MeshType = Enum.MeshType.Brick
944b12.Name = "Mesh"
945b12.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
946p13 = Instance.new("Part", m)
947p13.BrickColor = BrickColor.new("Black")
948p13.Material = Enum.Material.Metal
949p13.CFrame = CFrame.new(-1.5, 5.88968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
950p13.FormFactor = Enum.FormFactor.Custom
951p13.Size = Vector3.new(1, 0.25, 1)
952p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
953p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
954p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
955p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
956p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
957p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
958b13 = Instance.new("SpecialMesh", p13)
959b13.MeshType = Enum.MeshType.Brick
960b13.Name = "Mesh"
961b13.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
962p14 = Instance.new("Part", m)
963p14.BrickColor = BrickColor.new("Black")
964p14.Material = Enum.Material.Metal
965p14.CFrame = CFrame.new(-1.5, 5.58969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
966p14.FormFactor = Enum.FormFactor.Custom
967p14.Size = Vector3.new(1, 0.25, 1)
968p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
969p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
970p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
971p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
972p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
973p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
974b14 = Instance.new("SpecialMesh", p14)
975b14.MeshType = Enum.MeshType.Brick
976b14.Name = "Mesh"
977b14.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
978p15 = Instance.new("Part", m)
979p15.BrickColor = BrickColor.new("Lime green")
980p15.Material = Enum.Material.Granite
981p15.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
982p15.FormFactor = Enum.FormFactor.Custom
983p15.Size = Vector3.new(1, 1, 1)
984p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
985p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
986p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
987p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
988p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
989p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
990b15 = Instance.new("SpecialMesh", p15)
991b15.MeshType = Enum.MeshType.Sphere
992b15.Name = "Mesh"
993p16 = Instance.new("Part", m)
994p16.BrickColor = BrickColor.new("Black")
995p16.Material = Enum.Material.Metal
996p16.CFrame = CFrame.new(-1.49142194, 4.80968094, 21.7695732, 1, 1.67448022e-007, -1.06342185e-007, -2.04123751e-007, 0.500000119, -0.866025269, -6.57511308e-008, 0.866025329, 0.5)
997p16.FormFactor = Enum.FormFactor.Custom
998p16.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
999p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1000p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1001p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1002p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1003p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1004p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1005b16 = Instance.new("SpecialMesh", p16)
1006b16.MeshType = Enum.MeshType.Brick
1007b16.Name = "Mesh"
1008b16.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1009p17 = Instance.new("Part", m)
1010p17.BrickColor = BrickColor.new("Black")
1011p17.Material = Enum.Material.SmoothPlastic
1012p17.CFrame = CFrame.new(-1.50000083, 5.33968592, 22.4999943, 1, -9.44388034e-009, 5.2184074e-008, -7.54702114e-008, 0.999999881, 2.38418579e-007, 2.60919535e-008, 1.1920929e-007, 0.999999881)
1013p17.FormFactor = Enum.FormFactor.Custom
1014p17.Size = Vector3.new(1.01999998, 0.300000012, 1.01999998)
1015p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1016p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1017p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1018p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1019p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1020p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1021b17 = Instance.new("SpecialMesh", p17)
1022b17.MeshType = Enum.MeshType.Brick
1023b17.Name = "Mesh"
1024b17.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
1025p18 = Instance.new("Part", m)
1026p18.BrickColor = BrickColor.new("Black")
1027p18.Material = Enum.Material.SmoothPlastic
1028p18.CFrame = CFrame.new(-1.50000072, 5.33968782, 22.4999962, 1, -3.77485776e-008, 7.82760807e-008, -1.03774902e-007, 0.999999881, 3.57627869e-007, 5.21839532e-008, 2.38418565e-007, 0.999999881)
1029p18.FormFactor = Enum.FormFactor.Custom
1030p18.Size = Vector3.new(1.00999999, 0.400000036, 1.00999999)
1031p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1032p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1033p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1034p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1035p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1036p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1037b18 = Instance.new("SpecialMesh", p18)
1038b18.MeshType = Enum.MeshType.Brick
1039b18.Name = "Mesh"
1040b18.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
1041p19 = Instance.new("Part", m)
1042p19.BrickColor = BrickColor.new("Black")
1043p19.Material = Enum.Material.SmoothPlastic
1044p19.CFrame = CFrame.new(-1.5000006, 5.33968973, 22.4999981, 1, -6.60532748e-008, 1.04368084e-007, -1.32079592e-007, 0.999999881, 4.76837158e-007, 7.82759457e-008, 3.5762784e-007, 0.999999881)
1045p19.FormFactor = Enum.FormFactor.Custom
1046p19.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
1047p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1048p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1049p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1050p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1051p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1052p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1053b19 = Instance.new("SpecialMesh", p19)
1054b19.MeshType = Enum.MeshType.Brick
1055b19.Name = "Mesh"
1056b19.Scale = Vector3.new(1.02999997, 0.50999999, 1.02999997)
1057p20 = Instance.new("Part", m)
1058p20.BrickColor = BrickColor.new("Really black")
1059p20.Material = Enum.Material.SmoothPlastic
1060p20.CFrame = CFrame.new(-1.50000048, 5.33969164, 22.5, 1, -9.4357965e-008, 1.3046008e-007, -1.60384275e-007, 0.999999881, 5.96046448e-007, 1.04367942e-007, 4.76837101e-007, 0.999999881)
1061p20.FormFactor = Enum.FormFactor.Custom
1062p20.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
1063p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1064p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1065p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1066p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1067p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1068p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1069b20 = Instance.new("SpecialMesh", p20)
1070b20.MeshType = Enum.MeshType.Brick
1071b20.Name = "Mesh"
1072b20.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
1073p21 = Instance.new("Part", m)
1074p21.BrickColor = BrickColor.new("Black")
1075p21.Material = Enum.Material.Metal
1076p21.CFrame = CFrame.new(-1.93255413, 4.43040705, 22.5000057, -1.61368675e-007, -0.707106769, -0.707106769, -4.62050195e-007, -0.707106471, 0.707106948, -0.999999881, -5.86611463e-007, 4.45824725e-007)
1077p21.FormFactor = Enum.FormFactor.Custom
1078p21.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
1079p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1080p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1081p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1082p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1083p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1084p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1085b21 = Instance.new("SpecialMesh", p21)
1086b21.MeshType = Enum.MeshType.Wedge
1087b21.Name = "Mesh"
1088b21.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1089p22 = Instance.new("Part", m)
1090p22.BrickColor = BrickColor.new("Black")
1091p22.Material = Enum.Material.Metal
1092p22.CFrame = CFrame.new(-2.22184062, 4.80970049, 22.5000057, -6.50768897e-008, 0.866025269, 0.50000006, -7.82806978e-007, 0.499999732, -0.866025329, -0.999999881, 3.74247918e-007, -2.56530342e-007)
1093p22.FormFactor = Enum.FormFactor.Custom
1094p22.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1095p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1096p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1097p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1098p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1099p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1100p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1101b22 = Instance.new("SpecialMesh", p22)
1102b22.MeshType = Enum.MeshType.Brick
1103b22.Name = "Mesh"
1104b22.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1105p23 = Instance.new("Part", m)
1106p23.BrickColor = BrickColor.new("Black")
1107p23.Material = Enum.Material.Metal
1108p23.CFrame = CFrame.new(-2.41184235, 5.35969734, 22.5000076, -1.73507274e-007, 0.98480767, 0.17364803, -8.28146199e-007, 0.173647702, -0.984807611, -0.999999881, 1.49283139e-007, -3.43238185e-007)
1109p23.FormFactor = Enum.FormFactor.Custom
1110p23.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1111p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1112p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1113p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1114p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1115p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1116p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1117b23 = Instance.new("SpecialMesh", p23)
1118b23.MeshType = Enum.MeshType.Brick
1119b23.Name = "Mesh"
1120b23.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1121p24 = Instance.new("Part", m)
1122p24.BrickColor = BrickColor.new("Black")
1123p24.Material = Enum.Material.Metal
1124p24.CFrame = CFrame.new(-2.41184616, 5.92969847, 22.5000076, -1.73507232e-007, 0.984807611, -0.173648104, -8.12965368e-007, -0.173648402, -0.984807432, -0.999999881, 2.02498356e-008, -3.8854634e-007)
1125p24.FormFactor = Enum.FormFactor.Custom
1126p24.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1127p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1128p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1129p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1130p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1131p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1132p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1133b24 = Instance.new("SpecialMesh", p24)
1134b24.MeshType = Enum.MeshType.Brick
1135b24.Name = "Mesh"
1136b24.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1137p25 = Instance.new("Part", m)
1138p25.BrickColor = BrickColor.new("Black")
1139p25.Material = Enum.Material.Metal
1140p25.CFrame = CFrame.new(-2.14142036, 6.39827347, 22.5000114, -7.7074823e-008, 0.707106829, -0.70710659, -7.54731559e-007, -0.707106769, -0.707106471, -0.999999881, -1.79262827e-007, -4.39258827e-007)
1141p25.FormFactor = Enum.FormFactor.Custom
1142p25.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1143p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1144p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1145p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1146p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1147p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1148p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1149b25 = Instance.new("SpecialMesh", p25)
1150b25.MeshType = Enum.MeshType.Brick
1151b25.Name = "Mesh"
1152b25.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
1153p26 = Instance.new("Part", m)
1154p26.BrickColor = BrickColor.new("Black")
1155p26.Material = Enum.Material.Metal
1156p26.CFrame = CFrame.new(-1.49142087, 6.39827442, 23.1500168, -0.999999881, 1.1920929e-007, 2.68220901e-007, 1.49011612e-007, -0.707106948, -0.707106233, -1.77625395e-007, -0.707107306, 0.707106113)
1157p26.FormFactor = Enum.FormFactor.Custom
1158p26.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1159p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1160p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1161p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1162p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1163p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1164p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1165b26 = Instance.new("SpecialMesh", p26)
1166b26.MeshType = Enum.MeshType.Brick
1167b26.Name = "Mesh"
1168b26.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
1169p27 = Instance.new("Part", m)
1170p27.BrickColor = BrickColor.new("Black")
1171p27.Material = Enum.Material.Metal
1172p27.CFrame = CFrame.new(-1.49141955, 5.92969704, 23.420433, -0.999999881, -3.03310628e-007, 3.64177367e-007, 1.73600242e-007, -0.173648864, -0.984807312, 2.67648517e-008, -0.98480773, 0.173647434)
1173p27.FormFactor = Enum.FormFactor.Custom
1174p27.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1175p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1176p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1177p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1178p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1179p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1180p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1181b27 = Instance.new("SpecialMesh", p27)
1182b27.MeshType = Enum.MeshType.Brick
1183b27.Name = "Mesh"
1184b27.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1185p28 = Instance.new("Part", m)
1186p28.BrickColor = BrickColor.new("Black")
1187p28.Material = Enum.Material.Metal
1188p28.CFrame = CFrame.new(-1.49141943, 5.35969734, 23.4204254, -0.999999881, -3.81113438e-007, 3.10304756e-007, 1.64414772e-007, 0.173647091, -0.984807551, -6.59209363e-008, -0.984807372, -0.17364876)
1189p28.FormFactor = Enum.FormFactor.Custom
1190p28.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1191p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1192p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1193p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1194p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1195p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1196p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1197b28 = Instance.new("SpecialMesh", p28)
1198b28.MeshType = Enum.MeshType.Brick
1199b28.Name = "Mesh"
1200b28.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1201p29 = Instance.new("Part", m)
1202p29.BrickColor = BrickColor.new("Black")
1203p29.Material = Enum.Material.Metal
1204p29.CFrame = CFrame.new(-1.49141932, 4.80969858, 23.2304344, -0.999999881, -4.47128798e-007, 1.98065763e-007, 1.97699791e-007, 0.499998987, -0.866025448, -1.51352623e-007, -0.866024613, -0.500000715)
1205p29.FormFactor = Enum.FormFactor.Custom
1206p29.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1207p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1208p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1209p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1210p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1211p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1212p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1213b29 = Instance.new("SpecialMesh", p29)
1214b29.MeshType = Enum.MeshType.Brick
1215b29.Name = "Mesh"
1216b29.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1217p30 = Instance.new("Part", m)
1218p30.BrickColor = BrickColor.new("Black")
1219p30.Material = Enum.Material.Metal
1220p30.CFrame = CFrame.new(-1.49142027, 4.43040895, 22.9411469, -0.999999881, 4.25206935e-007, 1.94115486e-007, 4.85997248e-007, -0.707105517, 0.707107246, -5.38012159e-008, 0.707105875, 0.707107246)
1221p30.FormFactor = Enum.FormFactor.Custom
1222p30.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
1223p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1224p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1225p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1226p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1227p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1228p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1229b30 = Instance.new("SpecialMesh", p30)
1230b30.MeshType = Enum.MeshType.Wedge
1231b30.Name = "Mesh"
1232b30.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1233p31 = Instance.new("Part", m)
1234p31.BrickColor = BrickColor.new("Black")
1235p31.Material = Enum.Material.Metal
1236p31.CFrame = CFrame.new(-1.49141979, 6.39827871, 21.8500175, 0.999999881, 3.40091276e-007, -1.70074486e-007, -5.85792634e-007, -0.707105458, -0.707107246, 1.83170471e-007, 0.707105815, -0.707107365)
1237p31.FormFactor = Enum.FormFactor.Custom
1238p31.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1239p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1240p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1241p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1242p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1243p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1244p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1245b31 = Instance.new("SpecialMesh", p31)
1246b31.MeshType = Enum.MeshType.Brick
1247b31.Name = "Mesh"
1248b31.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
1249p32 = Instance.new("Part", m)
1250p32.BrickColor = BrickColor.new("Black")
1251p32.Material = Enum.Material.Metal
1252p32.CFrame = CFrame.new(-1.49141908, 4.43041086, 22.0588818, 0.999999881, -5.29441166e-008, -6.45117154e-007, -3.43892481e-007, -0.707107067, 0.707105517, 1.02492642e-007, -0.707107663, -0.707105637)
1253p32.FormFactor = Enum.FormFactor.Custom
1254p32.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
1255p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1256p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1257p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1258p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1259p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1260p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1261b32 = Instance.new("SpecialMesh", p32)
1262b32.MeshType = Enum.MeshType.Wedge
1263b32.Name = "Mesh"
1264b32.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1265p33 = Instance.new("Part", m)
1266p33.BrickColor = BrickColor.new("Black")
1267p33.Material = Enum.Material.Metal
1268p33.CFrame = CFrame.new(-1.4914217, 5.92970181, 21.5795879, 0.999999881, 5.22213554e-007, 2.83446013e-008, -7.00635724e-007, -0.173646629, -0.984807253, 1.38921934e-007, 0.984807372, -0.17364946)
1269p33.FormFactor = Enum.FormFactor.Custom
1270p33.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1271p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1272p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1273p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1274p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1275p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1276p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1277b33 = Instance.new("SpecialMesh", p33)
1278b33.MeshType = Enum.MeshType.Brick
1279b33.Name = "Mesh"
1280b33.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1281p34 = Instance.new("Part", m)
1282p34.BrickColor = BrickColor.new("Black")
1283p34.Material = Enum.Material.Metal
1284p34.CFrame = CFrame.new(-1.49141932, 5.35969925, 21.5795956, 0.999999881, 5.04442426e-007, 2.22697935e-007, -7.44121166e-007, 0.17364943, -0.984806716, 1.65013844e-007, 0.984807849, 0.173646525)
1285p34.FormFactor = Enum.FormFactor.Custom
1286p34.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1287p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1288p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1289p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1290p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1291p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1292p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1293b34 = Instance.new("SpecialMesh", p34)
1294b34.MeshType = Enum.MeshType.Brick
1295b34.Name = "Mesh"
1296b34.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1297w1 = Instance.new("Weld", p1)
1298w1.Name = "Part_Weld"
1299w1.Part0 = p1
1300w1.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1301w1.Part1 = p2
1302w1.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1303w2 = Instance.new("Weld", p2)
1304w2.Name = "Part_Weld"
1305w2.Part0 = p2
1306w2.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1307w2.Part1 = p3
1308w2.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1309w3 = Instance.new("Weld", p3)
1310w3.Name = "LeftArmPlate_Weld"
1311w3.Part0 = p3
1312w3.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1313w3.Part1 = p4
1314w3.C1 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1315w4 = Instance.new("Weld", p4)
1316w4.Name = "Part_Weld"
1317w4.Part0 = p4
1318w4.C0 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1319w4.Part1 = p5
1320w4.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1321w5 = Instance.new("Weld", p5)
1322w5.Name = "Part_Weld"
1323w5.Part0 = p5
1324w5.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1325w5.Part1 = p6
1326w5.C1 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1327w6 = Instance.new("Weld", p6)
1328w6.Name = "Part_Weld"
1329w6.Part0 = p6
1330w6.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1331w6.Part1 = p7
1332w6.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1333w7 = Instance.new("Weld", p7)
1334w7.Name = "Part_Weld"
1335w7.Part0 = p7
1336w7.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1337w7.Part1 = p8
1338w7.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1339w8 = Instance.new("Weld", p8)
1340w8.Name = "Part_Weld"
1341w8.Part0 = p8
1342w8.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1343w8.Part1 = p9
1344w8.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1345w9 = Instance.new("Weld", p9)
1346w9.Name = "Part_Weld"
1347w9.Part0 = p9
1348w9.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1349w9.Part1 = p10
1350w9.C1 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1351w10 = Instance.new("Weld", p10)
1352w10.Name = "Part_Weld"
1353w10.Part0 = p10
1354w10.C0 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1355w10.Part1 = p11
1356w10.C1 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1357w11 = Instance.new("Weld", p11)
1358w11.Name = "Part_Weld"
1359w11.Part0 = p11
1360w11.C0 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1361w11.Part1 = p12
1362w11.C1 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1363w12 = Instance.new("Weld", p12)
1364w12.Name = "Part_Weld"
1365w12.Part0 = p12
1366w12.C0 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1367w12.Part1 = p13
1368w12.C1 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1369w13 = Instance.new("Weld", p13)
1370w13.Name = "Part_Weld"
1371w13.Part0 = p13
1372w13.C0 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1373w13.Part1 = p14
1374w13.C1 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1375w14 = Instance.new("Weld", p14)
1376w14.Name = "Part_Weld"
1377w14.Part0 = p14
1378w14.C0 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1379w14.Part1 = p15
1380w14.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1381w15 = Instance.new("Weld", p15)
1382w15.Name = "Part_Weld"
1383w15.Part0 = p15
1384w15.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1385w15.Part1 = p16
1386w15.C1 = CFrame.new(1.49142683, -27.338007, 3.81166649, 1, -2.04123751e-007, -6.57511308e-008, 1.67448022e-007, 0.500000119, 0.866025329, -1.06342185e-007, -0.866025269, 0.5)
1387w16 = Instance.new("Weld", p16)
1388w16.Name = "Part_Weld"
1389w16.Part0 = p16
1390w16.C0 = CFrame.new(1.49142683, -27.338007, 3.81166649, 1, -2.04123751e-007, -6.57511308e-008, 1.67448022e-007, 0.500000119, 0.866025329, -1.06342185e-007, -0.866025269, 0.5)
1391w16.Part1 = p17
1392w16.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
1393w17 = Instance.new("Weld", p17)
1394w17.Name = "Part_Weld"
1395w17.Part0 = p17
1396w17.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
1397w17.Part1 = p18
1398w17.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
1399w18 = Instance.new("Weld", p18)
1400w18.Name = "Part_Weld"
1401w18.Part0 = p18
1402w18.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
1403w18.Part1 = p19
1404w18.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
1405w19 = Instance.new("Weld", p19)
1406w19.Name = "Part_Weld"
1407w19.Part0 = p19
1408w19.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
1409w19.Part1 = p20
1410w19.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
1411w20 = Instance.new("Weld", p20)
1412w20.Name = "Part_Weld"
1413w20.Part0 = p20
1414w20.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
1415w20.Part1 = p21
1416w20.C1 = CFrame.new(22.4999943, 10.3648901, -13.0979404, -3.09086232e-008, 1.63798575e-007, -1, -0.707106888, -0.70710665, -9.39673512e-008, -0.70710665, 0.707106888, 1.37678796e-007)
1417w21 = Instance.new("Weld", p21)
1418w21.Name = "Part_Weld"
1419w21.Part0 = p21
1420w21.C0 = CFrame.new(22.4999943, 10.3648901, -13.0979404, -3.09086232e-008, 1.63798575e-007, -1, -0.707106888, -0.70710665, -9.39673512e-008, -0.70710665, 0.707106888, 1.37678796e-007)
1421w21.Part1 = p22
1422w21.C1 = CFrame.new(22.4999981, -6.56083632, 15.8073826, 6.53831052e-008, -1.56958208e-007, -1, 0.866025388, 0.5, -2.18557226e-008, 0.5, -0.866025388, 1.68621398e-007)
1423w22 = Instance.new("Weld", p22)
1424w22.Name = "Part_Weld"
1425w22.Part0 = p22
1426w22.C0 = CFrame.new(22.4999981, -6.56083632, 15.8073826, 6.53831052e-008, -1.56958208e-007, -1, 0.866025388, 0.5, -2.18557226e-008, 0.5, -0.866025388, 1.68621398e-007)
1427w22.Part1 = p23
1428w22.C1 = CFrame.new(22.5, -0.667109907, 17.6726532, -4.30473222e-008, -2.02297542e-007, -1, 0.984807789, 0.17364794, -7.75219178e-008, 0.17364794, -0.984807789, 1.91749166e-007)
1429w23 = Instance.new("Weld", p23)
1430w23.Name = "Part_Weld"
1431w23.Part0 = p23
1432w23.C0 = CFrame.new(22.5, -0.667109907, 17.6726532, -4.30473222e-008, -2.02297542e-007, -1, 0.984807789, 0.17364794, -7.75219178e-008, 0.17364794, -0.984807789, 1.91749166e-007)
1433w23.Part1 = p24
1434w23.C1 = CFrame.new(22.5, 5.5165062, 17.3963699, -4.30473079e-008, -1.87116754e-007, -1, 0.98480773, -0.173648238, -9.9008588e-009, -0.173648238, -0.98480773, 1.91749152e-007)
1435w24 = Instance.new("Weld", p24)
1436w24.Name = "Part_Weld"
1437w24.Part0 = p24
1438w24.C0 = CFrame.new(22.5, 5.5165062, 17.3963699, -4.30473079e-008, -1.87116754e-007, -1, 0.98480773, -0.173648238, -9.9008588e-009, -0.173648238, -0.98480773, 1.91749152e-007)
1439w24.Part1 = p25
1440w24.C1 = CFrame.new(22.5000019, 14.6371164, 11.6086912, 5.33850866e-008, -1.28882959e-007, -1, 0.707106829, -0.707106769, 1.28882959e-007, -0.707106769, -0.707106829, 5.33851079e-008)
1441w25 = Instance.new("Weld", p25)
1442w25.Name = "Part_Weld"
1443w25.Part0 = p25
1444w25.C0 = CFrame.new(22.5000019, 14.6371164, 11.6086912, 5.33850866e-008, -1.28882959e-007, -1, 0.707106829, -0.707106769, 1.28882959e-007, -0.707106769, -0.707106829, 5.33851079e-008)
1445w25.Part1 = p26
1446w25.C1 = CFrame.new(-1.49141967, 29.4924316, -3.24661636, -1, -1.1920929e-007, -4.71654928e-008, 1.1920929e-007, -0.707106709, -0.707106888, 8.94069672e-008, -0.707106829, 0.70710665)
1447w26 = Instance.new("Weld", p26)
1448w26.Name = "Part_Weld"
1449w26.Part0 = p26
1450w26.C0 = CFrame.new(-1.49141967, 29.4924316, -3.24661636, -1, -1.1920929e-007, -4.71654928e-008, 1.1920929e-007, -0.707106709, -0.707106888, 8.94069672e-008, -0.707106829, 0.70710665)
1451w26.Part1 = p27
1452w26.C1 = CFrame.new(-1.49142396, 26.2059097, 13.748271, -1, -1.22925456e-007, 1.83316814e-007, -1.79966634e-007, -0.173648238, -0.98480773, 1.85296102e-007, -0.98480773, 0.173648149)
1453w27 = Instance.new("Weld", p27)
1454w27.Name = "Part_Weld"
1455w27.Part0 = p27
1456w27.C0 = CFrame.new(-1.49142396, 26.2059097, 13.748271, -1, -1.22925456e-007, 1.83316814e-007, -1.79966634e-007, -0.173648238, -0.98480773, 1.85296102e-007, -0.98480773, 0.173648149)
1457w27.Part1 = p28
1458w27.C1 = CFrame.new(-1.49142182, 20.0222931, 21.3207512, -1, -1.60415567e-007, 1.16723079e-007, -1.73416339e-007, 0.17364794, -0.98480773, 1.61053634e-007, -0.98480773, -0.173648015)
1459w28 = Instance.new("Weld", p28)
1460w28.Name = "Part_Weld"
1461w28.Part0 = p28
1462w28.C0 = CFrame.new(-1.49142182, 20.0222931, 21.3207512, -1, -1.60415567e-007, 1.16723079e-007, -1.73416339e-007, 0.17364794, -0.98480773, 1.61053634e-007, -0.98480773, -0.173648015)
1463w28.Part1 = p29
1464w28.C1 = CFrame.new(-1.49142063, 11.6331291, 26.311676, -1, -1.55435174e-007, 5.73833887e-008, -1.6416179e-007, 0.5, -0.866025329, 1.17385696e-007, -0.866025329, -0.500000119)
1465w29 = Instance.new("Weld", p29)
1466w29.Name = "Part_Weld"
1467w29.Part0 = p29
1468w29.C0 = CFrame.new(-1.49142063, 11.6331291, 26.311676, -1, -1.55435174e-007, 5.73833887e-008, -1.6416179e-007, 0.5, -0.866025329, 1.17385696e-007, -0.866025329, -0.500000119)
1469w29.Part1 = p30
1470w29.C1 = CFrame.new(-1.49142897, -4.49042225, -27.9532433, -1, 1.04557571e-007, 1.81026579e-007, 9.25360411e-008, -0.70710665, 0.707106829, 2.00373876e-007, 0.707106888, 0.707106769)
1471w30 = Instance.new("Weld", p30)
1472w30.Name = "Part_Weld"
1473w30.Part0 = p30
1474w30.C0 = CFrame.new(-1.49142897, -4.49042225, -27.9532433, -1, 1.04557571e-007, 1.81026579e-007, 9.25360411e-008, -0.70710665, 0.707106829, 2.00373876e-007, 0.707106888, 0.707106769)
1475w30.Part1 = p31
1476w30.C1 = CFrame.new(1.49142683, -2.32737827, 28.5731888, 1, -1.76048474e-007, -7.77491636e-008, -3.10438502e-008, -0.707106709, 0.707106769, -1.77897419e-007, -0.707106829, -0.707106829)
1477w31 = Instance.new("Weld", p31)
1478w31.Name = "Part_Weld"
1479w31.Part0 = p31
1480w31.C0 = CFrame.new(1.49142683, -2.32737827, 28.5731888, 1, -1.76048474e-007, -7.77491636e-008, -3.10438502e-008, -0.707106709, 0.707106769, -1.77897419e-007, -0.707106829, -0.707106829)
1481w31.Part1 = p32
1482w31.C1 = CFrame.new(1.49142444, 27.3293839, 3.86655521, 1, 9.41566256e-008, -1.8451928e-007, -6.23315088e-008, -0.70710665, -0.707107008, -2.35517859e-007, 0.707106888, -0.70710659)
1483w32 = Instance.new("Weld", p32)
1484w32.Name = "Part_Weld"
1485w32.Part0 = p32
1486w32.C0 = CFrame.new(1.49142444, 27.3293839, 3.86655521, 1, 9.41566256e-008, -1.8451928e-007, -6.23315088e-008, -0.70710665, -0.707107008, -2.35517859e-007, 0.707106888, -0.70710659)
1487w32.Part1 = p33
1488w32.C1 = CFrame.new(1.49143207, -18.1104279, 21.5624332, 1, -2.34282282e-007, -1.74181523e-007, 1.61463277e-007, -0.173648089, 0.98480773, -2.37625457e-007, -0.98480773, -0.173648238)
1489w33 = Instance.new("Weld", p33)
1490w33.Name = "Part_Weld"
1491w33.Part0 = p33
1492w33.C0 = CFrame.new(1.49143207, -18.1104279, 21.5624332, 1, -2.34282282e-007, -1.74181523e-007, 1.61463277e-007, -0.173648089, 0.98480773, -2.37625457e-007, -0.98480773, -0.173648238)
1493w33.Part1 = p34
1494w33.C1 = CFrame.new(1.49143016, -24.2940445, 13.5065851, 1, -2.49463085e-007, -1.74181523e-007, 2.35634644e-007, 0.173648074, 0.98480773, -1.83021399e-007, -0.98480773, 0.17364794)
1495m.Parent = larm
1496m:MakeJoints()
1497----------------------------------------------------
1498local cor = Instance.new("Part", larm.LeftArm)
1499cor.Name = "Thingy"
1500cor.Locked = true
1501cor.BottomSurface = 0
1502cor.CanCollide = false
1503cor.Size = Vector3.new(1, 1, 1)
1504cor.Transparency = 1
1505cor.TopSurface = 0
1506corw = Instance.new("Weld", cor)
1507corw.Part0 = larm
1508corw.Part1 = cor
1509corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1510corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1511weld1 = Instance.new("Weld", larm.LeftArm)
1512weld1.Part0 = cor
1513weld1.Part1 = larm.LeftArm.LeftArmPlate
1514weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1515--Right Arm
1516m2 = Instance.new("Model")
1517m2.Name = "RightArm"
1518p1 = Instance.new("Part", m2)
1519p1.BrickColor = BrickColor.new("Lime green")
1520p1.Material = Enum.Material.Granite
1521p1.CFrame = CFrame.new(3.5, -9.44201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1522p1.FormFactor = Enum.FormFactor.Custom
1523p1.Size = Vector3.new(1, 0.200000048, 1)
1524p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1525p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1526p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1527p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1528p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1529p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1530b1 = Instance.new("SpecialMesh", p1)
1531b1.MeshType = Enum.MeshType.Brick
1532b1.Name = "Mesh"
1533b1.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
1534p2 = Instance.new("Part", m2)
1535p2.BrickColor = BrickColor.new("Lime green")
1536p2.Material = Enum.Material.Granite
1537p2.CFrame = CFrame.new(3.5, -9.74201393, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1538p2.FormFactor = Enum.FormFactor.Custom
1539p2.Size = Vector3.new(1, 0.200000048, 1)
1540p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1541p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1542p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1543p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1544p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1545p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1546b2 = Instance.new("SpecialMesh", p2)
1547b2.MeshType = Enum.MeshType.Brick
1548b2.Name = "Mesh"
1549b2.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
1550p3 = Instance.new("Part", m2)
1551p3.BrickColor = BrickColor.new("Lime green")
1552p3.Material = Enum.Material.Granite
1553p3.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1554p3.FormFactor = Enum.FormFactor.Custom
1555p3.Size = Vector3.new(1, 0.200000048, 1)
1556p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1557p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1558p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1559p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1560p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1561p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1562b3 = Instance.new("SpecialMesh", p3)
1563b3.MeshType = Enum.MeshType.Brick
1564b3.Name = "Mesh"
1565b3.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
1566p4 = Instance.new("Part", m2)
1567p4.BrickColor = BrickColor.new("Lime green")
1568p4.Material = Enum.Material.Granite
1569p4.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1570p4.FormFactor = Enum.FormFactor.Custom
1571p4.Size = Vector3.new(1, 0.200000048, 1)
1572p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1573p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1574p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1575p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1576p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1577p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1578b4 = Instance.new("SpecialMesh", p4)
1579b4.MeshType = Enum.MeshType.Brick
1580b4.Name = "Mesh"
1581b4.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
1582p5 = Instance.new("Part", m2)
1583p5.BrickColor = BrickColor.new("Lime green")
1584p5.Material = Enum.Material.Granite
1585p5.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1586p5.FormFactor = Enum.FormFactor.Custom
1587p5.Size = Vector3.new(1, 0.200000048, 1)
1588p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1589p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1590p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1591p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1592p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1593p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1594b5 = Instance.new("SpecialMesh", p5)
1595b5.MeshType = Enum.MeshType.Brick
1596b5.Name = "Mesh"
1597b5.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
1598p6 = Instance.new("Part", m2)
1599p6.BrickColor = BrickColor.new("Lime green")
1600p6.Material = Enum.Material.Granite
1601p6.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1602p6.FormFactor = Enum.FormFactor.Custom
1603p6.Size = Vector3.new(1, 1, 1)
1604p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1605p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1606p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1607p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1608p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1609p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1610b6 = Instance.new("SpecialMesh", p6)
1611b6.MeshType = Enum.MeshType.Sphere
1612b6.Name = "Mesh"
1613p7 = Instance.new("Part", m2)
1614p7.BrickColor = BrickColor.new("Black")
1615p7.Material = Enum.Material.SmoothPlastic
1616p7.Name = "RightArmPlate"
1617p7.CFrame = CFrame.new(3.5, -9.54201603, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1618p7.FormFactor = Enum.FormFactor.Symmetric
1619p7.Size = Vector3.new(1, 2, 1)
1620p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1621p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1622p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1623p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1624p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1625p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1626b7 = Instance.new("SpecialMesh", p7)
1627b7.MeshType = Enum.MeshType.Brick
1628b7.Name = "Mesh"
1629b7.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
1630p8 = Instance.new("Part", m2)
1631p8.BrickColor = BrickColor.new("Lime green")
1632p8.Material = Enum.Material.Granite
1633p8.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1634p8.FormFactor = Enum.FormFactor.Custom
1635p8.Size = Vector3.new(1, 0.200000048, 1)
1636p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1637p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1638p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1639p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1640p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1641p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1642b8 = Instance.new("SpecialMesh", p8)
1643b8.MeshType = Enum.MeshType.Brick
1644b8.Name = "Mesh"
1645b8.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
1646p9 = Instance.new("Part", m2)
1647p9.BrickColor = BrickColor.new("Black")
1648p9.Material = Enum.Material.SmoothPlastic
1649p9.CFrame = CFrame.new(3.5, -8.69201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1650p9.FormFactor = Enum.FormFactor.Custom
1651p9.Size = Vector3.new(1, 0.349999994, 1)
1652p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1653p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1654p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1655p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1656p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1657p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1658b9 = Instance.new("SpecialMesh", p9)
1659b9.MeshType = Enum.MeshType.Brick
1660b9.Name = "Mesh"
1661b9.Scale = Vector3.new(1.12, 1.01999998, 1.12)
1662p10 = Instance.new("Part", m2)
1663p10.BrickColor = BrickColor.new("Black")
1664p10.Material = Enum.Material.Metal
1665p10.CFrame = CFrame.new(3.5, -8.99201584, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1666p10.FormFactor = Enum.FormFactor.Custom
1667p10.Size = Vector3.new(1, 0.25, 1)
1668p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1669p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1670p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1671p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1672p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1673p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1674b10 = Instance.new("SpecialMesh", p10)
1675b10.MeshType = Enum.MeshType.Brick
1676b10.Name = "Mesh"
1677b10.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
1678p11 = Instance.new("Part", m2)
1679p11.BrickColor = BrickColor.new("Black")
1680p11.Material = Enum.Material.Metal
1681p11.CFrame = CFrame.new(3.5, -9.29201508, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1682p11.FormFactor = Enum.FormFactor.Custom
1683p11.Size = Vector3.new(1, 0.25, 1)
1684p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1685p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1686p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1687p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1688p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1689p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1690b11 = Instance.new("SpecialMesh", p11)
1691b11.MeshType = Enum.MeshType.Brick
1692b11.Name = "Mesh"
1693b11.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
1694p12 = Instance.new("Part", m2)
1695p12.BrickColor = BrickColor.new("Black")
1696p12.Material = Enum.Material.Metal
1697p12.CFrame = CFrame.new(3.5, -9.59201431, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1698p12.FormFactor = Enum.FormFactor.Custom
1699p12.Size = Vector3.new(1, 0.25, 1)
1700p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1701p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1702p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1703p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1704p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1705p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1706b12 = Instance.new("SpecialMesh", p12)
1707b12.MeshType = Enum.MeshType.Brick
1708b12.Name = "Mesh"
1709b12.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
1710p13 = Instance.new("Part", m2)
1711p13.BrickColor = BrickColor.new("Lime green")
1712p13.Material = Enum.Material.Granite
1713p13.CFrame = CFrame.new(3.5, -9.44201088, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1714p13.FormFactor = Enum.FormFactor.Custom
1715p13.Size = Vector3.new(1, 0.200000048, 1)
1716p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1717p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1718p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1719p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1720p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1721p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1722b13 = Instance.new("SpecialMesh", p13)
1723b13.MeshType = Enum.MeshType.Brick
1724b13.Name = "Mesh"
1725b13.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
1726p14 = Instance.new("Part", m2)
1727p14.BrickColor = BrickColor.new("Black")
1728p14.Material = Enum.Material.Metal
1729p14.CFrame = CFrame.new(3.5, -9.89201069, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1730p14.FormFactor = Enum.FormFactor.Custom
1731p14.Size = Vector3.new(1, 0.25, 1)
1732p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1733p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1734p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1735p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1736p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1737p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1738b14 = Instance.new("SpecialMesh", p14)
1739b14.MeshType = Enum.MeshType.Brick
1740b14.Name = "Mesh"
1741b14.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
1742p15 = Instance.new("Part", m2)
1743p15.BrickColor = BrickColor.new("Lime green")
1744p15.Material = Enum.Material.Granite
1745p15.CFrame = CFrame.new(3.5, -9.74201298, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1746p15.FormFactor = Enum.FormFactor.Custom
1747p15.Size = Vector3.new(1, 0.200000048, 1)
1748p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1749p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1750p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1751p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1752p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1753p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1754b15 = Instance.new("SpecialMesh", p15)
1755b15.MeshType = Enum.MeshType.Brick
1756b15.Name = "Mesh"
1757b15.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
1758p16 = Instance.new("Part", m2)
1759p16.BrickColor = BrickColor.new("Black")
1760p16.Material = Enum.Material.SmoothPlastic
1761p16.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1762p16.FormFactor = Enum.FormFactor.Custom
1763p16.Size = Vector3.new(1.01999998, 0.300000012, 1.01999998)
1764p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1765p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1766p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1767p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1768p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1769p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1770b16 = Instance.new("SpecialMesh", p16)
1771b16.MeshType = Enum.MeshType.Brick
1772b16.Name = "Mesh"
1773b16.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
1774p17 = Instance.new("Part", m2)
1775p17.BrickColor = BrickColor.new("Black")
1776p17.Material = Enum.Material.SmoothPlastic
1777p17.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1778p17.FormFactor = Enum.FormFactor.Custom
1779p17.Size = Vector3.new(1.00999999, 0.400000036, 1.00999999)
1780p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1781p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1782p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1783p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1784p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1785p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1786b17 = Instance.new("SpecialMesh", p17)
1787b17.MeshType = Enum.MeshType.Brick
1788b17.Name = "Mesh"
1789b17.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
1790p18 = Instance.new("Part", m2)
1791p18.BrickColor = BrickColor.new("Really black")
1792p18.Material = Enum.Material.SmoothPlastic
1793p18.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1794p18.FormFactor = Enum.FormFactor.Custom
1795p18.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
1796p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1797p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1798p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1799p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1800p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1801p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1802b18 = Instance.new("SpecialMesh", p18)
1803b18.MeshType = Enum.MeshType.Brick
1804b18.Name = "Mesh"
1805b18.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
1806p19 = Instance.new("Part", m2)
1807p19.BrickColor = BrickColor.new("Black")
1808p19.Material = Enum.Material.SmoothPlastic
1809p19.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1810p19.FormFactor = Enum.FormFactor.Custom
1811p19.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
1812p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1813p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1814p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1815p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1816p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1817p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1818b19 = Instance.new("SpecialMesh", p19)
1819b19.MeshType = Enum.MeshType.Brick
1820b19.Name = "Mesh"
1821b19.Scale = Vector3.new(1.02999997, 0.50999999, 1.02999997)
1822w1 = Instance.new("Weld", p1)
1823w1.Name = "Part_Weld"
1824w1.Part0 = p1
1825w1.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1826w1.Part1 = p2
1827w1.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1828w2 = Instance.new("Weld", p2)
1829w2.Name = "Part_Weld"
1830w2.Part0 = p2
1831w2.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1832w2.Part1 = p3
1833w2.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1834w3 = Instance.new("Weld", p3)
1835w3.Name = "Part_Weld"
1836w3.Part0 = p3
1837w3.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1838w3.Part1 = p4
1839w3.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1840w4 = Instance.new("Weld", p4)
1841w4.Name = "Part_Weld"
1842w4.Part0 = p4
1843w4.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1844w4.Part1 = p5
1845w4.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1846w5 = Instance.new("Weld", p5)
1847w5.Name = "Part_Weld"
1848w5.Part0 = p5
1849w5.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1850w5.Part1 = p6
1851w5.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1852w6 = Instance.new("Weld", p6)
1853w6.Name = "RightArmPlate_Weld"
1854w6.Part0 = p6
1855w6.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1856w6.Part1 = p7
1857w6.C1 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1858w7 = Instance.new("Weld", p7)
1859w7.Name = "Part_Weld"
1860w7.Part0 = p7
1861w7.C0 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1862w7.Part1 = p8
1863w7.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1864w8 = Instance.new("Weld", p8)
1865w8.Name = "Part_Weld"
1866w8.Part0 = p8
1867w8.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1868w8.Part1 = p9
1869w8.C1 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1870w9 = Instance.new("Weld", p9)
1871w9.Name = "Part_Weld"
1872w9.Part0 = p9
1873w9.C0 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1874w9.Part1 = p10
1875w9.C1 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1876w10 = Instance.new("Weld", p10)
1877w10.Name = "Part_Weld"
1878w10.Part0 = p10
1879w10.C0 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1880w10.Part1 = p11
1881w10.C1 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1882w11 = Instance.new("Weld", p11)
1883w11.Name = "Part_Weld"
1884w11.Part0 = p11
1885w11.C0 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1886w11.Part1 = p12
1887w11.C1 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1888w12 = Instance.new("Weld", p12)
1889w12.Name = "Part_Weld"
1890w12.Part0 = p12
1891w12.C0 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1892w12.Part1 = p13
1893w12.C1 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1894w13 = Instance.new("Weld", p13)
1895w13.Name = "Part_Weld"
1896w13.Part0 = p13
1897w13.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1898w13.Part1 = p14
1899w13.C1 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1900w14 = Instance.new("Weld", p14)
1901w14.Name = "Part_Weld"
1902w14.Part0 = p14
1903w14.C0 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1904w14.Part1 = p15
1905w14.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1906w15 = Instance.new("Weld", p15)
1907w15.Name = "Part_Weld"
1908w15.Part0 = p15
1909w15.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1910w15.Part1 = p16
1911w15.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1912w16 = Instance.new("Weld", p16)
1913w16.Name = "Part_Weld"
1914w16.Part0 = p16
1915w16.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1916w16.Part1 = p17
1917w16.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1918w17 = Instance.new("Weld", p17)
1919w17.Name = "Part_Weld"
1920w17.Part0 = p17
1921w17.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1922w17.Part1 = p18
1923w17.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1924w18 = Instance.new("Weld", p18)
1925w18.Name = "Part_Weld"
1926w18.Part0 = p18
1927w18.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1928w18.Part1 = p19
1929w18.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1930m2.Parent = rarm
1931m2:MakeJoints()
1932----------------------------------------------------
1933local cor2 = Instance.new("Part", rarm.RightArm)
1934cor2.Name = "Thingy"
1935cor2.Locked = true
1936cor2.BottomSurface = 0
1937cor2.CanCollide = false
1938cor2.Size = Vector3.new(1, 1, 1)
1939cor2.Transparency = 1
1940cor2.TopSurface = 0
1941corw2 = Instance.new("Weld", cor2)
1942corw2.Part0 = rarm
1943corw2.Part1 = cor2
1944corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1945corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1946weld2 = Instance.new("Weld", rarm.RightArm)
1947weld2.Part0 = cor2
1948weld2.Part1 = rarm.RightArm.RightArmPlate
1949weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1950--Torso
1951m3 = Instance.new("Model")
1952m3.Name = "Torso"
1953p1 = Instance.new("Part", m3)
1954p1.BrickColor = BrickColor.new("Really black")
1955p1.Material = Enum.Material.Metal
1956p1.Name = "TorsoPlate"
1957p1.CFrame = CFrame.new(0, 3.10002589, 0.50000006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1958p1.CanCollide = false
1959p1.Locked = true
1960p1.FormFactor = Enum.FormFactor.Custom
1961p1.Size = Vector3.new(2, 2, 1)
1962p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1963p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1964p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1965p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1966p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1967p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1968b1 = Instance.new("SpecialMesh", p1)
1969b1.MeshType = Enum.MeshType.Brick
1970b1.Name = "Mesh"
1971b1.Scale = Vector3.new(1, 1.01999998, 1.01999998)
1972p2 = Instance.new("Part", m3)
1973p2.BrickColor = BrickColor.new("Really black")
1974p2.Material = Enum.Material.Metal
1975p2.CFrame = CFrame.new(-0.450000942, 4.05002356, -0.100002818, -0.685070276, 0.686094284, 0.244853854, 0.616745472, 0.367372453, 0.696177125, 0.387690574, 0.627942622, -0.674821496)
1976p2.CanCollide = false
1977p2.Locked = true
1978p2.FormFactor = Enum.FormFactor.Custom
1979p2.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
1980b2 = Instance.new("SpecialMesh", p2)
1981b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
1982b2.TextureId = ""
1983b2.MeshType = Enum.MeshType.FileMesh
1984b2.Name = "Mesh"
1985b2.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
1986p3 = Instance.new("Part", m3)
1987p3.BrickColor = BrickColor.new("Black")
1988p3.Material = Enum.Material.Metal
1989p3.CFrame = CFrame.new(0, 3.10002589, 0.970001996, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1990p3.CanCollide = false
1991p3.Locked = true
1992p3.FormFactor = Enum.FormFactor.Custom
1993p3.Size = Vector3.new(2, 2, 0.200000018)
1994p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1995p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1996p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1997p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1998p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1999p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2000b3 = Instance.new("SpecialMesh", p3)
2001b3.MeshType = Enum.MeshType.Brick
2002b3.Name = "Mesh"
2003b3.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2004p4 = Instance.new("Part", m3)
2005p4.BrickColor = BrickColor.new("Black")
2006p4.Material = Enum.Material.Metal
2007p4.CFrame = CFrame.new(0, 4.00002623, 0.529999971, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008)
2008p4.CanCollide = false
2009p4.Locked = true
2010p4.FormFactor = Enum.FormFactor.Custom
2011p4.Size = Vector3.new(2, 1.04000008, 0.239999995)
2012p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2013p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2014p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2015p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2016p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2017p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2018b4 = Instance.new("SpecialMesh", p4)
2019b4.MeshType = Enum.MeshType.Brick
2020b4.Name = "Mesh"
2021b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2022p5 = Instance.new("Part", m3)
2023p5.BrickColor = BrickColor.new("Black")
2024p5.Material = Enum.Material.Metal
2025p5.CFrame = CFrame.new(-0.499999821, 3.15002489, 0.0999978557, 7.54979084e-008, 1, 0, 4.37113918e-008, 0, 1, 1, -7.54978942e-008, -4.37113883e-008)
2026p5.CanCollide = false
2027p5.Locked = true
2028p5.FormFactor = Enum.FormFactor.Custom
2029p5.Size = Vector3.new(0.300000012, 1, 1.89999998)
2030p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2031p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2032p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2033p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2034p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2035p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2036b5 = Instance.new("SpecialMesh", p5)
2037b5.MeshType = Enum.MeshType.Wedge
2038b5.Name = "Mesh"
2039b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2040p6 = Instance.new("Part", m3)
2041p6.BrickColor = BrickColor.new("Black")
2042p6.Material = Enum.Material.Metal
2043p6.CFrame = CFrame.new(0.500000179, 3.15002489, 0.0999980345, -4.37113918e-008, -1, 0, -4.37113812e-008, 0, 1, -1, 4.37113847e-008, -4.37113883e-008)
2044p6.CanCollide = false
2045p6.Locked = true
2046p6.FormFactor = Enum.FormFactor.Custom
2047p6.Size = Vector3.new(0.300000012, 0.99999994, 1.89999998)
2048p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2049p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2050p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2051p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2052p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2053p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2054b6 = Instance.new("SpecialMesh", p6)
2055b6.MeshType = Enum.MeshType.Wedge
2056b6.Name = "Mesh"
2057b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2058p7 = Instance.new("Part", m3)
2059p7.BrickColor = BrickColor.new("Black")
2060p7.Material = Enum.Material.Metal
2061p7.CFrame = CFrame.new(1.63912773e-007, 3.20002794, 0.0999980569, -3.09086197e-008, -0.707106829, -0.707106769, -7.46200044e-008, -0.707106769, 0.707106829, -1, 7.46200044e-008, -3.09086197e-008)
2062p7.CanCollide = false
2063p7.Locked = true
2064p7.FormFactor = Enum.FormFactor.Custom
2065p7.Size = Vector3.new(0.300000012, 1.20000005, 1.20000005)
2066p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2067p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2068p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2069p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2070p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2071p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2072b7 = Instance.new("SpecialMesh", p7)
2073b7.MeshType = Enum.MeshType.Wedge
2074b7.Name = "Mesh"
2075p8 = Instance.new("Part", m3)
2076p8.BrickColor = BrickColor.new("Black")
2077p8.Material = Enum.Material.Metal
2078p8.CFrame = CFrame.new(-1, 3.10002613, 0.520000935, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
2079p8.CanCollide = false
2080p8.Locked = true
2081p8.FormFactor = Enum.FormFactor.Custom
2082p8.Size = Vector3.new(1, 2, 0.200000018)
2083p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2084p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2085p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2086p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2087p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2088p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2089b8 = Instance.new("SpecialMesh", p8)
2090b8.MeshType = Enum.MeshType.Brick
2091b8.Name = "Mesh"
2092b8.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2093p9 = Instance.new("Part", m3)
2094p9.BrickColor = BrickColor.new("Black")
2095p9.Material = Enum.Material.Metal
2096p9.CFrame = CFrame.new(1, 3.10002613, 0.520001054, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
2097p9.CanCollide = false
2098p9.Locked = true
2099p9.FormFactor = Enum.FormFactor.Custom
2100p9.Size = Vector3.new(1, 2, 0.200000018)
2101p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2102p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2103p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2104p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2105p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2106p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2107b9 = Instance.new("SpecialMesh", p9)
2108b9.MeshType = Enum.MeshType.Brick
2109b9.Name = "Mesh"
2110b9.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2111p10 = Instance.new("Part", m3)
2112p10.BrickColor = BrickColor.new("Black")
2113p10.Material = Enum.Material.Metal
2114p10.CFrame = CFrame.new(0, 2.05002642, 0.539999843, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008)
2115p10.CanCollide = false
2116p10.Locked = true
2117p10.FormFactor = Enum.FormFactor.Custom
2118p10.Size = Vector3.new(2, 1.0200001, 0.239999995)
2119p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2120p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2121p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2122p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2123p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2124p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2125b10 = Instance.new("SpecialMesh", p10)
2126b10.MeshType = Enum.MeshType.Brick
2127b10.Name = "Mesh"
2128b10.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2129p11 = Instance.new("Part", m3)
2130p11.BrickColor = BrickColor.new("Really black")
2131p11.Material = Enum.Material.Metal
2132p11.CFrame = CFrame.new(0.499999523, 4.05002451, -0.0499982014, 1.00000024, -8.94069672e-008, -1.78813934e-007, -2.98023224e-008, 0.906307817, -0.422618449, -2.23517418e-007, 0.42261821, 0.906307697)
2133p11.CanCollide = false
2134p11.Locked = true
2135p11.FormFactor = Enum.FormFactor.Custom
2136p11.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2137b11 = Instance.new("SpecialMesh", p11)
2138b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
2139b11.TextureId = ""
2140b11.MeshType = Enum.MeshType.FileMesh
2141b11.Name = "Mesh"
2142b11.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2143p12 = Instance.new("Part", m3)
2144p12.BrickColor = BrickColor.new("Really black")
2145p12.Material = Enum.Material.Metal
2146p12.Transparency = 1
2147p12.Name = "Chain2Torso"
2148p12.CFrame = CFrame.new(0.0500000007, 3.35002589, 0.0200020671, -4.37113883e-008, -1, 0, -4.37113883e-008, 1.91068547e-015, -1, 1, -4.37113883e-008, -4.37113883e-008)
2149p12.CanCollide = false
2150p12.Locked = true
2151p12.FormFactor = Enum.FormFactor.Custom
2152p12.Size = Vector3.new(0.699999988, 0.300000012, 0.300000012)
2153b12 = Instance.new("SpecialMesh", p12)
2154b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
2155b12.TextureId = ""
2156b12.MeshType = Enum.MeshType.FileMesh
2157b12.Name = "Mesh"
2158b12.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2159p13 = Instance.new("Part", m3)
2160p13.BrickColor = BrickColor.new("Really black")
2161p13.Material = Enum.Material.Metal
2162p13.CFrame = CFrame.new(-0.700000763, 4.25002289, 0.349998087, -0.606457233, -0.374239564, 0.70153743, -0.641863465, -0.290311694, -0.709739804, 0.469277143, -0.880717754, -0.0641489923)
2163p13.CanCollide = false
2164p13.Locked = true
2165p13.FormFactor = Enum.FormFactor.Custom
2166p13.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2167b13 = Instance.new("SpecialMesh", p13)
2168b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
2169b13.TextureId = ""
2170b13.MeshType = Enum.MeshType.FileMesh
2171b13.Name = "Mesh"
2172b13.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2173p14 = Instance.new("Part", m3)
2174p14.BrickColor = BrickColor.new("Really black")
2175p14.Material = Enum.Material.Metal
2176p14.CFrame = CFrame.new(-0.0500002243, 3.50002766, -0.150001988, -0.331867754, 0.457445055, -0.824989557, 0.877285957, -0.171802372, -0.448166817, -0.346746802, -0.87248385, -0.344294399)
2177p14.CanCollide = false
2178p14.Locked = true
2179p14.FormFactor = Enum.FormFactor.Custom
2180p14.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2181b14 = Instance.new("SpecialMesh", p14)
2182b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
2183b14.TextureId = ""
2184b14.MeshType = Enum.MeshType.FileMesh
2185b14.Name = "Mesh"
2186b14.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2187p15 = Instance.new("Part", m3)
2188p15.BrickColor = BrickColor.new("Really black")
2189p15.Material = Enum.Material.Metal
2190p15.CFrame = CFrame.new(0.199999034, 3.55002332, -0.150001839, -0.0627828911, -0.802308202, -0.593599737, 0.678633273, -0.470427632, 0.564052343, -0.731789052, -0.367423117, 0.57400763)
2191p15.CanCollide = false
2192p15.Locked = true
2193p15.FormFactor = Enum.FormFactor.Custom
2194p15.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2195b15 = Instance.new("SpecialMesh", p15)
2196b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
2197b15.TextureId = ""
2198b15.MeshType = Enum.MeshType.FileMesh
2199b15.Name = "Mesh"
2200b15.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2201p16 = Instance.new("Part", m3)
2202p16.BrickColor = BrickColor.new("Really black")
2203p16.Material = Enum.Material.Metal
2204p16.CFrame = CFrame.new(0.349999189, 3.70002842, -0.150001973, 0.994292557, 0.0709807873, 0.0796526894, -0.0587368309, 0.987431884, -0.146726117, -0.0890666768, 0.141209915, 0.985964835)
2205p16.CanCollide = false
2206p16.Locked = true
2207p16.FormFactor = Enum.FormFactor.Custom
2208p16.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2209b16 = Instance.new("SpecialMesh", p16)
2210b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
2211b16.TextureId = ""
2212b16.MeshType = Enum.MeshType.FileMesh
2213b16.Name = "Mesh"
2214b16.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2215p17 = Instance.new("Part", m3)
2216p17.BrickColor = BrickColor.new("Really black")
2217p17.Material = Enum.Material.Metal
2218p17.CFrame = CFrame.new(-0.200000346, 3.70002747, -0.150002211, 0.964791715, 0.0184034109, -0.262370646, -0.0587368906, 0.987431884, -0.146726027, 0.256372869, 0.156970888, 0.953746974)
2219p17.CanCollide = false
2220p17.Locked = true
2221p17.FormFactor = Enum.FormFactor.Custom
2222p17.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2223b17 = Instance.new("SpecialMesh", p17)
2224b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
2225b17.TextureId = ""
2226b17.MeshType = Enum.MeshType.FileMesh
2227b17.Name = "Mesh"
2228b17.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2229p18 = Instance.new("Part", m3)
2230p18.BrickColor = BrickColor.new("Really black")
2231p18.Material = Enum.Material.Metal
2232p18.CFrame = CFrame.new(-0.35000062, 3.85002661, -0.150002271, 0.407530367, -0.427938014, 0.806714416, 0.0989350602, 0.898891687, 0.426855773, -0.907816589, -0.0941444039, 0.40866372)
2233p18.CanCollide = false
2234p18.Locked = true
2235p18.FormFactor = Enum.FormFactor.Custom
2236p18.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2237b18 = Instance.new("SpecialMesh", p18)
2238b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
2239b18.TextureId = ""
2240b18.MeshType = Enum.MeshType.FileMesh
2241b18.Name = "Mesh"
2242b18.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2243p19 = Instance.new("Part", m3)
2244p19.BrickColor = BrickColor.new("Really black")
2245p19.Material = Enum.Material.Metal
2246p19.CFrame = CFrame.new(0.599999547, 4.25002337, 1.49011612e-008, 0.450589776, 0.596651912, -0.664060116, 0.322663993, 0.584720135, 0.744305372, 0.832379937, -0.549644768, 0.0709509254)
2247p19.CanCollide = false
2248p19.Locked = true
2249p19.FormFactor = Enum.FormFactor.Custom
2250p19.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2251b19 = Instance.new("SpecialMesh", p19)
2252b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
2253b19.TextureId = ""
2254b19.MeshType = Enum.MeshType.FileMesh
2255b19.Name = "Mesh"
2256b19.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2257p20 = Instance.new("Part", m3)
2258p20.BrickColor = BrickColor.new("Really black")
2259p20.Material = Enum.Material.Metal
2260p20.CFrame = CFrame.new(0.449999154, 3.90002728, -0.150000244, 0.148452312, 0.508259773, -0.848312676, -0.212012291, 0.85422945, 0.474703223, 0.965925753, 0.109381542, 0.234569833)
2261p20.CanCollide = false
2262p20.Locked = true
2263p20.FormFactor = Enum.FormFactor.Custom
2264p20.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2265b20 = Instance.new("SpecialMesh", p20)
2266b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
2267b20.TextureId = ""
2268b20.MeshType = Enum.MeshType.FileMesh
2269b20.Name = "Mesh"
2270b20.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2271p21 = Instance.new("Part", m3)
2272p21.BrickColor = BrickColor.new("Really black")
2273p21.Material = Enum.Material.Metal
2274p21.CFrame = CFrame.new(0.699999869, 4.25002337, 0.200001985, -0.0996009707, 0.981125295, 0.165750414, -0.142243966, -0.178907469, 0.973529041, 0.98480773, 0.0733870864, 0.157378286)
2275p21.CanCollide = false
2276p21.Locked = true
2277p21.FormFactor = Enum.FormFactor.Custom
2278p21.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2279b21 = Instance.new("SpecialMesh", p21)
2280b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
2281b21.TextureId = ""
2282b21.MeshType = Enum.MeshType.FileMesh
2283b21.Name = "Mesh"
2284b21.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2285p22 = Instance.new("Part", m3)
2286p22.BrickColor = BrickColor.new("Really black")
2287p22.Material = Enum.Material.Metal
2288p22.CFrame = CFrame.new(0.69999975, 4.25002289, 0.450001955, -0.167731196, 0.167446673, 0.971508265, 0.0449438766, -0.983146012, 0.17721194, 0.984807789, 0.0733873621, 0.157378122)
2289p22.CanCollide = false
2290p22.Locked = true
2291p22.FormFactor = Enum.FormFactor.Custom
2292p22.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2293b22 = Instance.new("SpecialMesh", p22)
2294b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
2295b22.TextureId = ""
2296b22.MeshType = Enum.MeshType.FileMesh
2297b22.Name = "Mesh"
2298b22.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2299p23 = Instance.new("Part", m3)
2300p23.BrickColor = BrickColor.new("Really black")
2301p23.Material = Enum.Material.Metal
2302p23.CFrame = CFrame.new(0.699999511, 4.25002289, 0.700001478, 0.0593914539, -0.993999004, 0.0918651819, 0.163175613, -0.0811224878, -0.98325628, 0.984807849, 0.0733875483, 0.157378405)
2303p23.CanCollide = false
2304p23.Locked = true
2305p23.FormFactor = Enum.FormFactor.Custom
2306p23.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2307b23 = Instance.new("SpecialMesh", p23)
2308b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
2309b23.TextureId = ""
2310b23.MeshType = Enum.MeshType.FileMesh
2311b23.Name = "Mesh"
2312b23.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2313p24 = Instance.new("Part", m3)
2314p24.BrickColor = BrickColor.new("Really black")
2315p24.Material = Enum.Material.Metal
2316p24.CFrame = CFrame.new(0.699999452, 4.25002289, 0.900001347, -0.197025463, -0.431517303, 0.880326331, 0.133022487, -0.90138948, -0.412070453, 0.971332312, 0.0359149873, 0.234997824)
2317p24.CanCollide = false
2318p24.Locked = true
2319p24.FormFactor = Enum.FormFactor.Custom
2320p24.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2321b24 = Instance.new("SpecialMesh", p24)
2322b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
2323b24.TextureId = ""
2324b24.MeshType = Enum.MeshType.FileMesh
2325b24.Name = "Mesh"
2326b24.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2327p25 = Instance.new("Part", m3)
2328p25.BrickColor = BrickColor.new("Really black")
2329p25.Material = Enum.Material.Metal
2330p25.CFrame = CFrame.new(0.599999249, 4.25002289, 1.05000341, -0.793593884, -0.433597952, 0.42685172, 0.426002622, 0.104941569, 0.898615122, -0.434431762, 0.894975305, 0.101432741)
2331p25.CanCollide = false
2332p25.Locked = true
2333p25.FormFactor = Enum.FormFactor.Custom
2334p25.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2335b25 = Instance.new("SpecialMesh", p25)
2336b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
2337b25.TextureId = ""
2338b25.MeshType = Enum.MeshType.FileMesh
2339b25.Name = "Mesh"
2340b25.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2341p26 = Instance.new("Part", m3)
2342p26.BrickColor = BrickColor.new("Really black")
2343p26.Material = Enum.Material.Metal
2344p26.CFrame = CFrame.new(0.399999261, 4.25002289, 1.09999716, 0.474074066, -0.73934859, 0.478140384, 0.876810074, 0.445984155, -0.17972827, -0.0803612769, 0.504442811, 0.859697402)
2345p26.CanCollide = false
2346p26.Locked = true
2347p26.FormFactor = Enum.FormFactor.Custom
2348p26.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2349b26 = Instance.new("SpecialMesh", p26)
2350b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
2351b26.TextureId = ""
2352b26.MeshType = Enum.MeshType.FileMesh
2353b26.Name = "Mesh"
2354b26.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2355p27 = Instance.new("Part", m3)
2356p27.BrickColor = BrickColor.new("Really black")
2357p27.Material = Enum.Material.Metal
2358p27.CFrame = CFrame.new(0.249999076, 4.25002289, 1.20000076, 0.524626255, -0.838181257, 0.149064019, -0.503709316, -0.446768612, -0.739374638, 0.686326742, 0.31281051, -0.656585932)
2359p27.CanCollide = false
2360p27.Locked = true
2361p27.FormFactor = Enum.FormFactor.Custom
2362p27.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2363b27 = Instance.new("SpecialMesh", p27)
2364b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
2365b27.TextureId = ""
2366b27.MeshType = Enum.MeshType.FileMesh
2367b27.Name = "Mesh"
2368b27.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2369p28 = Instance.new("Part", m3)
2370p28.BrickColor = BrickColor.new("Really black")
2371p28.Material = Enum.Material.Metal
2372p28.CFrame = CFrame.new(0.0499990731, 4.25002289, 1.20000088, 0.524626136, -0.838181317, 0.149063885, 0.588431716, 0.230477661, -0.775002301, 0.615236104, 0.494300276, 0.614126861)
2373p28.CanCollide = false
2374p28.Locked = true
2375p28.FormFactor = Enum.FormFactor.Custom
2376p28.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2377b28 = Instance.new("SpecialMesh", p28)
2378b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
2379b28.TextureId = ""
2380b28.MeshType = Enum.MeshType.FileMesh
2381b28.Name = "Mesh"
2382b28.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2383p29 = Instance.new("Part", m3)
2384p29.BrickColor = BrickColor.new("Really black")
2385p29.Material = Enum.Material.Metal
2386p29.CFrame = CFrame.new(-0.200000852, 4.25002289, 1.20000088, 0.524626195, -0.838181257, 0.149063647, 0.664180398, 0.512506962, 0.544243872, -0.532571197, -0.186519295, 0.825577736)
2387p29.CanCollide = false
2388p29.Locked = true
2389p29.FormFactor = Enum.FormFactor.Custom
2390p29.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2391b29 = Instance.new("SpecialMesh", p29)
2392b29.MeshId = "http://www.roblox.com/asset/?id=3270017"
2393b29.TextureId = ""
2394b29.MeshType = Enum.MeshType.FileMesh
2395b29.Name = "Mesh"
2396b29.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2397p30 = Instance.new("Part", m3)
2398p30.BrickColor = BrickColor.new("Really black")
2399p30.Material = Enum.Material.Metal
2400p30.CFrame = CFrame.new(-0.400000989, 4.25002289, 1.15000105, -0.205189675, -0.942334533, -0.264392197, 0.472657442, 0.141141802, -0.869870245, 0.857025325, -0.303455055, 0.416440606)
2401p30.CanCollide = false
2402p30.Locked = true
2403p30.FormFactor = Enum.FormFactor.Custom
2404p30.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2405b30 = Instance.new("SpecialMesh", p30)
2406b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
2407b30.TextureId = ""
2408b30.MeshType = Enum.MeshType.FileMesh
2409b30.Name = "Mesh"
2410b30.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2411p31 = Instance.new("Part", m3)
2412p31.BrickColor = BrickColor.new("Really black")
2413p31.Material = Enum.Material.Metal
2414p31.CFrame = CFrame.new(-0.550001025, 4.25002337, 0.999999702, 0.151335806, -0.651350021, -0.743532896, 0.979139984, 0.201951638, 0.022377044, 0.135582238, -0.731408894, 0.668325186)
2415p31.CanCollide = false
2416p31.Locked = true
2417p31.FormFactor = Enum.FormFactor.Custom
2418p31.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2419b31 = Instance.new("SpecialMesh", p31)
2420b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
2421b31.TextureId = ""
2422b31.MeshType = Enum.MeshType.FileMesh
2423b31.Name = "Mesh"
2424b31.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2425p32 = Instance.new("Part", m3)
2426p32.BrickColor = BrickColor.new("Really black")
2427p32.Material = Enum.Material.Metal
2428p32.CFrame = CFrame.new(-0.700000763, 4.25002337, 0.800000489, -0.804778874, -0.593520701, 0.0080409348, 0.142058611, -0.205740049, -0.968240976, 0.576325178, -0.778077364, 0.249890015)
2429p32.CanCollide = false
2430p32.Locked = true
2431p32.FormFactor = Enum.FormFactor.Custom
2432p32.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2433b32 = Instance.new("SpecialMesh", p32)
2434b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
2435b32.TextureId = ""
2436b32.MeshType = Enum.MeshType.FileMesh
2437b32.Name = "Mesh"
2438b32.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2439p33 = Instance.new("Part", m3)
2440p33.BrickColor = BrickColor.new("Really black")
2441p33.Material = Enum.Material.Metal
2442p33.CFrame = CFrame.new(-0.700000942, 4.25002289, 0.549999833, -0.526802063, -0.220915288, -0.820777893, 0.708702326, 0.418966174, -0.567634225, 0.469277024, -0.880717933, -0.0641489923)
2443p33.CanCollide = false
2444p33.Locked = true
2445p33.FormFactor = Enum.FormFactor.Custom
2446p33.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2447b33 = Instance.new("SpecialMesh", p33)
2448b33.MeshId = "http://www.roblox.com/asset/?id=3270017"
2449b33.TextureId = ""
2450b33.MeshType = Enum.MeshType.FileMesh
2451b33.Name = "Mesh"
2452b33.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2453p34 = Instance.new("Part", m3)
2454p34.BrickColor = BrickColor.new("Really black")
2455p34.Material = Enum.Material.Metal
2456p34.Name = "Connection"
2457p34.CFrame = CFrame.new(0.0551848896, 3.35002589, -0.131655902, 0.635109425, -0.765570045, -0.102657467, -0.766416311, -0.641122162, 0.0396047123, -0.0961361453, 0.0535250306, -0.993928015)
2458p34.CanCollide = false
2459p34.Locked = true
2460p34.FormFactor = Enum.FormFactor.Custom
2461p34.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2462b34 = Instance.new("SpecialMesh", p34)
2463b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
2464b34.TextureId = ""
2465b34.MeshType = Enum.MeshType.FileMesh
2466b34.Name = "Mesh"
2467b34.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2468p35 = Instance.new("Part", m3)
2469p35.BrickColor = BrickColor.new("Really black")
2470p35.Material = Enum.Material.Metal
2471p35.CFrame = CFrame.new(-0.600001037, 4.25002289, 0.149997264, 0.493824095, 0.604460001, 0.62511301, -0.565569818, -0.322785676, 0.758907318, 0.660506427, -0.728311539, 0.182464883)
2472p35.CanCollide = false
2473p35.Locked = true
2474p35.FormFactor = Enum.FormFactor.Custom
2475p35.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2476b35 = Instance.new("SpecialMesh", p35)
2477b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
2478b35.TextureId = ""
2479b35.MeshType = Enum.MeshType.FileMesh
2480b35.Name = "Mesh"
2481b35.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2482p36 = Instance.new("Part", m3)
2483p36.BrickColor = BrickColor.new("Really black")
2484p36.Material = Enum.Material.Metal
2485p36.CFrame = CFrame.new(-0.500000834, 4.2000227, -2.52574682e-006, -0.285961747, 0.418113738, -0.862210572, 0.191904813, 0.906544387, 0.375965416, 0.93882823, -0.0579507053, -0.339474916)
2486p36.CanCollide = false
2487p36.Locked = true
2488p36.FormFactor = Enum.FormFactor.Custom
2489p36.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2490b36 = Instance.new("SpecialMesh", p36)
2491b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
2492b36.TextureId = ""
2493b36.MeshType = Enum.MeshType.FileMesh
2494b36.Name = "Mesh"
2495b36.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2496w1 = Instance.new("Weld", p2)
2497w1.Name = "Joint"
2498w1.Part0 = p2
2499w1.C0 = CFrame.new(-0.211238861, -0.0362606049, -0.0810072422, -0.57012105, 0.811055779, -0.130959615, -0.254106343, -0.022495009, 0.966914535, 0.781275749, 0.584536016, 0.218919396)
2500w1.Part1 = p18
2501w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2502w2 = Instance.new("Weld", p3)
2503w2.Name = "Joint"
2504w2.Part0 = p3
2505w2.C0 = CFrame.new(0, 0, -0.470001936, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2506w2.Part1 = p1
2507w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2508w3 = Instance.new("Weld", p4)
2509w3.Name = "Joint"
2510w3.Part0 = p4
2511w3.C0 = CFrame.new(0, 0.0299999714, -0.900000334, 1, 0, 0, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008)
2512w3.Part1 = p1
2513w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2514w4 = Instance.new("Weld", p5)
2515w4.Name = "Joint"
2516w4.Part0 = p5
2517w4.C0 = CFrame.new(2.38418579e-007, 0.5, 0.0500030518, -1, -9.67369829e-009, -5.33850759e-008, 4.45892816e-008, -0.707106829, -0.707106769, -3.09086161e-008, -0.707106769, 0.707106829)
2518w4.Part1 = p7
2519w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2520w5 = Instance.new("Weld", p6)
2521w5.Name = "Joint"
2522w5.Part0 = p6
2523w5.C0 = CFrame.new(0, 0.5, 0.0500030518, 1, -1.28027651e-008, 3.09086197e-008, -1.28027686e-008, 0.707106829, 0.707106769, -3.09086161e-008, -0.707106769, 0.707106829)
2524w5.Part1 = p7
2525w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2526w6 = Instance.new("Weld", p7)
2527w6.Name = "Joint"
2528w6.Part0 = p7
2529w6.C0 = CFrame.new(-0.400002003, 0.070712328, -0.0707120895, -3.09086197e-008, -7.46200044e-008, -1, -0.707106829, -0.707106769, 7.46200044e-008, -0.707106769, 0.707106829, -3.09086197e-008)
2530w6.Part1 = p1
2531w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2532w7 = Instance.new("Weld", p8)
2533w7.Name = "Joint"
2534w7.Part0 = p8
2535w7.C0 = CFrame.new(-0.0200009346, -2.38418579e-007, -1, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
2536w7.Part1 = p1
2537w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2538w8 = Instance.new("Weld", p9)
2539w8.Name = "Joint"
2540w8.Part0 = p9
2541w8.C0 = CFrame.new(-0.0200009346, -2.38418579e-007, 1, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
2542w8.Part1 = p1
2543w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2544w9 = Instance.new("Weld", p10)
2545w9.Name = "Joint"
2546w9.Part0 = p10
2547w9.C0 = CFrame.new(0, 0.0399997234, 1.04999948, 1, 0, 0, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008)
2548w9.Part1 = p1
2549w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2550w10 = Instance.new("Weld", p11)
2551w10.Name = "Joint"
2552w10.Part0 = p11
2553w10.C0 = CFrame.new(0.100000024, 0.202390671, -0.0392093658, 0.450589836, 0.596651673, -0.664059937, 0.644212067, 0.297646403, 0.704554796, 0.618028879, -0.745260656, -0.250253737)
2554w10.Part1 = p19
2555w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2556w11 = Instance.new("Weld", p12)
2557w11.Name = "Joint"
2558w11.Part0 = p12
2559w11.C0 = CFrame.new(0.479997993, 0.0499999784, 0.25, -4.37113883e-008, -4.37113883e-008, 1, -1, 1.91068547e-015, -4.37113883e-008, 0, -1, -4.37113883e-008)
2560w11.Part1 = p1
2561w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2562w12 = Instance.new("Weld", p13)
2563w12.Name = "Joint"
2564w12.Part0 = p13
2565w12.C0 = CFrame.new(-0.1545012, 0.138720512, 0.0829834938, 0.373496056, -0.501174688, -0.780592561, -0.602336764, 0.50893271, -0.614961803, 0.70547235, 0.699865282, -0.111791633)
2566w12.Part1 = p35
2567w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2568w13 = Instance.new("Weld", p14)
2569w13.Name = "Joint"
2570w13.Part0 = p14
2571w13.C0 = CFrame.new(-0.172863483, 0.0578804016, -0.0258672237, -0.849803627, -0.326939017, 0.413454711, 0.506076992, -0.286759645, 0.813421786, -0.147377193, 0.900488615, 0.409145683)
2572w13.Part1 = p34
2573w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2574w14 = Instance.new("Weld", p15)
2575w14.Name = "Joint"
2576w14.Part0 = p15
2577w14.C0 = CFrame.new(0.0923810005, -0.190912724, -0.00442934036, -0.0371075198, 0.56231159, -0.826092422, -0.73737216, -0.573347449, -0.357148677, -0.674466848, 0.595884562, 0.435908347)
2578w14.Part1 = p16
2579w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2580w15 = Instance.new("Weld", p16)
2581w15.Name = "Joint"
2582w15.Part0 = p16
2583w15.C0 = CFrame.new(0.0876817107, 0.204583645, -0.0213780403, 0.074026458, 0.445441723, -0.892245352, -0.0624118894, 0.895015597, 0.441646636, 0.995301366, 0.022993207, 0.0940556675)
2584w15.Part1 = p20
2585w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2586w16 = Instance.new("Weld", p17)
2587w16.Name = "Joint"
2588w16.Part0 = p17
2589w16.C0 = CFrame.new(0.156466246, -0.194725513, -0.0100102425, -0.460608691, 0.227749109, -0.85788697, 0.80572325, -0.29817903, -0.51176101, -0.372357011, -0.926941037, -0.0461589098)
2590w16.Part1 = p14
2591w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2592w17 = Instance.new("Weld", p18)
2593w17.Name = "Joint"
2594w17.Part0 = p18
2595w17.C0 = CFrame.new(0.046289444, -0.199023724, 0.0569794178, 0.154631272, -0.0373091251, -0.987267554, -0.489805043, 0.864940584, -0.109402351, 0.858009458, 0.500485599, 0.115472674)
2596w17.Part1 = p17
2597w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2598w18 = Instance.new("Weld", p19)
2599w18.Name = "Joint"
2600w18.Part0 = p19
2601w18.C0 = CFrame.new(0.211536884, -0.0502645969, -0.0522158146, 0.728958309, 0.445444137, 0.519806981, -0.683894217, 0.440442294, 0.581635118, 0.0301409438, -0.779480696, 0.625700712)
2602w18.Part1 = p21
2603w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2604w19 = Instance.new("Weld", p20)
2605w19.Name = "Joint"
2606w19.Part0 = p20
2607w19.C0 = CFrame.new(0.0722160339, 0.164483547, 0.0522456169, 0.148452476, 0.216069669, 0.965026319, 0.508259654, 0.820421398, -0.261879444, -0.848312438, 0.529360592, 0.0119740963)
2608w19.Part1 = p11
2609w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2610w20 = Instance.new("Weld", p21)
2611w20.Name = "Joint"
2612w20.Part0 = p21
2613w20.C0 = CFrame.new(0.246201992, 0.0183468163, 0.0393443108, 0.980159461, 0.195441127, 0.0330170989, -0.100333519, 0.345563769, 0.933016002, 0.170940176, -0.917817175, 0.358316928)
2614w20.Part1 = p22
2615w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2616w21 = Instance.new("Weld", p22)
2617w21.Name = "Joint"
2618w21.Part0 = p22
2619w21.C0 = CFrame.new(0.246201515, 0.0183467865, 0.0393443108, 0.96721822, 0.235350817, 0.0953874439, -0.0782081187, -0.0813006833, 0.993616521, 0.241603509, -0.968504071, -0.060229145)
2620w21.Part1 = p23
2621w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2622w22 = Instance.new("Weld", p23)
2623w22.Name = "Joint"
2624w22.Part0 = p23
2625w22.C0 = CFrame.new(0.196961403, 0.014677465, 0.031475544, 0.966579735, -0.137344033, 0.21647194, 0.256335169, 0.504686236, -0.824368834, 0.0039717555, 0.852307677, 0.523025632)
2626w22.Part1 = p24
2627w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2628w23 = Instance.new("Weld", p24)
2629w23.Name = "Joint"
2630w23.Part0 = p24
2631w23.C0 = CFrame.new(0.16540432, 0.0485391617, -0.0527825356, -0.208951756, 0.968707323, 0.133960381, -0.0571475253, 0.124654606, -0.990553021, -0.976254702, -0.214633241, 0.0293123852)
2632w23.Part1 = p25
2633w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2634w24 = Instance.new("Weld", p25)
2635w24.Name = "Joint"
2636w24.Part0 = p25
2637w24.C0 = CFrame.new(0.136999726, 0.131462574, -0.0802993774, 0.0322127938, 0.557586372, -0.829493642, -0.185464859, 0.81884563, 0.543226421, 0.982122838, 0.136343077, 0.129789978)
2638w24.Part1 = p26
2639w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2640w25 = Instance.new("Weld", p26)
2641w25.Name = "Joint"
2642w25.Part0 = p26
2643w25.C0 = CFrame.new(-0.0791475773, 0.161348343, 0.014251709, -0.2480997, -0.814228892, -0.524859786, -0.266315132, 0.578250885, -0.771169424, 0.931409001, -0.0515488982, -0.360305429)
2644w25.Part1 = p27
2645w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2646w26 = Instance.new("Weld", p27)
2647w26.Name = "Joint"
2648w26.Part0 = p27
2649w26.C0 = CFrame.new(-0.104925156, 0.167636156, -0.0298128128, 0.401087224, -0.216573805, 0.890070021, -0.510172248, 0.754199564, 0.413409412, -0.760824084, -0.619902253, 0.192009777)
2650w26.Part1 = p28
2651w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2652w27 = Instance.new("Weld", p28)
2653w27.Name = "Joint"
2654w27.Part0 = p28
2655w27.C0 = CFrame.new(-0.131156445, 0.209545135, -0.037266016, 0.338400394, -0.252909899, 0.906378388, -0.549903035, 0.728472173, 0.408576787, -0.763604522, -0.636682749, 0.10743928)
2656w27.Part1 = p29
2657w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2658w28 = Instance.new("Weld", p29)
2659w28.Name = "Joint"
2660w28.Part0 = p29
2661w28.C0 = CFrame.new(-0.0782968998, 0.176962137, -0.0710916519, -0.250144869, -0.239018306, -0.938241899, 0.254374206, 0.918783069, -0.301879942, 0.934195518, -0.314178288, -0.169028759)
2662w28.Part1 = p30
2663w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2664w29 = Instance.new("Weld", p30)
2665w29.Name = "Joint"
2666w29.Part0 = p30
2667w29.C0 = CFrame.new(-0.097776413, 0.186868906, -0.022808075, 0.547942579, -0.39773193, 0.735913277, -0.0455548018, 0.864242792, 0.501007974, -0.835274637, -0.30804801, 0.455436885)
2668w29.Part1 = p31
2669w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2670w30 = Instance.new("Weld", p31)
2671w30.Name = "Joint"
2672w30.Part0 = p31
2673w30.C0 = CFrame.new(-0.0498166084, 0.243983507, -0.0221347809, 0.0954426825, -0.396762908, -0.912945747, 0.131352007, 0.914132595, -0.38354671, 0.986730695, -0.0833105743, 0.139362901)
2674w30.Part1 = p32
2675w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2676w31 = Instance.new("Weld", p32)
2677w31.Name = "Joint"
2678w31.Part0 = p32
2679w31.C0 = CFrame.new(-0.144081593, 0.194519997, -0.0624723434, 0.795092285, -0.270274341, 0.542936563, -0.198274553, 0.730186164, 0.653846622, -0.573162735, -0.627518892, 0.526976764)
2680w31.Part1 = p33
2681w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2682w32 = Instance.new("Weld", p33)
2683w32.Name = "Joint"
2684w32.Part0 = p33
2685w32.C0 = CFrame.new(-0.0938563347, 0.176145077, 0.0128297806, 0.0848137587, -0.421895206, -0.902668893, -0.548244178, 0.736708403, -0.39583993, 0.832006574, 0.528455555, -0.168818489)
2686w32.Part1 = p13
2687w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2688w33 = Instance.new("Weld", p34)
2689w33.Name = "Joint"
2690w33.Part0 = p34
2691w33.C0 = CFrame.new(-0.0178728104, 0.0120868683, -0.150204837, -0.0961361453, -0.635109425, 0.766416311, 0.0535250939, 0.765570045, 0.641122162, -0.993928015, 0.102657512, -0.0396046676)
2692w33.Part1 = p12
2693w33.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2694w34 = Instance.new("Weld", p35)
2695w34.Name = "Joint"
2696w34.Part0 = p35
2697w34.C0 = CFrame.new(-0.0214147568, 0.185832024, -0.00280380249, 0.370351821, -0.344516218, -0.862640202, -0.918555975, 0.00231964141, -0.395284295, 0.138182849, 0.938777506, -0.315598398)
2698w34.Part1 = p36
2699w34.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2700w35 = Instance.new("Weld", p36)
2701w35.Name = "Joint"
2702w35.Part0 = p36
2703w35.C0 = CFrame.new(-0.136966705, -0.109280109, -0.0655572414, 0.678235054, 0.463834167, -0.569960475, 0.250202835, 0.583515286, 0.772598565, 0.690938354, -0.666609228, 0.279707849)
2704w35.Part1 = p2
2705w35.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2706m3.Parent = torso
2707m3:MakeJoints()
2708----------------------------------------------------
2709local cor3 = Instance.new("Part", torso.Torso)
2710cor3.Name = "Thingy"
2711cor3.Locked = true
2712cor3.BottomSurface = 0
2713cor3.CanCollide = false
2714cor3.Size = Vector3.new(1, 1, 1)
2715cor3.Transparency = 1
2716cor3.TopSurface = 0
2717corw3 = Instance.new("Weld", cor3)
2718corw3.Part0 = torso
2719corw3.Part1 = cor3
2720corw3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2721corw3.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2722weld3 = Instance.new("Weld", torso.Torso)
2723weld3.Part0 = cor3
2724weld3.Part1 = torso.Torso.TorsoPlate
2725weld3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2726--Left Leg
2727m4 = Instance.new("Model")
2728m4.Name = "LeftLeg"
2729p1 = Instance.new("Part", m4)
2730p1.BrickColor = BrickColor.new("Really black")
2731p1.Material = Enum.Material.Metal
2732p1.Name = "LeftLegPlate"
2733p1.CFrame = CFrame.new(-1.5, 4.74442291, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2734p1.Anchored = false
2735p1.CanCollide = false
2736p1.FormFactor = Enum.FormFactor.Custom
2737p1.Size = Vector3.new(1, 2, 1)
2738p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2739p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2740p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2741p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2742p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2743p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2744b1 = Instance.new("SpecialMesh", p1)
2745b1.MeshType = Enum.MeshType.Brick
2746b1.Name = "Mesh"
2747b1.Scale = Vector3.new(1.01999998, 1, 1.01999998)
2748p2 = Instance.new("Part", m4)
2749p2.BrickColor = BrickColor.new("Really black")
2750p2.Material = Enum.Material.Metal
2751p2.CFrame = CFrame.new(-2.0999999, 5.44442606, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2752p2.Anchored = false
2753p2.CanCollide = false
2754p2.FormFactor = Enum.FormFactor.Custom
2755p2.Size = Vector3.new(0.239999995, 0.300000012, 0.899999976)
2756p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2757p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2758p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2759p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2760p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2761p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2762b2 = Instance.new("SpecialMesh", p2)
2763b2.MeshType = Enum.MeshType.Brick
2764b2.Name = "Mesh"
2765b2.Scale = Vector3.new(1.01999998, 1, 1.01999998)
2766p3 = Instance.new("Part", m4)
2767p3.BrickColor = BrickColor.new("Really black")
2768p3.Material = Enum.Material.Metal
2769p3.CFrame = CFrame.new(-2.0999999, 5.04442501, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2770p3.Anchored = false
2771p3.CanCollide = false
2772p3.FormFactor = Enum.FormFactor.Custom
2773p3.Size = Vector3.new(0.200000003, 0.600000024, 0.800000012)
2774p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2775p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2776p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2777p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2778p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2779p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2780b3 = Instance.new("SpecialMesh", p3)
2781b3.MeshType = Enum.MeshType.Brick
2782b3.Name = "Mesh"
2783b3.Scale = Vector3.new(1.01999998, 1, 1.01999998)
2784p4 = Instance.new("Part", m4)
2785p4.BrickColor = BrickColor.new("Black")
2786p4.Material = Enum.Material.Metal
2787p4.CFrame = CFrame.new(-1.5, 4.74442291, -7.02999783, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2788p4.Anchored = false
2789p4.CanCollide = false
2790p4.FormFactor = Enum.FormFactor.Custom
2791p4.Size = Vector3.new(1, 2, 0.200000018)
2792p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2793p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2794p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2795p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2796p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2797p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2798b4 = Instance.new("SpecialMesh", p4)
2799b4.MeshType = Enum.MeshType.Brick
2800b4.Name = "Mesh"
2801b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2802p5 = Instance.new("Part", m4)
2803p5.BrickColor = BrickColor.new("Black")
2804p5.Material = Enum.Material.Metal
2805p5.CFrame = CFrame.new(-2, 4.74442291, -7.47999907, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
2806p5.Anchored = false
2807p5.CanCollide = false
2808p5.FormFactor = Enum.FormFactor.Custom
2809p5.Size = Vector3.new(1, 2, 0.200000018)
2810p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2811p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2812p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2813p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2814p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2815p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2816b5 = Instance.new("SpecialMesh", p5)
2817b5.MeshType = Enum.MeshType.Brick
2818b5.Name = "Mesh"
2819b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2820p6 = Instance.new("Part", m4)
2821p6.BrickColor = BrickColor.new("Black")
2822p6.Material = Enum.Material.Metal
2823p6.CFrame = CFrame.new(-1.50999999, 3.74442887, -7.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
2824p6.Anchored = false
2825p6.CanCollide = false
2826p6.FormFactor = Enum.FormFactor.Custom
2827p6.Size = Vector3.new(1, 0.200000048, 0.980000019)
2828p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2829p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2830p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2831p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2832p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2833p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2834b6 = Instance.new("SpecialMesh", p6)
2835b6.MeshType = Enum.MeshType.Brick
2836b6.Name = "Mesh"
2837b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2838p7 = Instance.new("Part", m4)
2839p7.BrickColor = BrickColor.new("Black")
2840p7.Material = Enum.Material.Metal
2841p7.CFrame = CFrame.new(-1.5, 5.74442291, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2842p7.Anchored = false
2843p7.CanCollide = false
2844p7.FormFactor = Enum.FormFactor.Custom
2845p7.Size = Vector3.new(1, 0.200000048, 0.99000001)
2846p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2847p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2848p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2849p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2850p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2851p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2852b7 = Instance.new("SpecialMesh", p7)
2853b7.MeshType = Enum.MeshType.Brick
2854b7.Name = "Mesh"
2855b7.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2856w1 = Instance.new("Weld", p2)
2857w1.Name = "Joint"
2858w1.Part0 = p2
2859w1.C0 = CFrame.new(0, -0.40000093, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2860w1.Part1 = p3
2861w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2862w2 = Instance.new("Weld", p3)
2863w2.Name = "Joint"
2864w2.Part0 = p3
2865w2.C0 = CFrame.new(0.0999999046, -0.300002098, 0.0200009346, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
2866w2.Part1 = p5
2867w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2868w3 = Instance.new("Weld", p4)
2869w3.Name = "Joint"
2870w3.Part0 = p4
2871w3.C0 = CFrame.new(0, 0, -0.470002174, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2872w3.Part1 = p1
2873w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2874w4 = Instance.new("Weld", p5)
2875w4.Name = "Joint"
2876w4.Part0 = p5
2877w4.C0 = CFrame.new(-0.0200009346, 0, -0.5, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
2878w4.Part1 = p1
2879w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2880w5 = Instance.new("Weld", p6)
2881w5.Name = "Joint"
2882w5.Part0 = p6
2883w5.C0 = CFrame.new(0, 0.99999404, -0.00999999046, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
2884w5.Part1 = p1
2885w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2886w6 = Instance.new("Weld", p7)
2887w6.Name = "Joint"
2888w6.Part0 = p7
2889w6.C0 = CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2890w6.Part1 = p1
2891w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2892m4.Parent = lleg
2893m4:MakeJoints()
2894----------------------------------------------------
2895local cor4 = Instance.new("Part", lleg.LeftLeg)
2896cor4.Name = "Thingy"
2897cor4.Locked = true
2898cor4.BottomSurface = 0
2899cor4.CanCollide = false
2900cor4.Size = Vector3.new(1, 1, 1)
2901cor4.Transparency = 1
2902cor4.TopSurface = 0
2903corw4 = Instance.new("Weld", cor4)
2904corw4.Part0 = lleg
2905corw4.Part1 = cor4
2906corw4.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2907corw4.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2908weld4 = Instance.new("Weld", lleg.LeftLeg)
2909weld4.Part0 = cor4
2910weld4.Part1 = lleg.LeftLeg.LeftLegPlate
2911weld4.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2912--Right Leg
2913m5 = Instance.new("Model")
2914m5.Name = "RightLeg"
2915p1 = Instance.new("Part", m5)
2916p1.BrickColor = BrickColor.new("Really black")
2917p1.Material = Enum.Material.Metal
2918p1.Name = "RightLegPlate"
2919p1.CFrame = CFrame.new(1.5, 4.74441528, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2920p1.Anchored = false
2921p1.CanCollide = false
2922p1.FormFactor = Enum.FormFactor.Custom
2923p1.Size = Vector3.new(1, 2, 1)
2924p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2925p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2926p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2927p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2928p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2929p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2930b1 = Instance.new("SpecialMesh", p1)
2931b1.MeshType = Enum.MeshType.Brick
2932b1.Name = "Mesh"
2933b1.Scale = Vector3.new(1.01999998, 1, 1.01999998)
2934p2 = Instance.new("Part", m5)
2935p2.BrickColor = BrickColor.new("Really black")
2936p2.Material = Enum.Material.Metal
2937p2.CFrame = CFrame.new(2.05000019, 5.44441557, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2938p2.Anchored = false
2939p2.CanCollide = false
2940p2.FormFactor = Enum.FormFactor.Custom
2941p2.Size = Vector3.new(0.239999995, 0.300000012, 0.899999976)
2942p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2943p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2944p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2945p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2946p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2947p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2948b2 = Instance.new("SpecialMesh", p2)
2949b2.MeshType = Enum.MeshType.Brick
2950b2.Name = "Mesh"
2951b2.Scale = Vector3.new(1.01999998, 1, 1.01999998)
2952p3 = Instance.new("Part", m5)
2953p3.BrickColor = BrickColor.new("Really black")
2954p3.Material = Enum.Material.Metal
2955p3.CFrame = CFrame.new(2.05000019, 5.04441547, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2956p3.Anchored = false
2957p3.CanCollide = false
2958p3.FormFactor = Enum.FormFactor.Custom
2959p3.Size = Vector3.new(0.200000003, 0.600000024, 0.800000012)
2960p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2961p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2962p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2963p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2964p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2965p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2966b3 = Instance.new("SpecialMesh", p3)
2967b3.MeshType = Enum.MeshType.Brick
2968b3.Name = "Mesh"
2969b3.Scale = Vector3.new(1.01999998, 1, 1.01999998)
2970p4 = Instance.new("Part", m5)
2971p4.BrickColor = BrickColor.new("Black")
2972p4.Material = Enum.Material.Metal
2973p4.CFrame = CFrame.new(1.5, 4.74441528, -7.0299983, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2974p4.Anchored = false
2975p4.CanCollide = false
2976p4.FormFactor = Enum.FormFactor.Custom
2977p4.Size = Vector3.new(1, 2, 0.200000018)
2978p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2979p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2980p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2981p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2982p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2983p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2984b4 = Instance.new("SpecialMesh", p4)
2985b4.MeshType = Enum.MeshType.Brick
2986b4.Name = "Mesh"
2987b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2988p5 = Instance.new("Part", m5)
2989p5.BrickColor = BrickColor.new("Black")
2990p5.Material = Enum.Material.Metal
2991p5.CFrame = CFrame.new(2, 4.74441528, -7.47999907, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
2992p5.Anchored = false
2993p5.CanCollide = false
2994p5.FormFactor = Enum.FormFactor.Custom
2995p5.Size = Vector3.new(1, 2, 0.200000018)
2996p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2997p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2998p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2999p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3000p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3001p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3002b5 = Instance.new("SpecialMesh", p5)
3003b5.MeshType = Enum.MeshType.Brick
3004b5.Name = "Mesh"
3005b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
3006p6 = Instance.new("Part", m5)
3007p6.BrickColor = BrickColor.new("Black")
3008p6.Material = Enum.Material.Metal
3009p6.CFrame = CFrame.new(1.505, 3.74442124, -7.49999952, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
3010p6.Anchored = false
3011p6.CanCollide = false
3012p6.FormFactor = Enum.FormFactor.Custom
3013p6.Size = Vector3.new(1, 0.200000048, 0.99000001)
3014p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3015p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3016p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3017p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3018p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3019p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3020b6 = Instance.new("SpecialMesh", p6)
3021b6.MeshType = Enum.MeshType.Brick
3022b6.Name = "Mesh"
3023b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
3024p7 = Instance.new("Part", m5)
3025p7.BrickColor = BrickColor.new("Black")
3026p7.Material = Enum.Material.Metal
3027p7.CFrame = CFrame.new(1.505, 5.69442129, -7.49999952, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
3028p7.Anchored = false
3029p7.CanCollide = false
3030p7.FormFactor = Enum.FormFactor.Custom
3031p7.Size = Vector3.new(1, 0.200000048, 0.99000001)
3032p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3033p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3034p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3035p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3036p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3037p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3038b7 = Instance.new("SpecialMesh", p7)
3039b7.MeshType = Enum.MeshType.Brick
3040b7.Name = "Mesh"
3041b7.Scale = Vector3.new(1, 1.01999998, 1.01999998)
3042w1 = Instance.new("Weld", p2)
3043w1.Name = "Joint"
3044w1.Part0 = p2
3045w1.C0 = CFrame.new(0, -0.400000095, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3046w1.Part1 = p3
3047w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3048w2 = Instance.new("Weld", p3)
3049w2.Name = "Joint"
3050w2.Part0 = p3
3051w2.C0 = CFrame.new(-0.0500001907, -0.300000191, 0.0200004578, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
3052w2.Part1 = p5
3053w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3054w3 = Instance.new("Weld", p4)
3055w3.Name = "Joint"
3056w3.Part0 = p4
3057w3.C0 = CFrame.new(0, 0, -0.470001221, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3058w3.Part1 = p1
3059w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3060w4 = Instance.new("Weld", p5)
3061w4.Name = "Joint"
3062w4.Part0 = p5
3063w4.C0 = CFrame.new(-0.0200004578, 0, 0.5, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3064w4.Part1 = p1
3065w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3066w5 = Instance.new("Weld", p6)
3067w5.Name = "Joint"
3068w5.Part0 = p6
3069w5.C0 = CFrame.new(0, 0.99999404, 0.00499999523, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3070w5.Part1 = p1
3071w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3072w6 = Instance.new("Weld", p7)
3073w6.Name = "Joint"
3074w6.Part0 = p7
3075w6.C0 = CFrame.new(0, -0.950006008, 0.00499999523, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3076w6.Part1 = p1
3077w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3078m5.Parent = rleg
3079m5:MakeJoints()
3080----------------------------------------------------
3081local cor5 = Instance.new("Part", rleg.RightLeg)
3082cor5.Name = "Thingy"
3083cor5.Locked = true
3084cor5.BottomSurface = 0
3085cor5.CanCollide = false
3086cor5.Size = Vector3.new(1, 1, 1)
3087cor5.Transparency = 1
3088cor5.TopSurface = 0
3089corw5 = Instance.new("Weld", cor5)
3090corw5.Part0 = rleg
3091corw5.Part1 = cor5
3092corw5.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
3093corw5.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
3094wld5 = Instance.new("Weld", rleg.RightLeg)
3095wld5.Part0 = cor5
3096wld5.Part1 = rleg.RightLeg.RightLegPlate
3097wld5.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
3098--Cape
3099m6 = Instance.new("Model")
3100m6.Name = "Cloak"
3101p1 = Instance.new("WedgePart", m6)
3102p1.BrickColor = BrickColor.new("Lime green")
3103p1.Material = Enum.Material.SmoothPlastic
3104p1.Name = "Wedge"
3105p1.CFrame = CFrame.new(0.959278464, 4.40979004, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
3106p1.CanCollide = false
3107p1.Locked = true
3108p1.FormFactor = Enum.FormFactor.Custom
3109p1.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3110p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3111p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3112p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3113p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3114p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3115p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3116b1 = Instance.new("SpecialMesh", p1)
3117b1.MeshType = Enum.MeshType.Wedge
3118b1.Name = "Mesh"
3119b1.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3120p2 = Instance.new("WedgePart", m6)
3121p2.BrickColor = BrickColor.new("Black")
3122p2.Material = Enum.Material.SmoothPlastic
3123p2.Name = "Wedge"
3124p2.CFrame = CFrame.new(-1.27945054, 2.10108781, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
3125p2.CanCollide = false
3126p2.Locked = true
3127p2.FormFactor = Enum.FormFactor.Custom
3128p2.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
3129p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3130p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3131p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3132p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3133p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3134p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3135b2 = Instance.new("SpecialMesh", p2)
3136b2.MeshType = Enum.MeshType.Wedge
3137b2.Name = "Mesh"
3138b2.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3139p3 = Instance.new("Part", m6)
3140p3.BrickColor = BrickColor.new("Black")
3141p3.Material = Enum.Material.SmoothPlastic
3142p3.Name = "CapeLevel2"
3143p3.CFrame = CFrame.new(-0.300008506, 3.78014231, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3144p3.CanCollide = false
3145p3.Locked = true
3146p3.FormFactor = Enum.FormFactor.Custom
3147p3.Size = Vector3.new(2.09881067, 0.559682727, 0.232357636)
3148p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3149p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3150p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3151p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3152p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3153p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3154b3 = Instance.new("BlockMesh", p3)
3155b3.Name = "Mesh"
3156b3.Scale = Vector3.new(1, 1, 0.602178097)
3157p4 = Instance.new("Part", m6)
3158p4.BrickColor = BrickColor.new("Black")
3159p4.Material = Enum.Material.SmoothPlastic
3160p4.CFrame = CFrame.new(-1.8391341, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
3161p4.CanCollide = false
3162p4.Locked = true
3163p4.FormFactor = Enum.FormFactor.Custom
3164p4.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3165p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3166p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3167p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3168p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3169p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3170p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3171b4 = Instance.new("BlockMesh", p4)
3172b4.Name = "Mesh"
3173b4.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3174p5 = Instance.new("Part", m6)
3175p5.BrickColor = BrickColor.new("Black")
3176p5.Material = Enum.Material.SmoothPlastic
3177p5.CFrame = CFrame.new(-1.69921267, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
3178p5.CanCollide = false
3179p5.Locked = true
3180p5.FormFactor = Enum.FormFactor.Custom
3181p5.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3182p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3183p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3184p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3185p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3186p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3187p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3188b5 = Instance.new("BlockMesh", p5)
3189b5.Name = "Mesh"
3190b5.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3191p6 = Instance.new("Part", m6)
3192p6.BrickColor = BrickColor.new("Black")
3193p6.Material = Enum.Material.SmoothPlastic
3194p6.Name = "CapeLevel1"
3195p6.CFrame = CFrame.new(-0.300008506, 4.6896286, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3196p6.CanCollide = false
3197p6.Locked = true
3198p6.FormFactor = Enum.FormFactor.Custom
3199p6.Size = Vector3.new(1.25928628, 0.232357651, 0.232357636)
3200p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3201p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3202p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3203p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3204p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3205p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3206b6 = Instance.new("BlockMesh", p6)
3207b6.Name = "Mesh"
3208b6.Scale = Vector3.new(1, 0.602178097, 0.602178097)
3209p7 = Instance.new("Part", m6)
3210p7.BrickColor = BrickColor.new("Black")
3211p7.Material = Enum.Material.SmoothPlastic
3212p7.CFrame = CFrame.new(1.23912418, 2.73073268, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3213p7.CanCollide = false
3214p7.Locked = true
3215p7.FormFactor = Enum.FormFactor.Custom
3216p7.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3217p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3218p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3219p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3220p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3221p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3222p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3223b7 = Instance.new("BlockMesh", p7)
3224b7.Name = "Mesh"
3225b7.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3226p8 = Instance.new("Part", m6)
3227p8.BrickColor = BrickColor.new("Black")
3228p8.Material = Enum.Material.SmoothPlastic
3229p8.CFrame = CFrame.new(0.539517641, 2.10109043, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3230p8.CanCollide = false
3231p8.Locked = true
3232p8.FormFactor = Enum.FormFactor.Custom
3233p8.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
3234p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3235p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3236p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3237p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3238p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3239p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3240b8 = Instance.new("BlockMesh", p8)
3241b8.Name = "Mesh"
3242b8.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3243p9 = Instance.new("Part", m6)
3244p9.BrickColor = BrickColor.new("Black")
3245p9.Material = Enum.Material.SmoothPlastic
3246p9.CFrame = CFrame.new(-0.300009966, 2.03112936, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3247p9.CanCollide = false
3248p9.Locked = true
3249p9.FormFactor = Enum.FormFactor.Custom
3250p9.Size = Vector3.new(0.419762105, 0.419762105, 0.232357636)
3251p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3252p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3253p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3254p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3255p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3256p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3257b9 = Instance.new("BlockMesh", p9)
3258b9.Name = "Mesh"
3259b9.Scale = Vector3.new(1, 1, 0.602178097)
3260p10 = Instance.new("Part", m6)
3261p10.BrickColor = BrickColor.new("Black")
3262p10.Material = Enum.Material.SmoothPlastic
3263p10.CFrame = CFrame.new(1.09920263, 2.73073268, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3264p10.CanCollide = false
3265p10.Locked = true
3266p10.FormFactor = Enum.FormFactor.Custom
3267p10.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3268p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3269p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3270p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3271p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3272p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3273p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3274b10 = Instance.new("BlockMesh", p10)
3275b10.Name = "Mesh"
3276b10.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3277p11 = Instance.new("Part", m6)
3278p11.BrickColor = BrickColor.new("Black")
3279p11.Material = Enum.Material.SmoothPlastic
3280p11.CFrame = CFrame.new(-1.13953161, 2.10109043, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3281p11.CanCollide = false
3282p11.Locked = true
3283p11.FormFactor = Enum.FormFactor.Custom
3284p11.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
3285p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3286p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3287p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3288p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3289p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3290p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3291b11 = Instance.new("BlockMesh", p11)
3292b11.Name = "Mesh"
3293b11.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3294p12 = Instance.new("Part", m6)
3295p12.BrickColor = BrickColor.new("Black")
3296p12.Material = Enum.Material.SmoothPlastic
3297p12.CFrame = CFrame.new(-1.6992135, 3.29041815, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
3298p12.CanCollide = false
3299p12.Locked = true
3300p12.FormFactor = Enum.FormFactor.Custom
3301p12.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3302p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3303p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3304p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3305p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3306p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3307p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3308b12 = Instance.new("BlockMesh", p12)
3309b12.Name = "Mesh"
3310b12.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3311p13 = Instance.new("Part", m6)
3312p13.BrickColor = BrickColor.new("Black")
3313p13.Material = Enum.Material.SmoothPlastic
3314p13.Name = "BottomLeftFlap"
3315p13.CFrame = CFrame.new(-1.13953161, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3316p13.CanCollide = false
3317p13.Locked = true
3318p13.FormFactor = Enum.FormFactor.Custom
3319p13.Size = Vector3.new(0.419762105, 0.232357651, 0.232357636)
3320p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3321p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3322p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3323p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3324p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3325p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3326b13 = Instance.new("BlockMesh", p13)
3327b13.Name = "Mesh"
3328b13.Scale = Vector3.new(1, 0.602178097, 0.602178097)
3329p14 = Instance.new("Part", m6)
3330p14.BrickColor = BrickColor.new("Black")
3331p14.Material = Enum.Material.SmoothPlastic
3332p14.Transparency = 1
3333p14.Name = "Rotater"
3334p14.CFrame = CFrame.new(-0.300001532, 4.82954979, 4.03967381, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3335p14.CanCollide = false
3336p14.Locked = true
3337p14.FormFactor = Enum.FormFactor.Custom
3338p14.Size = Vector3.new(1.25928617, 0.232357651, 0.232357636)
3339p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3340p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3341p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3342p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3343p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3344p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3345b14 = Instance.new("BlockMesh", p14)
3346b14.Name = "Mesh"
3347b14.Scale = Vector3.new(1, 0.632287025, 0.632287025)
3348p15 = Instance.new("Part", m6)
3349p15.BrickColor = BrickColor.new("Black")
3350p15.Material = Enum.Material.SmoothPlastic
3351p15.CFrame = CFrame.new(-1.41937125, 4.40979004, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
3352p15.CanCollide = false
3353p15.Locked = true
3354p15.FormFactor = Enum.FormFactor.Custom
3355p15.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3356p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3357p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3358p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3359p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3360p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3361p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3362b15 = Instance.new("BlockMesh", p15)
3363b15.Name = "Mesh"
3364b15.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3365p16 = Instance.new("Part", m6)
3366p16.BrickColor = BrickColor.new("Black")
3367p16.Material = Enum.Material.SmoothPlastic
3368p16.Name = "BottomCenterFlap"
3369p16.CFrame = CFrame.new(-0.300009966, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3370p16.CanCollide = false
3371p16.Locked = true
3372p16.FormFactor = Enum.FormFactor.Custom
3373p16.Size = Vector3.new(0.699603498, 0.232357651, 0.232357636)
3374p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3375p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3376p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3377p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3378p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3379p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3380b16 = Instance.new("BlockMesh", p16)
3381b16.Name = "Mesh"
3382b16.Scale = Vector3.new(1, 0.602178097, 0.602178097)
3383p17 = Instance.new("Part", m6)
3384p17.BrickColor = BrickColor.new("Black")
3385p17.Material = Enum.Material.SmoothPlastic
3386p17.CFrame = CFrame.new(-1.27945054, 4.26986647, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
3387p17.CanCollide = false
3388p17.Locked = true
3389p17.FormFactor = Enum.FormFactor.Custom
3390p17.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
3391p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3392p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3393p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3394p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3395p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3396p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3397b17 = Instance.new("BlockMesh", p17)
3398b17.Name = "Mesh"
3399b17.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3400p18 = Instance.new("Part", m6)
3401p18.BrickColor = BrickColor.new("Black")
3402p18.Material = Enum.Material.SmoothPlastic
3403p18.CFrame = CFrame.new(0.679436207, 4.26986647, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3404p18.CanCollide = false
3405p18.Locked = true
3406p18.FormFactor = Enum.FormFactor.Custom
3407p18.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
3408p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3409p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3410p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3411p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3412p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3413p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3414b18 = Instance.new("BlockMesh", p18)
3415b18.Name = "Mesh"
3416b18.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3417p19 = Instance.new("WedgePart", m6)
3418p19.BrickColor = BrickColor.new("Lime green")
3419p19.Name = "Wedge"
3420p19.CFrame = CFrame.new(-0.265017539, 1.47144794, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3421p19.CanCollide = false
3422p19.Locked = true
3423p19.FormFactor = Enum.FormFactor.Custom
3424p19.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3425p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3426p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3427p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3428p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3429p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3430p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3431b19 = Instance.new("SpecialMesh", p19)
3432b19.MeshType = Enum.MeshType.Wedge
3433b19.Name = "Mesh"
3434b19.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
3435p20 = Instance.new("Part", m6)
3436p20.BrickColor = BrickColor.new("Black")
3437p20.Material = Enum.Material.SmoothPlastic
3438p20.CFrame = CFrame.new(1.09919691, 3.29041815, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3439p20.CanCollide = false
3440p20.Locked = true
3441p20.FormFactor = Enum.FormFactor.Custom
3442p20.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3443p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3444p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3445p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3446p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3447p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3448p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3449b20 = Instance.new("BlockMesh", p20)
3450b20.Name = "Mesh"
3451b20.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3452p21 = Instance.new("Part", m6)
3453p21.BrickColor = BrickColor.new("Black")
3454p21.Material = Enum.Material.SmoothPlastic
3455p21.CFrame = CFrame.new(0.959275484, 3.1504972, 4.03967381, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3456p21.CanCollide = false
3457p21.Locked = true
3458p21.FormFactor = Enum.FormFactor.Custom
3459p21.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
3460p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3461p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3462p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3463p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3464p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3465p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3466b21 = Instance.new("BlockMesh", p21)
3467b21.Name = "Mesh"
3468b21.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3469p22 = Instance.new("WedgePart", m6)
3470p22.BrickColor = BrickColor.new("Lime green")
3471p22.Name = "Wedge"
3472p22.CFrame = CFrame.new(0.50454706, 1.89121199, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
3473p22.CanCollide = false
3474p22.Locked = true
3475p22.FormFactor = Enum.FormFactor.Custom
3476p22.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3477p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3478p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3479p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3480p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3481p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3482p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3483b22 = Instance.new("SpecialMesh", p22)
3484b22.MeshType = Enum.MeshType.Wedge
3485b22.Name = "Mesh"
3486b22.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
3487p23 = Instance.new("WedgePart", m6)
3488p23.BrickColor = BrickColor.new("Lime green")
3489p23.Material = Enum.Material.SmoothPlastic
3490p23.Name = "Wedge"
3491p23.CFrame = CFrame.new(1.09919691, 3.85010386, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
3492p23.CanCollide = false
3493p23.Locked = true
3494p23.FormFactor = Enum.FormFactor.Custom
3495p23.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3496p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3497p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3498p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3499p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3500p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3501p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3502b23 = Instance.new("SpecialMesh", p23)
3503b23.MeshType = Enum.MeshType.Wedge
3504b23.Name = "Mesh"
3505b23.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3506p24 = Instance.new("WedgePart", m6)
3507p24.BrickColor = BrickColor.new("Black")
3508p24.Material = Enum.Material.SmoothPlastic
3509p24.Name = "Wedge"
3510p24.CFrame = CFrame.new(0.959281087, 2.45089102, 4.03967333, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3511p24.CanCollide = false
3512p24.Locked = true
3513p24.FormFactor = Enum.FormFactor.Custom
3514p24.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3515p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3516p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3517p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3518p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3519p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3520p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3521b24 = Instance.new("SpecialMesh", p24)
3522b24.MeshType = Enum.MeshType.Wedge
3523b24.Name = "Mesh"
3524b24.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3525p25 = Instance.new("WedgePart", m6)
3526p25.BrickColor = BrickColor.new("Lime green")
3527p25.Name = "Wedge"
3528p25.CFrame = CFrame.new(0.574507415, 1.89121199, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3529p25.CanCollide = false
3530p25.Locked = true
3531p25.FormFactor = Enum.FormFactor.Custom
3532p25.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3533p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3534p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3535p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3536p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3537p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3538p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3539b25 = Instance.new("SpecialMesh", p25)
3540b25.MeshType = Enum.MeshType.Wedge
3541b25.Name = "Mesh"
3542b25.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
3543p26 = Instance.new("WedgePart", m6)
3544p26.BrickColor = BrickColor.new("Black")
3545p26.Material = Enum.Material.SmoothPlastic
3546p26.Name = "Wedge"
3547p26.CFrame = CFrame.new(-1.06957662, 4.68963194, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
3548p26.CanCollide = false
3549p26.Locked = true
3550p26.FormFactor = Enum.FormFactor.Custom
3551p26.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
3552p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3553p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3554p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3555p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3556p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3557p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3558b26 = Instance.new("SpecialMesh", p26)
3559b26.MeshType = Enum.MeshType.Wedge
3560b26.Name = "Mesh"
3561b26.Scale = Vector3.new(0.602178097, 0.602178097, 1)
3562p27 = Instance.new("Part", m6)
3563p27.BrickColor = BrickColor.new("Black")
3564p27.Material = Enum.Material.SmoothPlastic
3565p27.CFrame = CFrame.new(-1.55929208, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
3566p27.CanCollide = false
3567p27.Locked = true
3568p27.FormFactor = Enum.FormFactor.Custom
3569p27.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
3570p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3571p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3572p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3573p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3574p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3575p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3576b27 = Instance.new("BlockMesh", p27)
3577b27.Name = "Mesh"
3578b27.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3579p28 = Instance.new("WedgePart", m6)
3580p28.BrickColor = BrickColor.new("Black")
3581p28.Material = Enum.Material.SmoothPlastic
3582p28.Name = "Wedge"
3583p28.CFrame = CFrame.new(0.959275484, 3.71018291, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3584p28.CanCollide = false
3585p28.Locked = true
3586p28.FormFactor = Enum.FormFactor.Custom
3587p28.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3588p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3589p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3590p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3591p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3592p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3593p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3594b28 = Instance.new("SpecialMesh", p28)
3595b28.MeshType = Enum.MeshType.Wedge
3596b28.Name = "Mesh"
3597b28.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3598p29 = Instance.new("Part", m6)
3599p29.BrickColor = BrickColor.new("Black")
3600p29.Material = Enum.Material.SmoothPlastic
3601p29.CFrame = CFrame.new(-1.55929208, 3.15049648, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
3602p29.CanCollide = false
3603p29.Locked = true
3604p29.FormFactor = Enum.FormFactor.Custom
3605p29.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
3606p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3607p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3608p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3609p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3610p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3611p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3612b29 = Instance.new("BlockMesh", p29)
3613b29.Name = "Mesh"
3614b29.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3615p30 = Instance.new("WedgePart", m6)
3616p30.BrickColor = BrickColor.new("Black")
3617p30.Material = Enum.Material.SmoothPlastic
3618p30.Name = "Wedge"
3619p30.CFrame = CFrame.new(1.09919691, 3.15049744, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3620p30.CanCollide = false
3621p30.Locked = true
3622p30.FormFactor = Enum.FormFactor.Custom
3623p30.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3624p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3625p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3626p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3627p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3628p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3629p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3630b30 = Instance.new("SpecialMesh", p30)
3631b30.MeshType = Enum.MeshType.Wedge
3632b30.Name = "Mesh"
3633b30.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3634p31 = Instance.new("WedgePart", m6)
3635p31.BrickColor = BrickColor.new("Black")
3636p31.Material = Enum.Material.SmoothPlastic
3637p31.Name = "Wedge"
3638p31.CFrame = CFrame.new(0.119759142, 2.31096911, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3639p31.CanCollide = false
3640p31.Locked = true
3641p31.FormFactor = Enum.FormFactor.Custom
3642p31.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3643p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3644p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3645p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3646p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3647p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3648p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3649b31 = Instance.new("SpecialMesh", p31)
3650b31.MeshType = Enum.MeshType.Wedge
3651b31.Name = "Mesh"
3652b31.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3653p32 = Instance.new("Part", m6)
3654p32.BrickColor = BrickColor.new("Black")
3655p32.Material = Enum.Material.SmoothPlastic
3656p32.Name = "BottomRightFlap"
3657p32.CFrame = CFrame.new(0.539517641, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3658p32.CanCollide = false
3659p32.Locked = true
3660p32.FormFactor = Enum.FormFactor.Custom
3661p32.Size = Vector3.new(0.419762105, 0.232357651, 0.232357636)
3662p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3663p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3664p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3665p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3666p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3667p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3668b32 = Instance.new("BlockMesh", p32)
3669b32.Name = "Mesh"
3670b32.Scale = Vector3.new(1, 0.602178097, 0.602178097)
3671p33 = Instance.new("WedgePart", m6)
3672p33.BrickColor = BrickColor.new("Black")
3673p33.Material = Enum.Material.SmoothPlastic
3674p33.Name = "Wedge"
3675p33.CFrame = CFrame.new(1.02923799, 3.43033957, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
3676p33.CanCollide = false
3677p33.Locked = true
3678p33.FormFactor = Enum.FormFactor.Custom
3679p33.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
3680p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3681p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3682p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3683p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3684p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3685p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3686b33 = Instance.new("SpecialMesh", p33)
3687b33.MeshType = Enum.MeshType.Wedge
3688b33.Name = "Mesh"
3689b33.Scale = Vector3.new(0.602178097, 0.602178097, 1)
3690p34 = Instance.new("WedgePart", m6)
3691p34.BrickColor = BrickColor.new("Black")
3692p34.Material = Enum.Material.SmoothPlastic
3693p34.Name = "Wedge"
3694p34.CFrame = CFrame.new(-1.55929208, 2.45089054, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
3695p34.CanCollide = false
3696p34.Locked = true
3697p34.FormFactor = Enum.FormFactor.Custom
3698p34.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3699p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3700p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3701p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3702p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3703p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3704p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3705b34 = Instance.new("SpecialMesh", p34)
3706b34.MeshType = Enum.MeshType.Wedge
3707b34.Name = "Mesh"
3708b34.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3709p35 = Instance.new("Part", m6)
3710p35.BrickColor = BrickColor.new("Black")
3711p35.Material = Enum.Material.SmoothPlastic
3712p35.CFrame = CFrame.new(0.959275484, 3.85010386, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3713p35.CanCollide = false
3714p35.Locked = true
3715p35.FormFactor = Enum.FormFactor.Custom
3716p35.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3717p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3718p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3719p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3720p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3721p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3722p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3723b35 = Instance.new("BlockMesh", p35)
3724b35.Name = "Mesh"
3725b35.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3726p36 = Instance.new("WedgePart", m6)
3727p36.BrickColor = BrickColor.new("Black")
3728p36.Material = Enum.Material.SmoothPlastic
3729p36.Name = "Wedge"
3730p36.CFrame = CFrame.new(-1.62925327, 3.43033957, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
3731p36.CanCollide = false
3732p36.Locked = true
3733p36.FormFactor = Enum.FormFactor.Custom
3734p36.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
3735p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3736p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3737p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3738p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3739p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3740p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3741b36 = Instance.new("SpecialMesh", p36)
3742b36.MeshType = Enum.MeshType.Wedge
3743b36.Name = "Mesh"
3744b36.Scale = Vector3.new(0.602178097, 0.602178097, 1)
3745p37 = Instance.new("Part", m6)
3746p37.BrickColor = BrickColor.new("Black")
3747p37.Material = Enum.Material.SmoothPlastic
3748p37.Name = "CapeLevel3"
3749p37.CFrame = CFrame.new(-0.300008506, 3.22045994, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3750p37.CanCollide = false
3751p37.Locked = true
3752p37.FormFactor = Enum.FormFactor.Custom
3753p37.Size = Vector3.new(2.3786521, 0.559682727, 0.232357636)
3754p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3755p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3756p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3757p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3758p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3759p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3760b37 = Instance.new("BlockMesh", p37)
3761b37.Name = "Mesh"
3762b37.Scale = Vector3.new(1, 1, 0.602178097)
3763p38 = Instance.new("WedgePart", m6)
3764p38.BrickColor = BrickColor.new("Lime green")
3765p38.Material = Enum.Material.SmoothPlastic
3766p38.Name = "Wedge"
3767p38.CFrame = CFrame.new(-1.97905517, 2.73073244, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
3768p38.CanCollide = false
3769p38.Locked = true
3770p38.FormFactor = Enum.FormFactor.Custom
3771p38.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3772p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3773p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3774p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3775p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3776p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3777p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3778b38 = Instance.new("SpecialMesh", p38)
3779b38.MeshType = Enum.MeshType.Wedge
3780b38.Name = "Mesh"
3781b38.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3782p39 = Instance.new("WedgePart", m6)
3783p39.BrickColor = BrickColor.new("Lime green")
3784p39.Material = Enum.Material.SmoothPlastic
3785p39.Name = "Wedge"
3786p39.CFrame = CFrame.new(-1.83913493, 3.29041815, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
3787p39.CanCollide = false
3788p39.Locked = true
3789p39.FormFactor = Enum.FormFactor.Custom
3790p39.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3791p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3792p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3793p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3794p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3795p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3796p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3797b39 = Instance.new("SpecialMesh", p39)
3798b39.MeshType = Enum.MeshType.Wedge
3799b39.Name = "Mesh"
3800b39.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3801p40 = Instance.new("WedgePart", m6)
3802p40.BrickColor = BrickColor.new("Black")
3803p40.Material = Enum.Material.SmoothPlastic
3804p40.Name = "Wedge"
3805p40.CFrame = CFrame.new(-1.48933268, 3.99002528, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
3806p40.CanCollide = false
3807p40.Locked = true
3808p40.FormFactor = Enum.FormFactor.Custom
3809p40.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
3810p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3811p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3812p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3813p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3814p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3815p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3816b40 = Instance.new("SpecialMesh", p40)
3817b40.MeshType = Enum.MeshType.Wedge
3818b40.Name = "Mesh"
3819b40.Scale = Vector3.new(0.602178097, 0.602178097, 1)
3820p41 = Instance.new("WedgePart", m6)
3821p41.BrickColor = BrickColor.new("Black")
3822p41.Material = Enum.Material.SmoothPlastic
3823p41.Name = "Wedge"
3824p41.CFrame = CFrame.new(-1.76917338, 2.59081101, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
3825p41.CanCollide = false
3826p41.Locked = true
3827p41.FormFactor = Enum.FormFactor.Custom
3828p41.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
3829p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3830p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3831p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3832p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3833p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3834p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3835b41 = Instance.new("SpecialMesh", p41)
3836b41.MeshType = Enum.MeshType.Wedge
3837b41.Name = "Mesh"
3838b41.Scale = Vector3.new(0.602178097, 0.602178097, 1)
3839p42 = Instance.new("WedgePart", m6)
3840p42.BrickColor = BrickColor.new("Black")
3841p42.Material = Enum.Material.SmoothPlastic
3842p42.Name = "Wedge"
3843p42.CFrame = CFrame.new(0.679442644, 2.10108781, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3844p42.CanCollide = false
3845p42.Locked = true
3846p42.FormFactor = Enum.FormFactor.Custom
3847p42.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
3848p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3849p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3850p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3851p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3852p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3853p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3854b42 = Instance.new("SpecialMesh", p42)
3855b42.MeshType = Enum.MeshType.Wedge
3856b42.Name = "Mesh"
3857b42.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3858p43 = Instance.new("WedgePart", m6)
3859p43.BrickColor = BrickColor.new("Black")
3860p43.Material = Enum.Material.SmoothPlastic
3861p43.Name = "Wedge"
3862p43.CFrame = CFrame.new(-1.76917338, 2.87065363, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
3863p43.CanCollide = false
3864p43.Locked = true
3865p43.FormFactor = Enum.FormFactor.Custom
3866p43.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
3867p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3868p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3869p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3870p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3871p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3872p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3873b43 = Instance.new("SpecialMesh", p43)
3874b43.MeshType = Enum.MeshType.Wedge
3875b43.Name = "Mesh"
3876b43.Scale = Vector3.new(0.602178097, 0.602178097, 1)
3877p44 = Instance.new("WedgePart", m6)
3878p44.BrickColor = BrickColor.new("Black")
3879p44.Material = Enum.Material.SmoothPlastic
3880p44.Name = "Wedge"
3881p44.CFrame = CFrame.new(-1.41937125, 4.26986837, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
3882p44.CanCollide = false
3883p44.Locked = true
3884p44.FormFactor = Enum.FormFactor.Custom
3885p44.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3886p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3887p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3888p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3889p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3890p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3891p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3892b44 = Instance.new("SpecialMesh", p44)
3893b44.MeshType = Enum.MeshType.Wedge
3894b44.Name = "Mesh"
3895b44.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3896p45 = Instance.new("WedgePart", m6)
3897p45.BrickColor = BrickColor.new("Black")
3898p45.Material = Enum.Material.SmoothPlastic
3899p45.Name = "Wedge"
3900p45.CFrame = CFrame.new(-0.999610066, 2.10108781, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3901p45.CanCollide = false
3902p45.Locked = true
3903p45.FormFactor = Enum.FormFactor.Custom
3904p45.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
3905p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3906p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3907p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3908p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3909p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3910p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3911b45 = Instance.new("SpecialMesh", p45)
3912b45.MeshType = Enum.MeshType.Wedge
3913b45.Name = "Mesh"
3914b45.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3915p46 = Instance.new("WedgePart", m6)
3916p46.BrickColor = BrickColor.new("Black")
3917p46.Material = Enum.Material.SmoothPlastic
3918p46.Name = "Wedge"
3919p46.CFrame = CFrame.new(0.46955356, 4.68963194, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
3920p46.CanCollide = false
3921p46.Locked = true
3922p46.FormFactor = Enum.FormFactor.Custom
3923p46.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
3924p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3925p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3926p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3927p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3928p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3929p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3930b46 = Instance.new("SpecialMesh", p46)
3931b46.MeshType = Enum.MeshType.Wedge
3932b46.Name = "Mesh"
3933b46.Scale = Vector3.new(0.602178097, 0.602178097, 1)
3934p47 = Instance.new("Part", m6)
3935p47.BrickColor = BrickColor.new("Black")
3936p47.Material = Enum.Material.SmoothPlastic
3937p47.CFrame = CFrame.new(0.819356859, 4.40979004, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3938p47.CanCollide = false
3939p47.Locked = true
3940p47.FormFactor = Enum.FormFactor.Custom
3941p47.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3942p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3943p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3944p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3945p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3946p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3947p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3948b47 = Instance.new("BlockMesh", p47)
3949b47.Name = "Mesh"
3950b47.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3951p48 = Instance.new("Part", m6)
3952p48.BrickColor = BrickColor.new("Black")
3953p48.Material = Enum.Material.SmoothPlastic
3954p48.Name = "CapeLevel4"
3955p48.CFrame = CFrame.new(-0.300008506, 2.66077495, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3956p48.CanCollide = false
3957p48.Locked = true
3958p48.FormFactor = Enum.FormFactor.Custom
3959p48.Size = Vector3.new(2.3786521, 0.559682727, 0.232357636)
3960p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3961p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3962p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3963p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3964p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3965p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3966b48 = Instance.new("BlockMesh", p48)
3967b48.Name = "Mesh"
3968b48.Scale = Vector3.new(1, 1, 0.602178097)
3969p49 = Instance.new("WedgePart", m6)
3970p49.BrickColor = BrickColor.new("Black")
3971p49.Material = Enum.Material.SmoothPlastic
3972p49.Name = "Wedge"
3973p49.CFrame = CFrame.new(0.819356859, 4.26986837, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3974p49.CanCollide = false
3975p49.Locked = true
3976p49.FormFactor = Enum.FormFactor.Custom
3977p49.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3978p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3979p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3980p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3981p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3982p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3983p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3984b49 = Instance.new("SpecialMesh", p49)
3985b49.MeshType = Enum.MeshType.Wedge
3986b49.Name = "Mesh"
3987b49.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3988p50 = Instance.new("Part", m6)
3989p50.BrickColor = BrickColor.new("Black")
3990p50.Material = Enum.Material.SmoothPlastic
3991p50.Name = "CapeLevel1SubPart"
3992p50.CFrame = CFrame.new(-0.300008506, 4.33982658, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3993p50.CanCollide = false
3994p50.Locked = true
3995p50.FormFactor = Enum.FormFactor.Custom
3996p50.Size = Vector3.new(1.81896901, 0.559682727, 0.232357636)
3997p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3998p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3999p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4000p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4001p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4002p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4003b50 = Instance.new("BlockMesh", p50)
4004b50.Name = "Mesh"
4005b50.Scale = Vector3.new(1, 1, 0.602178097)
4006p51 = Instance.new("Part", m6)
4007p51.BrickColor = BrickColor.new("Black")
4008p51.Material = Enum.Material.SmoothPlastic
4009p51.CFrame = CFrame.new(-1.55929291, 3.85010386, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4010p51.CanCollide = false
4011p51.Locked = true
4012p51.FormFactor = Enum.FormFactor.Custom
4013p51.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4014p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4015p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4016p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4017p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4018p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4019p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4020b51 = Instance.new("BlockMesh", p51)
4021b51.Name = "Mesh"
4022b51.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4023p52 = Instance.new("Part", m6)
4024p52.BrickColor = BrickColor.new("Black")
4025p52.Material = Enum.Material.SmoothPlastic
4026p52.CFrame = CFrame.new(-1.41937149, 3.71018171, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4027p52.CanCollide = false
4028p52.Locked = true
4029p52.FormFactor = Enum.FormFactor.Custom
4030p52.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
4031p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4032p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4033p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4034p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4035p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4036p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4037b52 = Instance.new("BlockMesh", p52)
4038b52.Name = "Mesh"
4039b52.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4040p53 = Instance.new("WedgePart", m6)
4041p53.BrickColor = BrickColor.new("Black")
4042p53.Material = Enum.Material.SmoothPlastic
4043p53.Name = "Wedge"
4044p53.CFrame = CFrame.new(-0.0201580226, 2.03113341, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4045p53.CanCollide = false
4046p53.Locked = true
4047p53.FormFactor = Enum.FormFactor.Custom
4048p53.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
4049p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4050p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4051p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4052p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4053p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4054p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4055b53 = Instance.new("SpecialMesh", p53)
4056b53.MeshType = Enum.MeshType.Wedge
4057b53.Name = "Mesh"
4058b53.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4059p54 = Instance.new("Part", m6)
4060p54.BrickColor = BrickColor.new("Black")
4061p54.Material = Enum.Material.SmoothPlastic
4062p54.CFrame = CFrame.new(-0.300009966, 1.68132639, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4063p54.CanCollide = false
4064p54.Locked = true
4065p54.FormFactor = Enum.FormFactor.Custom
4066p54.Size = Vector3.new(0.232357651, 0.279841423, 0.232357636)
4067p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4068p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4069p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4070p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4071p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4072p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4073b54 = Instance.new("BlockMesh", p54)
4074b54.Name = "Mesh"
4075b54.Scale = Vector3.new(0.602178395, 1, 0.602178097)
4076p55 = Instance.new("WedgePart", m6)
4077p55.BrickColor = BrickColor.new("Black")
4078p55.Material = Enum.Material.SmoothPlastic
4079p55.Name = "Wedge"
4080p55.CFrame = CFrame.new(0.39960131, 2.10108781, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4081p55.CanCollide = false
4082p55.Locked = true
4083p55.FormFactor = Enum.FormFactor.Custom
4084p55.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
4085p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4086p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4087p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4088p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4089p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4090p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4091b55 = Instance.new("SpecialMesh", p55)
4092b55.MeshType = Enum.MeshType.Wedge
4093b55.Name = "Mesh"
4094b55.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4095p56 = Instance.new("WedgePart", m6)
4096p56.BrickColor = BrickColor.new("Lime green")
4097p56.Material = Enum.Material.SmoothPlastic
4098p56.Name = "Wedge"
4099p56.CFrame = CFrame.new(1.23911822, 3.29041815, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4100p56.CanCollide = false
4101p56.Locked = true
4102p56.FormFactor = Enum.FormFactor.Custom
4103p56.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4104p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4105p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4106p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4107p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4108p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4109p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4110b56 = Instance.new("SpecialMesh", p56)
4111b56.MeshType = Enum.MeshType.Wedge
4112b56.Name = "Mesh"
4113b56.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4114p57 = Instance.new("WedgePart", m6)
4115p57.BrickColor = BrickColor.new("Black")
4116p57.Material = Enum.Material.SmoothPlastic
4117p57.Name = "Wedge"
4118p57.CFrame = CFrame.new(0.749394774, 4.54971123, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4119p57.CanCollide = false
4120p57.Locked = true
4121p57.FormFactor = Enum.FormFactor.Custom
4122p57.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
4123p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4124p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4125p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4126p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4127p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4128p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4129b57 = Instance.new("SpecialMesh", p57)
4130b57.MeshType = Enum.MeshType.Wedge
4131b57.Name = "Mesh"
4132b57.Scale = Vector3.new(0.602178097, 0.602178097, 1)
4133p58 = Instance.new("Part", m6)
4134p58.BrickColor = BrickColor.new("Black")
4135p58.Material = Enum.Material.SmoothPlastic
4136p58.CFrame = CFrame.new(0.819354892, 3.71018171, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4137p58.CanCollide = false
4138p58.Locked = true
4139p58.FormFactor = Enum.FormFactor.Custom
4140p58.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
4141p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4142p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4143p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4144p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4145p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4146p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4147b58 = Instance.new("BlockMesh", p58)
4148b58.Name = "Mesh"
4149b58.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4150p59 = Instance.new("WedgePart", m6)
4151p59.BrickColor = BrickColor.new("Black")
4152p59.Material = Enum.Material.SmoothPlastic
4153p59.Name = "Wedge"
4154p59.CFrame = CFrame.new(0.259678036, 2.31096983, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4155p59.CanCollide = false
4156p59.Locked = true
4157p59.FormFactor = Enum.FormFactor.Custom
4158p59.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4159p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4160p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4161p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4162p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4163p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4164p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4165b59 = Instance.new("SpecialMesh", p59)
4166b59.MeshType = Enum.MeshType.Wedge
4167b59.Name = "Mesh"
4168b59.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4169p60 = Instance.new("Part", m6)
4170p60.BrickColor = BrickColor.new("Black")
4171p60.Material = Enum.Material.SmoothPlastic
4172p60.Name = "NeckPart"
4173p60.CFrame = CFrame.new(-0.300008506, 4.82955122, 3.8997519, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4174p60.CanCollide = false
4175p60.Locked = true
4176p60.FormFactor = Enum.FormFactor.Custom
4177p60.Size = Vector3.new(1.25928628, 0.232357651, 0.419762105)
4178p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4179p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4180p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4181p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4182p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4183p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4184b60 = Instance.new("BlockMesh", p60)
4185b60.Name = "Mesh"
4186b60.Scale = Vector3.new(1, 0.602178097, 1)
4187p61 = Instance.new("Part", m6)
4188p61.BrickColor = BrickColor.new("Black")
4189p61.Material = Enum.Material.SmoothPlastic
4190p61.CFrame = CFrame.new(0.959281087, 2.73073363, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4191p61.CanCollide = false
4192p61.Locked = true
4193p61.FormFactor = Enum.FormFactor.Custom
4194p61.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
4195p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4196p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4197p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4198p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4199p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4200p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4201b61 = Instance.new("BlockMesh", p61)
4202b61.Name = "Mesh"
4203b61.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4204p62 = Instance.new("WedgePart", m6)
4205p62.BrickColor = BrickColor.new("Black")
4206p62.Material = Enum.Material.SmoothPlastic
4207p62.Name = "Wedge"
4208p62.CFrame = CFrame.new(1.16916382, 2.87065434, 4.03967333, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4209p62.CanCollide = false
4210p62.Locked = true
4211p62.FormFactor = Enum.FormFactor.Custom
4212p62.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
4213p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4214p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4215p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4216p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4217p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4218p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4219b62 = Instance.new("SpecialMesh", p62)
4220b62.MeshType = Enum.MeshType.Wedge
4221b62.Name = "Mesh"
4222b62.Scale = Vector3.new(0.602178097, 0.602178097, 1)
4223p63 = Instance.new("WedgePart", m6)
4224p63.BrickColor = BrickColor.new("Lime green")
4225p63.Material = Enum.Material.SmoothPlastic
4226p63.Name = "Wedge"
4227p63.CFrame = CFrame.new(1.37904489, 2.73073268, 4.03967333, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4228p63.CanCollide = false
4229p63.Locked = true
4230p63.FormFactor = Enum.FormFactor.Custom
4231p63.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4232p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4233p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4234p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4235p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4236p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4237p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4238b63 = Instance.new("SpecialMesh", p63)
4239b63.MeshType = Enum.MeshType.Wedge
4240b63.Name = "Mesh"
4241b63.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4242p64 = Instance.new("WedgePart", m6)
4243p64.BrickColor = BrickColor.new("Black")
4244p64.Material = Enum.Material.SmoothPlastic
4245p64.Name = "Wedge"
4246p64.CFrame = CFrame.new(-0.439923674, 1.68132377, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4247p64.CanCollide = false
4248p64.Locked = true
4249p64.FormFactor = Enum.FormFactor.Custom
4250p64.Size = Vector3.new(0.232357651, 0.279841423, 0.232357636)
4251p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4252p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4253p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4254p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4255p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4256p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4257b64 = Instance.new("SpecialMesh", p64)
4258b64.MeshType = Enum.MeshType.Wedge
4259b64.Name = "Mesh"
4260b64.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4261p65 = Instance.new("WedgePart", m6)
4262p65.BrickColor = BrickColor.new("Black")
4263p65.Material = Enum.Material.SmoothPlastic
4264p65.Name = "Wedge"
4265p65.CFrame = CFrame.new(-0.859687686, 2.31096983, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4266p65.CanCollide = false
4267p65.Locked = true
4268p65.FormFactor = Enum.FormFactor.Custom
4269p65.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4270p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4271p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4272p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4273p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4274p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4275p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4276b65 = Instance.new("SpecialMesh", p65)
4277b65.MeshType = Enum.MeshType.Wedge
4278b65.Name = "Mesh"
4279b65.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4280p66 = Instance.new("WedgePart", m6)
4281p66.BrickColor = BrickColor.new("Black")
4282p66.Material = Enum.Material.SmoothPlastic
4283p66.Name = "Wedge"
4284p66.CFrame = CFrame.new(-1.55929291, 3.71018267, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4285p66.CanCollide = false
4286p66.Locked = true
4287p66.FormFactor = Enum.FormFactor.Custom
4288p66.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4289p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4290p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4291p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4292p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4293p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4294p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4295b66 = Instance.new("SpecialMesh", p66)
4296b66.MeshType = Enum.MeshType.Wedge
4297b66.Name = "Mesh"
4298b66.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4299p67 = Instance.new("WedgePart", m6)
4300p67.BrickColor = BrickColor.new("Black")
4301p67.Material = Enum.Material.SmoothPlastic
4302p67.Name = "Wedge"
4303p67.CFrame = CFrame.new(-0.719767809, 2.31096911, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4304p67.CanCollide = false
4305p67.Locked = true
4306p67.FormFactor = Enum.FormFactor.Custom
4307p67.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4308p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4309p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4310p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4311p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4312p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4313p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4314b67 = Instance.new("SpecialMesh", p67)
4315b67.MeshType = Enum.MeshType.Wedge
4316b67.Name = "Mesh"
4317b67.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4318p68 = Instance.new("WedgePart", m6)
4319p68.BrickColor = BrickColor.new("Lime green")
4320p68.Name = "Wedge"
4321p68.CFrame = CFrame.new(-1.17450571, 1.89121199, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4322p68.CanCollide = false
4323p68.Locked = true
4324p68.FormFactor = Enum.FormFactor.Custom
4325p68.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4326p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4327p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4328p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4329p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4330p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4331p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4332b68 = Instance.new("SpecialMesh", p68)
4333b68.MeshType = Enum.MeshType.Wedge
4334b68.Name = "Mesh"
4335b68.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
4336p69 = Instance.new("WedgePart", m6)
4337p69.BrickColor = BrickColor.new("Lime green")
4338p69.Name = "Wedge"
4339p69.CFrame = CFrame.new(-1.10454547, 1.89121199, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4340p69.CanCollide = false
4341p69.Locked = true
4342p69.FormFactor = Enum.FormFactor.Custom
4343p69.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4344p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4345p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4346p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4347p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4348p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4349p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4350b69 = Instance.new("SpecialMesh", p69)
4351b69.MeshType = Enum.MeshType.Wedge
4352b69.Name = "Mesh"
4353b69.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
4354p70 = Instance.new("WedgePart", m6)
4355p70.BrickColor = BrickColor.new("Black")
4356p70.Material = Enum.Material.SmoothPlastic
4357p70.Name = "Wedge"
4358p70.CFrame = CFrame.new(0.889316559, 3.99002528, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4359p70.CanCollide = false
4360p70.Locked = true
4361p70.FormFactor = Enum.FormFactor.Custom
4362p70.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
4363p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4364p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4365p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4366p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4367p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4368p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4369b70 = Instance.new("SpecialMesh", p70)
4370b70.MeshType = Enum.MeshType.Wedge
4371b70.Name = "Mesh"
4372b70.Scale = Vector3.new(0.602178097, 0.602178097, 1)
4373p71 = Instance.new("WedgePart", m6)
4374p71.BrickColor = BrickColor.new("Lime green")
4375p71.Name = "Wedge"
4376p71.CFrame = CFrame.new(-0.334977895, 1.47144794, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4377p71.CanCollide = false
4378p71.Locked = true
4379p71.FormFactor = Enum.FormFactor.Custom
4380p71.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4381p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4382p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4383p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4384p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4385p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4386p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4387b71 = Instance.new("SpecialMesh", p71)
4388b71.MeshType = Enum.MeshType.Wedge
4389b71.Name = "Mesh"
4390b71.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
4391p72 = Instance.new("WedgePart", m6)
4392p72.BrickColor = BrickColor.new("Black")
4393p72.Material = Enum.Material.SmoothPlastic
4394p72.Name = "Wedge"
4395p72.CFrame = CFrame.new(-0.579845786, 2.03112626, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4396p72.CanCollide = false
4397p72.Locked = true
4398p72.FormFactor = Enum.FormFactor.Custom
4399p72.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
4400p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4401p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4402p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4403p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4404p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4405p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4406b72 = Instance.new("SpecialMesh", p72)
4407b72.MeshType = Enum.MeshType.Wedge
4408b72.Name = "Mesh"
4409b72.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4410p73 = Instance.new("WedgePart", m6)
4411p73.BrickColor = BrickColor.new("Black")
4412p73.Material = Enum.Material.SmoothPlastic
4413p73.Name = "Wedge"
4414p73.CFrame = CFrame.new(-1.41937125, 2.31096983, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4415p73.CanCollide = false
4416p73.Locked = true
4417p73.FormFactor = Enum.FormFactor.Custom
4418p73.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4419p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4420p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4421p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4422p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4423p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4424p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4425b73 = Instance.new("SpecialMesh", p73)
4426b73.MeshType = Enum.MeshType.Wedge
4427b73.Name = "Mesh"
4428b73.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4429p74 = Instance.new("WedgePart", m6)
4430p74.BrickColor = BrickColor.new("Black")
4431p74.Material = Enum.Material.SmoothPlastic
4432p74.Name = "Wedge"
4433p74.CFrame = CFrame.new(1.16916382, 2.59081125, 4.03967333, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4434p74.CanCollide = false
4435p74.Locked = true
4436p74.FormFactor = Enum.FormFactor.Custom
4437p74.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
4438p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4439p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4440p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4441p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4442p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4443p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4444b74 = Instance.new("SpecialMesh", p74)
4445b74.MeshType = Enum.MeshType.Wedge
4446b74.Name = "Mesh"
4447b74.Scale = Vector3.new(0.602178097, 0.602178097, 1)
4448p75 = Instance.new("WedgePart", m6)
4449p75.BrickColor = BrickColor.new("Black")
4450p75.Material = Enum.Material.SmoothPlastic
4451p75.Name = "Wedge"
4452p75.CFrame = CFrame.new(-0.160081401, 1.68132377, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4453p75.CanCollide = false
4454p75.Locked = true
4455p75.FormFactor = Enum.FormFactor.Custom
4456p75.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
4457p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4458p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4459p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4460p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4461p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4462p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4463b75 = Instance.new("SpecialMesh", p75)
4464b75.MeshType = Enum.MeshType.Wedge
4465b75.Name = "Mesh"
4466b75.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4467p76 = Instance.new("WedgePart", m6)
4468p76.BrickColor = BrickColor.new("Black")
4469p76.Material = Enum.Material.SmoothPlastic
4470p76.Name = "Wedge"
4471p76.CFrame = CFrame.new(0.819362521, 2.31096983, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4472p76.CanCollide = false
4473p76.Locked = true
4474p76.FormFactor = Enum.FormFactor.Custom
4475p76.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4476p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4477p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4478p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4479p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4480p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4481p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4482b76 = Instance.new("SpecialMesh", p76)
4483b76.MeshType = Enum.MeshType.Wedge
4484b76.Name = "Mesh"
4485b76.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4486p77 = Instance.new("WedgePart", m6)
4487p77.BrickColor = BrickColor.new("Lime green")
4488p77.Material = Enum.Material.SmoothPlastic
4489p77.Name = "Wedge"
4490p77.CFrame = CFrame.new(-1.55929291, 4.40979004, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4491p77.CanCollide = false
4492p77.Locked = true
4493p77.FormFactor = Enum.FormFactor.Custom
4494p77.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4495p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4496p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4497p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4498p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4499p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4500p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4501b77 = Instance.new("SpecialMesh", p77)
4502b77.MeshType = Enum.MeshType.Wedge
4503b77.Name = "Mesh"
4504b77.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4505p78 = Instance.new("WedgePart", m6)
4506p78.BrickColor = BrickColor.new("Black")
4507p78.Material = Enum.Material.SmoothPlastic
4508p78.Name = "Wedge"
4509p78.CFrame = CFrame.new(-1.34941173, 4.54971123, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4510p78.CanCollide = false
4511p78.Locked = true
4512p78.FormFactor = Enum.FormFactor.Custom
4513p78.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
4514p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4515p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4516p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4517p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4518p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4519p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4520b78 = Instance.new("SpecialMesh", p78)
4521b78.MeshType = Enum.MeshType.Wedge
4522b78.Name = "Mesh"
4523b78.Scale = Vector3.new(0.602178097, 0.602178097, 1)
4524p79 = Instance.new("WedgePart", m6)
4525p79.BrickColor = BrickColor.new("Lime green")
4526p79.Material = Enum.Material.SmoothPlastic
4527p79.Name = "Wedge"
4528p79.CFrame = CFrame.new(-1.6992141, 3.85010386, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4529p79.CanCollide = false
4530p79.Locked = true
4531p79.FormFactor = Enum.FormFactor.Custom
4532p79.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4533p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4534p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4535p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4536p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4537p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4538p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4539b79 = Instance.new("SpecialMesh", p79)
4540b79.MeshType = Enum.MeshType.Wedge
4541b79.Name = "Mesh"
4542b79.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4543p80 = Instance.new("WedgePart", m6)
4544p80.BrickColor = BrickColor.new("Black")
4545p80.Material = Enum.Material.SmoothPlastic
4546p80.Name = "Wedge"
4547p80.CFrame = CFrame.new(-1.6992135, 3.1504972, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4548p80.CanCollide = false
4549p80.Locked = true
4550p80.FormFactor = Enum.FormFactor.Custom
4551p80.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4552p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4553p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4554p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4555p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4556p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4557p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4558b80 = Instance.new("SpecialMesh", p80)
4559b80.MeshType = Enum.MeshType.Wedge
4560b80.Name = "Mesh"
4561b80.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4562w1 = Instance.new("Weld", p1)
4563w1.Name = "Joint"
4564w1.Part0 = p1
4565w1.C0 = CFrame.new(0, 0, 0.139921591, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4566w1.Part1 = p47
4567w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4568w2 = Instance.new("Weld", p2)
4569w2.Name = "Joint"
4570w2.Part0 = p2
4571w2.C0 = CFrame.new(0, -2.7097974e-006, 0.139918938, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4572w2.Part1 = p11
4573w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4574w3 = Instance.new("Weld", p3)
4575w3.Name = "Joint"
4576w3.Part0 = p3
4577w3.C0 = CFrame.new(0, 0.559684455, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4578w3.Part1 = p50
4579w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4580w4 = Instance.new("Weld", p4)
4581w4.Name = "Joint"
4582w4.Part0 = p4
4583w4.C0 = CFrame.new(-0.139921427, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4584w4.Part1 = p5
4585w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4586w5 = Instance.new("Weld", p5)
4587w5.Name = "Joint"
4588w5.Part0 = p5
4589w5.C0 = CFrame.new(-0.139920607, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4590w5.Part1 = p27
4591w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4592w6 = Instance.new("Weld", p6)
4593w6.Name = "Joint"
4594w6.Part0 = p6
4595w6.C0 = CFrame.new(6.98293934e-006, 0.13992101, 1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4596w6.Part1 = p14
4597w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4598w7 = Instance.new("Weld", p7)
4599w7.Name = "Joint"
4600w7.Part0 = p7
4601w7.C0 = CFrame.new(-0.139921531, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4602w7.Part1 = p10
4603w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4604w8 = Instance.new("Weld", p8)
4605w8.Name = "Joint"
4606w8.Part0 = p8
4607w8.C0 = CFrame.new(0, 0.209881723, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4608w8.Part1 = p32
4609w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4610w9 = Instance.new("Weld", p9)
4611w9.Name = "Joint"
4612w9.Part0 = p9
4613w9.C0 = CFrame.new(0, 0.279842764, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4614w9.Part1 = p16
4615w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4616w10 = Instance.new("Weld", p10)
4617w10.Name = "Joint"
4618w10.Part0 = p10
4619w10.C0 = CFrame.new(-0.139921531, 1.04222977e-006, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4620w10.Part1 = p61
4621w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4622w11 = Instance.new("Weld", p11)
4623w11.Name = "Joint"
4624w11.Part0 = p11
4625w11.C0 = CFrame.new(0, 0.209881723, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4626w11.Part1 = p13
4627w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4628w12 = Instance.new("Weld", p12)
4629w12.Name = "Joint"
4630w12.Part0 = p12
4631w12.C0 = CFrame.new(-0.139921427, -0.139921635, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4632w12.Part1 = p29
4633w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4634w13 = Instance.new("Weld", p13)
4635w13.Name = "Joint"
4636w13.Part0 = p13
4637w13.C0 = CFrame.new(0.839523137, 0.349802732, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4638w13.Part1 = p48
4639w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4640w14 = Instance.new("Weld", p14)
4641w14.Name = "Joint"
4642w14.Part0 = p14
4643w14.C0 = CFrame.new(-6.98293934e-006, 1.25067584e-006, -0.139921844, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4644w14.Part1 = p60
4645w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4646w15 = Instance.new("Weld", p15)
4647w15.Name = "Joint"
4648w15.Part0 = p15
4649w15.C0 = CFrame.new(-0.139920712, -0.139923528, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4650w15.Part1 = p17
4651w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4652w16 = Instance.new("Weld", p16)
4653w16.Name = "Joint"
4654w16.Part0 = p16
4655w16.C0 = CFrame.new(1.45912168e-006, 0.349802852, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4656w16.Part1 = p48
4657w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4658w17 = Instance.new("Weld", p17)
4659w17.Name = "Joint"
4660w17.Part0 = p17
4661w17.C0 = CFrame.new(-0.97944206, 0.0699603036, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4662w17.Part1 = p50
4663w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4664w18 = Instance.new("Weld", p18)
4665w18.Name = "Joint"
4666w18.Part0 = p18
4667w18.C0 = CFrame.new(-0.979444683, 0.0699603036, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4668w18.Part1 = p50
4669w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4670w19 = Instance.new("Weld", p19)
4671w19.Name = "Joint"
4672w19.Part0 = p19
4673w19.C0 = CFrame.new(0, -0.2098784, 0.0349924229, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4674w19.Part1 = p54
4675w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4676w20 = Instance.new("Weld", p20)
4677w20.Name = "Joint"
4678w20.Part0 = p20
4679w20.C0 = CFrame.new(-0.139921427, -0.13992101, 1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4680w20.Part1 = p21
4681w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4682w21 = Instance.new("Weld", p21)
4683w21.Name = "Joint"
4684w21.Part0 = p21
4685w21.C0 = CFrame.new(-1.25928402, 0.0699627995, -1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4686w21.Part1 = p37
4687w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4688w22 = Instance.new("Weld", p22)
4689w22.Name = "Joint"
4690w22.Part0 = p22
4691w22.C0 = CFrame.new(0, -0.209878504, 0.0349705629, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4692w22.Part1 = p8
4693w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4694w23 = Instance.new("Weld", p23)
4695w23.Name = "Joint"
4696w23.Part0 = p23
4697w23.C0 = CFrame.new(0, 0, 0.139921427, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4698w23.Part1 = p35
4699w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4700w24 = Instance.new("Weld", p24)
4701w24.Name = "Joint"
4702w24.Part0 = p24
4703w24.C0 = CFrame.new(8.33783815e-007, -0.209883824, 1.25928962, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4704w24.Part1 = p48
4705w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4706w25 = Instance.new("Weld", p25)
4707w25.Name = "Joint"
4708w25.Part0 = p25
4709w25.C0 = CFrame.new(0, -0.209878504, 0.0349897929, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4710w25.Part1 = p8
4711w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4712w26 = Instance.new("Weld", p26)
4713w26.Name = "Joint"
4714w26.Part0 = p26
4715w26.C0 = CFrame.new(0, -3.33513526e-006, 0.769568086, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4716w26.Part1 = p6
4717w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4718w27 = Instance.new("Weld", p27)
4719w27.Name = "Joint"
4720w27.Part0 = p27
4721w27.C0 = CFrame.new(-1.25928354, -0.0699575916, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4722w27.Part1 = p48
4723w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4724w28 = Instance.new("Weld", p28)
4725w28.Name = "Joint"
4726w28.Part0 = p28
4727w28.C0 = CFrame.new(0, -0.13992101, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
4728w28.Part1 = p35
4729w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4730w29 = Instance.new("Weld", p29)
4731w29.Name = "Joint"
4732w29.Part0 = p29
4733w29.C0 = CFrame.new(-1.25928354, 0.0699634254, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4734w29.Part1 = p37
4735w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4736w30 = Instance.new("Weld", p30)
4737w30.Name = "Joint"
4738w30.Part0 = p30
4739w30.C0 = CFrame.new(0, -0.139920816, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4740w30.Part1 = p20
4741w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4742w31 = Instance.new("Weld", p31)
4743w31.Name = "Joint"
4744w31.Part0 = p31
4745w31.C0 = CFrame.new(0, -3.02246644e-006, 0.419769108, 0, 0, -1, 0, -1, -0, -1, 0, -0)
4746w31.Part1 = p16
4747w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4748w32 = Instance.new("Weld", p32)
4749w32.Name = "Joint"
4750w32.Part0 = p32
4751w32.C0 = CFrame.new(-0.839526176, 0.349802852, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4752w32.Part1 = p48
4753w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4754w33 = Instance.new("Weld", p33)
4755w33.Name = "Joint"
4756w33.Part0 = p33
4757w33.C0 = CFrame.new(1.3548987e-006, -0.279842436, 0.0699624866, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4758w33.Part1 = p21
4759w33.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4760w34 = Instance.new("Weld", p34)
4761w34.Name = "Joint"
4762w34.Part0 = p34
4763w34.C0 = CFrame.new(0, -0.279842019, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
4764w34.Part1 = p27
4765w34.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4766w35 = Instance.new("Weld", p35)
4767w35.Name = "Joint"
4768w35.Part0 = p35
4769w35.C0 = CFrame.new(-0.139920607, -0.139922053, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4770w35.Part1 = p58
4771w35.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4772w36 = Instance.new("Weld", p36)
4773w36.Name = "Joint"
4774w36.Part0 = p36
4775w36.C0 = CFrame.new(0, -0.279843062, 0.0699611381, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4776w36.Part1 = p29
4777w36.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4778w37 = Instance.new("Weld", p37)
4779w37.Name = "Joint"
4780w37.Part0 = p37
4781w37.C0 = CFrame.new(0, 0.559682429, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4782w37.Part1 = p3
4783w37.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4784w38 = Instance.new("Weld", p38)
4785w38.Name = "Joint"
4786w38.Part0 = p38
4787w38.C0 = CFrame.new(0, 0, 0.13992101, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4788w38.Part1 = p4
4789w38.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4790w39 = Instance.new("Weld", p39)
4791w39.Name = "Joint"
4792w39.Part0 = p39
4793w39.C0 = CFrame.new(0, 0, 0.139921427, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4794w39.Part1 = p12
4795w39.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4796w40 = Instance.new("Weld", p40)
4797w40.Name = "Joint"
4798w40.Part0 = p40
4799w40.C0 = CFrame.new(0, -0.279843479, 0.0699611381, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4800w40.Part1 = p52
4801w40.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4802w41 = Instance.new("Weld", p41)
4803w41.Name = "Joint"
4804w41.Part0 = p41
4805w41.C0 = CFrame.new(0, -0.139921427, 0.0699607134, 0, 0, -1, 0, -1, -0, -1, 0, -0)
4806w41.Part1 = p5
4807w41.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4808w42 = Instance.new("Weld", p42)
4809w42.Name = "Joint"
4810w42.Part0 = p42
4811w42.C0 = CFrame.new(0, -2.7097974e-006, 0.139925033, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4812w42.Part1 = p8
4813w42.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4814w43 = Instance.new("Weld", p43)
4815w43.Name = "Joint"
4816w43.Part0 = p43
4817w43.C0 = CFrame.new(0, -0.139921218, 0.0699607134, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4818w43.Part1 = p5
4819w43.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4820w44 = Instance.new("Weld", p44)
4821w44.Name = "Joint"
4822w44.Part0 = p44
4823w44.C0 = CFrame.new(0, -0.139921844, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4824w44.Part1 = p15
4825w44.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4826w45 = Instance.new("Weld", p45)
4827w45.Name = "Joint"
4828w45.Part0 = p45
4829w45.C0 = CFrame.new(0, -2.7097974e-006, 0.139921531, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4830w45.Part1 = p11
4831w45.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4832w46 = Instance.new("Weld", p46)
4833w46.Name = "Joint"
4834w46.Part0 = p46
4835w46.C0 = CFrame.new(0, -3.33513526e-006, 0.769562066, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4836w46.Part1 = p6
4837w46.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4838w47 = Instance.new("Weld", p47)
4839w47.Name = "Joint"
4840w47.Part0 = p47
4841w47.C0 = CFrame.new(-0.139920652, -0.139923528, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4842w47.Part1 = p18
4843w47.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4844w48 = Instance.new("Weld", p48)
4845w48.Name = "Joint"
4846w48.Part0 = p48
4847w48.C0 = CFrame.new(0, 0.559684873, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4848w48.Part1 = p37
4849w48.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4850w49 = Instance.new("Weld", p49)
4851w49.Name = "Joint"
4852w49.Part0 = p49
4853w49.C0 = CFrame.new(0, -0.139921844, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4854w49.Part1 = p47
4855w49.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4856w50 = Instance.new("Weld", p50)
4857w50.Name = "Joint"
4858w50.Part0 = p50
4859w50.C0 = CFrame.new(0, 0.349801898, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4860w50.Part1 = p6
4861w50.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4862w51 = Instance.new("Weld", p51)
4863w51.Name = "Joint"
4864w51.Part0 = p51
4865w51.C0 = CFrame.new(-0.139921427, -0.139922053, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4866w51.Part1 = p52
4867w51.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4868w52 = Instance.new("Weld", p52)
4869w52.Name = "Joint"
4870w52.Part0 = p52
4871w52.C0 = CFrame.new(-1.11936295, 0.0699607134, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4872w52.Part1 = p3
4873w52.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4874w53 = Instance.new("Weld", p53)
4875w53.Name = "Joint"
4876w53.Part0 = p53
4877w53.C0 = CFrame.new(0, 3.9604729e-006, 0.279851943, 0, 0, -1, 0, -1, -0, -1, 0, -0)
4878w53.Part1 = p9
4879w53.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4880w54 = Instance.new("Weld", p54)
4881w54.Name = "Joint"
4882w54.Part0 = p54
4883w54.C0 = CFrame.new(0, 0.349802941, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4884w54.Part1 = p9
4885w54.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4886w55 = Instance.new("Weld", p55)
4887w55.Name = "Joint"
4888w55.Part0 = p55
4889w55.C0 = CFrame.new(0, -2.7097974e-006, 0.139916331, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4890w55.Part1 = p8
4891w55.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4892w56 = Instance.new("Weld", p56)
4893w56.Name = "Joint"
4894w56.Part0 = p56
4895w56.C0 = CFrame.new(0, 0, 0.139921322, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4896w56.Part1 = p20
4897w56.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4898w57 = Instance.new("Weld", p57)
4899w57.Name = "Joint"
4900w57.Part0 = p57
4901w57.C0 = CFrame.new(0, -0.139921427, -0.0699620694, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4902w57.Part1 = p47
4903w57.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4904w58 = Instance.new("Weld", p58)
4905w58.Name = "Joint"
4906w58.Part0 = p58
4907w58.C0 = CFrame.new(-1.11936343, 0.0699607134, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4908w58.Part1 = p3
4909w58.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4910w59 = Instance.new("Weld", p59)
4911w59.Name = "Joint"
4912w59.Part0 = p59
4913w59.C0 = CFrame.new(0, -2.50135167e-006, 0.279839605, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4914w59.Part1 = p32
4915w59.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4916w60 = Instance.new("Weld", p61)
4917w60.Name = "Joint"
4918w60.Part0 = p61
4919w60.C0 = CFrame.new(-1.25928962, -0.0699586272, -8.33783815e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4920w60.Part1 = p48
4921w60.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4922w61 = Instance.new("Weld", p62)
4923w61.Name = "Joint"
4924w61.Part0 = p62
4925w61.C0 = CFrame.new(0, -0.139921635, 0.0699612424, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4926w61.Part1 = p10
4927w61.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4928w62 = Instance.new("Weld", p63)
4929w62.Name = "Joint"
4930w62.Part0 = p63
4931w62.C0 = CFrame.new(0, 0, 0.139920712, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4932w62.Part1 = p7
4933w62.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4934w63 = Instance.new("Weld", p64)
4935w63.Name = "Joint"
4936w63.Part0 = p64
4937w63.C0 = CFrame.new(0, -2.60557431e-006, 0.139913708, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4938w63.Part1 = p54
4939w63.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4940w64 = Instance.new("Weld", p65)
4941w64.Name = "Joint"
4942w64.Part0 = p65
4943w64.C0 = CFrame.new(0, -2.50135167e-006, 0.279843956, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4944w64.Part1 = p13
4945w64.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4946w65 = Instance.new("Weld", p66)
4947w65.Name = "Joint"
4948w65.Part0 = p66
4949w65.C0 = CFrame.new(0, 1.04222977e-006, 0.139921427, 0, 0, -1, 0, -1, -0, -1, 0, -0)
4950w65.Part1 = p52
4951w65.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4952w66 = Instance.new("Weld", p67)
4953w66.Name = "Joint"
4954w66.Part0 = p67
4955w66.C0 = CFrame.new(0, -3.02246644e-006, 0.419757843, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4956w66.Part1 = p16
4957w66.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4958w67 = Instance.new("Weld", p68)
4959w67.Name = "Joint"
4960w67.Part0 = p68
4961w67.C0 = CFrame.new(0, -0.209878504, 0.0349741057, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4962w67.Part1 = p11
4963w67.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4964w68 = Instance.new("Weld", p69)
4965w68.Name = "Joint"
4966w68.Part0 = p69
4967w68.C0 = CFrame.new(0, -0.209878504, 0.0349861942, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4968w68.Part1 = p11
4969w68.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4970w69 = Instance.new("Weld", p70)
4971w69.Name = "Joint"
4972w69.Part0 = p70
4973w69.C0 = CFrame.new(0, -0.279843479, 0.0699616596, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4974w69.Part1 = p58
4975w69.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4976w70 = Instance.new("Weld", p71)
4977w70.Name = "Joint"
4978w70.Part0 = p71
4979w70.C0 = CFrame.new(0, -0.2098784, 0.0349679329, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4980w70.Part1 = p54
4981w70.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4982w71 = Instance.new("Weld", p72)
4983w71.Name = "Joint"
4984w71.Part0 = p72
4985w71.C0 = CFrame.new(0, -3.02246644e-006, 0.27983579, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4986w71.Part1 = p9
4987w71.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4988w72 = Instance.new("Weld", p73)
4989w72.Name = "Joint"
4990w72.Part0 = p73
4991w72.C0 = CFrame.new(0, -2.50135167e-006, 0.279839605, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4992w72.Part1 = p13
4993w72.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4994w73 = Instance.new("Weld", p74)
4995w73.Name = "Joint"
4996w73.Part0 = p74
4997w73.C0 = CFrame.new(0, -0.139921427, 0.0699612424, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4998w73.Part1 = p10
4999w73.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5000w74 = Instance.new("Weld", p75)
5001w74.Name = "Joint"
5002w74.Part0 = p75
5003w74.C0 = CFrame.new(0, -2.60557431e-006, 0.139928564, 0, 0, -1, 0, -1, 0, -1, 0, 0)
5004w74.Part1 = p54
5005w74.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5006w75 = Instance.new("Weld", p76)
5007w75.Name = "Joint"
5008w75.Part0 = p76
5009w75.C0 = CFrame.new(0, -2.50135167e-006, 0.27984485, 0, 0, -1, 0, -1, 0, -1, 0, 0)
5010w75.Part1 = p32
5011w75.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5012w76 = Instance.new("Weld", p77)
5013w76.Name = "Joint"
5014w76.Part0 = p77
5015w76.C0 = CFrame.new(0, 0, 0.139921635, 0, 0, 1, 0, 1, 0, -1, 0, 0)
5016w76.Part1 = p15
5017w76.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5018w77 = Instance.new("Weld", p78)
5019w77.Name = "Joint"
5020w77.Part0 = p78
5021w77.C0 = CFrame.new(0, -0.139921427, -0.0699594691, 0, 0, 1, 0, 1, 0, -1, 0, 0)
5022w77.Part1 = p15
5023w77.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5024w78 = Instance.new("Weld", p79)
5025w78.Name = "Joint"
5026w78.Part0 = p79
5027w78.C0 = CFrame.new(0, 0, 0.139921218, 0, 0, 1, 0, 1, 0, -1, 0, 0)
5028w78.Part1 = p51
5029w78.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5030w79 = Instance.new("Weld", p80)
5031w79.Name = "Joint"
5032w79.Part0 = p80
5033w79.C0 = CFrame.new(0, -0.13992101, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
5034w79.Part1 = p12
5035w79.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5036m6.Parent = torso
5037m6:MakeJoints()
5038----------------------------------------------------
5039local cor6 = Instance.new("Part", torso.Cloak)
5040cor6.Name = "Thingy"
5041cor6.Locked = true
5042cor6.BottomSurface = 0
5043cor6.CanCollide = false
5044cor6.Size = Vector3.new(1,1,1)
5045cor6.Transparency = 1
5046cor6.TopSurface = 0
5047corw6 = Instance.new("Weld", cor6)
5048corw6.Part0 = torso
5049corw6.Part1 = cor6
5050corw6.C0 = CFrame.new(0, 1, 0.5) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
5051corw6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
5052weld6 = Instance.new("Weld", torso.Cloak.NeckPart)
5053weld6.Part0 = cor6
5054weld6.Part1 = torso.Cloak.NeckPart
5055weld6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
5056--Amulet
5057m7 = Instance.new("Model")
5058m7.Name = "Amulet"
5059p1 = Instance.new("Part", m7)
5060p1.BrickColor = BrickColor.new("Lime green")
5061p1.Material = Enum.Material.Neon
5062p1.Name = "Center"
5063p1.CFrame = CFrame.new(-1.0658141e-014, 14.4125643, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
5064p1.CanCollide = false
5065p1.Locked = true
5066p1.FormFactor = Enum.FormFactor.Custom
5067p1.Shape = Enum.PartType.Cylinder
5068p1.Size = Vector3.new(0.5, 0.5, 0.5)
5069p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5070p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5071p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5072p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5073p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5074p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5075p2 = Instance.new("Part", m7)
5076p2.BrickColor = BrickColor.new("Really black")
5077p2.Material = Enum.Material.Metal
5078p2.Name = "Bottom"
5079p2.CFrame = CFrame.new(1.19209318e-007, 14.1625719, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
5080p2.CanCollide = false
5081p2.Locked = true
5082p2.FormFactor = Enum.FormFactor.Custom
5083p2.Size = Vector3.new(0.200000003, 0.649999976, 0.649999976)
5084p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5085p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5086p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5087p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5088p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5089p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5090b1 = Instance.new("SpecialMesh", p2)
5091b1.MeshType = Enum.MeshType.Cylinder
5092b1.Name = "Mesh"
5093p3 = Instance.new("Part", m7)
5094p3.BrickColor = BrickColor.new("Really black")
5095p3.Material = Enum.Material.Metal
5096p3.CFrame = CFrame.new(1.23580463e-007, 14.4625673, -0.280000001, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
5097p3.CanCollide = false
5098p3.Locked = true
5099p3.FormFactor = Enum.FormFactor.Custom
5100p3.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5101p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5102p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5103p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5104p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5105p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5106p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5107b2 = Instance.new("SpecialMesh", p3)
5108b2.MeshType = Enum.MeshType.Brick
5109b2.Name = "Mesh"
5110b2.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5111p4 = Instance.new("Part", m7)
5112p4.BrickColor = BrickColor.new("Really black")
5113p4.Material = Enum.Material.Metal
5114p4.CFrame = CFrame.new(1.19209318e-007, 14.4625673, 0.280000001, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
5115p4.CanCollide = false
5116p4.Locked = true
5117p4.FormFactor = Enum.FormFactor.Custom
5118p4.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5119p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5120p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5121p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5122p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5123p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5124p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5125b3 = Instance.new("SpecialMesh", p4)
5126b3.MeshType = Enum.MeshType.Brick
5127b3.Name = "Mesh"
5128b3.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5129p5 = Instance.new("Part", m7)
5130p5.BrickColor = BrickColor.new("Really black")
5131p5.Material = Enum.Material.Metal
5132p5.CFrame = CFrame.new(0.14000012, 14.4625673, -0.242487118, -3.78551732e-008, -0.866025388, -0.5, 1, -4.37113883e-008, 0, -2.18556941e-008, -0.5, 0.866025388)
5133p5.CanCollide = false
5134p5.Locked = true
5135p5.FormFactor = Enum.FormFactor.Custom
5136p5.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5137p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5138p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5139p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5140p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5141p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5142p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5143b4 = Instance.new("SpecialMesh", p5)
5144b4.MeshType = Enum.MeshType.Brick
5145b4.Name = "Mesh"
5146b4.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5147p6 = Instance.new("Part", m7)
5148p6.BrickColor = BrickColor.new("Really black")
5149p6.Material = Enum.Material.Metal
5150p6.CFrame = CFrame.new(-0.139999881, 14.4625673, 0.242487103, -3.78551732e-008, -0.866025388, -0.5, 1, -4.37113883e-008, 0, -2.18556941e-008, -0.5, 0.866025388)
5151p6.CanCollide = false
5152p6.Locked = true
5153p6.FormFactor = Enum.FormFactor.Custom
5154p6.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5155p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5156p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5157p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5158p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5159p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5160p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5161b5 = Instance.new("SpecialMesh", p6)
5162b5.MeshType = Enum.MeshType.Brick
5163b5.Name = "Mesh"
5164b5.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5165p7 = Instance.new("Part", m7)
5166p7.BrickColor = BrickColor.new("Really black")
5167p7.Material = Enum.Material.Metal
5168p7.CFrame = CFrame.new(-0.242486984, 14.4625673, 0.139999986, -2.18556924e-008, -0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551732e-008, -0.866025388, 0.5)
5169p7.CanCollide = false
5170p7.Locked = true
5171p7.FormFactor = Enum.FormFactor.Custom
5172p7.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5173p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5174p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5175p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5176p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5177p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5178p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5179b6 = Instance.new("SpecialMesh", p7)
5180b6.MeshType = Enum.MeshType.Brick
5181b6.Name = "Mesh"
5182b6.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5183p8 = Instance.new("Part", m7)
5184p8.BrickColor = BrickColor.new("Really black")
5185p8.Material = Enum.Material.Metal
5186p8.CFrame = CFrame.new(0.242487192, 14.4625673, -0.139999971, -2.18556924e-008, -0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551732e-008, -0.866025388, 0.5)
5187p8.CanCollide = false
5188p8.Locked = true
5189p8.FormFactor = Enum.FormFactor.Custom
5190p8.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5191p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5192p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5193p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5194p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5195p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5196p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5197b7 = Instance.new("SpecialMesh", p8)
5198b7.MeshType = Enum.MeshType.Brick
5199b7.Name = "Mesh"
5200b7.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5201p9 = Instance.new("Part", m7)
5202p9.BrickColor = BrickColor.new("Really black")
5203p9.Material = Enum.Material.Metal
5204p9.CFrame = CFrame.new(0.280000091, 14.4625673, -1.64313008e-014, 0, 0, -1, 1, -4.37113847e-008, 0, -4.37113847e-008, -1, 0)
5205p9.CanCollide = false
5206p9.Locked = true
5207p9.FormFactor = Enum.FormFactor.Custom
5208p9.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5209p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5210p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5211p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5212p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5213p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5214p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5215b8 = Instance.new("SpecialMesh", p9)
5216b8.MeshType = Enum.MeshType.Brick
5217b8.Name = "Mesh"
5218b8.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5219p10 = Instance.new("Part", m7)
5220p10.BrickColor = BrickColor.new("Really black")
5221p10.Material = Enum.Material.Metal
5222p10.CFrame = CFrame.new(-0.279999852, 14.4625673, -1.49011772e-008, 0, 0, -1, 1, -4.37113847e-008, 0, -4.37113847e-008, -1, 0)
5223p10.CanCollide = false
5224p10.Locked = true
5225p10.FormFactor = Enum.FormFactor.Custom
5226p10.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5227p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5228p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5229p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5230p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5231p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5232p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5233b9 = Instance.new("SpecialMesh", p10)
5234b9.MeshType = Enum.MeshType.Brick
5235b9.Name = "Mesh"
5236b9.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5237p11 = Instance.new("Part", m7)
5238p11.BrickColor = BrickColor.new("Really black")
5239p11.Material = Enum.Material.Metal
5240p11.CFrame = CFrame.new(-0.242486984, 14.4625673, -0.139999986, 2.18556906e-008, 0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551697e-008, -0.866025388, -0.5)
5241p11.CanCollide = false
5242p11.Locked = true
5243p11.FormFactor = Enum.FormFactor.Custom
5244p11.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5245p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5246p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5247p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5248p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5249p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5250p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5251b10 = Instance.new("SpecialMesh", p11)
5252b10.MeshType = Enum.MeshType.Brick
5253b10.Name = "Mesh"
5254b10.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5255p12 = Instance.new("Part", m7)
5256p12.BrickColor = BrickColor.new("Really black")
5257p12.Material = Enum.Material.Metal
5258p12.CFrame = CFrame.new(0.242487192, 14.4625673, 0.139999971, 2.18556906e-008, 0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551697e-008, -0.866025388, -0.5)
5259p12.CanCollide = false
5260p12.Locked = true
5261p12.FormFactor = Enum.FormFactor.Custom
5262p12.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5263p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5264p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5265p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5266p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5267p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5268p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5269b11 = Instance.new("SpecialMesh", p12)
5270b11.MeshType = Enum.MeshType.Brick
5271b11.Name = "Mesh"
5272b11.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5273p13 = Instance.new("Part", m7)
5274p13.BrickColor = BrickColor.new("Really black")
5275p13.Material = Enum.Material.Metal
5276p13.CFrame = CFrame.new(-0.139999866, 14.4625673, -0.242487073, 3.78551732e-008, 0.866025388, -0.5, 1, -4.37113812e-008, 1.77635684e-015, -2.18556924e-008, -0.5, -0.866025388)
5277p13.CanCollide = false
5278p13.Locked = true
5279p13.FormFactor = Enum.FormFactor.Custom
5280p13.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5281p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5282p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5283p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5284p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5285p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5286p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5287b12 = Instance.new("SpecialMesh", p13)
5288b12.MeshType = Enum.MeshType.Brick
5289b12.Name = "Mesh"
5290b12.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5291p14 = Instance.new("Part", m7)
5292p14.BrickColor = BrickColor.new("Really black")
5293p14.Material = Enum.Material.Metal
5294p14.CFrame = CFrame.new(0.14000012, 14.4625673, 0.242487073, 3.78551732e-008, 0.866025388, -0.5, 1, -4.37113812e-008, 1.77635684e-015, -2.18556924e-008, -0.5, -0.866025388)
5295p14.CanCollide = false
5296p14.Locked = true
5297p14.FormFactor = Enum.FormFactor.Custom
5298p14.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5299p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5300p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5301p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5302p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5303p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5304p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5305b13 = Instance.new("SpecialMesh", p14)
5306b13.MeshType = Enum.MeshType.Brick
5307b13.Name = "Mesh"
5308b13.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5309p15 = Instance.new("Part", m7)
5310p15.BrickColor = BrickColor.new("Really black")
5311p15.Material = Enum.Material.Metal
5312p15.Name = "Top"
5313p15.CFrame = CFrame.new(0, 14.7125645, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
5314p15.CanCollide = false
5315p15.Locked = true
5316p15.FormFactor = Enum.FormFactor.Custom
5317p15.Size = Vector3.new(0.200000003, 0.649999976, 0.649999976)
5318p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5319p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5320p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5321p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5322p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5323p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5324b14 = Instance.new("SpecialMesh", p15)
5325b14.MeshType = Enum.MeshType.Cylinder
5326b14.Name = "Mesh"
5327w1 = Instance.new("Weld", p1)
5328w1.Name = "Joint"
5329w1.Part0 = p1
5330w1.C0 = CFrame.new(0.300000191, -1.31134357e-008, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5331w1.Part1 = p15
5332w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5333w2 = Instance.new("Weld", p2)
5334w2.Name = "Joint"
5335w2.Part0 = p2
5336w2.C0 = CFrame.new(0.249992371, 1.08281824e-007, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5337w2.Part1 = p1
5338w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5339w3 = Instance.new("Weld", p3)
5340w3.Name = "Joint"
5341w3.Part0 = p3
5342w3.C0 = CFrame.new(-0.0500030518, 1.25766178e-007, 0.280000001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5343w3.Part1 = p1
5344w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5345w4 = Instance.new("Weld", p4)
5346w4.Name = "Joint"
5347w4.Part0 = p4
5348w4.C0 = CFrame.new(-0.0500030518, 1.21395033e-007, -0.280000001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5349w4.Part1 = p1
5350w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5351w5 = Instance.new("Weld", p5)
5352w5.Name = "Joint"
5353w5.Part0 = p5
5354w5.C0 = CFrame.new(-0.0500030518, 1.00163732e-007, 0.280000061, 1, -5.85621507e-009, -2.18556941e-008, -5.85621507e-009, 0.866025388, -0.5, 2.18556941e-008, 0.5, 0.866025388)
5355w5.Part1 = p1
5356w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5357w6 = Instance.new("Weld", p6)
5358w6.Name = "Joint"
5359w6.Part0 = p6
5360w6.C0 = CFrame.new(-0.0500030518, 1.00163732e-007, -0.279999942, 1, -5.85621507e-009, -2.18556941e-008, -5.85621507e-009, 0.866025388, -0.5, 2.18556941e-008, 0.5, 0.866025388)
5361w6.Part1 = p1
5362w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5363w7 = Instance.new("Weld", p7)
5364w7.Name = "Joint"
5365w7.Part0 = p7
5366w7.C0 = CFrame.new(-0.0500030518, 5.54602479e-008, -0.279999882, 1, -2.18556959e-008, -3.78551732e-008, -2.18556906e-008, 0.5, -0.866025388, 3.78551732e-008, 0.866025388, 0.5)
5367w7.Part1 = p1
5368w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5369w8 = Instance.new("Weld", p8)
5370w8.Name = "Joint"
5371w8.Part0 = p8
5372w8.C0 = CFrame.new(-0.0500030518, 7.03614091e-008, 0.280000061, 1, -2.18556959e-008, -3.78551732e-008, -2.18556906e-008, 0.5, -0.866025388, 3.78551732e-008, 0.866025388, 0.5)
5373w8.Part1 = p1
5374w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5375w9 = Instance.new("Weld", p9)
5376w9.Name = "Joint"
5377w9.Part0 = p9
5378w9.C0 = CFrame.new(-0.0500030518, 2.1856863e-009, 0.280000091, 1, -4.37113883e-008, -4.37113847e-008, -4.37113847e-008, 1.91068525e-015, -1, 4.37113883e-008, 1, 0)
5379w9.Part1 = p1
5380w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5381w10 = Instance.new("Weld", p10)
5382w10.Name = "Joint"
5383w10.Part0 = p10
5384w10.C0 = CFrame.new(-0.0500030518, -1.27154749e-008, -0.279999852, 1, -4.37113883e-008, -4.37113847e-008, -4.37113847e-008, 1.91068525e-015, -1, 4.37113883e-008, 1, 0)
5385w10.Part1 = p1
5386w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5387w11 = Instance.new("Weld", p11)
5388w11.Name = "Joint"
5389w11.Part0 = p11
5390w11.C0 = CFrame.new(-0.0500030518, -5.6298461e-008, -0.279999882, 1, -6.55670789e-008, -3.78551697e-008, -6.55670789e-008, -0.5, -0.866025388, 3.78551732e-008, 0.866025388, -0.5)
5391w11.Part1 = p1
5392w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5393w12 = Instance.new("Weld", p12)
5394w12.Name = "Joint"
5395w12.Part0 = p12
5396w12.C0 = CFrame.new(-0.0500030518, -6.37490416e-008, 0.280000061, 1, -6.55670789e-008, -3.78551697e-008, -6.55670789e-008, -0.5, -0.866025388, 3.78551732e-008, 0.866025388, -0.5)
5397w12.Part1 = p1
5398w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5399w13 = Instance.new("Weld", p13)
5400w13.Name = "Joint"
5401w13.Part0 = p13
5402w13.C0 = CFrame.new(-0.0500030518, -1.01001945e-007, -0.279999912, 1, -8.15665615e-008, -2.18556924e-008, -8.15665544e-008, -0.866025388, -0.5, 2.18556959e-008, 0.5, -0.866025388)
5403w13.Part1 = p1
5404w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5405w14 = Instance.new("Weld", p14)
5406w14.Name = "Joint"
5407w14.Part0 = p14
5408w14.C0 = CFrame.new(-0.0500030518, -1.08452525e-007, 0.280000031, 1, -8.15665615e-008, -2.18556924e-008, -8.15665544e-008, -0.866025388, -0.5, 2.18556959e-008, 0.5, -0.866025388)
5409w14.Part1 = p1
5410w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5411m7.Parent = torso
5412m7:MakeJoints()
5413----------------------------------------------------
5414local cor7 = Instance.new("Part", torso.Amulet)
5415cor7.Name = "Thingy"
5416cor7.Locked = true
5417cor7.BottomSurface = 0
5418cor7.CanCollide = false
5419cor7.Size = Vector3.new(1, 1, 1)
5420cor7.Transparency = 1
5421cor7.TopSurface = 0
5422corw7 = Instance.new("Weld", cor7)
5423corw7.Part0 = torso.Torso.Connection
5424corw7.Part1 = cor7
5425corw7.C0 = CFrame.new(0, 0.26, 0.1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
5426corw7.C1 = CFrame.new(0, -0.2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(140))
5427weld7 = Instance.new("Weld", torso.Amulet)
5428weld7.Part0 = cor7
5429weld7.Part1 = torso.Amulet.Top
5430weld7.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
5431--Zyrodoxa
5432m8 = Instance.new("Model")
5433m8.Name = "Zyrodoxa"
5434p1 = Instance.new("Part", m8)
5435p1.BrickColor = BrickColor.new("Really black")
5436p1.Material = Enum.Material.Metal
5437p1.Reflectance = 0.40000000596046
5438p1.Name = "Block"
5439p1.CFrame = CFrame.new(2.70000019e-005, -11.6870832, 1.45529819, 1, -1.44446419e-008, -1.27813706e-008, -1.84925408e-008, -0.906311333, -0.422620147, -5.47969492e-009, 0.422620773, -0.906312048)
5440p1.CanCollide = false
5441p1.Locked = true
5442p1.FormFactor = Enum.FormFactor.Custom
5443p1.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5444p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5445p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5446p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5447p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5448p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5449p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5450b1 = Instance.new("BlockMesh", p1)
5451b1.Name = "Mesh"
5452b1.Scale = Vector3.new(0.267712682, 0.468497276, 1)
5453p2 = Instance.new("Part", m8)
5454p2.BrickColor = BrickColor.new("Black")
5455p2.Material = Enum.Material.Metal
5456p2.Reflectance = 0.40000000596046
5457p2.Name = "Block"
5458p2.CFrame = CFrame.new(2.7e-005, -11.9090996, 0.428020298, 1, -1.85014493e-008, -5.47575318e-009, -1.85010585e-008, -1.00000393, -1.49011612e-007, -5.47616175e-009, 4.91738319e-007, -1.00000477)
5459p2.CanCollide = false
5460p2.Locked = true
5461p2.FormFactor = Enum.FormFactor.Custom
5462p2.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5463p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5464p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5465p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5466p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5467p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5468p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5469b2 = Instance.new("BlockMesh", p2)
5470b2.Name = "Mesh"
5471b2.Scale = Vector3.new(0.267712682, 0.870066345, 1)
5472p3 = Instance.new("Part", m8)
5473p3.BrickColor = BrickColor.new("Black")
5474p3.Material = Enum.Material.Metal
5475p3.Reflectance = 0.40000000596046
5476p3.Name = "Block"
5477p3.CFrame = CFrame.new(2.7e-005, -11.9091024, 0.959298849, 1, -1.85014493e-008, -5.47575318e-009, -1.85010585e-008, -1.00000393, -1.49011612e-007, -5.47616175e-009, 4.91738319e-007, -1.00000477)
5478p3.CanCollide = false
5479p3.Locked = true
5480p3.FormFactor = Enum.FormFactor.Custom
5481p3.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5482p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5483p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5484p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5485p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5486p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5487p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5488b3 = Instance.new("BlockMesh", p3)
5489b3.Name = "Mesh"
5490b3.Scale = Vector3.new(0.267712682, 0.870066345, 1)
5491p4 = Instance.new("Part", m8)
5492p4.BrickColor = BrickColor.new("Lime green")
5493p4.Material = Enum.Material.Metal
5494p4.Name = "Block"
5495p4.CFrame = CFrame.new(2.69999982e-005, -11.8500671, -1.24697566, 1, -4.30586944e-008, -5.26493444e-008, -5.9326311e-008, -0.173648626, -0.984811544, 3.32618768e-008, 0.984812438, -0.173648432)
5496p4.CanCollide = false
5497p4.Locked = true
5498p4.FormFactor = Enum.FormFactor.Custom
5499p4.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5500p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5501p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5502p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5503p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5504p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5505p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5506b4 = Instance.new("BlockMesh", p4)
5507b4.Name = "Mesh"
5508b4.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
5509p5 = Instance.new("Part", m8)
5510p5.BrickColor = BrickColor.new("Lime green")
5511p5.Material = Enum.Material.Neon
5512p5.Reflectance = 0.40000000596046
5513p5.Name = "Block"
5514p5.CFrame = CFrame.new(2.69999982e-005, -11.9034386, -0.304960132, 1, -1.92584508e-008, 1.18294885e-009, -1.85012432e-008, -0.939696193, 0.342021227, -5.47556045e-009, -0.342021167, -0.939697087)
5515p5.CanCollide = false
5516p5.Locked = true
5517p5.FormFactor = Enum.FormFactor.Custom
5518p5.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5519p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5520p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5521p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5522p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5523p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5524p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5525b5 = Instance.new("BlockMesh", p5)
5526b5.Name = "Mesh"
5527b5.Scale = Vector3.new(0.334640861, 0.200784534, 0.669281721)
5528p6 = Instance.new("Part", m8)
5529p6.BrickColor = BrickColor.new("Parsley green")
5530p6.Material = Enum.Material.Metal
5531p6.Name = "Block"
5532p6.CFrame = CFrame.new(2.69999982e-005, -11.8500729, -0.678800821, 1, -4.08902388e-008, -5.95267018e-008, -5.9526478e-008, 1.1920929e-007, -1.0000037, 4.08900789e-008, 1.00000453, 5.36441803e-007)
5533p6.CanCollide = false
5534p6.Locked = true
5535p6.FormFactor = Enum.FormFactor.Custom
5536p6.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5537p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5538p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5539p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5540p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5541p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5542p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5543b6 = Instance.new("BlockMesh", p6)
5544b6.Name = "Mesh"
5545b6.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
5546p7 = Instance.new("Part", m8)
5547p7.BrickColor = BrickColor.new("Lime green")
5548p7.Material = Enum.Material.Neon
5549p7.Reflectance = 0.40000000596046
5550p7.Name = "Block"
5551p7.CFrame = CFrame.new(2.69999982e-005, -11.957509, 0.917527318, 1, -2.28536976e-008, 8.68393135e-010, -2.22993837e-008, -0.965929389, 0.258820087, -5.07656006e-009, -0.258819878, -0.965930223)
5552p7.CanCollide = false
5553p7.Locked = true
5554p7.FormFactor = Enum.FormFactor.Custom
5555p7.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5556p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5557p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5558p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5559p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5560p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5561p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5562b7 = Instance.new("BlockMesh", p7)
5563b7.Name = "Mesh"
5564b7.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
5565p8 = Instance.new("Part", m8)
5566p8.BrickColor = BrickColor.new("Lime green")
5567p8.Material = Enum.Material.Neon
5568p8.Reflectance = 0.40000000596046
5569p8.Name = "Block"
5570p8.CFrame = CFrame.new(2.7e-005, -11.8956118, 0.105731606, 1, -1.92584473e-008, 1.1829453e-009, -1.85012521e-008, -0.939696133, 0.342021048, -5.47555823e-009, -0.342020899, -0.939696968)
5571p8.CanCollide = false
5572p8.Locked = true
5573p8.FormFactor = Enum.FormFactor.Custom
5574p8.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5575p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5576p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5577p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5578p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5579p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5580p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5581b8 = Instance.new("BlockMesh", p8)
5582b8.Name = "Mesh"
5583b8.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
5584p9 = Instance.new("Part", m8)
5585p9.BrickColor = BrickColor.new("Really black")
5586p9.Material = Enum.Material.Metal
5587p9.Reflectance = 0.40000000596046
5588p9.Name = "Block"
5589p9.CFrame = CFrame.new(2.69999982e-005, -11.7615223, 0.959302187, 1, -1.85016091e-008, -5.47516965e-009, -1.85012485e-008, -1.00000358, -1.1920929e-007, -5.47556001e-009, 5.36441803e-007, -1.00000429)
5590p9.CanCollide = false
5591p9.Locked = true
5592p9.FormFactor = Enum.FormFactor.Custom
5593p9.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5594p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5595p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5596p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5597p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5598p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5599p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5600b9 = Instance.new("BlockMesh", p9)
5601b9.Name = "Mesh"
5602b9.Scale = Vector3.new(0.267712682, 0.468497276, 1)
5603p10 = Instance.new("Part", m8)
5604p10.BrickColor = BrickColor.new("Really black")
5605p10.Material = Enum.Material.Metal
5606p10.Reflectance = 0.40000000596046
5607p10.Name = "Block"
5608p10.CFrame = CFrame.new(2.69999982e-005, -11.5473213, 1.65489614, 1, -9.20203203e-009, -1.69509313e-008, -1.84925799e-008, -0.707108974, -0.70710963, -5.47968293e-009, 0.707110405, -0.707109272)
5609p10.CanCollide = false
5610p10.Locked = true
5611p10.FormFactor = Enum.FormFactor.Custom
5612p10.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5613p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5614p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5615p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5616p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5617p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5618p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5619b10 = Instance.new("BlockMesh", p10)
5620b10.Name = "Mesh"
5621b10.Scale = Vector3.new(0.267712682, 0.468497276, 1)
5622p11 = Instance.new("Part", m8)
5623p11.BrickColor = BrickColor.new("Black")
5624p11.Material = Enum.Material.Metal
5625p11.Name = "Circle"
5626p11.CFrame = CFrame.new(2.7e-005, -11.6729841, -0.582877517, 1, -3.82200724e-008, -1.58314464e-008, -1.58310698e-008, 1.78813934e-007, -1.00000358, 3.82198735e-008, 1.00000429, 4.17232513e-007)
5627p11.CanCollide = false
5628p11.Locked = true
5629p11.FormFactor = Enum.FormFactor.Custom
5630p11.Size = Vector3.new(0.236122593, 0.220499977, 0.265637904)
5631p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5632p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5633p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5634p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5635p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5636p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5637b11 = Instance.new("CylinderMesh", p11)
5638b11.Name = "Mesh"
5639b11.Scale = Vector3.new(1, 0.401569068, 1)
5640p12 = Instance.new("Part", m8)
5641p12.BrickColor = BrickColor.new("Lime green")
5642p12.Material = Enum.Material.Neon
5643p12.Reflectance = 0.40000000596046
5644p12.Name = "Block"
5645p12.CFrame = CFrame.new(2.7e-005, -11.8956079, 0.673061967, 1, -1.56491176e-008, -8.14766423e-008, -1.31608857e-008, 0.939695954, -0.342021048, 8.1915303e-008, 0.342021108, 0.939696789)
5646p12.CanCollide = false
5647p12.Locked = true
5648p12.FormFactor = Enum.FormFactor.Custom
5649p12.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5650p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5651p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5652p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5653p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5654p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5655p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5656b12 = Instance.new("BlockMesh", p12)
5657b12.Name = "Mesh"
5658b12.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
5659p13 = Instance.new("Part", m8)
5660p13.BrickColor = BrickColor.new("Lime green")
5661p13.Material = Enum.Material.Metal
5662p13.Name = "Block"
5663p13.CFrame = CFrame.new(2.7e-005, -11.85007, -1.195328, 1, -4.3058666e-008, -5.26493267e-008, -5.93263003e-008, -0.173648536, -0.984811068, 3.32618555e-008, 0.984811902, -0.173648447)
5664p13.CanCollide = false
5665p13.Locked = true
5666p13.FormFactor = Enum.FormFactor.Custom
5667p13.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5668p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5669p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5670p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5671p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5672p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5673p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5674b13 = Instance.new("BlockMesh", p13)
5675b13.Name = "Mesh"
5676b13.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
5677p14 = Instance.new("Part", m8)
5678p14.BrickColor = BrickColor.new("Black")
5679p14.Material = Enum.Material.Metal
5680p14.Reflectance = 0.40000000596046
5681p14.Name = "Block"
5682p14.CFrame = CFrame.new(2.7e-005, -11.6456089, 1.7017076, 1, -9.79658932e-009, -1.66229128e-008, -1.85012112e-008, -0.731357634, -0.681998909, -5.47637935e-009, 0.681999564, -0.731357992)
5683p14.CanCollide = false
5684p14.Locked = true
5685p14.FormFactor = Enum.FormFactor.Custom
5686p14.Size = Vector3.new(0.220499977, 0.220499977, 0.332047403)
5687p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5688p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5689p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5690p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5691p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5692p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5693b14 = Instance.new("BlockMesh", p14)
5694b14.Name = "Mesh"
5695b14.Scale = Vector3.new(0.267712682, 0.535425484, 1)
5696p15 = Instance.new("Part", m8)
5697p15.BrickColor = BrickColor.new("Really black")
5698p15.Material = Enum.Material.Metal
5699p15.Reflectance = 0.40000000596046
5700p15.Name = "Block"
5701p15.CFrame = CFrame.new(2.7e-005, -11.761528, 0.162387252, 1, -1.85015949e-008, -5.47519008e-009, -1.85012503e-008, -1.00000322, -4.47054163e-008, -5.47555512e-009, 3.27827877e-007, -1.00000393)
5702p15.CanCollide = false
5703p15.Locked = true
5704p15.FormFactor = Enum.FormFactor.Custom
5705p15.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5706p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5707p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5708p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5709p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5710p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5711p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5712b15 = Instance.new("BlockMesh", p15)
5713b15.Name = "Mesh"
5714b15.Scale = Vector3.new(0.267712682, 0.468497276, 1)
5715p16 = Instance.new("Part", m8)
5716p16.BrickColor = BrickColor.new("Really black")
5717p16.Material = Enum.Material.Metal
5718p16.Name = "Handle"
5719p16.CFrame = CFrame.new(2.7e-005, -11.8500671, -1.1215378, 1, -4.08902174e-008, -5.95266769e-008, -5.95264673e-008, 4.47054163e-008, -1.00000322, 4.08900469e-008, 1.00000393, 3.27827877e-007)
5720p16.CanCollide = false
5721p16.Locked = true
5722p16.FormFactor = Enum.FormFactor.Custom
5723p16.Size = Vector3.new(0.220499977, 0.97400558, 0.220499977)
5724p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5725p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5726p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5727p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5728p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5729p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5730b16 = Instance.new("BlockMesh", p16)
5731b16.Name = "Mesh"
5732b16.Scale = Vector3.new(0.602353573, 1, 0.602353573)
5733p17 = Instance.new("Part", m8)
5734p17.BrickColor = BrickColor.new("Lime green")
5735p17.Material = Enum.Material.Neon
5736p17.Reflectance = 0.40000000596046
5737p17.Name = "Block"
5738p17.CFrame = CFrame.new(2.7e-005, -11.9214983, 1.1695174, 1, -3.32851862e-008, -1.92677874e-009, -3.32848948e-008, -1.00000322, 5.51342964e-007, -1.92714822e-009, -2.68220901e-007, -1.00000393)
5739p17.CanCollide = false
5740p17.Locked = true
5741p17.FormFactor = Enum.FormFactor.Custom
5742p17.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5743p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5744p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5745p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5746p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5747p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5748p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5749b17 = Instance.new("BlockMesh", p17)
5750b17.Name = "Mesh"
5751b17.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
5752p18 = Instance.new("Part", m8)
5753p18.BrickColor = BrickColor.new("Really black")
5754p18.Material = Enum.Material.Metal
5755p18.Name = "Block"
5756p18.CFrame = CFrame.new(2.70000019e-005, -11.9708652, -1.76740301, 1, -9.71849161e-008, 2.00753263e-007, -1.30568921e-007, -0.984810889, 0.173648641, 1.80827797e-007, -0.173648477, -0.984811544)
5757p18.CanCollide = false
5758p18.Locked = true
5759p18.FormFactor = Enum.FormFactor.Custom
5760p18.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5761p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5762p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5763p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5764p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5765p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5766p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5767b18 = Instance.new("BlockMesh", p18)
5768b18.Name = "Mesh"
5769b18.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
5770p19 = Instance.new("Part", m8)
5771p19.BrickColor = BrickColor.new("Black")
5772p19.Material = Enum.Material.Metal
5773p19.Reflectance = 0.40000000596046
5774p19.Name = "Block"
5775p19.CFrame = CFrame.new(2.7e-005, -11.9090967, -0.10325551, 1, -1.85013889e-008, -5.47580603e-009, -1.85010975e-008, -1.0000031, -5.21540642e-008, -5.47609691e-009, 3.20374966e-007, -1.0000037)
5776p19.CanCollide = false
5777p19.Locked = true
5778p19.FormFactor = Enum.FormFactor.Custom
5779p19.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5780p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5781p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5782p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5783p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5784p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5785p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5786b19 = Instance.new("BlockMesh", p19)
5787b19.Name = "Mesh"
5788b19.Scale = Vector3.new(0.267712682, 0.870066345, 1)
5789p20 = Instance.new("Part", m8)
5790p20.BrickColor = BrickColor.new("Lime green")
5791p20.Material = Enum.Material.Metal
5792p20.Name = "Block"
5793p20.CFrame = CFrame.new(2.69999982e-005, -11.8500719, -0.937063575, 1, -4.21245474e-008, -5.61353133e-008, -5.9592935e-008, -0.0871559381, -0.996197701, 3.70716151e-008, 0.996198356, -0.0871557295)
5794p20.CanCollide = false
5795p20.Locked = true
5796p20.FormFactor = Enum.FormFactor.Custom
5797p20.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5798p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5799p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5800p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5801p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5802p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5803p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5804b20 = Instance.new("BlockMesh", p20)
5805b20.Name = "Mesh"
5806b20.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
5807p21 = Instance.new("Part", m8)
5808p21.BrickColor = BrickColor.new("Really black")
5809p21.Material = Enum.Material.Metal
5810p21.Name = "Block"
5811p21.CFrame = CFrame.new(2.69999982e-005, -11.7520199, -1.68255222, 1, 1.93163316e-008, -6.95866973e-008, -5.9526478e-008, 0.766046822, -0.642789543, 4.08900966e-008, 0.642789721, 0.766047418)
5812p21.CanCollide = false
5813p21.Locked = true
5814p21.FormFactor = Enum.FormFactor.Custom
5815p21.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5816p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5817p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5818p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5819p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5820p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5821p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5822b21 = Instance.new("BlockMesh", p21)
5823b21.Name = "Mesh"
5824b21.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
5825p22 = Instance.new("Part", m8)
5826p22.BrickColor = BrickColor.new("Really black")
5827p22.Material = Enum.Material.Metal
5828p22.Reflectance = 0.40000000596046
5829p22.Name = "Block"
5830p22.CFrame = CFrame.new(2.69999964e-005, -11.7615223, -0.368889451, 1, -1.85015665e-008, -5.4752185e-009, -1.85012787e-008, -1.0000031, -5.96046448e-008, -5.47550449e-009, 3.87430191e-007, -1.0000037)
5831p22.CanCollide = false
5832p22.Locked = true
5833p22.FormFactor = Enum.FormFactor.Custom
5834p22.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5835p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5836p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5837p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5838p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5839p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5840p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5841b22 = Instance.new("BlockMesh", p22)
5842b22.Name = "Mesh"
5843b22.Scale = Vector3.new(0.267712682, 0.468497276, 1)
5844p23 = Instance.new("Part", m8)
5845p23.BrickColor = BrickColor.new("Lime green")
5846p23.Material = Enum.Material.Marble
5847p23.Name = "Block"
5848p23.CFrame = CFrame.new(2.69999964e-005, -11.85007, -0.641908407, 1, -4.0890189e-008, -5.95266485e-008, -5.95264922e-008, 5.96046448e-008, -1.0000031, 4.08900895e-008, 1.0000037, 3.87430191e-007)
5849p23.CanCollide = false
5850p23.Locked = true
5851p23.FormFactor = Enum.FormFactor.Custom
5852p23.Size = Vector3.new(0.220499977, 0.220499977, 0.236122593)
5853p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5854p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5855p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5856p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5857p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5858p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5859b23 = Instance.new("BlockMesh", p23)
5860b23.Name = "Mesh"
5861b23.Scale = Vector3.new(0.803138018, 0.133856371, 1)
5862p24 = Instance.new("Part", m8)
5863p24.BrickColor = BrickColor.new("Really black")
5864p24.Material = Enum.Material.Metal
5865p24.Name = "Block"
5866p24.CFrame = CFrame.new(2.69999964e-005, -11.948123, -1.6825552, 1, -7.18838464e-008, -6.93700386e-009, -5.95250889e-008, -0.766046762, -0.642789662, 4.08918908e-008, 0.642790258, -0.766046941)
5867p24.CanCollide = false
5868p24.Locked = true
5869p24.FormFactor = Enum.FormFactor.Custom
5870p24.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5871p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5872p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5873p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5874p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5875p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5876p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5877b24 = Instance.new("BlockMesh", p24)
5878b24.Name = "Mesh"
5879b24.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
5880p25 = Instance.new("Part", m8)
5881p25.BrickColor = BrickColor.new("Lime green")
5882p25.Material = Enum.Material.Marble
5883p25.Name = "Block"
5884p25.CFrame = CFrame.new(2.69999964e-005, -11.8500681, -1.59377992, 1, -4.08901926e-008, -5.95266414e-008, -5.95264957e-008, 5.96046448e-008, -1.0000031, 4.0890086e-008, 1.00000358, 3.57627869e-007)
5885p25.CanCollide = false
5886p25.Locked = true
5887p25.FormFactor = Enum.FormFactor.Custom
5888p25.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5889p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5890p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5891p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5892p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5893p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5894p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5895b25 = Instance.new("BlockMesh", p25)
5896b25.Name = "Mesh"
5897b25.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
5898p26 = Instance.new("Part", m8)
5899p26.BrickColor = BrickColor.new("Really black")
5900p26.Material = Enum.Material.Metal
5901p26.Reflectance = 0.40000000596046
5902p26.Name = "Block"
5903p26.CFrame = CFrame.new(2.69999982e-005, -11.7615213, 0.428021312, 1, -1.85015523e-008, -5.47521495e-009, -1.85012912e-008, -1.0000031, -5.96046448e-008, -5.47550272e-009, 3.57627869e-007, -1.00000358)
5904p26.CanCollide = false
5905p26.Locked = true
5906p26.FormFactor = Enum.FormFactor.Custom
5907p26.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5908p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5909p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5910p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5911p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5912p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5913p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5914b26 = Instance.new("BlockMesh", p26)
5915b26.Name = "Mesh"
5916b26.Scale = Vector3.new(0.267712682, 0.468497276, 1)
5917p27 = Instance.new("Part", m8)
5918p27.BrickColor = BrickColor.new("Lime green")
5919p27.Material = Enum.Material.Metal
5920p27.Name = "Block"
5921p27.CFrame = CFrame.new(2.69999982e-005, -11.850069, -0.782109976, 1, -4.36853398e-008, -4.90951173e-008, -5.8728709e-008, -0.258819818, -0.965928853, 2.94898914e-008, 0.965929329, -0.25881961)
5922p27.CanCollide = false
5923p27.Locked = true
5924p27.FormFactor = Enum.FormFactor.Custom
5925p27.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5926p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5927p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5928p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5929p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5930p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5931p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5932b27 = Instance.new("BlockMesh", p27)
5933b27.Name = "Mesh"
5934b27.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
5935p28 = Instance.new("Part", m8)
5936p28.BrickColor = BrickColor.new("Really black")
5937p28.Material = Enum.Material.SmoothPlastic
5938p28.Reflectance = 0.0099999997764826
5939p28.Name = "Circle"
5940p28.CFrame = CFrame.new(2.69999964e-005, -11.7615204, -0.52384901, 1, -3.82200298e-008, -1.58313824e-008, -1.58311213e-008, 5.96046448e-008, -1.0000031, 3.82198913e-008, 1.00000346, 3.57627869e-007)
5941p28.CanCollide = false
5942p28.Locked = true
5943p28.FormFactor = Enum.FormFactor.Custom
5944p28.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5945p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5946p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5947p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5948p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5949p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5950p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5951b28 = Instance.new("CylinderMesh", p28)
5952b28.Name = "Mesh"
5953b28.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
5954p29 = Instance.new("Part", m8)
5955p29.BrickColor = BrickColor.new("Black")
5956p29.Material = Enum.Material.Metal
5957p29.Reflectance = 0.40000000596046
5958p29.Name = "Block"
5959p29.CFrame = CFrame.new(2.69999964e-005, -11.8228655, 1.48447084, 1, -1.48910964e-008, -1.22697976e-008, -1.85012574e-008, -0.920508504, -0.390730202, -5.47632872e-009, 0.39073059, -0.920508862)
5960p29.CanCollide = false
5961p29.Locked = true
5962p29.FormFactor = Enum.FormFactor.Custom
5963p29.Size = Vector3.new(0.220499977, 0.220499977, 0.31728977)
5964p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5965p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5966p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5967p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5968p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5969p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5970b29 = Instance.new("BlockMesh", p29)
5971b29.Name = "Mesh"
5972b29.Scale = Vector3.new(0.267712682, 0.803138077, 1)
5973p30 = Instance.new("Part", m8)
5974p30.BrickColor = BrickColor.new("Lime green")
5975p30.Material = Enum.Material.Metal
5976p30.Name = "Block"
5977p30.CFrame = CFrame.new(2.69999928e-005, -11.850069, -1.35027885, 1, -4.36853398e-008, -4.90951102e-008, -5.87287019e-008, -0.25881964, -0.965928614, 2.94898825e-008, 0.96592921, -0.258819699)
5978p30.CanCollide = false
5979p30.Locked = true
5980p30.FormFactor = Enum.FormFactor.Custom
5981p30.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5982p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5983p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5984p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5985p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5986p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5987p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5988b30 = Instance.new("BlockMesh", p30)
5989b30.Name = "Mesh"
5990b30.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
5991p31 = Instance.new("Part", m8)
5992p31.BrickColor = BrickColor.new("Lime green")
5993p31.Material = Enum.Material.Neon
5994p31.Reflectance = 0.40000000596046
5995p31.Name = "Block"
5996p31.CFrame = CFrame.new(2.69999928e-005, -11.8927851, 0.869306803, -1, -7.71367752e-008, 3.05927976e-008, 7.41768247e-008, -0.996197402, -0.0871561319, 3.71997153e-008, -0.0871560946, 0.996197999)
5997p31.CanCollide = false
5998p31.Locked = true
5999p31.FormFactor = Enum.FormFactor.Custom
6000p31.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6001p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6002p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6003p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6004p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6005p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6006p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6007b31 = Instance.new("BlockMesh", p31)
6008b31.Name = "Mesh"
6009b31.Scale = Vector3.new(0.334640861, 0.133856371, 0.870066345)
6010p32 = Instance.new("Part", m8)
6011p32.BrickColor = BrickColor.new("Lime green")
6012p32.Material = Enum.Material.Metal
6013p32.Name = "Block"
6014p32.CFrame = CFrame.new(2.6999991e-005, -11.850071, -1.29862738, 1, -3.936497e-008, -6.27974615e-008, -5.91275011e-008, 0.0871559605, -0.996197343, 4.46881891e-008, 0.996197939, 0.0871561021)
6015p32.CanCollide = false
6016p32.Locked = true
6017p32.FormFactor = Enum.FormFactor.Custom
6018p32.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6019p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6020p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6021p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6022p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6023p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6024p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6025b32 = Instance.new("BlockMesh", p32)
6026b32.Name = "Mesh"
6027b32.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6028p33 = Instance.new("Part", m8)
6029p33.BrickColor = BrickColor.new("Really black")
6030p33.Material = Enum.Material.Metal
6031p33.Reflectance = 0.40000000596046
6032p33.Name = "Block"
6033p33.CFrame = CFrame.new(2.69999928e-005, -11.7615213, 0.693662167, 1, -1.8501531e-008, -5.47520784e-009, -1.85013107e-008, -1.00000262, -1.49011612e-007, -5.47550894e-009, 2.38418579e-007, -1.00000322)
6034p33.CanCollide = false
6035p33.Locked = true
6036p33.FormFactor = Enum.FormFactor.Custom
6037p33.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
6038p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6039p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6040p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6041p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6042p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6043p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6044b33 = Instance.new("BlockMesh", p33)
6045b33.Name = "Mesh"
6046b33.Scale = Vector3.new(0.267712682, 0.468497276, 1)
6047p34 = Instance.new("Part", m8)
6048p34.BrickColor = BrickColor.new("Lime green")
6049p34.Material = Enum.Material.Metal
6050p34.Name = "Block"
6051p34.CFrame = CFrame.new(2.69999928e-005, -11.850069, -0.988716245, 1, -4.08901997e-008, -5.9526613e-008, -5.95264993e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
6052p34.CanCollide = false
6053p34.Locked = true
6054p34.FormFactor = Enum.FormFactor.Custom
6055p34.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6056p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6057p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6058p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6059p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6060p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6061p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6062b34 = Instance.new("BlockMesh", p34)
6063b34.Name = "Mesh"
6064b34.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6065p35 = Instance.new("Part", m8)
6066p35.BrickColor = BrickColor.new("Lime green")
6067p35.Material = Enum.Material.Metal
6068p35.Name = "Block"
6069p35.CFrame = CFrame.new(2.69999928e-005, -11.8500662, -1.50523794, 1, -4.08901997e-008, -5.95266094e-008, -5.95265028e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
6070p35.CanCollide = false
6071p35.Locked = true
6072p35.FormFactor = Enum.FormFactor.Custom
6073p35.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6074p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6075p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6076p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6077p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6078p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6079p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6080b35 = Instance.new("BlockMesh", p35)
6081b35.Name = "Mesh"
6082b35.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6083p36 = Instance.new("Part", m8)
6084p36.BrickColor = BrickColor.new("Lime green")
6085p36.Material = Enum.Material.Metal
6086p36.Name = "Block"
6087p36.CFrame = CFrame.new(2.69999928e-005, -11.8500719, -1.86679816, 1, -1.85015203e-008, -5.47520784e-009, -1.85013214e-008, -1.00000262, -1.49011612e-007, -5.47550938e-009, 2.38418579e-007, -1.00000322)
6088p36.CanCollide = false
6089p36.Locked = true
6090p36.FormFactor = Enum.FormFactor.Custom
6091p36.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6092p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6093p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6094p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6095p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6096p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6097p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6098b36 = Instance.new("BlockMesh", p36)
6099b36.Name = "Mesh"
6100b36.Scale = Vector3.new(0.401568979, 0.200784534, 0.267712682)
6101p37 = Instance.new("Part", m8)
6102p37.BrickColor = BrickColor.new("Lime green")
6103p37.Material = Enum.Material.Marble
6104p37.Name = "Circle"
6105p37.CFrame = CFrame.new(2.6999991e-005, -11.7319965, -0.523848772, 1, -3.82200369e-008, -1.58313576e-008, -1.58311444e-008, 1.49011612e-007, -1.00000262, 3.8219877e-008, 1.00000322, 2.38418579e-007)
6106p37.CanCollide = false
6107p37.Locked = true
6108p37.FormFactor = Enum.FormFactor.Custom
6109p37.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6110p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6111p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6112p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6113p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6114p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6115p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6116b37 = Instance.new("CylinderMesh", p37)
6117b37.Name = "Mesh"
6118b37.Scale = Vector3.new(0.936994374, 0.133856371, 0.936994612)
6119p38 = Instance.new("Part", m8)
6120p38.BrickColor = BrickColor.new("Really black")
6121p38.Material = Enum.Material.Metal
6122p38.Name = "Block"
6123p38.CFrame = CFrame.new(2.69999928e-005, -11.8021069, -1.64543033, 1, -4.08901997e-008, -5.95266023e-008, -5.95265099e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
6124p38.CanCollide = false
6125p38.Locked = true
6126p38.FormFactor = Enum.FormFactor.Custom
6127p38.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6128p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6129p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6130p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6131p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6132p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6133p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6134b38 = Instance.new("BlockMesh", p38)
6135b38.Name = "Mesh"
6136b38.Scale = Vector3.new(0.334640861, 0.133856371, 0.234248638)
6137p39 = Instance.new("Part", m8)
6138p39.BrickColor = BrickColor.new("Really black")
6139p39.Material = Enum.Material.Metal
6140p39.Name = "Block"
6141p39.CFrame = CFrame.new(2.6999991e-005, -11.8980207, -1.64543033, 1, -4.08901997e-008, -5.95265988e-008, -5.95265135e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
6142p39.CanCollide = false
6143p39.Locked = true
6144p39.FormFactor = Enum.FormFactor.Custom
6145p39.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6146p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6147p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6148p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6149p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6150p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6151p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6152b39 = Instance.new("BlockMesh", p39)
6153b39.Name = "Mesh"
6154b39.Scale = Vector3.new(0.334640861, 0.133856371, 0.234248638)
6155p40 = Instance.new("Part", m8)
6156p40.BrickColor = BrickColor.new("Really black")
6157p40.Material = Enum.Material.Metal
6158p40.Name = "Block"
6159p40.CFrame = CFrame.new(2.6999991e-005, -11.9044991, -1.84857893, 1, 2.62652719e-007, 4.66475456e-007, -2.72653665e-007, -0.500001431, 0.866027534, 4.6070295e-007, -0.866027951, -0.500001788)
6160p40.CanCollide = false
6161p40.Locked = true
6162p40.FormFactor = Enum.FormFactor.Custom
6163p40.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6164p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6165p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6166p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6167p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6168p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6169p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6170b40 = Instance.new("BlockMesh", p40)
6171b40.Name = "Mesh"
6172b40.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
6173p41 = Instance.new("Part", m8)
6174p41.BrickColor = BrickColor.new("Lime green")
6175p41.Material = Enum.Material.Neon
6176p41.Reflectance = 0.40000000596046
6177p41.Name = "Block"
6178p41.CFrame = CFrame.new(2.6999991e-005, -11.8956079, 0.422182083, 1, -1.56492277e-008, -8.1476486e-008, -1.31610101e-008, 0.939694941, -0.34202069, 8.19153172e-008, 0.34202072, 0.939695537)
6179p41.CanCollide = false
6180p41.Locked = true
6181p41.FormFactor = Enum.FormFactor.Custom
6182p41.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6183p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6184p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6185p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6186p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6187p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6188p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6189b41 = Instance.new("BlockMesh", p41)
6190b41.Name = "Mesh"
6191b41.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
6192p42 = Instance.new("Part", m8)
6193p42.BrickColor = BrickColor.new("Earth green")
6194p42.Material = Enum.Material.Metal
6195p42.Name = "Block"
6196p42.CFrame = CFrame.new(2.69999928e-005, -11.85007, -0.664048076, 1, -4.0890118e-008, -5.95265348e-008, -5.95265384e-008, 1.49011612e-007, -1.00000226, 4.08901286e-008, 1.00000286, 3.42726707e-007)
6197p42.CanCollide = false
6198p42.Locked = true
6199p42.FormFactor = Enum.FormFactor.Custom
6200p42.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6201p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6202p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6203p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6204p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6205p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6206p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6207b42 = Instance.new("BlockMesh", p42)
6208b42.Name = "Mesh"
6209b42.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
6210p43 = Instance.new("Part", m8)
6211p43.BrickColor = BrickColor.new("Really black")
6212p43.Material = Enum.Material.Metal
6213p43.Name = "Block"
6214p43.CFrame = CFrame.new(2.69999964e-005, -11.7292862, -1.76739728, 1, 6.57225172e-008, -2.99325187e-008, -5.95263288e-008, 0.984809816, 0.173648655, 4.08903809e-008, -0.173648939, 0.984810352)
6215p43.CanCollide = false
6216p43.Locked = true
6217p43.FormFactor = Enum.FormFactor.Custom
6218p43.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6219p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6220p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6221p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6222p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6223p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6224p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6225b43 = Instance.new("BlockMesh", p43)
6226b43.Name = "Mesh"
6227b43.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
6228p44 = Instance.new("Part", m8)
6229p44.BrickColor = BrickColor.new("Lime green")
6230p44.Material = Enum.Material.Marble
6231p44.Name = "Circle"
6232p44.CFrame = CFrame.new(2.69999946e-005, -11.968133, -0.641907811, 1, -3.82199516e-008, -1.58312723e-008, -1.58311995e-008, 1.49011612e-007, -1.00000203, 3.8219941e-008, 1.00000262, 3.27825546e-007)
6233p44.CanCollide = false
6234p44.Locked = true
6235p44.FormFactor = Enum.FormFactor.Custom
6236p44.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6237p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6238p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6239p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6240p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6241p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6242p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6243b44 = Instance.new("CylinderMesh", p44)
6244b44.Name = "Mesh"
6245b44.Scale = Vector3.new(0.803138018, 0.133856371, 0.803138137)
6246p45 = Instance.new("Part", m8)
6247p45.BrickColor = BrickColor.new("Lime green")
6248p45.Material = Enum.Material.Neon
6249p45.Reflectance = 0.40000000596046
6250p45.Name = "Block"
6251p45.CFrame = CFrame.new(2.69999964e-005, -11.8956099, -0.0648244023, 1, -1.56492419e-008, -8.14764718e-008, -1.31610207e-008, 0.939694583, -0.342020601, 8.19152959e-008, 0.342020601, 0.93969512)
6252p45.CanCollide = false
6253p45.Locked = true
6254p45.FormFactor = Enum.FormFactor.Custom
6255p45.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6256p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6257p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6258p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6259p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6260p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6261p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6262b45 = Instance.new("BlockMesh", p45)
6263b45.Name = "Mesh"
6264b45.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
6265p46 = Instance.new("Part", m8)
6266p46.BrickColor = BrickColor.new("Black")
6267p46.Material = Enum.Material.Metal
6268p46.Name = "Block"
6269p46.CFrame = CFrame.new(2.69999946e-005, -11.8500729, -0.582874656, 1, -4.08901037e-008, -5.95265135e-008, -5.95265313e-008, 1.34110451e-007, -1.00000191, 4.08901215e-008, 1.00000238, 2.83122063e-007)
6270p46.CanCollide = false
6271p46.Locked = true
6272p46.FormFactor = Enum.FormFactor.Custom
6273p46.Size = Vector3.new(0.236122593, 0.220499977, 0.354183882)
6274p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6275p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6276p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6277p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6278p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6279p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6280b46 = Instance.new("BlockMesh", p46)
6281b46.Name = "Mesh"
6282b46.Scale = Vector3.new(1, 0.401569068, 1)
6283p47 = Instance.new("Part", m8)
6284p47.BrickColor = BrickColor.new("Earth green")
6285p47.Material = Enum.Material.Metal
6286p47.Name = "Block"
6287p47.CFrame = CFrame.new(2.69999946e-005, -11.850071, -1.56426501, 1, -4.08901037e-008, -5.95265099e-008, -5.95265348e-008, 1.34110451e-007, -1.00000191, 4.08901215e-008, 1.00000238, 2.83122063e-007)
6288p47.CanCollide = false
6289p47.Locked = true
6290p47.FormFactor = Enum.FormFactor.Custom
6291p47.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6292p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6293p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6294p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6295p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6296p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6297p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6298b47 = Instance.new("BlockMesh", p47)
6299b47.Name = "Mesh"
6300b47.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
6301p48 = Instance.new("Part", m8)
6302p48.BrickColor = BrickColor.new("Lime green")
6303p48.Material = Enum.Material.Metal
6304p48.Name = "Block"
6305p48.CFrame = CFrame.new(2.69999964e-005, -11.8500748, -1.04036665, 1, -3.75603939e-008, -6.5922805e-008, -5.83990385e-008, 0.173648417, -0.984809697, 4.84371583e-008, 0.984810054, 0.173648626)
6306p48.CanCollide = false
6307p48.Locked = true
6308p48.FormFactor = Enum.FormFactor.Custom
6309p48.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6310p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6311p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6312p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6313p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6314p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6315p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6316b48 = Instance.new("BlockMesh", p48)
6317b48.Name = "Mesh"
6318b48.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6319p49 = Instance.new("Part", m8)
6320p49.BrickColor = BrickColor.new("Lime green")
6321p49.Material = Enum.Material.Metal
6322p49.Name = "Block"
6323p49.CFrame = CFrame.new(2.69999928e-005, -11.8500729, -0.730450988, 1, -3.7560401e-008, -6.59227979e-008, -5.83990456e-008, 0.173648179, -0.984809756, 4.84371476e-008, 0.984810114, 0.173648387)
6324p49.CanCollide = false
6325p49.Locked = true
6326p49.FormFactor = Enum.FormFactor.Custom
6327p49.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6328p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6329p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6330p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6331p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6332p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6333p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6334b49 = Instance.new("BlockMesh", p49)
6335b49.Name = "Mesh"
6336b49.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6337p50 = Instance.new("Part", m8)
6338p50.BrickColor = BrickColor.new("Black")
6339p50.Material = Enum.Material.Metal
6340p50.Reflectance = 0.40000000596046
6341p50.Name = "Block"
6342p50.CFrame = CFrame.new(2.69999928e-005, -11.9042749, 1.22774267, 1, -1.79535924e-008, -7.06764602e-009, -1.85012361e-008, -0.996196568, -0.0871560201, -5.47609824e-009, 0.0871561989, -0.996196926)
6343p50.CanCollide = false
6344p50.Locked = true
6345p50.FormFactor = Enum.FormFactor.Custom
6346p50.Size = Vector3.new(0.220499977, 0.220499977, 0.287774384)
6347p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6348p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6349p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6350p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6351p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6352p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6353b50 = Instance.new("BlockMesh", p50)
6354b50.Name = "Mesh"
6355b50.Scale = Vector3.new(0.267712682, 0.936994493, 1)
6356p51 = Instance.new("Part", m8)
6357p51.BrickColor = BrickColor.new("Lime green")
6358p51.Material = Enum.Material.Metal
6359p51.Name = "Block"
6360p51.CFrame = CFrame.new(2.69999928e-005, -11.8500719, -1.40193033, 1, -3.93648811e-008, -6.27973264e-008, -5.91275438e-008, 0.0871558785, -0.996196568, 4.46882424e-008, 0.996196926, 0.0871560574)
6361p51.CanCollide = false
6362p51.Locked = true
6363p51.FormFactor = Enum.FormFactor.Custom
6364p51.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6365p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6366p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6367p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6368p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6369p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6370p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6371b51 = Instance.new("BlockMesh", p51)
6372b51.Name = "Mesh"
6373b51.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6374p52 = Instance.new("Part", m8)
6375p52.BrickColor = BrickColor.new("Lime green")
6376p52.Material = Enum.Material.Metal
6377p52.Name = "Block"
6378p52.CFrame = CFrame.new(2.69999928e-005, -11.850071, -1.09201384, 1, -4.21244408e-008, -5.61351641e-008, -5.95929883e-008, -0.0871557593, -0.996196628, 3.70716471e-008, 0.996196985, -0.0871556401)
6379p52.CanCollide = false
6380p52.Locked = true
6381p52.FormFactor = Enum.FormFactor.Custom
6382p52.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6383p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6384p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6385p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6386p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6387p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6388p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6389b52 = Instance.new("BlockMesh", p52)
6390b52.Name = "Mesh"
6391b52.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6392p53 = Instance.new("Part", m8)
6393p53.BrickColor = BrickColor.new("Really black")
6394p53.Material = Enum.Material.Metal
6395p53.Name = "Block"
6396p53.CFrame = CFrame.new(2.69999928e-005, -11.7956429, -1.84857762, 1, 6.51748948e-008, 3.11061044e-008, -5.95261795e-008, 0.500001013, 0.866027117, 4.08900611e-008, -0.866027415, 0.500001013)
6397p53.CanCollide = false
6398p53.Locked = true
6399p53.FormFactor = Enum.FormFactor.Custom
6400p53.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6401p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6402p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6403p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6404p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6405p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6406p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6407b53 = Instance.new("BlockMesh", p53)
6408b53.Name = "Mesh"
6409b53.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
6410p54 = Instance.new("Part", m8)
6411p54.BrickColor = BrickColor.new("Really black")
6412p54.Material = Enum.Material.SmoothPlastic
6413p54.Reflectance = 0.0099999997764826
6414p54.Name = "Circle"
6415p54.CFrame = CFrame.new(2.69999928e-005, -11.9386101, -0.523846626, 1, -3.82199445e-008, -1.58312456e-008, -1.58311995e-008, 1.04308441e-007, -1.00000203, 3.82199303e-008, 1.00000226, 2.75671823e-007)
6416p54.CanCollide = false
6417p54.Locked = true
6418p54.FormFactor = Enum.FormFactor.Custom
6419p54.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6420p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6421p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6422p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6423p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6424p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6425p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6426b54 = Instance.new("CylinderMesh", p54)
6427b54.Name = "Mesh"
6428b54.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
6429p55 = Instance.new("Part", m8)
6430p55.BrickColor = BrickColor.new("Really black")
6431p55.Material = Enum.Material.Metal
6432p55.Reflectance = 0.40000000596046
6433p55.Name = "Block"
6434p55.CFrame = CFrame.new(2.69999928e-005, -11.7615232, -0.103249788, 1, -1.85014084e-008, -5.47530199e-009, -1.85013729e-008, -1.00000203, -1.04308441e-007, -5.47541257e-009, 2.75671823e-007, -1.00000226)
6435p55.CanCollide = false
6436p55.Locked = true
6437p55.FormFactor = Enum.FormFactor.Custom
6438p55.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
6439p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6440p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6441p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6442p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6443p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6444p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6445b55 = Instance.new("BlockMesh", p55)
6446b55.Name = "Mesh"
6447b55.Scale = Vector3.new(0.267712682, 0.468497276, 1)
6448p56 = Instance.new("Part", m8)
6449p56.BrickColor = BrickColor.new("Black")
6450p56.Material = Enum.Material.Metal
6451p56.Reflectance = 0.40000000596046
6452p56.Name = "Block"
6453p56.CFrame = CFrame.new(2.69999928e-005, -11.9091034, -0.368891358, 1, -1.8501229e-008, -5.47589352e-009, -1.85011935e-008, -1.00000203, -1.04308441e-007, -5.47600409e-009, 2.75671823e-007, -1.00000226)
6454p56.CanCollide = false
6455p56.Locked = true
6456p56.FormFactor = Enum.FormFactor.Custom
6457p56.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
6458p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6459p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6460p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6461p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6462p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6463p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6464b56 = Instance.new("BlockMesh", p56)
6465b56.Name = "Mesh"
6466b56.Scale = Vector3.new(0.267712682, 0.870066345, 1)
6467p57 = Instance.new("Part", m8)
6468p57.BrickColor = BrickColor.new("Black")
6469p57.Material = Enum.Material.Metal
6470p57.Reflectance = 0.40000000596046
6471p57.Name = "Block"
6472p57.CFrame = CFrame.new(2.69999928e-005, -11.9091005, 0.693658948, 1, -1.8501229e-008, -5.47589352e-009, -1.85011935e-008, -1.00000203, -1.04308441e-007, -5.47600409e-009, 2.75671823e-007, -1.00000226)
6473p57.CanCollide = false
6474p57.Locked = true
6475p57.FormFactor = Enum.FormFactor.Custom
6476p57.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
6477p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6478p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6479p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6480p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6481p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6482p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6483b57 = Instance.new("BlockMesh", p57)
6484b57.Name = "Mesh"
6485b57.Scale = Vector3.new(0.267712682, 0.870066345, 1)
6486p58 = Instance.new("Part", m8)
6487p58.BrickColor = BrickColor.new("Lime green")
6488p58.Material = Enum.Material.Marble
6489p58.Name = "Block"
6490p58.CFrame = CFrame.new(2.69999928e-005, -11.850071, -0.523846745, 1, -4.08901073e-008, -5.95264922e-008, -5.95265384e-008, 1.04308441e-007, -1.00000203, 4.08901144e-008, 1.00000226, 2.75671823e-007)
6491p58.CanCollide = false
6492p58.Locked = true
6493p58.FormFactor = Enum.FormFactor.Custom
6494p58.Size = Vector3.new(0.220499977, 0.220499977, 0.236122593)
6495p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6496p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6497p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6498p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6499p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6500p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6501b58 = Instance.new("BlockMesh", p58)
6502b58.Name = "Mesh"
6503b58.Scale = Vector3.new(0.936994374, 0.133856371, 1)
6504p59 = Instance.new("Part", m8)
6505p59.BrickColor = BrickColor.new("Lime green")
6506p59.Material = Enum.Material.Metal
6507p59.Name = "Block"
6508p59.CFrame = CFrame.new(2.69999928e-005, -11.850071, -1.62329435, 1, -1.85014031e-008, -5.47530021e-009, -1.85013782e-008, -1.00000203, -1.04308441e-007, -5.47540946e-009, 2.75671823e-007, -1.00000226)
6509p59.CanCollide = false
6510p59.Locked = true
6511p59.FormFactor = Enum.FormFactor.Custom
6512p59.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6513p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6514p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6515p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6516p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6517p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6518p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6519b59 = Instance.new("BlockMesh", p59)
6520b59.Name = "Mesh"
6521b59.Scale = Vector3.new(0.602353573, 0.200784534, 0.468497276)
6522p60 = Instance.new("Part", m8)
6523p60.BrickColor = BrickColor.new("Lime green")
6524p60.Material = Enum.Material.Marble
6525p60.Name = "Circle"
6526p60.CFrame = CFrame.new(2.69999928e-005, -11.9755096, -0.523859799, 1, -3.82199445e-008, -1.58312403e-008, -1.58312048e-008, 1.04308441e-007, -1.00000203, 3.82199339e-008, 1.00000226, 2.75671823e-007)
6527p60.CanCollide = false
6528p60.Locked = true
6529p60.FormFactor = Enum.FormFactor.Custom
6530p60.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6531p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6532p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6533p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6534p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6535p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6536p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6537b60 = Instance.new("CylinderMesh", p60)
6538b60.Name = "Mesh"
6539b60.Scale = Vector3.new(0.936994374, 0.133856371, 0.936994612)
6540p61 = Instance.new("Part", m8)
6541p61.BrickColor = BrickColor.new("Black")
6542p61.Material = Enum.Material.Metal
6543p61.Name = "Circle"
6544p61.CFrame = CFrame.new(2.69999928e-005, -12.0271645, -0.582878888, 1, -3.82199445e-008, -1.58312403e-008, -1.58312048e-008, 1.04308441e-007, -1.00000203, 3.82199339e-008, 1.00000226, 2.75671823e-007)
6545p61.CanCollide = false
6546p61.Locked = true
6547p61.FormFactor = Enum.FormFactor.Custom
6548p61.Size = Vector3.new(0.236122593, 0.220499977, 0.265637904)
6549p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6550p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6551p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6552p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6553p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6554p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6555b61 = Instance.new("CylinderMesh", p61)
6556b61.Name = "Mesh"
6557b61.Scale = Vector3.new(1, 0.401569068, 1)
6558p62 = Instance.new("Part", m8)
6559p62.BrickColor = BrickColor.new("Lime green")
6560p62.Material = Enum.Material.Metal
6561p62.Name = "Block"
6562p62.CFrame = CFrame.new(2.69999928e-005, -11.850069, -0.833758533, 1, -4.08901002e-008, -5.95264851e-008, -5.95265455e-008, -4.47034836e-008, -1.00000203, 4.08901002e-008, 1.00000226, 1.2665987e-007)
6563p62.CanCollide = false
6564p62.Locked = true
6565p62.FormFactor = Enum.FormFactor.Custom
6566p62.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6567p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6568p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6569p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6570p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6571p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6572p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6573b62 = Instance.new("BlockMesh", p62)
6574b62.Name = "Mesh"
6575b62.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6576p63 = Instance.new("Part", m8)
6577p63.BrickColor = BrickColor.new("Lime green")
6578p63.Material = Enum.Material.Metal
6579p63.Name = "Block"
6580p63.CFrame = CFrame.new(2.69999928e-005, -11.8500719, -1.14366531, 1, -3.93648811e-008, -6.27973264e-008, -5.91275438e-008, 0.0871558636, -0.996196747, 4.4688246e-008, 0.996196866, 0.0871560499)
6581p63.CanCollide = false
6582p63.Locked = true
6583p63.FormFactor = Enum.FormFactor.Custom
6584p63.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6585p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6586p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6587p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6588p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6589p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6590p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6591b63 = Instance.new("BlockMesh", p63)
6592b63.Name = "Mesh"
6593b63.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6594p64 = Instance.new("Part", m8)
6595p64.BrickColor = BrickColor.new("Really black")
6596p64.Material = Enum.Material.SmoothPlastic
6597p64.Reflectance = 0.0099999997764826
6598p64.Name = "Block"
6599p64.CFrame = CFrame.new(2.69999928e-005, -11.85007, -0.523846924, 1, -4.08901002e-008, -5.95264957e-008, -5.95265419e-008, 1.04308128e-007, -1.00000203, 4.0890118e-008, 1.00000215, 2.83122063e-007)
6600p64.CanCollide = false
6601p64.Locked = true
6602p64.FormFactor = Enum.FormFactor.Custom
6603p64.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6604p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6605p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6606p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6607p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6608p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6609p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6610b64 = Instance.new("BlockMesh", p64)
6611b64.Name = "Mesh"
6612b64.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
6613p65 = Instance.new("Part", m8)
6614p65.BrickColor = BrickColor.new("Lime green")
6615p65.Material = Enum.Material.Metal
6616p65.Name = "Block"
6617p65.CFrame = CFrame.new(2.69999928e-005, -11.850069, -0.885411739, 1, -3.75603939e-008, -6.59227908e-008, -5.83990456e-008, 0.173648402, -0.984809816, 4.84371547e-008, 0.984809875, 0.173648596)
6618p65.CanCollide = false
6619p65.Locked = true
6620p65.FormFactor = Enum.FormFactor.Custom
6621p65.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6622p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6623p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6624p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6625p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6626p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6627p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6628b65 = Instance.new("BlockMesh", p65)
6629b65.Name = "Mesh"
6630b65.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6631p66 = Instance.new("Part", m8)
6632p66.BrickColor = BrickColor.new("Really black")
6633p66.Material = Enum.Material.Metal
6634p66.Reflectance = 0.40000000596046
6635p66.Name = "Block"
6636p66.CFrame = CFrame.new(2.69999946e-005, -11.7501383, 1.2199297, 1, -1.79537896e-008, -7.06697278e-009, -1.85013764e-008, -0.996196747, -0.0871560127, -5.47540502e-009, 0.0871562064, -0.996196806)
6637p66.CanCollide = false
6638p66.Locked = true
6639p66.FormFactor = Enum.FormFactor.Custom
6640p66.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
6641p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6642p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6643p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6644p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6645p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6646p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6647b66 = Instance.new("BlockMesh", p66)
6648b66.Name = "Mesh"
6649b66.Scale = Vector3.new(0.267712682, 0.468497276, 1)
6650p67 = Instance.new("Part", m8)
6651p67.BrickColor = BrickColor.new("Lime green")
6652p67.Material = Enum.Material.Metal
6653p67.Name = "Block"
6654p67.CFrame = CFrame.new(2.69999928e-005, -11.8500738, -1.45358396, 1, -4.36852119e-008, -4.90949965e-008, -5.87287552e-008, -0.258819461, -0.96592778, 2.94899358e-008, 0.965927899, -0.258819312)
6655p67.CanCollide = false
6656p67.Locked = true
6657p67.FormFactor = Enum.FormFactor.Custom
6658p67.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6659p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6660p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6661p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6662p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6663p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6664p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6665b67 = Instance.new("BlockMesh", p67)
6666b67.Name = "Mesh"
6667b67.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6668p68 = Instance.new("Part", m8)
6669p68.BrickColor = BrickColor.new("Black")
6670p68.Material = Enum.Material.Metal
6671p68.Reflectance = 0.40000000596046
6672p68.Name = "Block"
6673p68.CFrame = CFrame.new(2.69999946e-005, -11.9090977, 0.162382364, 1, -1.85012148e-008, -5.47590062e-009, -1.85012077e-008, -1.00000191, -1.1920929e-007, -5.47599832e-009, 2.98023224e-007, -1.00000203)
6674p68.CanCollide = false
6675p68.Locked = true
6676p68.FormFactor = Enum.FormFactor.Custom
6677p68.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
6678p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6679p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6680p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6681p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6682p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6683p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6684b68 = Instance.new("BlockMesh", p68)
6685b68.Name = "Mesh"
6686b68.Scale = Vector3.new(0.267712682, 0.870066345, 1)
6687p69 = Instance.new("Part", m8)
6688p69.BrickColor = BrickColor.new("Earth green")
6689p69.Material = Enum.Material.Metal
6690p69.Name = "Block"
6691p69.CFrame = CFrame.new(2.69999946e-005, -11.8500662, -1.6085372, 1, -4.08901002e-008, -5.9526478e-008, -5.95265455e-008, 1.1920929e-007, -1.00000191, 4.08901073e-008, 1.00000203, 2.98023224e-007)
6692p69.CanCollide = false
6693p69.Locked = true
6694p69.FormFactor = Enum.FormFactor.Custom
6695p69.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6696p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6697p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6698p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6699p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6700p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6701p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6702b69 = Instance.new("BlockMesh", p69)
6703b69.Name = "Mesh"
6704b69.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
6705p70 = Instance.new("Part", m8)
6706p70.BrickColor = BrickColor.new("Lime green")
6707p70.Material = Enum.Material.Marble
6708p70.Name = "Circle"
6709p70.CFrame = CFrame.new(2.69999946e-005, -11.7320013, -0.641902268, 1, -3.82199374e-008, -1.58312261e-008, -1.5831219e-008, 1.1920929e-007, -1.00000191, 3.82199268e-008, 1.00000203, 2.98023224e-007)
6710p70.CanCollide = false
6711p70.Locked = true
6712p70.FormFactor = Enum.FormFactor.Custom
6713p70.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6714p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6715p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6716p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6717p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6718p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6719p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6720b70 = Instance.new("CylinderMesh", p70)
6721b70.Name = "Mesh"
6722b70.Scale = Vector3.new(0.803138018, 0.133856371, 0.803138137)
6723p71 = Instance.new("WedgePart", m8)
6724p71.BrickColor = BrickColor.new("Lime green")
6725p71.Material = Enum.Material.Neon
6726p71.Reflectance = 0.40000000596046
6727p71.Name = "Wedge"
6728p71.CFrame = CFrame.new(2.69999946e-005, -11.8880224, 0.31500864, -1, 5.94633809e-009, -9.26972419e-008, -8.91409044e-008, -0.342020452, 0.939694583, -2.61165116e-008, 0.939694643, 0.342020303)
6729p71.CanCollide = false
6730p71.Locked = true
6731p71.FormFactor = Enum.FormFactor.Custom
6732p71.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6733p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6734p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6735p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6736p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6737p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6738p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6739b71 = Instance.new("SpecialMesh", p71)
6740b71.MeshType = Enum.MeshType.Wedge
6741b71.Name = "Mesh"
6742b71.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
6743p72 = Instance.new("WedgePart", m8)
6744p72.BrickColor = BrickColor.new("Lime green")
6745p72.Material = Enum.Material.Neon
6746p72.Reflectance = 0.40000000596046
6747p72.Name = "Wedge"
6748p72.CFrame = CFrame.new(2.69999964e-005, -11.8783607, 0.789086521, 1, -5.68298901e-008, -8.86828389e-011, -5.04137887e-009, -0.0871561319, -0.996196628, 5.66059342e-008, 0.996196628, -0.0871559829)
6749p72.CanCollide = false
6750p72.Locked = true
6751p72.FormFactor = Enum.FormFactor.Custom
6752p72.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6753p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6754p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6755p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6756p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6757p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6758p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6759b72 = Instance.new("SpecialMesh", p72)
6760b72.MeshType = Enum.MeshType.Wedge
6761b72.Name = "Mesh"
6762b72.Scale = Vector3.new(0.334640861, 0.267712742, 0.334640861)
6763p73 = Instance.new("WedgePart", m8)
6764p73.BrickColor = BrickColor.new("Lime green")
6765p73.Material = Enum.Material.Neon
6766p73.Reflectance = 0.40000000596046
6767p73.Name = "Wedge"
6768p73.CFrame = CFrame.new(2.69999946e-005, -11.9179726, -0.200317383, -1, 8.86055176e-008, -9.63062732e-008, 1.2080335e-007, 0.342020512, -0.939694524, -5.03233473e-008, -0.939694524, -0.342020392)
6769p73.CanCollide = false
6770p73.Locked = true
6771p73.FormFactor = Enum.FormFactor.Custom
6772p73.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6773p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6774p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6775p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6776p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6777p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6778p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6779b73 = Instance.new("SpecialMesh", p73)
6780b73.MeshType = Enum.MeshType.Wedge
6781b73.Name = "Mesh"
6782b73.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
6783p74 = Instance.new("WedgePart", m8)
6784p74.BrickColor = BrickColor.new("Lime green")
6785p74.Material = Enum.Material.Neon
6786p74.Reflectance = 0.40000000596046
6787p74.Name = "Wedge"
6788p74.CFrame = CFrame.new(2.69999946e-005, -11.8857021, 0.788440466, 1, -3.05928971e-008, 8.75114523e-008, -8.45122159e-008, 0.087156117, 0.996196568, -3.81037424e-008, -0.996196568, 0.0871560276)
6789p74.CanCollide = false
6790p74.Locked = true
6791p74.FormFactor = Enum.FormFactor.Custom
6792p74.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6793p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6794p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6795p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6796p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6797p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6798p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6799b74 = Instance.new("SpecialMesh", p74)
6800b74.MeshType = Enum.MeshType.Wedge
6801b74.Name = "Mesh"
6802b74.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
6803p75 = Instance.new("WedgePart", m8)
6804p75.BrickColor = BrickColor.new("Lime green")
6805p75.Material = Enum.Material.Neon
6806p75.Reflectance = 0.40000000596046
6807p75.Name = "Wedge"
6808p75.CFrame = CFrame.new(2.69999946e-005, -11.8681011, -0.402033836, 1, -8.62400213e-008, 8.8834895e-009, 2.11481392e-008, 0.342020482, 0.939694464, -8.40776622e-008, -0.939694464, 0.342020422)
6809p75.CanCollide = false
6810p75.Locked = true
6811p75.FormFactor = Enum.FormFactor.Custom
6812p75.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6813p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6814p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6815p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6816p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6817p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6818p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6819b75 = Instance.new("SpecialMesh", p75)
6820b75.MeshType = Enum.MeshType.Wedge
6821b75.Name = "Mesh"
6822b75.Scale = Vector3.new(0.334640861, 0.267712742, 0.200784534)
6823p76 = Instance.new("WedgePart", m8)
6824p76.BrickColor = BrickColor.new("Lime green")
6825p76.Material = Enum.Material.Neon
6826p76.Reflectance = 0.40000000596046
6827p76.Name = "Wedge"
6828p76.CFrame = CFrame.new(2.69999946e-005, -11.8880215, -0.171991348, -1, 5.94633143e-009, -9.26972206e-008, -8.91408973e-008, -0.342020363, 0.939694405, -2.61165383e-008, 0.939694405, 0.342020303)
6829p76.CanCollide = false
6830p76.Locked = true
6831p76.FormFactor = Enum.FormFactor.Custom
6832p76.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6833p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6834p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6835p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6836p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6837p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6838p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6839b76 = Instance.new("SpecialMesh", p76)
6840b76.MeshType = Enum.MeshType.Wedge
6841b76.Name = "Mesh"
6842b76.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
6843p77 = Instance.new("WedgePart", m8)
6844p77.BrickColor = BrickColor.new("Lime green")
6845p77.Material = Enum.Material.Neon
6846p77.Reflectance = 0.40000000596046
6847p77.Name = "Wedge"
6848p77.CFrame = CFrame.new(2.69999946e-005, -11.9557362, 1.02495766, -1, 8.82909745e-008, -9.99014986e-008, 1.1934894e-007, 0.258819342, -0.965927422, -5.94261955e-008, -0.965927422, -0.258819282)
6849p77.CanCollide = false
6850p77.Locked = true
6851p77.FormFactor = Enum.FormFactor.Custom
6852p77.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6853p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6854p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6855p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6856p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6857p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6858p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6859b77 = Instance.new("SpecialMesh", p77)
6860b77.MeshType = Enum.MeshType.Wedge
6861b77.Name = "Mesh"
6862b77.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
6863p78 = Instance.new("WedgePart", m8)
6864p78.BrickColor = BrickColor.new("Lime green")
6865p78.Material = Enum.Material.Neon
6866p78.Reflectance = 0.40000000596046
6867p78.Name = "Wedge"
6868p78.CFrame = CFrame.new(2.69999946e-005, -11.8602781, -0.161903143, -1, 8.14764078e-008, 5.27443866e-009, 2.29101609e-008, 0.342020273, -0.939694166, -7.83668526e-008, -0.939694166, -0.342020243)
6869p78.CanCollide = false
6870p78.Locked = true
6871p78.FormFactor = Enum.FormFactor.Custom
6872p78.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6873p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6874p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6875p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6876p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6877p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6878p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6879b78 = Instance.new("SpecialMesh", p78)
6880b78.MeshType = Enum.MeshType.Wedge
6881b78.Name = "Mesh"
6882b78.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
6883p79 = Instance.new("WedgePart", m8)
6884p79.BrickColor = BrickColor.new("Lime green")
6885p79.Material = Enum.Material.Neon
6886p79.Reflectance = 0.40000000596046
6887p79.Name = "Wedge"
6888p79.CFrame = CFrame.new(2.69999964e-005, -11.9133091, 0.0700842142, 1, -1.68899177e-007, 5.27444577e-009, -5.28105097e-008, -0.342020273, -0.939694166, 1.60517516e-007, 0.939694166, -0.342020243)
6889p79.CanCollide = false
6890p79.Locked = true
6891p79.FormFactor = Enum.FormFactor.Custom
6892p79.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6893p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6894p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6895p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6896p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6897p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6898p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6899b79 = Instance.new("SpecialMesh", p79)
6900b79.MeshType = Enum.MeshType.Wedge
6901b79.Name = "Mesh"
6902b79.Scale = Vector3.new(0.334640861, 0.535425484, 0.401569068)
6903p80 = Instance.new("WedgePart", m8)
6904p80.BrickColor = BrickColor.new("Black")
6905p80.Material = Enum.Material.Metal
6906p80.Reflectance = 0.40000000596046
6907p80.Name = "Wedge"
6908p80.CFrame = CFrame.new(2.69999964e-005, -11.9147787, 1.51684833, -1, 1.58138e-008, 2.8589703e-008, 3.25942473e-008, 0.422618747, 0.906309128, 2.24968311e-009, 0.906309128, -0.422618806)
6909p80.CanCollide = false
6910p80.Locked = true
6911p80.FormFactor = Enum.FormFactor.Custom
6912p80.Size = Vector3.new(0.220499977, 0.324668586, 0.220499977)
6913p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6914p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6915p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6916p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6917p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6918p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6919b80 = Instance.new("SpecialMesh", p80)
6920b80.MeshType = Enum.MeshType.Wedge
6921b80.Name = "Mesh"
6922b80.Scale = Vector3.new(0.267712682, 1, 0.133856341)
6923p81 = Instance.new("WedgePart", m8)
6924p81.BrickColor = BrickColor.new("Lime green")
6925p81.Material = Enum.Material.Neon
6926p81.Reflectance = 0.40000000596046
6927p81.Name = "Wedge"
6928p81.CFrame = CFrame.new(2.69999964e-005, -11.8880205, -0.00143384933, 1, -8.62400285e-008, 8.88349216e-009, 2.11481286e-008, 0.342020214, 0.939694047, -8.40776266e-008, -0.939694047, 0.342020124)
6929p81.CanCollide = false
6930p81.Locked = true
6931p81.FormFactor = Enum.FormFactor.Custom
6932p81.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6933p81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6934p81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6935p81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6936p81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6937p81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6938p81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6939b81 = Instance.new("SpecialMesh", p81)
6940b81.MeshType = Enum.MeshType.Wedge
6941b81.Name = "Mesh"
6942b81.Scale = Vector3.new(0.334640861, 0.267712742, 0.401569068)
6943p82 = Instance.new("WedgePart", m8)
6944p82.BrickColor = BrickColor.new("Really black")
6945p82.Material = Enum.Material.Metal
6946p82.Reflectance = 0.40000000596046
6947p82.Name = "Wedge"
6948p82.CFrame = CFrame.new(2.69999964e-005, -11.1964474, 1.88168073, 1, -2.43563321e-008, -1.04780362e-007, -1.2949517e-008, 0.939693809, -0.342020929, 1.06791781e-007, 0.342020839, 0.939693809)
6949p82.CanCollide = false
6950p82.Locked = true
6951p82.FormFactor = Enum.FormFactor.Custom
6952p82.Size = Vector3.new(0.220499977, 0.314338177, 0.220499977)
6953p82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6954p82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6955p82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6956p82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6957p82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6958p82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6959b82 = Instance.new("SpecialMesh", p82)
6960b82.MeshType = Enum.MeshType.Wedge
6961b82.Name = "Mesh"
6962b82.Scale = Vector3.new(0.261019886, 1, 0.307869673)
6963p83 = Instance.new("WedgePart", m8)
6964p83.BrickColor = BrickColor.new("Really black")
6965p83.Material = Enum.Material.Metal
6966p83.Reflectance = 0.40000000596046
6967p83.Name = "Wedge"
6968p83.CFrame = CFrame.new(2.69999982e-005, -11.1028252, 1.9750396, -1, -2.43563356e-008, 1.73575856e-008, -1.695091e-008, 0.939693809, 0.342020959, -2.46411389e-008, 0.34202081, -0.939693809)
6969p83.CanCollide = false
6970p83.Locked = true
6971p83.FormFactor = Enum.FormFactor.Custom
6972p83.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6973p83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6974p83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6975p83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6976p83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6977p83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6978p83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6979b83 = Instance.new("SpecialMesh", p83)
6980b83.MeshType = Enum.MeshType.Wedge
6981b83.Name = "Mesh"
6982b83.Scale = Vector3.new(0.261019886, 0.337987304, 0.204131007)
6983p84 = Instance.new("WedgePart", m8)
6984p84.BrickColor = BrickColor.new("Lime green")
6985p84.Material = Enum.Material.Neon
6986p84.Reflectance = 0.40000000596046
6987p84.Name = "Wedge"
6988p84.CFrame = CFrame.new(2.69999964e-005, -11.9309464, 0.202805281, -1, -1.18273746e-009, 8.8834895e-009, 8.75221495e-009, -0.342020243, 0.939694047, 1.92697125e-009, 0.939694047, 0.342020094)
6989p84.CanCollide = false
6990p84.Locked = true
6991p84.FormFactor = Enum.FormFactor.Custom
6992p84.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6993p84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6994p84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6995p84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6996p84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6997p84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6998p84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6999b84 = Instance.new("SpecialMesh", p84)
7000b84.MeshType = Enum.MeshType.Wedge
7001b84.Name = "Mesh"
7002b84.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
7003p85 = Instance.new("WedgePart", m8)
7004p85.BrickColor = BrickColor.new("Black")
7005p85.Material = Enum.Material.Metal
7006p85.Reflectance = 0.40000000596046
7007p85.Name = "Wedge"
7008p85.CFrame = CFrame.new(2.69999964e-005, -11.7129288, 1.75927424, -1, -2.76164442e-008, 9.79634507e-009, -1.16697887e-008, 0.681997418, 0.731356382, -2.68784923e-008, 0.731356263, -0.681997478)
7009p85.CanCollide = false
7010p85.Locked = true
7011p85.FormFactor = Enum.FormFactor.Custom
7012p85.Size = Vector3.new(0.220499977, 0.324668586, 0.220499977)
7013p85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7014p85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7015p85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7016p85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7017p85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7018p85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7019b85 = Instance.new("SpecialMesh", p85)
7020b85.MeshType = Enum.MeshType.Wedge
7021b85.Name = "Mesh"
7022b85.Scale = Vector3.new(0.267712682, 1, 0.264366329)
7023p86 = Instance.new("WedgePart", m8)
7024p86.BrickColor = BrickColor.new("Lime green")
7025p86.Material = Enum.Material.Neon
7026p86.Reflectance = 0.40000000596046
7027p86.Name = "Wedge"
7028p86.CFrame = CFrame.new(2.7e-005, -11.9805536, 1.1176064, -1, -8.68188743e-010, 1.24787238e-008, 1.22781785e-008, -0.258819252, 0.965927005, 2.39117615e-009, 0.965927005, 0.258819193)
7029p86.CanCollide = false
7030p86.Locked = true
7031p86.FormFactor = Enum.FormFactor.Custom
7032p86.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7033p86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7034p86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7035p86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7036p86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7037p86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7038p86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7039b86 = Instance.new("SpecialMesh", p86)
7040b86.MeshType = Enum.MeshType.Wedge
7041b86.Name = "Mesh"
7042b86.Scale = Vector3.new(0.334640861, 0.602353632, 0.133856341)
7043p87 = Instance.new("WedgePart", m8)
7044p87.BrickColor = BrickColor.new("Lime green")
7045p87.Material = Enum.Material.Neon
7046p87.Reflectance = 0.40000000596046
7047p87.Name = "Wedge"
7048p87.CFrame = CFrame.new(2.69999982e-005, -11.8886356, 0.251966357, -1, 8.14764007e-008, 5.27445554e-009, 2.29101431e-008, 0.342020154, -0.939693749, -7.83667886e-008, -0.939693749, -0.342020094)
7049p87.CanCollide = false
7050p87.Locked = true
7051p87.FormFactor = Enum.FormFactor.Custom
7052p87.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7053p87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7054p87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7055p87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7056p87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7057p87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7058p87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7059b87 = Instance.new("SpecialMesh", p87)
7060b87.MeshType = Enum.MeshType.Wedge
7061b87.Name = "Mesh"
7062b87.Scale = Vector3.new(0.334640861, 0.267712742, 0.334640861)
7063p88 = Instance.new("WedgePart", m8)
7064p88.BrickColor = BrickColor.new("Lime green")
7065p88.Material = Enum.Material.Neon
7066p88.Reflectance = 0.40000000596046
7067p88.Name = "Wedge"
7068p88.CFrame = CFrame.new(2.7e-005, -11.869071, 0.470699608, -1, 8.14764007e-008, 5.27445554e-009, 2.29101431e-008, 0.342020154, -0.939693749, -7.83667886e-008, -0.939693749, -0.342020094)
7069p88.CanCollide = false
7070p88.Locked = true
7071p88.FormFactor = Enum.FormFactor.Custom
7072p88.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7073p88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7074p88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7075p88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7076p88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7077p88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7078p88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7079b88 = Instance.new("SpecialMesh", p88)
7080b88.MeshType = Enum.MeshType.Wedge
7081b88.Name = "Mesh"
7082b88.Scale = Vector3.new(0.334640861, 0.602353632, 0.267712682)
7083p89 = Instance.new("WedgePart", m8)
7084p89.BrickColor = BrickColor.new("Lime green")
7085p89.Material = Enum.Material.Neon
7086p89.Reflectance = 0.40000000596046
7087p89.Name = "Wedge"
7088p89.CFrame = CFrame.new(2.69999982e-005, -11.9583426, -0.0893729925, -1, -1.18272325e-009, 8.88348239e-009, 8.75221673e-009, -0.342020214, 0.93969357, 1.92696215e-009, 0.93969357, 0.342020154)
7089p89.CanCollide = false
7090p89.Locked = true
7091p89.FormFactor = Enum.FormFactor.Custom
7092p89.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7093p89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7094p89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7095p89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7096p89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7097p89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7098p89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7099b89 = Instance.new("SpecialMesh", p89)
7100b89.MeshType = Enum.MeshType.Wedge
7101b89.Name = "Mesh"
7102b89.Scale = Vector3.new(0.334640861, 0.803138077, 0.133856341)
7103p90 = Instance.new("WedgePart", m8)
7104p90.BrickColor = BrickColor.new("Lime green")
7105p90.Material = Enum.Material.Neon
7106p90.Reflectance = 0.40000000596046
7107p90.Name = "Wedge"
7108p90.CFrame = CFrame.new(2.69999982e-005, -11.8805695, 0.729635715, 1, -3.05929149e-008, 8.75114452e-008, -8.45121022e-008, 0.0871560574, 0.996195555, -3.81037033e-008, -0.996195555, 0.0871560574)
7109p90.CanCollide = false
7110p90.Locked = true
7111p90.FormFactor = Enum.FormFactor.Custom
7112p90.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7113p90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7114p90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7115p90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7116p90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7117p90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7118p90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7119b90 = Instance.new("SpecialMesh", p90)
7120b90.MeshType = Enum.MeshType.Wedge
7121b90.Name = "Mesh"
7122b90.Scale = Vector3.new(0.334640861, 0.267712742, 0.401569068)
7123p91 = Instance.new("WedgePart", m8)
7124p91.BrickColor = BrickColor.new("Really black")
7125p91.Material = Enum.Material.Metal
7126p91.Reflectance = 0.40000000596046
7127p91.Name = "Wedge"
7128p91.CFrame = CFrame.new(2.69999982e-005, -11.2718382, 1.82602453, -1, 1.16832744e-007, -9.28606454e-008, -1.69508567e-008, -0.707107246, -0.707107663, -1.4827576e-007, -0.707107663, 0.707107246)
7129p91.CanCollide = false
7130p91.Locked = true
7131p91.FormFactor = Enum.FormFactor.Custom
7132p91.Size = Vector3.new(0.220499977, 0.401408434, 0.220499977)
7133p91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7134p91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7135p91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7136p91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7137p91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7138p91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7139b91 = Instance.new("SpecialMesh", p91)
7140b91.MeshType = Enum.MeshType.Wedge
7141b91.Name = "Mesh"
7142b91.Scale = Vector3.new(0.267712682, 1, 0.200784534)
7143p92 = Instance.new("WedgePart", m8)
7144p92.BrickColor = BrickColor.new("Lime green")
7145p92.Material = Enum.Material.Neon
7146p92.Reflectance = 0.40000000596046
7147p92.Name = "Wedge"
7148p92.CFrame = CFrame.new(2.69999982e-005, -11.984252, 1.01731598, -1, -8.68163763e-010, 1.24787114e-008, 1.22781865e-008, -0.258819163, 0.965926766, 2.39115083e-009, 0.965926766, 0.258819163)
7149p92.CanCollide = false
7150p92.Locked = true
7151p92.FormFactor = Enum.FormFactor.Custom
7152p92.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7153p92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7154p92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7155p92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7156p92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7157p92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7158p92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7159b92 = Instance.new("SpecialMesh", p92)
7160b92.MeshType = Enum.MeshType.Wedge
7161b92.Name = "Mesh"
7162b92.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
7163p93 = Instance.new("WedgePart", m8)
7164p93.BrickColor = BrickColor.new("Lime green")
7165p93.Material = Enum.Material.Neon
7166p93.Reflectance = 0.40000000596046
7167p93.Name = "Wedge"
7168p93.CFrame = CFrame.new(2.69999964e-005, -11.9214983, 0.99980092, 1, -8.93497187e-008, 2.29101715e-008, -2.29101325e-008, 2.98023224e-007, 1.00000083, -8.9349804e-008, -1.00000083, 2.98023224e-007)
7169p93.CanCollide = false
7170p93.Locked = true
7171p93.FormFactor = Enum.FormFactor.Custom
7172p93.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7173p93.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7174p93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7175p93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7176p93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7177p93.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7178p93.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7179b93 = Instance.new("SpecialMesh", p93)
7180b93.MeshType = Enum.MeshType.Wedge
7181b93.Name = "Mesh"
7182b93.Scale = Vector3.new(0.334640861, 0.870066345, 0.133856341)
7183p94 = Instance.new("WedgePart", m8)
7184p94.BrickColor = BrickColor.new("Lime green")
7185p94.Material = Enum.Material.Neon
7186p94.Reflectance = 0.40000000596046
7187p94.Name = "Wedge"
7188p94.CFrame = CFrame.new(2.69999964e-005, -11.9032125, 0.212900162, -1, 8.8605475e-008, -9.63062732e-008, 1.20803207e-007, 0.342020005, -0.93969363, -5.03233366e-008, -0.93969363, -0.342020005)
7189p94.CanCollide = false
7190p94.Locked = true
7191p94.FormFactor = Enum.FormFactor.Custom
7192p94.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7193p94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7194p94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7195p94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7196p94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7197p94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7198p94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7199b94 = Instance.new("SpecialMesh", p94)
7200b94.MeshType = Enum.MeshType.Wedge
7201b94.Name = "Mesh"
7202b94.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
7203p95 = Instance.new("WedgePart", m8)
7204p95.BrickColor = BrickColor.new("Black")
7205p95.Material = Enum.Material.Metal
7206p95.Reflectance = 0.40000000596046
7207p95.Name = "Wedge"
7208p95.CFrame = CFrame.new(2.69999964e-005, -11.361845, 1.9233377, -1, -2.94099678e-008, 5.43784395e-009, -1.69508834e-008, 0.707107186, 0.707107663, -2.46411602e-008, 0.707107663, -0.707107186)
7209p95.CanCollide = false
7210p95.Locked = true
7211p95.FormFactor = Enum.FormFactor.Custom
7212p95.Size = Vector3.new(0.220499977, 0.391078025, 0.222102806)
7213p95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7214p95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7215p95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7216p95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7217p95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7218p95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7219b95 = Instance.new("SpecialMesh", p95)
7220b95.MeshType = Enum.MeshType.Wedge
7221b95.Name = "Mesh"
7222b95.Scale = Vector3.new(0.261019886, 1, 1)
7223p96 = Instance.new("WedgePart", m8)
7224p96.BrickColor = BrickColor.new("Lime green")
7225p96.Material = Enum.Material.Neon
7226p96.Reflectance = 0.40000000596046
7227p96.Name = "Wedge"
7228p96.CFrame = CFrame.new(2.69999982e-005, -11.9530287, 1.26521814, -1, -3.29206387e-008, 2.51881929e-008, 1.58094231e-008, 0.258819431, 0.965926588, -3.83181202e-008, 0.965926588, -0.258819431)
7229p96.CanCollide = false
7230p96.Locked = true
7231p96.FormFactor = Enum.FormFactor.Custom
7232p96.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7233p96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7234p96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7235p96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7236p96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7237p96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7238p96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7239b96 = Instance.new("SpecialMesh", p96)
7240b96.MeshType = Enum.MeshType.Wedge
7241b96.Name = "Mesh"
7242b96.Scale = Vector3.new(0.334640861, 0.736209989, 0.133856341)
7243p97 = Instance.new("WedgePart", m8)
7244p97.BrickColor = BrickColor.new("Lime green")
7245p97.Material = Enum.Material.Neon
7246p97.Reflectance = 0.40000000596046
7247p97.Name = "Wedge"
7248p97.CFrame = CFrame.new(2.69999964e-005, -11.9457083, -0.210409045, -1, -1.18269794e-009, 8.88346818e-009, 8.75222206e-009, -0.342020214, 0.939693332, 1.92694349e-009, 0.939693332, 0.342020214)
7249p97.CanCollide = false
7250p97.Locked = true
7251p97.FormFactor = Enum.FormFactor.Custom
7252p97.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7253p97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7254p97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7255p97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7256p97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7257p97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7258p97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7259b97 = Instance.new("SpecialMesh", p97)
7260b97.MeshType = Enum.MeshType.Wedge
7261b97.Name = "Mesh"
7262b97.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
7263p98 = Instance.new("WedgePart", m8)
7264p98.BrickColor = BrickColor.new("Lime green")
7265p98.Material = Enum.Material.Neon
7266p98.Reflectance = 0.40000000596046
7267p98.Name = "Wedge"
7268p98.CFrame = CFrame.new(2.7e-005, -11.9322329, 0.816780686, 1, -1.68899135e-007, 5.27447064e-009, -5.2810492e-008, -0.342020094, -0.939693272, 1.60517359e-007, 0.939693272, -0.342020094)
7269p98.CanCollide = false
7270p98.Locked = true
7271p98.FormFactor = Enum.FormFactor.Custom
7272p98.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7273p98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7274p98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7275p98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7276p98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7277p98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7278p98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7279b98 = Instance.new("SpecialMesh", p98)
7280b98.MeshType = Enum.MeshType.Wedge
7281b98.Name = "Mesh"
7282b98.Scale = Vector3.new(0.334640861, 0.669281721, 0.267712682)
7283p99 = Instance.new("WedgePart", m8)
7284p99.BrickColor = BrickColor.new("Lime green")
7285p99.Material = Enum.Material.Neon
7286p99.Reflectance = 0.40000000596046
7287p99.Name = "Wedge"
7288p99.CFrame = CFrame.new(2.69999982e-005, -11.9055624, 1.3254329, -1, -3.49906557e-008, 2.22318874e-008, 1.58180669e-008, 0.173648253, 0.984808207, -3.83196053e-008, 0.984808207, -0.173648253)
7289p99.CanCollide = false
7290p99.Locked = true
7291p99.FormFactor = Enum.FormFactor.Custom
7292p99.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7293p99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7294p99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7295p99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7296p99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7297p99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7298p99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7299b99 = Instance.new("SpecialMesh", p99)
7300b99.MeshType = Enum.MeshType.Wedge
7301b99.Name = "Mesh"
7302b99.Scale = Vector3.new(0.334640861, 0.803138077, 0.133856341)
7303p100 = Instance.new("WedgePart", m8)
7304p100.BrickColor = BrickColor.new("Lime green")
7305p100.Material = Enum.Material.Neon
7306p100.Reflectance = 0.40000000596046
7307p100.Name = "Wedge"
7308p100.CFrame = CFrame.new(2.69999982e-005, -11.9114323, 1.08247674, -1, 1.18015713e-007, 8.75114381e-008, 7.68926611e-008, -0.0871561319, 0.996195078, 1.2519385e-007, 0.996195078, 0.0871561319)
7309p100.CanCollide = false
7310p100.Locked = true
7311p100.FormFactor = Enum.FormFactor.Custom
7312p100.Size = Vector3.new(0.220499977, 0.236122593, 0.220499977)
7313p100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7314p100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7315p100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7316p100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7317p100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7318p100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7319b100 = Instance.new("SpecialMesh", p100)
7320b100.MeshType = Enum.MeshType.Wedge
7321b100.Name = "Mesh"
7322b100.Scale = Vector3.new(0.334640861, 1, 0.133856341)
7323p101 = Instance.new("WedgePart", m8)
7324p101.BrickColor = BrickColor.new("Lime green")
7325p101.Material = Enum.Material.Neon
7326p101.Reflectance = 0.40000000596046
7327p101.Name = "Wedge"
7328p101.CFrame = CFrame.new(2.69999982e-005, -11.8602819, 0.575987279, -1, 8.14763652e-008, 5.27446709e-009, 2.29101644e-008, 0.342020035, -0.939693093, -7.83667531e-008, -0.939693093, -0.342020035)
7329p101.CanCollide = false
7330p101.Locked = true
7331p101.FormFactor = Enum.FormFactor.Custom
7332p101.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7333p101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7334p101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7335p101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7336p101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7337p101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7338p101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7339b101 = Instance.new("SpecialMesh", p101)
7340b101.MeshType = Enum.MeshType.Wedge
7341b101.Name = "Mesh"
7342b101.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
7343p102 = Instance.new("WedgePart", m8)
7344p102.BrickColor = BrickColor.new("Lime green")
7345p102.Material = Enum.Material.Neon
7346p102.Reflectance = 0.40000000596046
7347p102.Name = "Wedge"
7348p102.CFrame = CFrame.new(2.69999982e-005, -11.8709736, -0.283571124, -1, 8.14763652e-008, 5.27447064e-009, 2.29101609e-008, 0.342020035, -0.939693093, -7.83667531e-008, -0.939693093, -0.342020035)
7349p102.CanCollide = false
7350p102.Locked = true
7351p102.FormFactor = Enum.FormFactor.Custom
7352p102.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7353p102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7354p102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7355p102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7356p102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7357p102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7358p102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7359b102 = Instance.new("SpecialMesh", p102)
7360b102.MeshType = Enum.MeshType.Wedge
7361b102.Name = "Mesh"
7362b102.Scale = Vector3.new(0.334640861, 0.736209989, 0.334640861)
7363p103 = Instance.new("WedgePart", m8)
7364p103.BrickColor = BrickColor.new("Lime green")
7365p103.Material = Enum.Material.Neon
7366p103.Reflectance = 0.40000000596046
7367p103.Name = "Wedge"
7368p103.CFrame = CFrame.new(2.69999982e-005, -11.9097681, 0.739346266, 1, -8.65546141e-008, 1.24786919e-008, 1.03484972e-008, 0.258819103, 0.965926111, -8.68351009e-008, -0.965926111, 0.258819103)
7369p103.CanCollide = false
7370p103.Locked = true
7371p103.FormFactor = Enum.FormFactor.Custom
7372p103.Size = Vector3.new(0.220499977, 0.221364915, 0.220499977)
7373p103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7374p103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7375p103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7376p103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7377p103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7378p103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7379b103 = Instance.new("SpecialMesh", p103)
7380b103.MeshType = Enum.MeshType.Wedge
7381b103.Name = "Mesh"
7382b103.Scale = Vector3.new(0.334640861, 1, 0.133856341)
7383p104 = Instance.new("WedgePart", m8)
7384p104.BrickColor = BrickColor.new("Lime green")
7385p104.Material = Enum.Material.Neon
7386p104.Reflectance = 0.40000000596046
7387p104.Name = "Wedge"
7388p104.CFrame = CFrame.new(2.69999964e-005, -11.9271755, 0.55203414, 1, -1.68899149e-007, 5.27447863e-009, -5.28104778e-008, -0.342019916, -0.939692855, 1.60517274e-007, 0.939692855, -0.342019916)
7389p104.CanCollide = false
7390p104.Locked = true
7391p104.FormFactor = Enum.FormFactor.Custom
7392p104.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7393p104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7394p104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7395p104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7396p104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7397p104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7398p104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7399b104 = Instance.new("SpecialMesh", p104)
7400b104.MeshType = Enum.MeshType.Wedge
7401b104.Name = "Mesh"
7402b104.Scale = Vector3.new(0.334640861, 0.535425484, 0.267712682)
7403p105 = Instance.new("WedgePart", m8)
7404p105.BrickColor = BrickColor.new("Really black")
7405p105.Material = Enum.Material.Metal
7406p105.Reflectance = 0.40000000596046
7407p105.Name = "Wedge"
7408p105.CFrame = CFrame.new(2.69999982e-005, -11.3177481, 1.88445807, -1, -2.94099785e-008, 5.43784395e-009, -1.69508549e-008, 0.707106531, 0.707107127, -2.46411282e-008, 0.707107127, -0.707106531)
7409p105.CanCollide = false
7410p105.Locked = true
7411p105.FormFactor = Enum.FormFactor.Custom
7412p105.Size = Vector3.new(0.220499977, 0.383699238, 0.220499977)
7413p105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7414p105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7415p105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7416p105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7417p105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7418p105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7419b105 = Instance.new("SpecialMesh", p105)
7420b105.MeshType = Enum.MeshType.Wedge
7421b105.Name = "Mesh"
7422b105.Scale = Vector3.new(0.267712682, 1, 0.468497276)
7423p106 = Instance.new("WedgePart", m8)
7424p106.BrickColor = BrickColor.new("Lime green")
7425p106.Material = Enum.Material.Neon
7426p106.Reflectance = 0.40000000596046
7427p106.Name = "Wedge"
7428p106.CFrame = CFrame.new(2.69999964e-005, -11.8602819, 0.325106204, -1, 8.14763723e-008, 5.27446709e-009, 2.29101538e-008, 0.342019886, -0.939692736, -7.83667247e-008, -0.939692736, -0.342019886)
7429p106.CanCollide = false
7430p106.Locked = true
7431p106.FormFactor = Enum.FormFactor.Custom
7432p106.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7433p106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7434p106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7435p106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7436p106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7437p106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7438p106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7439b106 = Instance.new("SpecialMesh", p106)
7440b106.MeshType = Enum.MeshType.Wedge
7441b106.Name = "Mesh"
7442b106.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
7443p107 = Instance.new("WedgePart", m8)
7444p107.BrickColor = BrickColor.new("Lime green")
7445p107.Material = Enum.Material.Neon
7446p107.Reflectance = 0.40000000596046
7447p107.Name = "Wedge"
7448p107.CFrame = CFrame.new(2.69999982e-005, -11.9731445, 1.13999915, 1, -8.93497187e-008, 2.29101502e-008, -2.29101129e-008, 3.87430248e-007, 1, -8.93497258e-008, -1, 3.87430276e-007)
7449p107.CanCollide = false
7450p107.Locked = true
7451p107.FormFactor = Enum.FormFactor.Custom
7452p107.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7453p107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7454p107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7455p107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7456p107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7457p107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7458p107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7459b107 = Instance.new("SpecialMesh", p107)
7460b107.MeshType = Enum.MeshType.Wedge
7461b107.Name = "Mesh"
7462b107.Scale = Vector3.new(0.334640861, 0.468497276, 0.133856341)
7463p108 = Instance.new("WedgePart", m8)
7464p108.BrickColor = BrickColor.new("Black")
7465p108.Material = Enum.Material.Metal
7466p108.Reflectance = 0.40000000596046
7467p108.Name = "Wedge"
7468p108.CFrame = CFrame.new(2.69999982e-005, -12.0124025, 1.01832807, 1, 3.82198948e-008, 2.11711555e-008, -2.11711537e-008, -2.98023224e-008, 1, 3.82198913e-008, -1, -2.98023224e-008)
7469p108.CanCollide = false
7470p108.Locked = true
7471p108.FormFactor = Enum.FormFactor.Custom
7472p108.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7473p108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7474p108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7475p108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7476p108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7477p108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7478p108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7479b108 = Instance.new("SpecialMesh", p108)
7480b108.MeshType = Enum.MeshType.Wedge
7481b108.Name = "Mesh"
7482b108.Scale = Vector3.new(0.267712682, 0.669281721, 0.0669281706)
7483p109 = Instance.new("WedgePart", m8)
7484p109.BrickColor = BrickColor.new("Lime green")
7485p109.Material = Enum.Material.Neon
7486p109.Reflectance = 0.40000000596046
7487p109.Name = "Wedge"
7488p109.CFrame = CFrame.new(2.7e-005, -11.9461164, 0.330772072, -1, -1.18270771e-009, 8.88346818e-009, 8.75223805e-009, -0.342019796, 0.939692795, 1.92694571e-009, 0.939692795, 0.342019796)
7489p109.CanCollide = false
7490p109.Locked = true
7491p109.FormFactor = Enum.FormFactor.Custom
7492p109.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7493p109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7494p109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7495p109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7496p109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7497p109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7498p109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7499b109 = Instance.new("SpecialMesh", p109)
7500b109.MeshType = Enum.MeshType.Wedge
7501b109.Name = "Mesh"
7502b109.Scale = Vector3.new(0.334640861, 0.870066345, 0.133856341)
7503p110 = Instance.new("WedgePart", m8)
7504p110.BrickColor = BrickColor.new("Lime green")
7505p110.Material = Enum.Material.Neon
7506p110.Reflectance = 0.40000000596046
7507p110.Name = "Wedge"
7508p110.CFrame = CFrame.new(2.69999982e-005, -11.8880196, 0.565889001, -1, 5.94638294e-009, -9.26972632e-008, -8.91407268e-008, -0.342019916, 0.939692736, -2.61165312e-008, 0.939692736, 0.342019916)
7509p110.CanCollide = false
7510p110.Locked = true
7511p110.FormFactor = Enum.FormFactor.Custom
7512p110.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7513p110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7514p110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7515p110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7516p110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7517p110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7518p110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7519b110 = Instance.new("SpecialMesh", p110)
7520b110.MeshType = Enum.MeshType.Wedge
7521b110.Name = "Mesh"
7522b110.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
7523p111 = Instance.new("Part", m8)
7524p111.BrickColor = BrickColor.new("Really black")
7525p111.Material = Enum.Material.Metal
7526p111.Transparency = 1
7527p111.Name = "Hitbox"
7528p111.CFrame = CFrame.new(2.7e-005, -11.550066, 0.678469002, 1, -4.08900576e-008, -5.9526446e-008, -5.9526446e-008, 0, -1, 4.08900576e-008, 1, -2.43403981e-015)
7529p111.CanCollide = false
7530p111.Locked = true
7531p111.FormFactor = Enum.FormFactor.Custom
7532p111.Size = Vector3.new(0.22, 2.57, 1.22)
7533p111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7534p111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7535p111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7536p111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7537p111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7538p111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7539b111 = Instance.new("BlockMesh", p111)
7540b111.Name = "Mesh"
7541w1 = Instance.new("Weld", p1)
7542w1.Name = "Block_Weld"
7543w1.Part0 = p1
7544w1.C0 = CFrame.new(-2.69832744e-005, -0.186136514, 1.51893806, 1, -1.84926652e-008, -5.47947643e-009, -1.44443195e-008, -0.906307817, 0.4226183, -1.2781431e-008, -0.42261833, -0.906307876)
7545w1.Part1 = p2
7546w1.C1 = CFrame.new(-2.69930079e-005, 0.251219004, 0.42801699, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
7547w2 = Instance.new("Weld", p2)
7548w2.Name = "Block_Weld"
7549w2.Part0 = p2
7550w2.C0 = CFrame.new(-2.69930079e-005, 0.251219004, 0.42801699, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
7551w2.Part1 = p3
7552w2.C1 = CFrame.new(-2.69900993e-005, 0.251215994, 0.959293008, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
7553w3 = Instance.new("Weld", p3)
7554w3.Name = "Block_Weld"
7555w3.Part0 = p3
7556w3.C0 = CFrame.new(-2.69900993e-005, 0.251215994, 0.959293008, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
7557w3.Part1 = p4
7558w3.C1 = CFrame.new(-2.69401171e-005, 1.28190136, 0.0890034437, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
7559w4 = Instance.new("Weld", p4)
7560w4.Name = "Block_Weld"
7561w4.Part0 = p4
7562w4.C0 = CFrame.new(-2.69401171e-005, 1.28190136, 0.0890034437, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
7563w4.Part1 = p5
7564w4.C1 = CFrame.new(-2.69969169e-005, 0.137085795, -0.374426812, 1, -1.85013622e-008, -5.47535173e-009, -1.92582732e-008, -0.939692676, -0.342020124, 1.18268995e-009, 0.342020094, -0.939692676)
7565w5 = Instance.new("Weld", p5)
7566w5.Name = "Block_Weld"
7567w5.Part0 = p5
7568w5.C0 = CFrame.new(-2.69969169e-005, 0.137085795, -0.374426812, 1, -1.85013622e-008, -5.47535173e-009, -1.92582732e-008, -0.939692676, -0.342020124, 1.18268995e-009, 0.342020094, -0.939692676)
7569w5.Part1 = p6
7570w5.C1 = CFrame.new(-2.69537759e-005, 0.678798974, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7571w6 = Instance.new("Weld", p6)
7572w6.Name = "Block_Weld"
7573w6.Part0 = p6
7574w6.C0 = CFrame.new(-2.69537759e-005, 0.678798974, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7575w6.Part1 = p7
7576w6.C1 = CFrame.new(-2.69908196e-005, 0.433371782, 0.833767056, 1, -2.22994831e-008, -5.07635534e-009, -2.28535058e-008, -0.965925813, -0.258819252, 8.68153105e-010, 0.258819252, -0.965925813)
7577w7 = Instance.new("Weld", p7)
7578w7.Name = "Block_Weld"
7579w7.Part0 = p7
7580w7.C0 = CFrame.new(-2.69908196e-005, 0.433371782, 0.833767056, 1, -2.22994831e-008, -5.07635534e-009, -2.28535058e-008, -0.965925813, -0.258819252, 8.68153105e-010, 0.258819252, -0.965925813)
7581w7.Part1 = p8
7582w7.C1 = CFrame.new(-2.69945249e-005, 0.284905016, 0.00881863385, 1, -1.85013658e-008, -5.47534995e-009, -1.92582768e-008, -0.939692736, -0.342019945, 1.1826895e-009, 0.342019945, -0.939692736)
7583w8 = Instance.new("Weld", p8)
7584w8.Name = "Block_Weld"
7585w8.Part0 = p8
7586w8.C0 = CFrame.new(-2.69945249e-005, 0.284905016, 0.00881863385, 1, -1.85013658e-008, -5.47534995e-009, -1.92582768e-008, -0.939692736, -0.342019945, 1.1826895e-009, 0.342019945, -0.939692736)
7587w8.Part1 = p9
7588w8.C1 = CFrame.new(-2.6987369e-005, 0.398795992, 0.959297001, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7589w9 = Instance.new("Weld", p9)
7590w9.Name = "Block_Weld"
7591w9.Part0 = p9
7592w9.C0 = CFrame.new(-2.6987369e-005, 0.398795992, 0.959297001, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7593w9.Part1 = p10
7594w9.C1 = CFrame.new(-2.69795964e-005, -0.736729562, 1.60363591, 1, -1.84926936e-008, -5.47947465e-009, -9.20173093e-009, -0.70710659, 0.707107067, -1.69508851e-008, -0.707107008, -0.707106531)
7595w10 = Instance.new("Weld", p10)
7596w10.Name = "Circle_Weld"
7597w10.Part0 = p10
7598w10.C0 = CFrame.new(-2.69795964e-005, -0.736729562, 1.60363591, 1, -1.84926936e-008, -5.47947465e-009, -9.20173093e-009, -0.70710659, 0.707107067, -1.69508851e-008, -0.707107008, -0.707106531)
7599w10.Part1 = p11
7600w10.C1 = CFrame.new(-2.69700085e-005, 0.582876027, 0.487334013, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7601w11 = Instance.new("Weld", p11)
7602w11.Name = "Block_Weld"
7603w11.Part0 = p11
7604w11.C0 = CFrame.new(-2.69700085e-005, 0.582876027, 0.487334013, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7605w11.Part1 = p12
7606w11.C1 = CFrame.new(-2.70516502e-005, -0.478946328, -0.541931212, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
7607w12 = Instance.new("Weld", p12)
7608w12.Name = "Block_Weld"
7609w12.Part0 = p12
7610w12.C0 = CFrame.new(-2.70516502e-005, -0.478946328, -0.541931212, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
7611w12.Part1 = p13
7612w12.C1 = CFrame.new(-2.69418342e-005, 1.23103857, 0.0979698896, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
7613w13 = Instance.new("Weld", p13)
7614w13.Name = "Block_Weld"
7615w13.Part0 = p13
7616w13.C0 = CFrame.new(-2.69418342e-005, 1.23103857, 0.0979698896, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
7617w13.Part1 = p14
7618w13.C1 = CFrame.new(-2.6981159e-005, -0.784118533, 1.59557724, 1, -1.85013231e-008, -5.47617596e-009, -9.79630865e-009, -0.731355369, 0.681996644, -1.6622872e-008, -0.681996644, -0.731355369)
7619w14 = Instance.new("Weld", p14)
7620w14.Name = "Block_Weld"
7621w14.Part0 = p14
7622w14.C0 = CFrame.new(-2.6981159e-005, -0.784118533, 1.59557724, 1, -1.85013231e-008, -5.47617596e-009, -9.79630865e-009, -0.731355369, 0.681996644, -1.6622872e-008, -0.681996644, -0.731355369)
7623w14.Part1 = p15
7624w14.C1 = CFrame.new(-2.69917327e-005, 0.398790002, 0.162386, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7625w15 = Instance.new("Weld", p15)
7626w15.Name = "Handle_Weld"
7627w15.Part0 = p15
7628w15.C0 = CFrame.new(-2.69917327e-005, 0.398790002, 0.162386, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7629w15.Part1 = p16
7630w15.C1 = CFrame.new(-2.69356715e-005, 1.12153399, 0.310250998, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7631w16 = Instance.new("Weld", p16)
7632w16.Name = "Block_Weld"
7633w16.Part0 = p16
7634w16.C0 = CFrame.new(-2.69356715e-005, 1.12153399, 0.310250998, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7635w16.Part1 = p17
7636w16.C1 = CFrame.new(-2.69897973e-005, 0.238820702, 1.16951191, 1, -3.32849588e-008, -1.92696081e-009, -3.32849588e-008, -1, -5.96046448e-007, -1.92694105e-009, 5.96046448e-007, -1)
7637w17 = Instance.new("Weld", p17)
7638w17.Name = "Block_Weld"
7639w17.Part0 = p17
7640w17.C0 = CFrame.new(-2.69897973e-005, 0.238820702, 1.16951191, 1, -3.32849588e-008, -1.92696081e-009, -3.32849588e-008, -1, -5.96046448e-007, -1.92694105e-009, 5.96046448e-007, -1)
7641w17.Part1 = p18
7642w17.C1 = CFrame.new(-2.66556708e-005, -0.120330438, -1.77344465, 1, -1.30568679e-007, 1.80827243e-007, -9.71847456e-008, -0.984807849, -0.173648149, 2.00753092e-007, 0.173648149, -0.984807849)
7643w18 = Instance.new("Weld", p18)
7644w18.Name = "Block_Weld"
7645w18.Part0 = p18
7646w18.C0 = CFrame.new(-2.66556708e-005, -0.120330438, -1.77344465, 1, -1.30568679e-007, 1.80827243e-007, -9.71847456e-008, -0.984807849, -0.173648149, 2.00753092e-007, 0.173648149, -0.984807849)
7647w18.Part1 = p19
7648w18.C1 = CFrame.new(-2.69959182e-005, 0.251221001, -0.103256002, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
7649w19 = Instance.new("Weld", p19)
7650w19.Name = "Block_Weld"
7651w19.Part0 = p19
7652w19.C0 = CFrame.new(-2.69959182e-005, 0.251221001, -0.103256002, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
7653w19.Part1 = p20
7654w19.C1 = CFrame.new(-2.69467728e-005, 0.96053493, 0.227395192, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
7655w20 = Instance.new("Weld", p20)
7656w20.Name = "Block_Weld"
7657w20.Part0 = p20
7658w20.C0 = CFrame.new(-2.69467728e-005, 0.96053493, 0.227395192, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
7659w20.Part1 = p21
7660w20.C1 = CFrame.new(-2.69068951e-005, 0.768746018, 1.55135453, 1, -5.95264353e-008, 4.08900647e-008, 1.93162606e-008, 0.766044378, 0.642787635, -6.95864628e-008, -0.642787635, 0.766044378)
7661w21 = Instance.new("Weld", p21)
7662w21.Name = "Block_Weld"
7663w21.Part0 = p21
7664w21.C0 = CFrame.new(-2.69068951e-005, 0.768746018, 1.55135453, 1, -5.95264353e-008, 4.08900647e-008, 1.93162606e-008, 0.766044378, 0.642787635, -6.95864628e-008, -0.642787635, 0.766044378)
7665w21.Part1 = p22
7666w21.C1 = CFrame.new(-2.69946413e-005, 0.398795009, -0.368889004, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7667w22 = Instance.new("Weld", p22)
7668w22.Name = "Block_Weld"
7669w22.Part0 = p22
7670w22.C0 = CFrame.new(-2.69946413e-005, 0.398795009, -0.368889004, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7671w22.Part1 = p23
7672w22.C1 = CFrame.new(-2.69552838e-005, 0.641906977, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7673w23 = Instance.new("Weld", p23)
7674w23.Name = "Block_Weld"
7675w23.Part0 = p23
7676w23.C0 = CFrame.new(-2.69552838e-005, 0.641906977, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7677w23.Part1 = p24
7678w23.C1 = CFrame.new(-2.69185657e-005, 1.24407315, -1.15251172, 1, -5.95250427e-008, 4.08918623e-008, -7.1883612e-008, -0.766044438, 0.642787635, -6.93698077e-009, -0.642787635, -0.766044438)
7679w24 = Instance.new("Weld", p24)
7680w24.Name = "Block_Weld"
7681w24.Part0 = p24
7682w24.C0 = CFrame.new(-2.69185657e-005, 1.24407315, -1.15251172, 1, -5.95250427e-008, 4.08918623e-008, -7.1883612e-008, -0.766044438, 0.642787635, -6.93698077e-009, -0.642787635, -0.766044438)
7683w24.Part1 = p25
7684w24.C1 = CFrame.new(-2.69163629e-005, 1.59377503, 0.310250014, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7685w25 = Instance.new("Weld", p25)
7686w25.Name = "Block_Weld"
7687w25.Part0 = p25
7688w25.C0 = CFrame.new(-2.69163629e-005, 1.59377503, 0.310250014, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7689w25.Part1 = p26
7690w25.C1 = CFrame.new(-2.69902794e-005, 0.398795992, 0.428018987, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7691w26 = Instance.new("Weld", p26)
7692w26.Name = "Block_Weld"
7693w26.Part0 = p26
7694w26.C0 = CFrame.new(-2.69902794e-005, 0.398795992, 0.428018987, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7695w26.Part1 = p27
7696w26.C1 = CFrame.new(-2.69587144e-005, 0.835756719, 0.0972530842, 1, -5.87286522e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949752e-008, -0.965925872, -0.258819073)
7697w27 = Instance.new("Weld", p27)
7698w27.Name = "Circle_Weld"
7699w27.Part0 = p27
7700w27.C0 = CFrame.new(-2.69587144e-005, 0.835756719, 0.0972530842, 1, -5.87286522e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949752e-008, -0.965925872, -0.258819073)
7701w27.Part1 = p28
7702w27.C1 = CFrame.new(-2.69736647e-005, 0.523847997, 0.398797005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7703w28 = Instance.new("Weld", p28)
7704w28.Name = "Block_Weld"
7705w28.Part0 = p28
7706w28.C0 = CFrame.new(-2.69736647e-005, 0.523847997, 0.398797005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7707w28.Part1 = p29
7708w28.C1 = CFrame.new(-2.69856282e-005, -0.269396931, 1.4983108, 1, -1.85013231e-008, -5.47617596e-009, -1.48908761e-008, -0.920505881, 0.39072898, -1.22698536e-008, -0.390728921, -0.920505762)
7709w29 = Instance.new("Weld", p29)
7710w29.Name = "Block_Weld"
7711w29.Part0 = p29
7712w29.C0 = CFrame.new(-2.69856282e-005, -0.269396931, 1.4983108, 1, -1.85013231e-008, -5.47617596e-009, -1.48908761e-008, -0.920505881, 0.39072898, -1.22698536e-008, -0.390728921, -0.920505762)
7713w29.Part1 = p30
7714w29.C1 = CFrame.new(-2.69419597e-005, 1.38456392, -0.0497993827, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
7715w30 = Instance.new("Weld", p30)
7716w30.Name = "Block_Weld"
7717w30.Part0 = p30
7718w30.C0 = CFrame.new(-2.69419597e-005, 1.38456392, -0.0497993827, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
7719w30.Part1 = p31
7720w30.C1 = CFrame.new(2.69478169e-005, 0.342279971, -0.842677951, -1, 7.41767252e-008, 3.71994631e-008, -7.71366189e-008, -0.99619472, -0.0871560574, 3.05929575e-008, -0.0871560574, 0.99619472)
7721w31 = Instance.new("Weld", p31)
7722w31.Name = "Block_Weld"
7723w31.Part0 = p31
7724w31.C0 = CFrame.new(2.69478169e-005, 0.342279971, -0.842677951, -1, 7.41767252e-008, 3.71994631e-008, -7.71366189e-008, -0.99619472, -0.0871560574, 3.05929575e-008, -0.0871560574, 0.99619472)
7725w31.Part1 = p32
7726w31.C1 = CFrame.new(-2.69236225e-005, 1.26664269, 0.422248751, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
7727w32 = Instance.new("Weld", p32)
7728w32.Name = "Block_Weld"
7729w32.Part0 = p32
7730w32.C0 = CFrame.new(-2.69236225e-005, 1.26664269, 0.422248751, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
7731w32.Part1 = p33
7732w32.C1 = CFrame.new(-2.69888242e-005, 0.398795992, 0.693659008, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7733w33 = Instance.new("Weld", p33)
7734w33.Name = "Block_Weld"
7735w33.Part0 = p33
7736w33.C0 = CFrame.new(-2.69888242e-005, 0.398795992, 0.693659008, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7737w33.Part1 = p34
7738w33.C1 = CFrame.new(-2.6941103e-005, 0.98871398, 0.310249001, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7739w34 = Instance.new("Weld", p34)
7740w34.Name = "Block_Weld"
7741w34.Part0 = p34
7742w34.C0 = CFrame.new(-2.6941103e-005, 0.98871398, 0.310249001, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7743w34.Part1 = p35
7744w34.C1 = CFrame.new(-2.69199827e-005, 1.505234, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7745w35 = Instance.new("Weld", p35)
7746w35.Name = "Block_Weld"
7747w35.Part0 = p35
7748w35.C0 = CFrame.new(-2.69199827e-005, 1.505234, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7749w35.Part1 = p36
7750w35.C1 = CFrame.new(-2.70044802e-005, 0.310245991, -1.86679304, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7751w36 = Instance.new("Weld", p36)
7752w36.Name = "Circle_Weld"
7753w36.Part0 = p36
7754w36.C0 = CFrame.new(-2.70044802e-005, 0.310245991, -1.86679304, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7755w36.Part1 = p37
7756w36.C1 = CFrame.new(-2.69731972e-005, 0.523847997, 0.428321004, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7757w37 = Instance.new("Weld", p37)
7758w37.Name = "Block_Weld"
7759w37.Part0 = p37
7760w37.C0 = CFrame.new(-2.69731972e-005, 0.523847997, 0.428321004, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7761w37.Part1 = p38
7762w37.C1 = CFrame.new(-2.69113971e-005, 1.64542603, 0.358211011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7763w38 = Instance.new("Weld", p38)
7764w38.Name = "Block_Weld"
7765w38.Part0 = p38
7766w38.C0 = CFrame.new(-2.69113971e-005, 1.64542603, 0.358211011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7767w38.Part1 = p39
7768w38.C1 = CFrame.new(-2.69171051e-005, 1.64542603, 0.262297004, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7769w39 = Instance.new("Weld", p39)
7770w39.Name = "Block_Weld"
7771w39.Part0 = p39
7772w39.C0 = CFrame.new(-2.69171051e-005, 1.64542603, 0.262297004, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7773w39.Part1 = p40
7774w39.C1 = CFrame.new(-2.60786092e-005, -1.47300267, -1.1458329, 1, -2.72653097e-007, 4.60701557e-007, 2.62652719e-007, -0.50000006, -0.866025448, 4.66475342e-007, 0.866025448, -0.50000006)
7775w40 = Instance.new("Weld", p40)
7776w40.Name = "Block_Weld"
7777w40.Part0 = p40
7778w40.C0 = CFrame.new(-2.60786092e-005, -1.47300267, -1.1458329, 1, -2.72653097e-007, 4.60701557e-007, 2.62652719e-007, -0.50000006, -0.866025448, 4.66475342e-007, 0.866025448, -0.50000006)
7779w40.Part1 = p41
7780w40.C1 = CFrame.new(-2.70310993e-005, -0.393140078, -0.306183338, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
7781w41 = Instance.new("Weld", p41)
7782w41.Name = "Block_Weld"
7783w41.Part0 = p41
7784w41.C0 = CFrame.new(-2.70310993e-005, -0.393140078, -0.306183338, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
7785w41.Part1 = p42
7786w41.C1 = CFrame.new(-2.69543798e-005, 0.664047003, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7787w42 = Instance.new("Weld", p42)
7788w42.Name = "Block_Weld"
7789w42.Part0 = p42
7790w42.C0 = CFrame.new(-2.69543798e-005, 0.664047003, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7791w42.Part1 = p43
7792w42.C1 = CFrame.new(-2.69020748e-005, -0.731388211, 1.66569459, 1, -5.95262364e-008, 4.08903134e-008, 6.57224319e-008, 0.984807849, -0.173648149, -2.99324796e-008, 0.173648149, 0.984807849)
7793w43 = Instance.new("Weld", p43)
7794w43.Name = "Circle_Weld"
7795w43.Part0 = p43
7796w43.C0 = CFrame.new(-2.69020748e-005, -0.731388211, 1.66569459, 1, -5.95262364e-008, 4.08903134e-008, 6.57224319e-008, 0.984807849, -0.173648149, -2.99324796e-008, 0.173648149, 0.984807849)
7797w43.Part1 = p44
7798w43.C1 = CFrame.new(-2.69724242e-005, 0.641906977, 0.192185998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7799w44 = Instance.new("Weld", p44)
7800w44.Name = "Block_Weld"
7801w44.Part0 = p44
7802w44.C0 = CFrame.new(-2.69724242e-005, 0.641906977, 0.192185998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7803w44.Part1 = p45
7804w44.C1 = CFrame.new(-2.69912071e-005, -0.226573661, 0.151451379, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
7805w45 = Instance.new("Weld", p45)
7806w45.Name = "Block_Weld"
7807w45.Part0 = p45
7808w45.C0 = CFrame.new(-2.69912071e-005, -0.226573661, 0.151451379, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
7809w45.Part1 = p46
7810w45.C1 = CFrame.new(-2.69576976e-005, 0.582874, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7811w46 = Instance.new("Weld", p46)
7812w46.Name = "Block_Weld"
7813w46.Part0 = p46
7814w46.C0 = CFrame.new(-2.69576976e-005, 0.582874, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7815w46.Part1 = p47
7816w46.C1 = CFrame.new(-2.69175689e-005, 1.56426203, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7817w47 = Instance.new("Weld", p47)
7818w47.Name = "Block_Weld"
7819w47.Part0 = p47
7820w47.C0 = CFrame.new(-2.69175689e-005, 1.56426203, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7821w47.Part1 = p48
7822w47.C1 = CFrame.new(-2.69314914e-005, 0.970686257, 0.486187935, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
7823w48 = Instance.new("Weld", p48)
7824w48.Name = "Block_Weld"
7825w48.Part0 = p48
7826w48.C0 = CFrame.new(-2.69314914e-005, 0.970686257, 0.486187935, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
7827w48.Part1 = p49
7828w48.C1 = CFrame.new(-2.69465017e-005, 0.665479422, 0.432373643, 1, -5.83989532e-008, 4.8437073e-008, -3.75603655e-008, 0.173647717, 0.984807909, -6.5922741e-008, -0.984807909, 0.173647717)
7829w49 = Instance.new("Weld", p49)
7830w49.Name = "Block_Weld"
7831w49.Part0 = p49
7832w49.C0 = CFrame.new(-2.69465017e-005, 0.665479422, 0.432373643, 1, -5.83989532e-008, 4.8437073e-008, -3.75603655e-008, 0.173647717, 0.984807909, -6.5922741e-008, -0.984807909, 0.173647717)
7833w49.Part1 = p50
7834w49.C1 = CFrame.new(-2.69885404e-005, 0.14806518, 1.24538279, 1, -1.85012112e-008, -5.4760374e-009, -1.79535409e-008, -0.99619472, 0.0871557295, -7.06768599e-009, -0.0871557295, -0.99619472)
7835w50 = Instance.new("Weld", p50)
7836w50.Name = "Block_Weld"
7837w50.Part0 = p50
7838w50.C0 = CFrame.new(-2.69885404e-005, 0.14806518, 1.24538279, 1, -1.85012112e-008, -5.4760374e-009, -1.79535409e-008, -0.99619472, 0.0871557295, -7.06768599e-009, -0.0871557295, -0.99619472)
7839w50.Part1 = p51
7840w50.C1 = CFrame.new(-2.69190059e-005, 1.36955345, 0.431252241, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
7841w51 = Instance.new("Weld", p51)
7842w51.Name = "Block_Weld"
7843w51.Part0 = p51
7844w51.C0 = CFrame.new(-2.69190059e-005, 1.36955345, 0.431252241, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
7845w51.Part1 = p52
7846w51.C1 = CFrame.new(-2.69410284e-005, 1.11489654, 0.213892281, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
7847w52 = Instance.new("Weld", p52)
7848w52.Name = "Block_Weld"
7849w52.Part0 = p52
7850w52.C0 = CFrame.new(-2.69410284e-005, 1.11489654, 0.213892281, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
7851w52.Part1 = p53
7852w52.C1 = CFrame.new(-2.69027041e-005, -1.78324997, 0.608468652, 1, -5.95260872e-008, 4.08900078e-008, 6.51748309e-008, 0.500000119, -0.866025329, 3.11060901e-008, 0.866025329, 0.500000119)
7853w53 = Instance.new("Weld", p53)
7854w53.Name = "Circle_Weld"
7855w53.Part0 = p53
7856w53.C0 = CFrame.new(-2.69027041e-005, -1.78324997, 0.608468652, 1, -5.95260872e-008, 4.08900078e-008, 6.51748309e-008, 0.500000119, -0.866025329, 3.11060901e-008, 0.866025329, 0.500000119)
7857w53.Part1 = p54
7858w53.C1 = CFrame.new(-2.69764678e-005, 0.523845971, 0.221708998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7859w54 = Instance.new("Weld", p54)
7860w54.Name = "Block_Weld"
7861w54.Part0 = p54
7862w54.C0 = CFrame.new(-2.69764678e-005, 0.523845971, 0.221708998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7863w54.Part1 = p55
7864w54.C1 = CFrame.new(-2.69931879e-005, 0.398795009, -0.103249997, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7865w55 = Instance.new("Weld", p55)
7866w55.Name = "Block_Weld"
7867w55.Part0 = p55
7868w55.C0 = CFrame.new(-2.69931879e-005, 0.398795009, -0.103249997, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7869w55.Part1 = p56
7870w55.C1 = CFrame.new(-2.69973734e-005, 0.251215011, -0.368891001, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
7871w56 = Instance.new("Weld", p56)
7872w56.Name = "Block_Weld"
7873w56.Part0 = p56
7874w56.C0 = CFrame.new(-2.69973734e-005, 0.251215011, -0.368891001, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
7875w56.Part1 = p57
7876w56.C1 = CFrame.new(-2.69915545e-005, 0.251217991, 0.693656981, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
7877w57 = Instance.new("Weld", p57)
7878w57.Name = "Block_Weld"
7879w57.Part0 = p57
7880w57.C0 = CFrame.new(-2.69915545e-005, 0.251217991, 0.693656981, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
7881w57.Part1 = p58
7882w57.C1 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7883w58 = Instance.new("Weld", p58)
7884w58.Name = "Block_Weld"
7885w58.Part0 = p58
7886w58.C0 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7887w58.Part1 = p59
7888w58.C1 = CFrame.new(-2.70031469e-005, 0.310247988, -1.62329102, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7889w59 = Instance.new("Weld", p59)
7890w59.Name = "Circle_Weld"
7891w59.Part0 = p59
7892w59.C0 = CFrame.new(-2.70031469e-005, 0.310247988, -1.62329102, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
7893w59.Part1 = p60
7894w59.C1 = CFrame.new(-2.69770535e-005, 0.523859024, 0.184808999, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7895w60 = Instance.new("Weld", p60)
7896w60.Name = "Circle_Weld"
7897w60.Part0 = p60
7898w60.C0 = CFrame.new(-2.69770535e-005, 0.523859024, 0.184808999, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7899w60.Part1 = p61
7900w60.C1 = CFrame.new(-2.69756147e-005, 0.582877994, 0.133154005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7901w61 = Instance.new("Weld", p61)
7902w61.Name = "Block_Weld"
7903w61.Part0 = p61
7904w61.C0 = CFrame.new(-2.69756147e-005, 0.582877994, 0.133154005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7905w61.Part1 = p62
7906w61.C1 = CFrame.new(-2.69474403e-005, 0.833757043, 0.310248882, 1, -5.95264495e-008, 4.08900434e-008, -4.08900505e-008, -1.49011626e-007, 1, -5.95264424e-008, -1, -1.49011626e-007)
7907w62 = Instance.new("Weld", p62)
7908w62.Name = "Block_Weld"
7909w62.Part0 = p62
7910w62.C0 = CFrame.new(-2.69474403e-005, 0.833757043, 0.310248882, 1, -5.95264495e-008, 4.08900434e-008, -4.08900505e-008, -1.49011626e-007, 1, -5.95264424e-008, -1, -1.49011626e-007)
7911w62.Part1 = p63
7912w62.C1 = CFrame.new(-2.69305474e-005, 1.11227143, 0.40874204, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
7913w63 = Instance.new("Weld", p63)
7914w63.Name = "Block_Weld"
7915w63.Part0 = p63
7916w63.C0 = CFrame.new(-2.69305474e-005, 1.11227143, 0.40874204, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
7917w63.Part1 = p64
7918w63.C1 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7919w64 = Instance.new("Weld", p64)
7920w64.Name = "Block_Weld"
7921w64.Part0 = p64
7922w64.C0 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7923w64.Part1 = p65
7924w64.C1 = CFrame.new(-2.69389948e-005, 0.818084598, 0.459285259, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
7925w65 = Instance.new("Weld", p65)
7926w65.Name = "Block_Weld"
7927w65.Part0 = p65
7928w65.C0 = CFrame.new(-2.69389948e-005, 0.818084598, 0.459285259, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
7929w65.Part1 = p66
7930w65.C1 = CFrame.new(-2.69857319e-005, 0.302294523, 1.25103426, 1, -1.85013569e-008, -5.47535173e-009, -1.79537469e-008, -0.99619472, 0.0871557295, -7.06701586e-009, -0.0871557295, -0.99619472)
7931w66 = Instance.new("Weld", p66)
7932w66.Name = "Block_Weld"
7933w66.Part0 = p66
7934w66.C0 = CFrame.new(-2.69857319e-005, 0.302294523, 1.25103426, 1, -1.85013569e-008, -5.47535173e-009, -1.79537469e-008, -0.99619472, 0.0871557295, -7.06701586e-009, -0.0871557295, -0.99619472)
7935w66.Part1 = p67
7936w66.C1 = CFrame.new(-2.69389129e-005, 1.48434854, -0.0765417814, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
7937w67 = Instance.new("Weld", p67)
7938w67.Name = "Block_Weld"
7939w67.Part0 = p67
7940w67.C0 = CFrame.new(-2.69389129e-005, 1.48434854, -0.0765417814, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
7941w67.Part1 = p68
7942w67.C1 = CFrame.new(-2.6994463e-005, 0.251219988, 0.162382007, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
7943w68 = Instance.new("Weld", p68)
7944w68.Name = "Block_Weld"
7945w68.Part0 = p68
7946w68.C0 = CFrame.new(-2.6994463e-005, 0.251219988, 0.162382007, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
7947w68.Part1 = p69
7948w68.C1 = CFrame.new(-2.6915759e-005, 1.60853398, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7949w69 = Instance.new("Weld", p69)
7950w69.Name = "Circle_Weld"
7951w69.Part0 = p69
7952w69.C0 = CFrame.new(-2.6915759e-005, 1.60853398, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
7953w69.Part1 = p70
7954w69.C1 = CFrame.new(-2.69686861e-005, 0.641901016, 0.42831701, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7955w70 = Instance.new("Weld", p70)
7956w70.Name = "Wedge_Weld"
7957w70.Part0 = p70
7958w70.C0 = CFrame.new(-2.69686861e-005, 0.641901016, 0.42831701, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
7959w70.Part1 = p71
7960w70.C1 = CFrame.new(2.70324999e-005, -0.202880055, -0.363613576, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
7961w71 = Instance.new("Weld", p71)
7962w71.Name = "Wedge_Weld"
7963w71.Part0 = p71
7964w71.C0 = CFrame.new(2.70324999e-005, -0.202880055, -0.363613576, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
7965w71.Part1 = p72
7966w71.C1 = CFrame.new(-2.70432465e-005, -0.761507869, 0.349658668, 1, -5.04138598e-009, 5.66058631e-008, -5.68298475e-008, -0.087156117, 0.996194661, -8.86544171e-011, -0.996194661, -0.087156117)
7967w72 = Instance.new("Weld", p72)
7968w72.Name = "Wedge_Weld"
7969w72.Part0 = p72
7970w72.C0 = CFrame.new(-2.70432465e-005, -0.761507869, 0.349658668, 1, -5.04138598e-009, 5.66058631e-008, -5.68298475e-008, -0.087156117, 0.996194661, -8.86544171e-011, -0.996194661, -0.087156117)
7971w72.Part1 = p73
7972w72.C1 = CFrame.new(2.69606426e-005, -0.271123618, 0.159218371, -1, 1.20803122e-007, -5.03232513e-008, 8.86054821e-008, 0.342020035, -0.939692736, -9.6306259e-008, -0.939692736, -0.342020005)
7973w73 = Instance.new("Weld", p73)
7974w73.Name = "Wedge_Weld"
7975w73.Part0 = p73
7976w73.C0 = CFrame.new(2.69606426e-005, -0.271123618, 0.159218371, -1, 1.20803122e-007, -5.03232513e-008, 8.86054821e-008, 0.342020035, -0.939692736, -9.6306259e-008, -0.939692736, -0.342020005)
7977w73.Part1 = p74
7978w73.C1 = CFrame.new(-2.69467491e-005, 0.761504233, -0.342288256, 1, -8.45120525e-008, -3.81036713e-008, -3.05929326e-008, 0.087156117, -0.996194661, 8.75114239e-008, 0.996194661, 0.087156117)
7979w74 = Instance.new("Weld", p74)
7980w74.Name = "Wedge_Weld"
7981w74.Part0 = p74
7982w74.C0 = CFrame.new(-2.69467491e-005, 0.761504233, -0.342288256, 1, -8.45120525e-008, -3.81036713e-008, -3.05929326e-008, 0.087156117, -0.996194661, 8.75114239e-008, 0.996194661, 0.087156117)
7983w74.Part1 = p75
7984w74.C1 = CFrame.new(-2.70399814e-005, -0.477731556, -0.137090862, 1, 2.11481037e-008, -8.40774845e-008, -8.62400782e-008, 0.342020035, -0.939692736, 8.88346285e-009, 0.939692736, 0.342020005)
7985w75 = Instance.new("Weld", p75)
7986w75.Name = "Wedge_Weld"
7987w75.Part0 = p75
7988w75.C0 = CFrame.new(-2.70399814e-005, -0.477731556, -0.137090862, 1, 2.11481037e-008, -8.40774845e-008, -8.62400782e-008, 0.342020035, -0.939692736, 8.88346285e-009, 0.939692736, 0.342020005)
7989w75.Part1 = p76
7990w75.C1 = CFrame.new(2.70197816e-005, 0.254749686, -0.197051153, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
7991w76 = Instance.new("Weld", p76)
7992w76.Name = "Wedge_Weld"
7993w76.Part0 = p76
7994w76.C0 = CFrame.new(2.70197816e-005, 0.254749686, -0.197051153, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
7995w76.Part1 = p77
7996w76.C1 = CFrame.new(2.70364926e-005, 0.937081754, 0.462889194, -1, 1.19348783e-007, -5.94260889e-008, 8.8290939e-008, 0.258819073, -0.965925872, -9.99014702e-008, -0.965925872, -0.258819073)
7997w77 = Instance.new("Weld", p77)
7998w77.Name = "Wedge_Weld"
7999w77.Part0 = p77
8000w77.C0 = CFrame.new(2.70364926e-005, 0.937081754, 0.462889194, -1, 1.19348783e-007, -5.94260889e-008, 8.8290939e-008, 0.258819073, -0.965925872, -9.99014702e-008, -0.965925872, -0.258819073)
8001w77.Part1 = p78
8002w77.C1 = CFrame.new(2.69804386e-005, -0.254758716, 0.226571351, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
8003w78 = Instance.new("Weld", p78)
8004w78.Name = "Wedge_Weld"
8005w78.Part0 = p78
8006w78.C0 = CFrame.new(2.69804386e-005, -0.254758716, 0.226571351, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
8007w78.Part1 = p79
8008w78.C1 = CFrame.new(-2.69982065e-005, 0.0186245665, 0.256082684, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
8009w79 = Instance.new("Weld", p79)
8010w79.Name = "Wedge_Weld"
8011w79.Part0 = p79
8012w79.C0 = CFrame.new(-2.69982065e-005, 0.0186245665, 0.256082684, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
8013w79.Part1 = p80
8014w79.C1 = CFrame.new(2.69885841e-005, -1.4784987, 0.418512583, -1, 3.25942331e-008, 2.24966534e-009, 1.58138018e-008, 0.422618091, 0.906307936, 2.85896622e-008, 0.906307936, -0.422618091)
8015w80 = Instance.new("Weld", p80)
8016w80.Name = "Wedge_Weld"
8017w80.Part0 = p80
8018w80.C0 = CFrame.new(2.69885841e-005, -1.4784987, 0.418512583, -1, 3.25942331e-008, 2.24966534e-009, 1.58138018e-008, 0.422618091, 0.906307936, 2.85896622e-008, 0.906307936, -0.422618091)
8019w80.Part1 = p81
8020w80.C1 = CFrame.new(-2.7005879e-005, -0.0944784805, -0.255385041, 1, 2.11480753e-008, -8.40774845e-008, -8.6240064e-008, 0.342019796, -0.939692736, 8.88347085e-009, 0.939692736, 0.342019796)
8021w81 = Instance.new("Weld", p81)
8022w81.Name = "Wedge_Weld"
8023w81.Part0 = p81
8024w81.C0 = CFrame.new(-2.7005879e-005, -0.0944784805, -0.255385041, 1, 2.11480753e-008, -8.40774845e-008, -8.6240064e-008, 0.342019796, -0.939692736, 8.88347085e-009, 0.939692736, 0.342019796)
8025w81.Part1 = p82
8026w81.C1 = CFrame.new(-2.71884655e-005, -1.54931295, -1.43853581, 1, -1.29495401e-008, 1.0679166e-007, -2.43563569e-008, 0.939692497, 0.342020541, -1.04780334e-007, -0.342020512, 0.939692497)
8027w82 = Instance.new("Weld", p82)
8028w82.Name = "Wedge_Weld"
8029w82.Part0 = p82
8030w82.C0 = CFrame.new(-2.71884655e-005, -1.54931295, -1.43853581, 1, -1.29495401e-008, 1.0679166e-007, -2.43563569e-008, 0.939692497, 0.342020541, -1.04780334e-007, -0.342020512, 0.939692497)
8031w82.Part1 = p83
8032w82.C1 = CFrame.new(2.70665932e-005, -1.66921949, 1.49424386, -1, -1.69508478e-008, -2.46411371e-008, -2.43563605e-008, 0.939692497, 0.342020541, 1.73575518e-008, 0.342020512, -0.939692497)
8033w83 = Instance.new("Weld", p83)
8034w83.Name = "Wedge_Weld"
8035w83.Part0 = p83
8036w83.C0 = CFrame.new(2.70665932e-005, -1.66921949, 1.49424386, -1, -1.69508478e-008, -2.46411371e-008, -2.43563605e-008, 0.939692497, 0.342020541, 1.73575518e-008, 0.342020512, -0.939692497)
8037w83.Part1 = p84
8038w83.C1 = CFrame.new(2.69976008e-005, -0.112124957, -0.284901589, -1, 8.75223805e-009, 1.92694216e-009, -1.18270493e-009, -0.342019796, 0.939692736, 8.8834673e-009, 0.939692736, 0.342019796)
8039w84 = Instance.new("Weld", p84)
8040w84.Name = "Wedge_Weld"
8041w84.Part0 = p84
8042w84.C0 = CFrame.new(2.69976008e-005, -0.112124957, -0.284901589, -1, 8.75223805e-009, 1.92694216e-009, -1.18270493e-009, -0.342019796, 0.939692736, 8.8834673e-009, 0.939692736, 0.342019796)
8043w84.Part1 = p85
8044w84.C1 = CFrame.new(2.7052507e-005, -1.59177017, 0.872617722, -1, -1.1669739e-008, -2.68784888e-008, -2.76164496e-008, 0.681996524, 0.731355488, 9.79630865e-009, 0.731355488, -0.681996524)
8045w85 = Instance.new("Weld", p85)
8046w85.Name = "Wedge_Weld"
8047w85.Part0 = p85
8048w85.C0 = CFrame.new(2.7052507e-005, -1.59177017, 0.872617722, -1, -1.1669739e-008, -2.68784888e-008, -2.76164496e-008, 0.681996524, 0.731355488, 9.79630865e-009, 0.731355488, -0.681996524)
8049w85.Part1 = p86
8050w85.C1 = CFrame.new(2.69951215e-005, -1.03299725, -0.462896198, -1, 1.22781962e-008, 2.39114684e-009, -8.68160988e-010, -0.258819073, 0.965925872, 1.24787025e-008, 0.965925872, 0.258819073)
8051w86 = Instance.new("Weld", p86)
8052w86.Name = "Wedge_Weld"
8053w86.Part0 = p86
8054w86.C0 = CFrame.new(2.69951215e-005, -1.03299725, -0.462896198, -1, 1.22781962e-008, 2.39114684e-009, -8.68160988e-010, -0.258819073, 0.965925872, 1.24787025e-008, 0.965925872, 0.258819073)
8055w86.Part1 = p87
8056w86.C1 = CFrame.new(2.70135206e-005, 0.143849969, 0.34147498, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
8057w87 = Instance.new("Weld", p87)
8058w87.Name = "Wedge_Weld"
8059w87.Part0 = p87
8060w87.C0 = CFrame.new(2.70135206e-005, 0.143849969, 0.34147498, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
8061w87.Part1 = p88
8062w87.C1 = CFrame.new(2.70302153e-005, 0.342700183, 0.434671164, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
8063w88 = Instance.new("Weld", p88)
8064w88.Name = "Wedge_Weld"
8065w88.Part0 = p88
8066w88.C0 = CFrame.new(2.70302153e-005, 0.342700183, 0.434671164, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
8067w88.Part1 = p89
8068w88.C1 = CFrame.new(2.69984048e-005, 0.153062999, -0.159228027, -1, 8.75223449e-009, 1.92694394e-009, -1.18270438e-009, -0.342020035, 0.939692736, 8.88346463e-009, 0.939692736, 0.342020005)
8069w89 = Instance.new("Weld", p89)
8070w89.Name = "Wedge_Weld"
8071w89.Part0 = p89
8072w89.C0 = CFrame.new(2.69984048e-005, 0.153062999, -0.159228027, -1, 8.75223449e-009, 1.92694394e-009, -1.18270438e-009, -0.342020035, 0.939692736, 8.88346463e-009, 0.939692736, 0.342020005)
8073w89.Part1 = p90
8074w89.C1 = CFrame.new(-2.69485572e-005, 0.70247668, -0.342276633, 1, -8.45120454e-008, -3.81036642e-008, -3.05929255e-008, 0.087156117, -0.996194661, 8.75114168e-008, 0.996194661, 0.087156117)
8075w90 = Instance.new("Weld", p90)
8076w90.Name = "Wedge_Weld"
8077w90.Part0 = p90
8078w90.C0 = CFrame.new(-2.69485572e-005, 0.70247668, -0.342276633, 1, -8.45120454e-008, -3.81036642e-008, -3.05929255e-008, 0.087156117, -0.996194661, 8.75114168e-008, 0.996194661, 0.087156117)
8079w90.Part1 = p91
8080w90.C1 = CFrame.new(2.7285816e-005, 1.91944361, -0.662942171, -1, -1.69507981e-008, -1.48275618e-007, 1.16832759e-007, -0.707106471, -0.707107067, -9.28606312e-008, -0.707107067, 0.707106471)
8081w91 = Instance.new("Weld", p91)
8082w91.Name = "Wedge_Weld"
8083w91.Part0 = p91
8084w91.C0 = CFrame.new(2.7285816e-005, 1.91944361, -0.662942171, -1, -1.69507981e-008, -1.48275618e-007, 1.16832759e-007, -0.707106471, -0.707107067, -9.28606312e-008, -0.707107067, 0.707106471)
8085w91.Part1 = p92
8086w91.C1 = CFrame.new(2.69954071e-005, -0.937081456, -0.433368206, -1, 1.22781891e-008, 2.39114151e-009, -8.68164096e-010, -0.258819073, 0.965925872, 1.24786936e-008, 0.965925872, 0.258819073)
8087w92 = Instance.new("Weld", p92)
8088w92.Name = "Wedge_Weld"
8089w92.Part0 = p92
8090w92.C0 = CFrame.new(2.69954071e-005, -0.937081456, -0.433368206, -1, 1.22781891e-008, 2.39114151e-009, -8.68164096e-010, -0.258819073, 0.965925872, 1.24786936e-008, 0.965925872, 0.258819073)
8091w92.Part1 = p93
8092w92.C1 = CFrame.new(-2.69051961e-005, 0.999799907, -0.238821417, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
8093w93 = Instance.new("Weld", p93)
8094w93.Name = "Wedge_Weld"
8095w93.Part0 = p93
8096w93.C0 = CFrame.new(-2.69051961e-005, 0.999799907, -0.238821417, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
8097w93.Part1 = p94
8098w93.C1 = CFrame.new(2.69796546e-005, 0.112124898, 0.314417601, -1, 1.20803122e-007, -5.03232727e-008, 8.8605475e-008, 0.342019796, -0.939692736, -9.6306259e-008, -0.939692736, -0.342019796)
8099w94 = Instance.new("Weld", p94)
8100w94.Name = "Wedge_Weld"
8101w94.Part0 = p94
8102w94.C0 = CFrame.new(2.69796546e-005, 0.112124898, 0.314417601, -1, 1.20803122e-007, -5.03232727e-008, 8.8605475e-008, 0.342019796, -0.939692736, -9.6306259e-008, -0.939692736, -0.342019796)
8103w94.Part1 = p95
8104w94.C1 = CFrame.new(2.70609289e-005, -1.92461061, 0.795396745, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
8105w95 = Instance.new("Weld", p95)
8106w95.Name = "Wedge_Weld"
8107w95.Part0 = p95
8108w95.C0 = CFrame.new(2.70609289e-005, -1.92461061, 0.795396745, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
8109w95.Part1 = p96
8110w95.C1 = CFrame.new(2.70452038e-005, -1.2757566, 0.127234697, -1, 1.58094302e-008, -3.83180883e-008, -3.29206458e-008, 0.258819193, 0.965925872, 2.51881946e-008, 0.965925872, -0.258819193)
8111w96 = Instance.new("Weld", p96)
8112w96.Name = "Wedge_Weld"
8113w96.Part0 = p96
8114w96.C0 = CFrame.new(2.70452038e-005, -1.2757566, 0.127234697, -1, 1.58094302e-008, -3.83180883e-008, -3.29206458e-008, 0.258819193, 0.965925872, 2.51881946e-008, 0.965925872, -0.258819193)
8115w96.Part1 = p97
8116w96.C1 = CFrame.new(2.69985267e-005, 0.271121085, -0.129704311, -1, 8.75223449e-009, 1.92694216e-009, -1.18270604e-009, -0.342020035, 0.939692736, 8.88346374e-009, 0.939692736, 0.342020005)
8117w97 = Instance.new("Weld", p97)
8118w97.Name = "Wedge_Weld"
8119w97.Part0 = p97
8120w97.C0 = CFrame.new(2.69985267e-005, 0.271121085, -0.129704311, -1, 8.75223449e-009, 1.92694216e-009, -1.18270604e-009, -0.342020035, 0.939692736, 8.88346374e-009, 0.939692736, 0.342020005)
8121w97.Part1 = p98
8122w97.C1 = CFrame.new(-2.7119062e-005, -0.689512253, 0.493685782, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
8123w98 = Instance.new("Weld", p98)
8124w98.Name = "Wedge_Weld"
8125w98.Part0 = p98
8126w98.C0 = CFrame.new(-2.7119062e-005, -0.689512253, 0.493685782, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
8127w98.Part1 = p99
8128w98.C1 = CFrame.new(2.70467608e-005, -1.34953368, -0.0207269192, -1, 1.58180704e-008, -3.83196088e-008, -3.49906735e-008, 0.173648149, 0.984807849, 2.22318892e-008, 0.984807849, -0.173648149)
8129w99 = Instance.new("Weld", p99)
8130w99.Name = "Wedge_Weld"
8131w99.Part0 = p99
8132w99.C0 = CFrame.new(2.70467608e-005, -1.34953368, -0.0207269192, -1, 1.58180704e-008, -3.83196088e-008, -3.49906735e-008, 0.173648149, 0.984807849, 2.22318892e-008, 0.984807849, -0.173648149)
8133w99.Part1 = p100
8134w99.C1 = CFrame.new(2.68453441e-005, -1.05666494, -0.342283309, -1, 7.68926398e-008, 1.25193765e-007, 1.18015699e-007, -0.087156117, 0.996194661, 8.75114381e-008, 0.996194661, 0.087156117)
8135w100 = Instance.new("Weld", p100)
8136w100.Name = "Wedge_Weld"
8137w100.Part0 = p100
8138w100.C0 = CFrame.new(2.68453441e-005, -1.05666494, -0.342283309, -1, 7.68926398e-008, 1.25193765e-007, 1.18015699e-007, -0.087156117, 0.996194661, 8.75114381e-008, 0.996194661, 0.087156117)
8139w100.Part1 = p101
8140w100.C1 = CFrame.new(2.70382643e-005, 0.438632488, 0.478940666, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
8141w101 = Instance.new("Weld", p101)
8142w101.Name = "Wedge_Weld"
8143w101.Part0 = p101
8144w101.C0 = CFrame.new(2.70382643e-005, 0.438632488, 0.478940666, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
8145w101.Part1 = p102
8146w101.C1 = CFrame.new(2.69711491e-005, -0.365431041, 0.17490752, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
8147w102 = Instance.new("Weld", p102)
8148w102.Name = "Wedge_Weld"
8149w102.Part0 = p102
8150w102.C0 = CFrame.new(2.69711491e-005, -0.365431041, 0.17490752, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
8151w102.Part1 = p103
8152w102.C1 = CFrame.new(-2.69383909e-005, 0.649306595, -0.433368623, 1, 1.03484936e-008, -8.68350583e-008, -8.65546141e-008, 0.258819073, -0.965925872, 1.24786919e-008, 0.965925872, 0.258819073)
8153w103 = Instance.new("Weld", p103)
8154w103.Name = "Wedge_Weld"
8155w103.Part0 = p103
8156w103.C0 = CFrame.new(-2.69383909e-005, 0.649306595, -0.433368623, 1, 1.03484936e-008, -8.68350583e-008, -8.65546141e-008, 0.258819073, -0.965925872, 1.24786919e-008, 0.965925872, 0.258819073)
8157w103.Part1 = p104
8158w103.C1 = CFrame.new(-2.70762976e-005, -0.43900317, 0.407888472, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
8159w104 = Instance.new("Weld", p104)
8160w104.Name = "Wedge_Weld"
8161w104.Part0 = p104
8162w104.C0 = CFrame.new(-2.70762976e-005, -0.43900317, 0.407888472, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
8163w104.Part1 = p105
8164w104.C1 = CFrame.new(2.70607179e-005, -1.92829955, 0.736725867, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
8165w105 = Instance.new("Weld", p105)
8166w105.Name = "Wedge_Weld"
8167w105.Part0 = p105
8168w105.C0 = CFrame.new(2.70607179e-005, -1.92829955, 0.736725867, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
8169w105.Part1 = p106
8170w105.C1 = CFrame.new(2.70186029e-005, 0.202881783, 0.393133432, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
8171w106 = Instance.new("Weld", p106)
8172w106.Name = "Wedge_Weld"
8173w106.Part0 = p106
8174w106.C0 = CFrame.new(2.70186029e-005, 0.202881783, 0.393133432, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
8175w106.Part1 = p107
8176w106.C1 = CFrame.new(-2.68938547e-005, 1.13999891, -0.187172472, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
8177w107 = Instance.new("Weld", p107)
8178w107.Name = "Wedge_Weld"
8179w107.Part0 = p107
8180w107.C0 = CFrame.new(-2.68938547e-005, 1.13999891, -0.187172472, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
8181w107.Part1 = p108
8182w107.C1 = CFrame.new(-2.70357887e-005, 1.01832795, -0.147913992, 1, -2.1171159e-008, 3.82198948e-008, 3.82198948e-008, 7.52150727e-023, -1, 2.1171159e-008, 1, 8.09159563e-016)
8183w108 = Instance.new("Weld", p108)
8184w108.Name = "Wedge_Weld"
8185w108.Part0 = p108
8186w108.C0 = CFrame.new(-2.70357887e-005, 1.01832795, -0.147913992, 1, -2.1171159e-008, 3.82198948e-008, 3.82198948e-008, 7.52150727e-023, -1, 2.1171159e-008, 1, 8.09159563e-016)
8187w108.Part1 = p109
8188w108.C1 = CFrame.new(2.6997488e-005, -0.237563431, -0.314412773, -1, 8.75224337e-009, 1.92694216e-009, -1.18270693e-009, -0.342019796, 0.939692736, 8.88347174e-009, 0.939692736, 0.342019796)
8189w109 = Instance.new("Weld", p109)
8190w109.Name = "Wedge_Weld"
8191w109.Part0 = p109
8192w109.C0 = CFrame.new(2.6997488e-005, -0.237563431, -0.314412773, -1, 8.75224337e-009, 1.92694216e-009, -1.18270693e-009, -0.342019796, 0.939692736, 8.88347174e-009, 0.939692736, 0.342019796)
8193w109.Part1 = p110
8194w109.C1 = CFrame.new(2.70390519e-005, -0.43863076, -0.44942081, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
8195w110 = Instance.new("Weld", p110)
8196w110.Name = "Hitbox_Weld"
8197w110.Part0 = p110
8198w110.C0 = CFrame.new(2.7, -0.44, -0.6, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
8199w110.Part1 = p111
8200w110.C1 = CFrame.new(-2.7, -0.68, 0.61, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
8201m8.Parent = rarm
8202m8:MakeJoints()
8203----------------------------------------------------
8204local cor8 = Instance.new("Part", rarm.Zyrodoxa)
8205cor8.Name = "Thingy"
8206cor8.Locked = true
8207cor8.BottomSurface = 0
8208cor8.CanCollide = false
8209cor8.Size = Vector3.new(1, 1, 1)
8210cor8.Transparency = 1
8211cor8.TopSurface = 0
8212corw8 = Instance.new("Weld", cor8)
8213corw8.Part0 = rarm
8214corw8.Part1 = cor8
8215corw8.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180))
8216corw8.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
8217weld8 = Instance.new("Weld", rarm.Zyrodoxa)
8218weld8.Part0 = cor8
8219weld8.Part1 = rarm.Zyrodoxa.Handle
8220weld8.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
8221Amulite = Instance.new("PointLight",m7.Center)
8222Amulite.Brightness = 0
8223Amulite.Color = Color3.new(0,1,0)
8224----------------------------------------------------
8225models = {m,m2,m3,m4,m5,m6,m7,m8}
8226parts = {}
8227Stepped:connect(function()
8228 for i,v in pairs(models) do
8229 for _, a in pairs(v:GetChildren()) do
8230 if v:IsA("Part") and v.Name ~= "Thingy" then
8231 table.insert(parts, a)
8232 for i,v in pairs(parts) do
8233 v.CanCollide = false
8234 end
8235 end
8236 end
8237 end
8238end)
8239----------------------------------------------------
8240local animpose = "Idle1"
8241local lastanimpose = "Idle1"
8242local grab = false
8243local Smooth = 1
8244local sine = 0
8245local change = 1
8246local val = 0
8247local ffing = false
8248----------------------------------------------------
8249--[[local hitbox = rarm.Zyrodoxa.Hitbox--Zyrodoxa is the name of the dagger k
8250
8251function FindHumanoids()
8252 local function c_region(Position, Size)
8253 local SizeOffset = Size/2
8254 local Point1 = Position - SizeOffset
8255 local Point2 = Position + SizeOffset
8256 local a = Instance.new("Part", workspace)
8257 a.Anchored = true
8258 a.Size = Size
8259 a.Position = Position
8260 print("Hey!, I'm making a part!")
8261 return Region3.new(Point1, Point2)
8262 end
8263
8264 local a = c_region((hitbox.CFrame * CFrame.new(0, -1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
8265 local b = c_region((hitbox.CFrame * CFrame.new(0, -0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
8266 local c = c_region((hitbox.CFrame * CFrame.new(0, 0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
8267 local d = c_region((hitbox.CFrame * CFrame.new(0, 1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
8268
8269 local regions = {a, b, c, d}
8270
8271 local found_humanoids = {}
8272 local already_found = {char.Name}
8273
8274 for _, region in pairs(regions) do
8275 for _, part in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(region, rarm.Zyrodoxa:GetChildren(), 100)) do
8276 print(part, part.Parent, part.Name) ---nope
8277 if part.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
8278 local humanoid = part.Parent:FindFirstChild("Humanoid")
8279 local name = humanoid.Parent.Name
8280 local exists = false
8281 for _, n in pairs(already_found) do
8282 if n == name then
8283 exists = true
8284 end
8285 end
8286 if not exists then
8287 table.insert(already_found, name)
8288 table.insert(found_humanoids, humanoid)
8289 end
8290 elseif part.Parent.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
8291 local humanoid = part.Parent.Parent:FindFirstChild("Humanoid")
8292 local name = humanoid.Parent.Parent.Name
8293 local exists = false
8294 for _, n in pairs(already_found) do
8295 if n == name then
8296 exists = true
8297 end
8298 end
8299 if not exists then
8300 table.insert(already_found, name)
8301 table.insert(found_humanoids, humanoid)
8302 end
8303 end
8304 end
8305 end
8306 return found_humanoids
8307end
8308
8309local humanoids = FindHumanoids()
8310if #humanoids == 0 then
8311 for i, v in pairs(humanoids) do
8312 print(v.Parent.Name)
8313 if Debounces.Slashing == true then
8314 v:TakeDamage(math.random(10,20) * math.random(1,3)) --max 60 damage?
8315 elseif Debounces.Slashing == false then
8316 wait()
8317 end
8318 end
8319 wait(0.3)
8320end]]--
8321----------------------------------------------------
8322--[[mouse.KeyDown:connect(function(key)
8323 if key == "f" then
8324 if Debounces.CanAttack == true then
8325 Debounces.CanAttack = false
8326 Debounces.NoIdl = true
8327 Debounces.on = true
8328 for i = 1, 20 do
8329 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1.05, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
8330 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
8331 CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-4),0,0),0.1)
8332 CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
8333 CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
8334 CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
8335 CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
8336 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6,0.6,-0.2)*CFrame.Angles(math.rad(8),math.rad(22),math.rad(15)), 0.8)
8337 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
8338 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6,0.6,0.2)*CFrame.Angles(math.rad(-8),math.rad(12),math.rad(-12)), 0.8)
8339 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
8340 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1)*CFrame.Angles(math.rad(-15),math.rad(0),math.rad(0)), 0.5)
8341 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(20),math.rad(0)), 0.5)
8342 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-6), math.rad(0), 0), 0.1)
8343 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-20), 0), 0.1)
8344 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.14) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), 0.1)
8345 lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(5)), 0.1)
8346 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(3), math.rad(0), math.rad(0)), 0.1)
8347 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(10), math.rad(-5)), 0.1)
8348 if Debounces.on == false then
8349 break
8350 end
8351 fat.Event:wait()
8352 end
8353 end
8354 end
8355end)]]--
8356----------------------------------------------------
8357mod4 = Instance.new("Model",char)
8358
8359ptez = {0.7, 0.8, 0.9, 1}
8360
8361function FindNearestTorso(Position,Distance,SinglePlayer)
8362 if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
8363 local List = {}
8364 for i,v in pairs(workspace:GetChildren())do
8365 if v:IsA("Model")then
8366 if v:findFirstChild("Torso")then
8367 if v ~= char then
8368 if(v.Torso.Position -Position).magnitude <= Distance then
8369 table.insert(List,v)
8370 end
8371 end
8372 end
8373 end
8374 end
8375 return List
8376end
8377
8378function Slam()
8379 local part=Instance.new('Part',mod4)
8380 part.Anchored=true
8381 part.CanCollide=false
8382 part.FormFactor='Custom'
8383 part.Size=Vector3.new(.2,.2,.2)
8384 part.CFrame=root.CFrame*CFrame.new(0,-2.8,-1.4)*CFrame.Angles(math.rad(90),0,0)
8385 part.Transparency=.7
8386 part.BrickColor=BrickColor.new('Really black')
8387 mesh=Instance.new('SpecialMesh',part)
8388 mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
8389 mesh.Scale=Vector3.new(3,3,3)
8390 local part2=Instance.new('Part',mod4)
8391 part2.Anchored=true
8392 part2.CanCollide=false
8393 part2.FormFactor='Custom'
8394 part2.Size=Vector3.new(.2,.2,.2)
8395 part2.CFrame=root.CFrame*CFrame.new(0,-2.4,-1.6)
8396 part2.Transparency=.7
8397 part2.BrickColor=BrickColor.new('Lime green')
8398 mesh2=Instance.new('SpecialMesh',part2)
8399 mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
8400 mesh2.Scale=Vector3.new(3,1.5,3)
8401 x = Instance.new("Sound",larm)
8402 x.SoundId = "http://www.roblox.com/asset/?id=142070127"
8403 x.Pitch = ptez[math.random(1,#ptez)]
8404 x.Volume = 1
8405 wait(.1)
8406 x1 = Instance.new("Sound",larm)
8407 x1.SoundId = "http://www.roblox.com/asset/?id=206082327"
8408 x1.Pitch = ptez[math.random(1,#ptez)]
8409 x1.Volume = 1
8410 wait(.1)
8411 x:Play()
8412 x1:Play()
8413 for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
8414 if v:FindFirstChild('Humanoid') then
8415 v.Humanoid:TakeDamage(math.random(30,45))
8416 end
8417 end
8418 coroutine.resume(coroutine.create(function()
8419 for i=0,0.62,0.13 do
8420 wait()
8421 part.CFrame=part.CFrame
8422 part.Transparency=i
8423 mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
8424 part2.CFrame=part2.CFrame
8425 part2.Transparency=i
8426 mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
8427 end
8428 part.Parent=nil
8429 part2.Parent=nil
8430 x:Destroy()
8431 end))
8432end
8433----------------------------------------------------
8434wPart = function(x,y,z,color,tr,cc,an,parent)
8435 local wp = Instance.new('WedgePart',parent or Weapon)
8436 wp.formFactor = 'Custom'
8437 wp.Size = Vector3.new(x,y,z)
8438 wp.BrickColor = BrickColor.new(color)
8439 wp.CanCollide = cc
8440 wp.Transparency = tr
8441 wp.Anchored = an
8442 wp.TopSurface,wp.BottomSurface = 0,0
8443 return wp
8444end
8445
8446Mesh = function(par,num,x,y,z)
8447 local msh = _
8448 if num == 1 then
8449 msh = Instance.new("CylinderMesh",par)
8450 elseif num == 2 then
8451 msh = Instance.new("SpecialMesh",par)
8452 msh.MeshType = 3
8453 elseif num == 3 then
8454 msh = Instance.new("BlockMesh",par)
8455 elseif num == 4 then
8456 msh = Instance.new("SpecialMesh",par)
8457 msh.MeshType = "Torso"
8458 elseif type(num) == 'string' then
8459 msh = Instance.new("SpecialMesh",par)
8460 msh.MeshId = num
8461 end
8462 msh.Scale = Vector3.new(x,y,z)
8463 return msh
8464end
8465
8466local function CFrameFromTopBack(at, top, back)
8467 local right = top:Cross(back)
8468 return CFrame.new(at.x, at.y, at.z,
8469 right.x, top.x, back.x,
8470 right.y, top.y, back.y,
8471 right.z, top.z, back.z)
8472end
8473
8474function Triangle(a, b, c)
8475 local edg1 = (c-a):Dot((b-a).unit)
8476 local edg2 = (a-b):Dot((c-b).unit)
8477 local edg3 = (b-c):Dot((a-c).unit)
8478 if edg1 <= (b-a).magnitude and edg1 >= 0 then
8479 a, b, c = a, b, c
8480 elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
8481 a, b, c = b, c, a
8482 elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
8483 a, b, c = c, a, b
8484 else
8485 print("unreachable")
8486 end
8487 local len1 = (c-a):Dot((b-a).unit)
8488 local len2 = (b-a).magnitude - len1
8489 local width = (a + (b-a).unit*len1 - c).magnitude
8490 local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
8491 local list = {}
8492 if len1 > 0.01 then
8493 local w1 = wPart(0,0,0,'Lime green',0.5,false,true,char)
8494 local sz = Vector3.new(0.2, width, len1)
8495 w1.Size = sz
8496 local sp = Mesh(w1,2,0,0,0)
8497 sp.MeshType='Wedge'
8498 sp.Scale=Vector3.new(0,1,1)*sz/w1.Size
8499 w1:BreakJoints()
8500 w1.Anchored = true
8501 w1.Transparency = 0.7
8502 Spawn(function()
8503 for i=0,1,0.1 do
8504 fat.Event:wait()
8505 w1.Transparency=w1.Transparency+0.03
8506 end
8507 end)
8508 w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
8509 table.insert(list,w1)
8510 end
8511 if len2 > 0.01 then
8512 local w2 = wPart(0,0,0,'Lime green',0.5,false,true,char)
8513 local sz = Vector3.new(0.2, width, len2)
8514 w2.Size = sz
8515 local sp = Mesh(w2,2,0,0,0)
8516 sp.MeshType='Wedge'
8517 sp.Scale=Vector3.new(0,1,1)*sz/w2.Size
8518 w2:BreakJoints()
8519 w2.Anchored = true
8520 w2.Transparency = 0.7
8521 Spawn(function()
8522 for i=0,1,0.1 do
8523 fat.Event:wait()
8524 w2.Transparency=w2.Transparency+0.03
8525 end
8526 end)
8527 w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
8528 table.insert(list,w2)
8529 end
8530 return unpack(list)
8531end
8532
8533function trail(p,t,h)
8534 Spawn(function()
8535 local blcf = p.CFrame
8536 local scfr = blcf
8537 for i=1,t do
8538 local blcf = p.CFrame
8539 if scfr and (p.Position-scfr.p).magnitude > .1 then
8540 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)
8541 if a then game.Debris:AddItem(a,1) end
8542 if b then game.Debris:AddItem(b,1) end
8543 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)
8544 if a then game.Debris:AddItem(a,1) end
8545 if b then game.Debris:AddItem(b,1) end
8546 scfr = blcf
8547 elseif not scfr then
8548 scfr = blcf
8549 end
8550 fat.Event:wait()
8551 end
8552 scfr=nil
8553 end)
8554end
8555--trail(char.Sword.Blade,1e1000,5)
8556----------------------------------------------------
8557function Dmg()
8558 local partofdeath = rarm.Zyrodoxa.Hitbox
8559 local function CreateRegion3FromLocAndSize(Position, Size)
8560 local SizeOffset = Size/2
8561 local Point1 = Position - SizeOffset
8562 local Point2 = Position + SizeOffset
8563 return Region3.new(Point1, Point2)
8564 end
8565 local reg = CreateRegion3FromLocAndSize(partofdeath.Position, partofdeath.Size)
8566 for i, v in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(reg, char:GetChildren(), 100)) do
8567 Spawn(function()
8568 if Debounces.Slashing == true and Debounces.Slashed == false then
8569 Debounces.Slashed = true
8570 ypcall(function()
8571 local humanoid = v.Parent:FindFirstChild("Humanoid") or v.Parent.Parent:FindFirstChild("Humanoid")
8572 humanoid:TakeDamage(math.random(10,18))
8573 end)
8574 wait(.4)
8575 Debounces.Slashed = false
8576 end
8577 end)
8578 end
8579end
8580----------------------------------------------------
8581pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
8582ptz = {0.7, 0.8, 0.9, 1}
8583idz = {"161006212", "161006195"}
8584function attackone()
8585 for i = 1, 13 do
8586 corw8.C0 = Lerp(corw8.C0, CFrame.new(-0.3, -1, -0.3) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(90)), 0.8)
8587 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(20), math.rad(30), math.rad(0)), 0.8)
8588 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2, 0.5, -0.3)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(-10)), 0.3)
8589 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.3)
8590 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0.4)*CFrame.Angles(math.rad(-30),math.rad(0),math.rad(-10)), 0.5)
8591 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(-40),math.rad(0)), 0.5)
8592 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(-50),0), 0.5)
8593 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.5)
8594 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.7)
8595 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(1, -1, 0) * CFrame.Angles(math.rad(18), math.rad(0), math.rad(15)), 0.7)
8596 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.4, -1.3, 0) * CFrame.Angles(math.rad(0), math.rad(40), math.rad(0)), 0.5)
8597 lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(15)), 0.5)
8598 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.7, -0.9, -0.4) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(0)), 0.5)
8599 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-10)), 0.5)
8600 if Debounces.on == false then
8601 break
8602 end
8603 fat.Event:wait()
8604 end
8605 trail(rarm.Zyrodoxa.Hitbox,20,2)
8606 Debounces.Slashing = true
8607 wait(0.2)
8608 --[[z = Instance.new("Sound", hed)
8609 z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
8610 z.Pitch = ptz[math.random(1,#ptz)]
8611 z.Volume = 1
8612 wait(.01)
8613 z:Play()]]--
8614 for i = 1, 14 do
8615 Dmg()
8616 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0.2) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(90)), 0.8)
8617 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-40), math.rad(30), math.rad(0)), 0.8)
8618 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0.4)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(100)), 0.4)
8619 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(40),math.rad(0)), 0.4)
8620 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, -0.3)*CFrame.Angles(math.rad(100),math.rad(0),math.rad(-20)), 0.4)
8621 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(20),math.rad(0)), 0.4)
8622 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(40),0), 0.7)
8623 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
8624 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -1) * CFrame.Angles(math.rad(-10), math.rad(-40), 0), 0.4)
8625 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(-1, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
8626 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.7, -0.9, -0.4) * CFrame.Angles(math.rad(0), math.rad(40), math.rad(0)), 0.5)
8627 lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-14), math.rad(0), math.rad(15)), 0.5)
8628 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(0)), 0.5)
8629 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(8), math.rad(0), math.rad(-10)), 0.5)
8630 if Debounces.on == false then break end
8631 rs:wait()
8632 end
8633 Debounces.Slashing = false
8634end
8635function attacktwo()
8636 Debounces.Slashing = true
8637 for i = 1, 14 do
8638 Dmg()
8639 corw8.C0 = Lerp(corw8.C0, CFrame.new(-0.37, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-90)), 0.4)
8640 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-60), math.rad(0), math.rad(0)), 0.4)
8641 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(80)), 0.7)
8642 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
8643 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0) *CFrame.Angles(math.rad(0),math.rad(0),math.rad (-70)), 0.5)
8644 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)
8645 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-90), math.rad(0)), 0.5)
8646 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
8647 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -2) * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0)), 0.5)
8648 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
8649 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-10), 0, math.rad(-10)), 0.5)
8650 lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
8651 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(10), 0, math.rad(10)), 0.5)
8652 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
8653 if Debounces.on == false then
8654 break
8655 end
8656 rs:wait()
8657 end
8658end
8659----------------------------------------------------
8660ComboNum = 0
8661mouse.Button1Down:connect(function()
8662 if Debounces.CanAttack == true then
8663 Debounces.CanAttack = false
8664 Debounces.NoIdl = true
8665 Debounces.on = true
8666 if ComboNum == 0 then
8667 attackone()
8668 elseif ComboNum == 1 then
8669 attacktwo()
8670 --[[elseif ComboNum == 2 then
8671 attackthree()]]--
8672 end
8673 ComboNum = ComboNum + 1
8674 Debounces.CanAttack = true
8675 Debounces.on = false
8676 wait(.5)
8677 if Debounces.CanAttack == true then
8678 ComboNum = 0
8679 Debounces.NoIdl = false
8680 end
8681 end
8682end)
8683----------------------------------------------------
8684definition = 5
8685bc = {}
8686bezierparts = {}
8687function NoOutline(Part)
8688 Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
8689end
8690function draw(p,d)
8691 for i=1,d do
8692 local t = i/d
8693 bc[i] = p[1]*(1-t)^2+2*p[2]*(1-t)*t+p[3]*t^2
8694 end
8695 for i=1,d do
8696 local bcs = Instance.new("Part",char)
8697 NoOutline(bcs)
8698 bcs.Anchored = true
8699 bcs.CanCollide = false
8700 bcs.Material = "Neon"
8701 bcs.BrickColor = BrickColor.new("Lime green")
8702 bcs.Size = Vector3.new(1,1,1)
8703 bcs.Shape = Enum.PartType.Ball
8704 bcs.CFrame = CFrame.new(bc[i])
8705 local bcp = Instance.new("Part",char)
8706 NoOutline(bcp)
8707 bcp.Anchored = true
8708 bcp.CanCollide = false
8709 bcp.Material = "Neon"
8710 bcp.BrickColor = BrickColor.new("Lime green")
8711 local cm = Instance.new("CylinderMesh")
8712 cm.Parent = bcp
8713 if i ~= 1 then
8714 bcp.CFrame = CFrame.new(bc[i]:Lerp(bc[i-1],0.5),bc[i])*CFrame.Angles(math.pi/2,0,0)
8715 bcp.Size = Vector3.new(1,(bc[i]-bc[i-1]).magnitude,1)
8716 else
8717 bcp.CFrame = CFrame.new(bc[i]:Lerp(p[1],0.5),bc[i])*CFrame.Angles(math.pi/2,0,0)
8718 bcp.Size = Vector3.new(1,(bc[i]-p[1]).magnitude,1)
8719 end
8720 table.insert(bezierparts, bcs)
8721 table.insert(bezierparts, bcp)
8722 end
8723 Spawn(function() fat.Event:wait()
8724 for i,v in pairs(bezierparts) do
8725 v.Transparency = 1
8726 end
8727 end)
8728end
8729--local points = {larm.Position,rarn.Position,invisipart.Position}
8730--draw(points,definition)
8731mouse.KeyDown:connect(function(key)
8732 if key == "f" then
8733 if Debounces.CanAttack == true then
8734 Debounces.CanAttack = false
8735 Debounces.NoIdl = true
8736 Debounces.on = true
8737 for i = 1, 20 do
8738 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.2)
8739 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
8740 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.2)
8741 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
8742 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0), math.rad(0)), 0.2)
8743 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
8744 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
8745 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
8746 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-10)), 0.2)
8747 lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
8748 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(10)), 0.2)
8749 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
8750 if Debounces.on == false then
8751 break
8752 end
8753 fat.Event:wait()
8754 end
8755 rpart = Instance.new("Part",rarm)
8756 NoOutline(rpart)
8757 rpart.Anchored = false
8758 rpart.Size = Vector3.new(1,1,1)
8759 rpart.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
8760 rpart.Transparency = 1
8761 newWeld(rarm, rpart, 0, 0, 0)
8762 rpart.Weld.C1 = CFrame.new(0, 1.1, 0)
8763 lpart = Instance.new("Part",larm)
8764 NoOutline(lpart)
8765 lpart.Anchored = false
8766 lpart.Size = Vector3.new(1,1,1)
8767 lpart.CFrame = larm.CFrame * CFrame.new(0,-1,0)
8768 lpart.Transparency = 1
8769 newWeld(larm, lpart, 0, 0, 0)
8770 lpart.Weld.C1 = CFrame.new(0, 1.1, 0)
8771 invisipart = Instance.new("Part",torso)
8772 NoOutline(invisipart)
8773 invisipart.Anchored = false
8774 invisipart.Size = Vector3.new(1,1,1)
8775 invisipart.Transparency = 1
8776 invisipart.CFrame = torso.CFrame
8777 newWeld(torso, invisipart, 0, 0, 0)
8778 invisipart.Weld.C1 = CFrame.new(0, 0, 6)
8779 table.insert(bezierparts, rpart)
8780 table.insert(bezierparts, lpart)
8781 table.insert(bezierparts, invisipart)
8782 for i = 1, 40 do
8783 local points = {lpart.Position,invisipart.Position,rpart.Position}
8784 draw(points,definition)
8785 --invisipart.Weld.C1 = invisipart.Weld.C1 + Vector3.new(0,0,0.6)
8786 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.1)
8787 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
8788 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-90)), 0.1)
8789 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
8790 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0), math.rad(0)), 0.2)
8791 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
8792 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
8793 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
8794 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-10)), 0.2)
8795 lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
8796 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(10)), 0.2)
8797 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
8798 if Debounces.on == false then
8799 break
8800 end
8801 fat.Event:wait()
8802 end
8803 for i,v in pairs(bezierparts) do
8804 v:Destroy()
8805 end
8806 --draw(points,definition)
8807 if Debounces.CanAttack == false then
8808 Debounces.CanAttack = true
8809 Debounces.NoIdl = false
8810 Debounces.on = false
8811 end
8812 end
8813 end
8814end)
8815----------------------------------------------------
8816----------------------------------------------------
8817
8818---------------------------------------------------------------------------------------
8819----------------------------------------------------
8820mouse.KeyDown:connect(function(key)
8821 if key == "b" then
8822 hum.WalkSpeed = 0.01
8823 if Debounces.CanAttack == true then
8824 Debounces.CanAttack = false
8825 Debounces.NoIdl = true
8826 Debounces.on = true
8827 for i = 1,20 do
8828 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, .5, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
8829 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, .5, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
8830 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
8831 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
8832 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
8833 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
8834
8835 if Debounces.on == false then break end
8836 wait()
8837 end
8838 wait(1)
8839 v = Instance.new("Sound")
8840 v.SoundId = "rbxassetid://435742675"
8841 v.Parent = char
8842 v.Looped = false
8843 v.Pitch = 1
8844 v.Volume = 16
8845 wait(.01)
8846 v:Play()
8847
8848 if Daytime == true then
8849 Daytime = false
8850 l.TimeOfDay = 24
8851 else
8852 Daytime = true
8853 l.TimeOfDay = 12
8854 l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
8855 end
8856
8857 local Shockwave = function()
8858 local rng1 = Instance.new("Part", char)
8859 rng1.Anchored = true
8860 rng1.BrickColor = BrickColor.new("Really black")
8861 rng1.CanCollide = false
8862 rng1.FormFactor = 3
8863 rng1.Name = "Ring"
8864 rng1.Size = Vector3.new(1, 1, 1)
8865 rng1.Transparency = 0.35
8866 rng1.TopSurface = 0
8867 rng1.BottomSurface = 0
8868 local rngm1 = Instance.new("SpecialMesh", rng)
8869 rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
8870 rngm1.Scale = Vector3.new(10, 10, 1)
8871 rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
8872 local Wave = Instance.new("Part", game.Workspace--[[?]])
8873 Wave.Name = "Shockwave"
8874 Wave.BrickColor = BrickColor.new("Really black")
8875 Wave.Size = Vector3.new(1, 1, 1)
8876 Wave.Shape = "Ball"
8877 Wave.CanCollide = false
8878 Wave.Anchored = true
8879 Wave.TopSurface = 0
8880 Wave.BottomSurface = 0
8881
8882msh=Instance.new('SpecialMesh',pt)
8883msh.MeshId='http://www.roblox.com/asset/?id=20329976'
8884msh.Scale=Vector3.new(8,4,8)
8885
8886 Wave.Touched:connect(function(hit)
8887 if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
8888 local Occlude = true
8889 local NotOccludes = {
8890 char.Name;
8891 "Wings";
8892 "Scythe";
8893 "Thingy";
8894 "Thingy2"; -- put all of the names in a table pls
8895 }
8896 for i,v in pairs(NotOccludes) do
8897 if hit.Parent.Name == v then
8898 Occlude = false
8899 end
8900 end
8901 --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
8902 if Occlude then
8903 hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
8904 hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
8905 end
8906 end
8907 end)
8908
8909 Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
8910
8911 coroutine.wrap(function()
8912 for i = 1, 20, 0.2 do
8913 rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
8914 rng1.Transparency = i/20
8915 wait()
8916 end
8917 wait()
8918 rng1:Destroy()
8919 end)()
8920
8921 Delay(0, function()
8922
8923 if Daytime == false then
8924 for i = 1, 50, 1 do
8925 Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
8926 Wave.CFrame = char.Torso.CFrame
8927 local t = i / 50
8928 Wave.Transparency = t
8929 wait()
8930 end
8931 else
8932 for i = 1, 50, 1 do
8933 Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
8934 Wave.CFrame = char.Torso.CFrame
8935 local t = i / 50
8936 Wave.Transparency = t
8937 wait()
8938 end
8939 end
8940 Wave:Destroy()
8941 end)
8942 Delay(0, function()
8943 while wait() do
8944 if Wave ~= nil then
8945 Wave.CFrame = char.Torso.CFrame
8946 else
8947 break
8948 end
8949 end
8950 end)
8951 end
8952 Shockwave()
8953
8954
8955 for i = 1, 15 do
8956 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
8957 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
8958 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
8959 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
8960 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
8961 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
8962 if Debounces.on == false then break end
8963 wait()
8964 end
8965 for i = 1, 15 do
8966 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
8967 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
8968 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
8969 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
8970 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
8971 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
8972 if Debounces.on == false then break end
8973 wait()
8974 end
8975 for i = 1, 15 do
8976 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
8977 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
8978 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
8979 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
8980 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
8981 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
8982 if Debounces.on == false then break end
8983 wait()
8984 end
8985 for i = 1, 15 do
8986 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
8987 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
8988 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
8989 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
8990 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
8991 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
8992 if Debounces.on == false then break end
8993 wait()
8994 end
8995 for i = 1, 15 do
8996 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
8997 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
8998 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
8999 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
9000 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
9001 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
9002 if Debounces.on == false then break end
9003 wait()
9004 end
9005 for i = 1, 15 do
9006 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
9007 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
9008 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
9009 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
9010 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
9011 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
9012 if Debounces.on == false then break end
9013 wait()
9014 end
9015 wait(1.4)
9016 Debounces.NoIdl = false
9017 hum.WalkSpeed = 16
9018 Debounces.on = false
9019 wait()
9020 if Debounces.CanAttack == false then
9021 Debounces.CanAttack = true
9022 v:Destroy()
9023 end
9024 end
9025 end
9026end)
9027------------------------------------------
9028
9029-------------------------------------------------
9030Grab = false
9031mouse.KeyDown:connect(function(key)
9032 if key == "z" then
9033 Debounces.on = true
9034 Debounces.NoIdl = true
9035 Debounces.ks = true
9036 if Grab == false then
9037 gp = nil
9038 for i = 1, 20 do
9039 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.2)
9040 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9041 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-80)), 0.2)
9042 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9043 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-70),0), 0.2)
9044 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9045 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.2)
9046 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9047 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(30), math.rad(-20)), 0.2)
9048 lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
9049 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-15), math.rad(20)), 0.2)
9050 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
9051 if Debounces.on == false then break end
9052 fat.Event:wait()
9053 end
9054 con1=larm.LeftArm.LeftArmPlate.Touched:connect(function(hit)
9055 ht = hit.Parent
9056 for i,v in pairs(ht:GetChildren()) do
9057 if v:IsA("Part") then
9058 v.CanCollide = false
9059 v.CustomPhysicalProperties = PhysicalProperties.new(0.001,0.001,0.001,0.001,0.001)
9060 end
9061 end
9062 hum1=ht:FindFirstChild('Humanoid')
9063 if hum1 ~= nil then
9064 if Debounces.ks==true then
9065 z = Instance.new("Sound",hed)
9066 z.SoundId = "rbxassetid://169380525"
9067 z.Volume = 1
9068 z:Play()
9069 Debounces.ks=false
9070 end
9071 hum1.PlatformStand=true
9072 hum1:ChangeState'Physics'
9073 gp = ht
9074 Grab = true
9075 asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-1,0.6),CFrame.new(0,0,0))
9076 asd.Parent = larm
9077 asd.Name = "asd"
9078 asd.C0=asd.C0*CFrame.Angles(math.rad(-90),math.rad(180),0)
9079 stanceToggle = "Grabbed"
9080 --[[elseif hum1 == nil then
9081 con1:disconnect()
9082 wait() return]]--
9083 end
9084 end)
9085 for i = 1, 20 do
9086 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.2)
9087 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9088 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.65,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
9089 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9090 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.2)
9091 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9092 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.2)
9093 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9094 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2)
9095 lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
9096 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.2)
9097 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
9098 if Debounces.on == false then break end
9099 fat.Event:wait()
9100 end
9101 con1:disconnect()
9102 Debounces.on = false
9103 Debounces.NoIdl = false
9104 elseif Grab == true then
9105 Grab = false
9106 --[[for i = 1, 16 do
9107 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(0),math.rad(50),math.rad(60)), 0.3)
9108 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,-.5)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-60)), 0.3)
9109 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(70),0), 0.3)
9110 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
9111 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.3)
9112 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
9113 cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), 0), 0.3)
9114 if Debounces.on == false then end
9115 rs:wait()
9116 end]]--
9117 for i = 1, 16 do
9118 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(0)), 0.3)
9119 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.5)
9120 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(140),math.rad(0),math.rad(0)), 0.3)
9121 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(60)), 0.5)
9122 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(20),math.rad(-60),0), 0.3)
9123 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9124 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.3)
9125 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9126 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(-20)), 0.3)
9127 lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(40)), 0.4)
9128 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
9129 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
9130 if Debounces.on == false then end
9131 rs:wait()
9132 end
9133 for i = 1, 12 do
9134 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0) *CFrame.Angles(math.rad(0),math.rad(0),math.rad(20)), 0.6)
9135 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9136 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.3,-0.1)*CFrame.Angles(math.rad(45),math.rad(0),math.rad(-32)), 0.6)
9137 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9138 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(40), math.rad(14)),0.6)
9139 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9140 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-50), math.rad(0), math.rad(0)), 0.6)
9141 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(40),math.rad(0)), 0.5)
9142 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.6)
9143 lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(40)), 0.4)
9144 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.4, .2, -0.8) * CFrame.Angles(math.rad(30), math.rad(0), math.rad(0)), 0.6)
9145 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(20), math.rad(0)), 0.4)
9146 if Debounces.on == false then end
9147 rs:wait()
9148 end
9149 Slam()
9150 if gp ~= nil then
9151 for i,v in pairs(larm:GetChildren()) do
9152 if v.Name == "asd" and v:IsA("Weld") then
9153 v:Remove()
9154 end
9155 if v:IsA("Part") then
9156 v.CanCollide = true
9157 v.CustomPhysicalProperties = PhysicalProperties.new(1,1,1,1,1)
9158 end
9159 end
9160 end
9161 stanceToggle = "Idle1"
9162 --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
9163 bv.maxForce = Vector3.new(400000, 400000, 400000)
9164 bv.P = 125000
9165 bv.velocity = char.Head.CFrame.lookVector * 200]]--
9166 ht=nil
9167 Debounces.on = false
9168 Debounces.NoIdl = false
9169 elseif ht == nil then wait()
9170 Grab = false
9171 Debounces.on = false
9172 Debounces.NoIdl = false
9173 end
9174 end
9175end)
9176----------------------------------------------------
9177-------------------------------------------------------------------------------------------------
9178
9179----------------------------------------------------
9180
9181
9182----------------------------------------------------
9183----------------------------------------------------
9184------------------------------------------------
9185pts = {4, 4.2, 4.4, 4.6, 4.8, 5, 5.2, 5.4}
9186mouse.KeyDown:connect(function(key)
9187 if key == "e" then
9188 if Debounces.CanAttack == true then
9189 Debounces.CanAttack = false
9190 Debounces.NoIdl = true
9191 Debounces.on = true
9192 Debounces.ks = true
9193 larm.Touched:connect(function(ht)
9194 hit = ht.Parent
9195 if ht and hit:IsA("Model") then
9196 if hit:FindFirstChild("Humanoid") then
9197 if hit.Name ~= p.Name then
9198 if Debounces.Slapping == true and Debounces.Slapped == false then
9199 Debounces.Slapped = true
9200 if Debounces.ks==true then
9201 z = Instance.new("Sound",hed)
9202 z.SoundId = "rbxassetid://169380525"
9203 z.Volume = 1
9204 z:Play()
9205 z1 = Instance.new("Sound",char)
9206 z1.SoundId = "rbxassetid://261010715"
9207 z1.Pitch = pts[math.random(1,#pts)]
9208 z1.Volume = 1
9209 z2 = Instance.new("Sound",char)
9210 z2.SoundId = "rbxassetid://261010715"
9211 z2.Pitch = z1.Pitch
9212 z2.Volume = 1
9213 z3 = Instance.new("Sound",char)
9214 z3.SoundId = "rbxassetid://261010715"
9215 z3.Pitch = z1.Pitch
9216 z3.Volume = 1
9217if Profanity == true then
9218 z1:Play()
9219 z2:Play()
9220 z3:Play()
9221else end
9222 Debounces.ks=false
9223 end
9224 hit:FindFirstChild("Humanoid"):TakeDamage(10)
9225 hit:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 90
9226 wait(.5)
9227 Debounces.Slapped = false
9228 z:Destroy()
9229 z1:Destroy()
9230 z2:Destroy()
9231 z3:Destroy()
9232 end
9233 end
9234 end
9235 elseif ht and hit:IsA("Hat") then
9236 if hit.Parent.Name ~= p.Name then
9237 if hit.Parent:FindFirstChild("Humanoid") then
9238 if Debounces.Slapping == true and Debounces.Slapped == false then
9239 Debounces.Slapped = true
9240 if Debounces.ks==true then
9241 z = Instance.new("Sound",hed)
9242 z.SoundId = "rbxassetid://169380525"
9243 z.Volume = 1
9244 z:Play()
9245 z1 = Instance.new("Sound",char)
9246 z1.SoundId = "rbxassetid://261010715"
9247 z1.Pitch = pts[math.random(1,#pts)]
9248 z1.Volume = 1
9249 z2 = Instance.new("Sound",char)
9250 z2.SoundId = "rbxassetid://261010715"
9251 z2.Pitch = z1.Pitch
9252 z2.Volume = 1
9253 z3 = Instance.new("Sound",char)
9254 z3.SoundId = "rbxassetid://261010715"
9255 z3.Pitch = z1.Pitch
9256 z3.Volume = 1
9257 z1:Play()
9258 z2:Play()
9259 z3:Play()
9260 Debounces.ks=false
9261 end
9262 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
9263 wait(.5)
9264 Debounces.Slapped = false
9265 z:Destroy()
9266 z1:Destroy()
9267 z2:Destroy()
9268 z3:Destroy()
9269 end
9270 end
9271 end
9272 end
9273 end)
9274 for i = 1, 14 do
9275 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3, 0.5, -.3) * CFrame.Angles(math.rad(50), 0, math.rad(40)), 0.5)
9276 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), 0, math.rad(40)), 0.5)
9277 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
9278 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0)), 0.5)
9279 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.5)
9280 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.5)
9281 if Debounces.on==false then break end
9282 rs:wait(2)
9283 end
9284 Debounces.Slapping = true
9285 for i = 1, 20 do
9286 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3, 0.7, .3) * CFrame.Angles(math.rad(50), 0, math.rad(-110)), 0.6)
9287 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), 0, math.rad(40)), 0.6)
9288 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-70), math.rad(0)), 0.6)
9289 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(0), math.rad(70), math.rad(0)), 0.6)
9290 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
9291 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
9292 if Debounces.on==false then break end
9293 rs:wait(2)
9294 end
9295 Debounces.Slapping = false
9296 if Debounces.CanAttack == false then
9297 Debounces.CanAttack = true
9298 Debounces.NoIdl = false
9299 Debounces.on = false
9300 end
9301 end
9302 end
9303end)
9304-------------------------------
9305mouse.KeyDown:connect(function(key)
9306 if key == "t" then
9307 if Debounces.CanAttack == true then
9308 Debounces.CanAttack = false
9309 Debounces.on = true
9310 Debounces.NoIdl = true
9311 for i = 1, 20 do
9312 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.15,0.55,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
9313 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.15,0.55,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
9314 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
9315 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
9316 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, .3) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
9317 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.6) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
9318
9319 if Debounces.on == false then break end
9320 wait()
9321 end
9322 Spawn(function()
9323 local Parts = {}
9324 for Y = -5,5 do
9325 local P = Instance.new("Part",char)
9326 P.Anchored = true
9327 P.FormFactor = "Custom"
9328 P.CanCollide = false
9329 P.Size = Vector3.new(1,2,1)
9330 P.TopSurface = "SmoothNoOutlines"
9331 P.BottomSurface = "SmoothNoOutlines"
9332 P.BrickColor = BrickColor.new("Really black")
9333 P.Name = tostring(Y)
9334 local i = (Y+5)/(10)
9335 i = 1-math.cos(math.pi*i-(math.pi/2))
9336 P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
9337 --[[P.Touched:connect(function(ht)
9338 local hit = ht.Parent
9339 if hit:FindFirstChild("Humanoid") then
9340 hit.Humanoid:TakeDamage(math.random(20,50))
9341 end
9342 end)]]--
9343 s = Instance.new("Sound",P)
9344 s.SoundId = "rbxassetid://228343271"
9345 s.Volume = 19
9346 s.Pitch = 0.9
9347 s:Play()
9348P.Touched:connect(function(ht)
9349 hit = ht.Parent
9350 if ht and hit:IsA("Model") then
9351 if hit:FindFirstChild("Humanoid") then
9352 if hit.Name ~= p.Name then
9353 --[[if Debounces.Slashing == true and Debounces.Slashed == false then
9354 Debounces.Slashed = true]]--
9355 hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
9356 hit:FindFirstChild("Humanoid").PlatformStand = true
9357 wait(1)
9358 --Debounces.Slashed = false
9359 --end
9360 end
9361 end
9362 elseif ht and hit:IsA("Hat") then
9363 if hit.Parent.Name ~= p.Name then
9364 if hit.Parent:FindFirstChild("Humanoid") then
9365 --[[if Debounces.Slashing == true and Debounces.Slashed == false then
9366 Debounces.Slashed = true]]--
9367 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
9368 hit:FindFirstChild("Humanoid").PlatformStand = true
9369 wait(1)
9370 --Debounces.Slashed = false
9371 --end
9372 end
9373 end
9374 end
9375end)
9376 Parts[#Parts+1] = P
9377 end
9378 local BREAKIT = false
9379 local CParts = {}
9380 local Rocks = {}
9381 local LastPos = nil
9382 for i = 1,70 do
9383 for i2,v in pairs(Parts) do
9384 v.CFrame = v.CFrame*CFrame.new(0,0,-4)
9385 local cf = v.CFrame
9386 v.Size = v.Size+Vector3.new(0.4,0.35,0)
9387 v.CFrame = cf
9388 v.Transparency = v.Transparency+0.02
9389 if v.Transparency >= 0.975 then BREAKIT = true end
9390 if v.Name == "0" then
9391 local Ignore = {}
9392 for i,v in pairs(game:GetService("Players"):GetPlayers()) do
9393 if v.Character ~= nil then
9394 Ignore[#Ignore+1] = v.Character
9395 end
9396 end
9397 local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
9398 local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
9399 if Hit ~= nil then
9400 if #Rocks == 0 then
9401 for i = 1,5 do
9402 local P = Instance.new("Part",char)
9403 Rocks[#Rocks+1] = P
9404 P.Anchored = true
9405 P.FormFactor = "Custom"
9406 P.BrickColor = Hit.BrickColor
9407 P.Material = Hit.Material
9408 P.TopSurface = "Smooth"
9409 P.BottomSurface = "Smooth"
9410 P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
9411 end
9412 end
9413 for i,P in pairs(Rocks) do
9414 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)))
9415 end
9416 local P = Instance.new("Part",char)
9417 CParts[#CParts+1] = {P,tick()}
9418 P.Anchored = true
9419 P.FormFactor = "Custom"
9420 P.BrickColor = Hit.BrickColor
9421 P.Material = Hit.Material
9422 P.TopSurface = "Smooth"
9423 P.BottomSurface = "Smooth"
9424 P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
9425 Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
9426 Pos = Pos.p
9427 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)))
9428 local P = P:Clone()
9429 CParts[#CParts+1] = {P,tick()}
9430 P.Parent = char
9431 Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
9432 Pos = Pos.p
9433 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)))
9434 if LastPos ~= nil then
9435 local P = P:Clone()
9436 CParts[#CParts+1] = {P,tick()}
9437 P.Parent = char
9438 P.BrickColor = BrickColor.new("Really black")
9439 Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
9440 Pos = Pos.p
9441 local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
9442 P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
9443 --P.Velocity = Vector3.new(0,-1000,0)
9444 P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
9445 end
9446 LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
9447 end
9448 end
9449 end
9450 if BREAKIT then break end
9451 wait(0.002)
9452 end
9453 for i,v in pairs(Rocks) do
9454 CParts[#CParts+1] = {v,tick()}
9455 end
9456 for i,v in pairs(Parts) do
9457 v:Destroy()
9458 end
9459 Parts = nil
9460 while true do
9461 local t = tick()
9462 local p = nil
9463 for i,v in pairs(CParts) do
9464 if t-v[2] > 4 then
9465 v[1].Transparency = v[1].Transparency+0.05
9466 if v[1].Transparency >= 1 then
9467 v[1]:Destroy()
9468 CParts[i] = nil
9469 end
9470 end
9471 p = v
9472 end
9473 if p == nil then break end
9474 wait(0.002)
9475 end
9476 for i,v in pairs(CParts) do
9477 v:Destroy()
9478 end
9479 CParts = {}
9480 end)
9481 for i = 1, 20 do
9482 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.15,.4,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
9483 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.15,.4,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
9484 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
9485 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
9486 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.5, -0.7) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
9487 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.8, -.45) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
9488
9489 if Debounces.on == false then break end
9490 wait()
9491 end
9492 if Debounces.CanAttack == false then
9493 Debounces.CanAttack = true
9494 Debounces.on = false
9495 Debounces.NoIdl = false
9496 end
9497 end
9498 end
9499end)
9500----------------------------------------------------
9501----------------------------------------------------
9502----------------------------------------------------
9503-------------------
9504
9505Change = false
9506mouse.KeyDown:connect(function(key)
9507 if key == "n" then
9508 if Change == false then
9509 Change = true
9510 stanceToggle = "Idle2"
9511 elseif Change == true then
9512 Change = false
9513 stanceToggle = "Idle1"
9514 end
9515 end
9516end)
9517----------------------------------------------------
9518mod=Instance.new('Model',char)
9519
9520function charge()
9521 hed.Velocity=hed.CFrame.lookVector*200
9522 part=Instance.new('Part',mod)
9523 part.Anchored=true
9524 part.CanCollide=false
9525 part.FormFactor='Custom'
9526 part.Size=Vector3.new(.2,.2,.2)
9527 part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
9528 part.Transparency=.7
9529 part.BrickColor=BrickColor.new('Black')
9530 mesh=Instance.new('SpecialMesh',part)
9531 mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
9532 mesh.Scale=Vector3.new(10,5,10)
9533 part2=part:clone()
9534 part2.Parent=mod
9535 part2.BrickColor=BrickColor.new('Lime green')
9536 mesh2=mesh:clone()
9537 mesh2.Parent=part2
9538 mesh2.Scale=Vector3.new(20,10,20)
9539 part3=part2:clone()
9540 part3.Parent = mod
9541 part3.BrickColor=BrickColor.new('Really black')
9542 mesh3=mesh2:clone()
9543 mesh2.Parent=part3
9544 mesh3.Scale=Vector3.new(30,15,30)
9545 coroutine.resume(coroutine.create(function()
9546 for i=0,1,0.1 do
9547 wait()
9548 part.CFrame=part.CFrame
9549 part.Transparency=i
9550 mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
9551 part2.CFrame=part2.CFrame
9552 part2.Transparency=i
9553 mesh2.Scale=mesh2.Scale+Vector3.new(2,2,2)
9554 part3.CFrame=part3.CFrame
9555 part3.Transparency=i
9556 mesh3.Scale=mesh3.Scale+Vector3.new(2,2,2)
9557 end
9558 part.Parent=nil
9559 part2.Parent=nil
9560 part3.Parent = nil
9561 end))
9562end
9563--------------------
9564mouse.KeyDown:connect(function(key)
9565 if key == "g" then
9566 larm.BrickColor = BrickColor.new("Bright red")
9567 rarm.BrickColor = BrickColor.new("Bright red")
9568 if Debounces.CanAttack == true then
9569 Debounces.CanAttack = false
9570 Debounces.on = true
9571 Debounces.NoIdl = true
9572 chrg = lleg.Touched:connect(function(ht)
9573 hit = ht.Parent
9574 if ht and hit:IsA("Model") then
9575 if hit:FindFirstChild("Humanoid") then
9576 if hit.Name ~= p.Name then
9577 --[[if Debounces.Slashing == true and Debounces.Slashed == false then
9578 Debounces.Slashed = true]]--
9579 hit:FindFirstChild("Humanoid"):TakeDamage(2)
9580 hit:FindFirstChild("Humanoid").PlatformStand = true
9581 hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
9582 --Debounces.Slashed = false
9583 --end
9584 end
9585 end
9586 elseif ht and hit:IsA("Hat") then
9587 if hit.Parent.Name ~= p.Name then
9588 if hit.Parent:FindFirstChild("Humanoid") then
9589 --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
9590 Debounces.Slashed = true]]--
9591 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
9592 hit:FindFirstChild("Humanoid").PlatformStand = true
9593 hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
9594 --Debounces.Slashed = false
9595 end
9596 end
9597 end
9598 end)
9599 for i = 1, 14 do
9600 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, .45, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.5)
9601 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3, .45, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.5)
9602 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.5)
9603 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
9604 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
9605 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
9606
9607 if Debounces.on == false then break end
9608 wait()
9609 end
9610 charge()
9611 z = Instance.new("Sound",char)
9612 z.SoundId = "rbxassetid://200632875"
9613 z.Volume = 1
9614 z.Pitch = .8
9615 z1 = Instance.new("Sound",char)
9616 z1.SoundId = "rbxassetid://200632875"
9617 z1.Volume = 1
9618 z1.Pitch = .9
9619 z:Play()
9620 z1:Play()
9621 wait(1)
9622 z:Destroy()
9623 z1:Destroy()
9624 chrg:disconnect()
9625 if Debounces.CanAttack == false then
9626 Debounces.CanAttack = true
9627 Debounces.on = false
9628 Debounces.NoIdl = false
9629 larm.BrickColor = BrickColor.new("White")
9630 rarm.BrickColor = BrickColor.new("White")
9631 end
9632 end
9633 end
9634end)
9635------------------------------
9636mouse.KeyDown:connect(function(key)
9637 if string.byte(key) == 52 then
9638 Swing = 2
9639 char.Humanoid.WalkSpeed = 28
9640 end
9641end)
9642mouse.KeyUp:connect(function(key)
9643 if string.byte(key) == 52 then
9644 Swing = 1
9645 char.Humanoid.WalkSpeed = 16
9646 end
9647end)
9648----------------------------------------------------
9649
9650-------------------------------------------
9651CR = torso.Cloak.Rotater
9652CR2 = torso.Cloak.CapeLevel1
9653CR3 = torso.Cloak.CapeLevel2
9654CR4 = torso.Cloak.CapeLevel3
9655CR5 = torso.Cloak.CapeLevel4
9656jump = false
9657rs:connect(function()
9658 if char.Humanoid.Jump == true then
9659 jump = true
9660 else
9661 jump = false
9662 end
9663 char.Humanoid.FreeFalling:connect(function(f)
9664 if f then
9665 ffing = true
9666 else
9667 ffing = false
9668 end
9669 end)
9670 sine = sine + change
9671 if jump == true then
9672 animpose = "Jumping"
9673 elseif ffing == true then
9674 animpose = "Freefalling"
9675 elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
9676 animpose = "Idle"
9677 elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
9678 animpose = "Walking"
9679 elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
9680 animpose = "Running"
9681 end
9682 RightLeg = CFrame.new(0.5,-1,0)
9683 LeftLeg = CFrame.new(-0.5,-1,0)
9684
9685 lefth = (torso.CFrame*LeftLeg)
9686 righth = (torso.CFrame*RightLeg)
9687
9688 speed = Vector3.new(torso.Velocity.X,0,torso.Velocity.Z)
9689
9690 TiltOnAxis = (torso.CFrame-torso.CFrame.p):vectorToObjectSpace(speed/100)
9691
9692 local AngleThetaR = (righth-righth.p):vectorToObjectSpace(speed/100)
9693 local AngleThetaL = (lefth-lefth.p):vectorToObjectSpace(speed/100)
9694 if animpose ~= lastanimpose then
9695 sine = 0
9696 if Debounces.NoIdl == false then
9697 if stanceToggle == "Idle1" then
9698 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0.2)*CFrame.Angles(math.rad(-12-4*math.cos(sine/22)),math.rad(-12-2*math.cos(sine/22)),math.rad(12+2*math.cos(sine/22))), 0.3)
9699 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,-0.2)*CFrame.Angles(math.rad(20+4*math.cos(sine/22)),math.rad(-22-2*math.cos(sine/22)),math.rad(-15-2*math.cos(sine/22))), 0.3)
9700 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-12+2.5*math.cos(sine/22)),math.rad(0),math.rad(0)), 0.2)
9701 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-2+2*math.cos(sine/22)), math.rad(0), 0), 0.2)
9702 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.06) * CFrame.Angles(math.rad(0-2*math.cos(sine/22)), math.rad(5), math.rad(-5)), 0.2)
9703 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(0-2*math.cos(sine/22)), math.rad(-5), math.rad(5)), 0.2)
9704 elseif stanceToggle == "Idle2" then
9705 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0.2)*CFrame.Angles(math.rad(-22-4*math.cos(sine/12)),math.rad(-40-2*math.cos(sine/12)),math.rad(24+2*math.cos(sine/12))), 0.3)
9706 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.6,-0.6)*CFrame.Angles(math.rad(90+4*math.cos(sine/12)),math.rad(0),math.rad(50-2*math.cos(sine/12))), 0.3)
9707 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-6+2.5*math.cos(sine/12)),math.rad(0),math.rad(0)), 0.2)
9708 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-20+2*math.cos(sine/12)), math.rad(0), 0), 0.2)
9709 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.4, -1) * CFrame.Angles(math.rad(-7-2*math.cos(sine/12)), math.rad(7), math.rad(-5)), 0.2)
9710 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.8, -0.2) * CFrame.Angles(math.rad(-30-2*math.cos(sine/12)), math.rad(-9), math.rad(5)), 0.2)
9711 end
9712 fat.Event:wait()
9713 end
9714 else
9715 end
9716 lastanimpose = animpose
9717 if Debounces.NoIdl == false then
9718 if animpose == "Idle" then
9719 change = 0.5
9720 if stanceToggle == "Idle1" then
9721 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1.05+0.03*math.cos(sine/5), 0-0.1*math.cos(sine/10)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
9722 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0+8*math.cos(sine/10)), math.rad(0), math.rad(0)), 0.3)
9723 CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-4-2*math.cos(sine/10)),0,0),0.1)
9724 CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
9725 CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
9726 CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
9727 CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
9728 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6+0.05*math.cos(sine/10),0.6+0.1*math.cos(sine/10),-0.2-0.1*math.cos(sine/10))*CFrame.Angles(math.rad(8+2.5*math.cos(sine/10)),math.rad(22+7*math.cos(sine/10)),math.rad(15+2*math.cos(sine/10))), 0.8)
9729 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9730 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6-0.05*math.cos(sine/10),0.6+0.1*math.cos(sine/10),0.2+0.1*math.cos(sine/10))*CFrame.Angles(math.rad(-8-2.5*math.cos(sine/10)),math.rad(12+5*math.cos(sine/10)),math.rad(-12-3*math.cos(sine/10))), 0.8)
9731 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9732 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+0.05*math.cos(sine/10))*CFrame.Angles(math.rad(-15+3*math.cos(sine/10)),math.rad(0),math.rad(0)), 0.5)
9733 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(20-3*math.cos(sine/10)),math.rad(0)), 0.5)
9734 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-6+3*math.cos(sine/10)), math.rad(0), 0), 0.1)
9735 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0-0.08*math.cos(sine/10), -1, 0) * CFrame.Angles(math.rad(0), math.rad(-20+3*math.cos(sine/10)), 0), 0.1)
9736 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.14+0.06*math.cos(sine/10)) * CFrame.Angles(math.rad(-3-3*math.cos(sine/10)), math.rad(0), math.rad(0)), 0.1)
9737 lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(-10-3*math.cos(sine/10)), math.rad(5+3*math.cos(sine/10))), 0.1)
9738 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(8-3*math.cos(sine/10)), math.rad(0), math.rad(0)), 0.1)
9739 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(10-3*math.cos(sine/10)), math.rad(-5+3*math.cos(sine/10))), 0.1)
9740 elseif stanceToggle == "Idle2" then
9741 CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-6),0,0),0.1)
9742 CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-7-1*math.cos(sine/6)),0,0),0.1)
9743 CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-7-1*math.cos(sine/6)),0,0),0.1)
9744 CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-7-1*math.cos(sine/6)),0,0),0.1)
9745 CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-8-1*math.cos(sine/6)),0,0),0.1)
9746 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
9747 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65-0.1*math.cos(sine/3),0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(20-2*math.cos(sine/3))), 0.1)
9748 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
9749 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.23, 0.5, -.56) * CFrame.Angles(math.rad(88+4*math.cos(sine/3)), 0, math.rad(45)), 0.6)
9750 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
9751 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2-0.05*math.cos(sine/3), 0) * CFrame.Angles(math.rad(-10+2*math.cos(sine/6)), 0, 0), 0.8)
9752 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
9753 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10), 0, 0), 0.3)
9754 --hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-5-10*math.cos(sine/18)), math.sin(sine/36)/3, 0), 0.3)
9755 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9756 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1.15) * CFrame.Angles(math.rad(-9-2*math.cos(sine/6)), 0, 0), 0.8)
9757 lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1-0.1*math.cos(sine/3), 0+0.04*math.cos(sine/6)) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(5)), 0.8)
9758 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-56-2*math.cos(sine/6)), 0, 0), 0.8)
9759 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1-0.05*math.cos(sine/3), 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)), 0.8)
9760 elseif stanceToggle == "Grabbed" then
9761 grab = true
9762 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
9763 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
9764 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(40+2*math.cos(sine/14))), 0.2)
9765 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0,0.5, 0)*CFrame.Angles(math.rad(0), math.rad(0),math.rad(0)), 0.2)
9766 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/14),-.5)*CFrame.Angles(math.rad(90+4*math.cos(sine/14)),math.rad(0),math.rad(-80+4*math.cos(sine/14))), 0.3)
9767 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0,0.5, 0)*CFrame.Angles(math.rad(0), math.rad(0),math.rad(0)), 0.2)
9768 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14+2*math.cos(sine/14)),math.rad(70-4*math.cos(sine/14)),0), 0.3)
9769 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9770 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
9771 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
9772 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.3)
9773 lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
9774 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
9775 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
9776 end
9777 elseif animpose == "Walking" then
9778 if stanceToggle == "Grabbed" then
9779 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
9780 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
9781 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5-.05*math.cos(sine/2), math.sin(sine/4)/4) * CFrame.Angles(-math.sin(sine/4)/2.8, -math.sin(sine/4)/3, (math.rad(10+7*math.cos(sine/2))+root.RotVelocity.Y/30)), 0.4)
9782 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
9783 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(120+4*math.cos(sine/2)),math.rad(0),math.rad(-30+4*math.cos(sine/4))), 0.3)
9784 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0,0.5, 0)*CFrame.Angles(math.rad(0), math.rad(0),math.rad(0)), 0.2)
9785 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+0.1*math.cos(sine/2))*CFrame.Angles(math.rad(-10+4*math.cos(sine/2)), math.rad(0-8*math.cos(sine/4)/2.3), math.rad(0)),0.4)
9786 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0)-root.RotVelocity.Y/10,math.rad(0)), 0.7)
9787 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.12*math.cos(sine/2), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/2)), math.rad(0+10*math.cos(sine/4)/2.3)+root.RotVelocity.Y/30, math.rad(0)+root.RotVelocity.Y/30), 0.4)
9788 --rj.C0 = rj.C0:lerp(CFrame.Angles(math.rad(-90)+TiltOnAxis.Z,TiltOnAxis.X,math.rad(180)+-TiltOnAxis.X),.1)
9789 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
9790 lleg.Weld.C0 = lleg.Weld.C0:lerp(CFrame.new(-0.5,-1-math.cos(sine/4)*.3,0+math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*AngleThetaL.Z,AngleThetaL.X,(math.sin(sine/4)*3*-AngleThetaL.X)-root.RotVelocity.Y/20),0.8)
9791 lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
9792 rleg.Weld.C0 = rleg.Weld.C0:lerp(CFrame.new(0.5,-1+math.cos(sine/4)*.3,0-math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*-AngleThetaR.Z,AngleThetaR.X,(math.sin(sine/4)*3*AngleThetaR.X)-root.RotVelocity.Y/20),0.8)
9793 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
9794 elseif stanceToggle ~= "Grabbed" then
9795 change = 1
9796 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
9797 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
9798 CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-22-2*math.cos(sine/2)),0,0),0.2)
9799 CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-3*math.cos(sine/2)),0,0),0.2)
9800 CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-4*math.cos(sine/2)),0,0),0.2)
9801 CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-5*math.cos(sine/2)),0,0),0.2)
9802 CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-6*math.cos(sine/2)),0,0),0.2)
9803 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5-.05*math.cos(sine/2), math.sin(sine/4)/4) * CFrame.Angles(-math.sin(sine/4)/2.8, -math.sin(sine/4)/3, (math.rad(10+7*math.cos(sine/2))+root.RotVelocity.Y/30)), 0.4)
9804 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
9805 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5+.05*math.cos(sine/2), -math.sin(sine/4)/4)*CFrame.Angles(math.sin(sine/4)/2.8, -math.sin(sine/4)/3, (math.rad(-10-7*math.cos(sine/2))+root.RotVelocity.Y/30)), 0.4)
9806 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
9807 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+0.1*math.cos(sine/2))*CFrame.Angles(math.rad(-10+4*math.cos(sine/2)), math.rad(0-8*math.cos(sine/4)/2.3), math.rad(0)),0.4)
9808 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0)-root.RotVelocity.Y/10,math.rad(0)), 0.7)
9809 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.12*math.cos(sine/2), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/2)), math.rad(0+10*math.cos(sine/4)/2.3)+root.RotVelocity.Y/30, math.rad(0)+root.RotVelocity.Y/30), 0.4)
9810 --rj.C0 = rj.C0:lerp(CFrame.Angles(math.rad(-90)+TiltOnAxis.Z,TiltOnAxis.X,math.rad(180)+-TiltOnAxis.X),.1)
9811 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
9812 --lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.9-0.24*math.cos(sine/4)/2.8, -0.05 + math.sin(sine/4)/3.4) * CFrame.Angles(math.rad(-5)-math.sin(sine/4)/2.1, math.rad(0-10*math.cos(sine/4)/2.3), 0-root.RotVelocity.Y/20), .4)
9813 lleg.Weld.C0 = lleg.Weld.C0:lerp(CFrame.new(-0.5,-1-math.cos(sine/4)*.3,0+math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*AngleThetaL.Z,AngleThetaL.X,(math.sin(sine/4)*3*-AngleThetaL.X)-root.RotVelocity.Y/20),0.8)
9814 lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
9815 --rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.9+0.24*math.cos(sine/4)/2.8, -0.05 + -math.sin(sine/4)/3.4) * CFrame.Angles(math.rad(-5)+math.sin(sine/4)/2.1, math.rad(0-10*math.cos(sine/4)/2.3), 0-root.RotVelocity.Y/20), .4)
9816 rleg.Weld.C0 = rleg.Weld.C0:lerp(CFrame.new(0.5,-1+math.cos(sine/4)*.3,0-math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*-AngleThetaR.Z,AngleThetaR.X,(math.sin(sine/4)*3*AngleThetaR.X)-root.RotVelocity.Y/20),0.8)
9817 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
9818 end
9819 elseif animpose == "Running" then
9820 change = 1
9821 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
9822 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
9823 CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-56-10*math.cos(sine/2)),0,0),0.2)
9824 CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
9825 CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
9826 CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
9827 CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
9828 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.24+.6*math.cos(sine/4)/1.4, 0.54, 0+0.8*math.cos(sine/4)) * CFrame.Angles(math.rad(6-140*math.cos(sine/4)/1.2), math.rad(0), math.rad(-20+70*math.cos(sine/4))), 0.2)
9829 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
9830 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.24+.6*math.cos(sine/4)/1.4, 0.54, 0-0.8*math.cos(sine/4))*CFrame.Angles(math.rad(6+140*math.cos(sine/4)/1.2), math.rad(0), math.rad(20+70*math.cos(sine/4))), 0.2)
9831 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9832 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-8+12*math.cos(sine/2)/1.5), math.rad(0+12*math.cos(sine/4)), math.rad(0)),0.2)
9833 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0)-root.RotVelocity.Y/10,math.rad(0)), 0.5)
9834 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.2*math.cos(sine/2)/1.7, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/2)/1.5), math.rad(0-12*math.cos(sine/4))-root.RotVelocity.Y/10, math.rad(0)+root.RotVelocity.Y/20), 0.2)
9835 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
9836 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.8-0.4*math.cos(sine/4)/2, math.sin(sine/4)/2) * CFrame.Angles(math.rad(-10) + -math.sin(sine/4)/1.2, math.rad(0+12*math.cos(sine/4))+root.RotVelocity.Y/10, 0), .8)
9837 lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
9838 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8+0.4*math.cos(sine/4)/2, -math.sin(sine/4)/2) * CFrame.Angles(math.rad(-10) + math.sin(sine/4)/1.2, math.rad(0+12*math.cos(sine/4))+root.RotVelocity.Y/10, 0), .8)
9839 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
9840 elseif animpose == "Jumping" then
9841 CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-30),0,0),0.2)
9842 CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
9843 CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
9844 CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
9845 CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
9846 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
9847 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
9848 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.6, 0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(20)), 0.2)
9849 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
9850 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-20)), 0.2)
9851 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9852 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(30),math.rad(0),0), 0.2)
9853 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
9854 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
9855 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
9856 lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
9857 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
9858 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
9859 elseif animpose == "Freefalling" then
9860 CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-110),0,0),0.2)
9861 CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
9862 CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
9863 CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
9864 CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
9865 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
9866 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
9867 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.6, 0)*CFrame.Angles(math.rad(-40),math.rad(20),math.rad(50)), 0.2)
9868 rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
9869 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0)*CFrame.Angles(math.rad(110),math.rad(-20),math.rad(-30)), 0.2)
9870 larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
9871 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.2)
9872 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.2)
9873 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
9874 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.5, 0.2) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0)), 0.2)
9875 lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
9876 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.5, -0.6) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(0)), 0.2)
9877 rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
9878 end
9879 end
9880end)
9881hum.MaxHealth = 5000
9882wait(3)
9883hum.Health = 5000
9884while wait() do
9885 wait(5)
9886 for i=1,100 do wait()
9887 Amulite.Brightness=Amulite.Brightness+0.02
9888 end
9889 for i=1,100 do wait()
9890 Amulite.Brightness=Amulite.Brightness-0.02
9891 end
9892end