View difference between Paste ID: Qph1u0Lg and giAmRZp0
SHOW: | | - or go back to the newest paste.
1
if game:GetService("RunService"):IsClient() then error("Please run as a server script. Use h/ instead of hl/.") end
2
print("FE Compatibility: by WaverlyCole & Mokiros")
3
InternalData = {}
4
do
5
	script.Parent = owner.Character
6
	local Event = Instance.new("RemoteEvent")
7
	Event.Name = "UserInput"
8
	local function NewFakeEvent()
9
		local Fake = {fakeEvent=true,Connect=function(self,Func)self.Function=Func end}Fake.connect = Fake.Connect
10
		return Fake
11
	end
12
	local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
13
	local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
14
	local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
15
		self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
16
	end};ContextActionService.UnBindAction = ContextActionService.BindAction
17
	local function TriggerEvent(self,Event,...)
18
		local Trigger = Mouse[Event]
19
		if Trigger and Trigger.fakeEvent and Trigger.Function then
20
			Trigger.Function(...)
21
		end
22
	end
23
	Mouse.TrigEvent = TriggerEvent
24
	UserInputService.TrigEvent = TriggerEvent
25
	Event.OnServerEvent:Connect(function(FiredBy,Input)
26
		if FiredBy.Name ~= owner.Name then end
27
		if Input.MouseEvent then
28
			Mouse.Target = Input.Target
29
			Mouse.Hit = Input.Hit
30
		else
31
			local Begin = Input.UserInputState == Enum.UserInputState.Begin
32
			if Input.UserInputType == Enum.UserInputType.MouseButton1 then
33
				return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up")
34
			end
35
			for _,Action in pairs(ContextActionService.Actions) do
36
				for _,Key in pairs(Action.Keys) do
37
					if Key==Input.KeyCode then
38
						Action.Function(Action.Name,Input.UserInputState,Input)
39
					end
40
				end
41
			end
42
			Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
43
			UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
44
		end
45
	end)
46
	InternalData["Mouse"] = Mouse
47
	InternalData["ContextActionService"] = ContextActionService
48
	InternalData["UserInputService"] = UserInputService
49
	Event.Parent = NLS([[
50
		local Player = owner
51
		local Event = script:WaitForChild("UserInput")
52
		local UserInputService = game:GetService("UserInputService")
53
		local Mouse = Player:GetMouse()
54
		local Input = function(Input,gameProcessedEvent)
55
			if gameProcessedEvent then return end
56
			Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
57
		end
58
		UserInputService.InputBegan:Connect(Input)
59
		UserInputService.InputEnded:Connect(Input)
60
		local Hit,Target
61
		while wait(1/30) do
62
			if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
63
				Hit,Target = Mouse.Hit,Mouse.Target
64-
kan.SoundId = "rbxassetid://0"
64+
				Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
65
			end
66
		end
67
	]],owner.Character)
68
end
69
RealGame = game;game = setmetatable({},{
70
	__index = function (self,Index)
71
		local Sandbox = function (Thing)
72
			if Thing:IsA("Player") then
73
				local RealPlayer = Thing
74
				return setmetatable({},{
75
					__index = function (self,Index)
76
						local Type = type(RealPlayer[Index])
77
						if Type == "function" then
78
							if Index:lower() == "getmouse" or Index:lower() == "mouse" then
79
								return function (self)
80
									return InternalData["Mouse"]
81
								end
82
							end
83
							return function (self,...)
84
								return RealPlayer[Index](RealPlayer,...)
85
							end
86
						else
87
							if Index == "PlrObj" then
88
								return RealPlayer
89
							end
90
							return RealPlayer[Index]
91
						end
92
					end;
93
					__tostring = function(self)
94
						return RealPlayer.Name
95
					end
96
				})
97
			end
98
		end
99
		if RealGame[Index] then
100
			local Type = type(RealGame[Index])
101
			if Type == "function" then
102
				if Index:lower() == "getservice" or Index:lower() == "service" then
103
					return function (self,Service)
104
						if Service:lower() == "players" then
105
							return setmetatable({},{
106
								__index = function (self2,Index2)
107
									local RealService = RealGame:GetService(Service)
108
									local Type2 = type(Index2)
109
									if Type2 == "function" then
110
										return function (self,...)
111
											return RealService[Index2](RealService,...)
112
										end
113
									else
114
										if Index2:lower() == "localplayer" then
115
											return Sandbox(owner)
116
										end
117
										return RealService[Index2]
118
									end
119
								end;
120
								__tostring = function(self)
121
									return RealGame:GetService(Service).Name
122
								end
123
							})
124
						elseif Service:lower() == "contextactionservice" then
125
							return InternalData["ContextActionService"]
126
						elseif Service:lower() == "contextactionservice" then
127
							return InternalData["UserInputService"]
128
						elseif Service:lower() == "runservice" then
129
							return setmetatable({},{
130
								__index = function(self2,Index2)
131
									local RealService = RealGame:GetService(Service)
132
									local Type2 = type(Index2)
133
									if Type2 == "function" then
134
										return function (self,...)
135
											return RealService[Index2](RealService,...)
136
										end
137
									else
138
										if Index2:lower() == "bindtorenderstep" then
139
											return function (self,Name,Priority,Function)
140
												return RealGame:GetService("RunService").Stepped:Connect(Function)
141
											end
142
										end
143
										if Index2:lower() == "renderstepped" then
144
											return RealService["Stepped"]
145
										end
146
										return RealService[Index2]
147
									end
148
								end
149
							})
150
						else
151
							return RealGame:GetService(Service)
152
						end
153
					end
154
				end
155
				return function (self,...)
156
					return RealGame[Index](RealGame,...)
157
				end
158
			else
159
				if game:GetService(Index) then
160
					return game:GetService(Index)
161
				end
162
				return RealGame[Index]
163
			end
164
		else
165
			return nil
166
		end
167
	end
168
});Game = game;owner = game:GetService("Players").LocalPlayer;script = {}
169
print("Complete! Running...")
170
171
172
plr = game:GetService("Players").LocalPlayer
173
char = plr.Character
174
hum = char.Humanoid
175
local cam = game.Workspace.CurrentCamera
176
local Controller = plr.PlayerScripts:WaitForChild("ControlScript")
177
Camera = cam
178
local CamInterrupt = false
179
local TwoD = false
180
local TargetInfo = {nil, nil}
181
cam.CameraType = "Custom"
182
t = char.Torso
183
h = char.Head
184
ra = char["Right Arm"]
185
la = char["Left Arm"]
186
rl = char["Right Leg"]
187
ll = char["Left Leg"]
188
tors = char.Torso
189
lleg = char["Left Leg"]
190
root = char.HumanoidRootPart
191
hed = char.Head
192
rleg = char["Right Leg"]
193
rarm = char["Right Arm"]
194
larm = char["Left Arm"]
195
radian = math.rad
196
random = math.random
197
Vec3 = Vector3.new
198
Inst = Instance.new
199
cFrame = CFrame.new
200
Euler = CFrame.fromEulerAnglesXYZ
201
vt = Vector3.new
202
bc = BrickColor.new
203
br = BrickColor.random
204
it = Instance.new
205
cf = CFrame.new
206
local eff = true
207
local shielding = false
208
 
209
local Booleans = {
210
  CamFollow = true,
211
  GyroUse = true
212
}
213
 
214
function lerp(object, newCFrame, alpha)
215
  return object:lerp(newCFrame, alpha)
216
end
217
 
218
local Directer = Inst("BodyGyro", root)
219
Directer.MaxTorque = Vec3(0, 0, 0)
220
Directer.P = 600000
221
local CPart = Inst("Part")
222
CPart.Anchored = true
223
CPart.CanCollide = false
224
CPart.Locked = true
225
CPart.Transparency = 1
226
 
227
local rainbowmode = false
228
local chaosmode = false
229
 
230
kan = Instance.new("Sound",char)
231
kan.Volume = 1.25
232
kan.TimePosition = 0
233
kan.PlaybackSpeed = 1
234
kan.Pitch = 1
235
kan.SoundId = "rbxassetid://382893859"
236
kan.Name = "wrecked"
237
kan.Looped = true
238
kan:Play()
239
 
240
function newTheme(ID,timepos,pitch,vol)
241
local kanz = kan
242
--kanz:Stop()
243
--kanz.Volume = vol
244
--kanz.TimePosition = timepos
245
kanz.PlaybackSpeed = pitch
246
kanz.Pitch = pitch
247
kanz.SoundId = ID
248
kanz.Name = "wrecked"
249
kanz.Looped = true
250
kanz.Volume = 0.3
251
--kanz:Play()
252
--coroutine.resume(coroutine.create(function()
253
--wait(0.05)
254
--end))
255
end
256
 
257
function newThemeCust(ID,timepos,pitch,vol)
258
local kanz = kan
259
kanz:Stop()
260
kanz.Volume = vol
261
kanz.TimePosition = timepos
262
kanz.PlaybackSpeed = pitch
263
kanz.Pitch = pitch
264
kanz.SoundId = ID
265
kanz.Name = "wrecked"
266
kanz.Looped = true
267
kanz:Play()
268
coroutine.resume(coroutine.create(function()
269
wait(0.05)
270
end))
271
end
272
 
273
 
274
 
275
function CameraShake(Times, Power, PlayerTarget)
276
coroutine.resume(coroutine.create(function()
277
FV = Instance.new("BoolValue", PlayerTarget)
278
FV.Name = "CameraShake"
279
for ShakeNum=1,Times do
280
swait()
281
local ef=Power
282
  if ef>=1 then
283
   Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef),math.random(-ef,ef),math.random(-ef,ef))
284
  else
285
   ef=Power*10
286
   Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef)/10,math.random(-ef,ef)/10,math.random(-ef,ef)/10)
287
  end  
288
end
289
Humanoid.CameraOffset = Vector3.new(0,0,0)
290
FV:Destroy()
291
end))
292
end
293
 
294
function CameraEnshaking(Length,Intensity)
295
coroutine.resume(coroutine.create(function()
296
      local intensity = 1*Intensity
297
      local rotM = 0.01*Intensity
298
for i = 0, Length, 0.1 do
299
swait()
300
intensity = intensity - 0.05*Intensity/Length
301
rotM = rotM - 0.0005*Intensity/Length
302
      hum.CameraOffset = Vec3(radian(random(-intensity, intensity)), radian(random(-intensity, intensity)), radian(random(-intensity, intensity)))
303
      cam.CFrame = cam.CFrame * cFrame(radian(random(-intensity, intensity)), radian(random(-intensity, intensity)), radian(random(-intensity, intensity))) * Euler(radian(random(-intensity, intensity)) * rotM, radian(random(-intensity, intensity)) * rotM, radian(random(-intensity, intensity)) * rotM)
304
end
305
Humanoid.CameraOffset = Vec3(0, 0, 0)
306
end))
307
end
308
CamShake=function(Part,Distan,Power,Times)
309
local de=Part.Position
310
for i,v in pairs(workspace:children()) do
311
 if v:IsA("Model") and v:findFirstChild("Humanoid") then
312
for _,c in pairs(v:children()) do
313
if c.ClassName=="Part" and (c.Position - de).magnitude < Distan then
314
local Noob=v.Humanoid
315
if Noob~=nil then
316
coroutine.resume(coroutine.create(function()
317
FV = Instance.new("BoolValue", Noob)
318
FV.Name = "CameraShake"
319
for ShakeNum=1,Times do
320
swait()
321
local ef=Power
322
  if ef>=1 then
323
   Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef),math.random(-ef,ef),math.random(-ef,ef))
324
  else
325
   ef=Power*10
326
   Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef)/10,math.random(-ef,ef)/10,math.random(-ef,ef)/10)
327
  end  
328
end
329
Humanoid.CameraOffset = Vector3.new(0,0,0)
330
FV:Destroy()
331
end))
332
CameraShake(Times, Power, Noob)
333
end
334
end
335
end
336
end
337
end
338
end
339
 
340
function chatfunc(text,color)
341
local chat = coroutine.wrap(function()
342
if Character:FindFirstChild("TalkingBillBoard")~= nil then
343
Character:FindFirstChild("TalkingBillBoard"):destroy()
344
end
345
local naeeym2 = Instance.new("BillboardGui",Character)
346
naeeym2.Size = UDim2.new(0,100,0,40)
347
naeeym2.StudsOffset = Vector3.new(0,3,0)
348
naeeym2.Adornee = Character.Head
349
naeeym2.Name = "TalkingBillBoard"
350
local tecks2 = Instance.new("TextLabel",naeeym2)
351
tecks2.BackgroundTransparency = 1
352
tecks2.BorderSizePixel = 0
353
tecks2.Text = ""
354
tecks2.Font = "SciFi"
355
tecks2.TextSize = 30
356
tecks2.TextStrokeTransparency = 0
357
tecks2.TextColor3 = color
358
tecks2.TextStrokeColor3 = Color3.new(0,0,0)
359
tecks2.Size = UDim2.new(1,0,0.5,0)
360
local tecks3 = Instance.new("TextLabel",naeeym2)
361
tecks3.BackgroundTransparency = 1
362
tecks3.BorderSizePixel = 0
363
tecks3.Text = ""
364
tecks3.Font = "SciFi"
365
tecks3.TextSize = 30
366
tecks3.TextStrokeTransparency = 0
367
tecks3.TextColor3 = Color3.new(0,0,0)
368
tecks3.TextStrokeColor3 = color
369
tecks3.Size = UDim2.new(1,0,0.5,0)
370
coroutine.resume(coroutine.create(function()
371
while true do
372
swait(1)
373
plr.Character.wrecked.Volume = 0.3
374
if chaosmode == true then
375
tecks2.TextColor3 = BrickColor.random().Color
376
tecks3.TextStrokeColor3 = BrickColor.random().Color
377
end
378
tecks2.Position = UDim2.new(0,math.random(-5,5),0,math.random(-5,5))
379
tecks3.Position = UDim2.new(0,math.random(-5,5),0,math.random(-5,5))
380
tecks2.Rotation = math.random(-5,5)
381
tecks3.Rotation = math.random(-5,5)
382
end
383
end))
384
for i = 1,string.len(text),1 do
385
CFuncs["Sound"].Create("rbxassetid://274118116", char, 0.25, 0.115)
386
tecks2.Text = string.sub(text,1,i)
387
tecks3.Text = string.sub(text,1,i)
388-
local halocolor = BrickColor.new("Dark blue")
388+
389-
local halocolor2 = BrickColor.new("Dark blue")
389+
390-
local starcolor = BrickColor.new("Dark blue")
390+
391-
local lunacolor = BrickColor.new("Dark blue")
391+
392-
local lunacolor2 = BrickColor.new("Dark blue")
392+
393-
local wepcolor = BrickColor.new("Dark blue")
393+
394-
local maincolor = BrickColor.new("Dark blue")
394+
395
tecks2.Rotation = tecks2.Rotation - .75
396
tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
397
tecks2.TextTransparency = tecks2.TextTransparency + .04
398
tecks3.Rotation = tecks2.Rotation + .75
399
tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
400
tecks3.TextTransparency = tecks2.TextTransparency + .04
401
end
402
elseif randomrot == 2 then
403
    for i = 1, 50 do
404
swait()
405
tecks2.Rotation = tecks2.Rotation + .75
406
tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
407
tecks2.TextTransparency = tecks2.TextTransparency + .04
408
tecks3.Rotation = tecks2.Rotation - .75
409
tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
410
tecks3.TextTransparency = tecks2.TextTransparency + .04
411
end
412
end
413
naeeym2:Destroy()
414
end)
415
chat()
416
end
417
 
418
 
419
local Create = LoadLibrary("RbxUtility").Create
420
 
421
CFuncs = {
422
    ["Part"] = {
423
        Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
424
            local Part = Create("Part"){
425
                Parent = Parent,
426
                Reflectance = Reflectance,
427
                Transparency = Transparency,
428
                CanCollide = false,
429
                Locked = true,
430
                BrickColor = BrickColor.new(tostring(BColor)),
431
                Name = Name,
432
                Size = Size,
433
                Material = Material,
434
            }
435
            RemoveOutlines(Part)
436
            return Part
437
        end;
438
    };
439
   
440
    ["Mesh"] = {
441
        Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
442
            local Msh = Create(Mesh){
443
                Parent = Part,
444
                Offset = OffSet,
445
                Scale = Scale,
446
            }
447
            if Mesh == "SpecialMesh" then
448
                Msh.MeshType = MeshType
449
                Msh.MeshId = MeshId
450
            end
451
            return Msh
452
        end;
453
    };
454
   
455
    ["Mesh"] = {
456
        Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
457
            local Msh = Create(Mesh){
458
                Parent = Part,
459
                Offset = OffSet,
460
                Scale = Scale,
461
            }
462
            if Mesh == "SpecialMesh" then
463
                Msh.MeshType = MeshType
464
                Msh.MeshId = MeshId
465
            end
466
            return Msh
467
        end;
468
    };
469
   
470
    ["Weld"] = {
471
        Create = function(Parent, Part0, Part1, C0, C1)
472
            local Weld = Create("Weld"){
473
                Parent = Parent,
474
                Part0 = Part0,
475
                Part1 = Part1,
476
                C0 = C0,
477
                C1 = C1,
478
            }
479
            return Weld
480
        end;
481
    };
482
 
483
    ["Sound"] = {
484
        Create = function(id, par, vol, pit)
485
            coroutine.resume(coroutine.create(function()
486
                local S = Create("Sound"){
487
                    Volume = vol,
488
                                        Name = "EffectSoundo",
489
                    Pitch = pit or 1,
490
                    SoundId = id,
491
                    Parent = par or workspace,
492
                }
493
                wait()
494
                S:play()
495
                game:GetService("Debris"):AddItem(S, 10)
496
            end))
497
        end;
498
    };
499
 
500
["LongSound"] = {
501
        Create = function(id, par, vol, pit)
502
            coroutine.resume(coroutine.create(function()
503
                local S = Create("Sound"){
504
                    Volume = vol,
505
                    Pitch = pit or 1,
506
                    SoundId = id,
507
                    Parent = par or workspace,
508
                }
509
                wait()
510
                S:play()
511
                game:GetService("Debris"):AddItem(S, 30)
512
            end))
513
        end;
514
    };
515
   
516
    ["ParticleEmitter"] = {
517
        Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
518
            local fp = Create("ParticleEmitter"){
519
                Parent = Parent,
520
                Color = ColorSequence.new(Color1, Color2),
521
                LightEmission = LightEmission,
522
                Size = Size,
523
                Texture = Texture,
524
                Transparency = Transparency,
525
                ZOffset = ZOffset,
526
                Acceleration = Accel,
527
                Drag = Drag,
528
                LockedToPart = LockedToPart,
529
                VelocityInheritance = VelocityInheritance,
530
                EmissionDirection = EmissionDirection,
531
                Enabled = Enabled,
532
                Lifetime = LifeTime,
533
                Rate = Rate,
534
                Rotation = Rotation,
535
                RotSpeed = RotSpeed,
536
                Speed = Speed,
537
                VelocitySpread = VelocitySpread,
538
            }
539
            return fp
540
        end;
541
    };
542
 
543
    CreateTemplate = {
544
   
545
    };
546
}
547
 
548
 
549
 
550
New = function(Object, Parent, Name, Data)
551
    local Object = Instance.new(Object)
552
    for Index, Value in pairs(Data or {}) do
553
        Object[Index] = Value
554
    end
555
    Object.Parent = Parent
556
    Object.Name = Name
557
    return Object
558
end
559
local halocolor = BrickColor.new("Lime green")
560
local halocolor2 = BrickColor.new("Lime green")
561
local starcolor = BrickColor.new("Lime green")
562
local lunacolor = BrickColor.new("Lime green")
563
local lunacolor2 = BrickColor.new("Lime green")
564
local wepcolor = BrickColor.new("Really red")
565
local maincolor = BrickColor.new("Deep orange")
566
local m = Instance.new("Model",char)
567
local m2 = Instance.new("Model",char)
568
local m3 = Instance.new("Model",char)
569
local mw1 = Instance.new("Model",char)
570
local mw2 = Instance.new("Model",char)
571
 
572
local extrawingmod1 = Instance.new("Model",char)
573
local extrawingmod2 = Instance.new("Model",char)
574
 
575
function CreateParta(parent,transparency,reflectance,material,brickcolor)
576
local p = Instance.new("Part")
577
p.TopSurface = 0
578
p.BottomSurface = 0
579
p.Parent = parent
580
p.Size = Vector3.new(0.1,0.1,0.1)
581
p.Transparency = transparency
582
p.Reflectance = reflectance
583
p.CanCollide = false
584
p.Locked = true
585
p.BrickColor = brickcolor
586
p.Material = material
587
return p
588
end
589
 
590
function CreateMesh(parent,meshtype,x1,y1,z1)
591
local mesh = Instance.new("SpecialMesh",parent)
592
mesh.MeshType = meshtype
593
mesh.Scale = Vector3.new(x1*10,y1*10,z1*10)
594
return mesh
595
end
596
 
597
function CreateSpecialMesh(parent,meshid,x1,y1,z1)
598
local mesh = Instance.new("SpecialMesh",parent)
599
mesh.MeshType = "FileMesh"
600
mesh.MeshId = meshid
601
mesh.Scale = Vector3.new(x1,y1,z1)
602
return mesh
603
end
604
 
605
 
606
function CreateSpecialGlowMesh(parent,meshid,x1,y1,z1)
607
local mesh = Instance.new("SpecialMesh",parent)
608
mesh.MeshType = "FileMesh"
609
mesh.MeshId = meshid
610
mesh.TextureId = "http://www.roblox.com/asset/?id=269748808"
611
mesh.Scale = Vector3.new(x1,y1,z1)
612
mesh.VertexColor = Vector3.new(parent.BrickColor.r, parent.BrickColor.g, parent.BrickColor.b)
613
return mesh
614
end
615
 
616
function CreateWeld(parent,part0,part1,C1X,C1Y,C1Z,C1Xa,C1Ya,C1Za,C0X,C0Y,C0Z,C0Xa,C0Ya,C0Za)
617
local weld = Instance.new("Weld")
618
weld.Parent = parent
619
weld.Part0 = part0
620
weld.Part1 = part1
621
weld.C1 = CFrame.new(C1X,C1Y,C1Z)*CFrame.Angles(C1Xa,C1Ya,C1Za)
622
weld.C0 = CFrame.new(C0X,C0Y,C0Z)*CFrame.Angles(C0Xa,C0Ya,C0Za)
623
return weld
624
end
625
 
626
 
627
--------------
628
local secondchar = Instance.new("Model",char)
629
local GhostCol = BrickColor.new("Dark blue")
630
local sectors = CreateParta(secondchar,1,0,"Neon",GhostCol)
631
CreateMesh(sectors,"Brick",2*8,2*8,1*8)
632
local torsweld = CreateWeld(sectors,root,sectors,1,-1,-2,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
633
 
634
local seclarm = CreateParta(secondchar,1,0,"Neon",GhostCol)
635
CreateMesh(seclarm,"Brick",1*8,2*8,1*8)
636
local larmsweld = CreateWeld(seclarm,sectors,seclarm,1.5,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
637
 
638
local secrarm = CreateParta(secondchar,1,0,"Neon",GhostCol)
639
CreateMesh(secrarm,"Brick",1*8,2*8,1*8)
640
local rarmsweld = CreateWeld(secrarm,sectors,secrarm,-1.5,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
641
 
642
local seclleg = CreateParta(secondchar,1,0,"Neon",GhostCol)
643
CreateMesh(seclleg,"Brick",1*8,2*8,1*8)
644
local llegsweld = CreateWeld(seclleg,sectors,seclleg,0.5,2,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
645
 
646
local secrleg = CreateParta(secondchar,1,0,"Neon",GhostCol)
647
CreateMesh(secrleg,"Brick",1*8,2*8,1*8)
648
local rlegsweld = CreateWeld(secrleg,sectors,secrleg,-0.5,2,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
649
 
650
local seched = CreateParta(secondchar,1,0,"Neon",GhostCol)
651
CreateMesh(seched,"Brick",1*8,1*8,1*8)
652
local hedsweld = CreateWeld(seched,sectors,seched,0,-1.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
653
--------------
654
local sorb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.random())
655
CreateWeld(sorb,rarm,sorb,0,1,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
656
local sorb2 = CreateParta(m,1,1,"SmoothPlastic",BrickColor.random())
657
CreateWeld(sorb2,larm,sorb2,0,1,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
658
 
659
local handlex = CreateParta(mw2,1,1,"Neon",maincolor)
660
CreateMesh(handle,"Brick",0,0,0)
661
local handlexweld = CreateWeld(handlex,tors,handlex,0,-1.5,-1.05,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
662
local valuaring = 10
663
for i = 0, 49 do
664
    valuaring = valuaring + 10
665
rn = CreateParta(mw2,0,0,"Neon",halocolor)
666
CreateMesh(rn,"Brick",0.25,0.1,0.1)
667
CreateWeld(rn,handlex,rn,0,1,0,math.rad(0),math.rad(0),math.rad(valuaring),0,0,0,math.rad(0),math.rad(0),math.rad(0))
668
end
669
 
670
handlex = CreateParta(mw2,1,1,"Neon",maincolor)
671
CreateMesh(handle,"Brick",0,0,0)
672
CreateWeld(handlex,tors,handlex,0,-3,-2.1,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
673
local valuaring = 10
674
for i = 0, 49 do
675
    valuaring = valuaring + 10
676
rn = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
677
CreateMesh(rn,"Brick",0.5,0.2,0.2)
678
CreateWeld(rn,handlex,rn,0,2,0,math.rad(0),math.rad(0),math.rad(valuaring),0,0,0,math.rad(0),math.rad(0),math.rad(0))
679
end
680
 
681
 
682
local handle = CreateParta(m,1,1,"Neon",maincolor)
683
CreateMesh(handle,"Brick",0.5,0.5,0.5)
684
local handleweld = CreateWeld(handle,tors,handle,0,-1.5,-1.05,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
685
 
686
--- Left wing.
687
 
688
local lwing1 = CreateParta(m,1,1,"Neon",maincolor)
689
CreateMesh(handle,"Brick",0.5,0.5,0.5)
690
local lwing1weld = CreateWeld(lwing1,handle,lwing1,3,0,0,math.rad(5),math.rad(0),math.rad(12.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
691
 
692
wed = CreateParta(mw1,0,0,"Neon",halocolor)
693
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
694
CreateWeld(wed,lwing1,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
695
wed = CreateParta(mw1,0,0,"Neon",halocolor)
696
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
697
CreateWeld(wed,lwing1,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
698
A0 = Instance.new('Attachment',wed)
699
wed = CreateParta(mw1,0,0,"Neon",halocolor)
700
CreateMesh(wed,"Wedge",0.05,0.5,3)
701
CreateWeld(wed,lwing1,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
702
A1 = Instance.new('Attachment',wed)
703
wed = CreateParta(mw1,0,0,"Neon",halocolor)
704
CreateMesh(wed,"Wedge",0.05,3,0.5)
705
CreateWeld(wed,lwing1,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
706
 
707
tl1 = Instance.new('Trail',wed)
708
tl1.Attachment0 = A0
709
tl1.Attachment1 = A1
710
--tl1.Texture = "http://www.roblox.com/asset/?id=1049219073"
711
tl1.LightEmission = 1
712
tl1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
713
tl1.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
714
tl1.Lifetime = 0.6
715
 
716
 
717
local lwing2 = CreateParta(m,1,1,"Neon",maincolor)
718
CreateMesh(handle,"Brick",0.5,0.5,0.5)
719
local lwing2weld = CreateWeld(lwing2,handle,lwing2,4,1,0,math.rad(10),math.rad(0),math.rad(25),0,0,0,math.rad(0),math.rad(0),math.rad(0))
720
 
721
wed = CreateParta(mw1,0,0,"Neon",halocolor)
722
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
723
CreateWeld(wed,lwing2,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
724
wed = CreateParta(mw1,0,0,"Neon",halocolor)
725
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
726
CreateWeld(wed,lwing2,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
727
A0 = Instance.new('Attachment',wed)
728
wed = CreateParta(mw1,0,0,"Neon",halocolor)
729
CreateMesh(wed,"Wedge",0.05,0.5,3)
730
CreateWeld(wed,lwing2,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
731
A1 = Instance.new('Attachment',wed)
732
wed = CreateParta(mw1,0,0,"Neon",halocolor)
733
CreateMesh(wed,"Wedge",0.05,3,0.5)
734
CreateWeld(wed,lwing2,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
735
 
736
tl2 = Instance.new('Trail',wed)
737
tl2.Attachment0 = A0
738
tl2.Attachment1 = A1
739
--tl2.Texture = "http://www.roblox.com/asset/?id=1049219073"
740
tl2.LightEmission = 1
741
tl2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
742
tl2.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
743
tl2.Lifetime = 0.6
744
 
745
local lwing3 = CreateParta(m,1,1,"Neon",maincolor)
746
CreateMesh(handle,"Brick",0.5,0.5,0.5)
747
local lwing3weld = CreateWeld(lwing3,handle,lwing3,4.75,2,0,math.rad(15),math.rad(0),math.rad(37.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
748
 
749
wed = CreateParta(mw1,0,0,"Neon",halocolor)
750
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
751
CreateWeld(wed,lwing3,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
752
wed = CreateParta(mw1,0,0,"Neon",halocolor)
753
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
754
CreateWeld(wed,lwing3,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
755
A0 = Instance.new('Attachment',wed)
756
wed = CreateParta(mw1,0,0,"Neon",halocolor)
757
CreateMesh(wed,"Wedge",0.05,0.5,3)
758
CreateWeld(wed,lwing3,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
759
A1 = Instance.new('Attachment',wed)
760
wed = CreateParta(mw1,0,0,"Neon",halocolor)
761
CreateMesh(wed,"Wedge",0.05,3,0.5)
762
CreateWeld(wed,lwing3,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
763
 
764
tl3 = Instance.new('Trail',wed)
765
tl3.Attachment0 = A0
766
tl3.Attachment1 = A1
767
--tl3.Texture = "http://www.roblox.com/asset/?id=1049219073"
768
tl3.LightEmission = 1
769
tl3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
770
tl3.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
771
tl3.Lifetime = 0.6
772
 
773
tl1.Enabled = false
774
tl2.Enabled = false
775
tl3.Enabled = false
776
local lwing4 = CreateParta(m,1,1,"Neon",maincolor)
777
CreateMesh(handle,"Brick",0.5,0.5,0.5)
778
local lwing4weld = CreateWeld(lwing4,handle,lwing4,5.75,3,0,math.rad(20),math.rad(0),math.rad(50),0,0,0,math.rad(0),math.rad(0),math.rad(0))
779
 
780
wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
781
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
782
CreateWeld(wed,lwing4,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
783
wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
784
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
785
CreateWeld(wed,lwing4,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
786
wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
787
CreateMesh(wed,"Wedge",0.05,0.5,3)
788
CreateWeld(wed,lwing4,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
789
wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
790
CreateMesh(wed,"Wedge",0.05,3,0.5)
791
CreateWeld(wed,lwing4,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
792
 
793
local lwing5 = CreateParta(m,1,1,"Neon",maincolor)
794
CreateMesh(handle,"Brick",0.5,0.5,0.5)
795
local lwing5weld = CreateWeld(lwing5,handle,lwing5,6.75,4,0,math.rad(25),math.rad(0),math.rad(62.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
796
 
797
wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
798
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
799
CreateWeld(wed,lwing5,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
800
wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
801
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
802
CreateWeld(wed,lwing5,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
803
wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
804
CreateMesh(wed,"Wedge",0.05,0.5,3)
805
CreateWeld(wed,lwing5,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
806
wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
807
CreateMesh(wed,"Wedge",0.05,3,0.5)
808
CreateWeld(wed,lwing5,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
809
 
810
local lwing6 = CreateParta(m,1,1,"Neon",maincolor)
811
CreateMesh(handle,"Brick",0.5,0.5,0.5)
812
local lwing6weld = CreateWeld(lwing6,handle,lwing6,7.75,5,0,math.rad(30),math.rad(0),math.rad(75),0,0,0,math.rad(0),math.rad(0),math.rad(0))
813
 
814
wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
815
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
816
CreateWeld(wed,lwing6,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
817
wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
818
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
819
CreateWeld(wed,lwing6,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
820
wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
821
CreateMesh(wed,"Wedge",0.05,0.5,3)
822
CreateWeld(wed,lwing6,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
823
wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
824
CreateMesh(wed,"Wedge",0.05,3,0.5)
825
CreateWeld(wed,lwing6,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
826
 
827
-- Right wing.
828
 
829
local rwing1 = CreateParta(m,1,1,"Neon",maincolor)
830
CreateMesh(handle,"Brick",0.5,0.5,0.5)
831
local rwing1weld = CreateWeld(rwing1,handle,rwing1,-3,0,0,math.rad(5),math.rad(0),math.rad(-12.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
832
 
833
wed = CreateParta(mw2,0,0,"Neon",halocolor)
834
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
835
CreateWeld(wed,rwing1,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
836
A0 = Instance.new('Attachment',wed)
837
wed = CreateParta(mw2,0,0,"Neon",halocolor)
838
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
839
CreateWeld(wed,rwing1,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
840
wed = CreateParta(mw2,0,0,"Neon",halocolor)
841
CreateMesh(wed,"Wedge",0.05,0.5,3)
842
CreateWeld(wed,rwing1,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
843
wed = CreateParta(mw2,0,0,"Neon",halocolor)
844
CreateMesh(wed,"Wedge",0.05,3,0.5)
845
CreateWeld(wed,rwing1,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
846
A1 = Instance.new('Attachment',wed)
847
 
848
tr1 = Instance.new('Trail',wed)
849
tr1.Attachment0 = A0
850
tr1.Attachment1 = A1
851
--tr1.Texture = "http://www.roblox.com/asset/?id=1049219073"
852
tr1.LightEmission = 1
853
tr1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
854
tr1.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
855
tr1.Lifetime = 0.6
856
 
857
local rwing2 = CreateParta(m,1,1,"Neon",maincolor)
858
CreateMesh(handle,"Brick",0.5,0.5,0.5)
859
local rwing2weld = CreateWeld(rwing2,handle,rwing2,-4,1,0,math.rad(10),math.rad(0),math.rad(-25),0,0,0,math.rad(0),math.rad(0),math.rad(0))
860
 
861
wed = CreateParta(mw2,0,0,"Neon",halocolor)
862
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
863
CreateWeld(wed,rwing2,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
864
A0 = Instance.new('Attachment',wed)
865
wed = CreateParta(mw2,0,0,"Neon",halocolor)
866
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
867
CreateWeld(wed,rwing2,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
868
wed = CreateParta(mw2,0,0,"Neon",halocolor)
869
CreateMesh(wed,"Wedge",0.05,0.5,3)
870
CreateWeld(wed,rwing2,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
871
wed = CreateParta(mw2,0,0,"Neon",halocolor)
872
CreateMesh(wed,"Wedge",0.05,3,0.5)
873
CreateWeld(wed,rwing2,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
874
A1 = Instance.new('Attachment',wed)
875
 
876
tr2 = Instance.new('Trail',wed)
877
tr2.Attachment0 = A0
878
tr2.Attachment1 = A1
879
--tr2.Texture = "http://www.roblox.com/asset/?id=1049219073"
880
tr2.LightEmission = 1
881
tr2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
882
tr2.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
883
tr2.Lifetime = 0.6
884
 
885
local rwing3 = CreateParta(m,1,1,"Neon",maincolor)
886
CreateMesh(handle,"Brick",0.5,0.5,0.5)
887
local rwing3weld = CreateWeld(rwing3,handle,rwing3,-4.75,2,0,math.rad(15),math.rad(0),math.rad(-37.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
888
 
889
wed = CreateParta(mw2,0,0,"Neon",halocolor)
890
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
891
CreateWeld(wed,rwing3,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
892
A0 = Instance.new('Attachment',wed)
893
wed = CreateParta(mw2,0,0,"Neon",halocolor)
894
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
895
CreateWeld(wed,rwing3,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
896
wed = CreateParta(mw2,0,0,"Neon",halocolor)
897
CreateMesh(wed,"Wedge",0.05,0.5,3)
898
CreateWeld(wed,rwing3,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
899
wed = CreateParta(mw2,0,0,"Neon",halocolor)
900
CreateMesh(wed,"Wedge",0.05,3,0.5)
901
CreateWeld(wed,rwing3,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
902
A1 = Instance.new('Attachment',wed)
903
 
904
tr3 = Instance.new('Trail',wed)
905
tr3.Attachment0 = A0
906
tr3.Attachment1 = A1
907
--tr3.Texture = "http://www.roblox.com/asset/?id=1049219073"
908
tr3.LightEmission = 1
909
tr3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
910
tr3.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
911
tr3.Lifetime = 0.6
912
 
913
 
914
local rwing4 = CreateParta(m,1,1,"Neon",maincolor)
915
CreateMesh(handle,"Brick",0.5,0.5,0.5)
916
local rwing4weld = CreateWeld(rwing4,handle,rwing4,-5.75,3,0,math.rad(20),math.rad(0),math.rad(-50),0,0,0,math.rad(0),math.rad(0),math.rad(0))
917
 
918
wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
919
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
920
CreateWeld(wed,rwing4,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
921
wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
922
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
923
CreateWeld(wed,rwing4,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
924
wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
925
CreateMesh(wed,"Wedge",0.05,0.5,3)
926
CreateWeld(wed,rwing4,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
927
wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
928
CreateMesh(wed,"Wedge",0.05,3,0.5)
929
CreateWeld(wed,rwing4,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
930
 
931
local rwing5 = CreateParta(m,1,1,"Neon",maincolor)
932
CreateMesh(handle,"Brick",0.5,0.5,0.5)
933
local rwing5weld = CreateWeld(rwing5,handle,rwing5,-6.75,4,0,math.rad(25),math.rad(0),math.rad(-62.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
934
 
935
wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
936
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
937
CreateWeld(wed,rwing5,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
938
wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
939
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
940
CreateWeld(wed,rwing5,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
941
wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
942
CreateMesh(wed,"Wedge",0.05,0.5,3)
943
CreateWeld(wed,rwing5,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
944
wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
945
CreateMesh(wed,"Wedge",0.05,3,0.5)
946
CreateWeld(wed,rwing5,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
947
 
948
local rwing6 = CreateParta(m,1,1,"Neon",maincolor)
949
CreateMesh(handle,"Brick",0.5,0.5,0.5)
950
local rwing6weld = CreateWeld(rwing6,handle,rwing6,-7.75,3,0,math.rad(30),math.rad(0),math.rad(-75),0,0,0,math.rad(0),math.rad(0),math.rad(0))
951
 
952
wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
953
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
954
CreateWeld(wed,rwing6,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
955
wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
956
CreateMesh(wed,"Wedge",0.05,0.5,0.5)
957
CreateWeld(wed,rwing6,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
958
wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
959
CreateMesh(wed,"Wedge",0.05,0.5,3)
960
CreateWeld(wed,rwing6,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
961
wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
962
CreateMesh(wed,"Wedge",0.05,3,0.5)
963
CreateWeld(wed,rwing6,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
964
 
965
---- HERES THE RING
966
 
967
 
968
--[[ran = CreateParta(m2,0,0,"SmoothPlastic",wepcolor)
969
CreateMesh(ran,"Wedge",1.02,1.02,1.02)
970
CreateWeld(ran,larm,ran,0,0.15,0,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
971
ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
972
CreateMesh(ran,"Wedge",0.9,0.9,1.025)
973
CreateWeld(ran,larm,ran,0,0.155,0,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
974
ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
975
CreateMesh(ran,"Wedge",1.025,0.9,0.9)
976
CreateWeld(ran,larm,ran,0,0.155,-0.025,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
977
 
978
 
979
gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
980
CreateMesh(gan,"Brick",1.075,0.1,1.075)
981
CreateWeld(gan,larm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
982
 
983
gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
984
CreateMesh(gan,"Brick",1.075,0.1,1.075)
985
CreateWeld(gan,larm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
986
 
987
 
988
 
989
gan = CreateParta(m2,0,0,"Neon",halocolor2)
990
CreateMesh(gan,"Brick",1.095,0.035,1.095)
991
CreateWeld(gan,larm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
992
 
993
gan = CreateParta(m2,0,0,"Neon",halocolor2)
994
CreateMesh(gan,"Brick",1.095,0.035,1.095)
995
CreateWeld(gan,larm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
996
 
997
gane = CreateParta(m3,0,0,"SmoothPlastic",lunacolor2)
998
CreateMesh(gane,"Brick",1.0625,0.2,1.0625)
999
CreateWeld(gane,larm,gane,0,0.6,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
1000
 
1001
star = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
1002
CreateSpecialMesh(star,"http://www.roblox.com/asset/?id=45428961",2.5,2.5,2.5)
1003
CreateWeld(star,larm,star,0,0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
1004
starl = CreateParta(m3,0,0,"SmoothPlastic",starcolor)
1005
CreateSpecialMesh(starl,"http://www.roblox.com/asset/?id=45428961",1.95,2.55,1.95)
1006
CreateWeld(starl,larm,starl,0,0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
1007
 
1008
--- second ring
1009
 
1010
ran = CreateParta(m2,0,0,"SmoothPlastic",wepcolor)
1011
CreateMesh(ran,"Wedge",1.02,1.02,1.02)
1012
CreateWeld(ran,rarm,ran,0,0.15,0,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
1013
ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
1014
CreateMesh(ran,"Wedge",0.9,0.9,1.025)
1015
CreateWeld(ran,rarm,ran,0,0.155,0,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
1016
ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
1017
CreateMesh(ran,"Wedge",1.025,0.9,0.9)
1018
CreateWeld(ran,rarm,ran,0,0.155,-0.025,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
1019
 
1020
gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
1021
CreateMesh(gan,"Brick",1.075,0.1,1.075)
1022
CreateWeld(gan,rarm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
1023
 
1024
gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
1025
CreateMesh(gan,"Brick",1.075,0.1,1.075)
1026
CreateWeld(gan,rarm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
1027
 
1028
 
1029
 
1030
gan = CreateParta(m2,0,0,"Neon",halocolor2)
1031
CreateMesh(gan,"Brick",1.095,0.035,1.095)
1032
CreateWeld(gan,rarm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
1033
 
1034
gan = CreateParta(m2,0,0,"Neon",halocolor2)
1035
CreateMesh(gan,"Brick",1.095,0.035,1.095)
1036
CreateWeld(gan,rarm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
1037
 
1038
gane = CreateParta(m3,0,0,"SmoothPlastic",lunacolor2)
1039
CreateMesh(gane,"Brick",1.0625,0.2,1.0625)
1040
CreateWeld(gane,rarm,gane,0,0.6,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
1041
 
1042
star = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
1043
CreateSpecialMesh(star,"http://www.roblox.com/asset/?id=45428961",2.5,2.5,2.5)
1044
CreateWeld(star,rarm,star,0,-0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
1045
starl = CreateParta(m3,0,0,"SmoothPlastic",starcolor)
1046
CreateSpecialMesh(starl,"http://www.roblox.com/asset/?id=45428961",1.95,2.55,1.95)
1047
CreateWeld(starl,rarm,starl,0,-0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))]]--
1048
 
1049
 
1050
 
1051
for i, v in pairs(m:GetChildren()) do
1052
if v:IsA("Part") then
1053
v.BrickColor = BrickColor.new("Dark blue")
1054
v.Material = "Glass"
1055
end
1056
end
1057
for i, v in pairs(m2:GetChildren()) do
1058
if v:IsA("Part") then
1059
v.BrickColor = BrickColor.new("Dark blue")
1060
v.Material = "Granite"
1061
end
1062
end
1063
for i, v in pairs(m3:GetChildren()) do
1064
if v:IsA("Part") then
1065
v.BrickColor = BrickColor.new("Dark blue")
1066
v.Material = "Neon"
1067
end
1068
end
1069
for i, v in pairs(mw2:GetChildren()) do
1070
if v:IsA("Part") then
1071
v.BrickColor = BrickColor.new("Dark blue")
1072
v.Material = "Neon"
1073
end
1074
end
1075
for i, v in pairs(mw1:GetChildren()) do
1076
if v:IsA("Part") then
1077
v.Transparency = 1
1078
v.BrickColor = BrickColor.new("Dark blue")
1079
v.Material = "Neon"
1080
end
1081
end
1082
for i, v in pairs(extrawingmod1:GetChildren()) do
1083
if v:IsA("Part") then
1084
v.Transparency = 1
1085
v.BrickColor = BrickColor.new("Dark blue")
1086
v.Material = "Neon"
1087
end
1088
end
1089
for i, v in pairs(extrawingmod2:GetChildren()) do
1090
if v:IsA("Part") then
1091
v.Transparency = 1
1092
v.BrickColor = BrickColor.new("Dark blue")
1093
v.Material = "Neon"
1094
end
1095
end
1096
local MAINRUINCOLOR = BrickColor.new("Dark blue")
1097
------
1098
--Thanks for using Build2Script Plugin by jarredbcv!
1099
local player = "LocalPlayer"
1100
local Character = game.Players[player].Character
1101
local Torso = Character.Torso
1102
local LeftArm = Character["Left Arm"]
1103
local RightArm = Character["Right Arm"]
1104
local LeftLeg = Character["Left Leg"]
1105
local RightLeg = Character["Right Leg"]
1106
local Head = Character.Head
1107
local RootPart = Character.HumanoidRootPart
1108
1109
local m = Instance.new("Model")
1110
m.Name = "VTX"
1111
--[[m1 = Instance.new("Model")
1112
m1.Name = "Torso"
1113
m1.Parent = m
1114
m2 = Instance.new("Model")
1115
m2.Name = "Head"
1116
m2.Parent = m
1117
m3 = Instance.new("Model")
1118
m3.Name = "RightArm"
1119
m3.Parent = m
1120
m4 = Instance.new("Model")
1121
m4.Name = "LeftLeg"
1122
m4.Parent = m
1123
m5 = Instance.new("Model")
1124
m5.Name = "RightLeg"
1125
m5.Parent = m
1126
m6 = Instance.new("Model")
1127
m6.Name = "LeftArm"
1128
m6.Parent = m--]]
1129
p1 = Instance.new("Part", m)
1130
p1.BrickColor = BrickColor.new("Dark blue")
1131
p1.Material = Enum.Material.SmoothPlastic
1132
p1.Reflectance = 0.5
1133
p1.Name = "DiamondMesh"
1134
p1.CFrame = CFrame.new(4.43766785, 155.454346, 39.9999847, -4.37113883e-008, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -1, -4.3159529e-005, -4.37113883e-008)
1135
p1.CanCollide = false
1136
p1.FormFactor = Enum.FormFactor.Symmetric
1137
p1.Elasticity = 0
1138
p1.Size = Vector3.new(0.512455523, 0.512455463, 0.512455463)
1139
b1 = Instance.new("SpecialMesh", p1)
1140
b1.MeshId = "http://www.roblox.com/Asset/?id=9756362"
1141
b1.TextureId = ""
1142
b1.MeshType = Enum.MeshType.FileMesh
1143
b1.Name = "Mesh"
1144
b1.Scale = Vector3.new(0.512455523, 0.230604947, 0.102491096)
1145
--[[p2 = Instance.new("Part", m)
1146
p2.BrickColor = BrickColor.new("Dark blue")
1147
p2.Name = "Torso"
1148
p2.CFrame = CFrame.new(3.81999993, 156.276108, 40, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
1149
p2.CanCollide = false
1150
p2.FormFactor = Enum.FormFactor.Symmetric
1151
p2.Size = Vector3.new(2, 2, 1)
1152
p2.BottomSurface = Enum.SurfaceType.Smooth
1153
p2.TopSurface = Enum.SurfaceType.Smooth--]]
1154
p2 = Torso
1155
p3 = Instance.new("Part", m)
1156
p3.BrickColor = BrickColor.new("Dark blue")
1157
p3.Material = Enum.Material.SmoothPlastic
1158
p3.Name = "apart"
1159
p3.CFrame = CFrame.new(3.18215108, 156.94046, 39.948761, 3.0473866e-005, -1, -3.05175763e-005, -3.05603571e-005, -3.05185094e-005, 1, -1, -3.04729328e-005, -3.05612884e-005)
1160
p3.CanCollide = false
1161
p3.FormFactor = Enum.FormFactor.Custom
1162
p3.Size = Vector3.new(0.819928885, 0.256227732, 0.973665357)
1163
p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1164
p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1165
p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1166
p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1167
p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1168
p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1169
b2 = Instance.new("SpecialMesh", p3)
1170
b2.MeshType = Enum.MeshType.Brick
1171
b2.Name = "Mesh"
1172
b2.Scale = Vector3.new(1, 1.01999998, 0.5)
1173
p4 = Instance.new("Part", m)
1174
p4.BrickColor = BrickColor.new("Dark blue")
1175
p4.Material = Enum.Material.Neon
1176
p4.Name = "apart"
1177
p4.CFrame = CFrame.new(4.59140301, 156.658615, 39.9999924, -1, 4.30663385e-005, 4.43833414e-010, 1.85536919e-009, 5.3449472e-005, -1, -4.30663349e-005, -1, -5.3449472e-005)
1178
p4.CanCollide = false
1179
p4.FormFactor = Enum.FormFactor.Custom
1180
p4.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
1181
p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1182
p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1183
p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1184
p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1185
p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1186
p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1187
b3 = Instance.new("SpecialMesh", p4)
1188
b3.MeshType = Enum.MeshType.Cylinder
1189
b3.Name = "Mesh"
1190
b3.Scale = Vector3.new(0.421655804, 0.25, 0.25)
1191
p5 = Instance.new("Part", m)
1192
p5.BrickColor = BrickColor.new("Dark blue")
1193
p5.Material = Enum.Material.SmoothPlastic
1194
p5.Name = "apart"
1195
p5.CFrame = CFrame.new(4.28393078, 155.428711, 39.9999886, -4.37102727e-008, 2.75157674e-012, 1, -4.3159529e-005, 1, -1.96809236e-012, -1, -4.3159529e-005, -4.37139782e-008)
1196
p5.CanCollide = false
1197
p5.FormFactor = Enum.FormFactor.Custom
1198
p5.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
1199
p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1200
p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1201
p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1202
p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1203
p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1204
p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1205
b4 = Instance.new("SpecialMesh", p5)
1206
b4.MeshType = Enum.MeshType.Cylinder
1207
b4.Name = "Mesh"
1208
b4.Scale = Vector3.new(0.417481065, 1, 1)
1209
p6 = Instance.new("Part", m)
1210
p6.BrickColor = BrickColor.new("Dark blue")
1211
p6.Name = "apart"
1212
p6.CFrame = CFrame.new(4.59140301, 157.171066, 39.9999886, -1, 4.30663385e-005, 4.43833775e-010, 1.85536952e-009, 5.3449472e-005, -1, -4.30663349e-005, -1, -5.3449472e-005)
1213
p6.CanCollide = false
1214
p6.FormFactor = Enum.FormFactor.Custom
1215
p6.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
1216
p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1217
p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1218
p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1219
p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1220
p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1221
p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1222
b5 = Instance.new("SpecialMesh", p6)
1223
b5.MeshType = Enum.MeshType.Cylinder
1224
b5.Name = "Mesh"
1225
b5.Scale = Vector3.new(0.421655804, 0.25, 0.25)
1226
p7 = Instance.new("Part", m)
1227
p7.BrickColor = BrickColor.new("Dark blue")
1228
p7.Material = Enum.Material.Neon
1229
p7.Name = "apart"
1230
p7.CFrame = CFrame.new(4.07894754, 156.453629, 39.974369, 1, 2.75143797e-012, -2.37226807e-014, -8.16291479e-014, 1, 0, -3.6618486e-012, 0, 1)
1231
p7.CanCollide = false
1232
p7.FormFactor = Enum.FormFactor.Custom
1233
p7.Size = Vector3.new(0.512455523, 1.94733071, 0.768683136)
1234
p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1235
p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1236
p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1237
p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1238
p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1239
p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1240
b6 = Instance.new("SpecialMesh", p7)
1241
b6.MeshType = Enum.MeshType.Brick
1242
b6.Name = "Mesh"
1243
b6.Scale = Vector3.new(1.04999995, 0.899999976, 0.25)
1244
p8 = Instance.new("Part", m)
1245
p8.BrickColor = BrickColor.new("Dark blue")
1246
p8.Material = Enum.Material.SmoothPlastic
1247
p8.Name = "apart"
1248
p8.CFrame = CFrame.new(4.38642168, 155.428711, 39.9999886, 1, 2.75143797e-012, -2.37226807e-014, -8.16291479e-014, 1, 0, -3.6618486e-012, 0, 1)
1249
p8.CanCollide = false
1250
p8.FormFactor = Enum.FormFactor.Custom
1251
p8.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
1252
p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1253
p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1254
p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1255
p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1256
p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1257
p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1258
b7 = Instance.new("SpecialMesh", p8)
1259
b7.MeshType = Enum.MeshType.Cylinder
1260
b7.Name = "Mesh"
1261
b7.Scale = Vector3.new(0.417481065, 1, 1)
1262
p9 = Instance.new("Part", m)
1263
p9.BrickColor = BrickColor.new("Dark blue")
1264
p9.Material = Enum.Material.Neon
1265
p9.Name = "apart"
1266
p9.CFrame = CFrame.new(4.59140301, 156.914856, 39.9999886, -1, 9.14653137e-005, 3.05217691e-005, 9.14681077e-005, 1, 9.14653137e-005, -3.05133999e-005, 9.14681077e-005, -1)
1267
p9.CanCollide = false
1268
p9.FormFactor = Enum.FormFactor.Custom
1269
p9.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
1270
p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1271
p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1272
p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1273
p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1274
p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1275
p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1276
b8 = Instance.new("SpecialMesh", p9)
1277
b8.MeshType = Enum.MeshType.Brick
1278
b8.Name = "Mesh"
1279
b8.Scale = Vector3.new(0.421655804, 0.5, 0.150000006)
1280
p10 = Instance.new("Part", m)
1281
p10.BrickColor = BrickColor.new("Dark blue")
1282
p10.Material = Enum.Material.SmoothPlastic
1283
p10.Name = "apart"
1284
p10.CFrame = CFrame.new(2.66969562, 157.811615, 40.8967972, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738642e-005)
1285
p10.CanCollide = false
1286
p10.FormFactor = Enum.FormFactor.Custom
1287
p10.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
1288
p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1289
p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1290
p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1291
p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1292
p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1293
p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1294
b9 = Instance.new("SpecialMesh", p10)
1295
b9.MeshType = Enum.MeshType.Brick
1296
b9.Name = "Mesh"
1297
b9.Scale = Vector3.new(0.5, 1.00999999, 1.00999999)
1298
p11 = Instance.new("Part", m)
1299
p11.BrickColor = BrickColor.new("Dark blue")
1300
p11.Material = Enum.Material.Neon
1301
p11.Name = "apart"
1302
p11.CFrame = CFrame.new(2.66969562, 157.811615, 39.1032066, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738642e-005)
1303
p11.CanCollide = false
1304
p11.FormFactor = Enum.FormFactor.Custom
1305
p11.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
1306
p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1307
p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1308
p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1309
p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1310
p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1311
p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1312
b10 = Instance.new("SpecialMesh", p11)
1313
b10.MeshType = Enum.MeshType.Brick
1314
b10.Name = "Mesh"
1315
b10.Scale = Vector3.new(0.25, 1.01999998, 1.01999998)
1316
p12 = Instance.new("Part", m)
1317
p12.BrickColor = BrickColor.new("Dark blue")
1318
p12.Material = Enum.Material.SmoothPlastic
1319
p12.Name = "apart"
1320
p12.CFrame = CFrame.new(2.66969562, 157.811615, 39.1032104, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738642e-005)
1321
p12.CanCollide = false
1322
p12.FormFactor = Enum.FormFactor.Custom
1323
p12.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
1324
p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1325
p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1326
p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1327
p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1328
p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1329
p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1330
b11 = Instance.new("SpecialMesh", p12)
1331
b11.MeshType = Enum.MeshType.Brick
1332
b11.Name = "Mesh"
1333
b11.Scale = Vector3.new(0.5, 1.00999999, 1.00999999)
1334
p13 = Instance.new("Part", m)
1335
p13.BrickColor = BrickColor.new("Dark blue")
1336
p13.Material = Enum.Material.Neon
1337
p13.Name = "apart"
1338
p13.CFrame = CFrame.new(4.2839303, 155.428711, 40, -4.37154632e-008, -3.63797881e-012, 1, -4.31595254e-005, 1, 0, -1, -4.3159529e-005, -4.37144365e-008)
1339
p13.CanCollide = false
1340
p13.FormFactor = Enum.FormFactor.Custom
1341
p13.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
1342
p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1343
p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1344
p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1345
p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1346
p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1347
p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1348
b12 = Instance.new("SpecialMesh", p13)
1349
b12.MeshType = Enum.MeshType.Cylinder
1350
b12.Name = "Mesh"
1351
b12.Scale = Vector3.new(0.208740532, 1.00999999, 1.00999999)
1352
p14 = Instance.new("Part", m)
1353
p14.BrickColor = BrickColor.new("Dark blue")
1354
p14.Material = Enum.Material.SmoothPlastic
1355
p14.Name = "apart"
1356
p14.CFrame = CFrame.new(3.82271981, 155.428711, 40, 1, -3.63780295e-012, 4.07496259e-012, 1.88656274e-012, 1, -3.63797881e-012, -3.04822834e-012, 8.24700363e-020, 1)
1357
p14.CanCollide = false
1358
p14.FormFactor = Enum.FormFactor.Custom
1359
p14.Size = Vector3.new(1.02491105, 0.245498881, 2.04982185)
1360
p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1361
p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1362
p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1363
p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1364
p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1365
p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1366
b13 = Instance.new("SpecialMesh", p14)
1367
b13.MeshType = Enum.MeshType.Brick
1368
b13.Name = "Mesh"
1369
b13.Scale = Vector3.new(1.00999999, 0.421655744, 1.00999999)
1370
p15 = Instance.new("Part", m)
1371
p15.BrickColor = BrickColor.new("Dark blue")
1372
p15.Material = Enum.Material.Neon
1373
p15.Name = "apart"
1374
p15.CFrame = CFrame.new(4.59140301, 156.914841, 39.7437744, -1, 4.30663349e-005, 4.50222831e-010, 1.85340143e-009, 5.34494757e-005, -1, -4.30663349e-005, -1, -5.3449472e-005)
1375
p15.CanCollide = false
1376
p15.FormFactor = Enum.FormFactor.Custom
1377
p15.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
1378
p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1379
p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1380
p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1381
p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1382
p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1383
p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1384
b14 = Instance.new("SpecialMesh", p15)
1385
b14.MeshType = Enum.MeshType.Cylinder
1386
b14.Name = "Mesh"
1387
b14.Scale = Vector3.new(0.421655804, 0.25, 0.25)
1388
p16 = Instance.new("Part", m)
1389
p16.BrickColor = BrickColor.new("Dark blue")
1390
p16.Material = Enum.Material.Neon
1391
p16.Name = "apart"
1392
p16.CFrame = CFrame.new(2.66969585, 157.811615, 40.8968086, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738605e-005)
1393
p16.CanCollide = false
1394
p16.FormFactor = Enum.FormFactor.Custom
1395
p16.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
1396
p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1397
p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1398
p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1399
p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1400
p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1401
p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1402
b15 = Instance.new("SpecialMesh", p16)
1403
b15.MeshType = Enum.MeshType.Brick
1404
b15.Name = "Mesh"
1405
b15.Scale = Vector3.new(0.25, 1.01999998, 1.01999998)
1406
p17 = Instance.new("Part", m)
1407
p17.BrickColor = BrickColor.new("Dark blue")
1408
p17.Material = Enum.Material.SmoothPlastic
1409
p17.Name = "apart"
1410
p17.CFrame = CFrame.new(4.59140301, 156.914825, 40.0000038, -1, 4.30663349e-005, 4.51109372e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663349e-005, -1, -5.34494793e-005)
1411
p17.CanCollide = false
1412
p17.FormFactor = Enum.FormFactor.Custom
1413
p17.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
1414
p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1415
p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1416
p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1417
p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1418
p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1419
p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1420
b16 = Instance.new("SpecialMesh", p17)
1421
b16.MeshType = Enum.MeshType.Cylinder
1422
b16.Name = "Mesh"
1423
b16.Scale = Vector3.new(0.417480975, 1, 1)
1424
p18 = Instance.new("Part", m)
1425
p18.BrickColor = BrickColor.new("Dark blue")
1426
p18.Material = Enum.Material.Neon
1427
p18.Name = "apart"
1428
p18.CFrame = CFrame.new(4.59140301, 156.914825, 40.2562294, -1, 4.30663349e-005, 4.51109372e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663349e-005, -1, -5.34494793e-005)
1429
p18.CanCollide = false
1430
p18.FormFactor = Enum.FormFactor.Custom
1431
p18.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
1432
p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1433
p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1434
p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1435
p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1436
p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1437
p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1438
b17 = Instance.new("SpecialMesh", p18)
1439
b17.MeshType = Enum.MeshType.Cylinder
1440
b17.Name = "Mesh"
1441
b17.Scale = Vector3.new(0.421655804, 0.25, 0.25)
1442
p19 = Instance.new("Part", m)
1443
p19.BrickColor = BrickColor.new("Dark blue")
1444
p19.Material = Enum.Material.Neon
1445
p19.Name = "apart"
1446
p19.CFrame = CFrame.new(4.59140301, 156.914825, 40.0000038, -1, 4.30663349e-005, 4.51109372e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663349e-005, -1, -5.34494793e-005)
1447
p19.CanCollide = false
1448
p19.FormFactor = Enum.FormFactor.Custom
1449
p19.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
1450
p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1451
p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1452
p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1453
p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1454
p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1455
p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1456
b18 = Instance.new("SpecialMesh", p19)
1457
b18.MeshType = Enum.MeshType.Brick
1458
b18.Name = "Mesh"
1459
b18.Scale = Vector3.new(0.421655804, 0.5, 0.150000006)
1460
p20 = Instance.new("Part", m)
1461
p20.BrickColor = BrickColor.new("Dark blue")
1462
p20.Material = Enum.Material.SmoothPlastic
1463
p20.Name = "apart"
1464
p20.CFrame = CFrame.new(4.46329021, 156.914825, 40.0000191, -3.05612921e-005, 1, -3.05175745e-005, -3.04729401e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738533e-005)
1465
p20.CanCollide = false
1466
p20.FormFactor = Enum.FormFactor.Custom
1467
p20.Size = Vector3.new(2.04982209, 0.256227732, 1.02491093)
1468
p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1469
p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1470
p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1471
p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1472
p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1473
p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1474
b19 = Instance.new("SpecialMesh", p20)
1475
b19.MeshType = Enum.MeshType.Torso
1476
b19.Name = "Mesh"
1477
p21 = Instance.new("Part", m)
1478
p21.BrickColor = BrickColor.new("Dark blue")
1479
p21.Material = Enum.Material.SmoothPlastic
1480
p21.Name = "apart"
1481
p21.CFrame = CFrame.new(4.07894802, 156.453613, 39.9743843, 1, -3.63797881e-012, 4.9720783e-012, 0, 1, 7.27595761e-012, -2.30360175e-012, 1.27329258e-011, 1)
1482
p21.CanCollide = false
1483
p21.FormFactor = Enum.FormFactor.Custom
1484
p21.Size = Vector3.new(0.512455523, 1.94733071, 0.768683136)
1485
p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1486
p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1487
p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1488
p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1489
p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1490
p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1491
b20 = Instance.new("SpecialMesh", p21)
1492
b20.MeshType = Enum.MeshType.Brick
1493
b20.Name = "Mesh"
1494
b20.Scale = Vector3.new(1.03999996, 1.00999999, 1.00999999)
1495
p22 = Instance.new("Part", m)
1496
p22.BrickColor = BrickColor.new("Dark blue")
1497
p22.Material = Enum.Material.Neon
1498
p22.Name = "apart"
1499
p22.CFrame = CFrame.new(3.18215108, 156.940445, 39.9487801, 3.04738605e-005, -1, -3.05175818e-005, -3.05603644e-005, -3.05185094e-005, 1, -1, -3.0472931e-005, -3.05612739e-005)
1500
p22.CanCollide = false
1501
p22.FormFactor = Enum.FormFactor.Custom
1502
p22.Size = Vector3.new(0.819928885, 0.256227732, 0.973665357)
1503
p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1504
p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1505
p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1506
p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1507
p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1508
p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1509
b21 = Instance.new("SpecialMesh", p22)
1510
b21.MeshType = Enum.MeshType.Brick
1511
b21.Name = "Mesh"
1512
b21.Scale = Vector3.new(1, 1.02999997, 0.25)
1513
p23 = Instance.new("Part", m)
1514
p23.BrickColor = BrickColor.new("Dark blue")
1515
p23.Material = Enum.Material.SmoothPlastic
1516
p23.Name = "apart"
1517
p23.CFrame = CFrame.new(3.82272005, 156.402344, 40.0000038, 1, -3.63797881e-012, 4.97202279e-012, 0, 1, 7.27595761e-012, -2.30448993e-012, 1.45519152e-011, 1)
1518
p23.CanCollide = false
1519
p23.FormFactor = Enum.FormFactor.Custom
1520
p23.Size = Vector3.new(1.02491105, 2.04982185, 2.04982185)
1521
p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1522
p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1523
p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1524
p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1525
p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1526
p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1527
p24 = Instance.new("Part", m)
1528
p24.BrickColor = BrickColor.new("Dark blue")
1529
p24.Material = Enum.Material.SmoothPlastic
1530
p24.Name = "apart"
1531
p24.CFrame = CFrame.new(3.82272005, 155.172455, 39.4875526, 1, -3.63797881e-012, 4.97202279e-012, 0, 1, 7.27595761e-012, -2.30448993e-012, 1.45519152e-011, 1)
1532
p24.CanCollide = false
1533
p24.FormFactor = Enum.FormFactor.Custom
1534
p24.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
1535
p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1536
p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1537
p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1538
p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1539
p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1540
p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1541
b22 = Instance.new("SpecialMesh", p24)
1542
b22.MeshType = Enum.MeshType.Brick
1543
b22.Name = "Mesh"
1544
b22.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1545
p25 = Instance.new("Part", m)
1546
p25.BrickColor = BrickColor.new("Dark blue")
1547
p25.Material = Enum.Material.SmoothPlastic
1548
p25.Name = "apart"
1549
p25.CFrame = CFrame.new(3.82272005, 155.172455, 40.512455, 1, -3.63797881e-012, 4.97202279e-012, 0, 1, 7.27595761e-012, -2.30448993e-012, 1.45519152e-011, 1)
1550
p25.CanCollide = false
1551
p25.FormFactor = Enum.FormFactor.Custom
1552
p25.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
1553
p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1554
p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1555
p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1556
p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1557
p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1558
p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1559
b23 = Instance.new("SpecialMesh", p25)
1560
b23.MeshType = Enum.MeshType.Brick
1561
b23.Name = "Mesh"
1562
b23.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1563
p26 = Instance.new("Part", m)
1564
p26.BrickColor = BrickColor.new("Dark blue")
1565
p26.Material = Enum.Material.SmoothPlastic
1566
p26.Name = "apart"
1567
p26.CFrame = CFrame.new(2.66969609, 157.8116, 39.1032181, -3.05612921e-005, 1, -3.05175745e-005, -3.04729401e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738514e-005)
1568
p26.CanCollide = false
1569
p26.FormFactor = Enum.FormFactor.Custom
1570
p26.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
1571
p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1572
p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1573
p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1574
p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1575
p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1576
p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1577
b24 = Instance.new("SpecialMesh", p26)
1578
b24.MeshType = Enum.MeshType.Brick
1579
b24.Name = "Mesh"
1580
p27 = Instance.new("Part", m)
1581
p27.BrickColor = BrickColor.new("Dark blue")
1582
p27.Material = Enum.Material.SmoothPlastic
1583
p27.Name = "apart"
1584
p27.CFrame = CFrame.new(3.82269621, 157.4785, 40.0000038, 5.34812571e-005, -1, -4.31585941e-005, 1, 5.34812607e-005, 1.38243195e-009, 9.4587449e-010, -4.31585941e-005, 1)
1585
p27.CanCollide = false
1586
p27.FormFactor = Enum.FormFactor.Custom
1587
p27.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
1588
p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1589
p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1590
p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1591
p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1592
p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1593
p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1594
b25 = Instance.new("SpecialMesh", p27)
1595
b25.MeshType = Enum.MeshType.Cylinder
1596
b25.Name = "Mesh"
1597
b25.Scale = Vector3.new(0.417481065, 1, 1)
1598
p28 = Instance.new("Part", m)
1599
p28.BrickColor = BrickColor.new("Dark blue")
1600
p28.Material = Enum.Material.SmoothPlastic
1601
p28.Name = "apart"
1602
p28.CFrame = CFrame.new(3.18215108, 157.8116, 39.1032181, -3.05612921e-005, 1, -3.05175745e-005, -3.04729401e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738533e-005)
1603
p28.CanCollide = false
1604
p28.FormFactor = Enum.FormFactor.Custom
1605
p28.Size = Vector3.new(0.256227762, 0.768683195, 0.768683195)
1606
p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1607
p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1608
p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1609
p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1610
p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1611
p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1612
b26 = Instance.new("SpecialMesh", p28)
1613
b26.MeshType = Enum.MeshType.Wedge
1614
b26.Name = "Mesh"
1615
p29 = Instance.new("Part", m)
1616
p29.BrickColor = BrickColor.new("Dark blue")
1617
p29.Material = Enum.Material.SmoothPlastic
1618
p29.Name = "apart"
1619
p29.CFrame = CFrame.new(3.82272005, 156.556107, 40.0000076, 1, -3.63797881e-012, 4.9720783e-012, 0, 1, 7.27595761e-012, -2.30360175e-012, 1.27329258e-011, 1)
1620
p29.CanCollide = false
1621
p29.FormFactor = Enum.FormFactor.Custom
1622
p29.Size = Vector3.new(1.02491105, 1.74234843, 1.84483957)
1623
p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1624
p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1625
p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1626
p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1627
p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1628
p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1629
b27 = Instance.new("SpecialMesh", p29)
1630
b27.MeshType = Enum.MeshType.Brick
1631
b27.Name = "Mesh"
1632
b27.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
1633
p30 = Instance.new("Part", m)
1634
p30.BrickColor = BrickColor.new("Dark blue")
1635
p30.Material = Enum.Material.SmoothPlastic
1636
p30.Name = "apart"
1637
p30.CFrame = CFrame.new(2.92592335, 156.914825, 39.1032219, -0.000152631605, -1, -3.05091999e-005, 6.0986782e-005, -3.05185058e-005, 1, -1, 0.000152629742, 6.09914605e-005)
1638
p30.CanCollide = false
1639
p30.FormFactor = Enum.FormFactor.Custom
1640
p30.Size = Vector3.new(0.256227762, 0.768683195, 1.02491093)
1641
p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1642
p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1643
p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1644
p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1645
p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1646
p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1647
b28 = Instance.new("SpecialMesh", p30)
1648
b28.MeshType = Enum.MeshType.Wedge
1649
b28.Name = "Mesh"
1650
p31 = Instance.new("Part", m)
1651
p31.BrickColor = BrickColor.new("Dark blue")
1652
p31.Material = Enum.Material.SmoothPlastic
1653
p31.Name = "apart"
1654
p31.CFrame = CFrame.new(2.92592359, 156.91481, 40.8968201, -0.000152631605, -1, -3.05091999e-005, 6.0986782e-005, -3.05185058e-005, 1, -1, 0.000152629742, 6.09914605e-005)
1655
p31.CanCollide = false
1656
p31.FormFactor = Enum.FormFactor.Custom
1657
p31.Size = Vector3.new(0.256227762, 0.768683195, 1.02491093)
1658
p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1659
p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1660
p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1661
p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1662
p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1663
p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1664
b29 = Instance.new("SpecialMesh", p31)
1665
b29.MeshType = Enum.MeshType.Wedge
1666
b29.Name = "Mesh"
1667
p32 = Instance.new("Part", m)
1668
p32.BrickColor = BrickColor.new("Dark blue")
1669
p32.Material = Enum.Material.SmoothPlastic
1670
p32.Name = "apart"
1671
p32.CFrame = CFrame.new(3.82272077, 156.556091, 40.9736748, 1, 3.05171161e-005, 3.05180401e-005, 3.05180401e-005, -1, -3.04301611e-005, 3.05171125e-005, 3.04310706e-005, -1)
1672
p32.CanCollide = false
1673
p32.FormFactor = Enum.FormFactor.Custom
1674
p32.Size = Vector3.new(1.02491105, 1.74234843, 0.245498881)
1675
p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1676
p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1677
p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1678
p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1679
p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1680
p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1681
b30 = Instance.new("SpecialMesh", p32)
1682
b30.MeshType = Enum.MeshType.Wedge
1683
b30.Name = "Mesh"
1684
b30.Scale = Vector3.new(1.00999999, 1.00999999, 0.333984762)
1685
p33 = Instance.new("Part", m)
1686
p33.BrickColor = BrickColor.new("Dark blue")
1687
p33.Material = Enum.Material.SmoothPlastic
1688
p33.Name = "apart"
1689
p33.CFrame = CFrame.new(2.66969681, 157.8116, 40.8968201, -3.05612957e-005, 1, -3.05175763e-005, -3.04729383e-005, -3.05185094e-005, -1, -1, -3.05603571e-005, 3.04738496e-005)
1690
p33.CanCollide = false
1691
p33.FormFactor = Enum.FormFactor.Custom
1692
p33.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
1693
p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1694
p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1695
p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1696
p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1697
p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1698
p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1699
b31 = Instance.new("SpecialMesh", p33)
1700
b31.MeshType = Enum.MeshType.Brick
1701
b31.Name = "Mesh"
1702
p34 = Instance.new("Part", m)
1703
p34.BrickColor = BrickColor.new("Dark blue")
1704
p34.Material = Enum.Material.SmoothPlastic
1705
p34.Name = "apart"
1706
p34.CFrame = CFrame.new(3.82269669, 157.581009, 40.0000153, 5.34812571e-005, -1, -4.31585904e-005, 1, 5.34812607e-005, 1.38061296e-009, 9.47693479e-010, -4.31585977e-005, 1)
1707
p34.CanCollide = false
1708
p34.FormFactor = Enum.FormFactor.Custom
1709
p34.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
1710
p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1711
p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1712
p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1713
p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1714
p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1715
p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1716
b32 = Instance.new("SpecialMesh", p34)
1717
b32.MeshType = Enum.MeshType.Cylinder
1718
b32.Name = "Mesh"
1719
b32.Scale = Vector3.new(0.417481065, 0.899999976, 1)
1720
p35 = Instance.new("Part", m)
1721
p35.BrickColor = BrickColor.new("Dark blue")
1722
p35.Material = Enum.Material.SmoothPlastic
1723
p35.Name = "apart"
1724
p35.CFrame = CFrame.new(3.82272053, 155.633682, 40.4612274, 1, 3.05171161e-005, 3.05180365e-005, 3.05180401e-005, -1, -3.04301593e-005, 3.05171143e-005, 3.04310706e-005, -1)
1725
p35.CanCollide = false
1726
p35.FormFactor = Enum.FormFactor.Custom
1727
p35.Size = Vector3.new(1.02491105, 0.245498881, 0.922419906)
1728
p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1729
p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1730
p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1731
p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1732
p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1733
p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1734
b33 = Instance.new("SpecialMesh", p35)
1735
b33.MeshType = Enum.MeshType.Wedge
1736
b33.Name = "Mesh"
1737
b33.Scale = Vector3.new(1.00999999, 0.421655744, 1)
1738
p36 = Instance.new("Part", m)
1739
p36.BrickColor = BrickColor.new("Dark blue")
1740
p36.Material = Enum.Material.SmoothPlastic
1741
p36.Name = "apart"
1742
p36.CFrame = CFrame.new(3.82272053, 156.556107, 39.0263557, -1, -3.04301484e-005, 3.05180511e-005, 3.04310906e-005, -1, 3.05171161e-005, 3.05171197e-005, 3.0518022e-005, 1)
1743
p36.CanCollide = false
1744
p36.FormFactor = Enum.FormFactor.Custom
1745
p36.Size = Vector3.new(1.02491105, 1.74234843, 0.245498881)
1746
p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1747
p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1748
p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1749
p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1750
p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1751
p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1752
b34 = Instance.new("SpecialMesh", p36)
1753
b34.MeshType = Enum.MeshType.Wedge
1754
b34.Name = "Mesh"
1755
b34.Scale = Vector3.new(1.00999999, 1.00999999, 0.333984762)
1756
p37 = Instance.new("Part", m)
1757
p37.BrickColor = BrickColor.new("Dark blue")
1758
p37.Material = Enum.Material.SmoothPlastic
1759
p37.Name = "apart"
1760
p37.CFrame = CFrame.new(3.82272053, 155.633682, 39.5388374, -1, -3.04301484e-005, 3.05180511e-005, 3.04310906e-005, -1, 3.05171161e-005, 3.05171197e-005, 3.0518022e-005, 1)
1761
p37.CanCollide = false
1762
p37.FormFactor = Enum.FormFactor.Custom
1763
p37.Size = Vector3.new(1.02491105, 0.245498881, 0.922419906)
1764
p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1765
p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1766
p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1767
p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1768
p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1769
p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1770
b35 = Instance.new("SpecialMesh", p37)
1771
b35.MeshType = Enum.MeshType.Wedge
1772
b35.Name = "Mesh"
1773
b35.Scale = Vector3.new(1.00999999, 0.421655744, 1)
1774
p38 = Instance.new("Part", m)
1775
p38.BrickColor = BrickColor.new("Dark blue")
1776
p38.Material = Enum.Material.SmoothPlastic
1777
p38.Name = "apart"
1778
p38.CFrame = CFrame.new(3.18215156, 157.811584, 40.8968277, -3.05612957e-005, 1, -3.05175708e-005, -3.04729365e-005, -3.05185131e-005, -1, -1, -3.05603608e-005, 3.04738478e-005)
1779
p38.CanCollide = false
1780
p38.FormFactor = Enum.FormFactor.Custom
1781
p38.Size = Vector3.new(0.256227762, 0.768683195, 0.768683195)
1782
p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1783
p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1784
p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1785
p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1786
p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1787
p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1788
b36 = Instance.new("SpecialMesh", p38)
1789
b36.MeshType = Enum.MeshType.Wedge
1790
b36.Name = "Mesh"
1791
p39 = Instance.new("Part", m)
1792
p39.BrickColor = BrickColor.new("Dark blue")
1793
p39.Material = Enum.Material.SmoothPlastic
1794
p39.Name = "apart"
1795
p39.CFrame = CFrame.new(3.18215156, 156.940414, 39.9487991, 3.04738587e-005, -1, -3.05175854e-005, -3.05603608e-005, -3.05185022e-005, 1, -1, -3.0472931e-005, -3.05612703e-005)
1796
p39.CanCollide = false
1797
p39.FormFactor = Enum.FormFactor.Custom
1798
p39.Size = Vector3.new(0.819928885, 0.256227732, 0.973665357)
1799
p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1800
p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1801
p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1802
p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1803
p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1804
p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1805
b37 = Instance.new("SpecialMesh", p39)
1806
b37.MeshType = Enum.MeshType.Brick
1807
b37.Name = "Mesh"
1808
b37.Scale = Vector3.new(1, 1.00999999, 1.00999999)
1809
p40 = Instance.new("Part", m)
1810
p40.BrickColor = BrickColor.new("Dark blue")
1811
p40.Material = Enum.Material.SmoothPlastic
1812
p40.Name = "apart"
1813
p40.CFrame = CFrame.new(3.18215179, 156.94043, 40.0000381, 3.04738587e-005, -1, -3.05175854e-005, -3.05603608e-005, -3.05185022e-005, 1, -1, -3.0472931e-005, -3.05612703e-005)
1814
p40.CanCollide = false
1815
p40.FormFactor = Enum.FormFactor.Custom
1816
p40.Size = Vector3.new(1.53736663, 0.256227732, 0.973665357)
1817
p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1818
p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1819
p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1820
p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1821
p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1822
p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1823
b38 = Instance.new("SpecialMesh", p40)
1824
b38.MeshType = Enum.MeshType.Torso
1825
b38.Name = "Mesh"
1826
p41 = Instance.new("Part", m)
1827
p41.BrickColor = BrickColor.new("Dark blue")
1828
p41.Material = Enum.Material.SmoothPlastic
1829
p41.Name = "apart"
1830
p41.CFrame = CFrame.new(4.43766689, 158.093491, 39.9999962, -1, 4.30663349e-005, 4.51109372e-010, 1.85900717e-009, 5.34494684e-005, -1, -4.30663422e-005, -1, -5.34494757e-005)
1831
p41.CanCollide = false
1832
p41.FormFactor = Enum.FormFactor.Custom
1833
p41.Size = Vector3.new(0.409964442, 0.922419786, 0.922419786)
1834
p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1835
p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1836
p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1837
p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1838
p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1839
p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1840
b39 = Instance.new("SpecialMesh", p41)
1841
b39.MeshType = Enum.MeshType.Sphere
1842
b39.Name = "Mesh"
1843
p42 = Instance.new("Part", m)
1844
p42.BrickColor = BrickColor.new("Dark blue")
1845
p42.Material = Enum.Material.SmoothPlastic
1846
p42.Name = "apart"
1847
p42.CFrame = CFrame.new(3.82272005, 158.093506, 39.2825584, -3.05612848e-005, -1, -3.05175745e-005, -3.05603535e-005, 3.05185167e-005, -1, 1, -3.05603608e-005, -3.05612921e-005)
1848
p42.CanCollide = false
1849
p42.FormFactor = Enum.FormFactor.Custom
1850
p42.Size = Vector3.new(0.307473212, 0.512455463, 0.512455463)
1851
p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1852
p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1853
p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1854
p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1855
p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1856
p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1857
b40 = Instance.new("SpecialMesh", p42)
1858
b40.MeshType = Enum.MeshType.Sphere
1859
b40.Name = "Mesh"
1860
p43 = Instance.new("Part", m)
1861
p43.BrickColor = BrickColor.new("Dark blue")
1862
p43.Material = Enum.Material.SmoothPlastic
1863
p43.Name = "apart"
1864
p43.CFrame = CFrame.new(4.3864212, 158.093475, 39.9999924, -1, 4.30663349e-005, 4.50970816e-010, 1.8563604e-009, 5.34494684e-005, -1, -4.30663422e-005, -1, -5.3449472e-005)
1865
p43.CanCollide = false
1866
p43.FormFactor = Enum.FormFactor.Custom
1867
p43.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
1868
p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1869
p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1870
p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1871
p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1872
p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1873
p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1874
b41 = Instance.new("SpecialMesh", p43)
1875
b41.MeshType = Enum.MeshType.Cylinder
1876
b41.Name = "Mesh"
1877
b41.Scale = Vector3.new(0.417480975, 1, 1)
1878
p44 = Instance.new("Part", m)
1879
p44.BrickColor = BrickColor.new("Dark blue")
1880
p44.Material = Enum.Material.SmoothPlastic
1881
p44.Name = "apart"
1882
p44.CFrame = CFrame.new(4.18143892, 158.093475, 39.9999886, -4.37157723e-008, -2.66764388e-012, -1, 1, -3.05612884e-005, -4.37103154e-008, -3.05612884e-005, -1, -2.66975331e-012)
1883
p44.CanCollide = false
1884
p44.FormFactor = Enum.FormFactor.Custom
1885
p44.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
1886
p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1887
p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1888
p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1889
p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1890
p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1891
p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1892
b42 = Instance.new("SpecialMesh", p44)
1893
b42.MeshType = Enum.MeshType.Cylinder
1894
b42.Name = "Mesh"
1895
b42.Scale = Vector3.new(0.626221538, 1, 1)
1896
p45 = Instance.new("Part", m)
1897
p45.BrickColor = BrickColor.new("Dark blue")
1898
p45.Material = Enum.Material.Neon
1899
p45.Name = "apart"
1900
p45.CFrame = CFrame.new(4.18143892, 158.093475, 39.9999886, -4.37157723e-008, -2.66764388e-012, -1, 1, -3.05612884e-005, -4.37103154e-008, -3.05612884e-005, -1, -2.66975331e-012)
1901
p45.CanCollide = false
1902
p45.FormFactor = Enum.FormFactor.Custom
1903
p45.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
1904
p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1905
p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1906
p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1907
p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1908
p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1909
p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1910
b43 = Instance.new("SpecialMesh", p45)
1911
b43.MeshType = Enum.MeshType.Cylinder
1912
b43.Name = "Mesh"
1913
b43.Scale = Vector3.new(0.313110769, 1.00999999, 1.00999999)
1914
p46 = Instance.new("Part", m)
1915
p46.BrickColor = BrickColor.new("Dark blue")
1916
p46.Material = Enum.Material.SmoothPlastic
1917
p46.Name = "apart"
1918
p46.CFrame = CFrame.new(3.82271981, 158.093491, 40.7174263, -3.05612884e-005, -1, -3.05175763e-005, -3.05603571e-005, 3.05185131e-005, -1, 1, -3.05603571e-005, -3.05612884e-005)
1919
p46.CanCollide = false
1920
p46.FormFactor = Enum.FormFactor.Custom
1921
p46.Size = Vector3.new(0.307473212, 0.512455463, 0.512455463)
1922
p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1923
p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1924
p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1925
p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1926
p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1927
p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1928
b44 = Instance.new("SpecialMesh", p46)
1929
b44.MeshType = Enum.MeshType.Sphere
1930
b44.Name = "Mesh"
1931
p47 = Instance.new("Part", m)
1932
p47.BrickColor = BrickColor.new("Dark blue")
1933
--[[p47.Name = "Head"
1934
p47.CFrame = CFrame.new(3.81999993, 157.776108, 40, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
1935
p47.CanCollide = false
1936
p47.FormFactor = Enum.FormFactor.Symmetric
1937
p47.Size = Vector3.new(2, 1, 1)
1938
p47.BottomSurface = Enum.SurfaceType.Smooth
1939
p47.TopSurface = Enum.SurfaceType.Smooth--]]
1940
p47 = Head
1941
p48 = Instance.new("Part", m)
1942
p48.BrickColor = BrickColor.new("Dark blue")
1943
p48.Material = Enum.Material.Neon
1944
p48.Name = "apart"
1945
p48.CFrame = CFrame.new(3.05403709, 158.529068, 39.8975182, -3.05612884e-005, 1, -3.05166468e-005, 6.10798015e-005, -3.05147805e-005, -1, -1, -3.05631511e-005, -6.10788702e-005)
1946
p48.CanCollide = false
1947
p48.FormFactor = Enum.FormFactor.Custom
1948
p48.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
1949
p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1950
p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1951
p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1952
p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1953
p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1954
p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1955
b45 = Instance.new("SpecialMesh", p48)
1956
b45.MeshType = Enum.MeshType.Wedge
1957
b45.Name = "Mesh"
1958
b45.Scale = Vector3.new(0.208740532, 1.00999999, 0.626221359)
1959
p49 = Instance.new("Part", m)
1960
p49.BrickColor = BrickColor.new("Dark blue")
1961
p49.Material = Enum.Material.SmoothPlastic
1962
p49.Name = "apart"
1963
p49.CFrame = CFrame.new(4.69389391, 158.09346, 39.9999847, -1, 4.30663385e-005, 4.47471393e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663385e-005, -1, -5.34494757e-005)
1964
p49.CanCollide = false
1965
p49.FormFactor = Enum.FormFactor.Custom
1966
p49.Size = Vector3.new(0.245498881, 0.409964353, 0.245498881)
1967
p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1968
p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1969
p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1970
p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1971
p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1972
p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1973
b46 = Instance.new("SpecialMesh", p49)
1974
b46.MeshType = Enum.MeshType.Brick
1975
b46.Name = "Mesh"
1976
b46.Scale = Vector3.new(0.417481035, 1.00999999, 0.834961772)
1977
p50 = Instance.new("Part", m)
1978
p50.BrickColor = BrickColor.new("Dark blue")
1979
p50.Material = Enum.Material.SmoothPlastic
1980
p50.Name = "apart"
1981
p50.CFrame = CFrame.new(4.64264822, 158.09346, 39.9999847, -1, 4.30663385e-005, 4.47471393e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663385e-005, -1, -5.34494757e-005)
1982
p50.CanCollide = false
1983
p50.FormFactor = Enum.FormFactor.Custom
1984
p50.Size = Vector3.new(0.245498881, 0.409964353, 0.307473242)
1985
p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1986
p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1987
p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1988
p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1989
p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1990
p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1991
b47 = Instance.new("SpecialMesh", p50)
1992
b47.MeshType = Enum.MeshType.Brick
1993
b47.Name = "Mesh"
1994
b47.Scale = Vector3.new(0.417481035, 1, 1)
1995
p51 = Instance.new("Part", m)
1996
p51.BrickColor = BrickColor.new("Dark blue")
1997
p51.Material = Enum.Material.Neon
1998
p51.Name = "apart"
1999
p51.CFrame = CFrame.new(3.05403709, 158.195969, 39.8974838, -0.000274701917, -0.99999994, -3.04719488e-005, 0.000183053358, -3.05222311e-005, 1, -0.99999994, 0.000274696329, 0.000183061755)
2000
p51.CanCollide = false
2001
p51.FormFactor = Enum.FormFactor.Custom
2002
p51.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
2003
p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2004
p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2005
p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2006
p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2007
p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2008
p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2009
b48 = Instance.new("SpecialMesh", p51)
2010
b48.MeshType = Enum.MeshType.Wedge
2011
b48.Name = "Mesh"
2012
b48.Scale = Vector3.new(0.208740532, 1.00999999, 1)
2013
p52 = Instance.new("Part", m)
2014
p52.BrickColor = BrickColor.new("Dark blue")
2015
p52.Material = Enum.Material.SmoothPlastic
2016
p52.Name = "apart"
2017
p52.CFrame = CFrame.new(3.2077713, 158.272842, 40.7174377, 0.000228409393, -0.965923071, 0.258828998, -0.000213359453, 0.258829027, 0.96592319, -0.99999994, -0.000275849539, -0.00014696976)
2018
p52.CanCollide = false
2019
p52.FormFactor = Enum.FormFactor.Custom
2020
p52.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
2021
p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2022
p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2023
p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2024
p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2025
p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2026
p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2027
b49 = Instance.new("SpecialMesh", p52)
2028
b49.MeshType = Enum.MeshType.Wedge
2029
b49.Name = "Mesh"
2030
b49.Scale = Vector3.new(0.208740532, 1, 0.626221359)
2031
p53 = Instance.new("Part", m)
2032
p53.BrickColor = BrickColor.new("Dark blue")
2033
p53.Material = Enum.Material.SmoothPlastic
2034
p53.Name = "apart"
2035
p53.CFrame = CFrame.new(3.82271767, 158.093475, 39.9999886, -3.05612375e-005, -1, -3.04430723e-005, -3.05603317e-005, 3.0502677e-005, -1.00000012, 1, -3.05603717e-005, -3.05613357e-005)
2036
p53.CanCollide = false
2037
p53.FormFactor = Enum.FormFactor.Custom
2038
p53.Size = Vector3.new(1.43487537, 0.512455463, 0.512455463)
2039
p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2040
p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2041
p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2042
p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2043
p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2044
p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2045
b50 = Instance.new("SpecialMesh", p53)
2046
b50.MeshType = Enum.MeshType.Cylinder
2047
b50.Name = "Mesh"
2048
p54 = Instance.new("Part", m)
2049
p54.BrickColor = BrickColor.new("Dark blue")
2050
p54.Material = Enum.Material.SmoothPlastic
2051
p54.Name = "apart"
2052
p54.CFrame = CFrame.new(3.82271767, 158.093491, 39.4363022, 3.07936716e-008, -3.99507094e-011, 1, -1.00000012, -0.000152631663, -2.78741936e-008, 0.000152631561, -1, 2.18273732e-011)
2053
p54.CanCollide = false
2054
p54.FormFactor = Enum.FormFactor.Custom
2055
p54.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
2056
p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2057
p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2058
p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2059
p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2060
p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2061
p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2062
b51 = Instance.new("SpecialMesh", p54)
2063
b51.MeshType = Enum.MeshType.Torso
2064
b51.Name = "Mesh"
2065
b51.Scale = Vector3.new(1, 0.417480916, 1)
2066
p55 = Instance.new("Part", m)
2067
p55.BrickColor = BrickColor.new("Dark blue")
2068
p55.Material = Enum.Material.SmoothPlastic
2069
p55.Name = "apart"
2070
p55.CFrame = CFrame.new(3.05403447, 158.195984, 39.6669159, -0.000274701975, -0.99999994, -3.05464528e-005, 0.000183053344, -3.05380709e-005, 1.00000012, -1, 0.000274696329, 0.000183061798)
2071
p55.CanCollide = false
2072
p55.FormFactor = Enum.FormFactor.Custom
2073
p55.Size = Vector3.new(0.358718932, 0.512455463, 0.512455463)
2074
p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2075
p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2076
p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2077
p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2078
p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2079
p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2080
b52 = Instance.new("SpecialMesh", p55)
2081
b52.MeshType = Enum.MeshType.Wedge
2082
b52.Name = "Mesh"
2083
p56 = Instance.new("Part", m)
2084
p56.BrickColor = BrickColor.new("Dark blue")
2085
p56.Material = Enum.Material.SmoothPlastic
2086
p56.Name = "apart"
2087
p56.CFrame = CFrame.new(2.7465601, 158.529114, 39.8975143, -0.000274701975, -0.999999881, -3.05464528e-005, 0.000183053344, -3.05380672e-005, 1.00000012, -1, 0.0002746963, 0.000183061798)
2088
p56.CanCollide = false
2089
p56.FormFactor = Enum.FormFactor.Custom
2090
p56.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
2091
p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2092
p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2093
p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2094
p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2095
p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2096
p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2097
b53 = Instance.new("SpecialMesh", p56)
2098
b53.MeshType = Enum.MeshType.Wedge
2099
b53.Name = "Mesh"
2100
b53.Scale = Vector3.new(0.417481065, 0.417480946, 0.626221359)
2101
p57 = Instance.new("Part", m)
2102
p57.BrickColor = BrickColor.new("Dark blue")
2103
p57.Material = Enum.Material.SmoothPlastic
2104
p57.Name = "apart"
2105
p57.CFrame = CFrame.new(3.05403423, 158.529099, 40.1024895, -3.05613503e-005, 0.999999881, -3.04421301e-005, 6.10797433e-005, -3.04989571e-005, -1.00000012, -1, -3.05630856e-005, -6.10789066e-005)
2106
p57.CanCollide = false
2107
p57.FormFactor = Enum.FormFactor.Custom
2108
p57.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
2109
p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2110
p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2111
p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2112
p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2113
p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2114
p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2115
b54 = Instance.new("SpecialMesh", p57)
2116
b54.MeshType = Enum.MeshType.Wedge
2117
b54.Name = "Mesh"
2118
b54.Scale = Vector3.new(0.417481065, 1, 0.626221359)
2119
p58 = Instance.new("Part", m)
2120
p58.BrickColor = BrickColor.new("Dark blue")
2121
p58.Material = Enum.Material.SmoothPlastic
2122
p58.Name = "apart"
2123
p58.CFrame = CFrame.new(3.82271719, 158.093506, 40.5636864, -1.18223397e-007, 6.08786355e-011, 0.999999881, 1.00000012, -4.36484697e-008, 5.95373422e-008, 4.37539711e-008, 1, 6.57935928e-011)
2124
p58.CanCollide = false
2125
p58.FormFactor = Enum.FormFactor.Custom
2126
p58.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
2127
p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2128
p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2129
p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2130
p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2131
p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2132
p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2133
b55 = Instance.new("SpecialMesh", p58)
2134
b55.MeshType = Enum.MeshType.Torso
2135
b55.Name = "Mesh"
2136
b55.Scale = Vector3.new(1, 0.417480916, 1)
2137
p59 = Instance.new("Part", m)
2138
p59.BrickColor = BrickColor.new("Dark blue")
2139
p59.Material = Enum.Material.SmoothPlastic
2140
p59.Name = "apart"
2141
p59.CFrame = CFrame.new(3.82271719, 158.093506, 39.9999809, 5.34067403e-005, -0.999999881, -4.31585322e-005, 1.00000012, 5.34654391e-005, 1.43842538e-009, 9.74580416e-010, -4.31586632e-005, 1)
2142
p59.CanCollide = false
2143
p59.FormFactor = Enum.FormFactor.Custom
2144
p59.Size = Vector3.new(1.02491105, 1.02491093, 1.02491093)
2145
p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2146
p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2147
p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2148
p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2149
p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2150
p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2151
b56 = Instance.new("SpecialMesh", p59)
2152
b56.MeshType = Enum.MeshType.Brick
2153
b56.Name = "Mesh"
2154
p60 = Instance.new("Part", m)
2155
p60.BrickColor = BrickColor.new("Dark blue")
2156
p60.Material = Enum.Material.Neon
2157
p60.Name = "apart"
2158
p60.CFrame = CFrame.new(3.05403423, 158.529114, 40.1024895, -3.05613539e-005, 0.999999881, -3.04421301e-005, 6.10797433e-005, -3.04989553e-005, -1.00000012, -1, -3.05630856e-005, -6.10789139e-005)
2159
p60.CanCollide = false
2160
p60.FormFactor = Enum.FormFactor.Custom
2161
p60.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
2162
p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2163
p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2164
p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2165
p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2166
p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2167
p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2168
b57 = Instance.new("SpecialMesh", p60)
2169
b57.MeshType = Enum.MeshType.Wedge
2170
b57.Name = "Mesh"
2171
b57.Scale = Vector3.new(0.208740532, 1.00999999, 0.626221359)
2172
p61 = Instance.new("Part", m)
2173
p61.BrickColor = BrickColor.new("Dark blue")
2174
p61.Material = Enum.Material.SmoothPlastic
2175
p61.Name = "apart"
2176
p61.CFrame = CFrame.new(3.05403423, 158.19603, 39.89748, -0.000274701946, -0.999999821, -3.05464564e-005, 0.000183053315, -3.05380599e-005, 1.00000012, -0.99999994, 0.000274696271, 0.000183061798)
2177
p61.CanCollide = false
2178
p61.FormFactor = Enum.FormFactor.Custom
2179
p61.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
2180
p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2181
p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2182
p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2183
p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2184
p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2185
p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2186
b58 = Instance.new("SpecialMesh", p61)
2187
b58.MeshType = Enum.MeshType.Wedge
2188
b58.Name = "Mesh"
2189
b58.Scale = Vector3.new(0.417481065, 1, 1)
2190
p62 = Instance.new("Part", m)
2191
p62.BrickColor = BrickColor.new("Dark blue")
2192
p62.Material = Enum.Material.SmoothPlastic
2193
p62.Name = "apart"
2194
p62.CFrame = CFrame.new(3.20776844, 158.272903, 40.7686882, 0.000228409335, -0.965923011, 0.258828908, -0.000213359541, 0.258829057, 0.965923309, -0.99999994, -0.000275849598, -0.000146969687)
2195
p62.CanCollide = false
2196
p62.FormFactor = Enum.FormFactor.Custom
2197
p62.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
2198
p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2199
p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2200
p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2201
p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2202
p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2203
p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2204
b59 = Instance.new("SpecialMesh", p62)
2205
b59.MeshType = Enum.MeshType.Wedge
2206
b59.Name = "Mesh"
2207
b59.Scale = Vector3.new(0.208740532, 1, 0.626221359)
2208
p63 = Instance.new("Part", m)
2209
p63.BrickColor = BrickColor.new("Dark blue")
2210
p63.Material = Enum.Material.SmoothPlastic
2211
p63.Name = "apart"
2212
p63.CFrame = CFrame.new(3.05403471, 158.196045, 40.1024666, -0.000274702004, -0.999999821, -3.05771828e-005, 0.000183053315, -3.04877758e-005, 1.00000024, -1, 0.000274696242, 0.000183061857)
2213
p63.CanCollide = false
2214
p63.FormFactor = Enum.FormFactor.Custom
2215
p63.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
2216
p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2217
p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2218
p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2219
p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2220
p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2221
p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2222
b60 = Instance.new("SpecialMesh", p63)
2223
b60.MeshType = Enum.MeshType.Wedge
2224
b60.Name = "Mesh"
2225
b60.Scale = Vector3.new(0.417481065, 1, 1)
2226
p64 = Instance.new("Part", m)
2227
p64.BrickColor = BrickColor.new("Dark blue")
2228
p64.Material = Enum.Material.SmoothPlastic
2229
p64.Name = "apart"
2230
p64.CFrame = CFrame.new(2.7465601, 158.529175, 40.3330841, -0.000274702004, -0.999999762, -3.05771828e-005, 0.000183053315, -3.0487774e-005, 1.00000024, -1, 0.000274696213, 0.000183061857)
2231
p64.CanCollide = false
2232
p64.FormFactor = Enum.FormFactor.Custom
2233
p64.Size = Vector3.new(0.358718932, 0.245498881, 0.245498881)
2234
p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2235
p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2236
p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2237
p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2238
p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2239
p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2240
b61 = Instance.new("SpecialMesh", p64)
2241
b61.MeshType = Enum.MeshType.Wedge
2242
b61.Name = "Mesh"
2243
b61.Scale = Vector3.new(1, 0.417480946, 0.626221359)
2244
p65 = Instance.new("Part", m)
2245
p65.BrickColor = BrickColor.new("Dark blue")
2246
p65.Material = Enum.Material.SmoothPlastic
2247
p65.Name = "apart"
2248
p65.CFrame = CFrame.new(2.74655938, 158.52919, 39.6668968, -0.000274702004, -0.999999702, -3.05771828e-005, 0.000183053315, -3.04877722e-005, 1.00000024, -1, 0.000274696184, 0.000183061857)
2249
p65.CanCollide = false
2250
p65.FormFactor = Enum.FormFactor.Custom
2251
p65.Size = Vector3.new(0.358718932, 0.245498881, 0.245498881)
2252
p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2253
p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2254
p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2255
p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2256
p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2257
p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2258
b62 = Instance.new("SpecialMesh", p65)
2259
b62.MeshType = Enum.MeshType.Wedge
2260
b62.Name = "Mesh"
2261
b62.Scale = Vector3.new(1, 0.417480946, 0.626221359)
2262
p66 = Instance.new("Part", m)
2263
p66.BrickColor = BrickColor.new("Dark blue")
2264
p66.Material = Enum.Material.SmoothPlastic
2265
p66.Name = "apart"
2266
p66.CFrame = CFrame.new(3.05403376, 158.196106, 40.3330727, -0.000274702004, -0.999999642, -3.05771828e-005, 0.000183053315, -3.04877703e-005, 1.00000024, -1, 0.000274696155, 0.000183061857)
2267
p66.CanCollide = false
2268
p66.FormFactor = Enum.FormFactor.Custom
2269
p66.Size = Vector3.new(0.358718932, 0.512455463, 0.512455463)
2270
p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2271
p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2272
p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2273
p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2274
p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2275
p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2276
b63 = Instance.new("SpecialMesh", p66)
2277
b63.MeshType = Enum.MeshType.Wedge
2278
b63.Name = "Mesh"
2279
p67 = Instance.new("Part", m)
2280
p67.BrickColor = BrickColor.new("Dark blue")
2281
p67.Material = Enum.Material.Neon
2282
p67.Name = "apart"
2283
p67.CFrame = CFrame.new(3.05403376, 158.196106, 40.1024437, -0.000274702004, -0.999999583, -3.05771828e-005, 0.000183053315, -3.04877685e-005, 1.00000024, -1, 0.000274696125, 0.000183061857)
2284
p67.CanCollide = false
2285
p67.FormFactor = Enum.FormFactor.Custom
2286
p67.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
2287
p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2288
p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2289
p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2290
p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2291
p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2292
p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2293
b64 = Instance.new("SpecialMesh", p67)
2294
b64.MeshType = Enum.MeshType.Wedge
2295
b64.Name = "Mesh"
2296
b64.Scale = Vector3.new(0.208740532, 1.00999999, 1)
2297
p68 = Instance.new("Part", m)
2298
p68.BrickColor = BrickColor.new("Dark blue")
2299
p68.Material = Enum.Material.SmoothPlastic
2300
p68.Name = "apart"
2301
p68.CFrame = CFrame.new(2.74655938, 158.529221, 40.1024551, -0.000274702004, -0.999999523, -3.05771828e-005, 0.000183053315, -3.04877667e-005, 1.00000024, -1, 0.000274696096, 0.000183061857)
2302
p68.CanCollide = false
2303
p68.FormFactor = Enum.FormFactor.Custom
2304
p68.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
2305
p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2306
p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2307
p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2308
p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2309
p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2310
p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2311
b65 = Instance.new("SpecialMesh", p68)
2312
b65.MeshType = Enum.MeshType.Wedge
2313
b65.Name = "Mesh"
2314
b65.Scale = Vector3.new(0.417481065, 0.417480946, 0.626221359)
2315
p69 = Instance.new("Part", m)
2316
p69.BrickColor = BrickColor.new("Dark blue")
2317
p69.Material = Enum.Material.SmoothPlastic
2318
p69.Name = "apart"
2319
p69.CFrame = CFrame.new(3.05403352, 158.529205, 40.3330612, -3.05614631e-005, 0.999999523, -3.04113782e-005, 6.10796851e-005, -3.05492649e-005, -1.00000024, -1, -3.05628819e-005, -6.10789648e-005)
2320
p69.CanCollide = false
2321
p69.FormFactor = Enum.FormFactor.Custom
2322
p69.Size = Vector3.new(0.358718932, 0.512455463, 0.245498881)
2323
p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2324
p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2325
p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2326
p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2327
p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2328
p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2329
b66 = Instance.new("SpecialMesh", p69)
2330
b66.MeshType = Enum.MeshType.Wedge
2331
b66.Name = "Mesh"
2332
b66.Scale = Vector3.new(1, 1, 0.626221359)
2333
p70 = Instance.new("Part", m)
2334
p70.BrickColor = BrickColor.new("Dark blue")
2335
p70.Material = Enum.Material.SmoothPlastic
2336
p70.Name = "apart"
2337
p70.CFrame = CFrame.new(3.05403328, 158.529221, 39.89748, -3.05614631e-005, 0.999999523, -3.04113782e-005, 6.10796851e-005, -3.05492649e-005, -1.00000024, -1, -3.05628819e-005, -6.10789648e-005)
2338
p70.CanCollide = false
2339
p70.FormFactor = Enum.FormFactor.Custom
2340
p70.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
2341
p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2342
p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2343
p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2344
p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2345
p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2346
p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2347
b67 = Instance.new("SpecialMesh", p70)
2348
b67.MeshType = Enum.MeshType.Wedge
2349
b67.Name = "Mesh"
2350
b67.Scale = Vector3.new(0.417481065, 1, 0.626221359)
2351
p71 = Instance.new("Part", m)
2352
p71.BrickColor = BrickColor.new("Dark blue")
2353
p71.Material = Enum.Material.Neon
2354
p71.Name = "apart"
2355
p71.CFrame = CFrame.new(3.82271624, 158.093628, 40.6661491, -3.05610884e-005, -0.999999523, -3.04123096e-005, -3.05602262e-005, 3.05529975e-005, -1.00000024, 1, -3.05606263e-005, -3.0561383e-005)
2356
p71.CanCollide = false
2357
p71.FormFactor = Enum.FormFactor.Custom
2358
p71.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
2359
p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2360
p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2361
p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2362
p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2363
p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2364
p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2365
b68 = Instance.new("SpecialMesh", p71)
2366
b68.MeshType = Enum.MeshType.Cylinder
2367
b68.Name = "Mesh"
2368
b68.Scale = Vector3.new(0.208740488, 1.00999999, 1.00999999)
2369
p72 = Instance.new("Part", m)
2370
p72.BrickColor = BrickColor.new("Dark blue")
2371
p72.Material = Enum.Material.SmoothPlastic
2372
p72.Name = "apart"
2373
p72.CFrame = CFrame.new(3.05403328, 158.529221, 39.6668777, -3.05614631e-005, 0.999999523, -3.04113764e-005, 6.10796851e-005, -3.05492686e-005, -1.00000024, -1, -3.05628819e-005, -6.10789648e-005)
2374
p72.CanCollide = false
2375
p72.FormFactor = Enum.FormFactor.Custom
2376
p72.Size = Vector3.new(0.358718932, 0.512455463, 0.245498881)
2377
p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2378
p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2379
p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2380
p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2381
p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2382
p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2383
b69 = Instance.new("SpecialMesh", p72)
2384
b69.MeshType = Enum.MeshType.Wedge
2385
b69.Name = "Mesh"
2386
b69.Scale = Vector3.new(1, 1, 0.626221359)
2387
p73 = Instance.new("Part", m)
2388
p73.BrickColor = BrickColor.new("Dark blue")
2389
p73.Material = Enum.Material.SmoothPlastic
2390
p73.Name = "apart"
2391
p73.CFrame = CFrame.new(3.20776749, 158.27298, 39.2312889, 0.000228409161, -0.965922713, 0.258828849, -0.000213359599, 0.258829117, 0.965923429, -1, -0.00027584983, -0.000146969658)
2392
p73.CanCollide = false
2393
p73.FormFactor = Enum.FormFactor.Custom
2394
p73.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
2395
p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2396
p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2397
p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2398
p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2399
p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2400
p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2401
b70 = Instance.new("SpecialMesh", p73)
2402
b70.MeshType = Enum.MeshType.Wedge
2403
b70.Name = "Mesh"
2404
b70.Scale = Vector3.new(0.208740532, 1, 0.626221359)
2405
p74 = Instance.new("Part", m)
2406
p74.BrickColor = BrickColor.new("Dark blue")
2407
p74.Material = Enum.Material.SmoothPlastic
2408
p74.Name = "apart"
2409
p74.CFrame = CFrame.new(3.20777059, 158.27298, 39.282547, 0.000228409161, -0.965922713, 0.258828819, -0.000213359614, 0.258829117, 0.965923369, -1.00000012, -0.000275849859, -0.000146969644)
2410
p74.CanCollide = false
2411
p74.FormFactor = Enum.FormFactor.Custom
2412
p74.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
2413
p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2414
p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2415
p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2416
p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2417
p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2418
p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2419
b71 = Instance.new("SpecialMesh", p74)
2420
b71.MeshType = Enum.MeshType.Wedge
2421
b71.Name = "Mesh"
2422
b71.Scale = Vector3.new(0.208740532, 1, 0.626221359)
2423
p75 = Instance.new("Part", m)
2424
p75.BrickColor = BrickColor.new("Dark blue")
2425
p75.Material = Enum.Material.Neon
2426
p75.Name = "apart"
2427
p75.CFrame = CFrame.new(3.82271242, 158.093628, 39.3337746, -3.05610592e-005, -0.999999583, -3.03685665e-005, -3.05602152e-005, 3.05473804e-005, -1.00000036, 1.00000024, -3.05606482e-005, -3.05614085e-005)
2428
p75.CanCollide = false
2429
p75.FormFactor = Enum.FormFactor.Custom
2430
p75.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
2431
p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2432
p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2433
p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2434
p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2435
p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2436
p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2437
b72 = Instance.new("SpecialMesh", p75)
2438
b72.MeshType = Enum.MeshType.Cylinder
2439
b72.Name = "Mesh"
2440
b72.Scale = Vector3.new(0.208740488, 1.00999999, 1.00999999)
2441
p76 = Instance.new("Part", m)
2442
p76.BrickColor = BrickColor.new("Dark blue")
2443
p76.Material = Enum.Material.Neon
2444
p76.Name = "apart"
2445
p76.CFrame = CFrame.new(4.6938858, 158.093613, 39.999958, -0.999999583, 4.30660984e-005, 1.49448169e-007, 3.07118171e-008, 5.34493374e-005, -1.00000036, -4.30666332e-005, -1.00000024, -5.34495957e-005)
2446
p76.CanCollide = false
2447
p76.FormFactor = Enum.FormFactor.Custom
2448
p76.Size = Vector3.new(0.245498881, 0.409964353, 0.245498881)
2449
p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2450
p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2451
p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2452
p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2453
p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2454
p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2455
b73 = Instance.new("SpecialMesh", p76)
2456
b73.MeshType = Enum.MeshType.Brick
2457
b73.Name = "Mesh"
2458
b73.Scale = Vector3.new(0.421655834, 1.01999998, 0.333984703)
2459
p77 = Instance.new("Part", m)
2460
p77.BrickColor = BrickColor.new("Dark blue")
2461
p77.Material = Enum.Material.Neon
2462
p77.Name = "apart"
2463
p77.CFrame = CFrame.new(2.74655533, 158.529221, 40.1024628, -0.000274702033, -0.999999523, -3.06209367e-005, 0.000183053286, -3.04933837e-005, 1.00000036, -1.00000012, 0.000274696125, 0.0001830619)
2464
p77.CanCollide = false
2465
p77.FormFactor = Enum.FormFactor.Custom
2466
p77.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
2467
p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2468
p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2469
p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2470
p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2471
p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2472
p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2473
b74 = Instance.new("SpecialMesh", p77)
2474
b74.MeshType = Enum.MeshType.Wedge
2475
b74.Name = "Mesh"
2476
b74.Scale = Vector3.new(0.208740532, 0.417480946, 0.632483602)
2477
p78 = Instance.new("Part", m)
2478
p78.BrickColor = BrickColor.new("Dark blue")
2479
p78.Material = Enum.Material.Neon
2480
p78.Name = "apart"
2481
p78.CFrame = CFrame.new(2.74655509, 158.529236, 39.8974838, -0.000274702033, -0.999999464, -3.06209367e-005, 0.000183053286, -3.04933819e-005, 1.00000036, -1.00000012, 0.000274696096, 0.0001830619)
2482
p78.CanCollide = false
2483
p78.FormFactor = Enum.FormFactor.Custom
2484
p78.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
2485
p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2486
p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2487
p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2488
p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2489
p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2490
p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2491
b75 = Instance.new("SpecialMesh", p78)
2492
b75.MeshType = Enum.MeshType.Wedge
2493
b75.Name = "Mesh"
2494
b75.Scale = Vector3.new(0.208740532, 0.417480946, 0.632483602)
2495
p79 = Instance.new("Part", m)
2496
p79.BrickColor = BrickColor.new("Dark blue")
2497
p79.Material = Enum.Material.SmoothPlastic
2498
p79.Name = "apart"
2499
p79.CFrame = CFrame.new(3.82272029, 157.171036, 41.537384, 1, 7.27595761e-012, 0, 0, 0.999999881, -2.98023224e-008, 0, 2.98023224e-008, 0.999999881)
2500
p79.CanCollide = false
2501
p79.FormFactor = Enum.FormFactor.Custom
2502
p79.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
2503
p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2504
p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2505
p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2506
p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2507
p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2508
p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2509
b76 = Instance.new("SpecialMesh", p79)
2510
b76.MeshType = Enum.MeshType.Brick
2511
b76.Name = "Mesh"
2512
b76.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
2513
p80 = Instance.new("Part", m)
2514
p80.BrickColor = BrickColor.new("Dark blue")
2515
p80.Material = Enum.Material.SmoothPlastic
2516
p80.Name = "apart"
2517
p80.CFrame = CFrame.new(3.82272029, 157.350388, 41.9729614, 1, 7.27595761e-012, 0, 0, 0.999999881, -2.98023224e-008, 0, 2.98023224e-008, 0.999999881)
2518
p80.CanCollide = false
2519
p80.FormFactor = Enum.FormFactor.Custom
2520
p80.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
2521
p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2522
p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2523
p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2524
p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2525
p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2526
p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2527
b77 = Instance.new("SpecialMesh", p80)
2528
b77.MeshType = Enum.MeshType.Cylinder
2529
b77.Name = "Mesh"
2530
b77.Scale = Vector3.new(1.01999998, 1, 1)
2531
p81 = Instance.new("Part", m)
2532
p81.BrickColor = BrickColor.new("Dark blue")
2533
p81.Material = Enum.Material.SmoothPlastic
2534
p81.Name = "apart"
2535
p81.CFrame = CFrame.new(3.41275811, 157.555359, 42.3316841, 1, 1.11727404e-005, -4.16862822e-005, -4.16866351e-005, 0.500085592, -0.865975857, 1.11713871e-005, 0.865975857, 0.500085592)
2536
p81.CanCollide = false
2537
p81.FormFactor = Enum.FormFactor.Custom
2538
p81.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
2539
p81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2540
p81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2541
p81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2542
p81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2543
p81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2544
p81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2545
b78 = Instance.new("SpecialMesh", p81)
2546
b78.MeshType = Enum.MeshType.Wedge
2547
b78.Name = "Mesh"
2548
b78.Scale = Vector3.new(0.417481035, 1, 0.626221299)
2549
p82 = Instance.new("Part", m)
2550
p82.BrickColor = BrickColor.new("Dark blue")
2551
p82.Material = Enum.Material.SmoothPlastic
2552
p82.Name = "apart"
2553
p82.CFrame = CFrame.new(3.82271981, 156.018005, 41.4092636, 1, 3.05180438e-005, -3.05171125e-005, -3.05171106e-005, 0.99999994, 3.05180401e-005, 3.05180401e-005, -3.05171106e-005, 0.99999994)
2554
p82.CanCollide = false
2555
p82.FormFactor = Enum.FormFactor.Custom
2556
p82.Size = Vector3.new(1.02491105, 0.256227732, 0.768683195)
2557
p82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2558
p82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2559
p82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2560
p82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2561
p82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2562
p82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2563
b79 = Instance.new("SpecialMesh", p82)
2564
b79.MeshType = Enum.MeshType.Wedge
2565
b79.Name = "Mesh"
2566
b79.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
2567
p83 = Instance.new("Part", m)
2568
p83.BrickColor = BrickColor.new("Dark blue")
2569
p83.Material = Enum.Material.SmoothPlastic
2570
p83.Name = "apart"
2571
p83.CFrame = CFrame.new(3.82271981, 156.018005, 41.9217148, 1, 0, 0, 0, 0.99999994, 0, 0, 0, 0.99999994)
2572
p83.CanCollide = false
2573
p83.FormFactor = Enum.FormFactor.Custom
2574
p83.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
2575
p83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2576
p83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2577
p83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2578
p83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2579
p83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2580
p83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2581
b80 = Instance.new("SpecialMesh", p83)
2582
b80.MeshType = Enum.MeshType.Brick
2583
b80.Name = "Mesh"
2584
b80.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
2585
p84 = Instance.new("Part", m)
2586
p84.BrickColor = BrickColor.new("Dark blue")
2587
p84.Material = Enum.Material.SmoothPlastic
2588
p84.Name = "apart"
2589
p84.CFrame = CFrame.new(3.82271981, 155.633667, 41.5373764, 1, 0, 0, 0, 0.99999994, 0, 0, 0, 0.99999994)
2590
p84.CanCollide = false
2591
p84.FormFactor = Enum.FormFactor.Custom
2592
p84.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
2593
p84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2594
p84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2595
p84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2596
p84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2597
p84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2598
p84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2599
b81 = Instance.new("SpecialMesh", p84)
2600
b81.MeshType = Enum.MeshType.Brick
2601
b81.Name = "Mesh"
2602
b81.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
2603
p85 = Instance.new("Part", m)
2604
p85.BrickColor = BrickColor.new("Dark blue")
2605
p85.Material = Enum.Material.SmoothPlastic
2606
p85.Name = "apart"
2607
p85.CFrame = CFrame.new(4.23268604, 157.555389, 42.331665, 1, 1.11727377e-005, -4.16862786e-005, -4.16866387e-005, 0.500085652, -0.865975916, 1.1171388e-005, 0.865975916, 0.500085652)
2608
p85.CanCollide = false
2609
p85.FormFactor = Enum.FormFactor.Custom
2610
p85.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
2611
p85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2612
p85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2613
p85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2614
p85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2615
p85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2616
p85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2617
b82 = Instance.new("SpecialMesh", p85)
2618
b82.MeshType = Enum.MeshType.Wedge
2619
b82.Name = "Mesh"
2620
b82.Scale = Vector3.new(0.417481035, 1, 0.626221299)
2621
p86 = Instance.new("Part", m)
2622
p86.BrickColor = BrickColor.new("Dark blue")
2623
p86.Material = Enum.Material.SmoothPlastic
2624
p86.Name = "apart"
2625
p86.CFrame = CFrame.new(3.82272005, 156.402374, 41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2626
p86.CanCollide = false
2627
p86.FormFactor = Enum.FormFactor.Custom
2628
p86.Size = Vector3.new(1.02491105, 0.512455463, 0.256227732)
2629
p86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2630
p86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2631
p86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2632
p86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2633
p86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2634
p86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2635
b83 = Instance.new("SpecialMesh", p86)
2636
b83.MeshType = Enum.MeshType.Wedge
2637
b83.Name = "Mesh"
2638
b83.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
2639
p87 = Instance.new("Part", m)
2640
p87.BrickColor = BrickColor.new("Dark blue")
2641
p87.Material = Enum.Material.SmoothPlastic
2642
p87.Name = "apart"
2643
p87.CFrame = CFrame.new(3.82272005, 155.633698, 41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2644
p87.CanCollide = false
2645
p87.FormFactor = Enum.FormFactor.Custom
2646
p87.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
2647
p87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2648
p87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2649
p87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2650
p87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2651
p87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2652
p87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2653
b84 = Instance.new("SpecialMesh", p87)
2654
b84.MeshType = Enum.MeshType.Brick
2655
b84.Name = "Mesh"
2656
b84.Scale = Vector3.new(0.5, 1.01999998, 1.01999998)
2657
p88 = Instance.new("Part", m)
2658
p88.BrickColor = BrickColor.new("Dark blue")
2659
p88.Material = Enum.Material.SmoothPlastic
2660
p88.Name = "apart"
2661
p88.CFrame = CFrame.new(3.82272005, 157.350418, 41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2662
p88.CanCollide = false
2663
p88.FormFactor = Enum.FormFactor.Custom
2664
p88.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
2665
p88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2666
p88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2667
p88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2668
p88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2669
p88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2670
p88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2671
b85 = Instance.new("SpecialMesh", p88)
2672
b85.MeshType = Enum.MeshType.Cylinder
2673
b85.Name = "Mesh"
2674
b85.Scale = Vector3.new(1.02999997, 0.5, 0.5)
2675
p89 = Instance.new("Part", m)
2676
p89.BrickColor = BrickColor.new("Dark blue")
2677
p89.Material = Enum.Material.Neon
2678
p89.Name = "apart"
2679
p89.CFrame = CFrame.new(3.82272005, 155.633698, 41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2680
p89.CanCollide = false
2681
p89.FormFactor = Enum.FormFactor.Custom
2682
p89.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
2683
p89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2684
p89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2685
p89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2686
p89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2687
p89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2688
p89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2689
b86 = Instance.new("SpecialMesh", p89)
2690
b86.MeshType = Enum.MeshType.Brick
2691
b86.Name = "Mesh"
2692
b86.Scale = Vector3.new(0.25, 1.02999997, 1.02999997)
2693
p90 = Instance.new("Part", m)
2694
p90.BrickColor = BrickColor.new("Dark blue")
2695
p90.Material = Enum.Material.SmoothPlastic
2696
p90.Name = "apart"
2697
p90.CFrame = CFrame.new(3.82272005, 156.402374, 41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2698
p90.CanCollide = false
2699
p90.FormFactor = Enum.FormFactor.Custom
2700
p90.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
2701
p90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2702
p90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2703
p90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2704
p90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2705
p90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2706
p90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2707
--[[p91 = Instance.new("Part", m)
2708
p91.BrickColor = BrickColor.new("Bright orange")
2709
p91.Name = "Right Arm"
2710
p91.CFrame = CFrame.new(3.81999993, 156.276108, 41.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
2711
p91.CanCollide = false
2712
p91.FormFactor = Enum.FormFactor.Symmetric
2713
p91.Size = Vector3.new(1, 2, 1)
2714
p91.BottomSurface = Enum.SurfaceType.Smooth
2715
p91.TopSurface = Enum.SurfaceType.Smooth--]]
2716
p91 = RightArm
2717
p92 = Instance.new("Part", m)
2718
p92.BrickColor = BrickColor.new("Dark blue")
2719
p92.Material = Enum.Material.SmoothPlastic
2720
p92.Name = "apart"
2721
p92.CFrame = CFrame.new(3.82272005, 154.35257, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2722
p92.CanCollide = false
2723
p92.FormFactor = Enum.FormFactor.Custom
2724
p92.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
2725
p92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2726
p92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2727
p92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2728
p92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2729
p92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2730
p92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2731
--[[p93 = Instance.new("Part", m)
2732
p93.BrickColor = BrickColor.new("Earth green")
2733
p93.Name = "Left Leg"
2734
p93.CFrame = CFrame.new(3.81999993, 154.276123, 39.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
2735
p93.CanCollide = false
2736
p93.FormFactor = Enum.FormFactor.Symmetric
2737
p93.Size = Vector3.new(1, 2, 1)
2738
p93.BottomSurface = Enum.SurfaceType.Smooth
2739
p93.TopSurface = Enum.SurfaceType.Smooth--]]
2740
p93 = LeftLeg
2741
p94 = Instance.new("Part", m)
2742
p94.BrickColor = BrickColor.new("Dark blue")
2743
p94.Material = Enum.Material.SmoothPlastic
2744
p94.Name = "apart"
2745
p94.CFrame = CFrame.new(3.82272005, 154.403824, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2746
p94.CanCollide = false
2747
p94.FormFactor = Enum.FormFactor.Custom
2748
p94.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
2749
p94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2750
p94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2751
p94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2752
p94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2753
p94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2754
p94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2755
b87 = Instance.new("SpecialMesh", p94)
2756
b87.MeshType = Enum.MeshType.Brick
2757
b87.Name = "Mesh"
2758
b87.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
2759
p95 = Instance.new("Part", m)
2760
p95.BrickColor = BrickColor.new("Dark blue")
2761
p95.Material = Enum.Material.SmoothPlastic
2762
p95.Name = "apart"
2763
p95.CFrame = CFrame.new(3.8483429, 153.558273, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2764
p95.CanCollide = false
2765
p95.FormFactor = Enum.FormFactor.Custom
2766
p95.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
2767
p95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2768
p95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2769
p95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2770
p95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2771
p95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2772
p95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2773
b88 = Instance.new("SpecialMesh", p95)
2774
b88.MeshType = Enum.MeshType.Brick
2775
b88.Name = "Mesh"
2776
b88.Scale = Vector3.new(1.02999997, 1.00999999, 1.00999999)
2777
p96 = Instance.new("Part", m)
2778
p96.BrickColor = BrickColor.new("Dark blue")
2779
p96.Material = Enum.Material.Neon
2780
p96.Name = "apart"
2781
p96.CFrame = CFrame.new(3.82272005, 154.403824, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2782
p96.CanCollide = false
2783
p96.FormFactor = Enum.FormFactor.Custom
2784
p96.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
2785
p96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2786
p96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2787
p96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2788
p96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2789
p96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2790
p96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2791
b89 = Instance.new("SpecialMesh", p96)
2792
b89.MeshType = Enum.MeshType.Brick
2793
b89.Name = "Mesh"
2794
b89.Scale = Vector3.new(1.02999997, 1.00999999, 0.25)
2795
p97 = Instance.new("Part", m)
2796
p97.BrickColor = BrickColor.new("Dark blue")
2797
p97.Material = Enum.Material.Neon
2798
p97.Name = "apart"
2799
p97.CFrame = CFrame.new(3.8483429, 153.558273, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2800
p97.CanCollide = false
2801
p97.FormFactor = Enum.FormFactor.Custom
2802
p97.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
2803
p97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2804
p97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2805
p97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2806
p97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2807
p97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2808
p97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2809
b90 = Instance.new("SpecialMesh", p97)
2810
b90.MeshType = Enum.MeshType.Brick
2811
b90.Name = "Mesh"
2812
b90.Scale = Vector3.new(1.03999996, 0.5, 1.00999999)
2813
p98 = Instance.new("Part", m)
2814
p98.BrickColor = BrickColor.new("Dark blue")
2815
p98.Material = Enum.Material.SmoothPlastic
2816
p98.Name = "apart"
2817
p98.CFrame = CFrame.new(3.56649303, 154.045105, 39.4362946, -4.37113883e-008, 0, -1, 9.29513355e-010, 1, -4.06303176e-017, 1, -9.29513355e-010, -4.37113883e-008)
2818
p98.CanCollide = false
2819
p98.FormFactor = Enum.FormFactor.Custom
2820
p98.Size = Vector3.new(0.922420025, 0.409964412, 0.512455404)
2821
p98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2822
p98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2823
p98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2824
p98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2825
p98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2826
p98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2827
b91 = Instance.new("SpecialMesh", p98)
2828
b91.MeshType = Enum.MeshType.Wedge
2829
b91.Name = "Mesh"
2830
b91.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
2831
p99 = Instance.new("Part", m)
2832
p99.BrickColor = BrickColor.new("Dark blue")
2833
p99.Material = Enum.Material.SmoothPlastic
2834
p99.Name = "apart"
2835
p99.CFrame = CFrame.new(3.8483429, 153.558273, 39.4875336, -4.37113883e-008, -2.16840434e-019, 1, -4.3159529e-005, 1, -1.88656317e-012, -1, -4.3159529e-005, -4.37113883e-008)
2836
p99.CanCollide = false
2837
p99.FormFactor = Enum.FormFactor.Custom
2838
p99.Size = Vector3.new(0.922419965, 0.256227762, 0.973665476)
2839
p99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2840
p99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2841
p99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2842
p99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2843
p99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2844
p99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2845
b92 = Instance.new("SpecialMesh", p99)
2846
b92.MeshType = Enum.MeshType.Torso
2847
b92.Name = "Mesh"
2848
b92.Scale = Vector3.new(1, 1, 1.01999998)
2849
p100 = Instance.new("Part", m)
2850
p100.BrickColor = BrickColor.new("Dark blue")
2851
p100.Material = Enum.Material.SmoothPlastic
2852
p100.Name = "apart"
2853
p100.CFrame = CFrame.new(3.82272005, 154.403824, 39.4875298, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
2854
p100.CanCollide = false
2855
p100.FormFactor = Enum.FormFactor.Custom
2856
p100.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
2857
p100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2858
p100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2859
p100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2860
p100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2861
p100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2862
p100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2863
b93 = Instance.new("SpecialMesh", p100)
2864
b93.MeshType = Enum.MeshType.Brick
2865
b93.Name = "Mesh"
2866
b93.Scale = Vector3.new(1.01999998, 1.00999999, 0.5)
2867
p101 = Instance.new("Part", m)
2868
p101.BrickColor = BrickColor.new("Dark blue")
2869
p101.Material = Enum.Material.SmoothPlastic
2870
p101.Name = "apart"
2871
p101.CFrame = CFrame.new(3.82272005, 153.378906, 39.4875298, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
2872
p101.CanCollide = false
2873
p101.FormFactor = Enum.FormFactor.Custom
2874
p101.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
2875
p101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2876
p101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2877
p101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2878
p101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2879
p101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2880
p101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2881
b94 = Instance.new("SpecialMesh", p101)
2882
b94.MeshType = Enum.MeshType.Brick
2883
b94.Name = "Mesh"
2884
b94.Scale = Vector3.new(1.00999999, 0.421655744, 1.00999999)
2885
p102 = Instance.new("Part", m)
2886
p102.BrickColor = BrickColor.new("Dark blue")
2887
p102.Material = Enum.Material.SmoothPlastic
2888
p102.Name = "apart"
2889
p102.CFrame = CFrame.new(3.82272005, 153.635132, 39.4875298, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
2890
p102.CanCollide = false
2891
p102.FormFactor = Enum.FormFactor.Custom
2892
p102.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
2893
p102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2894
p102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2895
p102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2896
p102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2897
p102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2898
p102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2899
b95 = Instance.new("SpecialMesh", p102)
2900
b95.MeshType = Enum.MeshType.Brick
2901
b95.Name = "Mesh"
2902
b95.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
2903
--[[p103 = Instance.new("Part", m)
2904
p103.BrickColor = BrickColor.new("Dark blue")
2905
p103.Name = "Right Leg"
2906
p103.CFrame = CFrame.new(3.81999993, 154.276123, 40.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
2907
p103.CanCollide = false
2908
p103.FormFactor = Enum.FormFactor.Symmetric
2909
p103.Size = Vector3.new(1, 2, 1)
2910
p103.BottomSurface = Enum.SurfaceType.Smooth
2911
p103.TopSurface = Enum.SurfaceType.Smooth--]]
2912
p103 = RightLeg
2913
p104 = Instance.new("Part", m)
2914
p104.BrickColor = BrickColor.new("Dark blue")
2915
p104.Material = Enum.Material.SmoothPlastic
2916
p104.Name = "apart"
2917
p104.CFrame = CFrame.new(3.82272005, 154.35257, 40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2918
p104.CanCollide = false
2919
p104.FormFactor = Enum.FormFactor.Custom
2920
p104.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
2921
p104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2922
p104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2923
p104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2924
p104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2925
p104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2926
p104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2927
p105 = Instance.new("Part", m)
2928
p105.BrickColor = BrickColor.new("Dark blue")
2929
p105.Material = Enum.Material.SmoothPlastic
2930
p105.Name = "apart"
2931
p105.CFrame = CFrame.new(3.82272005, 154.403824, 40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2932
p105.CanCollide = false
2933
p105.FormFactor = Enum.FormFactor.Custom
2934
p105.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
2935
p105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2936
p105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2937
p105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2938
p105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2939
p105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2940
p105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2941
b96 = Instance.new("SpecialMesh", p105)
2942
b96.MeshType = Enum.MeshType.Brick
2943
b96.Name = "Mesh"
2944
b96.Scale = Vector3.new(1.01999998, 1.00999999, 0.5)
2945
p106 = Instance.new("Part", m)
2946
p106.BrickColor = BrickColor.new("Dark blue")
2947
p106.Material = Enum.Material.SmoothPlastic
2948
p106.Name = "apart"
2949
p106.CFrame = CFrame.new(3.82272005, 154.403824, 40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2950
p106.CanCollide = false
2951
p106.FormFactor = Enum.FormFactor.Custom
2952
p106.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
2953
p106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2954
p106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2955
p106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2956
p106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2957
p106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2958
p106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2959
b97 = Instance.new("SpecialMesh", p106)
2960
b97.MeshType = Enum.MeshType.Brick
2961
b97.Name = "Mesh"
2962
b97.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
2963
p107 = Instance.new("Part", m)
2964
p107.BrickColor = BrickColor.new("Dark blue")
2965
p107.Material = Enum.Material.SmoothPlastic
2966
p107.Name = "apart"
2967
p107.CFrame = CFrame.new(3.56649303, 154.045105, 40.5636902, -4.37113883e-008, 0, -1, 9.29513355e-010, 1, -4.06303176e-017, 1, -9.29513355e-010, -4.37113883e-008)
2968
p107.CanCollide = false
2969
p107.FormFactor = Enum.FormFactor.Custom
2970
p107.Size = Vector3.new(0.922420025, 0.409964412, 0.512455404)
2971
p107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2972
p107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2973
p107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2974
p107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2975
p107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2976
p107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2977
b98 = Instance.new("SpecialMesh", p107)
2978
b98.MeshType = Enum.MeshType.Wedge
2979
b98.Name = "Mesh"
2980
b98.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
2981
p108 = Instance.new("Part", m)
2982
p108.BrickColor = BrickColor.new("Dark blue")
2983
p108.Material = Enum.Material.SmoothPlastic
2984
p108.Name = "apart"
2985
p108.CFrame = CFrame.new(3.8483429, 153.558273, 40.5124359, -4.37113883e-008, -2.16840434e-019, 1, -4.3159529e-005, 1, -1.88656317e-012, -1, -4.3159529e-005, -4.37113883e-008)
2986
p108.CanCollide = false
2987
p108.FormFactor = Enum.FormFactor.Custom
2988
p108.Size = Vector3.new(0.922419965, 0.256227762, 0.973665476)
2989
p108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2990
p108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2991
p108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2992
p108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2993
p108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2994
p108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2995
b99 = Instance.new("SpecialMesh", p108)
2996
b99.MeshType = Enum.MeshType.Torso
2997
b99.Name = "Mesh"
2998
b99.Scale = Vector3.new(1, 1, 1.01999998)
2999
p109 = Instance.new("Part", m)
3000
p109.BrickColor = BrickColor.new("Dark blue")
3001
p109.Material = Enum.Material.SmoothPlastic
3002
p109.Name = "apart"
3003
p109.CFrame = CFrame.new(3.82272005, 153.635132, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
3004
p109.CanCollide = false
3005
p109.FormFactor = Enum.FormFactor.Custom
3006
p109.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
3007
p109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3008
p109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3009
p109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3010
p109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3011
p109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3012
p109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3013
b100 = Instance.new("SpecialMesh", p109)
3014
b100.MeshType = Enum.MeshType.Brick
3015
b100.Name = "Mesh"
3016
b100.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
3017
p110 = Instance.new("Part", m)
3018
p110.BrickColor = BrickColor.new("Dark blue")
3019
p110.Material = Enum.Material.SmoothPlastic
3020
p110.Name = "apart"
3021
p110.CFrame = CFrame.new(3.82272005, 153.378906, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
3022
p110.CanCollide = false
3023
p110.FormFactor = Enum.FormFactor.Custom
3024
p110.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
3025
p110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3026
p110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3027
p110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3028
p110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3029
p110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3030
p110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3031
b101 = Instance.new("SpecialMesh", p110)
3032
b101.MeshType = Enum.MeshType.Brick
3033
b101.Name = "Mesh"
3034
b101.Scale = Vector3.new(1.00999999, 0.421655744, 1.00999999)
3035
p111 = Instance.new("Part", m)
3036
p111.BrickColor = BrickColor.new("Dark blue")
3037
p111.Material = Enum.Material.SmoothPlastic
3038
p111.Name = "apart"
3039
p111.CFrame = CFrame.new(3.8483429, 153.558273, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
3040
p111.CanCollide = false
3041
p111.FormFactor = Enum.FormFactor.Custom
3042
p111.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
3043
p111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3044
p111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3045
p111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3046
p111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3047
p111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3048
p111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3049
b102 = Instance.new("SpecialMesh", p111)
3050
b102.MeshType = Enum.MeshType.Brick
3051
b102.Name = "Mesh"
3052
b102.Scale = Vector3.new(1.02999997, 1.00999999, 1.00999999)
3053
p112 = Instance.new("Part", m)
3054
p112.BrickColor = BrickColor.new("Dark blue")
3055
p112.Material = Enum.Material.Neon
3056
p112.Name = "apart"
3057
p112.CFrame = CFrame.new(3.8483429, 153.558273, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
3058
p112.CanCollide = false
3059
p112.FormFactor = Enum.FormFactor.Custom
3060
p112.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
3061
p112.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3062
p112.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3063
p112.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3064
p112.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3065
p112.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3066
p112.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3067
b103 = Instance.new("SpecialMesh", p112)
3068
b103.MeshType = Enum.MeshType.Brick
3069
b103.Name = "Mesh"
3070
b103.Scale = Vector3.new(1.03999996, 0.5, 1.00999999)
3071
p113 = Instance.new("Part", m)
3072
p113.BrickColor = BrickColor.new("Dark blue")
3073
p113.Material = Enum.Material.Neon
3074
p113.Name = "apart"
3075
p113.CFrame = CFrame.new(3.82272005, 154.403824, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
3076
p113.CanCollide = false
3077
p113.FormFactor = Enum.FormFactor.Custom
3078
p113.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
3079
p113.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3080
p113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3081
p113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3082
p113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3083
p113.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3084
p113.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3085
b104 = Instance.new("SpecialMesh", p113)
3086
b104.MeshType = Enum.MeshType.Brick
3087
b104.Name = "Mesh"
3088
b104.Scale = Vector3.new(1.02999997, 1.00999999, 0.25)
3089
p114 = Instance.new("Part", m)
3090
p114.BrickColor = BrickColor.new("Dark blue")
3091
p114.Material = Enum.Material.SmoothPlastic
3092
p114.Name = "apart"
3093
p114.CFrame = CFrame.new(3.82272005, 157.350449, 38.0270462, 1, -2.72848411e-012, 1.07291953e-012, 0, 1, 0, 6.20303808e-012, 0, 1)
3094
p114.CanCollide = false
3095
p114.FormFactor = Enum.FormFactor.Custom
3096
p114.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
3097
p114.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3098
p114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3099
p114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3100
p114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3101
p114.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3102
p114.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3103
b105 = Instance.new("SpecialMesh", p114)
3104
b105.MeshType = Enum.MeshType.Cylinder
3105
b105.Name = "Mesh"
3106
b105.Scale = Vector3.new(1.01999998, 1, 1)
3107
p115 = Instance.new("Part", m)
3108
p115.BrickColor = BrickColor.new("Dark blue")
3109
p115.Material = Enum.Material.SmoothPlastic
3110
p115.Name = "apart"
3111
p115.CFrame = CFrame.new(3.82272005, 157.171097, 38.4626236, 1, -2.72848411e-012, 1.07291953e-012, 0, 1, 0, 6.20303808e-012, 0, 1)
3112
p115.CanCollide = false
3113
p115.FormFactor = Enum.FormFactor.Custom
3114
p115.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
3115
p115.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3116
p115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3117
p115.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3118
p115.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3119
p115.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3120
p115.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3121
b106 = Instance.new("SpecialMesh", p115)
3122
b106.MeshType = Enum.MeshType.Brick
3123
b106.Name = "Mesh"
3124
b106.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
3125
--[[p116 = Instance.new("Part", m)
3126
p116.BrickColor = BrickColor.new("Dark blue")
3127
p116.Name = "Left Arm"
3128
p116.CFrame = CFrame.new(3.81999993, 156.276138, 38.5000076, -4.37103154e-008, -2.72848411e-012, -1, 0, 1, 0, 1, 0, -4.37175913e-008)
3129
p116.CanCollide = false
3130
p116.FormFactor = Enum.FormFactor.Symmetric
3131
p116.Size = Vector3.new(1, 2, 1)
3132
p116.BottomSurface = Enum.SurfaceType.Smooth
3133
p116.TopSurface = Enum.SurfaceType.Smooth--]]
3134
p116 = LeftArm
3135
p117 = Instance.new("Part", m)
3136
p117.BrickColor = BrickColor.new("Dark blue")
3137
p117.Material = Enum.Material.SmoothPlastic
3138
p117.Name = "apart"
3139
p117.CFrame = CFrame.new(4.232687, 157.55545, 37.668335, -1, 4.16358271e-005, 1.11714198e-005, 1.11466707e-005, 0.500072539, -0.865983546, -4.16424664e-005, -0.865983546, -0.500072539)
3140
p117.CanCollide = false
3141
p117.FormFactor = Enum.FormFactor.Custom
3142
p117.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
3143
p117.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3144
p117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3145
p117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3146
p117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3147
p117.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3148
p117.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3149
b107 = Instance.new("SpecialMesh", p117)
3150
b107.MeshType = Enum.MeshType.Wedge
3151
b107.Name = "Mesh"
3152
b107.Scale = Vector3.new(0.417481035, 1, 0.626221299)
3153
p118 = Instance.new("Part", m)
3154
p118.BrickColor = BrickColor.new("Dark blue")
3155
p118.Material = Enum.Material.SmoothPlastic
3156
p118.Name = "apart"
3157
p118.CFrame = CFrame.new(3.82272029, 156.018066, 38.0782814, 1, -2.6537661e-012, 0, -8.34776692e-013, 1, 0, 3.63797881e-012, 0, 1)
3158
p118.CanCollide = false
3159
p118.FormFactor = Enum.FormFactor.Custom
3160
p118.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
3161
p118.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3162
p118.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3163
p118.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3164
p118.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3165
p118.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3166
p118.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3167
b108 = Instance.new("SpecialMesh", p118)
3168
b108.MeshType = Enum.MeshType.Brick
3169
b108.Name = "Mesh"
3170
b108.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
3171
p119 = Instance.new("Part", m)
3172
p119.BrickColor = BrickColor.new("Dark blue")
3173
p119.Material = Enum.Material.SmoothPlastic
3174
p119.Name = "apart"
3175
p119.CFrame = CFrame.new(3.82272029, 156.402405, 38.0782814, -1, 3.04301539e-005, 3.05180438e-005, 3.04310852e-005, 1, 3.04301557e-005, -3.05171197e-005, 3.04310852e-005, -1)
3176
p119.CanCollide = false
3177
p119.FormFactor = Enum.FormFactor.Custom
3178
p119.Size = Vector3.new(1.02491105, 0.512455463, 0.256227732)
3179
p119.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3180
p119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3181
p119.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3182
p119.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3183
p119.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3184
p119.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3185
b109 = Instance.new("SpecialMesh", p119)
3186
b109.MeshType = Enum.MeshType.Wedge
3187
b109.Name = "Mesh"
3188
b109.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
3189
p120 = Instance.new("Part", m)
3190
p120.BrickColor = BrickColor.new("Dark blue")
3191
p120.Material = Enum.Material.SmoothPlastic
3192
p120.Name = "apart"
3193
p120.CFrame = CFrame.new(3.82272005, 157.350449, 38.0270424, 1, -9.09494702e-013, 9.09494702e-013, -9.09494702e-013, 1, 0, 1.36424205e-012, 0, 1)
3194
p120.CanCollide = false
3195
p120.FormFactor = Enum.FormFactor.Custom
3196
p120.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
3197
p120.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3198
p120.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3199
p120.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3200
p120.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3201
p120.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3202
p120.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3203
b110 = Instance.new("SpecialMesh", p120)
3204
b110.MeshType = Enum.MeshType.Cylinder
3205
b110.Name = "Mesh"
3206
b110.Scale = Vector3.new(1.02999997, 0.5, 0.5)
3207
p121 = Instance.new("Part", m)
3208
p121.BrickColor = BrickColor.new("Dark blue")
3209
p121.Material = Enum.Material.SmoothPlastic
3210
p121.Name = "apart"
3211
p121.CFrame = CFrame.new(3.41275764, 157.555435, 37.6683273, -1, 4.16358271e-005, 1.1171418e-005, 1.11466707e-005, 0.500072539, -0.865983546, -4.16424627e-005, -0.865983546, -0.500072539)
3212
p121.CanCollide = false
3213
p121.FormFactor = Enum.FormFactor.Custom
3214
p121.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
3215
p121.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3216
p121.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3217
p121.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3218
p121.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3219
p121.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3220
p121.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3221
b111 = Instance.new("SpecialMesh", p121)
3222
b111.MeshType = Enum.MeshType.Wedge
3223
b111.Name = "Mesh"
3224
b111.Scale = Vector3.new(0.417481035, 1, 0.626221299)
3225
p122 = Instance.new("Part", m)
3226
p122.BrickColor = BrickColor.new("Dark blue")
3227
p122.Material = Enum.Material.SmoothPlastic
3228
p122.Name = "apart"
3229
p122.CFrame = CFrame.new(3.82272029, 156.018051, 38.590744, -1, 3.04301557e-005, 3.05180438e-005, 3.04310852e-005, 1, 3.04301557e-005, -3.05171179e-005, 3.04310852e-005, -1)
3230
p122.CanCollide = false
3231
p122.FormFactor = Enum.FormFactor.Custom
3232
p122.Size = Vector3.new(1.02491105, 0.256227732, 0.768683195)
3233
p122.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3234
p122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3235
p122.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3236
p122.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3237
p122.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3238
p122.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3239
b112 = Instance.new("SpecialMesh", p122)
3240
b112.MeshType = Enum.MeshType.Wedge
3241
b112.Name = "Mesh"
3242
b112.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
3243
p123 = Instance.new("Part", m)
3244
p123.BrickColor = BrickColor.new("Dark blue")
3245
p123.Material = Enum.Material.SmoothPlastic
3246
p123.Name = "apart"
3247
p123.CFrame = CFrame.new(3.82272005, 155.633713, 38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3248
p123.CanCollide = false
3249
p123.FormFactor = Enum.FormFactor.Custom
3250
p123.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
3251
p123.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3252
p123.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3253
p123.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3254
p123.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3255
p123.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3256
p123.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3257
b113 = Instance.new("SpecialMesh", p123)
3258
b113.MeshType = Enum.MeshType.Brick
3259
b113.Name = "Mesh"
3260
b113.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
3261
p124 = Instance.new("Part", m)
3262
p124.BrickColor = BrickColor.new("Dark blue")
3263
p124.Material = Enum.Material.Neon
3264
p124.Name = "apart"
3265
p124.CFrame = CFrame.new(3.82272005, 155.633713, 38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3266
p124.CanCollide = false
3267
p124.FormFactor = Enum.FormFactor.Custom
3268
p124.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
3269
p124.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3270
p124.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3271
p124.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3272
p124.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3273
p124.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3274
p124.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3275
b114 = Instance.new("SpecialMesh", p124)
3276
b114.MeshType = Enum.MeshType.Brick
3277
b114.Name = "Mesh"
3278
b114.Scale = Vector3.new(0.25, 1.02999997, 1.02999997)
3279
p125 = Instance.new("Part", m)
3280
p125.BrickColor = BrickColor.new("Dark blue")
3281
p125.Material = Enum.Material.SmoothPlastic
3282
p125.Name = "apart"
3283
p125.CFrame = CFrame.new(3.82272005, 155.633713, 38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3284
p125.CanCollide = false
3285
p125.FormFactor = Enum.FormFactor.Custom
3286
p125.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
3287
p125.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3288
p125.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3289
p125.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3290
p125.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3291
p125.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3292
p125.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3293
b115 = Instance.new("SpecialMesh", p125)
3294
b115.MeshType = Enum.MeshType.Brick
3295
b115.Name = "Mesh"
3296
b115.Scale = Vector3.new(0.5, 1.01999998, 1.01999998)
3297
p126 = Instance.new("Part", m)
3298
p126.BrickColor = BrickColor.new("Dark blue")
3299
p126.Material = Enum.Material.SmoothPlastic
3300
p126.Name = "apart"
3301
p126.CFrame = CFrame.new(3.82272005, 156.40239, 38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3302
p126.CanCollide = false
3303
p126.FormFactor = Enum.FormFactor.Custom
3304
p126.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
3305
p126.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3306
p126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3307
p126.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3308
p126.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3309
p126.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3310
p126.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3311
w1 = Instance.new("Weld", p1)
3312
w1.Name = "Torso_Weld"
3313
w1.Part0 = p1
3314
w1.C0 = CFrame.new(40.0074806, -173.696487, -4.43766594, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
3315
w1.Part1 = p2
3316
w1.C1 = CFrame.new(-40, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3317
w2 = Instance.new("Weld", p2)
3318
w2.Name = "apart_Weld"
3319
w2.Part0 = p2
3320
w2.C0 = CFrame.new(-40, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3321
w2.Part1 = p3
3322
w2.C1 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
3323
w3 = Instance.new("Weld", p3)
3324
w3.Name = "apart_Weld"
3325
w3.Part0 = p3
3326
w3.C0 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
3327
w3.Part1 = p4
3328
w3.C1 = CFrame.new(4.59312534, 39.9904404, 174.904617, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3329
w4 = Instance.new("Weld", p4)
3330
w4.Name = "apart_Weld"
3331
w4.Part0 = p4
3332
w4.C0 = CFrame.new(4.59312534, 39.9904404, 174.904617, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3333
w4.Part1 = p5
3334
w4.C1 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
3335
w5 = Instance.new("Weld", p5)
3336
w5.Name = "apart_Weld"
3337
w5.Part0 = p5
3338
w5.C0 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
3339
w5.Part1 = p6
3340
w5.C1 = CFrame.new(4.59312534, 39.9904099, 175.417068, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3341
w6 = Instance.new("Weld", p6)
3342
w6.Name = "apart_Weld"
3343
w6.Part0 = p6
3344
w6.C0 = CFrame.new(4.59312534, 39.9904099, 175.417068, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3345
w6.Part1 = p7
3346
w6.C1 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3347
w7 = Instance.new("Weld", p7)
3348
w7.Name = "apart_Weld"
3349
w7.Part0 = p7
3350
w7.C0 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3351
w7.Part1 = p8
3352
w7.C1 = CFrame.new(-4.38642216, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3353
w8 = Instance.new("Weld", p8)
3354
w8.Name = "apart_Weld"
3355
w8.Part0 = p8
3356
w8.C0 = CFrame.new(-4.38642216, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3357
w8.Part1 = p9
3358
w8.C1 = CFrame.new(4.57660246, -175.162796, 39.9838219, -1, 9.14681077e-005, -3.05134035e-005, 9.14653137e-005, 1, 9.14681077e-005, 3.05217691e-005, 9.14653137e-005, -1)
3359
w9 = Instance.new("Weld", p9)
3360
w9.Name = "apart_Weld"
3361
w9.Part0 = p9
3362
w9.C0 = CFrame.new(4.57660246, -175.162796, 39.9838219, -1, 9.14681077e-005, -3.05134035e-005, 9.14653137e-005, 1, 9.14681077e-005, 3.05217691e-005, 9.14653137e-005, -1)
3363
w9.Part1 = p10
3364
w9.C1 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3365
w10 = Instance.new("Weld", p10)
3366
w10.Name = "apart_Weld"
3367
w10.Part0 = p10
3368
w10.C0 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3369
w10.Part1 = p11
3370
w10.C1 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3371
w11 = Instance.new("Weld", p11)
3372
w11.Name = "apart_Weld"
3373
w11.Part0 = p11
3374
w11.C0 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3375
w11.Part1 = p12
3376
w11.C1 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3377
w12 = Instance.new("Weld", p12)
3378
w12.Name = "apart_Weld"
3379
w12.Part0 = p12
3380
w12.C0 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3381
w12.Part1 = p13
3382
w12.C1 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
3383
w13 = Instance.new("Weld", p13)
3384
w13.Name = "apart_Weld"
3385
w13.Part0 = p13
3386
w13.C0 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
3387
w13.Part1 = p14
3388
w13.C1 = CFrame.new(-3.82272005, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3389
w14 = Instance.new("Weld", p14)
3390
w14.Name = "apart_Weld"
3391
w14.Part0 = p14
3392
w14.C0 = CFrame.new(-3.82272005, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3393
w14.Part1 = p15
3394
w14.C1 = CFrame.new(4.59311438, 39.7341995, 175.160828, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3395
w15 = Instance.new("Weld", p15)
3396
w15.Name = "apart_Weld"
3397
w15.Part0 = p15
3398
w15.C0 = CFrame.new(4.59311438, 39.7341995, 175.160828, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3399
w15.Part1 = p16
3400
w15.C1 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3401
w16 = Instance.new("Weld", p16)
3402
w16.Name = "apart_Weld"
3403
w16.Part0 = p16
3404
w16.C0 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3405
w16.Part1 = p17
3406
w16.C1 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3407
w17 = Instance.new("Weld", p17)
3408
w17.Name = "apart_Weld"
3409
w17.Part0 = p17
3410
w17.C0 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3411
w17.Part1 = p18
3412
w17.C1 = CFrame.new(4.59313631, 40.2466507, 175.160858, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3413
w18 = Instance.new("Weld", p18)
3414
w18.Name = "apart_Weld"
3415
w18.Part0 = p18
3416
w18.C0 = CFrame.new(4.59313631, 40.2466507, 175.160858, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3417
w18.Part1 = p19
3418
w18.C1 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3419
w19 = Instance.new("Weld", p19)
3420
w19.Name = "apart_Weld"
3421
w19.Part0 = p19
3422
w19.C0 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3423
w19.Part1 = p20
3424
w19.C1 = CFrame.new(40.0054741, -4.45672226, 175.157623, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3425
w20 = Instance.new("Weld", p20)
3426
w20.Name = "apart_Weld"
3427
w20.Part0 = p20
3428
w20.C0 = CFrame.new(40.0054741, -4.45672226, 175.157623, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3429
w20.Part1 = p21
3430
w20.C1 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3431
w21 = Instance.new("Weld", p21)
3432
w21.Name = "apart_Weld"
3433
w21.Part0 = p21
3434
w21.C0 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3435
w21.Part1 = p22
3436
w21.C1 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
3437
w22 = Instance.new("Weld", p22)
3438
w22.Name = "apart_Weld"
3439
w22.Part0 = p22
3440
w22.C0 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
3441
w22.Part1 = p23
3442
w22.C1 = CFrame.new(-3.82272005, -174.64624, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3443
w23 = Instance.new("Weld", p23)
3444
w23.Name = "apart_Weld"
3445
w23.Part0 = p23
3446
w23.C0 = CFrame.new(-3.82272005, -174.64624, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3447
w23.Part1 = p24
3448
w23.C1 = CFrame.new(-3.82272005, -173.416351, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3449
w24 = Instance.new("Weld", p24)
3450
w24.Name = "apart_Weld"
3451
w24.Part0 = p24
3452
w24.C0 = CFrame.new(-3.82272005, -173.416351, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3453
w24.Part1 = p25
3454
w24.C1 = CFrame.new(-3.82272005, -173.416351, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3455
w25 = Instance.new("Weld", p25)
3456
w25.Name = "apart_Weld"
3457
w25.Part0 = p25
3458
w25.C0 = CFrame.new(-3.82272005, -173.416351, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3459
w25.Part1 = p26
3460
w25.C1 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3461
w26 = Instance.new("Weld", p26)
3462
w26.Name = "apart_Weld"
3463
w26.Part0 = p26
3464
w26.C0 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3465
w26.Part1 = p27
3466
w26.C1 = CFrame.new(-175.722595, 3.81502461, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
3467
w27 = Instance.new("Weld", p27)
3468
w27.Name = "apart_Weld"
3469
w27.Part0 = p27
3470
w27.C0 = CFrame.new(-175.722595, 3.81502461, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
3471
w27.Part1 = p28
3472
w27.C1 = CFrame.new(39.1086578, -3.17558312, 176.054398, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3473
w28 = Instance.new("Weld", p28)
3474
w28.Name = "apart_Weld"
3475
w28.Part0 = p28
3476
w28.C0 = CFrame.new(39.1086578, -3.17558312, 176.054398, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3477
w28.Part1 = p29
3478
w28.C1 = CFrame.new(-3.82272005, -174.799988, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3479
w29 = Instance.new("Weld", p29)
3480
w29.Name = "apart_Weld"
3481
w29.Part0 = p29
3482
w29.C0 = CFrame.new(-3.82272005, -174.799988, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3483
w29.Part1 = p30
3484
w29.C1 = CFrame.new(39.0929604, 2.92530036, -175.160995, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
3485
w30 = Instance.new("Weld", p30)
3486
w30.Name = "apart_Weld"
3487
w30.Part0 = p30
3488
w30.C0 = CFrame.new(39.0929604, 2.92530036, -175.160995, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
3489
w30.Part1 = p31
3490
w30.C1 = CFrame.new(40.8865547, 2.92502666, -175.161102, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
3491
w31 = Instance.new("Weld", p31)
3492
w31.Name = "apart_Weld"
3493
w31.Part0 = p31
3494
w31.C0 = CFrame.new(40.8865547, 2.92502666, -175.161102, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
3495
w31.Part1 = p32
3496
w31.C1 = CFrame.new(-3.82930517, 174.798615, 40.9788513, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
3497
w32 = Instance.new("Weld", p32)
3498
w32.Name = "apart_Weld"
3499
w32.Part0 = p32
3500
w32.C0 = CFrame.new(-3.82930517, 174.798615, 40.9788513, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
3501
w32.Part1 = p33
3502
w32.C1 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3503
w33 = Instance.new("Weld", p33)
3504
w33.Name = "apart_Weld"
3505
w33.Part0 = p33
3506
w33.C0 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3507
w33.Part1 = p34
3508
w33.C1 = CFrame.new(-175.825089, 3.81501913, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
3509
w34 = Instance.new("Weld", p34)
3510
w34.Name = "apart_Weld"
3511
w34.Part0 = p34
3512
w34.C0 = CFrame.new(-175.825089, 3.81501913, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
3513
w34.Part1 = p35
3514
w34.C1 = CFrame.new(-3.8292613, 173.876205, 40.4663696, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
3515
w35 = Instance.new("Weld", p35)
3516
w35.Name = "apart_Weld"
3517
w35.Part0 = p35
3518
w35.C0 = CFrame.new(-3.8292613, 173.876205, 40.4663696, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
3519
w35.Part1 = p36
3520
w35.C1 = CFrame.new(3.81620979, 174.79892, -39.0317726, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
3521
w36 = Instance.new("Weld", p36)
3522
w36.Name = "apart_Weld"
3523
w36.Part0 = p36
3524
w36.C0 = CFrame.new(3.81620979, 174.79892, -39.0317726, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
3525
w36.Part1 = p37
3526
w36.C1 = CFrame.new(3.81622219, 173.87648, -39.5442276, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
3527
w37 = Instance.new("Weld", p37)
3528
w37.Name = "apart_Weld"
3529
w37.Part0 = p37
3530
w37.C0 = CFrame.new(3.81622219, 173.87648, -39.5442276, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
3531
w37.Part1 = p38
3532
w37.C1 = CFrame.new(40.9022522, -3.17552829, 176.054337, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3533
w38 = Instance.new("Weld", p38)
3534
w38.Name = "apart_Weld"
3535
w38.Part0 = p38
3536
w38.C0 = CFrame.new(40.9022522, -3.17552829, 176.054337, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
3537
w38.Part1 = p39
3538
w38.C1 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
3539
w39 = Instance.new("Weld", p39)
3540
w39.Name = "apart_Weld"
3541
w39.Part0 = p39
3542
w39.C0 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
3543
w39.Part1 = p40
3544
w39.C1 = CFrame.new(40.0052567, 3.18871641, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
3545
w40 = Instance.new("Weld", p41)
3546
w40.Name = "apart_Weld"
3547
w40.Part0 = p41
3548
w40.C0 = CFrame.new(4.43938923, 39.9903679, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3549
w40.Part1 = p42
3550
w40.C1 = CFrame.new(-39.2770424, 3.8185389, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
3551
w41 = Instance.new("Weld", p42)
3552
w41.Name = "apart_Weld"
3553
w41.Part0 = p42
3554
w41.C0 = CFrame.new(-39.2770424, 3.8185389, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
3555
w41.Part1 = p43
3556
w41.C1 = CFrame.new(4.38814354, 39.9903717, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3557
w42 = Instance.new("Weld", p43)
3558
w42.Name = "apart_Weld"
3559
w42.Part0 = p43
3560
w42.C0 = CFrame.new(4.38814354, 39.9903717, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3561
w42.Part1 = p44
3562
w42.C1 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
3563
w43 = Instance.new("Weld", p44)
3564
w43.Name = "apart_Weld"
3565
w43.Part0 = p44
3566
w43.C0 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
3567
w43.Part1 = p45
3568
w43.C1 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
3569
w44 = Instance.new("Weld", p45)
3570
w44.Name = "apart_Weld"
3571
w44.Part0 = p45
3572
w44.C0 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
3573
w44.Part1 = p46
3574
w44.C1 = CFrame.new(-40.7119179, 3.81858277, 176.338715, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
3575
w45 = Instance.new("Weld", p46)
3576
w45.Name = "Head_Weld"
3577
w45.Part0 = p46
3578
w45.C0 = CFrame.new(-40.7119179, 3.81858277, 176.338715, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
3579
w45.Part1 = p47
3580
w45.C1 = CFrame.new(-40, -176.019974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3581
w46 = Instance.new("Weld", p47)
3582
w46.Name = "apart_Weld"
3583
w46.Part0 = p47
3584
w46.C0 = CFrame.new(-40, -176.019974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3585
w46.Part1 = p48
3586
w46.C1 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
3587
w47 = Instance.new("Weld", p48)
3588
w47.Name = "apart_Weld"
3589
w47.Part0 = p48
3590
w47.C0 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
3591
w47.Part1 = p49
3592
w47.C1 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3593
w48 = Instance.new("Weld", p49)
3594
w48.Name = "apart_Weld"
3595
w48.Part0 = p49
3596
w48.C0 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3597
w48.Part1 = p50
3598
w48.C1 = CFrame.new(4.64437056, 39.9903603, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3599
w49 = Instance.new("Weld", p50)
3600
w49.Name = "apart_Weld"
3601
w49.Part0 = p50
3602
w49.C0 = CFrame.new(4.64437056, 39.9903603, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3603
w49.Part1 = p51
3604
w49.C1 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3605
w50 = Instance.new("Weld", p51)
3606
w50.Name = "apart_Weld"
3607
w50.Part0 = p51
3608
w50.C0 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3609
w50.Part1 = p52
3610
w50.C1 = CFrame.new(40.7543678, -42.5779533, -171.325851, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
3611
w51 = Instance.new("Weld", p52)
3612
w51.Name = "apart_Weld"
3613
w51.Part0 = p52
3614
w51.C0 = CFrame.new(40.7543678, -42.5779533, -171.325851, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
3615
w51.Part1 = p53
3616
w51.C1 = CFrame.new(-39.9944801, 3.81856084, 176.338684, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
3617
w52 = Instance.new("Weld", p53)
3618
w52.Name = "apart_Weld"
3619
w52.Part0 = p53
3620
w52.C0 = CFrame.new(-39.9944801, 3.81856084, 176.338684, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
3621
w52.Part1 = p54
3622
w52.C1 = CFrame.new(176.331329, 39.4632111, -3.82271242, -4.37113883e-008, -1, 0.000152631605, 0, -0.000152631605, -1, 1, -4.37113883e-008, 6.67173912e-012)
3623
w53 = Instance.new("Weld", p54)
3624
w53.Name = "apart_Weld"
3625
w53.Part0 = p54
3626
w53.C0 = CFrame.new(176.331329, 39.4632111, -3.82271242, -4.37113883e-008, -1, 0.000152631605, 0, -0.000152631605, -1, 1, -4.37113883e-008, 6.67173912e-012)
3627
w53.Part1 = p55
3628
w53.C1 = CFrame.new(39.6354523, 3.04852581, -176.447006, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3629
w54 = Instance.new("Weld", p55)
3630
w54.Name = "apart_Weld"
3631
w54.Part0 = p55
3632
w54.C0 = CFrame.new(39.6354523, 3.04852581, -176.447006, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3633
w54.Part1 = p56
3634
w54.C1 = CFrame.new(39.8659096, 2.74099851, -176.780167, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3635
w55 = Instance.new("Weld", p56)
3636
w55.Name = "apart_Weld"
3637
w55.Part0 = p56
3638
w55.C0 = CFrame.new(39.8659096, 2.74099851, -176.780167, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3639
w55.Part1 = p57
3640
w55.C1 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
3641
w56 = Instance.new("Weld", p57)
3642
w56.Name = "apart_Weld"
3643
w56.Part0 = p57
3644
w56.C0 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
3645
w56.Part1 = p58
3646
w56.C1 = CFrame.new(-176.337341, -40.5636826, -3.82272768, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
3647
w57 = Instance.new("Weld", p58)
3648
w57.Name = "apart_Weld"
3649
w57.Part0 = p58
3650
w57.C0 = CFrame.new(-176.337341, -40.5636826, -3.82272768, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
3651
w57.Part1 = p59
3652
w57.C1 = CFrame.new(-176.33754, 3.81501579, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
3653
w58 = Instance.new("Weld", p59)
3654
w58.Name = "apart_Weld"
3655
w58.Part0 = p59
3656
w58.C0 = CFrame.new(-176.33754, 3.81501579, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
3657
w58.Part1 = p60
3658
w58.C1 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
3659
w59 = Instance.new("Weld", p60)
3660
w59.Name = "apart_Weld"
3661
w59.Part0 = p60
3662
w59.C0 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
3663
w59.Part1 = p61
3664
w59.C1 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3665
w60 = Instance.new("Weld", p61)
3666
w60.Name = "apart_Weld"
3667
w60.Part0 = p61
3668
w60.C0 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3669
w60.Part1 = p62
3670
w60.C1 = CFrame.new(40.8056221, -42.5779381, -171.325836, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
3671
w61 = Instance.new("Weld", p62)
3672
w61.Name = "apart_Weld"
3673
w61.Part0 = p62
3674
w61.C0 = CFrame.new(40.8056221, -42.5779381, -171.325836, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
3675
w61.Part1 = p63
3676
w61.C1 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3677
w62 = Instance.new("Weld", p63)
3678
w62.Name = "apart_Weld"
3679
w62.Part0 = p63
3680
w62.C0 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3681
w62.Part1 = p64
3682
w62.C1 = CFrame.new(40.3014908, 2.74087882, -176.780243, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3683
w63 = Instance.new("Weld", p64)
3684
w63.Name = "apart_Weld"
3685
w63.Part0 = p64
3686
w63.C0 = CFrame.new(40.3014908, 2.74087882, -176.780243, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3687
w63.Part1 = p65
3688
w63.C1 = CFrame.new(39.6353073, 2.74106169, -176.780121, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3689
w64 = Instance.new("Weld", p65)
3690
w64.Name = "apart_Weld"
3691
w64.Part0 = p65
3692
w64.C0 = CFrame.new(39.6353073, 2.74106169, -176.780121, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3693
w64.Part1 = p66
3694
w64.C1 = CFrame.new(40.3016357, 3.04834294, -176.447128, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3695
w65 = Instance.new("Weld", p66)
3696
w65.Name = "apart_Weld"
3697
w65.Part0 = p66
3698
w65.C0 = CFrame.new(40.3016357, 3.04834294, -176.447128, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3699
w65.Part1 = p67
3700
w65.C1 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3701
w66 = Instance.new("Weld", p67)
3702
w66.Name = "apart_Weld"
3703
w66.Part0 = p67
3704
w66.C0 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3705
w66.Part1 = p68
3706
w66.C1 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3707
w67 = Instance.new("Weld", p68)
3708
w67.Name = "apart_Weld"
3709
w67.Part0 = p68
3710
w67.C0 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3711
w67.Part1 = p69
3712
w67.C1 = CFrame.new(40.3223953, -3.04741025, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
3713
w68 = Instance.new("Weld", p69)
3714
w68.Name = "apart_Weld"
3715
w68.Part0 = p69
3716
w68.C0 = CFrame.new(40.3223953, -3.04741025, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
3717
w68.Part1 = p70
3718
w68.C1 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
3719
w69 = Instance.new("Weld", p70)
3720
w69.Name = "apart_Weld"
3721
w69.Part0 = p70
3722
w69.C0 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
3723
w69.Part1 = p71
3724
w69.C1 = CFrame.new(-40.6606789, 3.81858134, 176.338699, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
3725
w70 = Instance.new("Weld", p71)
3726
w70.Name = "apart_Weld"
3727
w70.Part0 = p71
3728
w70.C0 = CFrame.new(-40.6606789, 3.81858134, 176.338699, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
3729
w70.Part1 = p72
3730
w70.C1 = CFrame.new(39.6562119, -3.04743052, 176.775452, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
3731
w71 = Instance.new("Weld", p72)
3732
w71.Name = "apart_Weld"
3733
w71.Part0 = p72
3734
w71.C0 = CFrame.new(39.6562119, -3.04743052, 176.775452, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
3735
w71.Part1 = p73
3736
w71.C1 = CFrame.new(39.2682533, -42.5783615, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
3737
w72 = Instance.new("Weld", p73)
3738
w72.Name = "apart_Weld"
3739
w72.Part0 = p73
3740
w72.C0 = CFrame.new(39.2682533, -42.5783615, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
3741
w72.Part1 = p74
3742
w72.C1 = CFrame.new(39.3195076, -42.5783463, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
3743
w73 = Instance.new("Weld", p74)
3744
w73.Name = "apart_Weld"
3745
w73.Part0 = p74
3746
w73.C0 = CFrame.new(39.3195076, -42.5783463, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
3747
w73.Part1 = p75
3748
w73.C1 = CFrame.new(-39.3282967, 3.81854057, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
3749
w74 = Instance.new("Weld", p75)
3750
w74.Name = "apart_Weld"
3751
w74.Part0 = p75
3752
w74.C0 = CFrame.new(-39.3282967, 3.81854057, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
3753
w74.Part1 = p76
3754
w74.C1 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3755
w75 = Instance.new("Weld", p76)
3756
w75.Name = "apart_Weld"
3757
w75.Part0 = p76
3758
w75.C0 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
3759
w75.Part1 = p77
3760
w75.C1 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3761
w76 = Instance.new("Weld", p77)
3762
w76.Name = "apart_Weld"
3763
w76.Part0 = p77
3764
w76.C0 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3765
w76.Part1 = p78
3766
w76.C1 = CFrame.new(39.8659096, 2.74099851, -176.780167, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
3767
w77 = Instance.new("Weld", p79)
3768
w77.Name = "apart_Weld"
3769
w77.Part0 = p79
3770
w77.C0 = CFrame.new(-3.82272005, -175.414932, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3771
w77.Part1 = p80
3772
w77.C1 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3773
w78 = Instance.new("Weld", p80)
3774
w78.Name = "apart_Weld"
3775
w78.Part0 = p80
3776
w78.C0 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3777
w78.Part1 = p81
3778
w78.C1 = CFrame.new(-3.40590239, -124.572937, 131.068604, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
3779
w79 = Instance.new("Weld", p81)
3780
w79.Name = "apart_Weld"
3781
w79.Part0 = p81
3782
w79.C0 = CFrame.new(-3.40590239, -124.572937, 131.068604, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
3783
w79.Part1 = p82
3784
w79.C1 = CFrame.new(-3.81866574, -174.260757, -41.4144592, 1, -3.05171125e-005, 3.05180438e-005, 3.05180438e-005, 1, -3.05171125e-005, -3.05171125e-005, 3.05180438e-005, 1)
3785
w80 = Instance.new("Weld", p82)
3786
w80.Name = "apart_Weld"
3787
w80.Part0 = p82
3788
w80.C0 = CFrame.new(-3.81866574, -174.260757, -41.4144592, 1, -3.05171125e-005, 3.05180438e-005, 3.05180438e-005, 1, -3.05171125e-005, -3.05171125e-005, 3.05180438e-005, 1)
3789
w80.Part1 = p83
3790
w80.C1 = CFrame.new(-3.82272005, -174.261902, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3791
w81 = Instance.new("Weld", p83)
3792
w81.Name = "apart_Weld"
3793
w81.Part0 = p83
3794
w81.C0 = CFrame.new(-3.82272005, -174.261902, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3795
w81.Part1 = p84
3796
w81.C1 = CFrame.new(-3.82272005, -173.877563, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3797
w82 = Instance.new("Weld", p84)
3798
w82.Name = "apart_Weld"
3799
w82.Part0 = p84
3800
w82.C0 = CFrame.new(-3.82272005, -173.877563, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3801
w82.Part1 = p85
3802
w82.C1 = CFrame.new(-4.22583055, -124.572945, 131.068649, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
3803
w83 = Instance.new("Weld", p85)
3804
w83.Name = "apart_Weld"
3805
w83.Part0 = p85
3806
w83.C0 = CFrame.new(-4.22583055, -124.572945, 131.068649, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
3807
w83.Part1 = p86
3808
w83.C1 = CFrame.new(-3.82272005, -174.64624, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3809
w84 = Instance.new("Weld", p86)
3810
w84.Name = "apart_Weld"
3811
w84.Part0 = p86
3812
w84.C0 = CFrame.new(-3.82272005, -174.64624, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3813
w84.Part1 = p87
3814
w84.C1 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3815
w85 = Instance.new("Weld", p87)
3816
w85.Name = "apart_Weld"
3817
w85.Part0 = p87
3818
w85.C0 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3819
w85.Part1 = p88
3820
w85.C1 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3821
w86 = Instance.new("Weld", p88)
3822
w86.Name = "apart_Weld"
3823
w86.Part0 = p88
3824
w86.C0 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3825
w86.Part1 = p89
3826
w86.C1 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3827
w87 = Instance.new("Weld", p89)
3828
w87.Name = "apart_Weld"
3829
w87.Part0 = p89
3830
w87.C0 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3831
w87.Part1 = p90
3832
w87.C1 = CFrame.new(-3.82272005, -174.64624, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3833
w88 = Instance.new("Weld", p90)
3834
w88.Name = "Right Arm_Weld"
3835
w88.Part0 = p90
3836
w88.C0 = CFrame.new(-3.82272005, -174.64624, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3837
w88.Part1 = p91
3838
w88.C1 = CFrame.new(-41.5, -174.519974, 3.82000184, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3839
w89 = Instance.new("Weld", p92)
3840
w89.Name = "Left Leg_Weld"
3841
w89.Part0 = p92
3842
w89.C0 = CFrame.new(-3.82272005, -172.59642, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3843
w89.Part1 = p93
3844
w89.C1 = CFrame.new(-39.5, -172.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3845
w90 = Instance.new("Weld", p93)
3846
w90.Name = "apart_Weld"
3847
w90.Part0 = p93
3848
w90.C0 = CFrame.new(-39.5, -172.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3849
w90.Part1 = p94
3850
w90.C1 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3851
w91 = Instance.new("Weld", p94)
3852
w91.Name = "apart_Weld"
3853
w91.Part0 = p94
3854
w91.C0 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3855
w91.Part1 = p95
3856
w91.C1 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3857
w92 = Instance.new("Weld", p95)
3858
w92.Name = "apart_Weld"
3859
w92.Part0 = p95
3860
w92.C0 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3861
w92.Part1 = p96
3862
w92.C1 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3863
w93 = Instance.new("Weld", p96)
3864
w93.Name = "apart_Weld"
3865
w93.Part0 = p96
3866
w93.C0 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3867
w93.Part1 = p97
3868
w93.C1 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3869
w94 = Instance.new("Weld", p97)
3870
w94.Name = "apart_Weld"
3871
w94.Part0 = p97
3872
w94.C0 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3873
w94.Part1 = p98
3874
w94.C1 = CFrame.new(-39.4362946, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
3875
w95 = Instance.new("Weld", p98)
3876
w95.Name = "apart_Weld"
3877
w95.Part0 = p98
3878
w95.C0 = CFrame.new(-39.4362946, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
3879
w95.Part1 = p99
3880
w95.C1 = CFrame.new(39.4949493, -171.800415, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
3881
w96 = Instance.new("Weld", p99)
3882
w96.Name = "apart_Weld"
3883
w96.Part0 = p99
3884
w96.C0 = CFrame.new(39.4949493, -171.800415, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
3885
w96.Part1 = p100
3886
w96.C1 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3887
w97 = Instance.new("Weld", p100)
3888
w97.Name = "apart_Weld"
3889
w97.Part0 = p100
3890
w97.C0 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3891
w97.Part1 = p101
3892
w97.C1 = CFrame.new(-3.82272005, -171.622757, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3893
w98 = Instance.new("Weld", p101)
3894
w98.Name = "apart_Weld"
3895
w98.Part0 = p101
3896
w98.C0 = CFrame.new(-3.82272005, -171.622757, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3897
w98.Part1 = p102
3898
w98.C1 = CFrame.new(-3.82272005, -171.878983, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3899
w99 = Instance.new("Weld", p103)
3900
w99.Name = "apart_Weld"
3901
w99.Part0 = p103
3902
w99.C0 = CFrame.new(-40.5, -172.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3903
w99.Part1 = p104
3904
w99.C1 = CFrame.new(-3.82272005, -172.59642, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3905
w100 = Instance.new("Weld", p104)
3906
w100.Name = "apart_Weld"
3907
w100.Part0 = p104
3908
w100.C0 = CFrame.new(-3.82272005, -172.59642, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3909
w100.Part1 = p105
3910
w100.C1 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3911
w101 = Instance.new("Weld", p105)
3912
w101.Name = "apart_Weld"
3913
w101.Part0 = p105
3914
w101.C0 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3915
w101.Part1 = p106
3916
w101.C1 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3917
w102 = Instance.new("Weld", p106)
3918
w102.Name = "apart_Weld"
3919
w102.Part0 = p106
3920
w102.C0 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3921
w102.Part1 = p107
3922
w102.C1 = CFrame.new(-40.5636902, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
3923
w103 = Instance.new("Weld", p107)
3924
w103.Name = "apart_Weld"
3925
w103.Part0 = p107
3926
w103.C0 = CFrame.new(-40.5636902, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
3927
w103.Part1 = p108
3928
w103.C1 = CFrame.new(40.5198517, -171.800369, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
3929
w104 = Instance.new("Weld", p108)
3930
w104.Name = "apart_Weld"
3931
w104.Part0 = p108
3932
w104.C0 = CFrame.new(40.5198517, -171.800369, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
3933
w104.Part1 = p109
3934
w104.C1 = CFrame.new(-3.82272005, -171.878983, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3935
w105 = Instance.new("Weld", p109)
3936
w105.Name = "apart_Weld"
3937
w105.Part0 = p109
3938
w105.C0 = CFrame.new(-3.82272005, -171.878983, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3939
w105.Part1 = p110
3940
w105.C1 = CFrame.new(-3.82272005, -171.622757, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3941
w106 = Instance.new("Weld", p110)
3942
w106.Name = "apart_Weld"
3943
w106.Part0 = p110
3944
w106.C0 = CFrame.new(-3.82272005, -171.622757, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3945
w106.Part1 = p111
3946
w106.C1 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3947
w107 = Instance.new("Weld", p111)
3948
w107.Name = "apart_Weld"
3949
w107.Part0 = p111
3950
w107.C0 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3951
w107.Part1 = p112
3952
w107.C1 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3953
w108 = Instance.new("Weld", p112)
3954
w108.Name = "apart_Weld"
3955
w108.Part0 = p112
3956
w108.C0 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3957
w108.Part1 = p113
3958
w108.C1 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3959
w109 = Instance.new("Weld", p114)
3960
w109.Name = "apart_Weld"
3961
w109.Part0 = p114
3962
w109.C0 = CFrame.new(-3.82272005, -175.594284, -38.0270386, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3963
w109.Part1 = p115
3964
w109.C1 = CFrame.new(-3.82272005, -175.414932, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3965
w110 = Instance.new("Weld", p115)
3966
w110.Name = "Left Arm_Weld"
3967
w110.Part0 = p115
3968
w110.C0 = CFrame.new(-3.82272005, -175.414932, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3969
w110.Part1 = p116
3970
w110.C1 = CFrame.new(-38.5, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3971
w111 = Instance.new("Weld", p116)
3972
w111.Name = "apart_Weld"
3973
w111.Part0 = p116
3974
w111.C0 = CFrame.new(-38.5, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
3975
w111.Part1 = p117
3976
w111.C1 = CFrame.new(4.23229599, -55.2924156, 171.076126, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
3977
w112 = Instance.new("Weld", p117)
3978
w112.Name = "apart_Weld"
3979
w112.Part0 = p117
3980
w112.C0 = CFrame.new(4.23229599, -55.2924156, 171.076126, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
3981
w112.Part1 = p118
3982
w112.C1 = CFrame.new(-3.82272005, -174.261902, -38.0782776, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3983
w113 = Instance.new("Weld", p118)
3984
w113.Name = "apart_Weld"
3985
w113.Part0 = p118
3986
w113.C0 = CFrame.new(-3.82272005, -174.261902, -38.0782776, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3987
w113.Part1 = p119
3988
w113.C1 = CFrame.new(3.81856751, -174.647522, 38.0728455, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
3989
w114 = Instance.new("Weld", p119)
3990
w114.Name = "apart_Weld"
3991
w114.Part0 = p119
3992
w114.C0 = CFrame.new(3.81856751, -174.647522, 38.0728455, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
3993
w114.Part1 = p120
3994
w114.C1 = CFrame.new(-3.82272005, -175.594284, -38.0270386, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3995
w115 = Instance.new("Weld", p120)
3996
w115.Name = "apart_Weld"
3997
w115.Part0 = p120
3998
w115.C0 = CFrame.new(-3.82272005, -175.594284, -38.0270386, 1, 0, 0, 0, 1, 0, 0, 0, 1)
3999
w115.Part1 = p121
4000
w115.C1 = CFrame.new(3.41236687, -55.2923851, 171.076141, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
4001
w116 = Instance.new("Weld", p121)
4002
w116.Name = "apart_Weld"
4003
w116.Part0 = p121
4004
w116.C0 = CFrame.new(3.41236687, -55.2923851, 171.076141, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
4005
w116.Part1 = p122
4006
w116.C1 = CFrame.new(3.81859493, -174.263199, 38.5853233, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
4007
w117 = Instance.new("Weld", p122)
4008
w117.Name = "apart_Weld"
4009
w117.Part0 = p122
4010
w117.C0 = CFrame.new(3.81859493, -174.263199, 38.5853233, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
4011
w117.Part1 = p123
4012
w117.C1 = CFrame.new(-3.82272005, -173.877563, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4013
w118 = Instance.new("Weld", p123)
4014
w118.Name = "apart_Weld"
4015
w118.Part0 = p123
4016
w118.C0 = CFrame.new(-3.82272005, -173.877563, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4017
w118.Part1 = p124
4018
w118.C1 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4019
w119 = Instance.new("Weld", p124)
4020
w119.Name = "apart_Weld"
4021
w119.Part0 = p124
4022
w119.C0 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4023
w119.Part1 = p125
4024
w119.C1 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4025
w120 = Instance.new("Weld", p125)
4026
w120.Name = "apart_Weld"
4027
w120.Part0 = p125
4028
w120.C0 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4029
w120.Part1 = p126
4030
w120.C1 = CFrame.new(-3.82272005, -174.64624, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4031
m.Parent = game:service("Workspace")
4032
m:MakeJoints()
4033
4034
RightArm.Transparency=1
4035
LeftArm.Transparency=1
4036
LeftLeg.Transparency=1
4037
RightLeg.Transparency=1
4038
------
4039
--//====================================================\\--
4040
--||			   CREATED BY SHACKLUSTER
4041
--\\====================================================//--
4042
4043
wait(0.2)
4044
4045
Player = game:GetService("Players").LocalPlayer
4046
PlayerGui = Player.PlayerGui
4047
Cam = workspace.CurrentCamera
4048
Backpack = Player.Backpack
4049
Character = Player.Character
4050
Humanoid = Character.Humanoid
4051
Mouse = Player:GetMouse()
4052
RootPart = Character["HumanoidRootPart"]
4053
Torso = Character["Torso"]
4054
Head = Character["Head"]
4055
RightArm = Character["Right Arm"]
4056
LeftArm = Character["Left Arm"]
4057
RightLeg = Character["Right Leg"]
4058
LeftLeg = Character["Left Leg"]
4059
RootJoint = RootPart["RootJoint"]
4060
Neck = Torso["Neck"]
4061
RightShoulder = Torso["Right Shoulder"]
4062
LeftShoulder = Torso["Left Shoulder"]
4063
RightHip = Torso["Right Hip"]
4064
LeftHip = Torso["Left Hip"]
4065
local sick = Instance.new("Sound",Torso)
4066
sick.SoundId = "rbxassetid://342929664"
4067
sick.Looped = true
4068
sick.Pitch = 1
4069
sick.Volume = 3
4070
sick:Play()
4071
4072
IT = Instance.new
4073
CF = CFrame.new
4074
VT = Vector3.new
4075
RAD = math.rad
4076
C3 = Color3.new
4077
UD2 = UDim2.new
4078
BRICKC = BrickColor.new
4079
ANGLES = CFrame.Angles
4080
EULER = CFrame.fromEulerAnglesXYZ
4081
COS = math.cos
4082
ACOS = math.acos
4083
SIN = math.sin
4084
ASIN = math.asin
4085
ABS = math.abs
4086
MRANDOM = math.random
4087
FLOOR = math.floor
4088
4089
--//=================================\\
4090
--|| 	      USEFUL VALUES
4091
--\\=================================//
4092
4093
Animation_Speed = 3
4094
Frame_Speed = 1 / 60 -- (1 / 30) OR (1 / 60)
4095
local Speed = 35
4096
local ROOTC0 = CF(0, 0, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
4097
local NECKC0 = CF(0, 1, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
4098
local RIGHTSHOULDERC0 = CF(-0.5, 0, 0) * ANGLES(RAD(0), RAD(90), RAD(0))
4099
local LEFTSHOULDERC0 = CF(0.5, 0, 0) * ANGLES(RAD(0), RAD(-90), RAD(0))
4100
local DAMAGEMULTIPLIER = 1
4101
local ANIM = "Idle"
4102
local ATTACK = false
4103
local EQUIPPED = false
4104
local HOLD = false
4105
local COMBO = 1
4106
local Rooted = false
4107
local SINE = 0
4108
local KEYHOLD = false
4109
local CHANGE = 2 / Animation_Speed
4110
local WALKINGANIM = false
4111
local VALUE1 = false
4112
local VALUE2 = false
4113
local ROBLOXIDLEANIMATION = IT("Animation")
4114
ROBLOXIDLEANIMATION.Name = "Roblox Idle Animation"
4115
ROBLOXIDLEANIMATION.AnimationId = "http://www.roblox.com/asset/?id=180435571"
4116
--ROBLOXIDLEANIMATION.Parent = Humanoid
4117
local WEAPONGUI = IT("ScreenGui", PlayerGui)
4118
WEAPONGUI.Name = "Weapon GUI"
4119
local Effects = IT("Folder", Character)
4120
Effects.Name = "Effects"
4121
local ANIMATOR = Humanoid.Animator
4122
local ANIMATE = Character.Animate
4123
local UNANCHOR = true
4124
local LAUGHS = {834001699,834001752,834001797,834001828}
4125
local SONGS = {342929664,342929664,342929664,0}
4126
local CHOICE = MRANDOM(1,4)
4127
4128
--//=================================\\
4129
--\\=================================//
4130
4131
4132
--//=================================\\
4133
--|| SAZERENOS' ARTIFICIAL HEARTBEAT
4134
--\\=================================//
4135
4136
ArtificialHB = Instance.new("BindableEvent", script)
4137
ArtificialHB.Name = "ArtificialHB"
4138
4139
script:WaitForChild("ArtificialHB")
4140
4141
frame = Frame_Speed
4142
tf = 0
4143
allowframeloss = false
4144
tossremainder = false
4145
lastframe = tick()
4146
script.ArtificialHB:Fire()
4147
4148
game:GetService("RunService").Heartbeat:connect(function(s, p)
4149
	tf = tf + s
4150
	if tf >= frame then
4151
		if allowframeloss then
4152
			script.ArtificialHB:Fire()
4153
			lastframe = tick()
4154
		else
4155
			for i = 1, math.floor(tf / frame) do
4156
				script.ArtificialHB:Fire()
4157
			end
4158
		lastframe = tick()
4159
		end
4160
		if tossremainder then
4161
			tf = 0
4162
		else
4163
			tf = tf - frame * math.floor(tf / frame)
4164
		end
4165
	end
4166
end)
4167
4168
--//=================================\\
4169
--\\=================================//
4170
4171
--//=================================\\
4172
--|| 	      SOME FUNCTIONS
4173
--\\=================================//
4174
4175
function Raycast(POSITION, DIRECTION, RANGE, IGNOREDECENDANTS)
4176
	return workspace:FindPartOnRay(Ray.new(POSITION, DIRECTION.unit * RANGE), IGNOREDECENDANTS)
4177
end
4178
4179
function PositiveAngle(NUMBER)
4180
	if NUMBER >= 0 then
4181
		NUMBER = 0
4182
	end
4183
	return NUMBER
4184
end
4185
4186
function NegativeAngle(NUMBER)
4187
	if NUMBER <= 0 then
4188
		NUMBER = 0
4189
	end
4190
	return NUMBER
4191
end
4192
4193
function Swait(NUMBER)
4194
	if NUMBER == 0 or NUMBER == nil then
4195
		ArtificialHB.Event:wait()
4196
	else
4197
		for i = 1, NUMBER do
4198
			ArtificialHB.Event:wait()
4199
		end
4200
	end
4201
end
4202
4203
function CreateMesh(MESH, PARENT, MESHTYPE, MESHID, TEXTUREID, SCALE, OFFSET)
4204
	local NEWMESH = IT(MESH)
4205
	if MESH == "SpecialMesh" then
4206
		NEWMESH.MeshType = MESHTYPE
4207
		if MESHID ~= "nil" and MESHID ~= "" then
4208
			NEWMESH.MeshId = "http://www.roblox.com/asset/?id="..MESHID
4209
		end
4210
		if TEXTUREID ~= "nil" and TEXTUREID ~= "" then
4211
			NEWMESH.TextureId = "http://www.roblox.com/asset/?id="..TEXTUREID
4212
		end
4213
	end
4214
	NEWMESH.Offset = OFFSET or VT(0, 0, 0)
4215
	NEWMESH.Scale = SCALE
4216
	NEWMESH.Parent = PARENT
4217
	return NEWMESH
4218
end
4219
4220
function CreatePart(FORMFACTOR, PARENT, MATERIAL, REFLECTANCE, TRANSPARENCY, BRICKCOLOR, NAME, SIZE, ANCHOR)
4221
	local NEWPART = IT("Part")
4222
	NEWPART.formFactor = FORMFACTOR
4223
	NEWPART.Reflectance = REFLECTANCE
4224
	NEWPART.Transparency = TRANSPARENCY
4225
	NEWPART.CanCollide = false
4226
	NEWPART.Locked = true
4227
	NEWPART.Anchored = true
4228
	if ANCHOR == false then
4229
		NEWPART.Anchored = false
4230
	end
4231
	NEWPART.BrickColor = BRICKC(tostring(BRICKCOLOR))
4232
	NEWPART.Name = NAME
4233
	NEWPART.Size = SIZE
4234
	NEWPART.Position = Torso.Position
4235
	NEWPART.Material = MATERIAL
4236
	NEWPART:BreakJoints()
4237
	NEWPART.Parent = PARENT
4238
	return NEWPART
4239
end
4240
4241
	local function weldBetween(a, b)
4242
	    local weldd = IT("Weld")
4243
	    weldd.Part0 = a
4244
	    weldd.Part1 = b
4245
	    weldd.C0 = CF()
4246
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
4247
	    weldd.Parent = a
4248
	    return weldd
4249
	end
4250
4251
4252
function QuaternionFromCFrame(cf)
4253
	local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
4254
	local trace = m00 + m11 + m22
4255
	if trace > 0 then 
4256
		local s = math.sqrt(1 + trace)
4257
		local recip = 0.5 / s
4258
		return (m21 - m12) * recip, (m02 - m20) * recip, (m10 - m01) * recip, s * 0.5
4259
	else
4260
		local i = 0
4261
		if m11 > m00 then
4262
			i = 1
4263
		end
4264
		if m22 > (i == 0 and m00 or m11) then
4265
			i = 2
4266
		end
4267
		if i == 0 then
4268
			local s = math.sqrt(m00 - m11 - m22 + 1)
4269
			local recip = 0.5 / s
4270
			return 0.5 * s, (m10 + m01) * recip, (m20 + m02) * recip, (m21 - m12) * recip
4271
		elseif i == 1 then
4272
			local s = math.sqrt(m11 - m22 - m00 + 1)
4273
			local recip = 0.5 / s
4274
			return (m01 + m10) * recip, 0.5 * s, (m21 + m12) * recip, (m02 - m20) * recip
4275
		elseif i == 2 then
4276
			local s = math.sqrt(m22 - m00 - m11 + 1)
4277
			local recip = 0.5 / s return (m02 + m20) * recip, (m12 + m21) * recip, 0.5 * s, (m10 - m01) * recip
4278
		end
4279
	end
4280
end
4281
 
4282
function QuaternionToCFrame(px, py, pz, x, y, z, w)
4283
	local xs, ys, zs = x + x, y + y, z + z
4284
	local wx, wy, wz = w * xs, w * ys, w * zs
4285
	local xx = x * xs
4286
	local xy = x * ys
4287
	local xz = x * zs
4288
	local yy = y * ys
4289
	local yz = y * zs
4290
	local zz = z * zs
4291
	return CFrame.new(px, py, pz, 1 - (yy + zz), xy - wz, xz + wy, xy + wz, 1 - (xx + zz), yz - wx, xz - wy, yz + wx, 1 - (xx + yy))
4292
end
4293
 
4294
function QuaternionSlerp(a, b, t)
4295
	local cosTheta = a[1] * b[1] + a[2] * b[2] + a[3] * b[3] + a[4] * b[4]
4296
	local startInterp, finishInterp;
4297
	if cosTheta >= 0.0001 then
4298
		if (1 - cosTheta) > 0.0001 then
4299
			local theta = ACOS(cosTheta)
4300
			local invSinTheta = 1 / SIN(theta)
4301
			startInterp = SIN((1 - t) * theta) * invSinTheta
4302
			finishInterp = SIN(t * theta) * invSinTheta
4303
		else
4304
			startInterp = 1 - t
4305
			finishInterp = t
4306
		end
4307
	else
4308
		if (1 + cosTheta) > 0.0001 then
4309
			local theta = ACOS(-cosTheta)
4310
			local invSinTheta = 1 / SIN(theta)
4311
			startInterp = SIN((t - 1) * theta) * invSinTheta
4312
			finishInterp = SIN(t * theta) * invSinTheta
4313
		else
4314
			startInterp = t - 1
4315
			finishInterp = t
4316
		end
4317
	end
4318
	return a[1] * startInterp + b[1] * finishInterp, a[2] * startInterp + b[2] * finishInterp, a[3] * startInterp + b[3] * finishInterp, a[4] * startInterp + b[4] * finishInterp
4319
end
4320
4321
function Clerp(a, b, t)
4322
	local qa = {QuaternionFromCFrame(a)}
4323
	local qb = {QuaternionFromCFrame(b)}
4324
	local ax, ay, az = a.x, a.y, a.z
4325
	local bx, by, bz = b.x, b.y, b.z
4326
	local _t = 1 - t
4327
	return QuaternionToCFrame(_t * ax + t * bx, _t * ay + t * by, _t * az + t * bz, QuaternionSlerp(qa, qb, t))
4328
end
4329
4330
function CreateFrame(PARENT, TRANSPARENCY, BORDERSIZEPIXEL, POSITION, SIZE, COLOR, BORDERCOLOR, NAME)
4331
	local frame = IT("Frame")
4332
	frame.BackgroundTransparency = TRANSPARENCY
4333
	frame.BorderSizePixel = BORDERSIZEPIXEL
4334
	frame.Position = POSITION
4335
	frame.Size = SIZE
4336
	frame.BackgroundColor3 = COLOR
4337
	frame.BorderColor3 = BORDERCOLOR
4338
	frame.Name = NAME
4339
	frame.Parent = PARENT
4340
	return frame
4341
end
4342
4343
function CreateLabel(PARENT, TEXT, TEXTCOLOR, TEXTFONTSIZE, TEXTFONT, TRANSPARENCY, BORDERSIZEPIXEL, STROKETRANSPARENCY, NAME)
4344
	local label = IT("TextLabel")
4345
	label.BackgroundTransparency = 1
4346
	label.Size = UD2(1, 0, 1, 0)
4347
	label.Position = UD2(0, 0, 0, 0)
4348
	label.TextColor3 = TEXTCOLOR
4349
	label.TextStrokeTransparency = STROKETRANSPARENCY
4350
	label.TextTransparency = TRANSPARENCY
4351
	label.FontSize = TEXTFONTSIZE
4352
	label.Font = TEXTFONT
4353
	label.BorderSizePixel = BORDERSIZEPIXEL
4354
	label.TextScaled = false
4355
	label.Text = TEXT
4356
	label.Name = NAME
4357
	label.Parent = PARENT
4358
	return label
4359
end
4360
4361
function NoOutlines(PART)
4362
	PART.TopSurface, PART.BottomSurface, PART.LeftSurface, PART.RightSurface, PART.FrontSurface, PART.BackSurface = 10, 10, 10, 10, 10, 10
4363
end
4364
4365
function CreateWeldOrSnapOrMotor(TYPE, PARENT, PART0, PART1, C0, C1)
4366
	local NEWWELD = IT(TYPE)
4367
	NEWWELD.Part0 = PART0
4368
	NEWWELD.Part1 = PART1
4369
	NEWWELD.C0 = C0
4370
	NEWWELD.C1 = C1
4371
	NEWWELD.Parent = PARENT
4372
	return NEWWELD
4373
end
4374
4375
local S = IT("Sound")
4376
function CreateSound(ID, PARENT, VOLUME, PITCH, DOESLOOP)
4377
	local NEWSOUND = nil
4378
	coroutine.resume(coroutine.create(function()
4379
		NEWSOUND = S:Clone()
4380
		NEWSOUND.Parent = PARENT
4381
		NEWSOUND.Volume = VOLUME
4382
		NEWSOUND.Pitch = PITCH
4383
		NEWSOUND.SoundId = "http://www.roblox.com/asset/?id="..ID
4384
		NEWSOUND:play()
4385
		if DOESLOOP == true then
4386
			NEWSOUND.Looped = true
4387
		else
4388
			repeat wait(1) until NEWSOUND.Playing == false
4389
			NEWSOUND:remove()
4390
		end
4391
	end))
4392
	return NEWSOUND
4393
end
4394
4395
function CFrameFromTopBack(at, top, back)
4396
	local right = top:Cross(back)
4397
	return CF(at.x, at.y, at.z, right.x, top.x, back.x, right.y, top.y, back.y, right.z, top.z, back.z)
4398
end
4399
4400
--WACKYEFFECT({EffectType = "", Size = VT(1,1,1), Size2 = VT(0,0,0), Transparency = 0, Transparency2 = 1, CFrame = CF(), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
4401
function WACKYEFFECT(Table)
4402
	local TYPE = (Table.EffectType or "Sphere")
4403
	local SIZE = (Table.Size or VT(1,1,1))
4404
	local ENDSIZE = (Table.Size2 or VT(0,0,0))
4405
	local TRANSPARENCY = (Table.Transparency or 0)
4406
	local ENDTRANSPARENCY = (Table.Transparency2 or 1)
4407
	local CFRAME = (Table.CFrame or Torso.CFrame)
4408
	local MOVEDIRECTION = (Table.MoveToPos or nil)
4409
	local ROTATION1 = (Table.RotationX or 0)
4410
	local ROTATION2 = (Table.RotationY or 0)
4411
	local ROTATION3 = (Table.RotationZ or 0)
4412
	local MATERIAL = (Table.Material or "Neon")
4413
	local COLOR = (Table.Color or C3(0,0,255))
4414
	local TIME = (Table.Time or 45)
4415
	local SOUNDID = (Table.SoundID or nil)
4416
	local SOUNDPITCH = (Table.SoundPitch or nil)
4417
	local SOUNDVOLUME = (Table.SoundVolume or nil)
4418
	coroutine.resume(coroutine.create(function()
4419
		local PLAYSSOUND = false
4420
		local SOUND = nil
4421
		local EFFECT = CreatePart(3, Effects, MATERIAL, 0, TRANSPARENCY, BRICKC("Pearl"), "Effect", VT(1,1,1), true)
4422
		if SOUNDID ~= nil and SOUNDPITCH ~= nil and SOUNDVOLUME ~= nil then
4423
			PLAYSSOUND = true
4424
			SOUND = CreateSound(SOUNDID, EFFECT, SOUNDVOLUME, SOUNDPITCH, false)
4425
		end
4426
		EFFECT.Color = COLOR
4427
		local MSH = nil
4428
		if TYPE == "Sphere" then
4429
			MSH = CreateMesh("SpecialMesh", EFFECT, "Sphere", "", "", SIZE, VT(0,0,0))
4430
		elseif TYPE == "Block" then
4431
			MSH = IT("BlockMesh",EFFECT)
4432
			MSH.Scale = VT(SIZE.X,SIZE.X,SIZE.X)
4433
		elseif TYPE == "Wave" then
4434
			MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "20329976", "", SIZE, VT(0,0,-SIZE.X/8))
4435
		elseif TYPE == "Ring" then
4436
			MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "559831844", "", VT(SIZE.X,SIZE.X,0.1), VT(0,0,0))
4437
		elseif TYPE == "Slash" then
4438
			MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "662586858", "", VT(SIZE.X/10,0,SIZE.X/10), VT(0,0,0))
4439
		elseif TYPE == "Round Slash" then
4440
			MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "662585058", "", VT(SIZE.X/10,0,SIZE.X/10), VT(0,0,0))
4441
		elseif TYPE == "Swirl" then
4442
			MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "1051557", "", SIZE, VT(0,0,0))
4443
		elseif TYPE == "Skull" then
4444
			MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "4770583", "", SIZE, VT(0,0,0))
4445
		elseif TYPE == "Crystal" then
4446
			MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "9756362", "", SIZE, VT(0,0,0))
4447
		end
4448
		if MSH ~= nil then
4449
			local MOVESPEED = nil
4450
			if MOVEDIRECTION ~= nil then
4451
				MOVESPEED = (CFRAME.p - MOVEDIRECTION).Magnitude/TIME
4452
			end
4453
			local GROWTH = SIZE - ENDSIZE
4454
			local TRANS = TRANSPARENCY - ENDTRANSPARENCY
4455
			if TYPE == "Block" then
4456
				EFFECT.CFrame = CFRAME*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))
4457
			else
4458
				EFFECT.CFrame = CFRAME
4459
			end
4460
			for LOOP = 1, TIME+1 do
4461
				Swait()
4462
				MSH.Scale = MSH.Scale - GROWTH/TIME
4463
				if TYPE == "Wave" then
4464
					MSH.Offset = VT(0,0,-MSH.Scale.X/8)
4465
				end
4466
				EFFECT.Transparency = EFFECT.Transparency - TRANS/TIME
4467
				if TYPE == "Block" then
4468
					EFFECT.CFrame = CFRAME*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))
4469
				else
4470
					EFFECT.CFrame = EFFECT.CFrame*ANGLES(RAD(ROTATION1),RAD(ROTATION2),RAD(ROTATION3))
4471
				end
4472
				if MOVEDIRECTION ~= nil then
4473
					local ORI = EFFECT.Orientation
4474
					EFFECT.CFrame = CF(EFFECT.Position,MOVEDIRECTION)*CF(0,0,-MOVESPEED)
4475
					EFFECT.Orientation = ORI
4476
				end
4477
			end
4478
			if PLAYSSOUND == false then
4479
				EFFECT:remove()
4480
			else
4481
				SOUND.Stopped:Connect(function()
4482
					EFFECT:remove()
4483
				end)
4484
			end
4485
		else
4486
			if PLAYSSOUND == false then
4487
				EFFECT:remove()
4488
			else
4489
				repeat Swait() until SOUND.Playing == false
4490
				EFFECT:remove()
4491
			end
4492
		end
4493
	end))
4494
end
4495
4496
function MakeForm(PART,TYPE)
4497
	if TYPE == "Cyl" then
4498
		local MSH = IT("CylinderMesh",PART)
4499
	elseif TYPE == "Ball" then
4500
		local MSH = IT("SpecialMesh",PART)
4501
		MSH.MeshType = "Sphere"
4502
	elseif TYPE == "Wedge" then
4503
		local MSH = IT("SpecialMesh",PART)
4504
		MSH.MeshType = "Wedge"
4505
	end
4506
end
4507
4508
Debris = game:GetService("Debris")
4509
4510
function CastProperRay(StartPos, EndPos, Distance, Ignore)
4511
	local DIRECTION = CF(StartPos,EndPos).lookVector
4512
	return Raycast(StartPos, DIRECTION, Distance, Ignore)
4513
end
4514
4515
function turnto(position)
4516
	RootPart.CFrame=CFrame.new(RootPart.CFrame.p,VT(position.X,RootPart.Position.Y,position.Z)) * CFrame.new(0, 0, 0)
4517
end
4518
4519
function SpawnTrail(FROM,TO,BIG)
4520
	local TRAIL = CreatePart(3, Effects, "Neon", 0, 0.5, "Dark blue", "Trail", VT(0,0,0))
4521
	MakeForm(TRAIL,"Cyl")
4522
	local DIST = (FROM - TO).Magnitude
4523
	if BIG == true then
4524
		TRAIL.Size = VT(0.5,DIST,0.5)
4525
	else
4526
		TRAIL.Size = VT(0.25,DIST,0.25)
4527
	end
4528
	TRAIL.CFrame = CF(FROM, TO) * CF(0, 0, -DIST/2) * ANGLES(RAD(90),RAD(0),RAD(0))
4529
	coroutine.resume(coroutine.create(function()
4530
		for i = 1, 5 do
4531
			Swait()
4532
			TRAIL.Transparency = TRAIL.Transparency + 0.1
4533
		end
4534
		TRAIL:remove()
4535
	end))
4536
end
4537
4538
local asd = Instance.new("ParticleEmitter")
4539
asd.Color = ColorSequence.new(Color3.new(170, 0, 0), Color3.new(170, 0, 0))
4540
asd.LightEmission = .1
4541
asd.Texture = "http://www.roblox.com/asset/?ID=291880914"
4542
aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.6),NumberSequenceKeypoint.new(1, 2)})
4543
bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
4544
asd.Transparency = bbb
4545
asd.Size = aaa
4546
asd.ZOffset = .9
4547
asd.Acceleration = Vector3.new(0, -15, 0)
4548
asd.LockedToPart = false
4549
asd.EmissionDirection = "Back"
4550
asd.Lifetime = NumberRange.new(1, 2)
4551
asd.Rotation = NumberRange.new(-100, 100)
4552
asd.RotSpeed = NumberRange.new(-100, 100)
4553
asd.Speed = NumberRange.new(10)
4554
asd.Enabled = false
4555
asd.VelocitySpread = 999
4556
4557
function getbloody(victim,amount)
4558
	local PART = CreatePart(3, Effects, "Metal", 0, 1, "Mid gray", "Blood", victim.Size)
4559
	PART.CFrame = victim.CFrame
4560
	local HITPLAYERSOUNDS = {"356551938","264486467"}
4561
	Debris:AddItem(PART,5)
4562
	CreateSound(HITPLAYERSOUNDS[MRANDOM(1, #HITPLAYERSOUNDS)], PART, 1, (math.random(8,12)/10))
4563
	CreateSound(HITPLAYERSOUNDS[MRANDOM(1, #HITPLAYERSOUNDS)], PART, 1, (math.random(8,12)/10))
4564
	CreateSound(HITPLAYERSOUNDS[MRANDOM(1, #HITPLAYERSOUNDS)], PART, 1, (math.random(8,12)/10))
4565
	local prtcl = asd:Clone()
4566
	prtcl.Parent = PART
4567
	prtcl:Emit(amount*10)
4568
end
4569
4570
local Particle = IT("ParticleEmitter",nil)
4571
Particle.Enabled = false
4572
Particle.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,1),NumberSequenceKeypoint.new(0.3,0.95),NumberSequenceKeypoint.new(1,1)})
4573
Particle.LightEmission = 0.5
4574
Particle.Rate = 150
4575
Particle.ZOffset = 1
4576
Particle.Rotation = NumberRange.new(-180, 180)
4577
Particle.RotSpeed = NumberRange.new(-180, 180)
4578
Particle.Texture = "http://www.roblox.com/asset/?id=304437537"
4579
Particle.Color = ColorSequence.new(C3(0,0,255),C3(0,0,255))
4580
4581
--ParticleEmitter({Speed = 5, Drag = 0, Size1 = 1, Size2 = 5, Lifetime1 = 1, Lifetime2 = 1.5, Parent = Torso, Emit = 100, Offset = 360, Enabled = false})
4582
function ParticleEmitter(Table)
4583
	local PRTCL = Particle:Clone()
4584
	local Speed = Table.Speed or 5
4585
	local Drag = Table.Drag or 0
4586
	local Size1 = Table.Size1 or 1
4587
	local Size2 = Table.Size2 or 5
4588
	local Lifetime1 = Table.Lifetime1 or 1
4589
	local Lifetime2 = Table.Lifetime2 or 1.5
4590
	local Parent = Table.Parent or Torso
4591
	local Emit = Table.Emit or 100
4592
	local Offset = Table.Offset or 360
4593
	local Acel = Table.Acel or VT(0,0,0)
4594
	local Enabled = Table.Enabled or false
4595
	PRTCL.Parent = Parent
4596
	PRTCL.Size = NumberSequence.new(Size1,Size2)
4597
	PRTCL.Lifetime = NumberRange.new(Lifetime1,Lifetime2)
4598
	PRTCL.Speed = NumberRange.new(Speed)
4599
	PRTCL.VelocitySpread = Offset
4600
	PRTCL.Drag = Drag
4601
	PRTCL.Acceleration = Acel
4602
	if Enabled == false then
4603
		PRTCL:Emit(Emit)
4604
		Debris:AddItem(PRTCL,Lifetime2)
4605
	else
4606
		PRTCL.Enabled = true
4607
	end
4608
	return PRTCL
4609
end
4610
4611
--//=================================\\
4612
--||	     WEAPON CREATION
4613
--\\=================================//
4614
4615
local Handle = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,1.2,0.2),false)
4616
local RightArmGrasp = CreateWeldOrSnapOrMotor("Weld", Handle, RightArm, Handle, CF(0,-0.8, 0) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0.3, 0))
4617
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,0.8,0.2),false)
4618
MakeForm(Part,"Wedge")
4619
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, 0.2, 0.2) * ANGLES(RAD(0), RAD(180), RAD(0)), CF(0, 0, 0))
4620
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.3,0.5,0.6),false)
4621
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.5, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
4622
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.4,0.4,0.4),false)
4623
MakeForm(Part,"Cyl")
4624
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.45, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
4625
for i = 1, 8 do
4626
	local Piece = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Eye", VT(0,0.35,0.41),false)
4627
	CreateWeldOrSnapOrMotor("Weld", Handle, Part, Piece, CF(0, 0, 0) * ANGLES(RAD(0), RAD((360/8)*i), RAD(0)), CF(0, 0, 0))
4628
end
4629
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,0.5,0.2),false)
4630
MakeForm(Part,"Wedge")
4631
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.55, 0.2) * ANGLES(RAD(-135), RAD(0), RAD(0)), CF(0, -0.3, 0))
4632
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Eye", VT(0.39,0.41,0.39),false)
4633
MakeForm(Part,"Cyl")
4634
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.45, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
4635
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.3,0.5,0.5),false)
4636
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.5, 0.2) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
4637
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.3,0.4,0.5),false)
4638
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.55, 0.65) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
4639
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,0,0.6),false)
4640
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, 0, 0) * ANGLES(RAD(45), RAD(0), RAD(0)), CF(0, -0.2, -0.3))
4641
local RightBarrel = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.28,5,0.28),false)
4642
MakeForm(RightBarrel,"Cyl")
4643
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, RightBarrel, CF(0, -0.6, 0.5) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, -2.5, 0))
4644
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0,0.2,0.2),false)
4645
MakeForm(Part,"Wedge")
4646
CreateWeldOrSnapOrMotor("Weld", Handle, RightBarrel, Part, CF(0, 2.415, 0.15) * ANGLES(RAD(180), RAD(0), RAD(0)), CF(0, 0, 0))
4647
local RightHole = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Eye", VT(0.2,0,0.2),false)
4648
MakeForm(RightHole,"Cyl")
4649
CreateWeldOrSnapOrMotor("Weld", Handle, RightBarrel, RightHole, CF(0, 2.5, 0), CF(0, 0, 0))
4650
local Handle = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,1.2,0.2),false)
4651
local LeftArmGraps = CreateWeldOrSnapOrMotor("Weld", Handle, LeftArm, Handle, CF(0,-0.8, 0) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0.3, 0))
4652
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,0.8,0.2),false)
4653
MakeForm(Part,"Wedge")
4654
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, 0.2, 0.2) * ANGLES(RAD(0), RAD(180), RAD(0)), CF(0, 0, 0))
4655
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.3,0.5,0.6),false)
4656
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.5, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
4657
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.4,0.4,0.4),false)
4658
MakeForm(Part,"Cyl")
4659
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.45, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
4660
for i = 1, 8 do
4661
	local Piece = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Eye", VT(0,0.35,0.41),false)
4662
	CreateWeldOrSnapOrMotor("Weld", Handle, Part, Piece, CF(0, 0, 0) * ANGLES(RAD(0), RAD((360/8)*i), RAD(0)), CF(0, 0, 0))
4663
end
4664
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,0.5,0.2),false)
4665
MakeForm(Part,"Wedge")
4666
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.55, 0.2) * ANGLES(RAD(-135), RAD(0), RAD(0)), CF(0, -0.3, 0))
4667
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Eye", VT(0.39,0.41,0.39),false)
4668
MakeForm(Part,"Cyl")
4669
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.45, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
4670
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.3,0.5,0.5),false)
4671
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.5, 0.2) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
4672
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.3,0.4,0.5),false)
4673
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.55, 0.65) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
4674
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,0,0.6),false)
4675
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, 0, 0) * ANGLES(RAD(45), RAD(0), RAD(0)), CF(0, -0.2, -0.3))
4676
local LeftBarrel = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.28,5,0.28),false)
4677
MakeForm(LeftBarrel,"Cyl")
4678
CreateWeldOrSnapOrMotor("Weld", Handle, Handle, LeftBarrel, CF(0, -0.6, 0.5) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, -2.5, 0))
4679
local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0,0.2,0.2),false)
4680
MakeForm(Part,"Wedge")
4681
CreateWeldOrSnapOrMotor("Weld", Handle, LeftBarrel, Part, CF(0, 2.415, 0.15) * ANGLES(RAD(180), RAD(0), RAD(0)), CF(0, 0, 0))
4682
local LeftHole = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Eye", VT(0.2,0,0.2),false)
4683
MakeForm(LeftHole,"Cyl")
4684
CreateWeldOrSnapOrMotor("Weld", Handle, LeftBarrel, LeftHole, CF(0, 2.5, 0), CF(0, 0, 0))
4685
local Eye = CreatePart(3, Character, "Neon", 0, 0, "Dark red", "Eye", VT(0.6,0.1,1)/2,false)
4686
MakeForm(Eye,"Ball")
4687
CreateWeldOrSnapOrMotor("Weld", Eye, Head, Eye, CF(0,0.2,0) * ANGLES(RAD(0), RAD(-18), RAD(15)), CF(0, 0, 0.4))
4688
local Eye = CreatePart(3, Character, "Neon", 0, 0, "Dark red", "Eye", VT(0.6,0.1,1)/2,false)
4689
MakeForm(Eye,"Ball")
4690
CreateWeldOrSnapOrMotor("Weld", Eye, Head, Eye, CF(0,0.2,0) * ANGLES(RAD(0), RAD(18), RAD(-15)), CF(0, 0, 0.4))
4691
local Eye = CreatePart(3, Character, "Neon", 0, 0, "Dark red", "Eye", VT(0.1,1,1)/2,false)
4692
MakeForm(Eye,"Ball")
4693
CreateWeldOrSnapOrMotor("Weld", Eye, Head, Eye, CF(0,0.15,0) * ANGLES(RAD(0), RAD(-18), RAD(0)), CF(0, 0, 0.4))
4694
local Eye = CreatePart(3, Character, "Neon", 0, 0, "Dark red", "Eye", VT(0.1,1,1)/2,false)
4695
MakeForm(Eye,"Ball")
4696
CreateWeldOrSnapOrMotor("Weld", Eye, Head, Eye, CF(0,0.15,0) * ANGLES(RAD(0), RAD(18), RAD(0)), CF(0, 0, 0.4))
4697
local A = IT("Attachment",Torso)
4698
A.Position = VT(1,1.3,0)
4699
A.Orientation = VT(-0.098, -89.999, 0.227)
4700
local B = IT("Attachment",Torso)
4701
B.Position = VT(-1.3,-0.6,0)
4702
B.Orientation = VT(-88.911, -68.808, 158.782)
4703
local ChainLink = IT("Beam",Torso)
4704
ChainLink.Texture = "rbxassetid://73042633"
4705
ChainLink.Color = ColorSequence.new(C3(0,0,255))
4706
ChainLink.TextureSpeed = 1
4707
ChainLink.FaceCamera = true
4708
ChainLink.Width0 = 1
4709
ChainLink.Width1 = 1
4710
ChainLink.TextureLength = 3
4711
ChainLink.Attachment0 = A
4712
ChainLink.Attachment1 = B
4713
ChainLink.CurveSize0 = 1.6
4714
ChainLink.CurveSize1 = 1.6
4715
ChainLink.FaceCamera = true
4716
ChainLink.Transparency = NumberSequence.new(0)
4717
local ChainLink = IT("Beam",Torso)
4718
ChainLink.Texture = "rbxassetid://73042633"
4719
ChainLink.Color = ColorSequence.new(C3(0,0,255))
4720
ChainLink.TextureSpeed = 1
4721
ChainLink.FaceCamera = true
4722
ChainLink.Width0 = 1
4723
ChainLink.Width1 = 1
4724
ChainLink.TextureLength = 3
4725
ChainLink.Attachment0 = B
4726
ChainLink.Attachment1 = A
4727
ChainLink.CurveSize0 = 1.6
4728
ChainLink.CurveSize1 = 1.6
4729
ChainLink.FaceCamera = true
4730
ChainLink.Transparency = NumberSequence.new(0)
4731
local A = IT("Attachment",Torso)
4732
A.Position = VT(1.3,-0.85,0)
4733
A.Orientation = VT(-0.098, -89.999, 0.227)
4734
local B = IT("Attachment",Torso)
4735
B.Position = VT(-1,2,0)
4736
B.Orientation = VT(-88.911, -68.808, 158.782)
4737
local ChainLink = IT("Beam",Torso)
4738
ChainLink.Texture = "rbxassetid://73042633"
4739
ChainLink.Color = ColorSequence.new(C3(0,0,255))
4740
ChainLink.TextureSpeed = 1
4741
ChainLink.FaceCamera = true
4742
ChainLink.Width0 = 1
4743
ChainLink.Width1 = 1
4744
ChainLink.TextureLength = 3
4745
ChainLink.Attachment0 = A
4746
ChainLink.Attachment1 = B
4747
ChainLink.CurveSize0 = 1.3
4748
ChainLink.CurveSize1 = 1.3
4749
ChainLink.FaceCamera = true
4750
ChainLink.Transparency = NumberSequence.new(0)
4751
local ChainLink = IT("Beam",Torso)
4752
ChainLink.Texture = "rbxassetid://73042633"
4753
ChainLink.Color = ColorSequence.new(C3(0,0,255))
4754
ChainLink.TextureSpeed = 1
4755
ChainLink.FaceCamera = true
4756
ChainLink.Width0 = 1
4757
ChainLink.Width1 = 1
4758
ChainLink.TextureLength = 3
4759
ChainLink.Attachment0 = B
4760
ChainLink.Attachment1 = A
4761
ChainLink.CurveSize0 = 1.3
4762
ChainLink.CurveSize1 = 1.3
4763
ChainLink.FaceCamera = true
4764
ChainLink.Transparency = NumberSequence.new(0)
4765
4766
local A = IT("Attachment",RightBarrel)
4767
A.Position = VT(0,-2.5,0)
4768
local B = IT("Attachment",RightBarrel)
4769
B.Position = VT(0,2.5,0)
4770
local Trail = IT("Trail",RightBarrel)
4771
Trail.Attachment0 = A
4772
Trail.Attachment1 = B
4773
Trail.Lifetime = 0.2
4774
Trail.Color = ColorSequence.new(BRICKC"Dark blue".Color)
4775
Trail.Transparency = NumberSequence.new(0, 1)
4776
Trail.Enabled = false
4777
4778
local PRT = ParticleEmitter({Speed = 0.3, Drag = 3, Size1 = 0.1, Size2 = 0.3, Lifetime1 = 0.2, Lifetime2 = 1, Parent = RightLeg, Emit = 100, Offset = 360, Enabled = true})
4779
PRT.LockedToPart = true
4780
local PRT = ParticleEmitter({Speed = 0.3, Drag = 3, Size1 = 0.1, Size2 = 0.3, Lifetime1 = 0.2, Lifetime2 = 1, Parent = LeftLeg, Emit = 100, Offset = 360, Enabled = true})
4781
PRT.LockedToPart = true
4782
local PRT = ParticleEmitter({Speed = 0.3, Drag = 3, Size1 = 0.1, Size2 = 0.3, Lifetime1 = 0.3, Lifetime2 = 1.5, Parent = Torso, Emit = 100, Offset = 360, Enabled = true})
4783
PRT.LockedToPart = true
4784
local PRT = ParticleEmitter({Speed = 0.3, Drag = 3, Size1 = 0.1, Size2 = 0.3, Lifetime1 = 0.2, Lifetime2 = 1, Parent = RightArm, Emit = 100, Offset = 360, Enabled = true})
4785
PRT.LockedToPart = true
4786
local PRT = ParticleEmitter({Speed = 0.3, Drag = 3, Size1 = 0.1, Size2 = 0.3, Lifetime1 = 0.2, Lifetime2 = 1, Parent = LeftArm, Emit = 100, Offset = 360, Enabled = true})
4787
PRT.LockedToPart = true
4788
for _, c in pairs(Character:GetDescendants()) do
4789
	if c and c.Parent then
4790
		if c.Name == "Handle" and c.Parent.ClassName == "Accessory" then
4791
			local ACCESSORY = c.Parent
4792
			c.Parent = Character
4793
			if c then
4794
				if c:FindFirstChild("HatAttachment") or c:FindFirstChild("FaceFrontAttachment") or c:FindFirstChild("HairAttachment") then
4795
					weldBetween(Head,c)
4796
				else
4797
					weldBetween(Torso,c)
4798
				end
4799
			end
4800
			ACCESSORY:remove()
4801
		elseif c.Parent.ClassName ~= "Accessory" and c.ClassName == "Part" and c.Name ~= "Eye" and c.Parent ~= Effects and c.Parent.Parent ~= Effects then
4802
			c.Material = "Neon"
4803
			c.Color = C3(0,0,255)
4804
			if c:FindFirstChildOfClass("SpecialMesh") then
4805
				c:FindFirstChildOfClass("SpecialMesh").TextureId = ""
4806
			end
4807
			if c == Head then
4808
				if c:FindFirstChild("face") then
4809
					c.face:remove()
4810
				end
4811
			end
4812
		elseif c.ClassName == "Part" and c.Name == "Eye" then
4813
			c.Color = C3(0,0,255)
4814
			c.Material = "Neon"
4815
		elseif c.ClassName == "CharacterMesh" or c.Name == "Body Colors" then
4816
			c:remove()
4817
		elseif (c.ClassName == "Shirt" or c.ClassName == "Pants") and c.Name ~= "Cloth" then
4818
			c:remove()
4819
		end
4820
	end
4821
end
4822
local BODY = {}
4823
for _, c in pairs(Character:GetDescendants()) do
4824
	if c:IsA("BasePart") and c.Name ~= "Handle" then
4825
		if c ~= RootPart and c ~= Torso and c ~= Head and c ~= RightArm and c ~= LeftArm and c ~= RightLeg and c ~= LeftLeg then
4826
			c.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
4827
		end
4828
		table.insert(BODY,{c,c.Parent,c.Material,c.Color,c.Transparency,c.Size,c.Name})
4829
	elseif c:IsA("JointInstance") then
4830
		table.insert(BODY,{c,c.Parent,nil,nil,nil,nil,nil})
4831
	end
4832
end
4833
function refit()
4834
	Character.Parent = workspace
4835
	for e = 1, #BODY do
4836
		if BODY[e] ~= nil then
4837
			local STUFF = BODY[e]
4838
			local PART = STUFF[1]
4839
			local PARENT = STUFF[2]
4840
			local MATERIAL = STUFF[3]
4841
			local COLOR = STUFF[4]
4842
			local TRANSPARENCY = STUFF[5]
4843
			--local SIZE = STUFF[6]
4844
			local NAME = STUFF[7]
4845
			if PART.ClassName == "Part" and PART ~= RootPart then
4846
				PART.Material = MATERIAL
4847
				PART.Transparency = TRANSPARENCY
4848
				PART.Name = NAME
4849
			end
4850
			if PART.Parent ~= PARENT then
4851
				Humanoid:remove()
4852
				PART.Parent = PARENT
4853
				Humanoid = IT("Humanoid",Character)
4854
			end
4855
		end
4856
	end
4857
end
4858
4859
local SKILLTEXTCOLOR = C3(0,0,255)
4860
local SKILLFONT = "Fantasy"
4861
local SKILLTEXTSIZE = 6
4862
4863
Humanoid.Died:connect(function()
4864
	refit()
4865
end)
4866
4867
local SKILL1FRAME = CreateFrame(WEAPONGUI, 1, 2, UD2(0.1, 0, 0.90, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,255), C3(0, 0, 255), "Skill 1 Frame")
4868
local SKILL2FRAME = CreateFrame(WEAPONGUI, 1, 2, UD2(0.63, 0, 0.90, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,255), C3(0, 0, 255), "Skill 2 Frame")
4869
local SKILL3FRAME = CreateFrame(WEAPONGUI, 1, 2, UD2(0.215, 0, 0.90, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,255), C3(0, 0, 255), "Skill 3 Frame")
4870
local SKILL4FRAME = CreateFrame(WEAPONGUI, 1, 2, UD2(0.525, 0, 0.90, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,255), C3(0, 0, 255), "Skill 4 Frame")
4871
local SKILL5FRAME = CreateFrame(WEAPONGUI, 1, 2, UD2(0.365, 0, 0.90, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,255), C3(0, 0, 255), "Skill 5 Frame")
4872
local SKILL6FRAME = CreateFrame(WEAPONGUI, 1, 2, UD2(0.50, 0, 0.85, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,255), C3(0, 0, 255), "Skill 6 Frame")
4873
local SKILL7FRAME = CreateFrame(WEAPONGUI, 1, 2, UD2(0.23, 0, 0.85, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,255), C3(0, 0, 255), "Skill 7 Frame")
4874
4875
local SKILL1TEXT = CreateLabel(SKILL1FRAME, "[Z] Fire", SKILLTEXTCOLOR, SKILLTEXTSIZE-1, SKILLFONT, 0, 2, 0, "Text 1")
4876
local SKILL2TEXT = CreateLabel(SKILL2FRAME, "[B] Lift", SKILLTEXTCOLOR, SKILLTEXTSIZE-1, SKILLFONT, 0, 2, 0, "Text 2")
4877
local SKILL3TEXT = CreateLabel(SKILL3FRAME, "[C] Cleave", SKILLTEXTCOLOR, SKILLTEXTSIZE, SKILLFONT, 0, 2, 0, "Text 3")
4878
local SKILL4TEXT = CreateLabel(SKILL4FRAME, "[V] Lock n' load", SKILLTEXTCOLOR, SKILLTEXTSIZE, SKILLFONT, 0, 2, 0, "Text 4")
4879
local SKILL5TEXT = CreateLabel(SKILL5FRAME, "[X] Morning Star", SKILLTEXTCOLOR, SKILLTEXTSIZE+1, SKILLFONT, 0, 2, 0, "Text 5")
4880
local SKILL6TEXT = CreateLabel(SKILL6FRAME, "[G] Deathbound", SKILLTEXTCOLOR, SKILLTEXTSIZE, SKILLFONT, 0, 2, 0, "Text 6")
4881
local SKILL7TEXT = CreateLabel(SKILL7FRAME, "[CLICK] Execute", SKILLTEXTCOLOR, SKILLTEXTSIZE, SKILLFONT, 0, 2, 0, "Text 7")
4882
4883
--//=================================\\
4884
--||	     DAMAGE FUNCTIONS
4885
--\\=================================//
4886
4887
function StatLabel(CFRAME, TEXT, COLOR)
4888
	local STATPART = CreatePart(3, Effects, "SmoothPlastic", 0, 1, "Dark blue", "Effect", VT())
4889
	STATPART.CFrame = CF(CFRAME.p,CFRAME.p+VT(MRANDOM(-5,5),MRANDOM(0,5),MRANDOM(-5,5)))
4890
	local BODYGYRO = IT("BodyGyro", STATPART)
4891
	game:GetService("Debris"):AddItem(STATPART ,5)
4892
	local BILLBOARDGUI = Instance.new("BillboardGui", STATPART)
4893
	BILLBOARDGUI.Adornee = STATPART
4894
	BILLBOARDGUI.Size = UD2(2.5, 0, 2.5 ,0)
4895
	BILLBOARDGUI.StudsOffset = VT(-2, 2, 0)
4896
	BILLBOARDGUI.AlwaysOnTop = false
4897
	local TEXTLABEL = Instance.new("TextLabel", BILLBOARDGUI)
4898
	TEXTLABEL.BackgroundTransparency = 1
4899
	TEXTLABEL.Size = UD2(2.5, 0, 2.5, 0)
4900
	TEXTLABEL.Text = TEXT
4901
	TEXTLABEL.Font = SKILLFONT
4902
	TEXTLABEL.FontSize="Size42"
4903
	TEXTLABEL.TextColor3 = COLOR
4904
	TEXTLABEL.TextStrokeTransparency = 0
4905
	TEXTLABEL.TextScaled = true
4906
	TEXTLABEL.TextWrapped = true
4907
	coroutine.resume(coroutine.create(function(THEPART, THEBODYPOSITION, THETEXTLABEL)
4908
		for i = 1, 50 do
4909
			Swait()
4910
			STATPART.CFrame = STATPART.CFrame * CF(0,0,-0.2)
4911
			TEXTLABEL.TextTransparency = TEXTLABEL.TextTransparency + (1/50)
4912
			TEXTLABEL.TextStrokeTransparency = TEXTLABEL.TextTransparency
4913
		end
4914
		THEPART.Parent = nil
4915
	end),STATPART, TEXTLABEL)
4916
end
4917
4918
--//=================================\\
4919
--||			DAMAGING
4920
--\\=================================//
4921
4922
function Kill(Char)
4923
	local NewCharacter = IT("Model",Effects)
4924
	NewCharacter.Name = "Ow im ded ;-;"
4925
	for _, c in pairs(Char:GetDescendants()) do
4926
		if c:IsA("BasePart") and c.Transparency == 0 then
4927
			if c.Parent == Char then
4928
				getbloody(c,5)
4929
			end
4930
			c:BreakJoints()
4931
			c.Material = "Glass"
4932
			c.Color = C3(0,0,255)
4933
			c.CanCollide = true
4934
			c.Transparency = 0.3
4935
			if c:FindFirstChildOfClass("SpecialMesh") then
4936
				c:FindFirstChildOfClass("SpecialMesh").TextureId = ""
4937
			end
4938
			if c.Name == "Head" then
4939
				c:ClearAllChildren()
4940
				c.Size = VT(c.Size.Y,c.Size.Y,c.Size.Y)
4941
			end
4942
			if c.ClassName == "MeshPart" then
4943
				c.TextureID = ""
4944
			end
4945
			if c:FindFirstChildOfClass("BodyPosition") then
4946
				c:FindFirstChildOfClass("BodyPosition"):remove()
4947
			end
4948
			if c:FindFirstChildOfClass("ParticleEmitter") then
4949
				c:FindFirstChildOfClass("ParticleEmitter"):remove()
4950
			end
4951
			c.Parent = NewCharacter
4952
			c.Name = "DeadPart"
4953
			c.Velocity = VT(MRANDOM(-45,45),MRANDOM(-45,45),MRANDOM(-45,45))/15
4954
			c.RotVelocity = VT(MRANDOM(-45,45),MRANDOM(-15,85),MRANDOM(-45,45))
4955
		end
4956
	end
4957
	Char:remove()
4958
	Debris:AddItem(NewCharacter,5)
4959
end
4960
4961
function ApplyAoE(POSITION,RANGE,BRUTAL)
4962
	local CHILDREN = workspace:GetDescendants()
4963
	for index, CHILD in pairs(CHILDREN) do
4964
		if CHILD.ClassName == "Model" and CHILD ~= Character then
4965
			local HUM = CHILD:FindFirstChildOfClass("Humanoid")
4966
			if HUM then
4967
				local TORSO = CHILD:FindFirstChild("Torso") or CHILD:FindFirstChild("UpperTorso")
4968
				if TORSO then
4969
					if (TORSO.Position - POSITION).Magnitude <= RANGE then
4970
						if BRUTAL == true then
4971
							Kill(CHILD)
4972
						else
4973
							CHILD:BreakJoints()
4974
						end
4975
					end
4976
				end
4977
			end
4978
		end
4979
	end
4980
end
4981
4982
function BulletDetection(FROM,TO,BRUTAL)
4983
	local AIMHIT,AIMPOS,NORMAL = CastProperRay(FROM,TO,2000,Character)
4984
	coroutine.resume(coroutine.create(function()
4985
		if AIMHIT ~= nil then
4986
			if AIMHIT.Parent ~= Character then
4987
				if AIMHIT.Parent:FindFirstChildOfClass("Humanoid") or AIMHIT.Parent.Parent:FindFirstChildOfClass("Humanoid") then
4988
					if AIMHIT.Parent:FindFirstChildOfClass("Humanoid") then
4989
						if BRUTAL == true then
4990
							Kill(AIMHIT.Parent)
4991
						else
4992
							getbloody(AIMHIT,15)
4993
							AIMHIT.Parent:BreakJoints()
4994
							if AIMHIT.Name == "Head" then
4995
								AIMHIT.Name = "HEADSHOT"
4996
								AIMHIT:remove()
4997
							end
4998
						end
4999
					else
5000
						if BRUTAL == true then
5001
							Kill(AIMHIT.Parent.Parent)
5002
						else
5003
							AIMHIT.Parent.Parent:BreakJoints()
5004
						end
5005
					end
5006
				end
5007
			end
5008
		end
5009
	end))
5010
	SpawnTrail(FROM,AIMPOS)
5011
	return AIMHIT,AIMPOS,NORMAL
5012
end
5013
5014
--//=================================\\
5015
--||	ATTACK FUNCTIONS AND STUFF
5016
--\\=================================//
5017
5018
function Unload()
5019
	ATTACK = true
5020
	Rooted = false
5021
	repeat
5022
		local GYRO = IT("BodyGyro",RootPart)
5023
		GYRO.D = 175
5024
		GYRO.P = 20000
5025
		GYRO.MaxTorque = VT(0,40000,0)
5026
		GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
5027
		if COMBO == 1 then
5028
			COMBO = 2
5029
			for i=0, 0.6, 0.1 / Animation_Speed do
5030
				Swait()
5031
				GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
5032
				RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 1 / Animation_Speed)
5033
				Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 1 / Animation_Speed)
5034
				RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5035
				LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(-50)) * LEFTSHOULDERC0, 1 / Animation_Speed)
5036
				RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5037
				LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5038
			end
5039
			WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(1,1.5,1), Transparency = 0, Transparency2 = 1, CFrame = LeftHole.CFrame, MoveToPos = LeftHole.CFrame*CF(0,0.5,0).p, RotationX = 0, RotationY = 15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5040
			WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,0.5,2), Transparency = 0, Transparency2 = 1, CFrame = LeftHole.CFrame, MoveToPos = nil, RotationX = 0, RotationY = 5, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5041
			CreateSound(145080998, LeftHole, 7, 1, false)
5042
			BulletDetection(LeftHole.Position,Mouse.Hit.p,false)
5043
			for i=0, 0.2, 0.1 / Animation_Speed do
5044
				Swait()
5045
				RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 1 / Animation_Speed)
5046
				Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 1 / Animation_Speed)
5047
				RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5048
				LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(130), RAD(0), RAD(-50)) * LEFTSHOULDERC0, 1 / Animation_Speed)
5049
				RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5050
				LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5051
			end
5052
		elseif COMBO == 2 then
5053
			COMBO = 1
5054
			for i=0, 0.6, 0.1 / Animation_Speed do
5055
				Swait()
5056
				GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
5057
				RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(50)), 1 / Animation_Speed)
5058
				Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-50)), 1 / Animation_Speed)
5059
				RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(50)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5060
				LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
5061
				RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5062
				LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5063
			end
5064
			WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(1,1.5,1), Transparency = 0, Transparency2 = 1, CFrame = RightHole.CFrame, MoveToPos = RightHole.CFrame*CF(0,0.5,0).p, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5065
			WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,0.5,2), Transparency = 0, Transparency2 = 1, CFrame = RightHole.CFrame, MoveToPos = nil, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5066
			CreateSound(145080998, RightHole, 7, 1, false)
5067
			BulletDetection(RightHole.Position,Mouse.Hit.p,false)
5068
			for i=0, 0.2, 0.1 / Animation_Speed do
5069
				Swait()
5070
				RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(50)), 1 / Animation_Speed)
5071
				Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-50)), 1 / Animation_Speed)
5072
				RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(130), RAD(0), RAD(50)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5073
				LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
5074
				RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5075
				LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5076
			end
5077
		end
5078
		GYRO:remove()
5079
	until KEYHOLD == false
5080
	ATTACK = false
5081
	Rooted = false
5082
end
5083
function Psyo()
5084
	if Mouse.Target.Parent ~= Character and Mouse.Target.Parent.Parent ~= Character and Mouse.Target.Parent:FindFirstChildOfClass("Humanoid") ~= nil then
5085
		local HUM = Mouse.Target.Parent:FindFirstChildOfClass("Humanoid")
5086
		local TORSO = HUM.Parent:FindFirstChild("Torso") or HUM.Parent:FindFirstChild("UpperTorso")
5087
		if TORSO and HUM.Health > 0 then
5088
			ATTACK = true
5089
			Rooted = false
5090
			local GYRO = IT("BodyGyro",RootPart)
5091
			GYRO.D = 275
5092
			GYRO.P = 20000
5093
			GYRO.MaxTorque = VT(0,40000,0)
5094
			for i=0, 0.8, 0.1 / Animation_Speed do
5095
				Swait()
5096
				GYRO.cframe = CF(RootPart.Position,TORSO.Position)
5097
				RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
5098
				Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5099
				RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, -0.5) * ANGLES(RAD(0), RAD(0), RAD(-85)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5100
				LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.15, -0.5) * ANGLES(RAD(-15), RAD(0), RAD(85)) * LEFTSHOULDERC0, 1 / Animation_Speed)
5101
				RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5102
				LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5103
			end			
5104
			local MAGIC = ParticleEmitter({Speed = 5, Drag = 3, Size1 = 1.7, Size2 = 0, Lifetime1 = 1, Lifetime2 = 3, Parent = TORSO, Emit = 100, Offset = 360, Enabled = true})
5105
			MAGIC.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,1),NumberSequenceKeypoint.new(1,0)})
5106
			local grav = Instance.new("BodyPosition",TORSO)
5107
			grav.D = 1500
5108
			grav.P = 20000
5109
			grav.maxForce = Vector3.new(math.huge,math.huge,math.huge)
5110
			grav.position = TORSO.Position+VT(0,15,0)
5111
			Debris:AddItem(grav,10)
5112
			Debris:AddItem(MAGIC,10)
5113
			CreateSound(429459101, Torso, 7, 1, false)
5114
			CreateSound(429459101, TORSO, 7, 1, false)
5115
			for i=0, 1, 0.1 / Animation_Speed do
5116
				Swait()
5117
				RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(-35), RAD(0), RAD(0)), 1 / Animation_Speed)
5118
				Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5119
				RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(125), RAD(-45), RAD(15)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5120
				LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(125), RAD(45), RAD(-15)) * LEFTSHOULDERC0, 1 / Animation_Speed)
5121
				RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5122
				LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5123
			end
5124
			GYRO:remove()
5125
			ATTACK = false
5126
			Rooted = false
5127
		end
5128
	end
5129
end
5130
function Cleave()
5131
	ATTACK = true
5132
	Rooted = false
5133
	local TARGET = nil
5134
	local TORS = nil
5135
	local GYRO = IT("BodyGyro",RootPart)
5136
	GYRO.D = 175
5137
	GYRO.P = 20000
5138
	GYRO.MaxTorque = VT(0,40000,0)
5139
	GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
5140
	local RANGE = 5
5141
	CreateSound(541909867, Torso, 7, 1, false)
5142
	WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(12,0.5,12), Transparency = 0, Transparency2 = 1, CFrame = Torso.CFrame * ANGLES(RAD(90), RAD(0), RAD(0)), MoveToPos = nil, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5143
	for i=0, 1, 0.1 / Animation_Speed do
5144
		Swait()
5145
		RootPart.CFrame = RootPart.CFrame * CF(0,0,-2)
5146
		GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
5147
		local CHILDREN = workspace:GetDescendants()
5148
		for index, CHILD in pairs(CHILDREN) do
5149
			if CHILD.ClassName == "Model" and CHILD ~= Character then
5150
				local HUM = CHILD:FindFirstChildOfClass("Humanoid")
5151
				if HUM then
5152
					local TORSO = CHILD:FindFirstChild("Torso") or CHILD:FindFirstChild("UpperTorso")
5153
					if TORSO then
5154
						if (TORSO.Position - LeftHole.Position).Magnitude <= RANGE + TORSO.Size.Magnitude/5 then
5155
							RANGE = (TORSO.Position - LeftHole.Position).Magnitude
5156
							TARGET = HUM
5157
							TORS = TORSO
5158
						end
5159
					end
5160
				end
5161
			end
5162
		end
5163
		if TARGET then
5164
			break
5165
		end
5166
		RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-80)), 1 / Animation_Speed)
5167
		Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(80)), 1 / Animation_Speed)
5168
		RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5169
		LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(-80)) * LEFTSHOULDERC0, 1 / Animation_Speed)
5170
		RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5171
		LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5172
	end
5173
	GYRO:remove()
5174
	if TORS and TARGET then
5175
		CreateSound(LAUGHS[MRANDOM(1,#LAUGHS)], Torso, 10, 1, false)
5176
		Rooted = true
5177
		local BODYPOSITION = IT("BodyPosition", TORS)
5178
		BODYPOSITION.P = 2000
5179
		BODYPOSITION.D = 100
5180
		BODYPOSITION.maxForce = VT(math.huge, math.huge, math.huge)
5181
		for i=0, 1, 0.1 / Animation_Speed do
5182
			Swait()
5183
			TORS.CFrame = LeftHole.CFrame * CF(0,TORS.Size.Z/2,0) * ANGLES(RAD(90), RAD(0), RAD(0))
5184
			BODYPOSITION.Position = TORS.Position
5185
			RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 1 / Animation_Speed)
5186
			Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 1 / Animation_Speed)
5187
			RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5188
			LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(145), RAD(0), RAD(-50)) * LEFTSHOULDERC0, 0.5 / Animation_Speed)
5189
			RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5190
			LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5191
		end
5192
		for i=0, 0.4, 0.1 / Animation_Speed do
5193
			Swait()
5194
			TORS.CFrame = LeftHole.CFrame * CF(0,TORS.Size.Z/2,0) * ANGLES(RAD(90), RAD(0), RAD(0))
5195
			BODYPOSITION.Position = TORS.Position
5196
			RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 1 / Animation_Speed)
5197
			Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 1 / Animation_Speed)
5198
			RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, -0.5) * ANGLES(RAD(145), RAD(0), RAD(-65)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5199
			LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(145), RAD(0), RAD(-50)) * LEFTSHOULDERC0, 0.5 / Animation_Speed)
5200
			RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5201
			LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5202
		end	
5203
		local LOOP = 0
5204
		local LOOP2 = 0
5205
		for i=0, 5, 0.1 / Animation_Speed do
5206
			Swait()
5207
			LOOP = LOOP + 1
5208
			TORS.Anchored = true
5209
			LOOP2 = LOOP2 + 1
5210
			if LOOP2 >= 5 then
5211
				WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(1,1.5,1), Transparency = 0, Transparency2 = 1, CFrame = RightHole.CFrame, MoveToPos = RightHole.CFrame*CF(0,0.5,0).p, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5212
				WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,0.5,2), Transparency = 0, Transparency2 = 1, CFrame = RightHole.CFrame, MoveToPos = nil, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5213
				CreateSound(145080998, RightHole, 7, 1, false)
5214
				SpawnTrail(RightHole.Position,RightHole.CFrame*CF(0,500,0).p)
5215
				LOOP2 = 0
5216
				getbloody(TORS,1)
5217
			end
5218
			TORS.CFrame = LeftHole.CFrame * CF(0,TORS.Size.Z/2,0) * ANGLES(RAD(90), RAD(0), RAD(0))
5219
			BODYPOSITION.Position = TORS.Position
5220
			RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 1 / Animation_Speed)
5221
			Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 1 / Animation_Speed)
5222
			RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, -0.5) * ANGLES(RAD(145 + 2 * SIN(LOOP / 12)), RAD(0), RAD(-65)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5223
			LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(145), RAD(0), RAD(-50)) * LEFTSHOULDERC0, 0.5 / Animation_Speed)
5224
			RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5225
			LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5226
		end	
5227
		BODYPOSITION:remove()
5228
		if TORS then
5229
			TORS.Anchored = false
5230
			Kill(TORS.Parent)
5231
		end
5232
	end
5233
	ATTACK = false
5234
	Rooted = false
5235
end
5236
function Lock_n_Load()
5237
	if Mouse.Target.Parent ~= Character and Mouse.Target.Parent.Parent ~= Character and Mouse.Target.Parent:FindFirstChildOfClass("Humanoid") ~= nil then
5238
		local HUM = Mouse.Target.Parent:FindFirstChildOfClass("Humanoid")
5239
		local TORSO = HUM.Parent:FindFirstChild("Torso") or HUM.Parent:FindFirstChild("UpperTorso")
5240
		if TORSO and HUM.Health > 0 then
5241
			CreateSound(LAUGHS[MRANDOM(1,#LAUGHS)], Torso, 7, 1, false)
5242
			ATTACK = true
5243
			Rooted = true
5244
			local GYRO = IT("BodyGyro",RootPart)
5245
			GYRO.D = 175
5246
			GYRO.P = 20000
5247
			GYRO.MaxTorque = VT(0,40000,0)
5248
			if COMBO == 1 then
5249
				COMBO = 2
5250
				for i=0, 1, 0.1 / Animation_Speed do
5251
					Swait()
5252
					GYRO.cframe = CF(RootPart.Position,TORSO.Position)
5253
					RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 1 / Animation_Speed)
5254
					Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 1 / Animation_Speed)
5255
					RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5256
					LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(-50)) * LEFTSHOULDERC0, 1 / Animation_Speed)
5257
					RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5258
					LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5259
				end
5260
				WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(1,1.5,1), Transparency = 0, Transparency2 = 1, CFrame = LeftHole.CFrame, MoveToPos = LeftHole.CFrame*CF(0,0.5,0).p, RotationX = 0, RotationY = 15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5261
				WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,0.5,2), Transparency = 0, Transparency2 = 1, CFrame = LeftHole.CFrame, MoveToPos = nil, RotationX = 0, RotationY = 5, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5262
				CreateSound(145080998, LeftHole, 7, 1, false)
5263
				BulletDetection(LeftHole.Position,TORSO.Position,false)
5264
				for i=0, 0.4, 0.1 / Animation_Speed do
5265
					Swait()
5266
					RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 1 / Animation_Speed)
5267
					Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 1 / Animation_Speed)
5268
					RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5269
					LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(130), RAD(0), RAD(-50)) * LEFTSHOULDERC0, 1 / Animation_Speed)
5270
					RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5271
					LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5272
				end
5273
			elseif COMBO == 2 then
5274
				COMBO = 1
5275
				for i=0, 1, 0.1 / Animation_Speed do
5276
					Swait()
5277
					GYRO.cframe = CF(RootPart.Position,TORSO.Position)
5278
					RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(50)), 1 / Animation_Speed)
5279
					Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-50)), 1 / Animation_Speed)
5280
					RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(50)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5281
					LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
5282
					RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5283
					LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5284
				end
5285
				WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(1,1.5,1), Transparency = 0, Transparency2 = 1, CFrame = RightHole.CFrame, MoveToPos = RightHole.CFrame*CF(0,0.5,0).p, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5286
				WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,0.5,2), Transparency = 0, Transparency2 = 1, CFrame = RightHole.CFrame, MoveToPos = nil, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5287
				CreateSound(145080998, RightHole, 7, 1, false)
5288
				BulletDetection(RightHole.Position,TORSO.Position,false)
5289
				for i=0, 0.4, 0.1 / Animation_Speed do
5290
					Swait()
5291
					RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(50)), 1 / Animation_Speed)
5292
					Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-50)), 1 / Animation_Speed)
5293
					RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(130), RAD(0), RAD(50)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5294
					LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
5295
					RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5296
					LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5297
				end
5298
			end
5299
			GYRO:remove()
5300
			ATTACK = false
5301
			Rooted = false
5302
		end
5303
	end
5304
end
5305
function Morning_Star()
5306
	ATTACK = true
5307
	Rooted = true
5308
	CreateSound(LAUGHS[MRANDOM(1,#LAUGHS)], Torso, 7, 1, false)
5309
	for i=0, 1, 0.1 / Animation_Speed do
5310
		Swait()
5311
		RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
5312
		Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5313
		RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, -0.5) * ANGLES(RAD(0), RAD(0), RAD(-85)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5314
		LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.15, -0.5) * ANGLES(RAD(-15), RAD(0), RAD(85)) * LEFTSHOULDERC0, 1 / Animation_Speed)
5315
		RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5316
		LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5317
	end	
5318
	coroutine.resume(coroutine.create(function()
5319
		local POS = Mouse.Hit.p
5320
		local RAY = CreatePart(3, Effects, "Neon", 0, 0, "Dark blue", "Strike", VT(0,2000,0))
5321
		MakeForm(RAY,"Cyl")
5322
		local SPHERE = CreatePart(3, Effects, "Neon", 0, 0, "Dark blue", "Strike", VT(0,0,0))
5323
		MakeForm(SPHERE,"Ball")
5324
		local SHIELD = CreatePart(3, Effects, "Neon", 0, 0.5, "Dark blue", "Strike", VT(0,0,0))
5325
		MakeForm(SHIELD,"Ball")
5326
		SHIELD.CFrame = CF(POS)
5327
		RAY.CFrame = CF(POS)
5328
		SPHERE.CFrame = CF(POS)
5329
		CreateSound(440145570, SPHERE, 10, 0.8, false)
5330
		CreateSound(415700134, SPHERE, 10, 0.8, false)
5331
		for i = 1, 200 do
5332
			Swait()
5333
			WACKYEFFECT({Time = 15, EffectType = "Wave", Size = VT(0,0,0), Size2 = VT(SPHERE.Size.X*1.2,5+(i),SPHERE.Size.X*1.2), Transparency = 0, Transparency2 = 1, CFrame = SPHERE.CFrame*ANGLES(RAD(0), RAD(i), RAD(0)), MoveToPos = nil, RotationX = 0, RotationY = i, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5334
			RAY.Size = RAY.Size + VT(0.05,0,0.05)
5335
			SPHERE.Size = SPHERE.Size + VT(2,2,2)
5336
			SHIELD.Size = SPHERE.Size + VT(3,3,3)
5337
			ApplyAoE(SPHERE.Position,SPHERE.Size.X/2,true)
5338
		end	
5339
		for i = 1, 45 do
5340
			Swait()
5341
			RAY.Transparency = RAY.Transparency + 1/45
5342
			SPHERE.Transparency = RAY.Transparency 
5343
			SHIELD.Transparency = SPHERE.Transparency + 1/45
5344
		end
5345
		RAY:remove()
5346
		SHIELD:remove()
5347
		SPHERE:remove()
5348
	end))
5349
	for i=0, 1, 0.1 / Animation_Speed do
5350
		Swait()
5351
		RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0  + 0.25 * COS(SINE / 12)) * ANGLES(RAD(-35), RAD(0), RAD(0)), 1 / Animation_Speed)
5352
		Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5353
		RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, -0.15) * ANGLES(RAD(65), RAD(-45), RAD(85)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5354
		LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, -0.15) * ANGLES(RAD(65), RAD(45), RAD(-85)) * LEFTSHOULDERC0, 1 / Animation_Speed)
5355
		RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5356
		LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5357
	end
5358
	ATTACK = false
5359
	Rooted = false
5360
end
5361
function Deathbound()
5362
	CreateSound(LAUGHS[MRANDOM(1,#LAUGHS)], Torso, 10, 1, false)
5363
	ATTACK = true
5364
	Rooted = true
5365
	for i=0, 1, 0.1 / Animation_Speed do
5366
		Swait()
5367
		RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 1 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
5368
		Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5369
		RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 1, 0) * ANGLES(RAD(15), RAD(0), RAD(12)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5370
		LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 1, 0) * ANGLES(RAD(15), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 1 / Animation_Speed)
5371
		RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5372
		LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5373
	end
5374
	local DONE = false
5375
	local GATE = nil
5376
	local GATESPIN = true
5377
	coroutine.resume(coroutine.create(function()
5378
		repeat
5379
			Swait()
5380
			if GATE ~= nil then
5381
				GATE.CFrame = GATE.CFrame * ANGLES(RAD(0), RAD(-3), RAD(0))
5382
			end
5383
		until GATESPIN == false
5384
	end))
5385
	coroutine.resume(coroutine.create(function()
5386
		repeat
5387
			Swait()
5388
			RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0.2 - 0.25 * COS(SINE / 12)) * ANGLES(RAD(15), RAD(0), RAD(0)), 1 / Animation_Speed)
5389
			Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(5 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5390
			RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5 + 0.25 * COS(SINE / 12), 0) * ANGLES(RAD(15), RAD(0), RAD(5)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5391
			LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5 + 0.25 * COS(SINE / 12), 0) * ANGLES(RAD(15), RAD(0), RAD(-5)) * LEFTSHOULDERC0, 1 / Animation_Speed)
5392
			RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5393
			LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5394
		until DONE == true
5395
		Swait(50)
5396
		for i = 1, 35 do
5397
			Swait(4)
5398
			local FIRED = false
5399
			local CHILDREN = workspace:GetDescendants()
5400
			for index, CHILD in pairs(CHILDREN) do
5401
				if CHILD.ClassName == "Model" and CHILD ~= Character then
5402
					local HUM = CHILD:FindFirstChildOfClass("Humanoid")
5403
					if HUM then
5404
						local TORSO = CHILD:FindFirstChild("Torso") or CHILD:FindFirstChild("UpperTorso")
5405
						if TORSO then
5406
							if (TORSO.Position - GATE.Position).Magnitude <= GATE.Size.X/2.5 + TORSO.Size.Magnitude/5 then
5407
								local HITFLOOR,HITPOS = Raycast(TORSO.Position, (CF(TORSO.Position, TORSO.Position + VT(0, -1, 0))).lookVector, 15, Character)
5408
								local CFRAME = CF(HITPOS)*ANGLES(RAD(MRANDOM(-15,15)),RAD(MRANDOM(-15,15)),RAD(MRANDOM(-15,15)))
5409
								WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(1,1.5,1), Transparency = 0, Transparency2 = 1, CFrame = CFRAME, MoveToPos = CFRAME*CF(0,0.5,0).p, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = 145080998, SoundPitch = 1.5, SoundVolume = 6})
5410
								WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,0.5,2), Transparency = 0, Transparency2 = 1, CFrame = CFRAME, MoveToPos = nil, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5411
								SpawnTrail(CFRAME.p,CFRAME*CF(0,1000,0).p)		
5412
								Kill(CHILD)
5413
								FIRED = true
5414
								break
5415
							end
5416
						end
5417
					end
5418
				end
5419
			end
5420
			if FIRED == false then
5421
				local CFRAME = GATE.CFrame*ANGLES(RAD(0),RAD(MRANDOM(0,360)),RAD(0))*CF(0,0,MRANDOM(2,math.ceil(GATE.Size.X/2.5)))*ANGLES(RAD(MRANDOM(-15,15)),RAD(MRANDOM(-15,15)),RAD(MRANDOM(-15,15)))
5422
				WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(1,1.5,1), Transparency = 0, Transparency2 = 1, CFrame = CFRAME, MoveToPos = CFRAME*CF(0,0.5,0).p, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = 145080998, SoundPitch = 1.5, SoundVolume = 6})
5423
				WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,0.5,2), Transparency = 0, Transparency2 = 1, CFrame = CFRAME, MoveToPos = nil, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5424
				SpawnTrail(CFRAME.p,CFRAME*CF(0,1000,0).p)
5425
				local HITBOD = Raycast(CFRAME.p, (CF(CFRAME.p, CFRAME.p + VT(0, 1, 0))).lookVector, 1000, Character)
5426
				if HITBOD ~= nil then
5427
					if HITBOD.Parent:FindFirstChildOfClass("Humanoid") then
5428
						Kill(HITBOD.Parent)
5429
					end
5430
				end
5431
			end
5432
		end
5433
		for i = 1, 45 do
5434
			Swait()
5435
			GATE.Size = GATE.Size - VT(3,0,3)
5436
		end
5437
		GATESPIN = false
5438
		GATE:remove()
5439
	end))
5440
	Swait(15)
5441
	local HITFLOOR,HITPOS = Raycast(RootPart.Position, (CF(RootPart.Position, RootPart.Position + VT(0, -1, 0))).lookVector, 15, Character)
5442
	GATE = CreatePart(3, Effects, "Neon", 0, 1, "Dark blue", "Gate", VT(0,0,0))
5443
	local DECAL = IT("Decal",GATE)
5444
	DECAL.Texture = "http://www.roblox.com/asset/?id=68854060"
5445
	DECAL.Face = "Top"
5446
	GATE.CFrame = CF(HITPOS)
5447
	CreateSound(160772554, GATE, 7, 1.3, false)
5448
	for i = 1, 45 do
5449
		Swait()
5450
		GATE.Size = GATE.Size + VT(3,0,3)
5451
	end
5452
	CreateSound(145080998, RightHole, 7, 1, false)
5453
	CreateSound(145080998, LeftHole, 7, 1, false)
5454
	WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,2,2), Transparency = 0, Transparency2 = 1, CFrame = RightHole.CFrame*CF(0,-1,0) * ANGLES(RAD(180), RAD(0), RAD(0)), MoveToPos = nil, RotationX = 0, RotationY = -5, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5455
	WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,2,2), Transparency = 0, Transparency2 = 1, CFrame = LeftHole.CFrame*CF(0,-1,0) * ANGLES(RAD(180), RAD(0), RAD(0)), MoveToPos = nil, RotationX = 0, RotationY = 5, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
5456
	ATTACK = false
5457
	Rooted = false
5458
	DONE = true
5459
end
5460
function Execute()
5461
	ATTACK = true
5462
	Rooted = false
5463
	local Part = CreatePart(3, Character, "Neon", 0, 0, "Dark blue", "Part", VT(0,1,4),false)
5464
	Part.Color = C3(0,0,255)
5465
	MakeForm(Part,"Wedge")
5466
	Part.CanCollide = true
5467
	CreateWeldOrSnapOrMotor("Weld", Handle, RightBarrel, Part, CF(0, 0, 0) * ANGLES(RAD(90), RAD(0), RAD(135)) *CF(0, 0.5, 0), CF(0, 0, 0))
5468
	for i=10, 10, 10 / Animation_Speed do
5469
		Swait()
5470
		RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, -0.2 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 10 / Animation_Speed)
5471
		Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 10 / Animation_Speed)
5472
		RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(125), RAD(0), RAD(90)) * RIGHTSHOULDERC0, 10 / Animation_Speed)
5473
		LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140 - 12 * SIN(SINE / 12)), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 10 / Animation_Speed)
5474
		RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 10 / Animation_Speed)
5475
		LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 10 / Animation_Speed)
5476
	end
5477
	Trail.Enabled = true
5478
	CreateSound(541909867, RightBarrel, 7, 1, false)
5479
	local TOCH = Part.Touched:Connect(function(hit)
5480
		if hit.Parent:FindFirstChildOfClass("Humanoid") and hit.Parent ~= Character then
5481
			Kill(hit.Parent)
5482
		end
5483
	end)
5484
	for i=0, 0.35, 0.1 / Animation_Speed do
5485
		Swait()
5486
		RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, -0.2 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(50)), 1 / Animation_Speed)
5487
		Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-45)), 1 / Animation_Speed)
5488
		RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.15, 0.25, -0.3) * ANGLES(RAD(50), RAD(0), RAD(-35)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5489
		LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140 - 12 * SIN(SINE / 12)), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
5490
		RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5491
		LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5492
	end
5493
	TOCH:disconnect()
5494
	Trail.Enabled = false
5495
	for i=0, 0.35, 0.1 / Animation_Speed do
5496
		Swait()
5497
		RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, -0.2 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(60)), 1 / Animation_Speed)
5498
		Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-55)), 1 / Animation_Speed)
5499
		RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.15, 0.25, -0.3) * ANGLES(RAD(50), RAD(0), RAD(-45)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5500
		LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140 - 12 * SIN(SINE / 12)), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
5501
		RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5502
		LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5503
	end
5504
	Part:remove()
5505
	ATTACK = false
5506
	Rooted = false
5507
end
5508
5509
--//=================================\\
5510
--||	  ASSIGN THINGS TO KEYS
5511
--\\=================================//
5512
5513
function MouseDown(Mouse)
5514
	if ATTACK == false then
5515
		Execute()
5516
	end
5517
end
5518
5519
function MouseUp(Mouse)
5520
HOLD = false
5521
end
5522
5523
function KeyDown(Key)
5524
	KEYHOLD = true
5525
	if Key ~= "w" and Key ~= "a" and Key ~= "s" and Key ~= "d" then
5526
		if Key == "z" and ATTACK == false then
5527
			Unload()
5528
	
5529
		elseif Key == "b" and ATTACK == false then
5530
			Psyo()
5531
	
5532
		elseif Key == "c" and ATTACK == false then
5533
			Cleave()
5534
	
5535
		elseif Key == "v" and ATTACK == false then
5536
			Lock_n_Load()
5537
	
5538
		elseif Key == "g" and ATTACK == false then
5539
			Deathbound()
5540
	
5541
		elseif Key == "x" and ATTACK == false then
5542
			Morning_Star()
5543
	
5544
		elseif Key == "t" then
5545
			CreateSound(LAUGHS[MRANDOM(1,#LAUGHS)], Torso, 10, 1, false)
5546
		elseif Key == "1" and ATTACK == false then
5547
			if CHOICE ~= 1 then
5548
				CHOICE = 1
5549
				sick:Play()
5550
			end
5551
		elseif Key == "2" and ATTACK == false then
5552
			if CHOICE ~= 2 then
5553
				CHOICE = 2
5554
				sick:Play()
5555
			end
5556
		elseif Key == "3" and ATTACK == false then
5557
			if CHOICE ~= 3 then
5558
				CHOICE = 3
5559
				sick:Play()
5560
			end
5561
		elseif Key == "4" and ATTACK == false then
5562
			if CHOICE ~= 4 then
5563
				CHOICE = 4
5564
				sick:Play()
5565
			end			
5566
		end
5567
	end
5568
end
5569
5570
function KeyUp(Key)
5571
	if Key ~= "w" and Key ~= "a" and Key ~= "s" and Key ~= "d" then
5572
		KEYHOLD = false
5573
	end
5574
end
5575
5576
	Mouse.Button1Down:connect(function(NEWKEY)
5577
		MouseDown(NEWKEY)
5578
	end)
5579
	Mouse.Button1Up:connect(function(NEWKEY)
5580
		MouseUp(NEWKEY)
5581
	end)
5582
	Mouse.KeyDown:connect(function(NEWKEY)
5583
		KeyDown(NEWKEY)
5584
	end)
5585
	Mouse.KeyUp:connect(function(NEWKEY)
5586
		KeyUp(NEWKEY)
5587
	end)
5588
5589
--//=================================\\
5590
--\\=================================//
5591
5592
5593
function unanchor()
5594
	if UNANCHOR == true then
5595
		g = Character:GetChildren()
5596
		for i = 1, #g do
5597
			if g[i].ClassName == "Part" then
5598
				g[i].Anchored = false
5599
			end
5600
		end
5601
	end
5602
end
5603
5604
5605
--//=================================\\
5606
--||	WRAP THE WHOLE SCRIPT UP
5607
--\\=================================//
5608
5609
Humanoid.Changed:connect(function(Jump)
5610
	if Jump == "Jump" and (Disable_Jump == true) then
5611
		Humanoid.Jump = false
5612
	end
5613
end)
5614
5615
while true do
5616
	Swait()
5617
	Humanoid.HipHeight = 1.5
5618
	script.Parent = WEAPONGUI
5619
	ANIMATE.Parent = nil
5620
	if Humanoid then
5621
		local IDLEANIMATION = Humanoid:LoadAnimation(ROBLOXIDLEANIMATION)
5622
		IDLEANIMATION:Play()
5623
	end
5624
	SINE = SINE + CHANGE
5625
	local TORSOVELOCITY = (RootPart.Velocity * VT(1, 0, 1)).magnitude
5626
	local TORSOVERTICALVELOCITY = RootPart.Velocity.y
5627
	local HITFLOOR = Raycast(RootPart.Position, (CF(RootPart.Position, RootPart.Position + VT(0, -1, 0))).lookVector, 4, Character)
5628
	if ATTACK == false then
5629
		if TORSOVELOCITY < 1 then
5630
			RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(4 + 2.5 * SIN(SINE / 12)), RAD(0), RAD(25)), 1 / Animation_Speed)
5631
			Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 + 4.5 * SIN(SINE / 12)), RAD(0), RAD(-25)), 1 / Animation_Speed)
5632
			RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5633
			LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140 - 12 * SIN(SINE / 12)), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
5634
			RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5635
			LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5636
		elseif TORSOVELOCITY > 1 then
5637
			RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(25 + 2.5 * SIN(SINE / 12)), RAD(0), RAD(25)), 1 / Animation_Speed)
5638
			Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-25 + 4.5 * SIN(SINE / 12)), RAD(0), RAD(-25)), 1 / Animation_Speed)
5639
			RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
5640
			LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140 - 12 * SIN(SINE / 12)), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
5641
			RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-25-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 5.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5642
			LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
5643
		end
5644
	end
5645
	RightArmGrasp.C0 = Clerp(RightArmGrasp.C0, CF(0, -0.815+0.05 * SIN(SINE / 12), 0) * ANGLES(RAD(90-4.5 * SIN(SINE / 12)), RAD(-1.5 * SIN(SINE / 12)), RAD(0)), 1 / Animation_Speed)
5646
	LeftArmGraps.C0 = Clerp(LeftArmGraps.C0, CF(0, -0.815+0.05 * SIN(SINE / 12), 0) * ANGLES(RAD(90-4.5 * SIN(SINE / 12)), RAD(1.5 * SIN(SINE / 12)), RAD(0)), 1 / Animation_Speed)
5647
	unanchor()
5648
	Humanoid.MaxHealth = "inf"
5649
	Humanoid.Health = "inf"
5650
	if Rooted == false then
5651
		Disable_Jump = false
5652
		Humanoid.WalkSpeed = Speed
5653
	elseif Rooted == true then
5654
		Disable_Jump = true
5655
		Humanoid.WalkSpeed = 0
5656
	end
5657
	for _, c in pairs(Character:GetDescendants()) do
5658
		if c.ClassName == "Part" and c.Name ~= "Eye" and c.Parent ~= Effects and c.Parent.Parent ~= Effects then
5659
			c.Material = "Neon"
5660
			c.Color = C3(0,0,255)
5661
			if c:FindFirstChildOfClass("SpecialMesh") then
5662
				c:FindFirstChildOfClass("SpecialMesh").TextureId = ""
5663
			end
5664
			if c == Head then
5665
				if c:FindFirstChild("face") then
5666
					c.face:remove()
5667
				end
5668
			end
5669
		elseif c.ClassName == "Part" and c.Name == "Eye" then
5670
			c.Color = C3(0,0,255)
5671
			c.Material = "Neon"
5672
		elseif c.ClassName == "CharacterMesh" or c.Name == "Body Colors" then
5673
			c:remove()
5674
		elseif (c.ClassName == "Shirt" or c.ClassName == "Pants") and c.Name ~= "Cloth" then
5675
			c:remove()
5676
		end
5677
	end
5678
	refit()
5679
	Humanoid.Name = "Deadeyes"
5680
	sick.Parent = Torso
5681
	sick:resume()
5682
	sick.Volume = 5
5683
	sick.Pitch = 1
5684
	sick.SoundId = "rbxassetid://"..SONGS[CHOICE]
5685
	if Head:FindFirstChildOfClass("Sound") then
5686
		Head:FindFirstChildOfClass("Sound"):remove()
5687
	end
5688
end
5689
5690
--//=================================\\
5691
--\\=================================//
5692
5693
5694
5695
5696
5697
--//====================================================\\--
5698
--||			  		 END OF SCRIPT
5699
--\\====================================================//--