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