· 5 years ago · Feb 21, 2020, 03:04 PM
1if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
2local Player,game,owner = owner,game
3local RealPlayer = Player
4do
5 print("FE Compatibility code V2 by Mokiros")
6 local RealPlayer = RealPlayer
7 script.Parent = RealPlayer.Character
8
9 --Fake event to make stuff like Mouse.KeyDown work
10 local Disconnect_Function = function(this)
11 this[1].Functions[this[2]] = nil
12 end
13 local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
14 local FakeEvent_Metatable = {__index={
15 Connect = function(this,f)
16 local i = tostring(math.random(0,10000))
17 while this.Functions[i] do
18 i = tostring(math.random(0,10000))
19 end
20 this.Functions[i] = f
21 return setmetatable({this,i},Disconnect_Metatable)
22 end
23 }}
24 FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
25 local function fakeEvent()
26 return setmetatable({Functions={}},FakeEvent_Metatable)
27 end
28
29 --Creating fake input objects with fake variables
30 local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
31 FakeMouse.keyUp = FakeMouse.KeyUp
32 FakeMouse.keyDown = FakeMouse.KeyDown
33 local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
34 local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
35 CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
36 end}
37 --Merged 2 functions into one by checking amount of arguments
38 CAS.UnbindAction = CAS.BindAction
39
40 --This function will trigger the events that have been :Connect()'ed
41 local function TriggerEvent(self,ev,...)
42 for _,f in pairs(self[ev].Functions) do
43 f(...)
44 end
45 end
46 FakeMouse.TriggerEvent = TriggerEvent
47 UIS.TriggerEvent = TriggerEvent
48
49 --Client communication
50 local Event = Instance.new("RemoteEvent")
51 Event.Name = "UserInput_Event"
52 Event.OnServerEvent:Connect(function(plr,io)
53 if plr~=RealPlayer then return end
54 FakeMouse.Target = io.Target
55 FakeMouse.Hit = io.Hit
56 if not io.isMouse then
57 local b = io.UserInputState == Enum.UserInputState.Begin
58 if io.UserInputType == Enum.UserInputType.MouseButton1 then
59 return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
60 end
61 if io.UserInputType == Enum.UserInputType.MouseButton2 then
62 return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
63 end
64 for _,t in pairs(CAS.Actions) do
65 for _,k in pairs(t.Keys) do
66 if k==io.KeyCode then
67 t.Function(t.Name,io.UserInputState,io)
68 end
69 end
70 end
71 FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
72 UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
73 end
74 end)
75 Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
76 local Mouse = owner:GetMouse()
77 local UIS = game:GetService("UserInputService")
78 local input = function(io,RobloxHandled)
79 if RobloxHandled then return end
80 --Since InputObject is a client-side instance, we create and pass table instead
81 Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
82 end
83 UIS.InputBegan:Connect(input)
84 UIS.InputEnded:Connect(input)
85
86 local h,t
87 --Give the server mouse data every second frame, but only if the values changed
88 --If player is not moving their mouse, client won't fire events
89 local HB = game:GetService("RunService").Heartbeat
90 while true do
91 if h~=Mouse.Hit or t~=Mouse.Target then
92 h,t=Mouse.Hit,Mouse.Target
93 Event:FireServer({isMouse=true,Target=t,Hit=h})
94 end
95 --Wait 2 frames
96 for i=1,2 do
97 HB:Wait()
98 end
99 end]==],script)
100
101 ----Sandboxed game object that allows the usage of client-side methods and services
102 --Real game object
103 local RealGame = game
104
105 --Metatable for fake service
106 local FakeService_Metatable = {
107 __index = function(self,k)
108 local s = rawget(self,"_RealService")
109 if s then
110 return typeof(s[k])=="function"
111 and function(_,...)return s[k](s,...)end or s[k]
112 end
113 end,
114 __newindex = function(self,k,v)
115 local s = rawget(self,"_RealService")
116 if s then s[k]=v end
117 end
118 }
119 local function FakeService(t,RealService)
120 t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
121 return setmetatable(t,FakeService_Metatable)
122 end
123
124 --Fake game object
125 local FakeGame = {
126 GetService = function(self,s)
127 return rawget(self,s) or RealGame:GetService(s)
128 end,
129 Players = FakeService({
130 LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
131 },"Players"),
132 UserInputService = FakeService(UIS,"UserInputService"),
133 ContextActionService = FakeService(CAS,"ContextActionService"),
134 RunService = FakeService({
135 _btrs = {},
136 RenderStepped = RealGame:GetService("RunService").Heartbeat,
137 BindToRenderStep = function(self,name,_,fun)
138 self._btrs[name] = self.Heartbeat:Connect(fun)
139 end,
140 UnbindFromRenderStep = function(self,name)
141 self._btrs[name]:Disconnect()
142 end,
143 },"RunService")
144 }
145 rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
146 FakeGame.service = FakeGame.GetService
147 FakeService(FakeGame,game)
148 --Changing owner to fake player object to support owner:GetMouse()
149 game,owner = FakeGame,FakeGame.Players.LocalPlayer
150end
151
152local p = game.Players.LocalPlayer--300899323
153local char = p.Character
154local mouse = p:GetMouse()
155local larm = char["Left Arm"]
156local rarm = char["Right Arm"]
157local lleg = char["Left Leg"]
158local rleg = char["Right Leg"]
159local hed = char.Head
160local torso = char.Torso
161local hum = char.Humanoid
162local cam = game.Workspace.CurrentCamera
163local root = char.HumanoidRootPart
164local rj = root.RootJoint
165local deb = false
166local shot = 0
167local stanceToggle = "Idle1"
168local l = game:GetService("Lighting")
169local rs = game:GetService("RunService").RenderStepped
170local hb = game:GetService("RunService").Heartbeat
171local Stepped = game:GetService("RunService").Stepped
172math.randomseed(os.time())
173hum.JumpPower = 100
174---------------------
175
176-------------
177char["Body Colors"].HeadColor = BrickColor.new("Really black")
178char["Body Colors"].TorsoColor = BrickColor.new("Lime green")
179char["Body Colors"].LeftArmColor = BrickColor.new("Really black")
180char["Body Colors"].RightArmColor = BrickColor.new("Really black")
181---------------------------
182local Transforming = false
183hum.WalkSpeed = 0
184local fx = Instance.new("Part",torso)
185wit = torso.BrickColor.Color
186wit2 = Color3.new(0,0,0)
187local glowz = Instance.new("ParticleEmitter",fx)
188glowz.LightEmission = 1
189glowz.Texture = "rbxassetid://284205403"
190glowz.Color = ColorSequence.new(wit)
191glowz.Size = NumberSequence.new(5)
192glowz.Speed = NumberRange.new(25,50)
193glowz.LockedToPart = false
194glowz.Transparency = NumberSequence.new(0.75)
195glowz.RotSpeed = NumberRange.new(-2000,2000)
196glowz.Lifetime = NumberRange.new(1)
197glowz.Rate = 50000
198glowz.VelocitySpread = 9001
199fx.Anchored = true
200fx.Material = "Neon"
201fx.CanCollide = false
202fx.Locked = true
203fx.Transparency = 1
204fx.Material = "Neon"
205fx.Size = Vector3.new(1,1,1)
206fx.TopSurface = "SmoothNoOutlines"
207fx.BottomSurface = "SmoothNoOutlines"
208fx.BrickColor = BrickColor.new("Really black")
209fxm = Instance.new("SpecialMesh",fx)
210fxm.MeshType = "Sphere"
211local sa2 = Instance.new("Sound",torso)
212sa2.SoundId = "rbxassetid://93724183"
213sa2.Pitch = 0.5
214sa2.Volume = 5
215sa2.Looped = false
216sa2:Play()
217local value = 1
218fxm.Scale = Vector3.new(1,1,1)
219for i = 1, 20 do rs:wait()
220 value = value - 0.05
221 fx.Transparency = fx.Transparency - (1/20)
222 fx.CFrame = torso.CFrame
223 fxm.Scale = fxm.Scale + Vector3.new(value,value,value)
224 rs:wait()
225end
226----------------------------------------------------
227GroundWave1 = function()
228 local Transforming = false
229hum.WalkSpeed = 0
230local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
231 local Colors = {"White", "Really black"}
232 local wave = Instance.new("Part", torso)
233 wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
234 wave.Anchored = true
235 wave.CanCollide = false
236 wave.Locked = true
237 wave.Size = Vector3.new(1, 1, 1)
238 wave.TopSurface = "Smooth"
239 wave.BottomSurface = "Smooth"
240 wave.Transparency = 0.35
241 wave.CFrame = HandCF
242 wm = Instance.new("SpecialMesh", wave)
243 wm.MeshId = "rbxassetid://3270017"
244 coroutine.wrap(function()
245 for i = 1, 30, 1 do
246 wm.Scale = Vector3.new(50, 50, 1 + i*50)
247 wave.Size = wm.Scale
248 wave.CFrame = HandCF
249 wave.Transparency = i/30
250 wait()
251 end
252 wait()
253 wave:Destroy()
254 end)()
255end
256----------------------------------------------------
257GroundWave = function()
258 if Transforming == true then
259 local value = 5
260 local value2 = 10
261 local value3 = 20
262local sa2 = Instance.new("Sound",torso)
263sa2.SoundId = "rbxassetid://413682983"
264sa2.Pitch = 1
265sa2.Volume = 10
266sa2.Looped = false
267sa2:Play()
268 local wave = Instance.new("Part", torso)
269local glowz = Instance.new("ParticleEmitter",wave)
270glowz.LightEmission = 1
271glowz.Texture = "0"
272glowz.Color = ColorSequence.new(wit)
273glowz.Size = NumberSequence.new(30)
274glowz.Speed = NumberRange.new(25,100)
275glowz.LockedToPart = false
276glowz.Transparency = NumberSequence.new(0.75)
277glowz.RotSpeed = NumberRange.new(-2000,2000)
278glowz.Lifetime = NumberRange.new(1)
279glowz.Rate = 50000
280glowz.VelocitySpread = 9001
281
282 wave.BrickColor = BrickColor.new("Lime green")
283 wave.Anchored = true
284 wave.CanCollide = false
285 wave.Locked = true
286 wave.Size = Vector3.new(1, 1, 1)
287 wave.TopSurface = "Smooth"
288 wave.BottomSurface = "Smooth"
289 wave.Transparency = 0.35
290 wave.CFrame = fx.CFrame
291 wave.Material = "Neon"
292 wm = Instance.new("SpecialMesh", wave)
293 wm.MeshType = "Sphere"
294 wm.Scale = Vector3.new(1,1,1)
295 local wave2 = Instance.new("Part", torso)
296 wave2.BrickColor = BrickColor.new("Lime green")
297 wave2.Anchored = true
298 wave2.CanCollide = false
299 wave2.Locked = true
300 wave2.Size = Vector3.new(1, 1, 1)
301 wave2.TopSurface = "Smooth"
302 wave2.BottomSurface = "Smooth"
303 wave2.Transparency = 0.35
304 wave2.CFrame = fx.CFrame
305 wave2.Material = "Neon"
306 wm2 = Instance.new("SpecialMesh", wave2)
307 wm2.MeshType = "FileMesh"
308 wm2.MeshId = "http://www.roblox.com/asset/?id=3270017"
309 wm2.Scale = Vector3.new(1,1,1)
310 local wave3 = Instance.new("Part", torso)
311 wave3.BrickColor = BrickColor.new("Really black")
312 wave3.Anchored = true
313 wave3.CanCollide = false
314 wave3.Locked = true
315 wave3.Size = Vector3.new(1, 1, 1)
316 wave3.TopSurface = "Smooth"
317 wave3.BottomSurface = "Smooth"
318 wave3.Transparency = 0.35
319 wave3.CFrame = fx.CFrame
320 wave3.Material = "Neon"
321 wm3 = Instance.new("SpecialMesh", wave3)
322 wm3.MeshType = "FileMesh"
323 wm3.MeshId = "http://www.roblox.com/asset/?id=3270017"
324 wm3.Scale = Vector3.new(1,1,1)
325 coroutine.wrap(function()
326 for i = 1, 18, 1 do
327 value = value - 0.5
328 value2 = value2 - 0.75*1.5
329 value3 = value3 - 0.475*1.5
330 wm.Scale = wm.Scale + Vector3.new(value*3.5,value*3.5,value*3.5)
331 wm2.Scale = wm.Scale + Vector3.new(value2*3.5,value2*3.5,0.5)
332 wm3.Scale = wm.Scale + Vector3.new(value3*3.5,value3*3.5,0.25)
333 --wave.Size = wm.Scale
334 wave.CFrame = fx.CFrame
335 wave.Transparency = i/14
336 --wave2.Size = wm2.Scale
337 wave2.CFrame = fx.CFrame
338 wave2.Rotation = Vector3.new(90, 0, 0)
339 wave2.Transparency = i/14
340 --wave3.Size = wm3.Scale
341 wave3.CFrame = fx.CFrame
342 wave3.Rotation = Vector3.new(90, 0, 0)
343 wave3.Transparency = i/14
344 wait()
345 glowz.Rate = 0
346
347 end
348 wait()
349 wave:Destroy()
350 wave2:Destroy()
351 wave3:Destroy()
352 end)()
353 elseif Transforming == false then
354 wait()
355 end
356end
357
358for i = 1, 100 do rs:wait()
359 fx.CFrame = torso.CFrame
360end
361
362Spawn(function()
363 while wait(1) do
364 GroundWave()
365 end
366end)
367
368wait(4)
369
370Transforming = false
371
372local value2 = 1
373for i = 1, 20 do rs:wait()
374 value2 = value2 - 0.05
375 glowz.Rate = 0
376
377 fx.Transparency = fx.Transparency + (1/20)
378 fx.CFrame = torso.CFrame
379 fxm.Scale = fxm.Scale + Vector3.new(value2,value2,value2)
380 rs:wait()
381end
382glowz:Destroy()
383
384
385local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
386 local valuer = 5
387 local valuer2 = 10
388 local valuer3 = 15
389local sa2 = Instance.new("Sound",torso)
390sa2.SoundId = "rbxassetid://130972023"
391sa2.Pitch = 1
392sa2.Volume = 5
393sa2.Looped = false
394sa2:Play()
395local sar2 = Instance.new("Sound",torso)
396sar2.SoundId = "rbxassetid://153274423"
397sar2.Pitch = 1
398sar2.Volume = 5
399sar2.Looped = false
400sar2:Play()
401 local wave = Instance.new("Part", torso)
402 wave.BrickColor = BrickColor.new("Lime green")
403 wave.Anchored = true
404 wave.CanCollide = false
405 wave.Locked = true
406 wave.Size = Vector3.new(1, 1, 1)
407 wave.TopSurface = "Smooth"
408 wave.BottomSurface = "Smooth"
409 wave.Transparency = 0.35
410 wave.CFrame = HandCF
411 wm = Instance.new("SpecialMesh", wave)
412 wm.MeshId = "rbxassetid://3270017"
413 local wave2 = Instance.new("Part", torso)
414 wave2.BrickColor = BrickColor.new("Really black")
415 wave2.Anchored = true
416 wave2.CanCollide = false
417 wave2.Locked = true
418 wave2.Size = Vector3.new(1, 1, 1)
419 wave2.TopSurface = "Smooth"
420 wave2.BottomSurface = "Smooth"
421 wave2.Transparency = 0.35
422 wave2.CFrame = HandCF
423 wm2 = Instance.new("SpecialMesh", wave2)
424 wm2.MeshId = "rbxassetid://3270017"
425 local wave3 = Instance.new("Part", torso)
426 wave3.BrickColor = BrickColor.new("Lime green")
427 wave3.Anchored = true
428 wave3.CanCollide = false
429 wave3.Locked = true
430 wave3.Size = Vector3.new(1, 1, 1)
431 wave3.TopSurface = "Smooth"
432 wave3.BottomSurface = "Smooth"
433 wave3.Transparency = 0.35
434 wave3.CFrame = HandCF
435 wm3 = Instance.new("SpecialMesh", wave3)
436 wm3.MeshId = "rbxassetid://3270017"
437 coroutine.wrap(function()
438 for i = 1, 14, 1 do
439 valuer = valuer - 0.35
440 valuer2 = valuer - 0.45
441 valuer3 = valuer3 - 0.475
442 wm.Scale = wm.Scale + Vector3.new(valuer*2.5,valuer*2.5, 1 + i*200)
443 wave.Size = wm.Scale
444 wave.CFrame = HandCF
445 wave.Transparency = i/14
446 wm2.Scale = wm2.Scale + Vector3.new(valuer2*2.5,valuer2*2.5, 0 + i*10)
447 wave2.Size = wm2.Scale
448 wave2.CFrame = HandCF
449 wave2.Transparency = i/14
450 wm3.Scale = wm3.Scale + Vector3.new(valuer3*2.5,valuer3*2.5, 1)
451 wave3.Size = wm2.Scale
452 wave3.CFrame = HandCF
453 wave3.Transparency = i/14
454 wait()
455 end
456 wait()
457 wave:Destroy()
458 wave2:Destroy()
459end)()
460hum.WalkSpeed = 16
461--------------------
462
463------------
464fire = Instance.new('Fire',hed) -- change the part to where u want it to stick on
465fire.Color = Color3.new(0,1,0)
466fire.SecondaryColor = Color3.new(0,1,0)
467fire.Enabled = true
468--------------------------------------------------------------------------------------------------------
469plr=game:service'Players'.LocalPlayer
470chr=plr.Character
471local ms = plr:GetMouse()
472CV="Bright red"
473
474local txt = Instance.new("BillboardGui", chr)
475txt.Adornee = chr.Head
476txt.Name = "_status"
477txt.Size = UDim2.new(4, 0, 2.5, 0)
478txt.StudsOffset = Vector3.new(-4, 2, 0)
479local text = Instance.new("TextLabel", txt)
480text.Size = UDim2.new(3, 0, 0.5, 0)
481text.FontSize = "Size24"
482text.TextScaled = true
483text.TextTransparency = 0
484text.BackgroundTransparency = 1
485text.TextTransparency = 0
486text.TextStrokeTransparency = 0
487text.Font = "Bodoni"
488text.TextStrokeColor3 = Color3.new(0,1,0)
489text.Text = "Pumpkin Overseer"
490--------------------------------------------------------
491char["Body Colors"].HeadColor = BrickColor.new("Really black")
492char["Body Colors"].TorsoColor = BrickColor.new("Really black")
493char["Body Colors"].LeftArmColor = BrickColor.new("Really black")
494char["Body Colors"].RightArmColor = BrickColor.new("Really black")
495--------------------------------------------------------------
496fat = Instance.new("BindableEvent",script)
497fat.Name = "Heartbeat"
498
499script:WaitForChild("Heartbeat")
500
501frame = 1/30
502tf = 0
503allowframeloss = 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.
504tossremainder = false --if set to true t will be set to 0 after Fire()-ing.
505lastframe = tick()
506script.Heartbeat:Fire() --ayy lmao
507
508game:GetService("RunService").Heartbeat:connect(function(s,p) --herp derp
509 tf = tf + s
510 if tf >= frame then
511 if allowframeloss then
512 script.Heartbeat:Fire()
513 lastframe=tick()
514 else
515 --print("FIRED "..math.floor(t/frame).." FRAME(S)","REMAINDER "..(t - frame*(math.floor(t/frame))))
516 for i=1, math.floor(tf/frame) do
517 script.Heartbeat:Fire()
518 end
519 lastframe=tick()
520 end
521 if tossremainder then
522 tf = 0
523 else
524 tf = tf - frame * math.floor(tf/frame)
525 end
526 end
527end)
528----------------------------------------------------
529for i,v in pairs(char:children()) do
530 if v:IsA("Hat") then
531 v:Destroy()
532 end
533end
534for i,v in pairs (hed:GetChildren()) do
535 if v:IsA("Sound") then
536 v:Destroy()
537 end
538end
539----------------------------------------------------
540Debounces = {
541CanAttack = true;
542CanJoke = true;
543NoIdl = false;
544Slashing = false;
545Slashed = false;
546ks = false;
547}
548----------------------------------------------------
549function weld5(part0, part1, c0, c1)
550 weeld=Instance.new("Weld", part0)
551 weeld.Part0=part0
552 weeld.Part1=part1
553 weeld.C0=c0
554 weeld.C1=c1
555 return weeld
556end
557----------------------------------------------------
558function NewPart(prnt,siz,cf,trans,anc,mat,col)
559 local prt=Instance.new("Part")
560 prt.Parent=prnt
561 prt.Name="Part"
562 prt.Size=siz
563 prt.CanCollide=false
564 prt.Anchored=anc
565 prt.Locked=true
566 prt.Transparency = trans
567 prt.TopSurface=10
568 prt.BottomSurface=10
569 prt.FrontSurface=10
570 prt.BackSurface=10
571 prt.LeftSurface=10
572 prt.RightSurface=10
573 prt:BreakJoints()
574 prt.CFrame=cf or CFrame.new(30,10,30)
575 prt.Material=mat
576 prt.BrickColor=BrickColor.new(col)
577 m=Instance.new("SpecialMesh",prt)
578 m.MeshType=6
579 return prt
580end
581----------------------------------------------------
582function lerp(a, b, t) -- Linear interpolation
583 return a + (b - a)*t
584end
585
586function slerp(a, b, t) --Spherical interpolation
587 dot = a:Dot(b)
588 if dot > 0.99999 or dot < -0.99999 then
589 return t <= 0.5 and a or b
590 else
591 r = math.acos(dot)
592 return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
593 end
594end
595
596function matrixInterpolate(a, b, t)
597 local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
598 local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
599 local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
600 local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
601 local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
602 local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
603 local t = v1:Dot(v2)
604 if not (t < 0 or t == 0 or t > 0) then -- Failsafe
605 return CFrame.new()
606 end
607 return CFrame.new(
608 v0.x, v0.y, v0.z,
609 v1.x, v1.y, v1.z,
610 v2.x, v2.y, v2.z,
611 v3.x, v3.y, v3.z)
612end
613----------------------------------------------------
614function genWeld(a,b)
615 local w = Instance.new("Weld",a)
616 w.Part0 = a
617 w.Part1 = b
618 return w
619end
620function weld(a, b)
621 local weld = Instance.new("Weld")
622 weld.Name = "W"
623 weld.Part0 = a
624 weld.Part1 = b
625 weld.C0 = a.CFrame:inverse() * b.CFrame
626 weld.Parent = a
627 return weld;
628end
629----------------------------------------------------
630function Lerp(c1,c2,al)
631 local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
632 local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
633 for i,v in pairs(com1) do
634 com1[i] = v+(com2[i]-v)*al
635 end
636 return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
637end
638----------------------------------------------------
639newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
640 local wld = Instance.new("Weld", wp1)
641 wld.Part0 = wp0
642 wld.Part1 = wp1
643 wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
644end
645----------------------------------------------------
646newWeld(torso, larm, -1.5, 0.5, 0)
647larm.Weld.C1 = CFrame.new(0, 0.5, 0)
648newWeld(torso, rarm, 1.5, 0.5, 0)
649rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
650newWeld(torso, hed, 0, 1.5, 0)
651newWeld(torso, lleg, -0.5, -1, 0)
652lleg.Weld.C1 = CFrame.new(0, 1, 0)
653newWeld(torso, rleg, 0.5, -1, 0)
654rleg.Weld.C1 = CFrame.new(0, 1, 0)
655newWeld(root, torso, 0, -1, 0)
656torso.Weld.C1 = CFrame.new(0, -1, 0)
657----------------------------------------------------
658
659hed.face.Texture = "http://www.roblox.com/asset/?id=0"
660hed.Transparency = 1
661
662-----------------------
663LittleWave = function()
664 local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
665 local Colors = {"Lime green", "Black","Really black"}
666 local wave = Instance.new("Part", torso)
667
668
669 wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
670
671
672 wave.Anchored = true
673 wave.CanCollide = false
674 wave.Material = "Neon"
675 wave.Locked = true
676 wave.Size = Vector3.new(1, 1, 1)
677 wave.TopSurface = "Smooth"
678 wave.BottomSurface = "Smooth"
679 wave.Transparency = 0.35
680 wave.CFrame = HandCF
681 wm = Instance.new("SpecialMesh", wave)
682 wm.MeshId = "rbxassetid://3270017"
683 coroutine.wrap(function()
684 for i = 1, 14, 1 do
685 wm.Scale = Vector3.new(0.8 + i*0.8, 0.8 + i*0.8, 0.8)
686 wave.Size = wm.Scale
687 wave.CFrame = HandCF
688 wave.Transparency = i/14
689 wait()
690 end
691 wait()
692 wave:Destroy()
693 end)()
694end
695 Spawn(function()
696 while wait(.8) do
697 LittleWave()
698 end
699end)
700
701-----------------------------
702
703------------------------
704
705-------------------------
706
707
708----------------------------------------------------
709z = Instance.new("Sound", char)
710z.SoundId = "rbxassetid://435750418"
711z.Looped = true
712z.Pitch = 1
713z.Volume = 7
714wait(.1)
715z:Play()
716----------------------------------------------------
717
718
719---------------------
720
721New = function(Object, Parent, Name, Data)
722 local Object = Instance.new(Object)
723 for Index, Value in pairs(Data or {}) do
724 Object[Index] = Value
725 end
726 Object.Parent = Parent
727 Object.Name = Name
728 return Object
729end
730----------------------------------------------------
731--reaper hat
732for _,x in pairs(char:children()) do
733if x:IsA('Hat') then x:remove() end
734if x:IsA('Shirt') then x:remove() end
735if x:IsA('Pants') then x:remove() end
736end
737
738local h = Instance.new('Part', char)
739h.Name = 'DK Hood'
740h.Size = Vector3.new(0.5,0.5,0.5)
741h.CFrame = hed.CFrame
742h.CanCollide = false
743--
744newWeld(hed, h, 0, 0.35, 0)
745--
746local m = Instance.new('SpecialMesh', h)
747m.Name = "Reaper's Cowl"
748m.MeshType = 'FileMesh'
749m.Scale = Vector3.new(0.5,0.5,0.5)
750m.MeshId,m.TextureId = 'http://www.roblox.com/asset/?id=1474596','http://www.roblox.com/asset/?id=103577616'
751m.VertexColor = Vector3.new(1,1,1)
752local shirt = Instance.new("Shirt",p.Character)
753local pants = Instance.new("Pants",p.Character)
754shirt.ShirtTemplate = "rbxassetid://233027251"
755pants.PantsTemplate = "rbxassetid://149639608"
756--Left Arm
757m = Instance.new("Model")
758m.Name = "LeftArm"
759p1 = Instance.new("Part", m)
760p1.BrickColor = BrickColor.new("Lime green")
761p1.Material = Enum.Material.Granite
762p1.CFrame = CFrame.new(-1.5, 5.73969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
763p1.Size = Vector3.new(1, 0.200000048, 1)
764p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
765p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
766p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
767p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
768p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
769p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
770b1 = Instance.new("SpecialMesh", p1)
771b1.MeshType = Enum.MeshType.Brick
772b1.Name = "Mesh"
773b1.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
774p2 = Instance.new("Part", m)
775p2.BrickColor = BrickColor.new("Lime green")
776p2.Material = Enum.Material.Granite
777p2.CFrame = CFrame.new(-1.5, 6.03969383, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
778p2.Size = Vector3.new(1, 0.200000048, 1)
779p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
780p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
781p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
782p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
783p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
784p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
785b2 = Instance.new("SpecialMesh", p2)
786b2.MeshType = Enum.MeshType.Brick
787b2.Name = "Mesh"
788b2.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
789p3 = Instance.new("Part", m)
790p3.BrickColor = BrickColor.new("Lime green")
791p3.Material = Enum.Material.Granite
792p3.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
793p3.Size = Vector3.new(1, 0.200000048, 1)
794p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
795p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
796p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
797p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
798p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
799p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
800b3 = Instance.new("SpecialMesh", p3)
801b3.MeshType = Enum.MeshType.Brick
802b3.Name = "Mesh"
803b3.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
804p4 = Instance.new("Part", m)
805p4.BrickColor = BrickColor.new("Black")
806p4.Material = Enum.Material.SmoothPlastic
807p4.Name = "LeftArmPlate"
808p4.Size = Vector3.new(1, 2, 1)
809p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
810p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
811p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
812p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
813p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
814p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
815b4 = Instance.new("SpecialMesh", p4)
816b4.MeshType = Enum.MeshType.Brick
817b4.Name = "Mesh"
818b4.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
819p5 = Instance.new("Part", m)
820p5.BrickColor = BrickColor.new("Lime green")
821p5.Material = Enum.Material.Granite
822p5.CFrame = CFrame.new(-1.5, 6.33969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
823p5.Size = Vector3.new(1, 0.200000048, 1)
824p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
825p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
826p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
827p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
828p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
829p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
830b5 = Instance.new("SpecialMesh", p5)
831b5.MeshType = Enum.MeshType.Brick
832b5.Name = "Mesh"
833b5.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
834p6 = Instance.new("Part", m)
835p6.BrickColor = BrickColor.new("Lime green")
836p6.Material = Enum.Material.Granite
837p6.CFrame = CFrame.new(-1.5, 5.73969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
838p6.Size = Vector3.new(1, 0.200000048, 1)
839p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
840p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
841p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
842p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
843p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
844p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
845b6 = Instance.new("SpecialMesh", p6)
846b6.MeshType = Enum.MeshType.Brick
847b6.Name = "Mesh"
848b6.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
849p7 = Instance.new("Part", m)
850p7.BrickColor = BrickColor.new("Lime green")
851p7.Material = Enum.Material.Granite
852p7.CFrame = CFrame.new(-1.5, 6.03969383, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
853p7.FormFactor = Enum.FormFactor.Custom
854p7.Size = Vector3.new(1, 0.200000048, 1)
855p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
856p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
857p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
858p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
859p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
860p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
861b7 = Instance.new("SpecialMesh", p7)
862b7.MeshType = Enum.MeshType.Brick
863b7.Name = "Mesh"
864b7.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
865p8 = Instance.new("Part", m)
866p8.BrickColor = BrickColor.new("Lime green")
867p8.Material = Enum.Material.Granite
868p8.CFrame = CFrame.new(-1.5, 6.33969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
869p8.FormFactor = Enum.FormFactor.Custom
870p8.Size = Vector3.new(1, 0.200000048, 1)
871p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
872p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
873p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
874p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
875p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
876p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
877b8 = Instance.new("SpecialMesh", p8)
878b8.MeshType = Enum.MeshType.Brick
879b8.Name = "Mesh"
880b8.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
881p9 = Instance.new("Part", m)
882p9.BrickColor = BrickColor.new("Lime green")
883p9.Material = Enum.Material.Granite
884p9.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
885p9.FormFactor = Enum.FormFactor.Custom
886p9.Size = Vector3.new(1, 0.200000048, 1)
887p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
888p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
889p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
890p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
891p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
892p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
893b9 = Instance.new("SpecialMesh", p9)
894b9.MeshType = Enum.MeshType.Brick
895b9.Name = "Mesh"
896b9.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
897p10 = Instance.new("Part", m)
898p10.BrickColor = BrickColor.new("Black")
899p10.Material = Enum.Material.SmoothPlastic
900p10.CFrame = CFrame.new(-1.5, 6.78969193, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
901p10.FormFactor = Enum.FormFactor.Custom
902p10.Size = Vector3.new(1, 0.349999994, 1)
903p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
904p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
905p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
906p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
907p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
908p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
909b10 = Instance.new("SpecialMesh", p10)
910b10.MeshType = Enum.MeshType.Brick
911b10.Name = "Mesh"
912b10.Scale = Vector3.new(1.12, 1.01999998, 1.12)
913p11 = Instance.new("Part", m)
914p11.BrickColor = BrickColor.new("Black")
915p11.Material = Enum.Material.Metal
916p11.CFrame = CFrame.new(-1.5, 6.48969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
917p11.FormFactor = Enum.FormFactor.Custom
918p11.Size = Vector3.new(1, 0.25, 1)
919p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
920p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
921p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
922p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
923p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
924p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
925b11 = Instance.new("SpecialMesh", p11)
926b11.MeshType = Enum.MeshType.Brick
927b11.Name = "Mesh"
928b11.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
929p12 = Instance.new("Part", m)
930p12.BrickColor = BrickColor.new("Black")
931p12.Material = Enum.Material.Metal
932p12.CFrame = CFrame.new(-1.5, 6.18969154, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
933p12.FormFactor = Enum.FormFactor.Custom
934p12.Size = Vector3.new(1, 0.25, 1)
935p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
936p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
937p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
938p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
939p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
940p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
941b12 = Instance.new("SpecialMesh", p12)
942b12.MeshType = Enum.MeshType.Brick
943b12.Name = "Mesh"
944b12.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
945p13 = Instance.new("Part", m)
946p13.BrickColor = BrickColor.new("Black")
947p13.Material = Enum.Material.Metal
948p13.CFrame = CFrame.new(-1.5, 5.88968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
949p13.FormFactor = Enum.FormFactor.Custom
950p13.Size = Vector3.new(1, 0.25, 1)
951p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
952p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
953p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
954p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
955p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
956p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
957b13 = Instance.new("SpecialMesh", p13)
958b13.MeshType = Enum.MeshType.Brick
959b13.Name = "Mesh"
960b13.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
961p14 = Instance.new("Part", m)
962p14.BrickColor = BrickColor.new("Black")
963p14.Material = Enum.Material.Metal
964p14.CFrame = CFrame.new(-1.5, 5.58969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
965p14.FormFactor = Enum.FormFactor.Custom
966p14.Size = Vector3.new(1, 0.25, 1)
967p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
968p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
969p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
970p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
971p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
972p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
973b14 = Instance.new("SpecialMesh", p14)
974b14.MeshType = Enum.MeshType.Brick
975b14.Name = "Mesh"
976b14.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
977p15 = Instance.new("Part", m)
978p15.BrickColor = BrickColor.new("Lime green")
979p15.Material = Enum.Material.Granite
980p15.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
981p15.FormFactor = Enum.FormFactor.Custom
982p15.Size = Vector3.new(1, 1, 1)
983p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
984p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
985p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
986p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
987p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
988p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
989b15 = Instance.new("SpecialMesh", p15)
990b15.MeshType = Enum.MeshType.Sphere
991b15.Name = "Mesh"
992p16 = Instance.new("Part", m)
993p16.BrickColor = BrickColor.new("Black")
994p16.Material = Enum.Material.Metal
995p16.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)
996p16.FormFactor = Enum.FormFactor.Custom
997p16.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
998p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
999p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1000p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1001p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1002p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1003p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1004b16 = Instance.new("SpecialMesh", p16)
1005b16.MeshType = Enum.MeshType.Brick
1006b16.Name = "Mesh"
1007b16.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1008p17 = Instance.new("Part", m)
1009p17.BrickColor = BrickColor.new("Black")
1010p17.Material = Enum.Material.SmoothPlastic
1011p17.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)
1012p17.FormFactor = Enum.FormFactor.Custom
1013p17.Size = Vector3.new(1.01999998, 0.300000012, 1.01999998)
1014p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1015p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1016p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1017p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1018p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1019p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1020b17 = Instance.new("SpecialMesh", p17)
1021b17.MeshType = Enum.MeshType.Brick
1022b17.Name = "Mesh"
1023b17.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
1024p18 = Instance.new("Part", m)
1025p18.BrickColor = BrickColor.new("Black")
1026p18.Material = Enum.Material.SmoothPlastic
1027p18.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)
1028p18.FormFactor = Enum.FormFactor.Custom
1029p18.Size = Vector3.new(1.00999999, 0.400000036, 1.00999999)
1030p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1031p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1032p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1033p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1034p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1035p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1036b18 = Instance.new("SpecialMesh", p18)
1037b18.MeshType = Enum.MeshType.Brick
1038b18.Name = "Mesh"
1039b18.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
1040p19 = Instance.new("Part", m)
1041p19.BrickColor = BrickColor.new("Black")
1042p19.Material = Enum.Material.SmoothPlastic
1043p19.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)
1044p19.FormFactor = Enum.FormFactor.Custom
1045p19.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
1046p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1047p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1048p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1049p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1050p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1051p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1052b19 = Instance.new("SpecialMesh", p19)
1053b19.MeshType = Enum.MeshType.Brick
1054b19.Name = "Mesh"
1055b19.Scale = Vector3.new(1.02999997, 0.50999999, 1.02999997)
1056p20 = Instance.new("Part", m)
1057p20.BrickColor = BrickColor.new("Really black")
1058p20.Material = Enum.Material.SmoothPlastic
1059p20.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)
1060p20.FormFactor = Enum.FormFactor.Custom
1061p20.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
1062p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1063p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1064p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1065p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1066p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1067p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1068b20 = Instance.new("SpecialMesh", p20)
1069b20.MeshType = Enum.MeshType.Brick
1070b20.Name = "Mesh"
1071b20.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
1072p21 = Instance.new("Part", m)
1073p21.BrickColor = BrickColor.new("Black")
1074p21.Material = Enum.Material.Metal
1075p21.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)
1076p21.FormFactor = Enum.FormFactor.Custom
1077p21.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
1078p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1079p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1080p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1081p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1082p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1083p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1084b21 = Instance.new("SpecialMesh", p21)
1085b21.MeshType = Enum.MeshType.Wedge
1086b21.Name = "Mesh"
1087b21.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1088p22 = Instance.new("Part", m)
1089p22.BrickColor = BrickColor.new("Black")
1090p22.Material = Enum.Material.Metal
1091p22.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)
1092p22.FormFactor = Enum.FormFactor.Custom
1093p22.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1094p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1095p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1096p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1097p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1098p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1099p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1100b22 = Instance.new("SpecialMesh", p22)
1101b22.MeshType = Enum.MeshType.Brick
1102b22.Name = "Mesh"
1103b22.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1104p23 = Instance.new("Part", m)
1105p23.BrickColor = BrickColor.new("Black")
1106p23.Material = Enum.Material.Metal
1107p23.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)
1108p23.FormFactor = Enum.FormFactor.Custom
1109p23.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1110p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1111p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1112p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1113p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1114p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1115p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1116b23 = Instance.new("SpecialMesh", p23)
1117b23.MeshType = Enum.MeshType.Brick
1118b23.Name = "Mesh"
1119b23.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1120p24 = Instance.new("Part", m)
1121p24.BrickColor = BrickColor.new("Black")
1122p24.Material = Enum.Material.Metal
1123p24.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)
1124p24.FormFactor = Enum.FormFactor.Custom
1125p24.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1126p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1127p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1128p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1129p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1130p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1131p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1132b24 = Instance.new("SpecialMesh", p24)
1133b24.MeshType = Enum.MeshType.Brick
1134b24.Name = "Mesh"
1135b24.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1136p25 = Instance.new("Part", m)
1137p25.BrickColor = BrickColor.new("Black")
1138p25.Material = Enum.Material.Metal
1139p25.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)
1140p25.FormFactor = Enum.FormFactor.Custom
1141p25.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1142p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1143p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1144p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1145p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1146p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1147p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1148b25 = Instance.new("SpecialMesh", p25)
1149b25.MeshType = Enum.MeshType.Brick
1150b25.Name = "Mesh"
1151b25.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
1152p26 = Instance.new("Part", m)
1153p26.BrickColor = BrickColor.new("Black")
1154p26.Material = Enum.Material.Metal
1155p26.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)
1156p26.FormFactor = Enum.FormFactor.Custom
1157p26.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1158p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1159p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1160p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1161p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1162p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1163p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1164b26 = Instance.new("SpecialMesh", p26)
1165b26.MeshType = Enum.MeshType.Brick
1166b26.Name = "Mesh"
1167b26.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
1168p27 = Instance.new("Part", m)
1169p27.BrickColor = BrickColor.new("Black")
1170p27.Material = Enum.Material.Metal
1171p27.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)
1172p27.FormFactor = Enum.FormFactor.Custom
1173p27.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1174p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1175p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1176p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1177p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1178p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1179p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1180b27 = Instance.new("SpecialMesh", p27)
1181b27.MeshType = Enum.MeshType.Brick
1182b27.Name = "Mesh"
1183b27.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1184p28 = Instance.new("Part", m)
1185p28.BrickColor = BrickColor.new("Black")
1186p28.Material = Enum.Material.Metal
1187p28.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)
1188p28.FormFactor = Enum.FormFactor.Custom
1189p28.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1190p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1191p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1192p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1193p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1194p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1195p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1196b28 = Instance.new("SpecialMesh", p28)
1197b28.MeshType = Enum.MeshType.Brick
1198b28.Name = "Mesh"
1199b28.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1200p29 = Instance.new("Part", m)
1201p29.BrickColor = BrickColor.new("Black")
1202p29.Material = Enum.Material.Metal
1203p29.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)
1204p29.FormFactor = Enum.FormFactor.Custom
1205p29.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1206p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1207p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1208p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1209p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1210p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1211p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1212b29 = Instance.new("SpecialMesh", p29)
1213b29.MeshType = Enum.MeshType.Brick
1214b29.Name = "Mesh"
1215b29.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1216p30 = Instance.new("Part", m)
1217p30.BrickColor = BrickColor.new("Black")
1218p30.Material = Enum.Material.Metal
1219p30.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)
1220p30.FormFactor = Enum.FormFactor.Custom
1221p30.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
1222p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1223p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1224p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1225p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1226p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1227p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1228b30 = Instance.new("SpecialMesh", p30)
1229b30.MeshType = Enum.MeshType.Wedge
1230b30.Name = "Mesh"
1231b30.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1232p31 = Instance.new("Part", m)
1233p31.BrickColor = BrickColor.new("Black")
1234p31.Material = Enum.Material.Metal
1235p31.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)
1236p31.FormFactor = Enum.FormFactor.Custom
1237p31.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1238p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1239p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1240p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1241p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1242p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1243p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1244b31 = Instance.new("SpecialMesh", p31)
1245b31.MeshType = Enum.MeshType.Brick
1246b31.Name = "Mesh"
1247b31.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
1248p32 = Instance.new("Part", m)
1249p32.BrickColor = BrickColor.new("Black")
1250p32.Material = Enum.Material.Metal
1251p32.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)
1252p32.FormFactor = Enum.FormFactor.Custom
1253p32.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
1254p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1255p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1256p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1257p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1258p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1259p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1260b32 = Instance.new("SpecialMesh", p32)
1261b32.MeshType = Enum.MeshType.Wedge
1262b32.Name = "Mesh"
1263b32.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1264p33 = Instance.new("Part", m)
1265p33.BrickColor = BrickColor.new("Black")
1266p33.Material = Enum.Material.Metal
1267p33.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)
1268p33.FormFactor = Enum.FormFactor.Custom
1269p33.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1270p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1271p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1272p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1273p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1274p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1275p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1276b33 = Instance.new("SpecialMesh", p33)
1277b33.MeshType = Enum.MeshType.Brick
1278b33.Name = "Mesh"
1279b33.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1280p34 = Instance.new("Part", m)
1281p34.BrickColor = BrickColor.new("Black")
1282p34.Material = Enum.Material.Metal
1283p34.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)
1284p34.FormFactor = Enum.FormFactor.Custom
1285p34.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
1286p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1287p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1288p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1289p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1290p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1291p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1292b34 = Instance.new("SpecialMesh", p34)
1293b34.MeshType = Enum.MeshType.Brick
1294b34.Name = "Mesh"
1295b34.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
1296w1 = Instance.new("Weld", p1)
1297w1.Name = "Part_Weld"
1298w1.Part0 = p1
1299w1.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1300w1.Part1 = p2
1301w1.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1302w2 = Instance.new("Weld", p2)
1303w2.Name = "Part_Weld"
1304w2.Part0 = p2
1305w2.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1306w2.Part1 = p3
1307w2.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1308w3 = Instance.new("Weld", p3)
1309w3.Name = "LeftArmPlate_Weld"
1310w3.Part0 = p3
1311w3.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1312w3.Part1 = p4
1313w3.C1 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1314w4 = Instance.new("Weld", p4)
1315w4.Name = "Part_Weld"
1316w4.Part0 = p4
1317w4.C0 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1318w4.Part1 = p5
1319w4.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1320w5 = Instance.new("Weld", p5)
1321w5.Name = "Part_Weld"
1322w5.Part0 = p5
1323w5.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1324w5.Part1 = p6
1325w5.C1 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1326w6 = Instance.new("Weld", p6)
1327w6.Name = "Part_Weld"
1328w6.Part0 = p6
1329w6.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1330w6.Part1 = p7
1331w6.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1332w7 = Instance.new("Weld", p7)
1333w7.Name = "Part_Weld"
1334w7.Part0 = p7
1335w7.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1336w7.Part1 = p8
1337w7.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1338w8 = Instance.new("Weld", p8)
1339w8.Name = "Part_Weld"
1340w8.Part0 = p8
1341w8.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1342w8.Part1 = p9
1343w8.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1344w9 = Instance.new("Weld", p9)
1345w9.Name = "Part_Weld"
1346w9.Part0 = p9
1347w9.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1348w9.Part1 = p10
1349w9.C1 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1350w10 = Instance.new("Weld", p10)
1351w10.Name = "Part_Weld"
1352w10.Part0 = p10
1353w10.C0 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1354w10.Part1 = p11
1355w10.C1 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1356w11 = Instance.new("Weld", p11)
1357w11.Name = "Part_Weld"
1358w11.Part0 = p11
1359w11.C0 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1360w11.Part1 = p12
1361w11.C1 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1362w12 = Instance.new("Weld", p12)
1363w12.Name = "Part_Weld"
1364w12.Part0 = p12
1365w12.C0 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1366w12.Part1 = p13
1367w12.C1 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1368w13 = Instance.new("Weld", p13)
1369w13.Name = "Part_Weld"
1370w13.Part0 = p13
1371w13.C0 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1372w13.Part1 = p14
1373w13.C1 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1374w14 = Instance.new("Weld", p14)
1375w14.Name = "Part_Weld"
1376w14.Part0 = p14
1377w14.C0 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1378w14.Part1 = p15
1379w14.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1380w15 = Instance.new("Weld", p15)
1381w15.Name = "Part_Weld"
1382w15.Part0 = p15
1383w15.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1384w15.Part1 = p16
1385w15.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)
1386w16 = Instance.new("Weld", p16)
1387w16.Name = "Part_Weld"
1388w16.Part0 = p16
1389w16.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)
1390w16.Part1 = p17
1391w16.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)
1392w17 = Instance.new("Weld", p17)
1393w17.Name = "Part_Weld"
1394w17.Part0 = p17
1395w17.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)
1396w17.Part1 = p18
1397w17.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)
1398w18 = Instance.new("Weld", p18)
1399w18.Name = "Part_Weld"
1400w18.Part0 = p18
1401w18.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)
1402w18.Part1 = p19
1403w18.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)
1404w19 = Instance.new("Weld", p19)
1405w19.Name = "Part_Weld"
1406w19.Part0 = p19
1407w19.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)
1408w19.Part1 = p20
1409w19.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)
1410w20 = Instance.new("Weld", p20)
1411w20.Name = "Part_Weld"
1412w20.Part0 = p20
1413w20.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)
1414w20.Part1 = p21
1415w20.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)
1416w21 = Instance.new("Weld", p21)
1417w21.Name = "Part_Weld"
1418w21.Part0 = p21
1419w21.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)
1420w21.Part1 = p22
1421w21.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)
1422w22 = Instance.new("Weld", p22)
1423w22.Name = "Part_Weld"
1424w22.Part0 = p22
1425w22.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)
1426w22.Part1 = p23
1427w22.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)
1428w23 = Instance.new("Weld", p23)
1429w23.Name = "Part_Weld"
1430w23.Part0 = p23
1431w23.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)
1432w23.Part1 = p24
1433w23.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)
1434w24 = Instance.new("Weld", p24)
1435w24.Name = "Part_Weld"
1436w24.Part0 = p24
1437w24.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)
1438w24.Part1 = p25
1439w24.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)
1440w25 = Instance.new("Weld", p25)
1441w25.Name = "Part_Weld"
1442w25.Part0 = p25
1443w25.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)
1444w25.Part1 = p26
1445w25.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)
1446w26 = Instance.new("Weld", p26)
1447w26.Name = "Part_Weld"
1448w26.Part0 = p26
1449w26.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)
1450w26.Part1 = p27
1451w26.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)
1452w27 = Instance.new("Weld", p27)
1453w27.Name = "Part_Weld"
1454w27.Part0 = p27
1455w27.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)
1456w27.Part1 = p28
1457w27.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)
1458w28 = Instance.new("Weld", p28)
1459w28.Name = "Part_Weld"
1460w28.Part0 = p28
1461w28.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)
1462w28.Part1 = p29
1463w28.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)
1464w29 = Instance.new("Weld", p29)
1465w29.Name = "Part_Weld"
1466w29.Part0 = p29
1467w29.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)
1468w29.Part1 = p30
1469w29.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)
1470w30 = Instance.new("Weld", p30)
1471w30.Name = "Part_Weld"
1472w30.Part0 = p30
1473w30.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)
1474w30.Part1 = p31
1475w30.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)
1476w31 = Instance.new("Weld", p31)
1477w31.Name = "Part_Weld"
1478w31.Part0 = p31
1479w31.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)
1480w31.Part1 = p32
1481w31.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)
1482w32 = Instance.new("Weld", p32)
1483w32.Name = "Part_Weld"
1484w32.Part0 = p32
1485w32.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)
1486w32.Part1 = p33
1487w32.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)
1488w33 = Instance.new("Weld", p33)
1489w33.Name = "Part_Weld"
1490w33.Part0 = p33
1491w33.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)
1492w33.Part1 = p34
1493w33.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)
1494m.Parent = larm
1495m:MakeJoints()
1496----------------------------------------------------
1497local cor = Instance.new("Part", larm.LeftArm)
1498cor.Name = "Thingy"
1499cor.Locked = true
1500cor.BottomSurface = 0
1501cor.CanCollide = false
1502cor.Size = Vector3.new(1, 1, 1)
1503cor.Transparency = 1
1504cor.TopSurface = 0
1505corw = Instance.new("Weld", cor)
1506corw.Part0 = larm
1507corw.Part1 = cor
1508corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1509corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1510weld1 = Instance.new("Weld", larm.LeftArm)
1511weld1.Part0 = cor
1512weld1.Part1 = larm.LeftArm.LeftArmPlate
1513weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1514--Right Arm
1515m2 = Instance.new("Model")
1516m2.Name = "RightArm"
1517p1 = Instance.new("Part", m2)
1518p1.BrickColor = BrickColor.new("Lime green")
1519p1.Material = Enum.Material.Granite
1520p1.CFrame = CFrame.new(3.5, -9.44201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1521p1.FormFactor = Enum.FormFactor.Custom
1522p1.Size = Vector3.new(1, 0.200000048, 1)
1523p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1524p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1525p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1526p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1527p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1528p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1529b1 = Instance.new("SpecialMesh", p1)
1530b1.MeshType = Enum.MeshType.Brick
1531b1.Name = "Mesh"
1532b1.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
1533p2 = Instance.new("Part", m2)
1534p2.BrickColor = BrickColor.new("Lime green")
1535p2.Material = Enum.Material.Granite
1536p2.CFrame = CFrame.new(3.5, -9.74201393, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1537p2.FormFactor = Enum.FormFactor.Custom
1538p2.Size = Vector3.new(1, 0.200000048, 1)
1539p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1540p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1541p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1542p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1543p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1544p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1545b2 = Instance.new("SpecialMesh", p2)
1546b2.MeshType = Enum.MeshType.Brick
1547b2.Name = "Mesh"
1548b2.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
1549p3 = Instance.new("Part", m2)
1550p3.BrickColor = BrickColor.new("Lime green")
1551p3.Material = Enum.Material.Granite
1552p3.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1553p3.FormFactor = Enum.FormFactor.Custom
1554p3.Size = Vector3.new(1, 0.200000048, 1)
1555p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1556p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1557p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1558p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1559p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1560p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1561b3 = Instance.new("SpecialMesh", p3)
1562b3.MeshType = Enum.MeshType.Brick
1563b3.Name = "Mesh"
1564b3.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
1565p4 = Instance.new("Part", m2)
1566p4.BrickColor = BrickColor.new("Lime green")
1567p4.Material = Enum.Material.Granite
1568p4.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1569p4.FormFactor = Enum.FormFactor.Custom
1570p4.Size = Vector3.new(1, 0.200000048, 1)
1571p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1572p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1573p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1574p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1575p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1576p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1577b4 = Instance.new("SpecialMesh", p4)
1578b4.MeshType = Enum.MeshType.Brick
1579b4.Name = "Mesh"
1580b4.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
1581p5 = Instance.new("Part", m2)
1582p5.BrickColor = BrickColor.new("Lime green")
1583p5.Material = Enum.Material.Granite
1584p5.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1585p5.FormFactor = Enum.FormFactor.Custom
1586p5.Size = Vector3.new(1, 0.200000048, 1)
1587p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1588p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1589p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1590p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1591p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1592p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1593b5 = Instance.new("SpecialMesh", p5)
1594b5.MeshType = Enum.MeshType.Brick
1595b5.Name = "Mesh"
1596b5.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
1597p6 = Instance.new("Part", m2)
1598p6.BrickColor = BrickColor.new("Lime green")
1599p6.Material = Enum.Material.Granite
1600p6.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1601p6.FormFactor = Enum.FormFactor.Custom
1602p6.Size = Vector3.new(1, 1, 1)
1603p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1604p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1605p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1606p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1607p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1608p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1609b6 = Instance.new("SpecialMesh", p6)
1610b6.MeshType = Enum.MeshType.Sphere
1611b6.Name = "Mesh"
1612p7 = Instance.new("Part", m2)
1613p7.BrickColor = BrickColor.new("Black")
1614p7.Material = Enum.Material.SmoothPlastic
1615p7.Name = "RightArmPlate"
1616p7.CFrame = CFrame.new(3.5, -9.54201603, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1617p7.FormFactor = Enum.FormFactor.Symmetric
1618p7.Size = Vector3.new(1, 2, 1)
1619p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1620p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1621p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1622p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1623p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1624p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1625b7 = Instance.new("SpecialMesh", p7)
1626b7.MeshType = Enum.MeshType.Brick
1627b7.Name = "Mesh"
1628b7.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
1629p8 = Instance.new("Part", m2)
1630p8.BrickColor = BrickColor.new("Lime green")
1631p8.Material = Enum.Material.Granite
1632p8.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1633p8.FormFactor = Enum.FormFactor.Custom
1634p8.Size = Vector3.new(1, 0.200000048, 1)
1635p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1636p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1637p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1638p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1639p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1640p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1641b8 = Instance.new("SpecialMesh", p8)
1642b8.MeshType = Enum.MeshType.Brick
1643b8.Name = "Mesh"
1644b8.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
1645p9 = Instance.new("Part", m2)
1646p9.BrickColor = BrickColor.new("Black")
1647p9.Material = Enum.Material.SmoothPlastic
1648p9.CFrame = CFrame.new(3.5, -8.69201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1649p9.FormFactor = Enum.FormFactor.Custom
1650p9.Size = Vector3.new(1, 0.349999994, 1)
1651p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1652p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1653p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1654p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1655p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1656p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1657b9 = Instance.new("SpecialMesh", p9)
1658b9.MeshType = Enum.MeshType.Brick
1659b9.Name = "Mesh"
1660b9.Scale = Vector3.new(1.12, 1.01999998, 1.12)
1661p10 = Instance.new("Part", m2)
1662p10.BrickColor = BrickColor.new("Black")
1663p10.Material = Enum.Material.Metal
1664p10.CFrame = CFrame.new(3.5, -8.99201584, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1665p10.FormFactor = Enum.FormFactor.Custom
1666p10.Size = Vector3.new(1, 0.25, 1)
1667p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1668p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1669p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1670p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1671p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1672p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1673b10 = Instance.new("SpecialMesh", p10)
1674b10.MeshType = Enum.MeshType.Brick
1675b10.Name = "Mesh"
1676b10.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
1677p11 = Instance.new("Part", m2)
1678p11.BrickColor = BrickColor.new("Black")
1679p11.Material = Enum.Material.Metal
1680p11.CFrame = CFrame.new(3.5, -9.29201508, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1681p11.FormFactor = Enum.FormFactor.Custom
1682p11.Size = Vector3.new(1, 0.25, 1)
1683p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1684p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1685p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1686p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1687p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1688p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1689b11 = Instance.new("SpecialMesh", p11)
1690b11.MeshType = Enum.MeshType.Brick
1691b11.Name = "Mesh"
1692b11.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
1693p12 = Instance.new("Part", m2)
1694p12.BrickColor = BrickColor.new("Black")
1695p12.Material = Enum.Material.Metal
1696p12.CFrame = CFrame.new(3.5, -9.59201431, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1697p12.FormFactor = Enum.FormFactor.Custom
1698p12.Size = Vector3.new(1, 0.25, 1)
1699p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1700p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1701p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1702p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1703p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1704p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1705b12 = Instance.new("SpecialMesh", p12)
1706b12.MeshType = Enum.MeshType.Brick
1707b12.Name = "Mesh"
1708b12.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
1709p13 = Instance.new("Part", m2)
1710p13.BrickColor = BrickColor.new("Lime green")
1711p13.Material = Enum.Material.Granite
1712p13.CFrame = CFrame.new(3.5, -9.44201088, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1713p13.FormFactor = Enum.FormFactor.Custom
1714p13.Size = Vector3.new(1, 0.200000048, 1)
1715p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1716p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1717p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1718p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1719p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1720p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1721b13 = Instance.new("SpecialMesh", p13)
1722b13.MeshType = Enum.MeshType.Brick
1723b13.Name = "Mesh"
1724b13.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
1725p14 = Instance.new("Part", m2)
1726p14.BrickColor = BrickColor.new("Black")
1727p14.Material = Enum.Material.Metal
1728p14.CFrame = CFrame.new(3.5, -9.89201069, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1729p14.FormFactor = Enum.FormFactor.Custom
1730p14.Size = Vector3.new(1, 0.25, 1)
1731p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1732p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1733p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1734p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1735p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1736p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1737b14 = Instance.new("SpecialMesh", p14)
1738b14.MeshType = Enum.MeshType.Brick
1739b14.Name = "Mesh"
1740b14.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
1741p15 = Instance.new("Part", m2)
1742p15.BrickColor = BrickColor.new("Lime green")
1743p15.Material = Enum.Material.Granite
1744p15.CFrame = CFrame.new(3.5, -9.74201298, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1745p15.FormFactor = Enum.FormFactor.Custom
1746p15.Size = Vector3.new(1, 0.200000048, 1)
1747p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1748p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1749p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1750p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1751p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1752p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1753b15 = Instance.new("SpecialMesh", p15)
1754b15.MeshType = Enum.MeshType.Brick
1755b15.Name = "Mesh"
1756b15.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
1757p16 = Instance.new("Part", m2)
1758p16.BrickColor = BrickColor.new("Black")
1759p16.Material = Enum.Material.SmoothPlastic
1760p16.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1761p16.FormFactor = Enum.FormFactor.Custom
1762p16.Size = Vector3.new(1.01999998, 0.300000012, 1.01999998)
1763p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1764p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1765p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1766p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1767p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1768p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1769b16 = Instance.new("SpecialMesh", p16)
1770b16.MeshType = Enum.MeshType.Brick
1771b16.Name = "Mesh"
1772b16.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
1773p17 = Instance.new("Part", m2)
1774p17.BrickColor = BrickColor.new("Black")
1775p17.Material = Enum.Material.SmoothPlastic
1776p17.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1777p17.FormFactor = Enum.FormFactor.Custom
1778p17.Size = Vector3.new(1.00999999, 0.400000036, 1.00999999)
1779p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1780p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1781p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1782p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1783p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1784p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1785b17 = Instance.new("SpecialMesh", p17)
1786b17.MeshType = Enum.MeshType.Brick
1787b17.Name = "Mesh"
1788b17.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
1789p18 = Instance.new("Part", m2)
1790p18.BrickColor = BrickColor.new("Really black")
1791p18.Material = Enum.Material.SmoothPlastic
1792p18.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1793p18.FormFactor = Enum.FormFactor.Custom
1794p18.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
1795p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1796p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1797p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1798p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1799p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1800p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1801b18 = Instance.new("SpecialMesh", p18)
1802b18.MeshType = Enum.MeshType.Brick
1803b18.Name = "Mesh"
1804b18.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
1805p19 = Instance.new("Part", m2)
1806p19.BrickColor = BrickColor.new("Black")
1807p19.Material = Enum.Material.SmoothPlastic
1808p19.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1809p19.FormFactor = Enum.FormFactor.Custom
1810p19.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
1811p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1812p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1813p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1814p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1815p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1816p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1817b19 = Instance.new("SpecialMesh", p19)
1818b19.MeshType = Enum.MeshType.Brick
1819b19.Name = "Mesh"
1820b19.Scale = Vector3.new(1.02999997, 0.50999999, 1.02999997)
1821w1 = Instance.new("Weld", p1)
1822w1.Name = "Part_Weld"
1823w1.Part0 = p1
1824w1.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1825w1.Part1 = p2
1826w1.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1827w2 = Instance.new("Weld", p2)
1828w2.Name = "Part_Weld"
1829w2.Part0 = p2
1830w2.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1831w2.Part1 = p3
1832w2.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1833w3 = Instance.new("Weld", p3)
1834w3.Name = "Part_Weld"
1835w3.Part0 = p3
1836w3.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1837w3.Part1 = p4
1838w3.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1839w4 = Instance.new("Weld", p4)
1840w4.Name = "Part_Weld"
1841w4.Part0 = p4
1842w4.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1843w4.Part1 = p5
1844w4.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1845w5 = Instance.new("Weld", p5)
1846w5.Name = "Part_Weld"
1847w5.Part0 = p5
1848w5.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1849w5.Part1 = p6
1850w5.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1851w6 = Instance.new("Weld", p6)
1852w6.Name = "RightArmPlate_Weld"
1853w6.Part0 = p6
1854w6.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1855w6.Part1 = p7
1856w6.C1 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1857w7 = Instance.new("Weld", p7)
1858w7.Name = "Part_Weld"
1859w7.Part0 = p7
1860w7.C0 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1861w7.Part1 = p8
1862w7.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1863w8 = Instance.new("Weld", p8)
1864w8.Name = "Part_Weld"
1865w8.Part0 = p8
1866w8.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1867w8.Part1 = p9
1868w8.C1 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1869w9 = Instance.new("Weld", p9)
1870w9.Name = "Part_Weld"
1871w9.Part0 = p9
1872w9.C0 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1873w9.Part1 = p10
1874w9.C1 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1875w10 = Instance.new("Weld", p10)
1876w10.Name = "Part_Weld"
1877w10.Part0 = p10
1878w10.C0 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1879w10.Part1 = p11
1880w10.C1 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1881w11 = Instance.new("Weld", p11)
1882w11.Name = "Part_Weld"
1883w11.Part0 = p11
1884w11.C0 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1885w11.Part1 = p12
1886w11.C1 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1887w12 = Instance.new("Weld", p12)
1888w12.Name = "Part_Weld"
1889w12.Part0 = p12
1890w12.C0 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1891w12.Part1 = p13
1892w12.C1 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1893w13 = Instance.new("Weld", p13)
1894w13.Name = "Part_Weld"
1895w13.Part0 = p13
1896w13.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1897w13.Part1 = p14
1898w13.C1 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1899w14 = Instance.new("Weld", p14)
1900w14.Name = "Part_Weld"
1901w14.Part0 = p14
1902w14.C0 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1903w14.Part1 = p15
1904w14.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1905w15 = Instance.new("Weld", p15)
1906w15.Name = "Part_Weld"
1907w15.Part0 = p15
1908w15.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1909w15.Part1 = p16
1910w15.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1911w16 = Instance.new("Weld", p16)
1912w16.Name = "Part_Weld"
1913w16.Part0 = p16
1914w16.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1915w16.Part1 = p17
1916w16.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1917w17 = Instance.new("Weld", p17)
1918w17.Name = "Part_Weld"
1919w17.Part0 = p17
1920w17.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1921w17.Part1 = p18
1922w17.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1923w18 = Instance.new("Weld", p18)
1924w18.Name = "Part_Weld"
1925w18.Part0 = p18
1926w18.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1927w18.Part1 = p19
1928w18.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1929m2.Parent = rarm
1930m2:MakeJoints()
1931----------------------------------------------------
1932local cor2 = Instance.new("Part", rarm.RightArm)
1933cor2.Name = "Thingy"
1934cor2.Locked = true
1935cor2.BottomSurface = 0
1936cor2.CanCollide = false
1937cor2.Size = Vector3.new(1, 1, 1)
1938cor2.Transparency = 1
1939cor2.TopSurface = 0
1940corw2 = Instance.new("Weld", cor2)
1941corw2.Part0 = rarm
1942corw2.Part1 = cor2
1943corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1944corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1945weld2 = Instance.new("Weld", rarm.RightArm)
1946weld2.Part0 = cor2
1947weld2.Part1 = rarm.RightArm.RightArmPlate
1948weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1949--Torso
1950m3 = Instance.new("Model")
1951m3.Name = "Torso"
1952p1 = Instance.new("Part", m3)
1953p1.BrickColor = BrickColor.new("Really black")
1954p1.Material = Enum.Material.Metal
1955p1.Name = "TorsoPlate"
1956p1.CFrame = CFrame.new(0, 3.10002589, 0.50000006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1957p1.CanCollide = false
1958p1.Locked = true
1959p1.FormFactor = Enum.FormFactor.Custom
1960p1.Size = Vector3.new(2, 2, 1)
1961p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1962p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1963p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1964p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1965p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1966p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1967b1 = Instance.new("SpecialMesh", p1)
1968b1.MeshType = Enum.MeshType.Brick
1969b1.Name = "Mesh"
1970b1.Scale = Vector3.new(1, 1.01999998, 1.01999998)
1971p2 = Instance.new("Part", m3)
1972p2.BrickColor = BrickColor.new("Really black")
1973p2.Material = Enum.Material.Metal
1974p2.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)
1975p2.CanCollide = false
1976p2.Locked = true
1977p2.FormFactor = Enum.FormFactor.Custom
1978p2.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
1979b2 = Instance.new("SpecialMesh", p2)
1980b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
1981b2.TextureId = ""
1982b2.MeshType = Enum.MeshType.FileMesh
1983b2.Name = "Mesh"
1984b2.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
1985p3 = Instance.new("Part", m3)
1986p3.BrickColor = BrickColor.new("Black")
1987p3.Material = Enum.Material.Metal
1988p3.CFrame = CFrame.new(0, 3.10002589, 0.970001996, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1989p3.CanCollide = false
1990p3.Locked = true
1991p3.FormFactor = Enum.FormFactor.Custom
1992p3.Size = Vector3.new(2, 2, 0.200000018)
1993p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1994p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1995p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1996p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1997p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1998p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1999b3 = Instance.new("SpecialMesh", p3)
2000b3.MeshType = Enum.MeshType.Brick
2001b3.Name = "Mesh"
2002b3.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2003p4 = Instance.new("Part", m3)
2004p4.BrickColor = BrickColor.new("Black")
2005p4.Material = Enum.Material.Metal
2006p4.CFrame = CFrame.new(0, 4.00002623, 0.529999971, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008)
2007p4.CanCollide = false
2008p4.Locked = true
2009p4.FormFactor = Enum.FormFactor.Custom
2010p4.Size = Vector3.new(2, 1.04000008, 0.239999995)
2011p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2012p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2013p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2014p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2015p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2016p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2017b4 = Instance.new("SpecialMesh", p4)
2018b4.MeshType = Enum.MeshType.Brick
2019b4.Name = "Mesh"
2020b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2021p5 = Instance.new("Part", m3)
2022p5.BrickColor = BrickColor.new("Black")
2023p5.Material = Enum.Material.Metal
2024p5.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)
2025p5.CanCollide = false
2026p5.Locked = true
2027p5.FormFactor = Enum.FormFactor.Custom
2028p5.Size = Vector3.new(0.300000012, 1, 1.89999998)
2029p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2030p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2031p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2032p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2033p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2034p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2035b5 = Instance.new("SpecialMesh", p5)
2036b5.MeshType = Enum.MeshType.Wedge
2037b5.Name = "Mesh"
2038b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2039p6 = Instance.new("Part", m3)
2040p6.BrickColor = BrickColor.new("Black")
2041p6.Material = Enum.Material.Metal
2042p6.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)
2043p6.CanCollide = false
2044p6.Locked = true
2045p6.FormFactor = Enum.FormFactor.Custom
2046p6.Size = Vector3.new(0.300000012, 0.99999994, 1.89999998)
2047p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2048p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2049p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2050p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2051p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2052p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2053b6 = Instance.new("SpecialMesh", p6)
2054b6.MeshType = Enum.MeshType.Wedge
2055b6.Name = "Mesh"
2056b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2057p7 = Instance.new("Part", m3)
2058p7.BrickColor = BrickColor.new("Black")
2059p7.Material = Enum.Material.Metal
2060p7.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)
2061p7.CanCollide = false
2062p7.Locked = true
2063p7.FormFactor = Enum.FormFactor.Custom
2064p7.Size = Vector3.new(0.300000012, 1.20000005, 1.20000005)
2065p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2066p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2067p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2068p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2069p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2070p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2071b7 = Instance.new("SpecialMesh", p7)
2072b7.MeshType = Enum.MeshType.Wedge
2073b7.Name = "Mesh"
2074p8 = Instance.new("Part", m3)
2075p8.BrickColor = BrickColor.new("Black")
2076p8.Material = Enum.Material.Metal
2077p8.CFrame = CFrame.new(-1, 3.10002613, 0.520000935, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
2078p8.CanCollide = false
2079p8.Locked = true
2080p8.FormFactor = Enum.FormFactor.Custom
2081p8.Size = Vector3.new(1, 2, 0.200000018)
2082p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2083p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2084p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2085p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2086p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2087p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2088b8 = Instance.new("SpecialMesh", p8)
2089b8.MeshType = Enum.MeshType.Brick
2090b8.Name = "Mesh"
2091b8.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2092p9 = Instance.new("Part", m3)
2093p9.BrickColor = BrickColor.new("Black")
2094p9.Material = Enum.Material.Metal
2095p9.CFrame = CFrame.new(1, 3.10002613, 0.520001054, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
2096p9.CanCollide = false
2097p9.Locked = true
2098p9.FormFactor = Enum.FormFactor.Custom
2099p9.Size = Vector3.new(1, 2, 0.200000018)
2100p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2101p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2102p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2103p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2104p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2105p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2106b9 = Instance.new("SpecialMesh", p9)
2107b9.MeshType = Enum.MeshType.Brick
2108b9.Name = "Mesh"
2109b9.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2110p10 = Instance.new("Part", m3)
2111p10.BrickColor = BrickColor.new("Black")
2112p10.Material = Enum.Material.Metal
2113p10.CFrame = CFrame.new(0, 2.05002642, 0.539999843, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008)
2114p10.CanCollide = false
2115p10.Locked = true
2116p10.FormFactor = Enum.FormFactor.Custom
2117p10.Size = Vector3.new(2, 1.0200001, 0.239999995)
2118p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2119p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2120p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2121p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2122p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2123p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2124b10 = Instance.new("SpecialMesh", p10)
2125b10.MeshType = Enum.MeshType.Brick
2126b10.Name = "Mesh"
2127b10.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2128p11 = Instance.new("Part", m3)
2129p11.BrickColor = BrickColor.new("Really black")
2130p11.Material = Enum.Material.Metal
2131p11.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)
2132p11.CanCollide = false
2133p11.Locked = true
2134p11.FormFactor = Enum.FormFactor.Custom
2135p11.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2136b11 = Instance.new("SpecialMesh", p11)
2137b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
2138b11.TextureId = ""
2139b11.MeshType = Enum.MeshType.FileMesh
2140b11.Name = "Mesh"
2141b11.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2142p12 = Instance.new("Part", m3)
2143p12.BrickColor = BrickColor.new("Really black")
2144p12.Material = Enum.Material.Metal
2145p12.Transparency = 1
2146p12.Name = "Chain2Torso"
2147p12.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)
2148p12.CanCollide = false
2149p12.Locked = true
2150p12.FormFactor = Enum.FormFactor.Custom
2151p12.Size = Vector3.new(0.699999988, 0.300000012, 0.300000012)
2152b12 = Instance.new("SpecialMesh", p12)
2153b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
2154b12.TextureId = ""
2155b12.MeshType = Enum.MeshType.FileMesh
2156b12.Name = "Mesh"
2157b12.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2158p13 = Instance.new("Part", m3)
2159p13.BrickColor = BrickColor.new("Really black")
2160p13.Material = Enum.Material.Metal
2161p13.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)
2162p13.CanCollide = false
2163p13.Locked = true
2164p13.FormFactor = Enum.FormFactor.Custom
2165p13.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2166b13 = Instance.new("SpecialMesh", p13)
2167b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
2168b13.TextureId = ""
2169b13.MeshType = Enum.MeshType.FileMesh
2170b13.Name = "Mesh"
2171b13.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2172p14 = Instance.new("Part", m3)
2173p14.BrickColor = BrickColor.new("Really black")
2174p14.Material = Enum.Material.Metal
2175p14.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)
2176p14.CanCollide = false
2177p14.Locked = true
2178p14.FormFactor = Enum.FormFactor.Custom
2179p14.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2180b14 = Instance.new("SpecialMesh", p14)
2181b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
2182b14.TextureId = ""
2183b14.MeshType = Enum.MeshType.FileMesh
2184b14.Name = "Mesh"
2185b14.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2186p15 = Instance.new("Part", m3)
2187p15.BrickColor = BrickColor.new("Really black")
2188p15.Material = Enum.Material.Metal
2189p15.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)
2190p15.CanCollide = false
2191p15.Locked = true
2192p15.FormFactor = Enum.FormFactor.Custom
2193p15.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2194b15 = Instance.new("SpecialMesh", p15)
2195b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
2196b15.TextureId = ""
2197b15.MeshType = Enum.MeshType.FileMesh
2198b15.Name = "Mesh"
2199b15.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2200p16 = Instance.new("Part", m3)
2201p16.BrickColor = BrickColor.new("Really black")
2202p16.Material = Enum.Material.Metal
2203p16.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)
2204p16.CanCollide = false
2205p16.Locked = true
2206p16.FormFactor = Enum.FormFactor.Custom
2207p16.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2208b16 = Instance.new("SpecialMesh", p16)
2209b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
2210b16.TextureId = ""
2211b16.MeshType = Enum.MeshType.FileMesh
2212b16.Name = "Mesh"
2213b16.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2214p17 = Instance.new("Part", m3)
2215p17.BrickColor = BrickColor.new("Really black")
2216p17.Material = Enum.Material.Metal
2217p17.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)
2218p17.CanCollide = false
2219p17.Locked = true
2220p17.FormFactor = Enum.FormFactor.Custom
2221p17.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2222b17 = Instance.new("SpecialMesh", p17)
2223b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
2224b17.TextureId = ""
2225b17.MeshType = Enum.MeshType.FileMesh
2226b17.Name = "Mesh"
2227b17.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2228p18 = Instance.new("Part", m3)
2229p18.BrickColor = BrickColor.new("Really black")
2230p18.Material = Enum.Material.Metal
2231p18.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)
2232p18.CanCollide = false
2233p18.Locked = true
2234p18.FormFactor = Enum.FormFactor.Custom
2235p18.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2236b18 = Instance.new("SpecialMesh", p18)
2237b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
2238b18.TextureId = ""
2239b18.MeshType = Enum.MeshType.FileMesh
2240b18.Name = "Mesh"
2241b18.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2242p19 = Instance.new("Part", m3)
2243p19.BrickColor = BrickColor.new("Really black")
2244p19.Material = Enum.Material.Metal
2245p19.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)
2246p19.CanCollide = false
2247p19.Locked = true
2248p19.FormFactor = Enum.FormFactor.Custom
2249p19.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2250b19 = Instance.new("SpecialMesh", p19)
2251b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
2252b19.TextureId = ""
2253b19.MeshType = Enum.MeshType.FileMesh
2254b19.Name = "Mesh"
2255b19.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2256p20 = Instance.new("Part", m3)
2257p20.BrickColor = BrickColor.new("Really black")
2258p20.Material = Enum.Material.Metal
2259p20.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)
2260p20.CanCollide = false
2261p20.Locked = true
2262p20.FormFactor = Enum.FormFactor.Custom
2263p20.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2264b20 = Instance.new("SpecialMesh", p20)
2265b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
2266b20.TextureId = ""
2267b20.MeshType = Enum.MeshType.FileMesh
2268b20.Name = "Mesh"
2269b20.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2270p21 = Instance.new("Part", m3)
2271p21.BrickColor = BrickColor.new("Really black")
2272p21.Material = Enum.Material.Metal
2273p21.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)
2274p21.CanCollide = false
2275p21.Locked = true
2276p21.FormFactor = Enum.FormFactor.Custom
2277p21.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2278b21 = Instance.new("SpecialMesh", p21)
2279b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
2280b21.TextureId = ""
2281b21.MeshType = Enum.MeshType.FileMesh
2282b21.Name = "Mesh"
2283b21.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2284p22 = Instance.new("Part", m3)
2285p22.BrickColor = BrickColor.new("Really black")
2286p22.Material = Enum.Material.Metal
2287p22.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)
2288p22.CanCollide = false
2289p22.Locked = true
2290p22.FormFactor = Enum.FormFactor.Custom
2291p22.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2292b22 = Instance.new("SpecialMesh", p22)
2293b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
2294b22.TextureId = ""
2295b22.MeshType = Enum.MeshType.FileMesh
2296b22.Name = "Mesh"
2297b22.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2298p23 = Instance.new("Part", m3)
2299p23.BrickColor = BrickColor.new("Really black")
2300p23.Material = Enum.Material.Metal
2301p23.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)
2302p23.CanCollide = false
2303p23.Locked = true
2304p23.FormFactor = Enum.FormFactor.Custom
2305p23.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2306b23 = Instance.new("SpecialMesh", p23)
2307b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
2308b23.TextureId = ""
2309b23.MeshType = Enum.MeshType.FileMesh
2310b23.Name = "Mesh"
2311b23.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2312p24 = Instance.new("Part", m3)
2313p24.BrickColor = BrickColor.new("Really black")
2314p24.Material = Enum.Material.Metal
2315p24.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)
2316p24.CanCollide = false
2317p24.Locked = true
2318p24.FormFactor = Enum.FormFactor.Custom
2319p24.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2320b24 = Instance.new("SpecialMesh", p24)
2321b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
2322b24.TextureId = ""
2323b24.MeshType = Enum.MeshType.FileMesh
2324b24.Name = "Mesh"
2325b24.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2326p25 = Instance.new("Part", m3)
2327p25.BrickColor = BrickColor.new("Really black")
2328p25.Material = Enum.Material.Metal
2329p25.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)
2330p25.CanCollide = false
2331p25.Locked = true
2332p25.FormFactor = Enum.FormFactor.Custom
2333p25.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2334b25 = Instance.new("SpecialMesh", p25)
2335b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
2336b25.TextureId = ""
2337b25.MeshType = Enum.MeshType.FileMesh
2338b25.Name = "Mesh"
2339b25.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2340p26 = Instance.new("Part", m3)
2341p26.BrickColor = BrickColor.new("Really black")
2342p26.Material = Enum.Material.Metal
2343p26.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)
2344p26.CanCollide = false
2345p26.Locked = true
2346p26.FormFactor = Enum.FormFactor.Custom
2347p26.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2348b26 = Instance.new("SpecialMesh", p26)
2349b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
2350b26.TextureId = ""
2351b26.MeshType = Enum.MeshType.FileMesh
2352b26.Name = "Mesh"
2353b26.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2354p27 = Instance.new("Part", m3)
2355p27.BrickColor = BrickColor.new("Really black")
2356p27.Material = Enum.Material.Metal
2357p27.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)
2358p27.CanCollide = false
2359p27.Locked = true
2360p27.FormFactor = Enum.FormFactor.Custom
2361p27.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2362b27 = Instance.new("SpecialMesh", p27)
2363b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
2364b27.TextureId = ""
2365b27.MeshType = Enum.MeshType.FileMesh
2366b27.Name = "Mesh"
2367b27.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2368p28 = Instance.new("Part", m3)
2369p28.BrickColor = BrickColor.new("Really black")
2370p28.Material = Enum.Material.Metal
2371p28.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)
2372p28.CanCollide = false
2373p28.Locked = true
2374p28.FormFactor = Enum.FormFactor.Custom
2375p28.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2376b28 = Instance.new("SpecialMesh", p28)
2377b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
2378b28.TextureId = ""
2379b28.MeshType = Enum.MeshType.FileMesh
2380b28.Name = "Mesh"
2381b28.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2382p29 = Instance.new("Part", m3)
2383p29.BrickColor = BrickColor.new("Really black")
2384p29.Material = Enum.Material.Metal
2385p29.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)
2386p29.CanCollide = false
2387p29.Locked = true
2388p29.FormFactor = Enum.FormFactor.Custom
2389p29.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2390b29 = Instance.new("SpecialMesh", p29)
2391b29.MeshId = "http://www.roblox.com/asset/?id=3270017"
2392b29.TextureId = ""
2393b29.MeshType = Enum.MeshType.FileMesh
2394b29.Name = "Mesh"
2395b29.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2396p30 = Instance.new("Part", m3)
2397p30.BrickColor = BrickColor.new("Really black")
2398p30.Material = Enum.Material.Metal
2399p30.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)
2400p30.CanCollide = false
2401p30.Locked = true
2402p30.FormFactor = Enum.FormFactor.Custom
2403p30.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2404b30 = Instance.new("SpecialMesh", p30)
2405b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
2406b30.TextureId = ""
2407b30.MeshType = Enum.MeshType.FileMesh
2408b30.Name = "Mesh"
2409b30.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2410p31 = Instance.new("Part", m3)
2411p31.BrickColor = BrickColor.new("Really black")
2412p31.Material = Enum.Material.Metal
2413p31.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)
2414p31.CanCollide = false
2415p31.Locked = true
2416p31.FormFactor = Enum.FormFactor.Custom
2417p31.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2418b31 = Instance.new("SpecialMesh", p31)
2419b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
2420b31.TextureId = ""
2421b31.MeshType = Enum.MeshType.FileMesh
2422b31.Name = "Mesh"
2423b31.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2424p32 = Instance.new("Part", m3)
2425p32.BrickColor = BrickColor.new("Really black")
2426p32.Material = Enum.Material.Metal
2427p32.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)
2428p32.CanCollide = false
2429p32.Locked = true
2430p32.FormFactor = Enum.FormFactor.Custom
2431p32.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2432b32 = Instance.new("SpecialMesh", p32)
2433b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
2434b32.TextureId = ""
2435b32.MeshType = Enum.MeshType.FileMesh
2436b32.Name = "Mesh"
2437b32.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2438p33 = Instance.new("Part", m3)
2439p33.BrickColor = BrickColor.new("Really black")
2440p33.Material = Enum.Material.Metal
2441p33.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)
2442p33.CanCollide = false
2443p33.Locked = true
2444p33.FormFactor = Enum.FormFactor.Custom
2445p33.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2446b33 = Instance.new("SpecialMesh", p33)
2447b33.MeshId = "http://www.roblox.com/asset/?id=3270017"
2448b33.TextureId = ""
2449b33.MeshType = Enum.MeshType.FileMesh
2450b33.Name = "Mesh"
2451b33.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2452p34 = Instance.new("Part", m3)
2453p34.BrickColor = BrickColor.new("Really black")
2454p34.Material = Enum.Material.Metal
2455p34.Name = "Connection"
2456p34.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)
2457p34.CanCollide = false
2458p34.Locked = true
2459p34.FormFactor = Enum.FormFactor.Custom
2460p34.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2461b34 = Instance.new("SpecialMesh", p34)
2462b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
2463b34.TextureId = ""
2464b34.MeshType = Enum.MeshType.FileMesh
2465b34.Name = "Mesh"
2466b34.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2467p35 = Instance.new("Part", m3)
2468p35.BrickColor = BrickColor.new("Really black")
2469p35.Material = Enum.Material.Metal
2470p35.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)
2471p35.CanCollide = false
2472p35.Locked = true
2473p35.FormFactor = Enum.FormFactor.Custom
2474p35.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2475b35 = Instance.new("SpecialMesh", p35)
2476b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
2477b35.TextureId = ""
2478b35.MeshType = Enum.MeshType.FileMesh
2479b35.Name = "Mesh"
2480b35.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2481p36 = Instance.new("Part", m3)
2482p36.BrickColor = BrickColor.new("Really black")
2483p36.Material = Enum.Material.Metal
2484p36.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)
2485p36.CanCollide = false
2486p36.Locked = true
2487p36.FormFactor = Enum.FormFactor.Custom
2488p36.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
2489b36 = Instance.new("SpecialMesh", p36)
2490b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
2491b36.TextureId = ""
2492b36.MeshType = Enum.MeshType.FileMesh
2493b36.Name = "Mesh"
2494b36.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
2495w1 = Instance.new("Weld", p2)
2496w1.Name = "Joint"
2497w1.Part0 = p2
2498w1.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)
2499w1.Part1 = p18
2500w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2501w2 = Instance.new("Weld", p3)
2502w2.Name = "Joint"
2503w2.Part0 = p3
2504w2.C0 = CFrame.new(0, 0, -0.470001936, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2505w2.Part1 = p1
2506w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2507w3 = Instance.new("Weld", p4)
2508w3.Name = "Joint"
2509w3.Part0 = p4
2510w3.C0 = CFrame.new(0, 0.0299999714, -0.900000334, 1, 0, 0, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008)
2511w3.Part1 = p1
2512w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2513w4 = Instance.new("Weld", p5)
2514w4.Name = "Joint"
2515w4.Part0 = p5
2516w4.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)
2517w4.Part1 = p7
2518w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2519w5 = Instance.new("Weld", p6)
2520w5.Name = "Joint"
2521w5.Part0 = p6
2522w5.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)
2523w5.Part1 = p7
2524w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2525w6 = Instance.new("Weld", p7)
2526w6.Name = "Joint"
2527w6.Part0 = p7
2528w6.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)
2529w6.Part1 = p1
2530w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2531w7 = Instance.new("Weld", p8)
2532w7.Name = "Joint"
2533w7.Part0 = p8
2534w7.C0 = CFrame.new(-0.0200009346, -2.38418579e-007, -1, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
2535w7.Part1 = p1
2536w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2537w8 = Instance.new("Weld", p9)
2538w8.Name = "Joint"
2539w8.Part0 = p9
2540w8.C0 = CFrame.new(-0.0200009346, -2.38418579e-007, 1, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
2541w8.Part1 = p1
2542w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2543w9 = Instance.new("Weld", p10)
2544w9.Name = "Joint"
2545w9.Part0 = p10
2546w9.C0 = CFrame.new(0, 0.0399997234, 1.04999948, 1, 0, 0, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008)
2547w9.Part1 = p1
2548w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2549w10 = Instance.new("Weld", p11)
2550w10.Name = "Joint"
2551w10.Part0 = p11
2552w10.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)
2553w10.Part1 = p19
2554w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2555w11 = Instance.new("Weld", p12)
2556w11.Name = "Joint"
2557w11.Part0 = p12
2558w11.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)
2559w11.Part1 = p1
2560w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2561w12 = Instance.new("Weld", p13)
2562w12.Name = "Joint"
2563w12.Part0 = p13
2564w12.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)
2565w12.Part1 = p35
2566w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2567w13 = Instance.new("Weld", p14)
2568w13.Name = "Joint"
2569w13.Part0 = p14
2570w13.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)
2571w13.Part1 = p34
2572w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2573w14 = Instance.new("Weld", p15)
2574w14.Name = "Joint"
2575w14.Part0 = p15
2576w14.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)
2577w14.Part1 = p16
2578w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2579w15 = Instance.new("Weld", p16)
2580w15.Name = "Joint"
2581w15.Part0 = p16
2582w15.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)
2583w15.Part1 = p20
2584w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2585w16 = Instance.new("Weld", p17)
2586w16.Name = "Joint"
2587w16.Part0 = p17
2588w16.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)
2589w16.Part1 = p14
2590w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2591w17 = Instance.new("Weld", p18)
2592w17.Name = "Joint"
2593w17.Part0 = p18
2594w17.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)
2595w17.Part1 = p17
2596w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2597w18 = Instance.new("Weld", p19)
2598w18.Name = "Joint"
2599w18.Part0 = p19
2600w18.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)
2601w18.Part1 = p21
2602w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2603w19 = Instance.new("Weld", p20)
2604w19.Name = "Joint"
2605w19.Part0 = p20
2606w19.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)
2607w19.Part1 = p11
2608w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2609w20 = Instance.new("Weld", p21)
2610w20.Name = "Joint"
2611w20.Part0 = p21
2612w20.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)
2613w20.Part1 = p22
2614w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2615w21 = Instance.new("Weld", p22)
2616w21.Name = "Joint"
2617w21.Part0 = p22
2618w21.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)
2619w21.Part1 = p23
2620w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2621w22 = Instance.new("Weld", p23)
2622w22.Name = "Joint"
2623w22.Part0 = p23
2624w22.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)
2625w22.Part1 = p24
2626w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2627w23 = Instance.new("Weld", p24)
2628w23.Name = "Joint"
2629w23.Part0 = p24
2630w23.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)
2631w23.Part1 = p25
2632w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2633w24 = Instance.new("Weld", p25)
2634w24.Name = "Joint"
2635w24.Part0 = p25
2636w24.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)
2637w24.Part1 = p26
2638w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2639w25 = Instance.new("Weld", p26)
2640w25.Name = "Joint"
2641w25.Part0 = p26
2642w25.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)
2643w25.Part1 = p27
2644w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2645w26 = Instance.new("Weld", p27)
2646w26.Name = "Joint"
2647w26.Part0 = p27
2648w26.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)
2649w26.Part1 = p28
2650w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2651w27 = Instance.new("Weld", p28)
2652w27.Name = "Joint"
2653w27.Part0 = p28
2654w27.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)
2655w27.Part1 = p29
2656w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2657w28 = Instance.new("Weld", p29)
2658w28.Name = "Joint"
2659w28.Part0 = p29
2660w28.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)
2661w28.Part1 = p30
2662w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2663w29 = Instance.new("Weld", p30)
2664w29.Name = "Joint"
2665w29.Part0 = p30
2666w29.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)
2667w29.Part1 = p31
2668w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2669w30 = Instance.new("Weld", p31)
2670w30.Name = "Joint"
2671w30.Part0 = p31
2672w30.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)
2673w30.Part1 = p32
2674w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2675w31 = Instance.new("Weld", p32)
2676w31.Name = "Joint"
2677w31.Part0 = p32
2678w31.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)
2679w31.Part1 = p33
2680w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2681w32 = Instance.new("Weld", p33)
2682w32.Name = "Joint"
2683w32.Part0 = p33
2684w32.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)
2685w32.Part1 = p13
2686w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2687w33 = Instance.new("Weld", p34)
2688w33.Name = "Joint"
2689w33.Part0 = p34
2690w33.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)
2691w33.Part1 = p12
2692w33.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2693w34 = Instance.new("Weld", p35)
2694w34.Name = "Joint"
2695w34.Part0 = p35
2696w34.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)
2697w34.Part1 = p36
2698w34.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2699w35 = Instance.new("Weld", p36)
2700w35.Name = "Joint"
2701w35.Part0 = p36
2702w35.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)
2703w35.Part1 = p2
2704w35.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2705m3.Parent = torso
2706m3:MakeJoints()
2707----------------------------------------------------
2708local cor3 = Instance.new("Part", torso.Torso)
2709cor3.Name = "Thingy"
2710cor3.Locked = true
2711cor3.BottomSurface = 0
2712cor3.CanCollide = false
2713cor3.Size = Vector3.new(1, 1, 1)
2714cor3.Transparency = 1
2715cor3.TopSurface = 0
2716corw3 = Instance.new("Weld", cor3)
2717corw3.Part0 = torso
2718corw3.Part1 = cor3
2719corw3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2720corw3.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2721weld3 = Instance.new("Weld", torso.Torso)
2722weld3.Part0 = cor3
2723weld3.Part1 = torso.Torso.TorsoPlate
2724weld3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2725--Left Leg
2726m4 = Instance.new("Model")
2727m4.Name = "LeftLeg"
2728p1 = Instance.new("Part", m4)
2729p1.BrickColor = BrickColor.new("Really black")
2730p1.Material = Enum.Material.Metal
2731p1.Name = "LeftLegPlate"
2732p1.CFrame = CFrame.new(-1.5, 4.74442291, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2733p1.Anchored = false
2734p1.CanCollide = false
2735p1.FormFactor = Enum.FormFactor.Custom
2736p1.Size = Vector3.new(1, 2, 1)
2737p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2738p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2739p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2740p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2741p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2742p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2743b1 = Instance.new("SpecialMesh", p1)
2744b1.MeshType = Enum.MeshType.Brick
2745b1.Name = "Mesh"
2746b1.Scale = Vector3.new(1.01999998, 1, 1.01999998)
2747p2 = Instance.new("Part", m4)
2748p2.BrickColor = BrickColor.new("Really black")
2749p2.Material = Enum.Material.Metal
2750p2.CFrame = CFrame.new(-2.0999999, 5.44442606, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2751p2.Anchored = false
2752p2.CanCollide = false
2753p2.FormFactor = Enum.FormFactor.Custom
2754p2.Size = Vector3.new(0.239999995, 0.300000012, 0.899999976)
2755p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2756p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2757p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2758p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2759p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2760p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2761b2 = Instance.new("SpecialMesh", p2)
2762b2.MeshType = Enum.MeshType.Brick
2763b2.Name = "Mesh"
2764b2.Scale = Vector3.new(1.01999998, 1, 1.01999998)
2765p3 = Instance.new("Part", m4)
2766p3.BrickColor = BrickColor.new("Really black")
2767p3.Material = Enum.Material.Metal
2768p3.CFrame = CFrame.new(-2.0999999, 5.04442501, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2769p3.Anchored = false
2770p3.CanCollide = false
2771p3.FormFactor = Enum.FormFactor.Custom
2772p3.Size = Vector3.new(0.200000003, 0.600000024, 0.800000012)
2773p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2774p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2775p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2776p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2777p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2778p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2779b3 = Instance.new("SpecialMesh", p3)
2780b3.MeshType = Enum.MeshType.Brick
2781b3.Name = "Mesh"
2782b3.Scale = Vector3.new(1.01999998, 1, 1.01999998)
2783p4 = Instance.new("Part", m4)
2784p4.BrickColor = BrickColor.new("Black")
2785p4.Material = Enum.Material.Metal
2786p4.CFrame = CFrame.new(-1.5, 4.74442291, -7.02999783, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2787p4.Anchored = false
2788p4.CanCollide = false
2789p4.FormFactor = Enum.FormFactor.Custom
2790p4.Size = Vector3.new(1, 2, 0.200000018)
2791p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2792p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2793p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2794p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2795p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2796p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2797b4 = Instance.new("SpecialMesh", p4)
2798b4.MeshType = Enum.MeshType.Brick
2799b4.Name = "Mesh"
2800b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2801p5 = Instance.new("Part", m4)
2802p5.BrickColor = BrickColor.new("Black")
2803p5.Material = Enum.Material.Metal
2804p5.CFrame = CFrame.new(-2, 4.74442291, -7.47999907, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
2805p5.Anchored = false
2806p5.CanCollide = false
2807p5.FormFactor = Enum.FormFactor.Custom
2808p5.Size = Vector3.new(1, 2, 0.200000018)
2809p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2810p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2811p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2812p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2813p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2814p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2815b5 = Instance.new("SpecialMesh", p5)
2816b5.MeshType = Enum.MeshType.Brick
2817b5.Name = "Mesh"
2818b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2819p6 = Instance.new("Part", m4)
2820p6.BrickColor = BrickColor.new("Black")
2821p6.Material = Enum.Material.Metal
2822p6.CFrame = CFrame.new(-1.50999999, 3.74442887, -7.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
2823p6.Anchored = false
2824p6.CanCollide = false
2825p6.FormFactor = Enum.FormFactor.Custom
2826p6.Size = Vector3.new(1, 0.200000048, 0.980000019)
2827p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2828p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2829p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2830p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2831p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2832p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2833b6 = Instance.new("SpecialMesh", p6)
2834b6.MeshType = Enum.MeshType.Brick
2835b6.Name = "Mesh"
2836b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2837p7 = Instance.new("Part", m4)
2838p7.BrickColor = BrickColor.new("Black")
2839p7.Material = Enum.Material.Metal
2840p7.CFrame = CFrame.new(-1.5, 5.74442291, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2841p7.Anchored = false
2842p7.CanCollide = false
2843p7.FormFactor = Enum.FormFactor.Custom
2844p7.Size = Vector3.new(1, 0.200000048, 0.99000001)
2845p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2846p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2847p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2848p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2849p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2850p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2851b7 = Instance.new("SpecialMesh", p7)
2852b7.MeshType = Enum.MeshType.Brick
2853b7.Name = "Mesh"
2854b7.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2855w1 = Instance.new("Weld", p2)
2856w1.Name = "Joint"
2857w1.Part0 = p2
2858w1.C0 = CFrame.new(0, -0.40000093, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2859w1.Part1 = p3
2860w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2861w2 = Instance.new("Weld", p3)
2862w2.Name = "Joint"
2863w2.Part0 = p3
2864w2.C0 = CFrame.new(0.0999999046, -0.300002098, 0.0200009346, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
2865w2.Part1 = p5
2866w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2867w3 = Instance.new("Weld", p4)
2868w3.Name = "Joint"
2869w3.Part0 = p4
2870w3.C0 = CFrame.new(0, 0, -0.470002174, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2871w3.Part1 = p1
2872w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2873w4 = Instance.new("Weld", p5)
2874w4.Name = "Joint"
2875w4.Part0 = p5
2876w4.C0 = CFrame.new(-0.0200009346, 0, -0.5, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
2877w4.Part1 = p1
2878w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2879w5 = Instance.new("Weld", p6)
2880w5.Name = "Joint"
2881w5.Part0 = p6
2882w5.C0 = CFrame.new(0, 0.99999404, -0.00999999046, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
2883w5.Part1 = p1
2884w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2885w6 = Instance.new("Weld", p7)
2886w6.Name = "Joint"
2887w6.Part0 = p7
2888w6.C0 = CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2889w6.Part1 = p1
2890w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2891m4.Parent = lleg
2892m4:MakeJoints()
2893----------------------------------------------------
2894local cor4 = Instance.new("Part", lleg.LeftLeg)
2895cor4.Name = "Thingy"
2896cor4.Locked = true
2897cor4.BottomSurface = 0
2898cor4.CanCollide = false
2899cor4.Size = Vector3.new(1, 1, 1)
2900cor4.Transparency = 1
2901cor4.TopSurface = 0
2902corw4 = Instance.new("Weld", cor4)
2903corw4.Part0 = lleg
2904corw4.Part1 = cor4
2905corw4.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2906corw4.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2907weld4 = Instance.new("Weld", lleg.LeftLeg)
2908weld4.Part0 = cor4
2909weld4.Part1 = lleg.LeftLeg.LeftLegPlate
2910weld4.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2911--Right Leg
2912m5 = Instance.new("Model")
2913m5.Name = "RightLeg"
2914p1 = Instance.new("Part", m5)
2915p1.BrickColor = BrickColor.new("Really black")
2916p1.Material = Enum.Material.Metal
2917p1.Name = "RightLegPlate"
2918p1.CFrame = CFrame.new(1.5, 4.74441528, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2919p1.Anchored = false
2920p1.CanCollide = false
2921p1.FormFactor = Enum.FormFactor.Custom
2922p1.Size = Vector3.new(1, 2, 1)
2923p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2924p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2925p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2926p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2927p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2928p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2929b1 = Instance.new("SpecialMesh", p1)
2930b1.MeshType = Enum.MeshType.Brick
2931b1.Name = "Mesh"
2932b1.Scale = Vector3.new(1.01999998, 1, 1.01999998)
2933p2 = Instance.new("Part", m5)
2934p2.BrickColor = BrickColor.new("Really black")
2935p2.Material = Enum.Material.Metal
2936p2.CFrame = CFrame.new(2.05000019, 5.44441557, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2937p2.Anchored = false
2938p2.CanCollide = false
2939p2.FormFactor = Enum.FormFactor.Custom
2940p2.Size = Vector3.new(0.239999995, 0.300000012, 0.899999976)
2941p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2942p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2943p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2944p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2945p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2946p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2947b2 = Instance.new("SpecialMesh", p2)
2948b2.MeshType = Enum.MeshType.Brick
2949b2.Name = "Mesh"
2950b2.Scale = Vector3.new(1.01999998, 1, 1.01999998)
2951p3 = Instance.new("Part", m5)
2952p3.BrickColor = BrickColor.new("Really black")
2953p3.Material = Enum.Material.Metal
2954p3.CFrame = CFrame.new(2.05000019, 5.04441547, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2955p3.Anchored = false
2956p3.CanCollide = false
2957p3.FormFactor = Enum.FormFactor.Custom
2958p3.Size = Vector3.new(0.200000003, 0.600000024, 0.800000012)
2959p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2960p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2961p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2962p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2963p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2964p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2965b3 = Instance.new("SpecialMesh", p3)
2966b3.MeshType = Enum.MeshType.Brick
2967b3.Name = "Mesh"
2968b3.Scale = Vector3.new(1.01999998, 1, 1.01999998)
2969p4 = Instance.new("Part", m5)
2970p4.BrickColor = BrickColor.new("Black")
2971p4.Material = Enum.Material.Metal
2972p4.CFrame = CFrame.new(1.5, 4.74441528, -7.0299983, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2973p4.Anchored = false
2974p4.CanCollide = false
2975p4.FormFactor = Enum.FormFactor.Custom
2976p4.Size = Vector3.new(1, 2, 0.200000018)
2977p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2978p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2979p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2980p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2981p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2982p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2983b4 = Instance.new("SpecialMesh", p4)
2984b4.MeshType = Enum.MeshType.Brick
2985b4.Name = "Mesh"
2986b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
2987p5 = Instance.new("Part", m5)
2988p5.BrickColor = BrickColor.new("Black")
2989p5.Material = Enum.Material.Metal
2990p5.CFrame = CFrame.new(2, 4.74441528, -7.47999907, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
2991p5.Anchored = false
2992p5.CanCollide = false
2993p5.FormFactor = Enum.FormFactor.Custom
2994p5.Size = Vector3.new(1, 2, 0.200000018)
2995p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2996p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2997p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2998p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2999p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3000p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3001b5 = Instance.new("SpecialMesh", p5)
3002b5.MeshType = Enum.MeshType.Brick
3003b5.Name = "Mesh"
3004b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
3005p6 = Instance.new("Part", m5)
3006p6.BrickColor = BrickColor.new("Black")
3007p6.Material = Enum.Material.Metal
3008p6.CFrame = CFrame.new(1.505, 3.74442124, -7.49999952, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
3009p6.Anchored = false
3010p6.CanCollide = false
3011p6.FormFactor = Enum.FormFactor.Custom
3012p6.Size = Vector3.new(1, 0.200000048, 0.99000001)
3013p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3014p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3015p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3016p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3017p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3018p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3019b6 = Instance.new("SpecialMesh", p6)
3020b6.MeshType = Enum.MeshType.Brick
3021b6.Name = "Mesh"
3022b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
3023p7 = Instance.new("Part", m5)
3024p7.BrickColor = BrickColor.new("Black")
3025p7.Material = Enum.Material.Metal
3026p7.CFrame = CFrame.new(1.505, 5.69442129, -7.49999952, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
3027p7.Anchored = false
3028p7.CanCollide = false
3029p7.FormFactor = Enum.FormFactor.Custom
3030p7.Size = Vector3.new(1, 0.200000048, 0.99000001)
3031p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3032p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3033p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3034p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3035p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3036p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3037b7 = Instance.new("SpecialMesh", p7)
3038b7.MeshType = Enum.MeshType.Brick
3039b7.Name = "Mesh"
3040b7.Scale = Vector3.new(1, 1.01999998, 1.01999998)
3041w1 = Instance.new("Weld", p2)
3042w1.Name = "Joint"
3043w1.Part0 = p2
3044w1.C0 = CFrame.new(0, -0.400000095, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3045w1.Part1 = p3
3046w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3047w2 = Instance.new("Weld", p3)
3048w2.Name = "Joint"
3049w2.Part0 = p3
3050w2.C0 = CFrame.new(-0.0500001907, -0.300000191, 0.0200004578, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
3051w2.Part1 = p5
3052w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3053w3 = Instance.new("Weld", p4)
3054w3.Name = "Joint"
3055w3.Part0 = p4
3056w3.C0 = CFrame.new(0, 0, -0.470001221, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3057w3.Part1 = p1
3058w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3059w4 = Instance.new("Weld", p5)
3060w4.Name = "Joint"
3061w4.Part0 = p5
3062w4.C0 = CFrame.new(-0.0200004578, 0, 0.5, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3063w4.Part1 = p1
3064w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3065w5 = Instance.new("Weld", p6)
3066w5.Name = "Joint"
3067w5.Part0 = p6
3068w5.C0 = CFrame.new(0, 0.99999404, 0.00499999523, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3069w5.Part1 = p1
3070w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3071w6 = Instance.new("Weld", p7)
3072w6.Name = "Joint"
3073w6.Part0 = p7
3074w6.C0 = CFrame.new(0, -0.950006008, 0.00499999523, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3075w6.Part1 = p1
3076w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3077m5.Parent = rleg
3078m5:MakeJoints()
3079----------------------------------------------------
3080local cor5 = Instance.new("Part", rleg.RightLeg)
3081cor5.Name = "Thingy"
3082cor5.Locked = true
3083cor5.BottomSurface = 0
3084cor5.CanCollide = false
3085cor5.Size = Vector3.new(1, 1, 1)
3086cor5.Transparency = 1
3087cor5.TopSurface = 0
3088corw5 = Instance.new("Weld", cor5)
3089corw5.Part0 = rleg
3090corw5.Part1 = cor5
3091corw5.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
3092corw5.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
3093wld5 = Instance.new("Weld", rleg.RightLeg)
3094wld5.Part0 = cor5
3095wld5.Part1 = rleg.RightLeg.RightLegPlate
3096wld5.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
3097--Cape
3098m6 = Instance.new("Model")
3099m6.Name = "Cloak"
3100p1 = Instance.new("WedgePart", m6)
3101p1.BrickColor = BrickColor.new("Lime green")
3102p1.Material = Enum.Material.SmoothPlastic
3103p1.Name = "Wedge"
3104p1.CFrame = CFrame.new(0.959278464, 4.40979004, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
3105p1.CanCollide = false
3106p1.Locked = true
3107p1.FormFactor = Enum.FormFactor.Custom
3108p1.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3109p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3110p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3111p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3112p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3113p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3114p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3115b1 = Instance.new("SpecialMesh", p1)
3116b1.MeshType = Enum.MeshType.Wedge
3117b1.Name = "Mesh"
3118b1.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3119p2 = Instance.new("WedgePart", m6)
3120p2.BrickColor = BrickColor.new("Black")
3121p2.Material = Enum.Material.SmoothPlastic
3122p2.Name = "Wedge"
3123p2.CFrame = CFrame.new(-1.27945054, 2.10108781, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
3124p2.CanCollide = false
3125p2.Locked = true
3126p2.FormFactor = Enum.FormFactor.Custom
3127p2.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
3128p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3129p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3130p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3131p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3132p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3133p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3134b2 = Instance.new("SpecialMesh", p2)
3135b2.MeshType = Enum.MeshType.Wedge
3136b2.Name = "Mesh"
3137b2.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3138p3 = Instance.new("Part", m6)
3139p3.BrickColor = BrickColor.new("Black")
3140p3.Material = Enum.Material.SmoothPlastic
3141p3.Name = "CapeLevel2"
3142p3.CFrame = CFrame.new(-0.300008506, 3.78014231, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3143p3.CanCollide = false
3144p3.Locked = true
3145p3.FormFactor = Enum.FormFactor.Custom
3146p3.Size = Vector3.new(2.09881067, 0.559682727, 0.232357636)
3147p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3148p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3149p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3150p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3151p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3152p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3153b3 = Instance.new("BlockMesh", p3)
3154b3.Name = "Mesh"
3155b3.Scale = Vector3.new(1, 1, 0.602178097)
3156p4 = Instance.new("Part", m6)
3157p4.BrickColor = BrickColor.new("Black")
3158p4.Material = Enum.Material.SmoothPlastic
3159p4.CFrame = CFrame.new(-1.8391341, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
3160p4.CanCollide = false
3161p4.Locked = true
3162p4.FormFactor = Enum.FormFactor.Custom
3163p4.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3164p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3165p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3166p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3167p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3168p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3169p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3170b4 = Instance.new("BlockMesh", p4)
3171b4.Name = "Mesh"
3172b4.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3173p5 = Instance.new("Part", m6)
3174p5.BrickColor = BrickColor.new("Black")
3175p5.Material = Enum.Material.SmoothPlastic
3176p5.CFrame = CFrame.new(-1.69921267, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
3177p5.CanCollide = false
3178p5.Locked = true
3179p5.FormFactor = Enum.FormFactor.Custom
3180p5.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3181p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3182p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3183p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3184p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3185p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3186p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3187b5 = Instance.new("BlockMesh", p5)
3188b5.Name = "Mesh"
3189b5.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3190p6 = Instance.new("Part", m6)
3191p6.BrickColor = BrickColor.new("Black")
3192p6.Material = Enum.Material.SmoothPlastic
3193p6.Name = "CapeLevel1"
3194p6.CFrame = CFrame.new(-0.300008506, 4.6896286, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3195p6.CanCollide = false
3196p6.Locked = true
3197p6.FormFactor = Enum.FormFactor.Custom
3198p6.Size = Vector3.new(1.25928628, 0.232357651, 0.232357636)
3199p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3200p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3201p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3202p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3203p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3204p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3205b6 = Instance.new("BlockMesh", p6)
3206b6.Name = "Mesh"
3207b6.Scale = Vector3.new(1, 0.602178097, 0.602178097)
3208p7 = Instance.new("Part", m6)
3209p7.BrickColor = BrickColor.new("Black")
3210p7.Material = Enum.Material.SmoothPlastic
3211p7.CFrame = CFrame.new(1.23912418, 2.73073268, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3212p7.CanCollide = false
3213p7.Locked = true
3214p7.FormFactor = Enum.FormFactor.Custom
3215p7.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3216p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3217p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3218p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3219p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3220p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3221p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3222b7 = Instance.new("BlockMesh", p7)
3223b7.Name = "Mesh"
3224b7.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3225p8 = Instance.new("Part", m6)
3226p8.BrickColor = BrickColor.new("Black")
3227p8.Material = Enum.Material.SmoothPlastic
3228p8.CFrame = CFrame.new(0.539517641, 2.10109043, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3229p8.CanCollide = false
3230p8.Locked = true
3231p8.FormFactor = Enum.FormFactor.Custom
3232p8.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
3233p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3234p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3235p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3236p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3237p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3238p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3239b8 = Instance.new("BlockMesh", p8)
3240b8.Name = "Mesh"
3241b8.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3242p9 = Instance.new("Part", m6)
3243p9.BrickColor = BrickColor.new("Black")
3244p9.Material = Enum.Material.SmoothPlastic
3245p9.CFrame = CFrame.new(-0.300009966, 2.03112936, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3246p9.CanCollide = false
3247p9.Locked = true
3248p9.FormFactor = Enum.FormFactor.Custom
3249p9.Size = Vector3.new(0.419762105, 0.419762105, 0.232357636)
3250p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3251p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3252p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3253p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3254p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3255p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3256b9 = Instance.new("BlockMesh", p9)
3257b9.Name = "Mesh"
3258b9.Scale = Vector3.new(1, 1, 0.602178097)
3259p10 = Instance.new("Part", m6)
3260p10.BrickColor = BrickColor.new("Black")
3261p10.Material = Enum.Material.SmoothPlastic
3262p10.CFrame = CFrame.new(1.09920263, 2.73073268, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3263p10.CanCollide = false
3264p10.Locked = true
3265p10.FormFactor = Enum.FormFactor.Custom
3266p10.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3267p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3268p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3269p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3270p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3271p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3272p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3273b10 = Instance.new("BlockMesh", p10)
3274b10.Name = "Mesh"
3275b10.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3276p11 = Instance.new("Part", m6)
3277p11.BrickColor = BrickColor.new("Black")
3278p11.Material = Enum.Material.SmoothPlastic
3279p11.CFrame = CFrame.new(-1.13953161, 2.10109043, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3280p11.CanCollide = false
3281p11.Locked = true
3282p11.FormFactor = Enum.FormFactor.Custom
3283p11.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
3284p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3285p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3286p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3287p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3288p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3289p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3290b11 = Instance.new("BlockMesh", p11)
3291b11.Name = "Mesh"
3292b11.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3293p12 = Instance.new("Part", m6)
3294p12.BrickColor = BrickColor.new("Black")
3295p12.Material = Enum.Material.SmoothPlastic
3296p12.CFrame = CFrame.new(-1.6992135, 3.29041815, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
3297p12.CanCollide = false
3298p12.Locked = true
3299p12.FormFactor = Enum.FormFactor.Custom
3300p12.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3301p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3302p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3303p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3304p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3305p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3306p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3307b12 = Instance.new("BlockMesh", p12)
3308b12.Name = "Mesh"
3309b12.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3310p13 = Instance.new("Part", m6)
3311p13.BrickColor = BrickColor.new("Black")
3312p13.Material = Enum.Material.SmoothPlastic
3313p13.Name = "BottomLeftFlap"
3314p13.CFrame = CFrame.new(-1.13953161, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3315p13.CanCollide = false
3316p13.Locked = true
3317p13.FormFactor = Enum.FormFactor.Custom
3318p13.Size = Vector3.new(0.419762105, 0.232357651, 0.232357636)
3319p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3320p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3321p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3322p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3323p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3324p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3325b13 = Instance.new("BlockMesh", p13)
3326b13.Name = "Mesh"
3327b13.Scale = Vector3.new(1, 0.602178097, 0.602178097)
3328p14 = Instance.new("Part", m6)
3329p14.BrickColor = BrickColor.new("Black")
3330p14.Material = Enum.Material.SmoothPlastic
3331p14.Transparency = 1
3332p14.Name = "Rotater"
3333p14.CFrame = CFrame.new(-0.300001532, 4.82954979, 4.03967381, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3334p14.CanCollide = false
3335p14.Locked = true
3336p14.FormFactor = Enum.FormFactor.Custom
3337p14.Size = Vector3.new(1.25928617, 0.232357651, 0.232357636)
3338p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3339p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3340p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3341p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3342p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3343p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3344b14 = Instance.new("BlockMesh", p14)
3345b14.Name = "Mesh"
3346b14.Scale = Vector3.new(1, 0.632287025, 0.632287025)
3347p15 = Instance.new("Part", m6)
3348p15.BrickColor = BrickColor.new("Black")
3349p15.Material = Enum.Material.SmoothPlastic
3350p15.CFrame = CFrame.new(-1.41937125, 4.40979004, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
3351p15.CanCollide = false
3352p15.Locked = true
3353p15.FormFactor = Enum.FormFactor.Custom
3354p15.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3355p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3356p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3357p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3358p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3359p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3360p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3361b15 = Instance.new("BlockMesh", p15)
3362b15.Name = "Mesh"
3363b15.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3364p16 = Instance.new("Part", m6)
3365p16.BrickColor = BrickColor.new("Black")
3366p16.Material = Enum.Material.SmoothPlastic
3367p16.Name = "BottomCenterFlap"
3368p16.CFrame = CFrame.new(-0.300009966, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3369p16.CanCollide = false
3370p16.Locked = true
3371p16.FormFactor = Enum.FormFactor.Custom
3372p16.Size = Vector3.new(0.699603498, 0.232357651, 0.232357636)
3373p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3374p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3375p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3376p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3377p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3378p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3379b16 = Instance.new("BlockMesh", p16)
3380b16.Name = "Mesh"
3381b16.Scale = Vector3.new(1, 0.602178097, 0.602178097)
3382p17 = Instance.new("Part", m6)
3383p17.BrickColor = BrickColor.new("Black")
3384p17.Material = Enum.Material.SmoothPlastic
3385p17.CFrame = CFrame.new(-1.27945054, 4.26986647, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
3386p17.CanCollide = false
3387p17.Locked = true
3388p17.FormFactor = Enum.FormFactor.Custom
3389p17.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
3390p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3391p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3392p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3393p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3394p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3395p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3396b17 = Instance.new("BlockMesh", p17)
3397b17.Name = "Mesh"
3398b17.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3399p18 = Instance.new("Part", m6)
3400p18.BrickColor = BrickColor.new("Black")
3401p18.Material = Enum.Material.SmoothPlastic
3402p18.CFrame = CFrame.new(0.679436207, 4.26986647, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3403p18.CanCollide = false
3404p18.Locked = true
3405p18.FormFactor = Enum.FormFactor.Custom
3406p18.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
3407p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3408p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3409p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3410p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3411p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3412p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3413b18 = Instance.new("BlockMesh", p18)
3414b18.Name = "Mesh"
3415b18.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3416p19 = Instance.new("WedgePart", m6)
3417p19.BrickColor = BrickColor.new("Lime green")
3418p19.Name = "Wedge"
3419p19.CFrame = CFrame.new(-0.265017539, 1.47144794, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3420p19.CanCollide = false
3421p19.Locked = true
3422p19.FormFactor = Enum.FormFactor.Custom
3423p19.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3424p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3425p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3426p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3427p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3428p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3429p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3430b19 = Instance.new("SpecialMesh", p19)
3431b19.MeshType = Enum.MeshType.Wedge
3432b19.Name = "Mesh"
3433b19.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
3434p20 = Instance.new("Part", m6)
3435p20.BrickColor = BrickColor.new("Black")
3436p20.Material = Enum.Material.SmoothPlastic
3437p20.CFrame = CFrame.new(1.09919691, 3.29041815, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3438p20.CanCollide = false
3439p20.Locked = true
3440p20.FormFactor = Enum.FormFactor.Custom
3441p20.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3442p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3443p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3444p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3445p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3446p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3447p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3448b20 = Instance.new("BlockMesh", p20)
3449b20.Name = "Mesh"
3450b20.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3451p21 = Instance.new("Part", m6)
3452p21.BrickColor = BrickColor.new("Black")
3453p21.Material = Enum.Material.SmoothPlastic
3454p21.CFrame = CFrame.new(0.959275484, 3.1504972, 4.03967381, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3455p21.CanCollide = false
3456p21.Locked = true
3457p21.FormFactor = Enum.FormFactor.Custom
3458p21.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
3459p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3460p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3461p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3462p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3463p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3464p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3465b21 = Instance.new("BlockMesh", p21)
3466b21.Name = "Mesh"
3467b21.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3468p22 = Instance.new("WedgePart", m6)
3469p22.BrickColor = BrickColor.new("Lime green")
3470p22.Name = "Wedge"
3471p22.CFrame = CFrame.new(0.50454706, 1.89121199, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
3472p22.CanCollide = false
3473p22.Locked = true
3474p22.FormFactor = Enum.FormFactor.Custom
3475p22.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3476p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3477p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3478p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3479p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3480p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3481p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3482b22 = Instance.new("SpecialMesh", p22)
3483b22.MeshType = Enum.MeshType.Wedge
3484b22.Name = "Mesh"
3485b22.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
3486p23 = Instance.new("WedgePart", m6)
3487p23.BrickColor = BrickColor.new("Lime green")
3488p23.Material = Enum.Material.SmoothPlastic
3489p23.Name = "Wedge"
3490p23.CFrame = CFrame.new(1.09919691, 3.85010386, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
3491p23.CanCollide = false
3492p23.Locked = true
3493p23.FormFactor = Enum.FormFactor.Custom
3494p23.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3495p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3496p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3497p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3498p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3499p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3500p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3501b23 = Instance.new("SpecialMesh", p23)
3502b23.MeshType = Enum.MeshType.Wedge
3503b23.Name = "Mesh"
3504b23.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3505p24 = Instance.new("WedgePart", m6)
3506p24.BrickColor = BrickColor.new("Black")
3507p24.Material = Enum.Material.SmoothPlastic
3508p24.Name = "Wedge"
3509p24.CFrame = CFrame.new(0.959281087, 2.45089102, 4.03967333, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3510p24.CanCollide = false
3511p24.Locked = true
3512p24.FormFactor = Enum.FormFactor.Custom
3513p24.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3514p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3515p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3516p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3517p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3518p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3519p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3520b24 = Instance.new("SpecialMesh", p24)
3521b24.MeshType = Enum.MeshType.Wedge
3522b24.Name = "Mesh"
3523b24.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3524p25 = Instance.new("WedgePart", m6)
3525p25.BrickColor = BrickColor.new("Lime green")
3526p25.Name = "Wedge"
3527p25.CFrame = CFrame.new(0.574507415, 1.89121199, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3528p25.CanCollide = false
3529p25.Locked = true
3530p25.FormFactor = Enum.FormFactor.Custom
3531p25.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3532p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3533p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3534p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3535p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3536p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3537p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3538b25 = Instance.new("SpecialMesh", p25)
3539b25.MeshType = Enum.MeshType.Wedge
3540b25.Name = "Mesh"
3541b25.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
3542p26 = Instance.new("WedgePart", m6)
3543p26.BrickColor = BrickColor.new("Black")
3544p26.Material = Enum.Material.SmoothPlastic
3545p26.Name = "Wedge"
3546p26.CFrame = CFrame.new(-1.06957662, 4.68963194, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
3547p26.CanCollide = false
3548p26.Locked = true
3549p26.FormFactor = Enum.FormFactor.Custom
3550p26.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
3551p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3552p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3553p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3554p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3555p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3556p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3557b26 = Instance.new("SpecialMesh", p26)
3558b26.MeshType = Enum.MeshType.Wedge
3559b26.Name = "Mesh"
3560b26.Scale = Vector3.new(0.602178097, 0.602178097, 1)
3561p27 = Instance.new("Part", m6)
3562p27.BrickColor = BrickColor.new("Black")
3563p27.Material = Enum.Material.SmoothPlastic
3564p27.CFrame = CFrame.new(-1.55929208, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
3565p27.CanCollide = false
3566p27.Locked = true
3567p27.FormFactor = Enum.FormFactor.Custom
3568p27.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
3569p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3570p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3571p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3572p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3573p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3574p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3575b27 = Instance.new("BlockMesh", p27)
3576b27.Name = "Mesh"
3577b27.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3578p28 = Instance.new("WedgePart", m6)
3579p28.BrickColor = BrickColor.new("Black")
3580p28.Material = Enum.Material.SmoothPlastic
3581p28.Name = "Wedge"
3582p28.CFrame = CFrame.new(0.959275484, 3.71018291, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3583p28.CanCollide = false
3584p28.Locked = true
3585p28.FormFactor = Enum.FormFactor.Custom
3586p28.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3587p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3588p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3589p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3590p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3591p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3592p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3593b28 = Instance.new("SpecialMesh", p28)
3594b28.MeshType = Enum.MeshType.Wedge
3595b28.Name = "Mesh"
3596b28.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3597p29 = Instance.new("Part", m6)
3598p29.BrickColor = BrickColor.new("Black")
3599p29.Material = Enum.Material.SmoothPlastic
3600p29.CFrame = CFrame.new(-1.55929208, 3.15049648, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
3601p29.CanCollide = false
3602p29.Locked = true
3603p29.FormFactor = Enum.FormFactor.Custom
3604p29.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
3605p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3606p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3607p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3608p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3609p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3610p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3611b29 = Instance.new("BlockMesh", p29)
3612b29.Name = "Mesh"
3613b29.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3614p30 = Instance.new("WedgePart", m6)
3615p30.BrickColor = BrickColor.new("Black")
3616p30.Material = Enum.Material.SmoothPlastic
3617p30.Name = "Wedge"
3618p30.CFrame = CFrame.new(1.09919691, 3.15049744, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3619p30.CanCollide = false
3620p30.Locked = true
3621p30.FormFactor = Enum.FormFactor.Custom
3622p30.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3623p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3624p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3625p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3626p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3627p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3628p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3629b30 = Instance.new("SpecialMesh", p30)
3630b30.MeshType = Enum.MeshType.Wedge
3631b30.Name = "Mesh"
3632b30.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3633p31 = Instance.new("WedgePart", m6)
3634p31.BrickColor = BrickColor.new("Black")
3635p31.Material = Enum.Material.SmoothPlastic
3636p31.Name = "Wedge"
3637p31.CFrame = CFrame.new(0.119759142, 2.31096911, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3638p31.CanCollide = false
3639p31.Locked = true
3640p31.FormFactor = Enum.FormFactor.Custom
3641p31.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3642p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3643p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3644p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3645p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3646p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3647p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3648b31 = Instance.new("SpecialMesh", p31)
3649b31.MeshType = Enum.MeshType.Wedge
3650b31.Name = "Mesh"
3651b31.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3652p32 = Instance.new("Part", m6)
3653p32.BrickColor = BrickColor.new("Black")
3654p32.Material = Enum.Material.SmoothPlastic
3655p32.Name = "BottomRightFlap"
3656p32.CFrame = CFrame.new(0.539517641, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3657p32.CanCollide = false
3658p32.Locked = true
3659p32.FormFactor = Enum.FormFactor.Custom
3660p32.Size = Vector3.new(0.419762105, 0.232357651, 0.232357636)
3661p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3662p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3663p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3664p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3665p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3666p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3667b32 = Instance.new("BlockMesh", p32)
3668b32.Name = "Mesh"
3669b32.Scale = Vector3.new(1, 0.602178097, 0.602178097)
3670p33 = Instance.new("WedgePart", m6)
3671p33.BrickColor = BrickColor.new("Black")
3672p33.Material = Enum.Material.SmoothPlastic
3673p33.Name = "Wedge"
3674p33.CFrame = CFrame.new(1.02923799, 3.43033957, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
3675p33.CanCollide = false
3676p33.Locked = true
3677p33.FormFactor = Enum.FormFactor.Custom
3678p33.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
3679p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3680p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3681p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3682p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3683p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3684p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3685b33 = Instance.new("SpecialMesh", p33)
3686b33.MeshType = Enum.MeshType.Wedge
3687b33.Name = "Mesh"
3688b33.Scale = Vector3.new(0.602178097, 0.602178097, 1)
3689p34 = Instance.new("WedgePart", m6)
3690p34.BrickColor = BrickColor.new("Black")
3691p34.Material = Enum.Material.SmoothPlastic
3692p34.Name = "Wedge"
3693p34.CFrame = CFrame.new(-1.55929208, 2.45089054, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
3694p34.CanCollide = false
3695p34.Locked = true
3696p34.FormFactor = Enum.FormFactor.Custom
3697p34.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3698p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3699p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3700p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3701p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3702p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3703p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3704b34 = Instance.new("SpecialMesh", p34)
3705b34.MeshType = Enum.MeshType.Wedge
3706b34.Name = "Mesh"
3707b34.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3708p35 = Instance.new("Part", m6)
3709p35.BrickColor = BrickColor.new("Black")
3710p35.Material = Enum.Material.SmoothPlastic
3711p35.CFrame = CFrame.new(0.959275484, 3.85010386, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3712p35.CanCollide = false
3713p35.Locked = true
3714p35.FormFactor = Enum.FormFactor.Custom
3715p35.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3716p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3717p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3718p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3719p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3720p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3721p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3722b35 = Instance.new("BlockMesh", p35)
3723b35.Name = "Mesh"
3724b35.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3725p36 = Instance.new("WedgePart", m6)
3726p36.BrickColor = BrickColor.new("Black")
3727p36.Material = Enum.Material.SmoothPlastic
3728p36.Name = "Wedge"
3729p36.CFrame = CFrame.new(-1.62925327, 3.43033957, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
3730p36.CanCollide = false
3731p36.Locked = true
3732p36.FormFactor = Enum.FormFactor.Custom
3733p36.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
3734p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3735p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3736p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3737p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3738p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3739p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3740b36 = Instance.new("SpecialMesh", p36)
3741b36.MeshType = Enum.MeshType.Wedge
3742b36.Name = "Mesh"
3743b36.Scale = Vector3.new(0.602178097, 0.602178097, 1)
3744p37 = Instance.new("Part", m6)
3745p37.BrickColor = BrickColor.new("Black")
3746p37.Material = Enum.Material.SmoothPlastic
3747p37.Name = "CapeLevel3"
3748p37.CFrame = CFrame.new(-0.300008506, 3.22045994, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3749p37.CanCollide = false
3750p37.Locked = true
3751p37.FormFactor = Enum.FormFactor.Custom
3752p37.Size = Vector3.new(2.3786521, 0.559682727, 0.232357636)
3753p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3754p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3755p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3756p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3757p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3758p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3759b37 = Instance.new("BlockMesh", p37)
3760b37.Name = "Mesh"
3761b37.Scale = Vector3.new(1, 1, 0.602178097)
3762p38 = Instance.new("WedgePart", m6)
3763p38.BrickColor = BrickColor.new("Lime green")
3764p38.Material = Enum.Material.SmoothPlastic
3765p38.Name = "Wedge"
3766p38.CFrame = CFrame.new(-1.97905517, 2.73073244, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
3767p38.CanCollide = false
3768p38.Locked = true
3769p38.FormFactor = Enum.FormFactor.Custom
3770p38.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3771p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3772p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3773p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3774p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3775p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3776p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3777b38 = Instance.new("SpecialMesh", p38)
3778b38.MeshType = Enum.MeshType.Wedge
3779b38.Name = "Mesh"
3780b38.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3781p39 = Instance.new("WedgePart", m6)
3782p39.BrickColor = BrickColor.new("Lime green")
3783p39.Material = Enum.Material.SmoothPlastic
3784p39.Name = "Wedge"
3785p39.CFrame = CFrame.new(-1.83913493, 3.29041815, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
3786p39.CanCollide = false
3787p39.Locked = true
3788p39.FormFactor = Enum.FormFactor.Custom
3789p39.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3790p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3791p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3792p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3793p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3794p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3795p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3796b39 = Instance.new("SpecialMesh", p39)
3797b39.MeshType = Enum.MeshType.Wedge
3798b39.Name = "Mesh"
3799b39.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3800p40 = Instance.new("WedgePart", m6)
3801p40.BrickColor = BrickColor.new("Black")
3802p40.Material = Enum.Material.SmoothPlastic
3803p40.Name = "Wedge"
3804p40.CFrame = CFrame.new(-1.48933268, 3.99002528, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
3805p40.CanCollide = false
3806p40.Locked = true
3807p40.FormFactor = Enum.FormFactor.Custom
3808p40.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
3809p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3810p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3811p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3812p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3813p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3814p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3815b40 = Instance.new("SpecialMesh", p40)
3816b40.MeshType = Enum.MeshType.Wedge
3817b40.Name = "Mesh"
3818b40.Scale = Vector3.new(0.602178097, 0.602178097, 1)
3819p41 = Instance.new("WedgePart", m6)
3820p41.BrickColor = BrickColor.new("Black")
3821p41.Material = Enum.Material.SmoothPlastic
3822p41.Name = "Wedge"
3823p41.CFrame = CFrame.new(-1.76917338, 2.59081101, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
3824p41.CanCollide = false
3825p41.Locked = true
3826p41.FormFactor = Enum.FormFactor.Custom
3827p41.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
3828p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3829p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3830p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3831p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3832p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3833p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3834b41 = Instance.new("SpecialMesh", p41)
3835b41.MeshType = Enum.MeshType.Wedge
3836b41.Name = "Mesh"
3837b41.Scale = Vector3.new(0.602178097, 0.602178097, 1)
3838p42 = Instance.new("WedgePart", m6)
3839p42.BrickColor = BrickColor.new("Black")
3840p42.Material = Enum.Material.SmoothPlastic
3841p42.Name = "Wedge"
3842p42.CFrame = CFrame.new(0.679442644, 2.10108781, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3843p42.CanCollide = false
3844p42.Locked = true
3845p42.FormFactor = Enum.FormFactor.Custom
3846p42.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
3847p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3848p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3849p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3850p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3851p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3852p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3853b42 = Instance.new("SpecialMesh", p42)
3854b42.MeshType = Enum.MeshType.Wedge
3855b42.Name = "Mesh"
3856b42.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3857p43 = Instance.new("WedgePart", m6)
3858p43.BrickColor = BrickColor.new("Black")
3859p43.Material = Enum.Material.SmoothPlastic
3860p43.Name = "Wedge"
3861p43.CFrame = CFrame.new(-1.76917338, 2.87065363, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
3862p43.CanCollide = false
3863p43.Locked = true
3864p43.FormFactor = Enum.FormFactor.Custom
3865p43.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
3866p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3867p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3868p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3869p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3870p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3871p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3872b43 = Instance.new("SpecialMesh", p43)
3873b43.MeshType = Enum.MeshType.Wedge
3874b43.Name = "Mesh"
3875b43.Scale = Vector3.new(0.602178097, 0.602178097, 1)
3876p44 = Instance.new("WedgePart", m6)
3877p44.BrickColor = BrickColor.new("Black")
3878p44.Material = Enum.Material.SmoothPlastic
3879p44.Name = "Wedge"
3880p44.CFrame = CFrame.new(-1.41937125, 4.26986837, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
3881p44.CanCollide = false
3882p44.Locked = true
3883p44.FormFactor = Enum.FormFactor.Custom
3884p44.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3885p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3886p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3887p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3888p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3889p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3890p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3891b44 = Instance.new("SpecialMesh", p44)
3892b44.MeshType = Enum.MeshType.Wedge
3893b44.Name = "Mesh"
3894b44.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3895p45 = Instance.new("WedgePart", m6)
3896p45.BrickColor = BrickColor.new("Black")
3897p45.Material = Enum.Material.SmoothPlastic
3898p45.Name = "Wedge"
3899p45.CFrame = CFrame.new(-0.999610066, 2.10108781, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3900p45.CanCollide = false
3901p45.Locked = true
3902p45.FormFactor = Enum.FormFactor.Custom
3903p45.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
3904p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3905p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3906p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3907p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3908p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3909p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3910b45 = Instance.new("SpecialMesh", p45)
3911b45.MeshType = Enum.MeshType.Wedge
3912b45.Name = "Mesh"
3913b45.Scale = Vector3.new(0.602178097, 1, 0.602178097)
3914p46 = Instance.new("WedgePart", m6)
3915p46.BrickColor = BrickColor.new("Black")
3916p46.Material = Enum.Material.SmoothPlastic
3917p46.Name = "Wedge"
3918p46.CFrame = CFrame.new(0.46955356, 4.68963194, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
3919p46.CanCollide = false
3920p46.Locked = true
3921p46.FormFactor = Enum.FormFactor.Custom
3922p46.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
3923p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3924p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3925p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3926p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3927p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3928p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3929b46 = Instance.new("SpecialMesh", p46)
3930b46.MeshType = Enum.MeshType.Wedge
3931b46.Name = "Mesh"
3932b46.Scale = Vector3.new(0.602178097, 0.602178097, 1)
3933p47 = Instance.new("Part", m6)
3934p47.BrickColor = BrickColor.new("Black")
3935p47.Material = Enum.Material.SmoothPlastic
3936p47.CFrame = CFrame.new(0.819356859, 4.40979004, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3937p47.CanCollide = false
3938p47.Locked = true
3939p47.FormFactor = Enum.FormFactor.Custom
3940p47.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3941p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3942p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3943p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3944p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3945p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3946p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3947b47 = Instance.new("BlockMesh", p47)
3948b47.Name = "Mesh"
3949b47.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3950p48 = Instance.new("Part", m6)
3951p48.BrickColor = BrickColor.new("Black")
3952p48.Material = Enum.Material.SmoothPlastic
3953p48.Name = "CapeLevel4"
3954p48.CFrame = CFrame.new(-0.300008506, 2.66077495, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3955p48.CanCollide = false
3956p48.Locked = true
3957p48.FormFactor = Enum.FormFactor.Custom
3958p48.Size = Vector3.new(2.3786521, 0.559682727, 0.232357636)
3959p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3960p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3961p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3962p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3963p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3964p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3965b48 = Instance.new("BlockMesh", p48)
3966b48.Name = "Mesh"
3967b48.Scale = Vector3.new(1, 1, 0.602178097)
3968p49 = Instance.new("WedgePart", m6)
3969p49.BrickColor = BrickColor.new("Black")
3970p49.Material = Enum.Material.SmoothPlastic
3971p49.Name = "Wedge"
3972p49.CFrame = CFrame.new(0.819356859, 4.26986837, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
3973p49.CanCollide = false
3974p49.Locked = true
3975p49.FormFactor = Enum.FormFactor.Custom
3976p49.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
3977p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3978p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3979p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3980p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3981p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3982p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3983b49 = Instance.new("SpecialMesh", p49)
3984b49.MeshType = Enum.MeshType.Wedge
3985b49.Name = "Mesh"
3986b49.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
3987p50 = Instance.new("Part", m6)
3988p50.BrickColor = BrickColor.new("Black")
3989p50.Material = Enum.Material.SmoothPlastic
3990p50.Name = "CapeLevel1SubPart"
3991p50.CFrame = CFrame.new(-0.300008506, 4.33982658, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3992p50.CanCollide = false
3993p50.Locked = true
3994p50.FormFactor = Enum.FormFactor.Custom
3995p50.Size = Vector3.new(1.81896901, 0.559682727, 0.232357636)
3996p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3997p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3998p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3999p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4000p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4001p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4002b50 = Instance.new("BlockMesh", p50)
4003b50.Name = "Mesh"
4004b50.Scale = Vector3.new(1, 1, 0.602178097)
4005p51 = Instance.new("Part", m6)
4006p51.BrickColor = BrickColor.new("Black")
4007p51.Material = Enum.Material.SmoothPlastic
4008p51.CFrame = CFrame.new(-1.55929291, 3.85010386, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4009p51.CanCollide = false
4010p51.Locked = true
4011p51.FormFactor = Enum.FormFactor.Custom
4012p51.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4013p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4014p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4015p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4016p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4017p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4018p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4019b51 = Instance.new("BlockMesh", p51)
4020b51.Name = "Mesh"
4021b51.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4022p52 = Instance.new("Part", m6)
4023p52.BrickColor = BrickColor.new("Black")
4024p52.Material = Enum.Material.SmoothPlastic
4025p52.CFrame = CFrame.new(-1.41937149, 3.71018171, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4026p52.CanCollide = false
4027p52.Locked = true
4028p52.FormFactor = Enum.FormFactor.Custom
4029p52.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
4030p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4031p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4032p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4033p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4034p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4035p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4036b52 = Instance.new("BlockMesh", p52)
4037b52.Name = "Mesh"
4038b52.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4039p53 = Instance.new("WedgePart", m6)
4040p53.BrickColor = BrickColor.new("Black")
4041p53.Material = Enum.Material.SmoothPlastic
4042p53.Name = "Wedge"
4043p53.CFrame = CFrame.new(-0.0201580226, 2.03113341, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4044p53.CanCollide = false
4045p53.Locked = true
4046p53.FormFactor = Enum.FormFactor.Custom
4047p53.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
4048p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4049p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4050p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4051p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4052p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4053p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4054b53 = Instance.new("SpecialMesh", p53)
4055b53.MeshType = Enum.MeshType.Wedge
4056b53.Name = "Mesh"
4057b53.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4058p54 = Instance.new("Part", m6)
4059p54.BrickColor = BrickColor.new("Black")
4060p54.Material = Enum.Material.SmoothPlastic
4061p54.CFrame = CFrame.new(-0.300009966, 1.68132639, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4062p54.CanCollide = false
4063p54.Locked = true
4064p54.FormFactor = Enum.FormFactor.Custom
4065p54.Size = Vector3.new(0.232357651, 0.279841423, 0.232357636)
4066p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4067p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4068p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4069p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4070p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4071p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4072b54 = Instance.new("BlockMesh", p54)
4073b54.Name = "Mesh"
4074b54.Scale = Vector3.new(0.602178395, 1, 0.602178097)
4075p55 = Instance.new("WedgePart", m6)
4076p55.BrickColor = BrickColor.new("Black")
4077p55.Material = Enum.Material.SmoothPlastic
4078p55.Name = "Wedge"
4079p55.CFrame = CFrame.new(0.39960131, 2.10108781, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4080p55.CanCollide = false
4081p55.Locked = true
4082p55.FormFactor = Enum.FormFactor.Custom
4083p55.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
4084p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4085p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4086p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4087p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4088p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4089p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4090b55 = Instance.new("SpecialMesh", p55)
4091b55.MeshType = Enum.MeshType.Wedge
4092b55.Name = "Mesh"
4093b55.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4094p56 = Instance.new("WedgePart", m6)
4095p56.BrickColor = BrickColor.new("Lime green")
4096p56.Material = Enum.Material.SmoothPlastic
4097p56.Name = "Wedge"
4098p56.CFrame = CFrame.new(1.23911822, 3.29041815, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4099p56.CanCollide = false
4100p56.Locked = true
4101p56.FormFactor = Enum.FormFactor.Custom
4102p56.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4103p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4104p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4105p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4106p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4107p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4108p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4109b56 = Instance.new("SpecialMesh", p56)
4110b56.MeshType = Enum.MeshType.Wedge
4111b56.Name = "Mesh"
4112b56.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4113p57 = Instance.new("WedgePart", m6)
4114p57.BrickColor = BrickColor.new("Black")
4115p57.Material = Enum.Material.SmoothPlastic
4116p57.Name = "Wedge"
4117p57.CFrame = CFrame.new(0.749394774, 4.54971123, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4118p57.CanCollide = false
4119p57.Locked = true
4120p57.FormFactor = Enum.FormFactor.Custom
4121p57.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
4122p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4123p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4124p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4125p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4126p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4127p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4128b57 = Instance.new("SpecialMesh", p57)
4129b57.MeshType = Enum.MeshType.Wedge
4130b57.Name = "Mesh"
4131b57.Scale = Vector3.new(0.602178097, 0.602178097, 1)
4132p58 = Instance.new("Part", m6)
4133p58.BrickColor = BrickColor.new("Black")
4134p58.Material = Enum.Material.SmoothPlastic
4135p58.CFrame = CFrame.new(0.819354892, 3.71018171, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4136p58.CanCollide = false
4137p58.Locked = true
4138p58.FormFactor = Enum.FormFactor.Custom
4139p58.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
4140p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4141p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4142p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4143p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4144p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4145p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4146b58 = Instance.new("BlockMesh", p58)
4147b58.Name = "Mesh"
4148b58.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4149p59 = Instance.new("WedgePart", m6)
4150p59.BrickColor = BrickColor.new("Black")
4151p59.Material = Enum.Material.SmoothPlastic
4152p59.Name = "Wedge"
4153p59.CFrame = CFrame.new(0.259678036, 2.31096983, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4154p59.CanCollide = false
4155p59.Locked = true
4156p59.FormFactor = Enum.FormFactor.Custom
4157p59.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4158p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4159p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4160p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4161p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4162p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4163p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4164b59 = Instance.new("SpecialMesh", p59)
4165b59.MeshType = Enum.MeshType.Wedge
4166b59.Name = "Mesh"
4167b59.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4168p60 = Instance.new("Part", m6)
4169p60.BrickColor = BrickColor.new("Black")
4170p60.Material = Enum.Material.SmoothPlastic
4171p60.Name = "NeckPart"
4172p60.CFrame = CFrame.new(-0.300008506, 4.82955122, 3.8997519, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4173p60.CanCollide = false
4174p60.Locked = true
4175p60.FormFactor = Enum.FormFactor.Custom
4176p60.Size = Vector3.new(1.25928628, 0.232357651, 0.419762105)
4177p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4178p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4179p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4180p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4181p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4182p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4183b60 = Instance.new("BlockMesh", p60)
4184b60.Name = "Mesh"
4185b60.Scale = Vector3.new(1, 0.602178097, 1)
4186p61 = Instance.new("Part", m6)
4187p61.BrickColor = BrickColor.new("Black")
4188p61.Material = Enum.Material.SmoothPlastic
4189p61.CFrame = CFrame.new(0.959281087, 2.73073363, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4190p61.CanCollide = false
4191p61.Locked = true
4192p61.FormFactor = Enum.FormFactor.Custom
4193p61.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
4194p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4195p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4196p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4197p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4198p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4199p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4200b61 = Instance.new("BlockMesh", p61)
4201b61.Name = "Mesh"
4202b61.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4203p62 = Instance.new("WedgePart", m6)
4204p62.BrickColor = BrickColor.new("Black")
4205p62.Material = Enum.Material.SmoothPlastic
4206p62.Name = "Wedge"
4207p62.CFrame = CFrame.new(1.16916382, 2.87065434, 4.03967333, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4208p62.CanCollide = false
4209p62.Locked = true
4210p62.FormFactor = Enum.FormFactor.Custom
4211p62.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
4212p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4213p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4214p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4215p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4216p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4217p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4218b62 = Instance.new("SpecialMesh", p62)
4219b62.MeshType = Enum.MeshType.Wedge
4220b62.Name = "Mesh"
4221b62.Scale = Vector3.new(0.602178097, 0.602178097, 1)
4222p63 = Instance.new("WedgePart", m6)
4223p63.BrickColor = BrickColor.new("Lime green")
4224p63.Material = Enum.Material.SmoothPlastic
4225p63.Name = "Wedge"
4226p63.CFrame = CFrame.new(1.37904489, 2.73073268, 4.03967333, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4227p63.CanCollide = false
4228p63.Locked = true
4229p63.FormFactor = Enum.FormFactor.Custom
4230p63.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4231p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4232p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4233p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4234p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4235p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4236p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4237b63 = Instance.new("SpecialMesh", p63)
4238b63.MeshType = Enum.MeshType.Wedge
4239b63.Name = "Mesh"
4240b63.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4241p64 = Instance.new("WedgePart", m6)
4242p64.BrickColor = BrickColor.new("Black")
4243p64.Material = Enum.Material.SmoothPlastic
4244p64.Name = "Wedge"
4245p64.CFrame = CFrame.new(-0.439923674, 1.68132377, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4246p64.CanCollide = false
4247p64.Locked = true
4248p64.FormFactor = Enum.FormFactor.Custom
4249p64.Size = Vector3.new(0.232357651, 0.279841423, 0.232357636)
4250p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4251p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4252p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4253p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4254p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4255p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4256b64 = Instance.new("SpecialMesh", p64)
4257b64.MeshType = Enum.MeshType.Wedge
4258b64.Name = "Mesh"
4259b64.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4260p65 = Instance.new("WedgePart", m6)
4261p65.BrickColor = BrickColor.new("Black")
4262p65.Material = Enum.Material.SmoothPlastic
4263p65.Name = "Wedge"
4264p65.CFrame = CFrame.new(-0.859687686, 2.31096983, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4265p65.CanCollide = false
4266p65.Locked = true
4267p65.FormFactor = Enum.FormFactor.Custom
4268p65.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4269p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4270p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4271p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4272p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4273p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4274p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4275b65 = Instance.new("SpecialMesh", p65)
4276b65.MeshType = Enum.MeshType.Wedge
4277b65.Name = "Mesh"
4278b65.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4279p66 = Instance.new("WedgePart", m6)
4280p66.BrickColor = BrickColor.new("Black")
4281p66.Material = Enum.Material.SmoothPlastic
4282p66.Name = "Wedge"
4283p66.CFrame = CFrame.new(-1.55929291, 3.71018267, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4284p66.CanCollide = false
4285p66.Locked = true
4286p66.FormFactor = Enum.FormFactor.Custom
4287p66.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4288p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4289p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4290p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4291p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4292p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4293p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4294b66 = Instance.new("SpecialMesh", p66)
4295b66.MeshType = Enum.MeshType.Wedge
4296b66.Name = "Mesh"
4297b66.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4298p67 = Instance.new("WedgePart", m6)
4299p67.BrickColor = BrickColor.new("Black")
4300p67.Material = Enum.Material.SmoothPlastic
4301p67.Name = "Wedge"
4302p67.CFrame = CFrame.new(-0.719767809, 2.31096911, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4303p67.CanCollide = false
4304p67.Locked = true
4305p67.FormFactor = Enum.FormFactor.Custom
4306p67.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4307p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4308p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4309p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4310p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4311p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4312p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4313b67 = Instance.new("SpecialMesh", p67)
4314b67.MeshType = Enum.MeshType.Wedge
4315b67.Name = "Mesh"
4316b67.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4317p68 = Instance.new("WedgePart", m6)
4318p68.BrickColor = BrickColor.new("Lime green")
4319p68.Name = "Wedge"
4320p68.CFrame = CFrame.new(-1.17450571, 1.89121199, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4321p68.CanCollide = false
4322p68.Locked = true
4323p68.FormFactor = Enum.FormFactor.Custom
4324p68.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4325p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4326p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4327p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4328p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4329p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4330p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4331b68 = Instance.new("SpecialMesh", p68)
4332b68.MeshType = Enum.MeshType.Wedge
4333b68.Name = "Mesh"
4334b68.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
4335p69 = Instance.new("WedgePart", m6)
4336p69.BrickColor = BrickColor.new("Lime green")
4337p69.Name = "Wedge"
4338p69.CFrame = CFrame.new(-1.10454547, 1.89121199, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4339p69.CanCollide = false
4340p69.Locked = true
4341p69.FormFactor = Enum.FormFactor.Custom
4342p69.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4343p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4344p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4345p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4346p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4347p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4348p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4349b69 = Instance.new("SpecialMesh", p69)
4350b69.MeshType = Enum.MeshType.Wedge
4351b69.Name = "Mesh"
4352b69.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
4353p70 = Instance.new("WedgePart", m6)
4354p70.BrickColor = BrickColor.new("Black")
4355p70.Material = Enum.Material.SmoothPlastic
4356p70.Name = "Wedge"
4357p70.CFrame = CFrame.new(0.889316559, 3.99002528, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4358p70.CanCollide = false
4359p70.Locked = true
4360p70.FormFactor = Enum.FormFactor.Custom
4361p70.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
4362p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4363p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4364p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4365p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4366p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4367p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4368b70 = Instance.new("SpecialMesh", p70)
4369b70.MeshType = Enum.MeshType.Wedge
4370b70.Name = "Mesh"
4371b70.Scale = Vector3.new(0.602178097, 0.602178097, 1)
4372p71 = Instance.new("WedgePart", m6)
4373p71.BrickColor = BrickColor.new("Lime green")
4374p71.Name = "Wedge"
4375p71.CFrame = CFrame.new(-0.334977895, 1.47144794, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4376p71.CanCollide = false
4377p71.Locked = true
4378p71.FormFactor = Enum.FormFactor.Custom
4379p71.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4380p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4381p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4382p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4383p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4384p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4385p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4386b71 = Instance.new("SpecialMesh", p71)
4387b71.MeshType = Enum.MeshType.Wedge
4388b71.Name = "Mesh"
4389b71.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
4390p72 = Instance.new("WedgePart", m6)
4391p72.BrickColor = BrickColor.new("Black")
4392p72.Material = Enum.Material.SmoothPlastic
4393p72.Name = "Wedge"
4394p72.CFrame = CFrame.new(-0.579845786, 2.03112626, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4395p72.CanCollide = false
4396p72.Locked = true
4397p72.FormFactor = Enum.FormFactor.Custom
4398p72.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
4399p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4400p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4401p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4402p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4403p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4404p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4405b72 = Instance.new("SpecialMesh", p72)
4406b72.MeshType = Enum.MeshType.Wedge
4407b72.Name = "Mesh"
4408b72.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4409p73 = Instance.new("WedgePart", m6)
4410p73.BrickColor = BrickColor.new("Black")
4411p73.Material = Enum.Material.SmoothPlastic
4412p73.Name = "Wedge"
4413p73.CFrame = CFrame.new(-1.41937125, 2.31096983, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4414p73.CanCollide = false
4415p73.Locked = true
4416p73.FormFactor = Enum.FormFactor.Custom
4417p73.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4418p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4419p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4420p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4421p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4422p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4423p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4424b73 = Instance.new("SpecialMesh", p73)
4425b73.MeshType = Enum.MeshType.Wedge
4426b73.Name = "Mesh"
4427b73.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4428p74 = Instance.new("WedgePart", m6)
4429p74.BrickColor = BrickColor.new("Black")
4430p74.Material = Enum.Material.SmoothPlastic
4431p74.Name = "Wedge"
4432p74.CFrame = CFrame.new(1.16916382, 2.59081125, 4.03967333, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4433p74.CanCollide = false
4434p74.Locked = true
4435p74.FormFactor = Enum.FormFactor.Custom
4436p74.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
4437p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4438p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4439p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4440p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4441p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4442p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4443b74 = Instance.new("SpecialMesh", p74)
4444b74.MeshType = Enum.MeshType.Wedge
4445b74.Name = "Mesh"
4446b74.Scale = Vector3.new(0.602178097, 0.602178097, 1)
4447p75 = Instance.new("WedgePart", m6)
4448p75.BrickColor = BrickColor.new("Black")
4449p75.Material = Enum.Material.SmoothPlastic
4450p75.Name = "Wedge"
4451p75.CFrame = CFrame.new(-0.160081401, 1.68132377, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4452p75.CanCollide = false
4453p75.Locked = true
4454p75.FormFactor = Enum.FormFactor.Custom
4455p75.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
4456p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4457p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4458p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4459p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4460p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4461p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4462b75 = Instance.new("SpecialMesh", p75)
4463b75.MeshType = Enum.MeshType.Wedge
4464b75.Name = "Mesh"
4465b75.Scale = Vector3.new(0.602178097, 1, 0.602178097)
4466p76 = Instance.new("WedgePart", m6)
4467p76.BrickColor = BrickColor.new("Black")
4468p76.Material = Enum.Material.SmoothPlastic
4469p76.Name = "Wedge"
4470p76.CFrame = CFrame.new(0.819362521, 2.31096983, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4471p76.CanCollide = false
4472p76.Locked = true
4473p76.FormFactor = Enum.FormFactor.Custom
4474p76.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4475p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4476p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4477p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4478p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4479p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4480p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4481b76 = Instance.new("SpecialMesh", p76)
4482b76.MeshType = Enum.MeshType.Wedge
4483b76.Name = "Mesh"
4484b76.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4485p77 = Instance.new("WedgePart", m6)
4486p77.BrickColor = BrickColor.new("Lime green")
4487p77.Material = Enum.Material.SmoothPlastic
4488p77.Name = "Wedge"
4489p77.CFrame = CFrame.new(-1.55929291, 4.40979004, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4490p77.CanCollide = false
4491p77.Locked = true
4492p77.FormFactor = Enum.FormFactor.Custom
4493p77.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4494p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4495p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4496p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4497p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4498p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4499p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4500b77 = Instance.new("SpecialMesh", p77)
4501b77.MeshType = Enum.MeshType.Wedge
4502b77.Name = "Mesh"
4503b77.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4504p78 = Instance.new("WedgePart", m6)
4505p78.BrickColor = BrickColor.new("Black")
4506p78.Material = Enum.Material.SmoothPlastic
4507p78.Name = "Wedge"
4508p78.CFrame = CFrame.new(-1.34941173, 4.54971123, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4509p78.CanCollide = false
4510p78.Locked = true
4511p78.FormFactor = Enum.FormFactor.Custom
4512p78.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
4513p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4514p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4515p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4516p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4517p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4518p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4519b78 = Instance.new("SpecialMesh", p78)
4520b78.MeshType = Enum.MeshType.Wedge
4521b78.Name = "Mesh"
4522b78.Scale = Vector3.new(0.602178097, 0.602178097, 1)
4523p79 = Instance.new("WedgePart", m6)
4524p79.BrickColor = BrickColor.new("Lime green")
4525p79.Material = Enum.Material.SmoothPlastic
4526p79.Name = "Wedge"
4527p79.CFrame = CFrame.new(-1.6992141, 3.85010386, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4528p79.CanCollide = false
4529p79.Locked = true
4530p79.FormFactor = Enum.FormFactor.Custom
4531p79.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4532p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4533p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4534p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4535p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4536p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4537p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4538b79 = Instance.new("SpecialMesh", p79)
4539b79.MeshType = Enum.MeshType.Wedge
4540b79.Name = "Mesh"
4541b79.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4542p80 = Instance.new("WedgePart", m6)
4543p80.BrickColor = BrickColor.new("Black")
4544p80.Material = Enum.Material.SmoothPlastic
4545p80.Name = "Wedge"
4546p80.CFrame = CFrame.new(-1.6992135, 3.1504972, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4547p80.CanCollide = false
4548p80.Locked = true
4549p80.FormFactor = Enum.FormFactor.Custom
4550p80.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
4551p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4552p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4553p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4554p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4555p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4556p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4557b80 = Instance.new("SpecialMesh", p80)
4558b80.MeshType = Enum.MeshType.Wedge
4559b80.Name = "Mesh"
4560b80.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
4561w1 = Instance.new("Weld", p1)
4562w1.Name = "Joint"
4563w1.Part0 = p1
4564w1.C0 = CFrame.new(0, 0, 0.139921591, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4565w1.Part1 = p47
4566w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4567w2 = Instance.new("Weld", p2)
4568w2.Name = "Joint"
4569w2.Part0 = p2
4570w2.C0 = CFrame.new(0, -2.7097974e-006, 0.139918938, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4571w2.Part1 = p11
4572w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4573w3 = Instance.new("Weld", p3)
4574w3.Name = "Joint"
4575w3.Part0 = p3
4576w3.C0 = CFrame.new(0, 0.559684455, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4577w3.Part1 = p50
4578w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4579w4 = Instance.new("Weld", p4)
4580w4.Name = "Joint"
4581w4.Part0 = p4
4582w4.C0 = CFrame.new(-0.139921427, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4583w4.Part1 = p5
4584w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4585w5 = Instance.new("Weld", p5)
4586w5.Name = "Joint"
4587w5.Part0 = p5
4588w5.C0 = CFrame.new(-0.139920607, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4589w5.Part1 = p27
4590w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4591w6 = Instance.new("Weld", p6)
4592w6.Name = "Joint"
4593w6.Part0 = p6
4594w6.C0 = CFrame.new(6.98293934e-006, 0.13992101, 1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4595w6.Part1 = p14
4596w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4597w7 = Instance.new("Weld", p7)
4598w7.Name = "Joint"
4599w7.Part0 = p7
4600w7.C0 = CFrame.new(-0.139921531, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4601w7.Part1 = p10
4602w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4603w8 = Instance.new("Weld", p8)
4604w8.Name = "Joint"
4605w8.Part0 = p8
4606w8.C0 = CFrame.new(0, 0.209881723, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4607w8.Part1 = p32
4608w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4609w9 = Instance.new("Weld", p9)
4610w9.Name = "Joint"
4611w9.Part0 = p9
4612w9.C0 = CFrame.new(0, 0.279842764, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4613w9.Part1 = p16
4614w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4615w10 = Instance.new("Weld", p10)
4616w10.Name = "Joint"
4617w10.Part0 = p10
4618w10.C0 = CFrame.new(-0.139921531, 1.04222977e-006, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4619w10.Part1 = p61
4620w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4621w11 = Instance.new("Weld", p11)
4622w11.Name = "Joint"
4623w11.Part0 = p11
4624w11.C0 = CFrame.new(0, 0.209881723, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4625w11.Part1 = p13
4626w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4627w12 = Instance.new("Weld", p12)
4628w12.Name = "Joint"
4629w12.Part0 = p12
4630w12.C0 = CFrame.new(-0.139921427, -0.139921635, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4631w12.Part1 = p29
4632w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4633w13 = Instance.new("Weld", p13)
4634w13.Name = "Joint"
4635w13.Part0 = p13
4636w13.C0 = CFrame.new(0.839523137, 0.349802732, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4637w13.Part1 = p48
4638w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4639w14 = Instance.new("Weld", p14)
4640w14.Name = "Joint"
4641w14.Part0 = p14
4642w14.C0 = CFrame.new(-6.98293934e-006, 1.25067584e-006, -0.139921844, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4643w14.Part1 = p60
4644w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4645w15 = Instance.new("Weld", p15)
4646w15.Name = "Joint"
4647w15.Part0 = p15
4648w15.C0 = CFrame.new(-0.139920712, -0.139923528, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4649w15.Part1 = p17
4650w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4651w16 = Instance.new("Weld", p16)
4652w16.Name = "Joint"
4653w16.Part0 = p16
4654w16.C0 = CFrame.new(1.45912168e-006, 0.349802852, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4655w16.Part1 = p48
4656w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4657w17 = Instance.new("Weld", p17)
4658w17.Name = "Joint"
4659w17.Part0 = p17
4660w17.C0 = CFrame.new(-0.97944206, 0.0699603036, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4661w17.Part1 = p50
4662w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4663w18 = Instance.new("Weld", p18)
4664w18.Name = "Joint"
4665w18.Part0 = p18
4666w18.C0 = CFrame.new(-0.979444683, 0.0699603036, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4667w18.Part1 = p50
4668w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4669w19 = Instance.new("Weld", p19)
4670w19.Name = "Joint"
4671w19.Part0 = p19
4672w19.C0 = CFrame.new(0, -0.2098784, 0.0349924229, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4673w19.Part1 = p54
4674w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4675w20 = Instance.new("Weld", p20)
4676w20.Name = "Joint"
4677w20.Part0 = p20
4678w20.C0 = CFrame.new(-0.139921427, -0.13992101, 1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4679w20.Part1 = p21
4680w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4681w21 = Instance.new("Weld", p21)
4682w21.Name = "Joint"
4683w21.Part0 = p21
4684w21.C0 = CFrame.new(-1.25928402, 0.0699627995, -1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4685w21.Part1 = p37
4686w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4687w22 = Instance.new("Weld", p22)
4688w22.Name = "Joint"
4689w22.Part0 = p22
4690w22.C0 = CFrame.new(0, -0.209878504, 0.0349705629, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4691w22.Part1 = p8
4692w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4693w23 = Instance.new("Weld", p23)
4694w23.Name = "Joint"
4695w23.Part0 = p23
4696w23.C0 = CFrame.new(0, 0, 0.139921427, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4697w23.Part1 = p35
4698w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4699w24 = Instance.new("Weld", p24)
4700w24.Name = "Joint"
4701w24.Part0 = p24
4702w24.C0 = CFrame.new(8.33783815e-007, -0.209883824, 1.25928962, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4703w24.Part1 = p48
4704w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4705w25 = Instance.new("Weld", p25)
4706w25.Name = "Joint"
4707w25.Part0 = p25
4708w25.C0 = CFrame.new(0, -0.209878504, 0.0349897929, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4709w25.Part1 = p8
4710w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4711w26 = Instance.new("Weld", p26)
4712w26.Name = "Joint"
4713w26.Part0 = p26
4714w26.C0 = CFrame.new(0, -3.33513526e-006, 0.769568086, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4715w26.Part1 = p6
4716w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4717w27 = Instance.new("Weld", p27)
4718w27.Name = "Joint"
4719w27.Part0 = p27
4720w27.C0 = CFrame.new(-1.25928354, -0.0699575916, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4721w27.Part1 = p48
4722w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4723w28 = Instance.new("Weld", p28)
4724w28.Name = "Joint"
4725w28.Part0 = p28
4726w28.C0 = CFrame.new(0, -0.13992101, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
4727w28.Part1 = p35
4728w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4729w29 = Instance.new("Weld", p29)
4730w29.Name = "Joint"
4731w29.Part0 = p29
4732w29.C0 = CFrame.new(-1.25928354, 0.0699634254, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4733w29.Part1 = p37
4734w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4735w30 = Instance.new("Weld", p30)
4736w30.Name = "Joint"
4737w30.Part0 = p30
4738w30.C0 = CFrame.new(0, -0.139920816, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4739w30.Part1 = p20
4740w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4741w31 = Instance.new("Weld", p31)
4742w31.Name = "Joint"
4743w31.Part0 = p31
4744w31.C0 = CFrame.new(0, -3.02246644e-006, 0.419769108, 0, 0, -1, 0, -1, -0, -1, 0, -0)
4745w31.Part1 = p16
4746w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4747w32 = Instance.new("Weld", p32)
4748w32.Name = "Joint"
4749w32.Part0 = p32
4750w32.C0 = CFrame.new(-0.839526176, 0.349802852, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4751w32.Part1 = p48
4752w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4753w33 = Instance.new("Weld", p33)
4754w33.Name = "Joint"
4755w33.Part0 = p33
4756w33.C0 = CFrame.new(1.3548987e-006, -0.279842436, 0.0699624866, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4757w33.Part1 = p21
4758w33.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4759w34 = Instance.new("Weld", p34)
4760w34.Name = "Joint"
4761w34.Part0 = p34
4762w34.C0 = CFrame.new(0, -0.279842019, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
4763w34.Part1 = p27
4764w34.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4765w35 = Instance.new("Weld", p35)
4766w35.Name = "Joint"
4767w35.Part0 = p35
4768w35.C0 = CFrame.new(-0.139920607, -0.139922053, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4769w35.Part1 = p58
4770w35.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4771w36 = Instance.new("Weld", p36)
4772w36.Name = "Joint"
4773w36.Part0 = p36
4774w36.C0 = CFrame.new(0, -0.279843062, 0.0699611381, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4775w36.Part1 = p29
4776w36.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4777w37 = Instance.new("Weld", p37)
4778w37.Name = "Joint"
4779w37.Part0 = p37
4780w37.C0 = CFrame.new(0, 0.559682429, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4781w37.Part1 = p3
4782w37.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4783w38 = Instance.new("Weld", p38)
4784w38.Name = "Joint"
4785w38.Part0 = p38
4786w38.C0 = CFrame.new(0, 0, 0.13992101, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4787w38.Part1 = p4
4788w38.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4789w39 = Instance.new("Weld", p39)
4790w39.Name = "Joint"
4791w39.Part0 = p39
4792w39.C0 = CFrame.new(0, 0, 0.139921427, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4793w39.Part1 = p12
4794w39.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4795w40 = Instance.new("Weld", p40)
4796w40.Name = "Joint"
4797w40.Part0 = p40
4798w40.C0 = CFrame.new(0, -0.279843479, 0.0699611381, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4799w40.Part1 = p52
4800w40.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4801w41 = Instance.new("Weld", p41)
4802w41.Name = "Joint"
4803w41.Part0 = p41
4804w41.C0 = CFrame.new(0, -0.139921427, 0.0699607134, 0, 0, -1, 0, -1, -0, -1, 0, -0)
4805w41.Part1 = p5
4806w41.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4807w42 = Instance.new("Weld", p42)
4808w42.Name = "Joint"
4809w42.Part0 = p42
4810w42.C0 = CFrame.new(0, -2.7097974e-006, 0.139925033, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4811w42.Part1 = p8
4812w42.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4813w43 = Instance.new("Weld", p43)
4814w43.Name = "Joint"
4815w43.Part0 = p43
4816w43.C0 = CFrame.new(0, -0.139921218, 0.0699607134, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4817w43.Part1 = p5
4818w43.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4819w44 = Instance.new("Weld", p44)
4820w44.Name = "Joint"
4821w44.Part0 = p44
4822w44.C0 = CFrame.new(0, -0.139921844, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4823w44.Part1 = p15
4824w44.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4825w45 = Instance.new("Weld", p45)
4826w45.Name = "Joint"
4827w45.Part0 = p45
4828w45.C0 = CFrame.new(0, -2.7097974e-006, 0.139921531, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4829w45.Part1 = p11
4830w45.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4831w46 = Instance.new("Weld", p46)
4832w46.Name = "Joint"
4833w46.Part0 = p46
4834w46.C0 = CFrame.new(0, -3.33513526e-006, 0.769562066, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4835w46.Part1 = p6
4836w46.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4837w47 = Instance.new("Weld", p47)
4838w47.Name = "Joint"
4839w47.Part0 = p47
4840w47.C0 = CFrame.new(-0.139920652, -0.139923528, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4841w47.Part1 = p18
4842w47.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4843w48 = Instance.new("Weld", p48)
4844w48.Name = "Joint"
4845w48.Part0 = p48
4846w48.C0 = CFrame.new(0, 0.559684873, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4847w48.Part1 = p37
4848w48.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4849w49 = Instance.new("Weld", p49)
4850w49.Name = "Joint"
4851w49.Part0 = p49
4852w49.C0 = CFrame.new(0, -0.139921844, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4853w49.Part1 = p47
4854w49.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4855w50 = Instance.new("Weld", p50)
4856w50.Name = "Joint"
4857w50.Part0 = p50
4858w50.C0 = CFrame.new(0, 0.349801898, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4859w50.Part1 = p6
4860w50.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4861w51 = Instance.new("Weld", p51)
4862w51.Name = "Joint"
4863w51.Part0 = p51
4864w51.C0 = CFrame.new(-0.139921427, -0.139922053, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4865w51.Part1 = p52
4866w51.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4867w52 = Instance.new("Weld", p52)
4868w52.Name = "Joint"
4869w52.Part0 = p52
4870w52.C0 = CFrame.new(-1.11936295, 0.0699607134, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4871w52.Part1 = p3
4872w52.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4873w53 = Instance.new("Weld", p53)
4874w53.Name = "Joint"
4875w53.Part0 = p53
4876w53.C0 = CFrame.new(0, 3.9604729e-006, 0.279851943, 0, 0, -1, 0, -1, -0, -1, 0, -0)
4877w53.Part1 = p9
4878w53.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4879w54 = Instance.new("Weld", p54)
4880w54.Name = "Joint"
4881w54.Part0 = p54
4882w54.C0 = CFrame.new(0, 0.349802941, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4883w54.Part1 = p9
4884w54.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4885w55 = Instance.new("Weld", p55)
4886w55.Name = "Joint"
4887w55.Part0 = p55
4888w55.C0 = CFrame.new(0, -2.7097974e-006, 0.139916331, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4889w55.Part1 = p8
4890w55.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4891w56 = Instance.new("Weld", p56)
4892w56.Name = "Joint"
4893w56.Part0 = p56
4894w56.C0 = CFrame.new(0, 0, 0.139921322, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4895w56.Part1 = p20
4896w56.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4897w57 = Instance.new("Weld", p57)
4898w57.Name = "Joint"
4899w57.Part0 = p57
4900w57.C0 = CFrame.new(0, -0.139921427, -0.0699620694, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4901w57.Part1 = p47
4902w57.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4903w58 = Instance.new("Weld", p58)
4904w58.Name = "Joint"
4905w58.Part0 = p58
4906w58.C0 = CFrame.new(-1.11936343, 0.0699607134, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4907w58.Part1 = p3
4908w58.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4909w59 = Instance.new("Weld", p59)
4910w59.Name = "Joint"
4911w59.Part0 = p59
4912w59.C0 = CFrame.new(0, -2.50135167e-006, 0.279839605, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4913w59.Part1 = p32
4914w59.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4915w60 = Instance.new("Weld", p61)
4916w60.Name = "Joint"
4917w60.Part0 = p61
4918w60.C0 = CFrame.new(-1.25928962, -0.0699586272, -8.33783815e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4919w60.Part1 = p48
4920w60.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4921w61 = Instance.new("Weld", p62)
4922w61.Name = "Joint"
4923w61.Part0 = p62
4924w61.C0 = CFrame.new(0, -0.139921635, 0.0699612424, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4925w61.Part1 = p10
4926w61.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4927w62 = Instance.new("Weld", p63)
4928w62.Name = "Joint"
4929w62.Part0 = p63
4930w62.C0 = CFrame.new(0, 0, 0.139920712, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4931w62.Part1 = p7
4932w62.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4933w63 = Instance.new("Weld", p64)
4934w63.Name = "Joint"
4935w63.Part0 = p64
4936w63.C0 = CFrame.new(0, -2.60557431e-006, 0.139913708, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4937w63.Part1 = p54
4938w63.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4939w64 = Instance.new("Weld", p65)
4940w64.Name = "Joint"
4941w64.Part0 = p65
4942w64.C0 = CFrame.new(0, -2.50135167e-006, 0.279843956, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4943w64.Part1 = p13
4944w64.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4945w65 = Instance.new("Weld", p66)
4946w65.Name = "Joint"
4947w65.Part0 = p66
4948w65.C0 = CFrame.new(0, 1.04222977e-006, 0.139921427, 0, 0, -1, 0, -1, -0, -1, 0, -0)
4949w65.Part1 = p52
4950w65.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4951w66 = Instance.new("Weld", p67)
4952w66.Name = "Joint"
4953w66.Part0 = p67
4954w66.C0 = CFrame.new(0, -3.02246644e-006, 0.419757843, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4955w66.Part1 = p16
4956w66.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4957w67 = Instance.new("Weld", p68)
4958w67.Name = "Joint"
4959w67.Part0 = p68
4960w67.C0 = CFrame.new(0, -0.209878504, 0.0349741057, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4961w67.Part1 = p11
4962w67.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4963w68 = Instance.new("Weld", p69)
4964w68.Name = "Joint"
4965w68.Part0 = p69
4966w68.C0 = CFrame.new(0, -0.209878504, 0.0349861942, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4967w68.Part1 = p11
4968w68.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4969w69 = Instance.new("Weld", p70)
4970w69.Name = "Joint"
4971w69.Part0 = p70
4972w69.C0 = CFrame.new(0, -0.279843479, 0.0699616596, 0, 0, 1, 0, 1, 0, -1, 0, 0)
4973w69.Part1 = p58
4974w69.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4975w70 = Instance.new("Weld", p71)
4976w70.Name = "Joint"
4977w70.Part0 = p71
4978w70.C0 = CFrame.new(0, -0.2098784, 0.0349679329, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4979w70.Part1 = p54
4980w70.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4981w71 = Instance.new("Weld", p72)
4982w71.Name = "Joint"
4983w71.Part0 = p72
4984w71.C0 = CFrame.new(0, -3.02246644e-006, 0.27983579, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4985w71.Part1 = p9
4986w71.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4987w72 = Instance.new("Weld", p73)
4988w72.Name = "Joint"
4989w72.Part0 = p73
4990w72.C0 = CFrame.new(0, -2.50135167e-006, 0.279839605, 0, 0, 1, 0, -1, 0, 1, 0, 0)
4991w72.Part1 = p13
4992w72.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4993w73 = Instance.new("Weld", p74)
4994w73.Name = "Joint"
4995w73.Part0 = p74
4996w73.C0 = CFrame.new(0, -0.139921427, 0.0699612424, 0, 0, -1, 0, -1, 0, -1, 0, 0)
4997w73.Part1 = p10
4998w73.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4999w74 = Instance.new("Weld", p75)
5000w74.Name = "Joint"
5001w74.Part0 = p75
5002w74.C0 = CFrame.new(0, -2.60557431e-006, 0.139928564, 0, 0, -1, 0, -1, 0, -1, 0, 0)
5003w74.Part1 = p54
5004w74.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5005w75 = Instance.new("Weld", p76)
5006w75.Name = "Joint"
5007w75.Part0 = p76
5008w75.C0 = CFrame.new(0, -2.50135167e-006, 0.27984485, 0, 0, -1, 0, -1, 0, -1, 0, 0)
5009w75.Part1 = p32
5010w75.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5011w76 = Instance.new("Weld", p77)
5012w76.Name = "Joint"
5013w76.Part0 = p77
5014w76.C0 = CFrame.new(0, 0, 0.139921635, 0, 0, 1, 0, 1, 0, -1, 0, 0)
5015w76.Part1 = p15
5016w76.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5017w77 = Instance.new("Weld", p78)
5018w77.Name = "Joint"
5019w77.Part0 = p78
5020w77.C0 = CFrame.new(0, -0.139921427, -0.0699594691, 0, 0, 1, 0, 1, 0, -1, 0, 0)
5021w77.Part1 = p15
5022w77.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5023w78 = Instance.new("Weld", p79)
5024w78.Name = "Joint"
5025w78.Part0 = p79
5026w78.C0 = CFrame.new(0, 0, 0.139921218, 0, 0, 1, 0, 1, 0, -1, 0, 0)
5027w78.Part1 = p51
5028w78.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5029w79 = Instance.new("Weld", p80)
5030w79.Name = "Joint"
5031w79.Part0 = p80
5032w79.C0 = CFrame.new(0, -0.13992101, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
5033w79.Part1 = p12
5034w79.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5035m6.Parent = torso
5036m6:MakeJoints()
5037----------------------------------------------------
5038local cor6 = Instance.new("Part", torso.Cloak)
5039cor6.Name = "Thingy"
5040cor6.Locked = true
5041cor6.BottomSurface = 0
5042cor6.CanCollide = false
5043cor6.Size = Vector3.new(1,1,1)
5044cor6.Transparency = 1
5045cor6.TopSurface = 0
5046corw6 = Instance.new("Weld", cor6)
5047corw6.Part0 = torso
5048corw6.Part1 = cor6
5049corw6.C0 = CFrame.new(0, 1, 0.5) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
5050corw6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
5051weld6 = Instance.new("Weld", torso.Cloak.NeckPart)
5052weld6.Part0 = cor6
5053weld6.Part1 = torso.Cloak.NeckPart
5054weld6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
5055--Amulet
5056m7 = Instance.new("Model")
5057m7.Name = "Amulet"
5058p1 = Instance.new("Part", m7)
5059p1.BrickColor = BrickColor.new("Lime green")
5060p1.Material = Enum.Material.Neon
5061p1.Name = "Center"
5062p1.CFrame = CFrame.new(-1.0658141e-014, 14.4125643, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
5063p1.CanCollide = false
5064p1.Locked = true
5065p1.FormFactor = Enum.FormFactor.Custom
5066p1.Shape = Enum.PartType.Cylinder
5067p1.Size = Vector3.new(0.5, 0.5, 0.5)
5068p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5069p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5070p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5071p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5072p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5073p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5074p2 = Instance.new("Part", m7)
5075p2.BrickColor = BrickColor.new("Really black")
5076p2.Material = Enum.Material.Metal
5077p2.Name = "Bottom"
5078p2.CFrame = CFrame.new(1.19209318e-007, 14.1625719, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
5079p2.CanCollide = false
5080p2.Locked = true
5081p2.FormFactor = Enum.FormFactor.Custom
5082p2.Size = Vector3.new(0.200000003, 0.649999976, 0.649999976)
5083p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5084p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5085p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5086p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5087p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5088p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5089b1 = Instance.new("SpecialMesh", p2)
5090b1.MeshType = Enum.MeshType.Cylinder
5091b1.Name = "Mesh"
5092p3 = Instance.new("Part", m7)
5093p3.BrickColor = BrickColor.new("Really black")
5094p3.Material = Enum.Material.Metal
5095p3.CFrame = CFrame.new(1.23580463e-007, 14.4625673, -0.280000001, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
5096p3.CanCollide = false
5097p3.Locked = true
5098p3.FormFactor = Enum.FormFactor.Custom
5099p3.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5100p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5101p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5102p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5103p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5104p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5105p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5106b2 = Instance.new("SpecialMesh", p3)
5107b2.MeshType = Enum.MeshType.Brick
5108b2.Name = "Mesh"
5109b2.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5110p4 = Instance.new("Part", m7)
5111p4.BrickColor = BrickColor.new("Really black")
5112p4.Material = Enum.Material.Metal
5113p4.CFrame = CFrame.new(1.19209318e-007, 14.4625673, 0.280000001, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
5114p4.CanCollide = false
5115p4.Locked = true
5116p4.FormFactor = Enum.FormFactor.Custom
5117p4.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5118p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5119p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5120p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5121p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5122p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5123p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5124b3 = Instance.new("SpecialMesh", p4)
5125b3.MeshType = Enum.MeshType.Brick
5126b3.Name = "Mesh"
5127b3.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5128p5 = Instance.new("Part", m7)
5129p5.BrickColor = BrickColor.new("Really black")
5130p5.Material = Enum.Material.Metal
5131p5.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)
5132p5.CanCollide = false
5133p5.Locked = true
5134p5.FormFactor = Enum.FormFactor.Custom
5135p5.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5136p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5137p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5138p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5139p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5140p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5141p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5142b4 = Instance.new("SpecialMesh", p5)
5143b4.MeshType = Enum.MeshType.Brick
5144b4.Name = "Mesh"
5145b4.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5146p6 = Instance.new("Part", m7)
5147p6.BrickColor = BrickColor.new("Really black")
5148p6.Material = Enum.Material.Metal
5149p6.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)
5150p6.CanCollide = false
5151p6.Locked = true
5152p6.FormFactor = Enum.FormFactor.Custom
5153p6.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5154p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5155p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5156p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5157p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5158p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5159p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5160b5 = Instance.new("SpecialMesh", p6)
5161b5.MeshType = Enum.MeshType.Brick
5162b5.Name = "Mesh"
5163b5.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5164p7 = Instance.new("Part", m7)
5165p7.BrickColor = BrickColor.new("Really black")
5166p7.Material = Enum.Material.Metal
5167p7.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)
5168p7.CanCollide = false
5169p7.Locked = true
5170p7.FormFactor = Enum.FormFactor.Custom
5171p7.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5172p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5173p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5174p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5175p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5176p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5177p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5178b6 = Instance.new("SpecialMesh", p7)
5179b6.MeshType = Enum.MeshType.Brick
5180b6.Name = "Mesh"
5181b6.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5182p8 = Instance.new("Part", m7)
5183p8.BrickColor = BrickColor.new("Really black")
5184p8.Material = Enum.Material.Metal
5185p8.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)
5186p8.CanCollide = false
5187p8.Locked = true
5188p8.FormFactor = Enum.FormFactor.Custom
5189p8.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5190p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5191p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5192p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5193p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5194p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5195p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5196b7 = Instance.new("SpecialMesh", p8)
5197b7.MeshType = Enum.MeshType.Brick
5198b7.Name = "Mesh"
5199b7.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5200p9 = Instance.new("Part", m7)
5201p9.BrickColor = BrickColor.new("Really black")
5202p9.Material = Enum.Material.Metal
5203p9.CFrame = CFrame.new(0.280000091, 14.4625673, -1.64313008e-014, 0, 0, -1, 1, -4.37113847e-008, 0, -4.37113847e-008, -1, 0)
5204p9.CanCollide = false
5205p9.Locked = true
5206p9.FormFactor = Enum.FormFactor.Custom
5207p9.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5208p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5209p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5210p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5211p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5212p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5213p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5214b8 = Instance.new("SpecialMesh", p9)
5215b8.MeshType = Enum.MeshType.Brick
5216b8.Name = "Mesh"
5217b8.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5218p10 = Instance.new("Part", m7)
5219p10.BrickColor = BrickColor.new("Really black")
5220p10.Material = Enum.Material.Metal
5221p10.CFrame = CFrame.new(-0.279999852, 14.4625673, -1.49011772e-008, 0, 0, -1, 1, -4.37113847e-008, 0, -4.37113847e-008, -1, 0)
5222p10.CanCollide = false
5223p10.Locked = true
5224p10.FormFactor = Enum.FormFactor.Custom
5225p10.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5226p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5227p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5228p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5229p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5230p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5231p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5232b9 = Instance.new("SpecialMesh", p10)
5233b9.MeshType = Enum.MeshType.Brick
5234b9.Name = "Mesh"
5235b9.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5236p11 = Instance.new("Part", m7)
5237p11.BrickColor = BrickColor.new("Really black")
5238p11.Material = Enum.Material.Metal
5239p11.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)
5240p11.CanCollide = false
5241p11.Locked = true
5242p11.FormFactor = Enum.FormFactor.Custom
5243p11.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5244p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5245p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5246p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5247p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5248p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5249p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5250b10 = Instance.new("SpecialMesh", p11)
5251b10.MeshType = Enum.MeshType.Brick
5252b10.Name = "Mesh"
5253b10.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5254p12 = Instance.new("Part", m7)
5255p12.BrickColor = BrickColor.new("Really black")
5256p12.Material = Enum.Material.Metal
5257p12.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)
5258p12.CanCollide = false
5259p12.Locked = true
5260p12.FormFactor = Enum.FormFactor.Custom
5261p12.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5262p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5263p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5264p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5265p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5266p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5267p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5268b11 = Instance.new("SpecialMesh", p12)
5269b11.MeshType = Enum.MeshType.Brick
5270b11.Name = "Mesh"
5271b11.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5272p13 = Instance.new("Part", m7)
5273p13.BrickColor = BrickColor.new("Really black")
5274p13.Material = Enum.Material.Metal
5275p13.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)
5276p13.CanCollide = false
5277p13.Locked = true
5278p13.FormFactor = Enum.FormFactor.Custom
5279p13.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5280p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5281p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5282p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5283p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5284p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5285p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5286b12 = Instance.new("SpecialMesh", p13)
5287b12.MeshType = Enum.MeshType.Brick
5288b12.Name = "Mesh"
5289b12.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5290p14 = Instance.new("Part", m7)
5291p14.BrickColor = BrickColor.new("Really black")
5292p14.Material = Enum.Material.Metal
5293p14.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)
5294p14.CanCollide = false
5295p14.Locked = true
5296p14.FormFactor = Enum.FormFactor.Custom
5297p14.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
5298p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5299p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5300p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5301p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5302p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5303p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5304b13 = Instance.new("SpecialMesh", p14)
5305b13.MeshType = Enum.MeshType.Brick
5306b13.Name = "Mesh"
5307b13.Scale = Vector3.new(1, 0.300000012, 0.200000003)
5308p15 = Instance.new("Part", m7)
5309p15.BrickColor = BrickColor.new("Really black")
5310p15.Material = Enum.Material.Metal
5311p15.Name = "Top"
5312p15.CFrame = CFrame.new(0, 14.7125645, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
5313p15.CanCollide = false
5314p15.Locked = true
5315p15.FormFactor = Enum.FormFactor.Custom
5316p15.Size = Vector3.new(0.200000003, 0.649999976, 0.649999976)
5317p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5318p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5319p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5320p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5321p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5322p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5323b14 = Instance.new("SpecialMesh", p15)
5324b14.MeshType = Enum.MeshType.Cylinder
5325b14.Name = "Mesh"
5326w1 = Instance.new("Weld", p1)
5327w1.Name = "Joint"
5328w1.Part0 = p1
5329w1.C0 = CFrame.new(0.300000191, -1.31134357e-008, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5330w1.Part1 = p15
5331w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5332w2 = Instance.new("Weld", p2)
5333w2.Name = "Joint"
5334w2.Part0 = p2
5335w2.C0 = CFrame.new(0.249992371, 1.08281824e-007, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5336w2.Part1 = p1
5337w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5338w3 = Instance.new("Weld", p3)
5339w3.Name = "Joint"
5340w3.Part0 = p3
5341w3.C0 = CFrame.new(-0.0500030518, 1.25766178e-007, 0.280000001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5342w3.Part1 = p1
5343w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5344w4 = Instance.new("Weld", p4)
5345w4.Name = "Joint"
5346w4.Part0 = p4
5347w4.C0 = CFrame.new(-0.0500030518, 1.21395033e-007, -0.280000001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5348w4.Part1 = p1
5349w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5350w5 = Instance.new("Weld", p5)
5351w5.Name = "Joint"
5352w5.Part0 = p5
5353w5.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)
5354w5.Part1 = p1
5355w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5356w6 = Instance.new("Weld", p6)
5357w6.Name = "Joint"
5358w6.Part0 = p6
5359w6.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)
5360w6.Part1 = p1
5361w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5362w7 = Instance.new("Weld", p7)
5363w7.Name = "Joint"
5364w7.Part0 = p7
5365w7.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)
5366w7.Part1 = p1
5367w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5368w8 = Instance.new("Weld", p8)
5369w8.Name = "Joint"
5370w8.Part0 = p8
5371w8.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)
5372w8.Part1 = p1
5373w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5374w9 = Instance.new("Weld", p9)
5375w9.Name = "Joint"
5376w9.Part0 = p9
5377w9.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)
5378w9.Part1 = p1
5379w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5380w10 = Instance.new("Weld", p10)
5381w10.Name = "Joint"
5382w10.Part0 = p10
5383w10.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)
5384w10.Part1 = p1
5385w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5386w11 = Instance.new("Weld", p11)
5387w11.Name = "Joint"
5388w11.Part0 = p11
5389w11.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)
5390w11.Part1 = p1
5391w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5392w12 = Instance.new("Weld", p12)
5393w12.Name = "Joint"
5394w12.Part0 = p12
5395w12.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)
5396w12.Part1 = p1
5397w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5398w13 = Instance.new("Weld", p13)
5399w13.Name = "Joint"
5400w13.Part0 = p13
5401w13.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)
5402w13.Part1 = p1
5403w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5404w14 = Instance.new("Weld", p14)
5405w14.Name = "Joint"
5406w14.Part0 = p14
5407w14.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)
5408w14.Part1 = p1
5409w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5410m7.Parent = torso
5411m7:MakeJoints()
5412----------------------------------------------------
5413local cor7 = Instance.new("Part", torso.Amulet)
5414cor7.Name = "Thingy"
5415cor7.Locked = true
5416cor7.BottomSurface = 0
5417cor7.CanCollide = false
5418cor7.Size = Vector3.new(1, 1, 1)
5419cor7.Transparency = 1
5420cor7.TopSurface = 0
5421corw7 = Instance.new("Weld", cor7)
5422corw7.Part0 = torso.Torso.Connection
5423corw7.Part1 = cor7
5424corw7.C0 = CFrame.new(0, 0.26, 0.1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
5425corw7.C1 = CFrame.new(0, -0.2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(140))
5426weld7 = Instance.new("Weld", torso.Amulet)
5427weld7.Part0 = cor7
5428weld7.Part1 = torso.Amulet.Top
5429weld7.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
5430--Zyrodoxa
5431m8 = Instance.new("Model")
5432m8.Name = "Zyrodoxa"
5433p1 = Instance.new("Part", m8)
5434p1.BrickColor = BrickColor.new("Really black")
5435p1.Material = Enum.Material.Metal
5436p1.Reflectance = 0.40000000596046
5437p1.Name = "Block"
5438p1.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)
5439p1.CanCollide = false
5440p1.Locked = true
5441p1.FormFactor = Enum.FormFactor.Custom
5442p1.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5443p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5444p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5445p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5446p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5447p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5448p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5449b1 = Instance.new("BlockMesh", p1)
5450b1.Name = "Mesh"
5451b1.Scale = Vector3.new(0.267712682, 0.468497276, 1)
5452p2 = Instance.new("Part", m8)
5453p2.BrickColor = BrickColor.new("Black")
5454p2.Material = Enum.Material.Metal
5455p2.Reflectance = 0.40000000596046
5456p2.Name = "Block"
5457p2.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)
5458p2.CanCollide = false
5459p2.Locked = true
5460p2.FormFactor = Enum.FormFactor.Custom
5461p2.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5462p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5463p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5464p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5465p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5466p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5467p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5468b2 = Instance.new("BlockMesh", p2)
5469b2.Name = "Mesh"
5470b2.Scale = Vector3.new(0.267712682, 0.870066345, 1)
5471p3 = Instance.new("Part", m8)
5472p3.BrickColor = BrickColor.new("Black")
5473p3.Material = Enum.Material.Metal
5474p3.Reflectance = 0.40000000596046
5475p3.Name = "Block"
5476p3.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)
5477p3.CanCollide = false
5478p3.Locked = true
5479p3.FormFactor = Enum.FormFactor.Custom
5480p3.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5481p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5482p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5483p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5484p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5485p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5486p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5487b3 = Instance.new("BlockMesh", p3)
5488b3.Name = "Mesh"
5489b3.Scale = Vector3.new(0.267712682, 0.870066345, 1)
5490p4 = Instance.new("Part", m8)
5491p4.BrickColor = BrickColor.new("Lime green")
5492p4.Material = Enum.Material.Metal
5493p4.Name = "Block"
5494p4.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)
5495p4.CanCollide = false
5496p4.Locked = true
5497p4.FormFactor = Enum.FormFactor.Custom
5498p4.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5499p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5500p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5501p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5502p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5503p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5504p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5505b4 = Instance.new("BlockMesh", p4)
5506b4.Name = "Mesh"
5507b4.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
5508p5 = Instance.new("Part", m8)
5509p5.BrickColor = BrickColor.new("Lime green")
5510p5.Material = Enum.Material.Neon
5511p5.Reflectance = 0.40000000596046
5512p5.Name = "Block"
5513p5.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)
5514p5.CanCollide = false
5515p5.Locked = true
5516p5.FormFactor = Enum.FormFactor.Custom
5517p5.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5518p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5519p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5520p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5521p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5522p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5523p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5524b5 = Instance.new("BlockMesh", p5)
5525b5.Name = "Mesh"
5526b5.Scale = Vector3.new(0.334640861, 0.200784534, 0.669281721)
5527p6 = Instance.new("Part", m8)
5528p6.BrickColor = BrickColor.new("Parsley green")
5529p6.Material = Enum.Material.Metal
5530p6.Name = "Block"
5531p6.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)
5532p6.CanCollide = false
5533p6.Locked = true
5534p6.FormFactor = Enum.FormFactor.Custom
5535p6.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5536p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5537p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5538p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5539p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5540p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5541p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5542b6 = Instance.new("BlockMesh", p6)
5543b6.Name = "Mesh"
5544b6.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
5545p7 = Instance.new("Part", m8)
5546p7.BrickColor = BrickColor.new("Lime green")
5547p7.Material = Enum.Material.Neon
5548p7.Reflectance = 0.40000000596046
5549p7.Name = "Block"
5550p7.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)
5551p7.CanCollide = false
5552p7.Locked = true
5553p7.FormFactor = Enum.FormFactor.Custom
5554p7.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5555p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5556p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5557p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5558p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5559p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5560p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5561b7 = Instance.new("BlockMesh", p7)
5562b7.Name = "Mesh"
5563b7.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
5564p8 = Instance.new("Part", m8)
5565p8.BrickColor = BrickColor.new("Lime green")
5566p8.Material = Enum.Material.Neon
5567p8.Reflectance = 0.40000000596046
5568p8.Name = "Block"
5569p8.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)
5570p8.CanCollide = false
5571p8.Locked = true
5572p8.FormFactor = Enum.FormFactor.Custom
5573p8.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5574p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5575p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5576p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5577p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5578p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5579p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5580b8 = Instance.new("BlockMesh", p8)
5581b8.Name = "Mesh"
5582b8.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
5583p9 = Instance.new("Part", m8)
5584p9.BrickColor = BrickColor.new("Really black")
5585p9.Material = Enum.Material.Metal
5586p9.Reflectance = 0.40000000596046
5587p9.Name = "Block"
5588p9.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)
5589p9.CanCollide = false
5590p9.Locked = true
5591p9.FormFactor = Enum.FormFactor.Custom
5592p9.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5593p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5594p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5595p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5596p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5597p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5598p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5599b9 = Instance.new("BlockMesh", p9)
5600b9.Name = "Mesh"
5601b9.Scale = Vector3.new(0.267712682, 0.468497276, 1)
5602p10 = Instance.new("Part", m8)
5603p10.BrickColor = BrickColor.new("Really black")
5604p10.Material = Enum.Material.Metal
5605p10.Reflectance = 0.40000000596046
5606p10.Name = "Block"
5607p10.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)
5608p10.CanCollide = false
5609p10.Locked = true
5610p10.FormFactor = Enum.FormFactor.Custom
5611p10.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5612p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5613p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5614p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5615p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5616p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5617p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5618b10 = Instance.new("BlockMesh", p10)
5619b10.Name = "Mesh"
5620b10.Scale = Vector3.new(0.267712682, 0.468497276, 1)
5621p11 = Instance.new("Part", m8)
5622p11.BrickColor = BrickColor.new("Black")
5623p11.Material = Enum.Material.Metal
5624p11.Name = "Circle"
5625p11.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)
5626p11.CanCollide = false
5627p11.Locked = true
5628p11.FormFactor = Enum.FormFactor.Custom
5629p11.Size = Vector3.new(0.236122593, 0.220499977, 0.265637904)
5630p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5631p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5632p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5633p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5634p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5635p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5636b11 = Instance.new("CylinderMesh", p11)
5637b11.Name = "Mesh"
5638b11.Scale = Vector3.new(1, 0.401569068, 1)
5639p12 = Instance.new("Part", m8)
5640p12.BrickColor = BrickColor.new("Lime green")
5641p12.Material = Enum.Material.Neon
5642p12.Reflectance = 0.40000000596046
5643p12.Name = "Block"
5644p12.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)
5645p12.CanCollide = false
5646p12.Locked = true
5647p12.FormFactor = Enum.FormFactor.Custom
5648p12.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5649p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5650p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5651p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5652p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5653p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5654p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5655b12 = Instance.new("BlockMesh", p12)
5656b12.Name = "Mesh"
5657b12.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
5658p13 = Instance.new("Part", m8)
5659p13.BrickColor = BrickColor.new("Lime green")
5660p13.Material = Enum.Material.Metal
5661p13.Name = "Block"
5662p13.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)
5663p13.CanCollide = false
5664p13.Locked = true
5665p13.FormFactor = Enum.FormFactor.Custom
5666p13.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5667p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5668p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5669p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5670p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5671p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5672p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5673b13 = Instance.new("BlockMesh", p13)
5674b13.Name = "Mesh"
5675b13.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
5676p14 = Instance.new("Part", m8)
5677p14.BrickColor = BrickColor.new("Black")
5678p14.Material = Enum.Material.Metal
5679p14.Reflectance = 0.40000000596046
5680p14.Name = "Block"
5681p14.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)
5682p14.CanCollide = false
5683p14.Locked = true
5684p14.FormFactor = Enum.FormFactor.Custom
5685p14.Size = Vector3.new(0.220499977, 0.220499977, 0.332047403)
5686p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5687p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5688p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5689p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5690p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5691p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5692b14 = Instance.new("BlockMesh", p14)
5693b14.Name = "Mesh"
5694b14.Scale = Vector3.new(0.267712682, 0.535425484, 1)
5695p15 = Instance.new("Part", m8)
5696p15.BrickColor = BrickColor.new("Really black")
5697p15.Material = Enum.Material.Metal
5698p15.Reflectance = 0.40000000596046
5699p15.Name = "Block"
5700p15.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)
5701p15.CanCollide = false
5702p15.Locked = true
5703p15.FormFactor = Enum.FormFactor.Custom
5704p15.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5705p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5706p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5707p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5708p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5709p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5710p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5711b15 = Instance.new("BlockMesh", p15)
5712b15.Name = "Mesh"
5713b15.Scale = Vector3.new(0.267712682, 0.468497276, 1)
5714p16 = Instance.new("Part", m8)
5715p16.BrickColor = BrickColor.new("Really black")
5716p16.Material = Enum.Material.Metal
5717p16.Name = "Handle"
5718p16.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)
5719p16.CanCollide = false
5720p16.Locked = true
5721p16.FormFactor = Enum.FormFactor.Custom
5722p16.Size = Vector3.new(0.220499977, 0.97400558, 0.220499977)
5723p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5724p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5725p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5726p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5727p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5728p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5729b16 = Instance.new("BlockMesh", p16)
5730b16.Name = "Mesh"
5731b16.Scale = Vector3.new(0.602353573, 1, 0.602353573)
5732p17 = Instance.new("Part", m8)
5733p17.BrickColor = BrickColor.new("Lime green")
5734p17.Material = Enum.Material.Neon
5735p17.Reflectance = 0.40000000596046
5736p17.Name = "Block"
5737p17.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)
5738p17.CanCollide = false
5739p17.Locked = true
5740p17.FormFactor = Enum.FormFactor.Custom
5741p17.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5742p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5743p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5744p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5745p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5746p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5747p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5748b17 = Instance.new("BlockMesh", p17)
5749b17.Name = "Mesh"
5750b17.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
5751p18 = Instance.new("Part", m8)
5752p18.BrickColor = BrickColor.new("Really black")
5753p18.Material = Enum.Material.Metal
5754p18.Name = "Block"
5755p18.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)
5756p18.CanCollide = false
5757p18.Locked = true
5758p18.FormFactor = Enum.FormFactor.Custom
5759p18.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5760p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5761p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5762p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5763p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5764p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5765p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5766b18 = Instance.new("BlockMesh", p18)
5767b18.Name = "Mesh"
5768b18.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
5769p19 = Instance.new("Part", m8)
5770p19.BrickColor = BrickColor.new("Black")
5771p19.Material = Enum.Material.Metal
5772p19.Reflectance = 0.40000000596046
5773p19.Name = "Block"
5774p19.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)
5775p19.CanCollide = false
5776p19.Locked = true
5777p19.FormFactor = Enum.FormFactor.Custom
5778p19.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5779p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5780p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5781p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5782p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5783p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5784p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5785b19 = Instance.new("BlockMesh", p19)
5786b19.Name = "Mesh"
5787b19.Scale = Vector3.new(0.267712682, 0.870066345, 1)
5788p20 = Instance.new("Part", m8)
5789p20.BrickColor = BrickColor.new("Lime green")
5790p20.Material = Enum.Material.Metal
5791p20.Name = "Block"
5792p20.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)
5793p20.CanCollide = false
5794p20.Locked = true
5795p20.FormFactor = Enum.FormFactor.Custom
5796p20.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5797p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5798p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5799p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5800p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5801p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5802p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5803b20 = Instance.new("BlockMesh", p20)
5804b20.Name = "Mesh"
5805b20.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
5806p21 = Instance.new("Part", m8)
5807p21.BrickColor = BrickColor.new("Really black")
5808p21.Material = Enum.Material.Metal
5809p21.Name = "Block"
5810p21.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)
5811p21.CanCollide = false
5812p21.Locked = true
5813p21.FormFactor = Enum.FormFactor.Custom
5814p21.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5815p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5816p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5817p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5818p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5819p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5820p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5821b21 = Instance.new("BlockMesh", p21)
5822b21.Name = "Mesh"
5823b21.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
5824p22 = Instance.new("Part", m8)
5825p22.BrickColor = BrickColor.new("Really black")
5826p22.Material = Enum.Material.Metal
5827p22.Reflectance = 0.40000000596046
5828p22.Name = "Block"
5829p22.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)
5830p22.CanCollide = false
5831p22.Locked = true
5832p22.FormFactor = Enum.FormFactor.Custom
5833p22.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5834p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5835p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5836p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5837p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5838p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5839p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5840b22 = Instance.new("BlockMesh", p22)
5841b22.Name = "Mesh"
5842b22.Scale = Vector3.new(0.267712682, 0.468497276, 1)
5843p23 = Instance.new("Part", m8)
5844p23.BrickColor = BrickColor.new("Lime green")
5845p23.Material = Enum.Material.Marble
5846p23.Name = "Block"
5847p23.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)
5848p23.CanCollide = false
5849p23.Locked = true
5850p23.FormFactor = Enum.FormFactor.Custom
5851p23.Size = Vector3.new(0.220499977, 0.220499977, 0.236122593)
5852p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5853p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5854p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5855p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5856p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5857p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5858b23 = Instance.new("BlockMesh", p23)
5859b23.Name = "Mesh"
5860b23.Scale = Vector3.new(0.803138018, 0.133856371, 1)
5861p24 = Instance.new("Part", m8)
5862p24.BrickColor = BrickColor.new("Really black")
5863p24.Material = Enum.Material.Metal
5864p24.Name = "Block"
5865p24.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)
5866p24.CanCollide = false
5867p24.Locked = true
5868p24.FormFactor = Enum.FormFactor.Custom
5869p24.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5870p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5871p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5872p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5873p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5874p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5875p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5876b24 = Instance.new("BlockMesh", p24)
5877b24.Name = "Mesh"
5878b24.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
5879p25 = Instance.new("Part", m8)
5880p25.BrickColor = BrickColor.new("Lime green")
5881p25.Material = Enum.Material.Marble
5882p25.Name = "Block"
5883p25.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)
5884p25.CanCollide = false
5885p25.Locked = true
5886p25.FormFactor = Enum.FormFactor.Custom
5887p25.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5888p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5889p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5890p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5891p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5892p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5893p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5894b25 = Instance.new("BlockMesh", p25)
5895b25.Name = "Mesh"
5896b25.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
5897p26 = Instance.new("Part", m8)
5898p26.BrickColor = BrickColor.new("Really black")
5899p26.Material = Enum.Material.Metal
5900p26.Reflectance = 0.40000000596046
5901p26.Name = "Block"
5902p26.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)
5903p26.CanCollide = false
5904p26.Locked = true
5905p26.FormFactor = Enum.FormFactor.Custom
5906p26.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
5907p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5908p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5909p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5910p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5911p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5912p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5913b26 = Instance.new("BlockMesh", p26)
5914b26.Name = "Mesh"
5915b26.Scale = Vector3.new(0.267712682, 0.468497276, 1)
5916p27 = Instance.new("Part", m8)
5917p27.BrickColor = BrickColor.new("Lime green")
5918p27.Material = Enum.Material.Metal
5919p27.Name = "Block"
5920p27.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)
5921p27.CanCollide = false
5922p27.Locked = true
5923p27.FormFactor = Enum.FormFactor.Custom
5924p27.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5925p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5926p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5927p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5928p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5929p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5930p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5931b27 = Instance.new("BlockMesh", p27)
5932b27.Name = "Mesh"
5933b27.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
5934p28 = Instance.new("Part", m8)
5935p28.BrickColor = BrickColor.new("Really black")
5936p28.Material = Enum.Material.SmoothPlastic
5937p28.Reflectance = 0.0099999997764826
5938p28.Name = "Circle"
5939p28.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)
5940p28.CanCollide = false
5941p28.Locked = true
5942p28.FormFactor = Enum.FormFactor.Custom
5943p28.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5944p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5945p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5946p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5947p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5948p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5949p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5950b28 = Instance.new("CylinderMesh", p28)
5951b28.Name = "Mesh"
5952b28.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
5953p29 = Instance.new("Part", m8)
5954p29.BrickColor = BrickColor.new("Black")
5955p29.Material = Enum.Material.Metal
5956p29.Reflectance = 0.40000000596046
5957p29.Name = "Block"
5958p29.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)
5959p29.CanCollide = false
5960p29.Locked = true
5961p29.FormFactor = Enum.FormFactor.Custom
5962p29.Size = Vector3.new(0.220499977, 0.220499977, 0.31728977)
5963p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5964p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5965p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5966p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5967p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5968p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5969b29 = Instance.new("BlockMesh", p29)
5970b29.Name = "Mesh"
5971b29.Scale = Vector3.new(0.267712682, 0.803138077, 1)
5972p30 = Instance.new("Part", m8)
5973p30.BrickColor = BrickColor.new("Lime green")
5974p30.Material = Enum.Material.Metal
5975p30.Name = "Block"
5976p30.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)
5977p30.CanCollide = false
5978p30.Locked = true
5979p30.FormFactor = Enum.FormFactor.Custom
5980p30.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
5981p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5982p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5983p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5984p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5985p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5986p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5987b30 = Instance.new("BlockMesh", p30)
5988b30.Name = "Mesh"
5989b30.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
5990p31 = Instance.new("Part", m8)
5991p31.BrickColor = BrickColor.new("Lime green")
5992p31.Material = Enum.Material.Neon
5993p31.Reflectance = 0.40000000596046
5994p31.Name = "Block"
5995p31.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)
5996p31.CanCollide = false
5997p31.Locked = true
5998p31.FormFactor = Enum.FormFactor.Custom
5999p31.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6000p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6001p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6002p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6003p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6004p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6005p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6006b31 = Instance.new("BlockMesh", p31)
6007b31.Name = "Mesh"
6008b31.Scale = Vector3.new(0.334640861, 0.133856371, 0.870066345)
6009p32 = Instance.new("Part", m8)
6010p32.BrickColor = BrickColor.new("Lime green")
6011p32.Material = Enum.Material.Metal
6012p32.Name = "Block"
6013p32.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)
6014p32.CanCollide = false
6015p32.Locked = true
6016p32.FormFactor = Enum.FormFactor.Custom
6017p32.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6018p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6019p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6020p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6021p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6022p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6023p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6024b32 = Instance.new("BlockMesh", p32)
6025b32.Name = "Mesh"
6026b32.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6027p33 = Instance.new("Part", m8)
6028p33.BrickColor = BrickColor.new("Really black")
6029p33.Material = Enum.Material.Metal
6030p33.Reflectance = 0.40000000596046
6031p33.Name = "Block"
6032p33.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)
6033p33.CanCollide = false
6034p33.Locked = true
6035p33.FormFactor = Enum.FormFactor.Custom
6036p33.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
6037p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6038p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6039p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6040p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6041p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6042p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6043b33 = Instance.new("BlockMesh", p33)
6044b33.Name = "Mesh"
6045b33.Scale = Vector3.new(0.267712682, 0.468497276, 1)
6046p34 = Instance.new("Part", m8)
6047p34.BrickColor = BrickColor.new("Lime green")
6048p34.Material = Enum.Material.Metal
6049p34.Name = "Block"
6050p34.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)
6051p34.CanCollide = false
6052p34.Locked = true
6053p34.FormFactor = Enum.FormFactor.Custom
6054p34.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6055p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6056p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6057p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6058p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6059p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6060p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6061b34 = Instance.new("BlockMesh", p34)
6062b34.Name = "Mesh"
6063b34.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6064p35 = Instance.new("Part", m8)
6065p35.BrickColor = BrickColor.new("Lime green")
6066p35.Material = Enum.Material.Metal
6067p35.Name = "Block"
6068p35.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)
6069p35.CanCollide = false
6070p35.Locked = true
6071p35.FormFactor = Enum.FormFactor.Custom
6072p35.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6073p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6074p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6075p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6076p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6077p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6078p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6079b35 = Instance.new("BlockMesh", p35)
6080b35.Name = "Mesh"
6081b35.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6082p36 = Instance.new("Part", m8)
6083p36.BrickColor = BrickColor.new("Lime green")
6084p36.Material = Enum.Material.Metal
6085p36.Name = "Block"
6086p36.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)
6087p36.CanCollide = false
6088p36.Locked = true
6089p36.FormFactor = Enum.FormFactor.Custom
6090p36.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6091p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6092p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6093p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6094p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6095p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6096p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6097b36 = Instance.new("BlockMesh", p36)
6098b36.Name = "Mesh"
6099b36.Scale = Vector3.new(0.401568979, 0.200784534, 0.267712682)
6100p37 = Instance.new("Part", m8)
6101p37.BrickColor = BrickColor.new("Lime green")
6102p37.Material = Enum.Material.Marble
6103p37.Name = "Circle"
6104p37.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)
6105p37.CanCollide = false
6106p37.Locked = true
6107p37.FormFactor = Enum.FormFactor.Custom
6108p37.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6109p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6110p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6111p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6112p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6113p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6114p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6115b37 = Instance.new("CylinderMesh", p37)
6116b37.Name = "Mesh"
6117b37.Scale = Vector3.new(0.936994374, 0.133856371, 0.936994612)
6118p38 = Instance.new("Part", m8)
6119p38.BrickColor = BrickColor.new("Really black")
6120p38.Material = Enum.Material.Metal
6121p38.Name = "Block"
6122p38.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)
6123p38.CanCollide = false
6124p38.Locked = true
6125p38.FormFactor = Enum.FormFactor.Custom
6126p38.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6127p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6128p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6129p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6130p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6131p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6132p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6133b38 = Instance.new("BlockMesh", p38)
6134b38.Name = "Mesh"
6135b38.Scale = Vector3.new(0.334640861, 0.133856371, 0.234248638)
6136p39 = Instance.new("Part", m8)
6137p39.BrickColor = BrickColor.new("Really black")
6138p39.Material = Enum.Material.Metal
6139p39.Name = "Block"
6140p39.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)
6141p39.CanCollide = false
6142p39.Locked = true
6143p39.FormFactor = Enum.FormFactor.Custom
6144p39.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6145p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6146p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6147p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6148p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6149p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6150p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6151b39 = Instance.new("BlockMesh", p39)
6152b39.Name = "Mesh"
6153b39.Scale = Vector3.new(0.334640861, 0.133856371, 0.234248638)
6154p40 = Instance.new("Part", m8)
6155p40.BrickColor = BrickColor.new("Really black")
6156p40.Material = Enum.Material.Metal
6157p40.Name = "Block"
6158p40.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)
6159p40.CanCollide = false
6160p40.Locked = true
6161p40.FormFactor = Enum.FormFactor.Custom
6162p40.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6163p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6164p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6165p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6166p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6167p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6168p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6169b40 = Instance.new("BlockMesh", p40)
6170b40.Name = "Mesh"
6171b40.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
6172p41 = Instance.new("Part", m8)
6173p41.BrickColor = BrickColor.new("Lime green")
6174p41.Material = Enum.Material.Neon
6175p41.Reflectance = 0.40000000596046
6176p41.Name = "Block"
6177p41.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)
6178p41.CanCollide = false
6179p41.Locked = true
6180p41.FormFactor = Enum.FormFactor.Custom
6181p41.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6182p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6183p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6184p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6185p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6186p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6187p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6188b41 = Instance.new("BlockMesh", p41)
6189b41.Name = "Mesh"
6190b41.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
6191p42 = Instance.new("Part", m8)
6192p42.BrickColor = BrickColor.new("Earth green")
6193p42.Material = Enum.Material.Metal
6194p42.Name = "Block"
6195p42.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)
6196p42.CanCollide = false
6197p42.Locked = true
6198p42.FormFactor = Enum.FormFactor.Custom
6199p42.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6200p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6201p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6202p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6203p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6204p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6205p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6206b42 = Instance.new("BlockMesh", p42)
6207b42.Name = "Mesh"
6208b42.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
6209p43 = Instance.new("Part", m8)
6210p43.BrickColor = BrickColor.new("Really black")
6211p43.Material = Enum.Material.Metal
6212p43.Name = "Block"
6213p43.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)
6214p43.CanCollide = false
6215p43.Locked = true
6216p43.FormFactor = Enum.FormFactor.Custom
6217p43.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6218p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6219p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6220p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6221p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6222p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6223p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6224b43 = Instance.new("BlockMesh", p43)
6225b43.Name = "Mesh"
6226b43.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
6227p44 = Instance.new("Part", m8)
6228p44.BrickColor = BrickColor.new("Lime green")
6229p44.Material = Enum.Material.Marble
6230p44.Name = "Circle"
6231p44.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)
6232p44.CanCollide = false
6233p44.Locked = true
6234p44.FormFactor = Enum.FormFactor.Custom
6235p44.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6236p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6237p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6238p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6239p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6240p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6241p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6242b44 = Instance.new("CylinderMesh", p44)
6243b44.Name = "Mesh"
6244b44.Scale = Vector3.new(0.803138018, 0.133856371, 0.803138137)
6245p45 = Instance.new("Part", m8)
6246p45.BrickColor = BrickColor.new("Lime green")
6247p45.Material = Enum.Material.Neon
6248p45.Reflectance = 0.40000000596046
6249p45.Name = "Block"
6250p45.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)
6251p45.CanCollide = false
6252p45.Locked = true
6253p45.FormFactor = Enum.FormFactor.Custom
6254p45.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6255p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6256p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6257p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6258p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6259p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6260p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6261b45 = Instance.new("BlockMesh", p45)
6262b45.Name = "Mesh"
6263b45.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
6264p46 = Instance.new("Part", m8)
6265p46.BrickColor = BrickColor.new("Black")
6266p46.Material = Enum.Material.Metal
6267p46.Name = "Block"
6268p46.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)
6269p46.CanCollide = false
6270p46.Locked = true
6271p46.FormFactor = Enum.FormFactor.Custom
6272p46.Size = Vector3.new(0.236122593, 0.220499977, 0.354183882)
6273p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6274p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6275p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6276p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6277p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6278p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6279b46 = Instance.new("BlockMesh", p46)
6280b46.Name = "Mesh"
6281b46.Scale = Vector3.new(1, 0.401569068, 1)
6282p47 = Instance.new("Part", m8)
6283p47.BrickColor = BrickColor.new("Earth green")
6284p47.Material = Enum.Material.Metal
6285p47.Name = "Block"
6286p47.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)
6287p47.CanCollide = false
6288p47.Locked = true
6289p47.FormFactor = Enum.FormFactor.Custom
6290p47.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6291p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6292p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6293p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6294p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6295p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6296p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6297b47 = Instance.new("BlockMesh", p47)
6298b47.Name = "Mesh"
6299b47.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
6300p48 = Instance.new("Part", m8)
6301p48.BrickColor = BrickColor.new("Lime green")
6302p48.Material = Enum.Material.Metal
6303p48.Name = "Block"
6304p48.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)
6305p48.CanCollide = false
6306p48.Locked = true
6307p48.FormFactor = Enum.FormFactor.Custom
6308p48.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6309p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6310p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6311p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6312p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6313p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6314p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6315b48 = Instance.new("BlockMesh", p48)
6316b48.Name = "Mesh"
6317b48.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6318p49 = Instance.new("Part", m8)
6319p49.BrickColor = BrickColor.new("Lime green")
6320p49.Material = Enum.Material.Metal
6321p49.Name = "Block"
6322p49.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)
6323p49.CanCollide = false
6324p49.Locked = true
6325p49.FormFactor = Enum.FormFactor.Custom
6326p49.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6327p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6328p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6329p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6330p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6331p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6332p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6333b49 = Instance.new("BlockMesh", p49)
6334b49.Name = "Mesh"
6335b49.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6336p50 = Instance.new("Part", m8)
6337p50.BrickColor = BrickColor.new("Black")
6338p50.Material = Enum.Material.Metal
6339p50.Reflectance = 0.40000000596046
6340p50.Name = "Block"
6341p50.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)
6342p50.CanCollide = false
6343p50.Locked = true
6344p50.FormFactor = Enum.FormFactor.Custom
6345p50.Size = Vector3.new(0.220499977, 0.220499977, 0.287774384)
6346p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6347p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6348p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6349p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6350p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6351p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6352b50 = Instance.new("BlockMesh", p50)
6353b50.Name = "Mesh"
6354b50.Scale = Vector3.new(0.267712682, 0.936994493, 1)
6355p51 = Instance.new("Part", m8)
6356p51.BrickColor = BrickColor.new("Lime green")
6357p51.Material = Enum.Material.Metal
6358p51.Name = "Block"
6359p51.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)
6360p51.CanCollide = false
6361p51.Locked = true
6362p51.FormFactor = Enum.FormFactor.Custom
6363p51.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6364p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6365p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6366p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6367p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6368p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6369p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6370b51 = Instance.new("BlockMesh", p51)
6371b51.Name = "Mesh"
6372b51.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6373p52 = Instance.new("Part", m8)
6374p52.BrickColor = BrickColor.new("Lime green")
6375p52.Material = Enum.Material.Metal
6376p52.Name = "Block"
6377p52.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)
6378p52.CanCollide = false
6379p52.Locked = true
6380p52.FormFactor = Enum.FormFactor.Custom
6381p52.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6382p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6383p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6384p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6385p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6386p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6387p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6388b52 = Instance.new("BlockMesh", p52)
6389b52.Name = "Mesh"
6390b52.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6391p53 = Instance.new("Part", m8)
6392p53.BrickColor = BrickColor.new("Really black")
6393p53.Material = Enum.Material.Metal
6394p53.Name = "Block"
6395p53.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)
6396p53.CanCollide = false
6397p53.Locked = true
6398p53.FormFactor = Enum.FormFactor.Custom
6399p53.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6400p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6401p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6402p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6403p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6404p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6405p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6406b53 = Instance.new("BlockMesh", p53)
6407b53.Name = "Mesh"
6408b53.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
6409p54 = Instance.new("Part", m8)
6410p54.BrickColor = BrickColor.new("Really black")
6411p54.Material = Enum.Material.SmoothPlastic
6412p54.Reflectance = 0.0099999997764826
6413p54.Name = "Circle"
6414p54.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)
6415p54.CanCollide = false
6416p54.Locked = true
6417p54.FormFactor = Enum.FormFactor.Custom
6418p54.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6419p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6420p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6421p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6422p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6423p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6424p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6425b54 = Instance.new("CylinderMesh", p54)
6426b54.Name = "Mesh"
6427b54.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
6428p55 = Instance.new("Part", m8)
6429p55.BrickColor = BrickColor.new("Really black")
6430p55.Material = Enum.Material.Metal
6431p55.Reflectance = 0.40000000596046
6432p55.Name = "Block"
6433p55.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)
6434p55.CanCollide = false
6435p55.Locked = true
6436p55.FormFactor = Enum.FormFactor.Custom
6437p55.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
6438p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6439p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6440p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6441p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6442p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6443p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6444b55 = Instance.new("BlockMesh", p55)
6445b55.Name = "Mesh"
6446b55.Scale = Vector3.new(0.267712682, 0.468497276, 1)
6447p56 = Instance.new("Part", m8)
6448p56.BrickColor = BrickColor.new("Black")
6449p56.Material = Enum.Material.Metal
6450p56.Reflectance = 0.40000000596046
6451p56.Name = "Block"
6452p56.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)
6453p56.CanCollide = false
6454p56.Locked = true
6455p56.FormFactor = Enum.FormFactor.Custom
6456p56.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
6457p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6458p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6459p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6460p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6461p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6462p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6463b56 = Instance.new("BlockMesh", p56)
6464b56.Name = "Mesh"
6465b56.Scale = Vector3.new(0.267712682, 0.870066345, 1)
6466p57 = Instance.new("Part", m8)
6467p57.BrickColor = BrickColor.new("Black")
6468p57.Material = Enum.Material.Metal
6469p57.Reflectance = 0.40000000596046
6470p57.Name = "Block"
6471p57.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)
6472p57.CanCollide = false
6473p57.Locked = true
6474p57.FormFactor = Enum.FormFactor.Custom
6475p57.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
6476p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6477p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6478p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6479p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6480p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6481p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6482b57 = Instance.new("BlockMesh", p57)
6483b57.Name = "Mesh"
6484b57.Scale = Vector3.new(0.267712682, 0.870066345, 1)
6485p58 = Instance.new("Part", m8)
6486p58.BrickColor = BrickColor.new("Lime green")
6487p58.Material = Enum.Material.Marble
6488p58.Name = "Block"
6489p58.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)
6490p58.CanCollide = false
6491p58.Locked = true
6492p58.FormFactor = Enum.FormFactor.Custom
6493p58.Size = Vector3.new(0.220499977, 0.220499977, 0.236122593)
6494p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6495p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6496p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6497p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6498p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6499p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6500b58 = Instance.new("BlockMesh", p58)
6501b58.Name = "Mesh"
6502b58.Scale = Vector3.new(0.936994374, 0.133856371, 1)
6503p59 = Instance.new("Part", m8)
6504p59.BrickColor = BrickColor.new("Lime green")
6505p59.Material = Enum.Material.Metal
6506p59.Name = "Block"
6507p59.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)
6508p59.CanCollide = false
6509p59.Locked = true
6510p59.FormFactor = Enum.FormFactor.Custom
6511p59.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6512p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6513p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6514p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6515p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6516p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6517p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6518b59 = Instance.new("BlockMesh", p59)
6519b59.Name = "Mesh"
6520b59.Scale = Vector3.new(0.602353573, 0.200784534, 0.468497276)
6521p60 = Instance.new("Part", m8)
6522p60.BrickColor = BrickColor.new("Lime green")
6523p60.Material = Enum.Material.Marble
6524p60.Name = "Circle"
6525p60.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)
6526p60.CanCollide = false
6527p60.Locked = true
6528p60.FormFactor = Enum.FormFactor.Custom
6529p60.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6530p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6531p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6532p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6533p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6534p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6535p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6536b60 = Instance.new("CylinderMesh", p60)
6537b60.Name = "Mesh"
6538b60.Scale = Vector3.new(0.936994374, 0.133856371, 0.936994612)
6539p61 = Instance.new("Part", m8)
6540p61.BrickColor = BrickColor.new("Black")
6541p61.Material = Enum.Material.Metal
6542p61.Name = "Circle"
6543p61.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)
6544p61.CanCollide = false
6545p61.Locked = true
6546p61.FormFactor = Enum.FormFactor.Custom
6547p61.Size = Vector3.new(0.236122593, 0.220499977, 0.265637904)
6548p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6549p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6550p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6551p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6552p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6553p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6554b61 = Instance.new("CylinderMesh", p61)
6555b61.Name = "Mesh"
6556b61.Scale = Vector3.new(1, 0.401569068, 1)
6557p62 = Instance.new("Part", m8)
6558p62.BrickColor = BrickColor.new("Lime green")
6559p62.Material = Enum.Material.Metal
6560p62.Name = "Block"
6561p62.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)
6562p62.CanCollide = false
6563p62.Locked = true
6564p62.FormFactor = Enum.FormFactor.Custom
6565p62.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6566p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6567p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6568p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6569p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6570p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6571p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6572b62 = Instance.new("BlockMesh", p62)
6573b62.Name = "Mesh"
6574b62.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6575p63 = Instance.new("Part", m8)
6576p63.BrickColor = BrickColor.new("Lime green")
6577p63.Material = Enum.Material.Metal
6578p63.Name = "Block"
6579p63.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)
6580p63.CanCollide = false
6581p63.Locked = true
6582p63.FormFactor = Enum.FormFactor.Custom
6583p63.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6584p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6585p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6586p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6587p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6588p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6589p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6590b63 = Instance.new("BlockMesh", p63)
6591b63.Name = "Mesh"
6592b63.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6593p64 = Instance.new("Part", m8)
6594p64.BrickColor = BrickColor.new("Really black")
6595p64.Material = Enum.Material.SmoothPlastic
6596p64.Reflectance = 0.0099999997764826
6597p64.Name = "Block"
6598p64.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)
6599p64.CanCollide = false
6600p64.Locked = true
6601p64.FormFactor = Enum.FormFactor.Custom
6602p64.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6603p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6604p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6605p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6606p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6607p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6608p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6609b64 = Instance.new("BlockMesh", p64)
6610b64.Name = "Mesh"
6611b64.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
6612p65 = Instance.new("Part", m8)
6613p65.BrickColor = BrickColor.new("Lime green")
6614p65.Material = Enum.Material.Metal
6615p65.Name = "Block"
6616p65.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)
6617p65.CanCollide = false
6618p65.Locked = true
6619p65.FormFactor = Enum.FormFactor.Custom
6620p65.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6621p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6622p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6623p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6624p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6625p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6626p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6627b65 = Instance.new("BlockMesh", p65)
6628b65.Name = "Mesh"
6629b65.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6630p66 = Instance.new("Part", m8)
6631p66.BrickColor = BrickColor.new("Really black")
6632p66.Material = Enum.Material.Metal
6633p66.Reflectance = 0.40000000596046
6634p66.Name = "Block"
6635p66.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)
6636p66.CanCollide = false
6637p66.Locked = true
6638p66.FormFactor = Enum.FormFactor.Custom
6639p66.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
6640p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6641p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6642p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6643p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6644p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6645p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6646b66 = Instance.new("BlockMesh", p66)
6647b66.Name = "Mesh"
6648b66.Scale = Vector3.new(0.267712682, 0.468497276, 1)
6649p67 = Instance.new("Part", m8)
6650p67.BrickColor = BrickColor.new("Lime green")
6651p67.Material = Enum.Material.Metal
6652p67.Name = "Block"
6653p67.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)
6654p67.CanCollide = false
6655p67.Locked = true
6656p67.FormFactor = Enum.FormFactor.Custom
6657p67.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6658p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6659p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6660p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6661p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6662p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6663p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6664b67 = Instance.new("BlockMesh", p67)
6665b67.Name = "Mesh"
6666b67.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
6667p68 = Instance.new("Part", m8)
6668p68.BrickColor = BrickColor.new("Black")
6669p68.Material = Enum.Material.Metal
6670p68.Reflectance = 0.40000000596046
6671p68.Name = "Block"
6672p68.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)
6673p68.CanCollide = false
6674p68.Locked = true
6675p68.FormFactor = Enum.FormFactor.Custom
6676p68.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
6677p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6678p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6679p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6680p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6681p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6682p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6683b68 = Instance.new("BlockMesh", p68)
6684b68.Name = "Mesh"
6685b68.Scale = Vector3.new(0.267712682, 0.870066345, 1)
6686p69 = Instance.new("Part", m8)
6687p69.BrickColor = BrickColor.new("Earth green")
6688p69.Material = Enum.Material.Metal
6689p69.Name = "Block"
6690p69.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)
6691p69.CanCollide = false
6692p69.Locked = true
6693p69.FormFactor = Enum.FormFactor.Custom
6694p69.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6695p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6696p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6697p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6698p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6699p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6700p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6701b69 = Instance.new("BlockMesh", p69)
6702b69.Name = "Mesh"
6703b69.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
6704p70 = Instance.new("Part", m8)
6705p70.BrickColor = BrickColor.new("Lime green")
6706p70.Material = Enum.Material.Marble
6707p70.Name = "Circle"
6708p70.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)
6709p70.CanCollide = false
6710p70.Locked = true
6711p70.FormFactor = Enum.FormFactor.Custom
6712p70.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6713p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6714p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6715p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6716p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6717p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6718p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6719b70 = Instance.new("CylinderMesh", p70)
6720b70.Name = "Mesh"
6721b70.Scale = Vector3.new(0.803138018, 0.133856371, 0.803138137)
6722p71 = Instance.new("WedgePart", m8)
6723p71.BrickColor = BrickColor.new("Lime green")
6724p71.Material = Enum.Material.Neon
6725p71.Reflectance = 0.40000000596046
6726p71.Name = "Wedge"
6727p71.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)
6728p71.CanCollide = false
6729p71.Locked = true
6730p71.FormFactor = Enum.FormFactor.Custom
6731p71.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6732p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6733p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6734p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6735p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6736p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6737p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6738b71 = Instance.new("SpecialMesh", p71)
6739b71.MeshType = Enum.MeshType.Wedge
6740b71.Name = "Mesh"
6741b71.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
6742p72 = Instance.new("WedgePart", m8)
6743p72.BrickColor = BrickColor.new("Lime green")
6744p72.Material = Enum.Material.Neon
6745p72.Reflectance = 0.40000000596046
6746p72.Name = "Wedge"
6747p72.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)
6748p72.CanCollide = false
6749p72.Locked = true
6750p72.FormFactor = Enum.FormFactor.Custom
6751p72.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6752p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6753p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6754p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6755p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6756p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6757p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6758b72 = Instance.new("SpecialMesh", p72)
6759b72.MeshType = Enum.MeshType.Wedge
6760b72.Name = "Mesh"
6761b72.Scale = Vector3.new(0.334640861, 0.267712742, 0.334640861)
6762p73 = Instance.new("WedgePart", m8)
6763p73.BrickColor = BrickColor.new("Lime green")
6764p73.Material = Enum.Material.Neon
6765p73.Reflectance = 0.40000000596046
6766p73.Name = "Wedge"
6767p73.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)
6768p73.CanCollide = false
6769p73.Locked = true
6770p73.FormFactor = Enum.FormFactor.Custom
6771p73.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6772p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6773p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6774p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6775p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6776p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6777p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6778b73 = Instance.new("SpecialMesh", p73)
6779b73.MeshType = Enum.MeshType.Wedge
6780b73.Name = "Mesh"
6781b73.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
6782p74 = Instance.new("WedgePart", m8)
6783p74.BrickColor = BrickColor.new("Lime green")
6784p74.Material = Enum.Material.Neon
6785p74.Reflectance = 0.40000000596046
6786p74.Name = "Wedge"
6787p74.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)
6788p74.CanCollide = false
6789p74.Locked = true
6790p74.FormFactor = Enum.FormFactor.Custom
6791p74.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6792p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6793p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6794p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6795p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6796p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6797p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6798b74 = Instance.new("SpecialMesh", p74)
6799b74.MeshType = Enum.MeshType.Wedge
6800b74.Name = "Mesh"
6801b74.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
6802p75 = Instance.new("WedgePart", m8)
6803p75.BrickColor = BrickColor.new("Lime green")
6804p75.Material = Enum.Material.Neon
6805p75.Reflectance = 0.40000000596046
6806p75.Name = "Wedge"
6807p75.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)
6808p75.CanCollide = false
6809p75.Locked = true
6810p75.FormFactor = Enum.FormFactor.Custom
6811p75.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6812p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6813p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6814p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6815p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6816p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6817p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6818b75 = Instance.new("SpecialMesh", p75)
6819b75.MeshType = Enum.MeshType.Wedge
6820b75.Name = "Mesh"
6821b75.Scale = Vector3.new(0.334640861, 0.267712742, 0.200784534)
6822p76 = Instance.new("WedgePart", m8)
6823p76.BrickColor = BrickColor.new("Lime green")
6824p76.Material = Enum.Material.Neon
6825p76.Reflectance = 0.40000000596046
6826p76.Name = "Wedge"
6827p76.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)
6828p76.CanCollide = false
6829p76.Locked = true
6830p76.FormFactor = Enum.FormFactor.Custom
6831p76.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6832p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6833p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6834p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6835p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6836p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6837p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6838b76 = Instance.new("SpecialMesh", p76)
6839b76.MeshType = Enum.MeshType.Wedge
6840b76.Name = "Mesh"
6841b76.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
6842p77 = Instance.new("WedgePart", m8)
6843p77.BrickColor = BrickColor.new("Lime green")
6844p77.Material = Enum.Material.Neon
6845p77.Reflectance = 0.40000000596046
6846p77.Name = "Wedge"
6847p77.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)
6848p77.CanCollide = false
6849p77.Locked = true
6850p77.FormFactor = Enum.FormFactor.Custom
6851p77.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6852p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6853p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6854p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6855p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6856p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6857p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6858b77 = Instance.new("SpecialMesh", p77)
6859b77.MeshType = Enum.MeshType.Wedge
6860b77.Name = "Mesh"
6861b77.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
6862p78 = Instance.new("WedgePart", m8)
6863p78.BrickColor = BrickColor.new("Lime green")
6864p78.Material = Enum.Material.Neon
6865p78.Reflectance = 0.40000000596046
6866p78.Name = "Wedge"
6867p78.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)
6868p78.CanCollide = false
6869p78.Locked = true
6870p78.FormFactor = Enum.FormFactor.Custom
6871p78.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6872p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6873p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6874p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6875p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6876p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6877p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6878b78 = Instance.new("SpecialMesh", p78)
6879b78.MeshType = Enum.MeshType.Wedge
6880b78.Name = "Mesh"
6881b78.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
6882p79 = Instance.new("WedgePart", m8)
6883p79.BrickColor = BrickColor.new("Lime green")
6884p79.Material = Enum.Material.Neon
6885p79.Reflectance = 0.40000000596046
6886p79.Name = "Wedge"
6887p79.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)
6888p79.CanCollide = false
6889p79.Locked = true
6890p79.FormFactor = Enum.FormFactor.Custom
6891p79.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6892p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6893p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6894p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6895p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6896p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6897p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6898b79 = Instance.new("SpecialMesh", p79)
6899b79.MeshType = Enum.MeshType.Wedge
6900b79.Name = "Mesh"
6901b79.Scale = Vector3.new(0.334640861, 0.535425484, 0.401569068)
6902p80 = Instance.new("WedgePart", m8)
6903p80.BrickColor = BrickColor.new("Black")
6904p80.Material = Enum.Material.Metal
6905p80.Reflectance = 0.40000000596046
6906p80.Name = "Wedge"
6907p80.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)
6908p80.CanCollide = false
6909p80.Locked = true
6910p80.FormFactor = Enum.FormFactor.Custom
6911p80.Size = Vector3.new(0.220499977, 0.324668586, 0.220499977)
6912p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6913p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6914p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6915p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6916p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6917p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6918b80 = Instance.new("SpecialMesh", p80)
6919b80.MeshType = Enum.MeshType.Wedge
6920b80.Name = "Mesh"
6921b80.Scale = Vector3.new(0.267712682, 1, 0.133856341)
6922p81 = Instance.new("WedgePart", m8)
6923p81.BrickColor = BrickColor.new("Lime green")
6924p81.Material = Enum.Material.Neon
6925p81.Reflectance = 0.40000000596046
6926p81.Name = "Wedge"
6927p81.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)
6928p81.CanCollide = false
6929p81.Locked = true
6930p81.FormFactor = Enum.FormFactor.Custom
6931p81.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6932p81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6933p81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6934p81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6935p81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6936p81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6937p81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6938b81 = Instance.new("SpecialMesh", p81)
6939b81.MeshType = Enum.MeshType.Wedge
6940b81.Name = "Mesh"
6941b81.Scale = Vector3.new(0.334640861, 0.267712742, 0.401569068)
6942p82 = Instance.new("WedgePart", m8)
6943p82.BrickColor = BrickColor.new("Really black")
6944p82.Material = Enum.Material.Metal
6945p82.Reflectance = 0.40000000596046
6946p82.Name = "Wedge"
6947p82.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)
6948p82.CanCollide = false
6949p82.Locked = true
6950p82.FormFactor = Enum.FormFactor.Custom
6951p82.Size = Vector3.new(0.220499977, 0.314338177, 0.220499977)
6952p82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6953p82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6954p82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6955p82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6956p82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6957p82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6958b82 = Instance.new("SpecialMesh", p82)
6959b82.MeshType = Enum.MeshType.Wedge
6960b82.Name = "Mesh"
6961b82.Scale = Vector3.new(0.261019886, 1, 0.307869673)
6962p83 = Instance.new("WedgePart", m8)
6963p83.BrickColor = BrickColor.new("Really black")
6964p83.Material = Enum.Material.Metal
6965p83.Reflectance = 0.40000000596046
6966p83.Name = "Wedge"
6967p83.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)
6968p83.CanCollide = false
6969p83.Locked = true
6970p83.FormFactor = Enum.FormFactor.Custom
6971p83.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6972p83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6973p83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6974p83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6975p83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6976p83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6977p83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6978b83 = Instance.new("SpecialMesh", p83)
6979b83.MeshType = Enum.MeshType.Wedge
6980b83.Name = "Mesh"
6981b83.Scale = Vector3.new(0.261019886, 0.337987304, 0.204131007)
6982p84 = Instance.new("WedgePart", m8)
6983p84.BrickColor = BrickColor.new("Lime green")
6984p84.Material = Enum.Material.Neon
6985p84.Reflectance = 0.40000000596046
6986p84.Name = "Wedge"
6987p84.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)
6988p84.CanCollide = false
6989p84.Locked = true
6990p84.FormFactor = Enum.FormFactor.Custom
6991p84.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
6992p84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6993p84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6994p84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6995p84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6996p84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6997p84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6998b84 = Instance.new("SpecialMesh", p84)
6999b84.MeshType = Enum.MeshType.Wedge
7000b84.Name = "Mesh"
7001b84.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
7002p85 = Instance.new("WedgePart", m8)
7003p85.BrickColor = BrickColor.new("Black")
7004p85.Material = Enum.Material.Metal
7005p85.Reflectance = 0.40000000596046
7006p85.Name = "Wedge"
7007p85.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)
7008p85.CanCollide = false
7009p85.Locked = true
7010p85.FormFactor = Enum.FormFactor.Custom
7011p85.Size = Vector3.new(0.220499977, 0.324668586, 0.220499977)
7012p85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7013p85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7014p85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7015p85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7016p85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7017p85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7018b85 = Instance.new("SpecialMesh", p85)
7019b85.MeshType = Enum.MeshType.Wedge
7020b85.Name = "Mesh"
7021b85.Scale = Vector3.new(0.267712682, 1, 0.264366329)
7022p86 = Instance.new("WedgePart", m8)
7023p86.BrickColor = BrickColor.new("Lime green")
7024p86.Material = Enum.Material.Neon
7025p86.Reflectance = 0.40000000596046
7026p86.Name = "Wedge"
7027p86.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)
7028p86.CanCollide = false
7029p86.Locked = true
7030p86.FormFactor = Enum.FormFactor.Custom
7031p86.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7032p86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7033p86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7034p86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7035p86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7036p86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7037p86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7038b86 = Instance.new("SpecialMesh", p86)
7039b86.MeshType = Enum.MeshType.Wedge
7040b86.Name = "Mesh"
7041b86.Scale = Vector3.new(0.334640861, 0.602353632, 0.133856341)
7042p87 = Instance.new("WedgePart", m8)
7043p87.BrickColor = BrickColor.new("Lime green")
7044p87.Material = Enum.Material.Neon
7045p87.Reflectance = 0.40000000596046
7046p87.Name = "Wedge"
7047p87.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)
7048p87.CanCollide = false
7049p87.Locked = true
7050p87.FormFactor = Enum.FormFactor.Custom
7051p87.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7052p87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7053p87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7054p87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7055p87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7056p87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7057p87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7058b87 = Instance.new("SpecialMesh", p87)
7059b87.MeshType = Enum.MeshType.Wedge
7060b87.Name = "Mesh"
7061b87.Scale = Vector3.new(0.334640861, 0.267712742, 0.334640861)
7062p88 = Instance.new("WedgePart", m8)
7063p88.BrickColor = BrickColor.new("Lime green")
7064p88.Material = Enum.Material.Neon
7065p88.Reflectance = 0.40000000596046
7066p88.Name = "Wedge"
7067p88.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)
7068p88.CanCollide = false
7069p88.Locked = true
7070p88.FormFactor = Enum.FormFactor.Custom
7071p88.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7072p88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7073p88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7074p88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7075p88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7076p88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7077p88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7078b88 = Instance.new("SpecialMesh", p88)
7079b88.MeshType = Enum.MeshType.Wedge
7080b88.Name = "Mesh"
7081b88.Scale = Vector3.new(0.334640861, 0.602353632, 0.267712682)
7082p89 = Instance.new("WedgePart", m8)
7083p89.BrickColor = BrickColor.new("Lime green")
7084p89.Material = Enum.Material.Neon
7085p89.Reflectance = 0.40000000596046
7086p89.Name = "Wedge"
7087p89.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)
7088p89.CanCollide = false
7089p89.Locked = true
7090p89.FormFactor = Enum.FormFactor.Custom
7091p89.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7092p89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7093p89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7094p89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7095p89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7096p89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7097p89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7098b89 = Instance.new("SpecialMesh", p89)
7099b89.MeshType = Enum.MeshType.Wedge
7100b89.Name = "Mesh"
7101b89.Scale = Vector3.new(0.334640861, 0.803138077, 0.133856341)
7102p90 = Instance.new("WedgePart", m8)
7103p90.BrickColor = BrickColor.new("Lime green")
7104p90.Material = Enum.Material.Neon
7105p90.Reflectance = 0.40000000596046
7106p90.Name = "Wedge"
7107p90.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)
7108p90.CanCollide = false
7109p90.Locked = true
7110p90.FormFactor = Enum.FormFactor.Custom
7111p90.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7112p90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7113p90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7114p90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7115p90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7116p90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7117p90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7118b90 = Instance.new("SpecialMesh", p90)
7119b90.MeshType = Enum.MeshType.Wedge
7120b90.Name = "Mesh"
7121b90.Scale = Vector3.new(0.334640861, 0.267712742, 0.401569068)
7122p91 = Instance.new("WedgePart", m8)
7123p91.BrickColor = BrickColor.new("Really black")
7124p91.Material = Enum.Material.Metal
7125p91.Reflectance = 0.40000000596046
7126p91.Name = "Wedge"
7127p91.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)
7128p91.CanCollide = false
7129p91.Locked = true
7130p91.FormFactor = Enum.FormFactor.Custom
7131p91.Size = Vector3.new(0.220499977, 0.401408434, 0.220499977)
7132p91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7133p91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7134p91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7135p91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7136p91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7137p91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7138b91 = Instance.new("SpecialMesh", p91)
7139b91.MeshType = Enum.MeshType.Wedge
7140b91.Name = "Mesh"
7141b91.Scale = Vector3.new(0.267712682, 1, 0.200784534)
7142p92 = Instance.new("WedgePart", m8)
7143p92.BrickColor = BrickColor.new("Lime green")
7144p92.Material = Enum.Material.Neon
7145p92.Reflectance = 0.40000000596046
7146p92.Name = "Wedge"
7147p92.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)
7148p92.CanCollide = false
7149p92.Locked = true
7150p92.FormFactor = Enum.FormFactor.Custom
7151p92.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7152p92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7153p92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7154p92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7155p92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7156p92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7157p92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7158b92 = Instance.new("SpecialMesh", p92)
7159b92.MeshType = Enum.MeshType.Wedge
7160b92.Name = "Mesh"
7161b92.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
7162p93 = Instance.new("WedgePart", m8)
7163p93.BrickColor = BrickColor.new("Lime green")
7164p93.Material = Enum.Material.Neon
7165p93.Reflectance = 0.40000000596046
7166p93.Name = "Wedge"
7167p93.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)
7168p93.CanCollide = false
7169p93.Locked = true
7170p93.FormFactor = Enum.FormFactor.Custom
7171p93.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7172p93.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7173p93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7174p93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7175p93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7176p93.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7177p93.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7178b93 = Instance.new("SpecialMesh", p93)
7179b93.MeshType = Enum.MeshType.Wedge
7180b93.Name = "Mesh"
7181b93.Scale = Vector3.new(0.334640861, 0.870066345, 0.133856341)
7182p94 = Instance.new("WedgePart", m8)
7183p94.BrickColor = BrickColor.new("Lime green")
7184p94.Material = Enum.Material.Neon
7185p94.Reflectance = 0.40000000596046
7186p94.Name = "Wedge"
7187p94.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)
7188p94.CanCollide = false
7189p94.Locked = true
7190p94.FormFactor = Enum.FormFactor.Custom
7191p94.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7192p94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7193p94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7194p94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7195p94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7196p94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7197p94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7198b94 = Instance.new("SpecialMesh", p94)
7199b94.MeshType = Enum.MeshType.Wedge
7200b94.Name = "Mesh"
7201b94.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
7202p95 = Instance.new("WedgePart", m8)
7203p95.BrickColor = BrickColor.new("Black")
7204p95.Material = Enum.Material.Metal
7205p95.Reflectance = 0.40000000596046
7206p95.Name = "Wedge"
7207p95.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)
7208p95.CanCollide = false
7209p95.Locked = true
7210p95.FormFactor = Enum.FormFactor.Custom
7211p95.Size = Vector3.new(0.220499977, 0.391078025, 0.222102806)
7212p95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7213p95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7214p95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7215p95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7216p95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7217p95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7218b95 = Instance.new("SpecialMesh", p95)
7219b95.MeshType = Enum.MeshType.Wedge
7220b95.Name = "Mesh"
7221b95.Scale = Vector3.new(0.261019886, 1, 1)
7222p96 = Instance.new("WedgePart", m8)
7223p96.BrickColor = BrickColor.new("Lime green")
7224p96.Material = Enum.Material.Neon
7225p96.Reflectance = 0.40000000596046
7226p96.Name = "Wedge"
7227p96.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)
7228p96.CanCollide = false
7229p96.Locked = true
7230p96.FormFactor = Enum.FormFactor.Custom
7231p96.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7232p96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7233p96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7234p96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7235p96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7236p96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7237p96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7238b96 = Instance.new("SpecialMesh", p96)
7239b96.MeshType = Enum.MeshType.Wedge
7240b96.Name = "Mesh"
7241b96.Scale = Vector3.new(0.334640861, 0.736209989, 0.133856341)
7242p97 = Instance.new("WedgePart", m8)
7243p97.BrickColor = BrickColor.new("Lime green")
7244p97.Material = Enum.Material.Neon
7245p97.Reflectance = 0.40000000596046
7246p97.Name = "Wedge"
7247p97.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)
7248p97.CanCollide = false
7249p97.Locked = true
7250p97.FormFactor = Enum.FormFactor.Custom
7251p97.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7252p97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7253p97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7254p97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7255p97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7256p97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7257p97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7258b97 = Instance.new("SpecialMesh", p97)
7259b97.MeshType = Enum.MeshType.Wedge
7260b97.Name = "Mesh"
7261b97.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
7262p98 = Instance.new("WedgePart", m8)
7263p98.BrickColor = BrickColor.new("Lime green")
7264p98.Material = Enum.Material.Neon
7265p98.Reflectance = 0.40000000596046
7266p98.Name = "Wedge"
7267p98.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)
7268p98.CanCollide = false
7269p98.Locked = true
7270p98.FormFactor = Enum.FormFactor.Custom
7271p98.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7272p98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7273p98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7274p98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7275p98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7276p98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7277p98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7278b98 = Instance.new("SpecialMesh", p98)
7279b98.MeshType = Enum.MeshType.Wedge
7280b98.Name = "Mesh"
7281b98.Scale = Vector3.new(0.334640861, 0.669281721, 0.267712682)
7282p99 = Instance.new("WedgePart", m8)
7283p99.BrickColor = BrickColor.new("Lime green")
7284p99.Material = Enum.Material.Neon
7285p99.Reflectance = 0.40000000596046
7286p99.Name = "Wedge"
7287p99.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)
7288p99.CanCollide = false
7289p99.Locked = true
7290p99.FormFactor = Enum.FormFactor.Custom
7291p99.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7292p99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7293p99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7294p99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7295p99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7296p99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7297p99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7298b99 = Instance.new("SpecialMesh", p99)
7299b99.MeshType = Enum.MeshType.Wedge
7300b99.Name = "Mesh"
7301b99.Scale = Vector3.new(0.334640861, 0.803138077, 0.133856341)
7302p100 = Instance.new("WedgePart", m8)
7303p100.BrickColor = BrickColor.new("Lime green")
7304p100.Material = Enum.Material.Neon
7305p100.Reflectance = 0.40000000596046
7306p100.Name = "Wedge"
7307p100.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)
7308p100.CanCollide = false
7309p100.Locked = true
7310p100.FormFactor = Enum.FormFactor.Custom
7311p100.Size = Vector3.new(0.220499977, 0.236122593, 0.220499977)
7312p100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7313p100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7314p100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7315p100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7316p100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7317p100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7318b100 = Instance.new("SpecialMesh", p100)
7319b100.MeshType = Enum.MeshType.Wedge
7320b100.Name = "Mesh"
7321b100.Scale = Vector3.new(0.334640861, 1, 0.133856341)
7322p101 = Instance.new("WedgePart", m8)
7323p101.BrickColor = BrickColor.new("Lime green")
7324p101.Material = Enum.Material.Neon
7325p101.Reflectance = 0.40000000596046
7326p101.Name = "Wedge"
7327p101.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)
7328p101.CanCollide = false
7329p101.Locked = true
7330p101.FormFactor = Enum.FormFactor.Custom
7331p101.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7332p101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7333p101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7334p101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7335p101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7336p101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7337p101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7338b101 = Instance.new("SpecialMesh", p101)
7339b101.MeshType = Enum.MeshType.Wedge
7340b101.Name = "Mesh"
7341b101.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
7342p102 = Instance.new("WedgePart", m8)
7343p102.BrickColor = BrickColor.new("Lime green")
7344p102.Material = Enum.Material.Neon
7345p102.Reflectance = 0.40000000596046
7346p102.Name = "Wedge"
7347p102.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)
7348p102.CanCollide = false
7349p102.Locked = true
7350p102.FormFactor = Enum.FormFactor.Custom
7351p102.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7352p102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7353p102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7354p102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7355p102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7356p102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7357p102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7358b102 = Instance.new("SpecialMesh", p102)
7359b102.MeshType = Enum.MeshType.Wedge
7360b102.Name = "Mesh"
7361b102.Scale = Vector3.new(0.334640861, 0.736209989, 0.334640861)
7362p103 = Instance.new("WedgePart", m8)
7363p103.BrickColor = BrickColor.new("Lime green")
7364p103.Material = Enum.Material.Neon
7365p103.Reflectance = 0.40000000596046
7366p103.Name = "Wedge"
7367p103.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)
7368p103.CanCollide = false
7369p103.Locked = true
7370p103.FormFactor = Enum.FormFactor.Custom
7371p103.Size = Vector3.new(0.220499977, 0.221364915, 0.220499977)
7372p103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7373p103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7374p103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7375p103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7376p103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7377p103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7378b103 = Instance.new("SpecialMesh", p103)
7379b103.MeshType = Enum.MeshType.Wedge
7380b103.Name = "Mesh"
7381b103.Scale = Vector3.new(0.334640861, 1, 0.133856341)
7382p104 = Instance.new("WedgePart", m8)
7383p104.BrickColor = BrickColor.new("Lime green")
7384p104.Material = Enum.Material.Neon
7385p104.Reflectance = 0.40000000596046
7386p104.Name = "Wedge"
7387p104.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)
7388p104.CanCollide = false
7389p104.Locked = true
7390p104.FormFactor = Enum.FormFactor.Custom
7391p104.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7392p104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7393p104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7394p104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7395p104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7396p104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7397p104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7398b104 = Instance.new("SpecialMesh", p104)
7399b104.MeshType = Enum.MeshType.Wedge
7400b104.Name = "Mesh"
7401b104.Scale = Vector3.new(0.334640861, 0.535425484, 0.267712682)
7402p105 = Instance.new("WedgePart", m8)
7403p105.BrickColor = BrickColor.new("Really black")
7404p105.Material = Enum.Material.Metal
7405p105.Reflectance = 0.40000000596046
7406p105.Name = "Wedge"
7407p105.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)
7408p105.CanCollide = false
7409p105.Locked = true
7410p105.FormFactor = Enum.FormFactor.Custom
7411p105.Size = Vector3.new(0.220499977, 0.383699238, 0.220499977)
7412p105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7413p105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7414p105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7415p105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7416p105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7417p105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7418b105 = Instance.new("SpecialMesh", p105)
7419b105.MeshType = Enum.MeshType.Wedge
7420b105.Name = "Mesh"
7421b105.Scale = Vector3.new(0.267712682, 1, 0.468497276)
7422p106 = Instance.new("WedgePart", m8)
7423p106.BrickColor = BrickColor.new("Lime green")
7424p106.Material = Enum.Material.Neon
7425p106.Reflectance = 0.40000000596046
7426p106.Name = "Wedge"
7427p106.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)
7428p106.CanCollide = false
7429p106.Locked = true
7430p106.FormFactor = Enum.FormFactor.Custom
7431p106.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7432p106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7433p106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7434p106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7435p106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7436p106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7437p106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7438b106 = Instance.new("SpecialMesh", p106)
7439b106.MeshType = Enum.MeshType.Wedge
7440b106.Name = "Mesh"
7441b106.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
7442p107 = Instance.new("WedgePart", m8)
7443p107.BrickColor = BrickColor.new("Lime green")
7444p107.Material = Enum.Material.Neon
7445p107.Reflectance = 0.40000000596046
7446p107.Name = "Wedge"
7447p107.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)
7448p107.CanCollide = false
7449p107.Locked = true
7450p107.FormFactor = Enum.FormFactor.Custom
7451p107.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7452p107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7453p107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7454p107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7455p107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7456p107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7457p107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7458b107 = Instance.new("SpecialMesh", p107)
7459b107.MeshType = Enum.MeshType.Wedge
7460b107.Name = "Mesh"
7461b107.Scale = Vector3.new(0.334640861, 0.468497276, 0.133856341)
7462p108 = Instance.new("WedgePart", m8)
7463p108.BrickColor = BrickColor.new("Black")
7464p108.Material = Enum.Material.Metal
7465p108.Reflectance = 0.40000000596046
7466p108.Name = "Wedge"
7467p108.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)
7468p108.CanCollide = false
7469p108.Locked = true
7470p108.FormFactor = Enum.FormFactor.Custom
7471p108.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7472p108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7473p108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7474p108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7475p108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7476p108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7477p108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7478b108 = Instance.new("SpecialMesh", p108)
7479b108.MeshType = Enum.MeshType.Wedge
7480b108.Name = "Mesh"
7481b108.Scale = Vector3.new(0.267712682, 0.669281721, 0.0669281706)
7482p109 = Instance.new("WedgePart", m8)
7483p109.BrickColor = BrickColor.new("Lime green")
7484p109.Material = Enum.Material.Neon
7485p109.Reflectance = 0.40000000596046
7486p109.Name = "Wedge"
7487p109.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)
7488p109.CanCollide = false
7489p109.Locked = true
7490p109.FormFactor = Enum.FormFactor.Custom
7491p109.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7492p109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7493p109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7494p109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7495p109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7496p109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7497p109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7498b109 = Instance.new("SpecialMesh", p109)
7499b109.MeshType = Enum.MeshType.Wedge
7500b109.Name = "Mesh"
7501b109.Scale = Vector3.new(0.334640861, 0.870066345, 0.133856341)
7502p110 = Instance.new("WedgePart", m8)
7503p110.BrickColor = BrickColor.new("Lime green")
7504p110.Material = Enum.Material.Neon
7505p110.Reflectance = 0.40000000596046
7506p110.Name = "Wedge"
7507p110.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)
7508p110.CanCollide = false
7509p110.Locked = true
7510p110.FormFactor = Enum.FormFactor.Custom
7511p110.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
7512p110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7513p110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7514p110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7515p110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7516p110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7517p110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7518b110 = Instance.new("SpecialMesh", p110)
7519b110.MeshType = Enum.MeshType.Wedge
7520b110.Name = "Mesh"
7521b110.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
7522p111 = Instance.new("Part", m8)
7523p111.BrickColor = BrickColor.new("Really black")
7524p111.Material = Enum.Material.Metal
7525p111.Transparency = 1
7526p111.Name = "Hitbox"
7527p111.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)
7528p111.CanCollide = false
7529p111.Locked = true
7530p111.FormFactor = Enum.FormFactor.Custom
7531p111.Size = Vector3.new(0.22, 2.57, 1.22)
7532p111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
7533p111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
7534p111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
7535p111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
7536p111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
7537p111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
7538b111 = Instance.new("BlockMesh", p111)
7539b111.Name = "Mesh"
7540w1 = Instance.new("Weld", p1)
7541w1.Name = "Block_Weld"
7542w1.Part0 = p1
7543w1.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)
7544w1.Part1 = p2
7545w1.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)
7546w2 = Instance.new("Weld", p2)
7547w2.Name = "Block_Weld"
7548w2.Part0 = p2
7549w2.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)
7550w2.Part1 = p3
7551w2.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)
7552w3 = Instance.new("Weld", p3)
7553w3.Name = "Block_Weld"
7554w3.Part0 = p3
7555w3.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)
7556w3.Part1 = p4
7557w3.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)
7558w4 = Instance.new("Weld", p4)
7559w4.Name = "Block_Weld"
7560w4.Part0 = p4
7561w4.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)
7562w4.Part1 = p5
7563w4.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)
7564w5 = Instance.new("Weld", p5)
7565w5.Name = "Block_Weld"
7566w5.Part0 = p5
7567w5.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)
7568w5.Part1 = p6
7569w5.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)
7570w6 = Instance.new("Weld", p6)
7571w6.Name = "Block_Weld"
7572w6.Part0 = p6
7573w6.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)
7574w6.Part1 = p7
7575w6.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)
7576w7 = Instance.new("Weld", p7)
7577w7.Name = "Block_Weld"
7578w7.Part0 = p7
7579w7.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)
7580w7.Part1 = p8
7581w7.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)
7582w8 = Instance.new("Weld", p8)
7583w8.Name = "Block_Weld"
7584w8.Part0 = p8
7585w8.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)
7586w8.Part1 = p9
7587w8.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)
7588w9 = Instance.new("Weld", p9)
7589w9.Name = "Block_Weld"
7590w9.Part0 = p9
7591w9.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)
7592w9.Part1 = p10
7593w9.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)
7594w10 = Instance.new("Weld", p10)
7595w10.Name = "Circle_Weld"
7596w10.Part0 = p10
7597w10.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)
7598w10.Part1 = p11
7599w10.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)
7600w11 = Instance.new("Weld", p11)
7601w11.Name = "Block_Weld"
7602w11.Part0 = p11
7603w11.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)
7604w11.Part1 = p12
7605w11.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)
7606w12 = Instance.new("Weld", p12)
7607w12.Name = "Block_Weld"
7608w12.Part0 = p12
7609w12.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)
7610w12.Part1 = p13
7611w12.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)
7612w13 = Instance.new("Weld", p13)
7613w13.Name = "Block_Weld"
7614w13.Part0 = p13
7615w13.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)
7616w13.Part1 = p14
7617w13.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)
7618w14 = Instance.new("Weld", p14)
7619w14.Name = "Block_Weld"
7620w14.Part0 = p14
7621w14.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)
7622w14.Part1 = p15
7623w14.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)
7624w15 = Instance.new("Weld", p15)
7625w15.Name = "Handle_Weld"
7626w15.Part0 = p15
7627w15.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)
7628w15.Part1 = p16
7629w15.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)
7630w16 = Instance.new("Weld", p16)
7631w16.Name = "Block_Weld"
7632w16.Part0 = p16
7633w16.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)
7634w16.Part1 = p17
7635w16.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)
7636w17 = Instance.new("Weld", p17)
7637w17.Name = "Block_Weld"
7638w17.Part0 = p17
7639w17.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)
7640w17.Part1 = p18
7641w17.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)
7642w18 = Instance.new("Weld", p18)
7643w18.Name = "Block_Weld"
7644w18.Part0 = p18
7645w18.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)
7646w18.Part1 = p19
7647w18.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)
7648w19 = Instance.new("Weld", p19)
7649w19.Name = "Block_Weld"
7650w19.Part0 = p19
7651w19.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)
7652w19.Part1 = p20
7653w19.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)
7654w20 = Instance.new("Weld", p20)
7655w20.Name = "Block_Weld"
7656w20.Part0 = p20
7657w20.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)
7658w20.Part1 = p21
7659w20.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)
7660w21 = Instance.new("Weld", p21)
7661w21.Name = "Block_Weld"
7662w21.Part0 = p21
7663w21.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)
7664w21.Part1 = p22
7665w21.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)
7666w22 = Instance.new("Weld", p22)
7667w22.Name = "Block_Weld"
7668w22.Part0 = p22
7669w22.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)
7670w22.Part1 = p23
7671w22.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)
7672w23 = Instance.new("Weld", p23)
7673w23.Name = "Block_Weld"
7674w23.Part0 = p23
7675w23.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)
7676w23.Part1 = p24
7677w23.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)
7678w24 = Instance.new("Weld", p24)
7679w24.Name = "Block_Weld"
7680w24.Part0 = p24
7681w24.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)
7682w24.Part1 = p25
7683w24.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)
7684w25 = Instance.new("Weld", p25)
7685w25.Name = "Block_Weld"
7686w25.Part0 = p25
7687w25.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)
7688w25.Part1 = p26
7689w25.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)
7690w26 = Instance.new("Weld", p26)
7691w26.Name = "Block_Weld"
7692w26.Part0 = p26
7693w26.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)
7694w26.Part1 = p27
7695w26.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)
7696w27 = Instance.new("Weld", p27)
7697w27.Name = "Circle_Weld"
7698w27.Part0 = p27
7699w27.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)
7700w27.Part1 = p28
7701w27.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)
7702w28 = Instance.new("Weld", p28)
7703w28.Name = "Block_Weld"
7704w28.Part0 = p28
7705w28.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)
7706w28.Part1 = p29
7707w28.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)
7708w29 = Instance.new("Weld", p29)
7709w29.Name = "Block_Weld"
7710w29.Part0 = p29
7711w29.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)
7712w29.Part1 = p30
7713w29.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)
7714w30 = Instance.new("Weld", p30)
7715w30.Name = "Block_Weld"
7716w30.Part0 = p30
7717w30.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)
7718w30.Part1 = p31
7719w30.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)
7720w31 = Instance.new("Weld", p31)
7721w31.Name = "Block_Weld"
7722w31.Part0 = p31
7723w31.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)
7724w31.Part1 = p32
7725w31.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)
7726w32 = Instance.new("Weld", p32)
7727w32.Name = "Block_Weld"
7728w32.Part0 = p32
7729w32.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)
7730w32.Part1 = p33
7731w32.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)
7732w33 = Instance.new("Weld", p33)
7733w33.Name = "Block_Weld"
7734w33.Part0 = p33
7735w33.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)
7736w33.Part1 = p34
7737w33.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)
7738w34 = Instance.new("Weld", p34)
7739w34.Name = "Block_Weld"
7740w34.Part0 = p34
7741w34.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)
7742w34.Part1 = p35
7743w34.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)
7744w35 = Instance.new("Weld", p35)
7745w35.Name = "Block_Weld"
7746w35.Part0 = p35
7747w35.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)
7748w35.Part1 = p36
7749w35.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)
7750w36 = Instance.new("Weld", p36)
7751w36.Name = "Circle_Weld"
7752w36.Part0 = p36
7753w36.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)
7754w36.Part1 = p37
7755w36.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)
7756w37 = Instance.new("Weld", p37)
7757w37.Name = "Block_Weld"
7758w37.Part0 = p37
7759w37.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)
7760w37.Part1 = p38
7761w37.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)
7762w38 = Instance.new("Weld", p38)
7763w38.Name = "Block_Weld"
7764w38.Part0 = p38
7765w38.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)
7766w38.Part1 = p39
7767w38.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)
7768w39 = Instance.new("Weld", p39)
7769w39.Name = "Block_Weld"
7770w39.Part0 = p39
7771w39.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)
7772w39.Part1 = p40
7773w39.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)
7774w40 = Instance.new("Weld", p40)
7775w40.Name = "Block_Weld"
7776w40.Part0 = p40
7777w40.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)
7778w40.Part1 = p41
7779w40.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)
7780w41 = Instance.new("Weld", p41)
7781w41.Name = "Block_Weld"
7782w41.Part0 = p41
7783w41.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)
7784w41.Part1 = p42
7785w41.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)
7786w42 = Instance.new("Weld", p42)
7787w42.Name = "Block_Weld"
7788w42.Part0 = p42
7789w42.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)
7790w42.Part1 = p43
7791w42.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)
7792w43 = Instance.new("Weld", p43)
7793w43.Name = "Circle_Weld"
7794w43.Part0 = p43
7795w43.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)
7796w43.Part1 = p44
7797w43.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)
7798w44 = Instance.new("Weld", p44)
7799w44.Name = "Block_Weld"
7800w44.Part0 = p44
7801w44.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)
7802w44.Part1 = p45
7803w44.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)
7804w45 = Instance.new("Weld", p45)
7805w45.Name = "Block_Weld"
7806w45.Part0 = p45
7807w45.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)
7808w45.Part1 = p46
7809w45.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)
7810w46 = Instance.new("Weld", p46)
7811w46.Name = "Block_Weld"
7812w46.Part0 = p46
7813w46.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)
7814w46.Part1 = p47
7815w46.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)
7816w47 = Instance.new("Weld", p47)
7817w47.Name = "Block_Weld"
7818w47.Part0 = p47
7819w47.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)
7820w47.Part1 = p48
7821w47.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)
7822w48 = Instance.new("Weld", p48)
7823w48.Name = "Block_Weld"
7824w48.Part0 = p48
7825w48.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)
7826w48.Part1 = p49
7827w48.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)
7828w49 = Instance.new("Weld", p49)
7829w49.Name = "Block_Weld"
7830w49.Part0 = p49
7831w49.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)
7832w49.Part1 = p50
7833w49.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)
7834w50 = Instance.new("Weld", p50)
7835w50.Name = "Block_Weld"
7836w50.Part0 = p50
7837w50.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)
7838w50.Part1 = p51
7839w50.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)
7840w51 = Instance.new("Weld", p51)
7841w51.Name = "Block_Weld"
7842w51.Part0 = p51
7843w51.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)
7844w51.Part1 = p52
7845w51.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)
7846w52 = Instance.new("Weld", p52)
7847w52.Name = "Block_Weld"
7848w52.Part0 = p52
7849w52.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)
7850w52.Part1 = p53
7851w52.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)
7852w53 = Instance.new("Weld", p53)
7853w53.Name = "Circle_Weld"
7854w53.Part0 = p53
7855w53.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)
7856w53.Part1 = p54
7857w53.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)
7858w54 = Instance.new("Weld", p54)
7859w54.Name = "Block_Weld"
7860w54.Part0 = p54
7861w54.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)
7862w54.Part1 = p55
7863w54.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)
7864w55 = Instance.new("Weld", p55)
7865w55.Name = "Block_Weld"
7866w55.Part0 = p55
7867w55.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)
7868w55.Part1 = p56
7869w55.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)
7870w56 = Instance.new("Weld", p56)
7871w56.Name = "Block_Weld"
7872w56.Part0 = p56
7873w56.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)
7874w56.Part1 = p57
7875w56.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)
7876w57 = Instance.new("Weld", p57)
7877w57.Name = "Block_Weld"
7878w57.Part0 = p57
7879w57.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)
7880w57.Part1 = p58
7881w57.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)
7882w58 = Instance.new("Weld", p58)
7883w58.Name = "Block_Weld"
7884w58.Part0 = p58
7885w58.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)
7886w58.Part1 = p59
7887w58.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)
7888w59 = Instance.new("Weld", p59)
7889w59.Name = "Circle_Weld"
7890w59.Part0 = p59
7891w59.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)
7892w59.Part1 = p60
7893w59.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)
7894w60 = Instance.new("Weld", p60)
7895w60.Name = "Circle_Weld"
7896w60.Part0 = p60
7897w60.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)
7898w60.Part1 = p61
7899w60.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)
7900w61 = Instance.new("Weld", p61)
7901w61.Name = "Block_Weld"
7902w61.Part0 = p61
7903w61.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)
7904w61.Part1 = p62
7905w61.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)
7906w62 = Instance.new("Weld", p62)
7907w62.Name = "Block_Weld"
7908w62.Part0 = p62
7909w62.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)
7910w62.Part1 = p63
7911w62.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)
7912w63 = Instance.new("Weld", p63)
7913w63.Name = "Block_Weld"
7914w63.Part0 = p63
7915w63.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)
7916w63.Part1 = p64
7917w63.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)
7918w64 = Instance.new("Weld", p64)
7919w64.Name = "Block_Weld"
7920w64.Part0 = p64
7921w64.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)
7922w64.Part1 = p65
7923w64.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)
7924w65 = Instance.new("Weld", p65)
7925w65.Name = "Block_Weld"
7926w65.Part0 = p65
7927w65.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)
7928w65.Part1 = p66
7929w65.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)
7930w66 = Instance.new("Weld", p66)
7931w66.Name = "Block_Weld"
7932w66.Part0 = p66
7933w66.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)
7934w66.Part1 = p67
7935w66.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)
7936w67 = Instance.new("Weld", p67)
7937w67.Name = "Block_Weld"
7938w67.Part0 = p67
7939w67.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)
7940w67.Part1 = p68
7941w67.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)
7942w68 = Instance.new("Weld", p68)
7943w68.Name = "Block_Weld"
7944w68.Part0 = p68
7945w68.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)
7946w68.Part1 = p69
7947w68.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)
7948w69 = Instance.new("Weld", p69)
7949w69.Name = "Circle_Weld"
7950w69.Part0 = p69
7951w69.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)
7952w69.Part1 = p70
7953w69.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)
7954w70 = Instance.new("Weld", p70)
7955w70.Name = "Wedge_Weld"
7956w70.Part0 = p70
7957w70.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)
7958w70.Part1 = p71
7959w70.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)
7960w71 = Instance.new("Weld", p71)
7961w71.Name = "Wedge_Weld"
7962w71.Part0 = p71
7963w71.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)
7964w71.Part1 = p72
7965w71.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)
7966w72 = Instance.new("Weld", p72)
7967w72.Name = "Wedge_Weld"
7968w72.Part0 = p72
7969w72.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)
7970w72.Part1 = p73
7971w72.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)
7972w73 = Instance.new("Weld", p73)
7973w73.Name = "Wedge_Weld"
7974w73.Part0 = p73
7975w73.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)
7976w73.Part1 = p74
7977w73.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)
7978w74 = Instance.new("Weld", p74)
7979w74.Name = "Wedge_Weld"
7980w74.Part0 = p74
7981w74.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)
7982w74.Part1 = p75
7983w74.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)
7984w75 = Instance.new("Weld", p75)
7985w75.Name = "Wedge_Weld"
7986w75.Part0 = p75
7987w75.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)
7988w75.Part1 = p76
7989w75.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)
7990w76 = Instance.new("Weld", p76)
7991w76.Name = "Wedge_Weld"
7992w76.Part0 = p76
7993w76.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)
7994w76.Part1 = p77
7995w76.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)
7996w77 = Instance.new("Weld", p77)
7997w77.Name = "Wedge_Weld"
7998w77.Part0 = p77
7999w77.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)
8000w77.Part1 = p78
8001w77.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)
8002w78 = Instance.new("Weld", p78)
8003w78.Name = "Wedge_Weld"
8004w78.Part0 = p78
8005w78.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)
8006w78.Part1 = p79
8007w78.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)
8008w79 = Instance.new("Weld", p79)
8009w79.Name = "Wedge_Weld"
8010w79.Part0 = p79
8011w79.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)
8012w79.Part1 = p80
8013w79.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)
8014w80 = Instance.new("Weld", p80)
8015w80.Name = "Wedge_Weld"
8016w80.Part0 = p80
8017w80.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)
8018w80.Part1 = p81
8019w80.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)
8020w81 = Instance.new("Weld", p81)
8021w81.Name = "Wedge_Weld"
8022w81.Part0 = p81
8023w81.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)
8024w81.Part1 = p82
8025w81.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)
8026w82 = Instance.new("Weld", p82)
8027w82.Name = "Wedge_Weld"
8028w82.Part0 = p82
8029w82.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)
8030w82.Part1 = p83
8031w82.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)
8032w83 = Instance.new("Weld", p83)
8033w83.Name = "Wedge_Weld"
8034w83.Part0 = p83
8035w83.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)
8036w83.Part1 = p84
8037w83.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)
8038w84 = Instance.new("Weld", p84)
8039w84.Name = "Wedge_Weld"
8040w84.Part0 = p84
8041w84.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)
8042w84.Part1 = p85
8043w84.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)
8044w85 = Instance.new("Weld", p85)
8045w85.Name = "Wedge_Weld"
8046w85.Part0 = p85
8047w85.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)
8048w85.Part1 = p86
8049w85.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)
8050w86 = Instance.new("Weld", p86)
8051w86.Name = "Wedge_Weld"
8052w86.Part0 = p86
8053w86.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)
8054w86.Part1 = p87
8055w86.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)
8056w87 = Instance.new("Weld", p87)
8057w87.Name = "Wedge_Weld"
8058w87.Part0 = p87
8059w87.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)
8060w87.Part1 = p88
8061w87.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)
8062w88 = Instance.new("Weld", p88)
8063w88.Name = "Wedge_Weld"
8064w88.Part0 = p88
8065w88.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)
8066w88.Part1 = p89
8067w88.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)
8068w89 = Instance.new("Weld", p89)
8069w89.Name = "Wedge_Weld"
8070w89.Part0 = p89
8071w89.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)
8072w89.Part1 = p90
8073w89.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)
8074w90 = Instance.new("Weld", p90)
8075w90.Name = "Wedge_Weld"
8076w90.Part0 = p90
8077w90.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)
8078w90.Part1 = p91
8079w90.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)
8080w91 = Instance.new("Weld", p91)
8081w91.Name = "Wedge_Weld"
8082w91.Part0 = p91
8083w91.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)
8084w91.Part1 = p92
8085w91.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)
8086w92 = Instance.new("Weld", p92)
8087w92.Name = "Wedge_Weld"
8088w92.Part0 = p92
8089w92.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)
8090w92.Part1 = p93
8091w92.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)
8092w93 = Instance.new("Weld", p93)
8093w93.Name = "Wedge_Weld"
8094w93.Part0 = p93
8095w93.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)
8096w93.Part1 = p94
8097w93.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)
8098w94 = Instance.new("Weld", p94)
8099w94.Name = "Wedge_Weld"
8100w94.Part0 = p94
8101w94.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)
8102w94.Part1 = p95
8103w94.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)
8104w95 = Instance.new("Weld", p95)
8105w95.Name = "Wedge_Weld"
8106w95.Part0 = p95
8107w95.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)
8108w95.Part1 = p96
8109w95.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)
8110w96 = Instance.new("Weld", p96)
8111w96.Name = "Wedge_Weld"
8112w96.Part0 = p96
8113w96.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)
8114w96.Part1 = p97
8115w96.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)
8116w97 = Instance.new("Weld", p97)
8117w97.Name = "Wedge_Weld"
8118w97.Part0 = p97
8119w97.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)
8120w97.Part1 = p98
8121w97.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)
8122w98 = Instance.new("Weld", p98)
8123w98.Name = "Wedge_Weld"
8124w98.Part0 = p98
8125w98.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)
8126w98.Part1 = p99
8127w98.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)
8128w99 = Instance.new("Weld", p99)
8129w99.Name = "Wedge_Weld"
8130w99.Part0 = p99
8131w99.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)
8132w99.Part1 = p100
8133w99.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)
8134w100 = Instance.new("Weld", p100)
8135w100.Name = "Wedge_Weld"
8136w100.Part0 = p100
8137w100.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)
8138w100.Part1 = p101
8139w100.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)
8140w101 = Instance.new("Weld", p101)
8141w101.Name = "Wedge_Weld"
8142w101.Part0 = p101
8143w101.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)
8144w101.Part1 = p102
8145w101.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)
8146w102 = Instance.new("Weld", p102)
8147w102.Name = "Wedge_Weld"
8148w102.Part0 = p102
8149w102.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)
8150w102.Part1 = p103
8151w102.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)
8152w103 = Instance.new("Weld", p103)
8153w103.Name = "Wedge_Weld"
8154w103.Part0 = p103
8155w103.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)
8156w103.Part1 = p104
8157w103.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)
8158w104 = Instance.new("Weld", p104)
8159w104.Name = "Wedge_Weld"
8160w104.Part0 = p104
8161w104.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)
8162w104.Part1 = p105
8163w104.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)
8164w105 = Instance.new("Weld", p105)
8165w105.Name = "Wedge_Weld"
8166w105.Part0 = p105
8167w105.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)
8168w105.Part1 = p106
8169w105.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)
8170w106 = Instance.new("Weld", p106)
8171w106.Name = "Wedge_Weld"
8172w106.Part0 = p106
8173w106.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)
8174w106.Part1 = p107
8175w106.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)
8176w107 = Instance.new("Weld", p107)
8177w107.Name = "Wedge_Weld"
8178w107.Part0 = p107
8179w107.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)
8180w107.Part1 = p108
8181w107.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)
8182w108 = Instance.new("Weld", p108)
8183w108.Name = "Wedge_Weld"
8184w108.Part0 = p108
8185w108.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)
8186w108.Part1 = p109
8187w108.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)
8188w109 = Instance.new("Weld", p109)
8189w109.Name = "Wedge_Weld"
8190w109.Part0 = p109
8191w109.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)
8192w109.Part1 = p110
8193w109.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)
8194w110 = Instance.new("Weld", p110)
8195w110.Name = "Hitbox_Weld"
8196w110.Part0 = p110
8197w110.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)
8198w110.Part1 = p111
8199w110.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)
8200m8.Parent = rarm
8201m8:MakeJoints()
8202----------------------------------------------------
8203local cor8 = Instance.new("Part", rarm.Zyrodoxa)
8204cor8.Name = "Thingy"
8205cor8.Locked = true
8206cor8.BottomSurface = 0
8207cor8.CanCollide = false
8208cor8.Size = Vector3.new(1, 1, 1)
8209cor8.Transparency = 1
8210cor8.TopSurface = 0
8211corw8 = Instance.new("Weld", cor8)
8212corw8.Part0 = rarm
8213corw8.Part1 = cor8
8214corw8.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180))
8215corw8.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
8216weld8 = Instance.new("Weld", rarm.Zyrodoxa)
8217weld8.Part0 = cor8
8218weld8.Part1 = rarm.Zyrodoxa.Handle
8219weld8.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
8220Amulite = Instance.new("PointLight",m7.Center)
8221Amulite.Brightness = 0
8222Amulite.Color = Color3.new(0,1,0)
8223----------------------------------------------------
8224models = {m,m2,m3,m4,m5,m6,m7,m8}
8225parts = {}
8226Stepped:connect(function()
8227 for i,v in pairs(models) do
8228 for _, a in pairs(v:GetChildren()) do
8229 if v:IsA("Part") and v.Name ~= "Thingy" then
8230 table.insert(parts, a)
8231 for i,v in pairs(parts) do
8232 v.CanCollide = false
8233 end
8234 end
8235 end
8236 end
8237end)
8238----------------------------------------------------
8239local animpose = "Idle1"
8240local lastanimpose = "Idle1"
8241local grab = false
8242local Smooth = 1
8243local sine = 0
8244local change = 1
8245local val = 0
8246local ffing = false
8247----------------------------------------------------
8248--[[local hitbox = rarm.Zyrodoxa.Hitbox--Zyrodoxa is the name of the dagger k
8249
8250function FindHumanoids()
8251 local function c_region(Position, Size)
8252 local SizeOffset = Size/2
8253 local Point1 = Position - SizeOffset
8254 local Point2 = Position + SizeOffset
8255 local a = Instance.new("Part", workspace)
8256 a.Anchored = true
8257 a.Size = Size
8258 a.Position = Position
8259 print("Hey!, I'm making a part!")
8260 return Region3.new(Point1, Point2)
8261 end
8262
8263 local a = c_region((hitbox.CFrame * CFrame.new(0, -1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
8264 local b = c_region((hitbox.CFrame * CFrame.new(0, -0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
8265 local c = c_region((hitbox.CFrame * CFrame.new(0, 0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
8266 local d = c_region((hitbox.CFrame * CFrame.new(0, 1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
8267
8268 local regions = {a, b, c, d}
8269
8270 local found_humanoids = {}
8271 local already_found = {char.Name}
8272
8273 for _, region in pairs(regions) do
8274 for _, part in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(region, rarm.Zyrodoxa:GetChildren(), 100)) do
8275 print(part, part.Parent, part.Name) ---nope
8276 if part.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
8277 local humanoid = part.Parent:FindFirstChild("Humanoid")
8278 local name = humanoid.Parent.Name
8279 local exists = false
8280 for _, n in pairs(already_found) do
8281 if n == name then
8282 exists = true
8283 end
8284 end
8285 if not exists then
8286 table.insert(already_found, name)
8287 table.insert(found_humanoids, humanoid)
8288 end
8289 elseif part.Parent.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
8290 local humanoid = part.Parent.Parent:FindFirstChild("Humanoid")
8291 local name = humanoid.Parent.Parent.Name
8292 local exists = false
8293 for _, n in pairs(already_found) do
8294 if n == name then
8295 exists = true
8296 end
8297 end
8298 if not exists then
8299 table.insert(already_found, name)
8300 table.insert(found_humanoids, humanoid)
8301 end
8302 end
8303 end
8304 end
8305 return found_humanoids
8306end
8307
8308local humanoids = FindHumanoids()
8309if #humanoids == 0 then
8310 for i, v in pairs(humanoids) do
8311 print(v.Parent.Name)
8312 if Debounces.Slashing == true then
8313 v:TakeDamage(math.random(10,20) * math.random(1,3)) --max 60 damage?
8314 elseif Debounces.Slashing == false then
8315 wait()
8316 end
8317 end
8318 wait(0.3)
8319end]]--
8320----------------------------------------------------
8321--[[mouse.KeyDown:connect(function(key)
8322 if key == "f" then
8323 if Debounces.CanAttack == true then
8324 Debounces.CanAttack = false
8325 Debounces.NoIdl = true
8326 Debounces.on = true
8327 for i = 1, 20 do
8328 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1.05, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
8329 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
8330 CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-4),0,0),0.1)
8331 CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
8332 CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
8333 CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
8334 CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
8335 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)
8336 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)
8337 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)
8338 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)
8339 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)
8340 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)
8341 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-6), math.rad(0), 0), 0.1)
8342 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-20), 0), 0.1)
8343 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)
8344 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)
8345 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)
8346 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)
8347 if Debounces.on == false then
8348 break
8349 end
8350 fat.Event:wait()
8351 end
8352 end
8353 end
8354end)]]--
8355----------------------------------------------------
8356mod4 = Instance.new("Model",char)
8357
8358ptez = {0.7, 0.8, 0.9, 1}
8359
8360function FindNearestTorso(Position,Distance,SinglePlayer)
8361 if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
8362 local List = {}
8363 for i,v in pairs(workspace:GetChildren())do
8364 if v:IsA("Model")then
8365 if v:findFirstChild("Torso")then
8366 if v ~= char then
8367 if(v.Torso.Position -Position).magnitude <= Distance then
8368 table.insert(List,v)
8369 end
8370 end
8371 end
8372 end
8373 end
8374 return List
8375end
8376
8377function Slam()
8378 local part=Instance.new('Part',mod4)
8379 part.Anchored=true
8380 part.CanCollide=false
8381 part.FormFactor='Custom'
8382 part.Size=Vector3.new(.2,.2,.2)
8383 part.CFrame=root.CFrame*CFrame.new(0,-2.8,-1.4)*CFrame.Angles(math.rad(90),0,0)
8384 part.Transparency=.7
8385 part.BrickColor=BrickColor.new('Really black')
8386 mesh=Instance.new('SpecialMesh',part)
8387 mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
8388 mesh.Scale=Vector3.new(3,3,3)
8389 local part2=Instance.new('Part',mod4)
8390 part2.Anchored=true
8391 part2.CanCollide=false
8392 part2.FormFactor='Custom'
8393 part2.Size=Vector3.new(.2,.2,.2)
8394 part2.CFrame=root.CFrame*CFrame.new(0,-2.4,-1.6)
8395 part2.Transparency=.7
8396 part2.BrickColor=BrickColor.new('Lime green')
8397 mesh2=Instance.new('SpecialMesh',part2)
8398 mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
8399 mesh2.Scale=Vector3.new(3,1.5,3)
8400 x = Instance.new("Sound",larm)
8401 x.SoundId = "http://www.roblox.com/asset/?id=142070127"
8402 x.Pitch = ptez[math.random(1,#ptez)]
8403 x.Volume = 1
8404 wait(.1)
8405 x1 = Instance.new("Sound",larm)
8406 x1.SoundId = "http://www.roblox.com/asset/?id=206082327"
8407 x1.Pitch = ptez[math.random(1,#ptez)]
8408 x1.Volume = 1
8409 wait(.1)
8410 x:Play()
8411 x1:Play()
8412 for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
8413 if v:FindFirstChild('Humanoid') then
8414 v.Humanoid:TakeDamage(math.random(30,45))
8415 end
8416 end
8417 coroutine.resume(coroutine.create(function()
8418 for i=0,0.62,0.13 do
8419 wait()
8420 part.CFrame=part.CFrame
8421 part.Transparency=i
8422 mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
8423 part2.CFrame=part2.CFrame
8424 part2.Transparency=i
8425 mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
8426 end
8427 part.Parent=nil
8428 part2.Parent=nil
8429 x:Destroy()
8430 end))
8431end
8432----------------------------------------------------
8433wPart = function(x,y,z,color,tr,cc,an,parent)
8434 local wp = Instance.new('WedgePart',parent or Weapon)
8435 wp.formFactor = 'Custom'
8436 wp.Size = Vector3.new(x,y,z)
8437 wp.BrickColor = BrickColor.new(color)
8438 wp.CanCollide = cc
8439 wp.Transparency = tr
8440 wp.Anchored = an
8441 wp.TopSurface,wp.BottomSurface = 0,0
8442 return wp
8443end
8444
8445Mesh = function(par,num,x,y,z)
8446 local msh = _
8447 if num == 1 then
8448 msh = Instance.new("CylinderMesh",par)
8449 elseif num == 2 then
8450 msh = Instance.new("SpecialMesh",par)
8451 msh.MeshType = 3
8452 elseif num == 3 then
8453 msh = Instance.new("BlockMesh",par)
8454 elseif num == 4 then
8455 msh = Instance.new("SpecialMesh",par)
8456 msh.MeshType = "Torso"
8457 elseif type(num) == 'string' then
8458 msh = Instance.new("SpecialMesh",par)
8459 msh.MeshId = num
8460 end
8461 msh.Scale = Vector3.new(x,y,z)
8462 return msh
8463end
8464
8465local function CFrameFromTopBack(at, top, back)
8466 local right = top:Cross(back)
8467 return CFrame.new(at.x, at.y, at.z,
8468 right.x, top.x, back.x,
8469 right.y, top.y, back.y,
8470 right.z, top.z, back.z)
8471end
8472
8473function Triangle(a, b, c)
8474 local edg1 = (c-a):Dot((b-a).unit)
8475 local edg2 = (a-b):Dot((c-b).unit)
8476 local edg3 = (b-c):Dot((a-c).unit)
8477 if edg1 <= (b-a).magnitude and edg1 >= 0 then
8478 a, b, c = a, b, c
8479 elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
8480 a, b, c = b, c, a
8481 elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
8482 a, b, c = c, a, b
8483 else
8484 print("unreachable")
8485 end
8486 local len1 = (c-a):Dot((b-a).unit)
8487 local len2 = (b-a).magnitude - len1
8488 local width = (a + (b-a).unit*len1 - c).magnitude
8489 local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
8490 local list = {}
8491 if len1 > 0.01 then
8492 local w1 = wPart(0,0,0,'Lime green',0.5,false,true,char)
8493 local sz = Vector3.new(0.2, width, len1)
8494 w1.Size = sz
8495 local sp = Mesh(w1,2,0,0,0)
8496 sp.MeshType='Wedge'
8497 sp.Scale=Vector3.new(0,1,1)*sz/w1.Size
8498 w1:BreakJoints()
8499 w1.Anchored = true
8500 w1.Transparency = 0.7
8501 Spawn(function()
8502 for i=0,1,0.1 do
8503 fat.Event:wait()
8504 w1.Transparency=w1.Transparency+0.03
8505 end
8506 end)
8507 w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
8508 table.insert(list,w1)
8509 end
8510 if len2 > 0.01 then
8511 local w2 = wPart(0,0,0,'Lime green',0.5,false,true,char)
8512 local sz = Vector3.new(0.2, width, len2)
8513 w2.Size = sz
8514 local sp = Mesh(w2,2,0,0,0)
8515 sp.MeshType='Wedge'
8516 sp.Scale=Vector3.new(0,1,1)*sz/w2.Size
8517 w2:BreakJoints()
8518 w2.Anchored = true
8519 w2.Transparency = 0.7
8520 Spawn(function()
8521 for i=0,1,0.1 do
8522 fat.Event:wait()
8523 w2.Transparency=w2.Transparency+0.03
8524 end
8525 end)
8526 w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
8527 table.insert(list,w2)
8528 end
8529 return unpack(list)
8530end
8531
8532function trail(p,t,h)
8533 Spawn(function()
8534 local blcf = p.CFrame
8535 local scfr = blcf
8536 for i=1,t do
8537 local blcf = p.CFrame
8538 if scfr and (p.Position-scfr.p).magnitude > .1 then
8539 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)
8540 if a then game.Debris:AddItem(a,1) end
8541 if b then game.Debris:AddItem(b,1) end
8542 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)
8543 if a then game.Debris:AddItem(a,1) end
8544 if b then game.Debris:AddItem(b,1) end
8545 scfr = blcf
8546 elseif not scfr then
8547 scfr = blcf
8548 end
8549 fat.Event:wait()
8550 end
8551 scfr=nil
8552 end)
8553end
8554--trail(char.Sword.Blade,1e1000,5)
8555----------------------------------------------------
8556function Dmg()
8557 local partofdeath = rarm.Zyrodoxa.Hitbox
8558 local function CreateRegion3FromLocAndSize(Position, Size)
8559 local SizeOffset = Size/2
8560 local Point1 = Position - SizeOffset
8561 local Point2 = Position + SizeOffset
8562 return Region3.new(Point1, Point2)
8563 end
8564 local reg = CreateRegion3FromLocAndSize(partofdeath.Position, partofdeath.Size)
8565 for i, v in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(reg, char:GetChildren(), 100)) do
8566 Spawn(function()
8567 if Debounces.Slashing == true and Debounces.Slashed == false then
8568 Debounces.Slashed = true
8569 ypcall(function()
8570 local humanoid = v.Parent:FindFirstChild("Humanoid") or v.Parent.Parent:FindFirstChild("Humanoid")
8571 humanoid:TakeDamage(math.random(10,18))
8572 end)
8573 wait(.4)
8574 Debounces.Slashed = false
8575 end
8576 end)
8577 end
8578end
8579----------------------------------------------------
8580pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
8581ptz = {0.7, 0.8, 0.9, 1}
8582idz = {"161006212", "161006195"}
8583function attackone()
8584 for i = 1, 13 do
8585 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)
8586 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(20), math.rad(30), math.rad(0)), 0.8)
8587 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)
8588 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)
8589 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)
8590 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)
8591 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(-50),0), 0.5)
8592 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.5)
8593 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.7)
8594 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)
8595 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)
8596 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)
8597 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)
8598 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)
8599 if Debounces.on == false then
8600 break
8601 end
8602 fat.Event:wait()
8603 end
8604 trail(rarm.Zyrodoxa.Hitbox,20,2)
8605 Debounces.Slashing = true
8606 wait(0.2)
8607 --[[z = Instance.new("Sound", hed)
8608 z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
8609 z.Pitch = ptz[math.random(1,#ptz)]
8610 z.Volume = 1
8611 wait(.01)
8612 z:Play()]]--
8613 for i = 1, 14 do
8614 Dmg()
8615 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0.2) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(90)), 0.8)
8616 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-40), math.rad(30), math.rad(0)), 0.8)
8617 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)
8618 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)
8619 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)
8620 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)
8621 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(40),0), 0.7)
8622 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
8623 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -1) * CFrame.Angles(math.rad(-10), math.rad(-40), 0), 0.4)
8624 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)
8625 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)
8626 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)
8627 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)
8628 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)
8629 if Debounces.on == false then break end
8630 rs:wait()
8631 end
8632 Debounces.Slashing = false
8633end
8634function attacktwo()
8635 Debounces.Slashing = true
8636 for i = 1, 14 do
8637 Dmg()
8638 corw8.C0 = Lerp(corw8.C0, CFrame.new(-0.37, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-90)), 0.4)
8639 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-60), math.rad(0), math.rad(0)), 0.4)
8640 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)
8641 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)
8642 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)
8643 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)
8644 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)
8645 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
8646 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)
8647 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)
8648 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-10), 0, math.rad(-10)), 0.5)
8649 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)
8650 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(10), 0, math.rad(10)), 0.5)
8651 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)
8652 if Debounces.on == false then
8653 break
8654 end
8655 rs:wait()
8656 end
8657end
8658----------------------------------------------------
8659ComboNum = 0
8660mouse.Button1Down:connect(function()
8661 if Debounces.CanAttack == true then
8662 Debounces.CanAttack = false
8663 Debounces.NoIdl = true
8664 Debounces.on = true
8665 if ComboNum == 0 then
8666 attackone()
8667 elseif ComboNum == 1 then
8668 attacktwo()
8669 --[[elseif ComboNum == 2 then
8670 attackthree()]]--
8671 end
8672 ComboNum = ComboNum + 1
8673 Debounces.CanAttack = true
8674 Debounces.on = false
8675 wait(.5)
8676 if Debounces.CanAttack == true then
8677 ComboNum = 0
8678 Debounces.NoIdl = false
8679 end
8680 end
8681end)
8682----------------------------------------------------
8683definition = 5
8684bc = {}
8685bezierparts = {}
8686function NoOutline(Part)
8687 Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
8688end
8689function draw(p,d)
8690 for i=1,d do
8691 local t = i/d
8692 bc[i] = p[1]*(1-t)^2+2*p[2]*(1-t)*t+p[3]*t^2
8693 end
8694 for i=1,d do
8695 local bcs = Instance.new("Part",char)
8696 NoOutline(bcs)
8697 bcs.Anchored = true
8698 bcs.CanCollide = false
8699 bcs.Material = "Neon"
8700 bcs.BrickColor = BrickColor.new("Lime green")
8701 bcs.Size = Vector3.new(1,1,1)
8702 bcs.Shape = Enum.PartType.Ball
8703 bcs.CFrame = CFrame.new(bc[i])
8704 local bcp = Instance.new("Part",char)
8705 NoOutline(bcp)
8706 bcp.Anchored = true
8707 bcp.CanCollide = false
8708 bcp.Material = "Neon"
8709 bcp.BrickColor = BrickColor.new("Lime green")
8710 local cm = Instance.new("CylinderMesh")
8711 cm.Parent = bcp
8712 if i ~= 1 then
8713 bcp.CFrame = CFrame.new(bc[i]:Lerp(bc[i-1],0.5),bc[i])*CFrame.Angles(math.pi/2,0,0)
8714 bcp.Size = Vector3.new(1,(bc[i]-bc[i-1]).magnitude,1)
8715 else
8716 bcp.CFrame = CFrame.new(bc[i]:Lerp(p[1],0.5),bc[i])*CFrame.Angles(math.pi/2,0,0)
8717 bcp.Size = Vector3.new(1,(bc[i]-p[1]).magnitude,1)
8718 end
8719 table.insert(bezierparts, bcs)
8720 table.insert(bezierparts, bcp)
8721 end
8722 Spawn(function() fat.Event:wait()
8723 for i,v in pairs(bezierparts) do
8724 v.Transparency = 1
8725 end
8726 end)
8727end
8728--local points = {larm.Position,rarn.Position,invisipart.Position}
8729--draw(points,definition)
8730mouse.KeyDown:connect(function(key)
8731 if key == "f" then
8732 if Debounces.CanAttack == true then
8733 Debounces.CanAttack = false
8734 Debounces.NoIdl = true
8735 Debounces.on = true
8736 for i = 1, 20 do
8737 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)
8738 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)
8739 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)
8740 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)
8741 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)
8742 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
8743 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)
8744 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)
8745 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-10)), 0.2)
8746 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)
8747 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(10)), 0.2)
8748 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)
8749 if Debounces.on == false then
8750 break
8751 end
8752 fat.Event:wait()
8753 end
8754 rpart = Instance.new("Part",rarm)
8755 NoOutline(rpart)
8756 rpart.Anchored = false
8757 rpart.Size = Vector3.new(1,1,1)
8758 rpart.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
8759 rpart.Transparency = 1
8760 newWeld(rarm, rpart, 0, 0, 0)
8761 rpart.Weld.C1 = CFrame.new(0, 1.1, 0)
8762 lpart = Instance.new("Part",larm)
8763 NoOutline(lpart)
8764 lpart.Anchored = false
8765 lpart.Size = Vector3.new(1,1,1)
8766 lpart.CFrame = larm.CFrame * CFrame.new(0,-1,0)
8767 lpart.Transparency = 1
8768 newWeld(larm, lpart, 0, 0, 0)
8769 lpart.Weld.C1 = CFrame.new(0, 1.1, 0)
8770 invisipart = Instance.new("Part",torso)
8771 NoOutline(invisipart)
8772 invisipart.Anchored = false
8773 invisipart.Size = Vector3.new(1,1,1)
8774 invisipart.Transparency = 1
8775 invisipart.CFrame = torso.CFrame
8776 newWeld(torso, invisipart, 0, 0, 0)
8777 invisipart.Weld.C1 = CFrame.new(0, 0, 6)
8778 table.insert(bezierparts, rpart)
8779 table.insert(bezierparts, lpart)
8780 table.insert(bezierparts, invisipart)
8781 for i = 1, 40 do
8782 local points = {lpart.Position,invisipart.Position,rpart.Position}
8783 draw(points,definition)
8784 --invisipart.Weld.C1 = invisipart.Weld.C1 + Vector3.new(0,0,0.6)
8785 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)
8786 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)
8787 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)
8788 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)
8789 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)
8790 hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
8791 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)
8792 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)
8793 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-10)), 0.2)
8794 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)
8795 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(10)), 0.2)
8796 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)
8797 if Debounces.on == false then
8798 break
8799 end
8800 fat.Event:wait()
8801 end
8802 for i,v in pairs(bezierparts) do
8803 v:Destroy()
8804 end
8805 --draw(points,definition)
8806 if Debounces.CanAttack == false then
8807 Debounces.CanAttack = true
8808 Debounces.NoIdl = false
8809 Debounces.on = false
8810 end
8811 end
8812 end
8813end)
8814----------------------------------------------------
8815----------------------------------------------------
8816
8817---------------------------------------------------------------------------------------
8818----------------------------------------------------
8819mouse.KeyDown:connect(function(key)
8820 if key == "b" then
8821 hum.WalkSpeed = 0.01
8822 if Debounces.CanAttack == true then
8823 Debounces.CanAttack = false
8824 Debounces.NoIdl = true
8825 Debounces.on = true
8826 for i = 1,20 do
8827 rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, .5, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
8828 larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, .5, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
8829 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
8830 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
8831 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
8832 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
8833
8834 if Debounces.on == false then break end
8835 wait()
8836 end
8837 wait(1)
8838 v = Instance.new("Sound")
8839 v.SoundId = "rbxassetid://435742675"
8840 v.Parent = char
8841 v.Looped = false
8842 v.Pitch = 1
8843 v.Volume = 16
8844 wait(.01)
8845 v:Play()
8846
8847 if Daytime == true then
8848 Daytime = false
8849 l.TimeOfDay = 24
8850 else
8851 Daytime = true
8852 l.TimeOfDay = 12
8853 l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
8854 end
8855
8856 local Shockwave = function()
8857 local rng1 = Instance.new("Part", char)
8858 rng1.Anchored = true
8859 rng1.BrickColor = BrickColor.new("Really black")
8860 rng1.CanCollide = false
8861 rng1.FormFactor = 3
8862 rng1.Name = "Ring"
8863 rng1.Size = Vector3.new(1, 1, 1)
8864 rng1.Transparency = 0.35
8865 rng1.TopSurface = 0
8866 rng1.BottomSurface = 0
8867 local rngm1 = Instance.new("SpecialMesh", rng)
8868 rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
8869 rngm1.Scale = Vector3.new(10, 10, 1)
8870 rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
8871 local Wave = Instance.new("Part", game.Workspace--[[?]])
8872 Wave.Name = "Shockwave"
8873 Wave.BrickColor = BrickColor.new("Really black")
8874 Wave.Size = Vector3.new(1, 1, 1)
8875 Wave.Shape = "Ball"
8876 Wave.CanCollide = false
8877 Wave.Anchored = true
8878 Wave.TopSurface = 0
8879 Wave.BottomSurface = 0
8880
8881msh=Instance.new('SpecialMesh',pt)
8882msh.MeshId='http://www.roblox.com/asset/?id=20329976'
8883msh.Scale=Vector3.new(8,4,8)
8884
8885 Wave.Touched:connect(function(hit)
8886 if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
8887 local Occlude = true
8888 local NotOccludes = {
8889 char.Name;
8890 "Wings";
8891 "Scythe";
8892 "Thingy";
8893 "Thingy2"; -- put all of the names in a table pls
8894 }
8895 for i,v in pairs(NotOccludes) do
8896 if hit.Parent.Name == v then
8897 Occlude = false
8898 end
8899 end
8900 --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
8901 if Occlude then
8902 hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
8903 hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
8904 end
8905 end
8906 end)
8907
8908 Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
8909
8910 coroutine.wrap(function()
8911 for i = 1, 20, 0.2 do
8912 rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
8913 rng1.Transparency = i/20
8914 wait()
8915 end
8916 wait()
8917 rng1:Destroy()
8918 end)()
8919
8920 Delay(0, function()
8921
8922 if Daytime == false then
8923 for i = 1, 50, 1 do
8924 Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
8925 Wave.CFrame = char.Torso.CFrame
8926 local t = i / 50
8927 Wave.Transparency = t
8928 wait()
8929 end
8930 else
8931 for i = 1, 50, 1 do
8932 Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
8933 Wave.CFrame = char.Torso.CFrame
8934 local t = i / 50
8935 Wave.Transparency = t
8936 wait()
8937 end
8938 end
8939 Wave:Destroy()
8940 end)
8941 Delay(0, function()
8942 while wait() do
8943 if Wave ~= nil then
8944 Wave.CFrame = char.Torso.CFrame
8945 else
8946 break
8947 end
8948 end
8949 end)
8950 end
8951 Shockwave()
8952
8953
8954 for i = 1, 15 do
8955 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)
8956 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)
8957 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
8958 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)
8959 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
8960 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
8961 if Debounces.on == false then break end
8962 wait()
8963 end
8964 for i = 1, 15 do
8965 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)
8966 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)
8967 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
8968 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)
8969 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
8970 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
8971 if Debounces.on == false then break end
8972 wait()
8973 end
8974 for i = 1, 15 do
8975 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)
8976 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)
8977 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
8978 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)
8979 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
8980 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
8981 if Debounces.on == false then break end
8982 wait()
8983 end
8984 for i = 1, 15 do
8985 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)
8986 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)
8987 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
8988 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)
8989 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
8990 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
8991 if Debounces.on == false then break end
8992 wait()
8993 end
8994 for i = 1, 15 do
8995 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)
8996 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)
8997 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
8998 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)
8999 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
9000 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
9001 if Debounces.on == false then break end
9002 wait()
9003 end
9004 for i = 1, 15 do
9005 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)
9006 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)
9007 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
9008 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)
9009 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
9010 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
9011 if Debounces.on == false then break end
9012 wait()
9013 end
9014 wait(1.4)
9015 Debounces.NoIdl = false
9016 hum.WalkSpeed = 16
9017 Debounces.on = false
9018 wait()
9019 if Debounces.CanAttack == false then
9020 Debounces.CanAttack = true
9021 v:Destroy()
9022 end
9023 end
9024 end
9025end)
9026------------------------------------------
9027
9028-------------------------------------------------
9029Grab = false
9030mouse.KeyDown:connect(function(key)
9031 if key == "z" then
9032 Debounces.on = true
9033 Debounces.NoIdl = true
9034 Debounces.ks = true
9035 if Grab == false then
9036 gp = nil
9037 for i = 1, 20 do
9038 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)
9039 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)
9040 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)
9041 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)
9042 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-70),0), 0.2)
9043 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)
9044 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.2)
9045 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)
9046 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)
9047 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)
9048 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)
9049 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)
9050 if Debounces.on == false then break end
9051 fat.Event:wait()
9052 end
9053 con1=larm.LeftArm.LeftArmPlate.Touched:connect(function(hit)
9054 ht = hit.Parent
9055 for i,v in pairs(ht:GetChildren()) do
9056 if v:IsA("Part") then
9057 v.CanCollide = false
9058 v.CustomPhysicalProperties = PhysicalProperties.new(0.001,0.001,0.001,0.001,0.001)
9059 end
9060 end
9061 hum1=ht:FindFirstChild('Humanoid')
9062 if hum1 ~= nil then
9063 if Debounces.ks==true then
9064 z = Instance.new("Sound",hed)
9065 z.SoundId = "rbxassetid://169380525"
9066 z.Volume = 1
9067 z:Play()
9068 Debounces.ks=false
9069 end
9070 hum1.PlatformStand=true
9071 hum1:ChangeState'Physics'
9072 gp = ht
9073 Grab = true
9074 asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-1,0.6),CFrame.new(0,0,0))
9075 asd.Parent = larm
9076 asd.Name = "asd"
9077 asd.C0=asd.C0*CFrame.Angles(math.rad(-90),math.rad(180),0)
9078 stanceToggle = "Grabbed"
9079 --[[elseif hum1 == nil then
9080 con1:disconnect()
9081 wait() return]]--
9082 end
9083 end)
9084 for i = 1, 20 do
9085 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)
9086 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)
9087 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)
9088 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)
9089 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.2)
9090 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)
9091 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.2)
9092 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)
9093 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)
9094 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)
9095 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)
9096 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)
9097 if Debounces.on == false then break end
9098 fat.Event:wait()
9099 end
9100 con1:disconnect()
9101 Debounces.on = false
9102 Debounces.NoIdl = false
9103 elseif Grab == true then
9104 Grab = false
9105 --[[for i = 1, 16 do
9106 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)
9107 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)
9108 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(70),0), 0.3)
9109 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
9110 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)
9111 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)
9112 cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), 0), 0.3)
9113 if Debounces.on == false then end
9114 rs:wait()
9115 end]]--
9116 for i = 1, 16 do
9117 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)
9118 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)
9119 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)
9120 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)
9121 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(20),math.rad(-60),0), 0.3)
9122 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)
9123 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.3)
9124 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)
9125 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)
9126 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)
9127 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)
9128 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)
9129 if Debounces.on == false then end
9130 rs:wait()
9131 end
9132 for i = 1, 12 do
9133 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)
9134 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)
9135 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)
9136 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)
9137 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)
9138 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)
9139 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)
9140 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)
9141 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.6)
9142 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)
9143 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)
9144 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)
9145 if Debounces.on == false then end
9146 rs:wait()
9147 end
9148 Slam()
9149 if gp ~= nil then
9150 for i,v in pairs(larm:GetChildren()) do
9151 if v.Name == "asd" and v:IsA("Weld") then
9152 v:Remove()
9153 end
9154 if v:IsA("Part") then
9155 v.CanCollide = true
9156 v.CustomPhysicalProperties = PhysicalProperties.new(1,1,1,1,1)
9157 end
9158 end
9159 end
9160 stanceToggle = "Idle1"
9161 --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
9162 bv.maxForce = Vector3.new(400000, 400000, 400000)
9163 bv.P = 125000
9164 bv.velocity = char.Head.CFrame.lookVector * 200]]--
9165 ht=nil
9166 Debounces.on = false
9167 Debounces.NoIdl = false
9168 elseif ht == nil then wait()
9169 Grab = false
9170 Debounces.on = false
9171 Debounces.NoIdl = false
9172 end
9173 end
9174end)
9175----------------------------------------------------
9176-------------------------------------------------------------------------------------------------
9177
9178----------------------------------------------------
9179
9180
9181----------------------------------------------------
9182----------------------------------------------------
9183------------------------------------------------
9184pts = {4, 4.2, 4.4, 4.6, 4.8, 5, 5.2, 5.4}
9185mouse.KeyDown:connect(function(key)
9186 if key == "e" then
9187 if Debounces.CanAttack == true then
9188 Debounces.CanAttack = false
9189 Debounces.NoIdl = true
9190 Debounces.on = true
9191 Debounces.ks = true
9192 larm.Touched:connect(function(ht)
9193 hit = ht.Parent
9194 if ht and hit:IsA("Model") then
9195 if hit:FindFirstChild("Humanoid") then
9196 if hit.Name ~= p.Name then
9197 if Debounces.Slapping == true and Debounces.Slapped == false then
9198 Debounces.Slapped = true
9199 if Debounces.ks==true then
9200 z = Instance.new("Sound",hed)
9201 z.SoundId = "rbxassetid://169380525"
9202 z.Volume = 1
9203 z:Play()
9204 z1 = Instance.new("Sound",char)
9205 z1.SoundId = "rbxassetid://261010715"
9206 z1.Pitch = pts[math.random(1,#pts)]
9207 z1.Volume = 1
9208 z2 = Instance.new("Sound",char)
9209 z2.SoundId = "rbxassetid://261010715"
9210 z2.Pitch = z1.Pitch
9211 z2.Volume = 1
9212 z3 = Instance.new("Sound",char)
9213 z3.SoundId = "rbxassetid://261010715"
9214 z3.Pitch = z1.Pitch
9215 z3.Volume = 1
9216if Profanity == true then
9217 z1:Play()
9218 z2:Play()
9219 z3:Play()
9220else end
9221 Debounces.ks=false
9222 end
9223 hit:FindFirstChild("Humanoid"):TakeDamage(10)
9224 hit:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 90
9225 wait(.5)
9226 Debounces.Slapped = false
9227 z:Destroy()
9228 z1:Destroy()
9229 z2:Destroy()
9230 z3:Destroy()
9231 end
9232 end
9233 end
9234 elseif ht and hit:IsA("Hat") then
9235 if hit.Parent.Name ~= p.Name then
9236 if hit.Parent:FindFirstChild("Humanoid") then
9237 if Debounces.Slapping == true and Debounces.Slapped == false then
9238 Debounces.Slapped = true
9239 if Debounces.ks==true then
9240 z = Instance.new("Sound",hed)
9241 z.SoundId = "rbxassetid://169380525"
9242 z.Volume = 1
9243 z:Play()
9244 z1 = Instance.new("Sound",char)
9245 z1.SoundId = "rbxassetid://261010715"
9246 z1.Pitch = pts[math.random(1,#pts)]
9247 z1.Volume = 1
9248 z2 = Instance.new("Sound",char)
9249 z2.SoundId = "rbxassetid://261010715"
9250 z2.Pitch = z1.Pitch
9251 z2.Volume = 1
9252 z3 = Instance.new("Sound",char)
9253 z3.SoundId = "rbxassetid://261010715"
9254 z3.Pitch = z1.Pitch
9255 z3.Volume = 1
9256 z1:Play()
9257 z2:Play()
9258 z3:Play()
9259 Debounces.ks=false
9260 end
9261 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
9262 wait(.5)
9263 Debounces.Slapped = false
9264 z:Destroy()
9265 z1:Destroy()
9266 z2:Destroy()
9267 z3:Destroy()
9268 end
9269 end
9270 end
9271 end
9272 end)
9273 for i = 1, 14 do
9274 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)
9275 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)
9276 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)
9277 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)
9278 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.5)
9279 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.5)
9280 if Debounces.on==false then break end
9281 rs:wait(2)
9282 end
9283 Debounces.Slapping = true
9284 for i = 1, 20 do
9285 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)
9286 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)
9287 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)
9288 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)
9289 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
9290 rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
9291 if Debounces.on==false then break end
9292 rs:wait(2)
9293 end
9294 Debounces.Slapping = false
9295 if Debounces.CanAttack == false then
9296 Debounces.CanAttack = true
9297 Debounces.NoIdl = false
9298 Debounces.on = false
9299 end
9300 end
9301 end
9302end)
9303-------------------------------
9304mouse.KeyDown:connect(function(key)
9305 if key == "t" then
9306 if Debounces.CanAttack == true then
9307 Debounces.CanAttack = false
9308 Debounces.on = true
9309 Debounces.NoIdl = true
9310 for i = 1, 20 do
9311 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)
9312 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)
9313 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)
9314 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
9315 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, .3) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
9316 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)
9317
9318 if Debounces.on == false then break end
9319 wait()
9320 end
9321 Spawn(function()
9322 local Parts = {}
9323 for Y = -5,5 do
9324 local P = Instance.new("Part",char)
9325 P.Anchored = true
9326 P.FormFactor = "Custom"
9327 P.CanCollide = false
9328 P.Size = Vector3.new(1,2,1)
9329 P.TopSurface = "SmoothNoOutlines"
9330 P.BottomSurface = "SmoothNoOutlines"
9331 P.BrickColor = BrickColor.new("Really black")
9332 P.Name = tostring(Y)
9333 local i = (Y+5)/(10)
9334 i = 1-math.cos(math.pi*i-(math.pi/2))
9335 P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
9336 --[[P.Touched:connect(function(ht)
9337 local hit = ht.Parent
9338 if hit:FindFirstChild("Humanoid") then
9339 hit.Humanoid:TakeDamage(math.random(20,50))
9340 end
9341 end)]]--
9342 s = Instance.new("Sound",P)
9343 s.SoundId = "rbxassetid://228343271"
9344 s.Volume = 19
9345 s.Pitch = 0.9
9346 s:Play()
9347P.Touched:connect(function(ht)
9348 hit = ht.Parent
9349 if ht and hit:IsA("Model") then
9350 if hit:FindFirstChild("Humanoid") then
9351 if hit.Name ~= p.Name then
9352 --[[if Debounces.Slashing == true and Debounces.Slashed == false then
9353 Debounces.Slashed = true]]--
9354 hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
9355 hit:FindFirstChild("Humanoid").PlatformStand = true
9356 wait(1)
9357 --Debounces.Slashed = false
9358 --end
9359 end
9360 end
9361 elseif ht and hit:IsA("Hat") then
9362 if hit.Parent.Name ~= p.Name then
9363 if hit.Parent:FindFirstChild("Humanoid") then
9364 --[[if Debounces.Slashing == true and Debounces.Slashed == false then
9365 Debounces.Slashed = true]]--
9366 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
9367 hit:FindFirstChild("Humanoid").PlatformStand = true
9368 wait(1)
9369 --Debounces.Slashed = false
9370 --end
9371 end
9372 end
9373 end
9374end)
9375 Parts[#Parts+1] = P
9376 end
9377 local BREAKIT = false
9378 local CParts = {}
9379 local Rocks = {}
9380 local LastPos = nil
9381 for i = 1,70 do
9382 for i2,v in pairs(Parts) do
9383 v.CFrame = v.CFrame*CFrame.new(0,0,-4)
9384 local cf = v.CFrame
9385 v.Size = v.Size+Vector3.new(0.4,0.35,0)
9386 v.CFrame = cf
9387 v.Transparency = v.Transparency+0.02
9388 if v.Transparency >= 0.975 then BREAKIT = true end
9389 if v.Name == "0" then
9390 local Ignore = {}
9391 for i,v in pairs(game:GetService("Players"):GetPlayers()) do
9392 if v.Character ~= nil then
9393 Ignore[#Ignore+1] = v.Character
9394 end
9395 end
9396 local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
9397 local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
9398 if Hit ~= nil then
9399 if #Rocks == 0 then
9400 for i = 1,5 do
9401 local P = Instance.new("Part",char)
9402 Rocks[#Rocks+1] = P
9403 P.Anchored = true
9404 P.FormFactor = "Custom"
9405 P.BrickColor = Hit.BrickColor
9406 P.Material = Hit.Material
9407 P.TopSurface = "Smooth"
9408 P.BottomSurface = "Smooth"
9409 P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
9410 end
9411 end
9412 for i,P in pairs(Rocks) do
9413 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)))
9414 end
9415 local P = Instance.new("Part",char)
9416 CParts[#CParts+1] = {P,tick()}
9417 P.Anchored = true
9418 P.FormFactor = "Custom"
9419 P.BrickColor = Hit.BrickColor
9420 P.Material = Hit.Material
9421 P.TopSurface = "Smooth"
9422 P.BottomSurface = "Smooth"
9423 P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
9424 Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
9425 Pos = Pos.p
9426 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)))
9427 local P = P:Clone()
9428 CParts[#CParts+1] = {P,tick()}
9429 P.Parent = char
9430 Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
9431 Pos = Pos.p
9432 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)))
9433 if LastPos ~= nil then
9434 local P = P:Clone()
9435 CParts[#CParts+1] = {P,tick()}
9436 P.Parent = char
9437 P.BrickColor = BrickColor.new("Really black")
9438 Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
9439 Pos = Pos.p
9440 local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
9441 P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
9442 --P.Velocity = Vector3.new(0,-1000,0)
9443 P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
9444 end
9445 LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
9446 end
9447 end
9448 end
9449 if BREAKIT then break end
9450 wait(0.002)
9451 end
9452 for i,v in pairs(Rocks) do
9453 CParts[#CParts+1] = {v,tick()}
9454 end
9455 for i,v in pairs(Parts) do
9456 v:Destroy()
9457 end
9458 Parts = nil
9459 while true do
9460 local t = tick()
9461 local p = nil
9462 for i,v in pairs(CParts) do
9463 if t-v[2] > 4 then
9464 v[1].Transparency = v[1].Transparency+0.05
9465 if v[1].Transparency >= 1 then
9466 v[1]:Destroy()
9467 CParts[i] = nil
9468 end
9469 end
9470 p = v
9471 end
9472 if p == nil then break end
9473 wait(0.002)
9474 end
9475 for i,v in pairs(CParts) do
9476 v:Destroy()
9477 end
9478 CParts = {}
9479 end)
9480 for i = 1, 20 do
9481 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)
9482 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)
9483 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)
9484 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
9485 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)
9486 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)
9487
9488 if Debounces.on == false then break end
9489 wait()
9490 end
9491 if Debounces.CanAttack == false then
9492 Debounces.CanAttack = true
9493 Debounces.on = false
9494 Debounces.NoIdl = false
9495 end
9496 end
9497 end
9498end)
9499----------------------------------------------------
9500----------------------------------------------------
9501----------------------------------------------------
9502-------------------
9503
9504Change = false
9505mouse.KeyDown:connect(function(key)
9506 if key == "n" then
9507 if Change == false then
9508 Change = true
9509 stanceToggle = "Idle2"
9510 elseif Change == true then
9511 Change = false
9512 stanceToggle = "Idle1"
9513 end
9514 end
9515end)
9516----------------------------------------------------
9517mod=Instance.new('Model',char)
9518
9519function charge()
9520 hed.Velocity=hed.CFrame.lookVector*200
9521 part=Instance.new('Part',mod)
9522 part.Anchored=true
9523 part.CanCollide=false
9524 part.FormFactor='Custom'
9525 part.Size=Vector3.new(.2,.2,.2)
9526 part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
9527 part.Transparency=.7
9528 part.BrickColor=BrickColor.new('Black')
9529 mesh=Instance.new('SpecialMesh',part)
9530 mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
9531 mesh.Scale=Vector3.new(10,5,10)
9532 part2=part:clone()
9533 part2.Parent=mod
9534 part2.BrickColor=BrickColor.new('Lime green')
9535 mesh2=mesh:clone()
9536 mesh2.Parent=part2
9537 mesh2.Scale=Vector3.new(20,10,20)
9538 part3=part2:clone()
9539 part3.Parent = mod
9540 part3.BrickColor=BrickColor.new('Really black')
9541 mesh3=mesh2:clone()
9542 mesh2.Parent=part3
9543 mesh3.Scale=Vector3.new(30,15,30)
9544 coroutine.resume(coroutine.create(function()
9545 for i=0,1,0.1 do
9546 wait()
9547 part.CFrame=part.CFrame
9548 part.Transparency=i
9549 mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
9550 part2.CFrame=part2.CFrame
9551 part2.Transparency=i
9552 mesh2.Scale=mesh2.Scale+Vector3.new(2,2,2)
9553 part3.CFrame=part3.CFrame
9554 part3.Transparency=i
9555 mesh3.Scale=mesh3.Scale+Vector3.new(2,2,2)
9556 end
9557 part.Parent=nil
9558 part2.Parent=nil
9559 part3.Parent = nil
9560 end))
9561end
9562--------------------
9563mouse.KeyDown:connect(function(key)
9564 if key == "g" then
9565 larm.BrickColor = BrickColor.new("Bright red")
9566 rarm.BrickColor = BrickColor.new("Bright red")
9567 if Debounces.CanAttack == true then
9568 Debounces.CanAttack = false
9569 Debounces.on = true
9570 Debounces.NoIdl = true
9571 chrg = lleg.Touched:connect(function(ht)
9572 hit = ht.Parent
9573 if ht and hit:IsA("Model") then
9574 if hit:FindFirstChild("Humanoid") then
9575 if hit.Name ~= p.Name then
9576 --[[if Debounces.Slashing == true and Debounces.Slashed == false then
9577 Debounces.Slashed = true]]--
9578 hit:FindFirstChild("Humanoid"):TakeDamage(2)
9579 hit:FindFirstChild("Humanoid").PlatformStand = true
9580 hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
9581 --Debounces.Slashed = false
9582 --end
9583 end
9584 end
9585 elseif ht and hit:IsA("Hat") then
9586 if hit.Parent.Name ~= p.Name then
9587 if hit.Parent:FindFirstChild("Humanoid") then
9588 --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
9589 Debounces.Slashed = true]]--
9590 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
9591 hit:FindFirstChild("Humanoid").PlatformStand = true
9592 hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
9593 --Debounces.Slashed = false
9594 end
9595 end
9596 end
9597 end)
9598 for i = 1, 14 do
9599 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)
9600 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)
9601 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)
9602 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)
9603 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)
9604 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)
9605
9606 if Debounces.on == false then break end
9607 wait()
9608 end
9609 charge()
9610 z = Instance.new("Sound",char)
9611 z.SoundId = "rbxassetid://200632875"
9612 z.Volume = 1
9613 z.Pitch = .8
9614 z1 = Instance.new("Sound",char)
9615 z1.SoundId = "rbxassetid://200632875"
9616 z1.Volume = 1
9617 z1.Pitch = .9
9618 z:Play()
9619 z1:Play()
9620 wait(1)
9621 z:Destroy()
9622 z1:Destroy()
9623 chrg:disconnect()
9624 if Debounces.CanAttack == false then
9625 Debounces.CanAttack = true
9626 Debounces.on = false
9627 Debounces.NoIdl = false
9628 larm.BrickColor = BrickColor.new("White")
9629 rarm.BrickColor = BrickColor.new("White")
9630 end
9631 end
9632 end
9633end)
9634------------------------------
9635mouse.KeyDown:connect(function(key)
9636 if string.byte(key) == 52 then
9637 Swing = 2
9638 char.Humanoid.WalkSpeed = 28
9639 end
9640end)
9641mouse.KeyUp:connect(function(key)
9642 if string.byte(key) == 52 then
9643 Swing = 1
9644 char.Humanoid.WalkSpeed = 16
9645 end
9646end)
9647----------------------------------------------------
9648
9649-------------------------------------------
9650CR = torso.Cloak.Rotater
9651CR2 = torso.Cloak.CapeLevel1
9652CR3 = torso.Cloak.CapeLevel2
9653CR4 = torso.Cloak.CapeLevel3
9654CR5 = torso.Cloak.CapeLevel4
9655jump = false
9656rs:connect(function()
9657 if char.Humanoid.Jump == true then
9658 jump = true
9659 else
9660 jump = false
9661 end
9662 char.Humanoid.FreeFalling:connect(function(f)
9663 if f then
9664 ffing = true
9665 else
9666 ffing = false
9667 end
9668 end)
9669 sine = sine + change
9670 if jump == true then
9671 animpose = "Jumping"
9672 elseif ffing == true then
9673 animpose = "Freefalling"
9674 elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
9675 animpose = "Idle"
9676 elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
9677 animpose = "Walking"
9678 elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
9679 animpose = "Running"
9680 end
9681 RightLeg = CFrame.new(0.5,-1,0)
9682 LeftLeg = CFrame.new(-0.5,-1,0)
9683
9684 lefth = (torso.CFrame*LeftLeg)
9685 righth = (torso.CFrame*RightLeg)
9686
9687 speed = Vector3.new(torso.Velocity.X,0,torso.Velocity.Z)
9688
9689 TiltOnAxis = (torso.CFrame-torso.CFrame.p):vectorToObjectSpace(speed/100)
9690
9691 local AngleThetaR = (righth-righth.p):vectorToObjectSpace(speed/100)
9692 local AngleThetaL = (lefth-lefth.p):vectorToObjectSpace(speed/100)
9693 if animpose ~= lastanimpose then
9694 sine = 0
9695 if Debounces.NoIdl == false then
9696 if stanceToggle == "Idle1" then
9697 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)
9698 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)
9699 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)
9700 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)
9701 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)
9702 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)
9703 elseif stanceToggle == "Idle2" then
9704 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)
9705 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)
9706 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)
9707 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)
9708 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)
9709 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)
9710 end
9711 fat.Event:wait()
9712 end
9713 else
9714 end
9715 lastanimpose = animpose
9716 if Debounces.NoIdl == false then
9717 if animpose == "Idle" then
9718 change = 0.5
9719 if stanceToggle == "Idle1" then
9720 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)
9721 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)
9722 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)
9723 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)
9724 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)
9725 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)
9726 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)
9727 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)
9728 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)
9729 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)
9730 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)
9731 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)
9732 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)
9733 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)
9734 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)
9735 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)
9736 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)
9737 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)
9738 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)
9739 elseif stanceToggle == "Idle2" then
9740 CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-6),0,0),0.1)
9741 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)
9742 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)
9743 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)
9744 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)
9745 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
9746 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)
9747 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)
9748 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)
9749 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)
9750 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)
9751 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
9752 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10), 0, 0), 0.3)
9753 --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)
9754 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)
9755 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)
9756 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)
9757 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)
9758 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)
9759 elseif stanceToggle == "Grabbed" then
9760 grab = true
9761 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
9762 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
9763 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)
9764 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)
9765 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)
9766 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)
9767 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)
9768 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)
9769 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
9770 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
9771 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)
9772 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)
9773 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)
9774 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)
9775 end
9776 elseif animpose == "Walking" then
9777 if stanceToggle == "Grabbed" then
9778 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
9779 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
9780 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)
9781 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)
9782 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)
9783 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)
9784 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)
9785 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)
9786 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)
9787 --rj.C0 = rj.C0:lerp(CFrame.Angles(math.rad(-90)+TiltOnAxis.Z,TiltOnAxis.X,math.rad(180)+-TiltOnAxis.X),.1)
9788 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
9789 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)
9790 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)
9791 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)
9792 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)
9793 elseif stanceToggle ~= "Grabbed" then
9794 change = 1
9795 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
9796 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
9797 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)
9798 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)
9799 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)
9800 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)
9801 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)
9802 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)
9803 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)
9804 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)
9805 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)
9806 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)
9807 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)
9808 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)
9809 --rj.C0 = rj.C0:lerp(CFrame.Angles(math.rad(-90)+TiltOnAxis.Z,TiltOnAxis.X,math.rad(180)+-TiltOnAxis.X),.1)
9810 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
9811 --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)
9812 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)
9813 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)
9814 --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)
9815 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)
9816 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)
9817 end
9818 elseif animpose == "Running" then
9819 change = 1
9820 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
9821 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
9822 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)
9823 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)
9824 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)
9825 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)
9826 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)
9827 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)
9828 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)
9829 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)
9830 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)
9831 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)
9832 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)
9833 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)
9834 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
9835 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)
9836 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)
9837 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)
9838 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)
9839 elseif animpose == "Jumping" then
9840 CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-30),0,0),0.2)
9841 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)
9842 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)
9843 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)
9844 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)
9845 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
9846 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
9847 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)
9848 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)
9849 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)
9850 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)
9851 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(30),math.rad(0),0), 0.2)
9852 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
9853 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
9854 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)
9855 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)
9856 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)
9857 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)
9858 elseif animpose == "Freefalling" then
9859 CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-110),0,0),0.2)
9860 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)
9861 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)
9862 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)
9863 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)
9864 corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
9865 corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
9866 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)
9867 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)
9868 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)
9869 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)
9870 hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.2)
9871 torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.2)
9872 torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
9873 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)
9874 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)
9875 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)
9876 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)
9877 end
9878 end
9879end)
9880hum.MaxHealth = 5000
9881wait(3)
9882hum.Health = 5000
9883while wait() do
9884 wait(5)
9885 for i=1,100 do wait()
9886 Amulite.Brightness=Amulite.Brightness+0.02
9887 end
9888 for i=1,100 do wait()
9889 Amulite.Brightness=Amulite.Brightness-0.02
9890 end
9891end