View difference between Paste ID: auwRyLFv and Hhv5vWre
SHOW: | | - or go back to the newest paste.
1
--[[
2
Keys:
3
R = down slash
4
Q = side slash
5
V = kneel
6
T = wedge slash
7
E = wave
8
Y = laser
9
F = push
10
G = bash
11
H = laugh
12
J = music
13
K = Death talk
14
X = kick
15
C = ground pound
16
B = Day/Night
17
M = ground pound 2
18
Z = bend?
19
20
21
--]]
22
local p = game.Players.LocalPlayer
23
local char = p.Character
24
local mouse = p:GetMouse()
25
local larm = char["Left Arm"]
26
local rarm = char["Right Arm"]
27
local lleg = char["Left Leg"]
28
local rleg = char["Right Leg"]
29
local hed = char.Head
30
local torso = char.Torso
31
local hum = char.Humanoid
32
local cam = game.Workspace.CurrentCamera
33
local root = char.HumanoidRootPart
34
local deb = false
35
local shot = 0
36
local l = game:GetService("Lighting")
37
local rs = game:GetService("RunService").RenderStepped
38
local stanceToggle = "Normal"
39
math.randomseed(os.time())
40
hum.WalkSpeed = 30
41
char.Health:Destroy()
42
hum.MaxHealth = 500000
43
wait(0.01)
44
hum.Health = 500000
45
----------------------------------------------------
46
----------------------------------------------------
47
shirt = Instance.new("Shirt", char)
48
shirt.Name = "Shirt"
49
pants = Instance.new("Pants", char)
50
pants.Name = "Pants"
51
char.Shirt.ShirtTemplate = "rbxassetid://395818258"
52
char.Pants.PantsTemplate = "rbxassetid://271892764"
53
----------------------------------------------------
54
----------------------------------------------------
55
Debounces = {
56
on = false;
57
ks = false;
58
CanAttack = true;
59
CanJoke = true;
60
NoIdl = false;
61
Slashing = false;
62
Slashed = false;
63
Grabbing = false;
64
Grabbed = false;
65
}
66
local Touche = {char.Name, }
67
----------------------------------------------------
68
function lerp(a, b, t) -- Linear interpolation
69
    return a + (b - a)*t
70
end
71
 
72
function slerp(a, b, t) --Spherical interpolation
73
    dot = a:Dot(b)
74
    if dot > 0.99999 or dot < -0.99999 then
75
        return t <= 0.5 and a or b
76
    else
77
        r = math.acos(dot)
78
        return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
79
    end
80
end
81
 
82
function matrixInterpolate(a, b, t)
83
    local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
84
    local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
85
    local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
86
    local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector  right
87
    local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector  up
88
    local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector  back
89
    local t = v1:Dot(v2)
90
    if not (t < 0 or t == 0 or t > 0) then     -- Failsafe
91
        return CFrame.new()
92
    end
93
    return CFrame.new(
94
    v0.x, v0.y, v0.z,
95
    v1.x, v1.y, v1.z,
96
    v2.x, v2.y, v2.z,
97
    v3.x, v3.y, v3.z)
98
end
99
----------------------------------------------------
100
function genWeld(a,b)
101
    local w = Instance.new("Weld",a)
102
    w.Part0 = a
103
    w.Part1 = b
104
    return w
105
end
106
function weld(a, b)
107
    local weld = Instance.new("Weld")
108
    weld.Name = "W"
109
    weld.Part0 = a
110
    weld.Part1 = b
111
    weld.C0 = a.CFrame:inverse() * b.CFrame
112
    weld.Parent = a
113
    return weld;
114
end
115
----------------------------------------------------
116
function Lerp(c1,c2,al)
117
local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
118
local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
119
for i,v in pairs(com1) do 
120
com1[i] = v+(com2[i]-v)*al
121
end
122
return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
123
end
124
----------------------------------------------------
125
newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
126
local wld = Instance.new("Weld", wp1)
127
wld.Part0 = wp0
128
wld.Part1 = wp1
129
wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
130
end
131
----------------------------------------------------
132
for i,v in pairs(char:children()) do
133
    if v:IsA("Hat") then
134
        v:Destroy()
135
    end
136
end
137
for i,v in pairs(hed:children()) do
138
    if v:IsA("Sound") then
139
        v:Destroy()
140
    end
141
end
142
----------------------------------------------------
143
function HasntTouched(plrname)
144
local ret = true
145
for _, v in pairs(Touche) do
146
if v == plrname then
147
ret = false
148
end
149
end
150
return ret
151
end
152
----------------------------------------------------
153
larm.Size = larm.Size * 2
154
rarm.Size = rarm.Size * 2
155
lleg.Size = lleg.Size * 2
156
rleg.Size = rleg.Size * 2
157
torso.Size = torso.Size * 2
158
hed.Size = hed.Size * 2
159
root.Size = root.Size * 2
160
----------------------------------------------------
161
newWeld(torso, larm, -1.5, 0.5, 0)
162
larm.Weld.C1 = CFrame.new(0, 0.5, 0)
163
newWeld(torso, rarm, 1.5, 0.5, 0)
164
rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
165
newWeld(torso, hed, 0, 1.5, 0)
166
newWeld(torso, lleg, -0.5, -1, 0)
167
lleg.Weld.C1 = CFrame.new(0, 1, 0)
168
newWeld(torso, rleg, 0.5, -1, 0)
169
rleg.Weld.C1 = CFrame.new(0, 1, 0)
170
newWeld(root, torso, 0, -1, 0)
171
torso.Weld.C1 = CFrame.new(0, -1, 0)
172
hed.Transparency = 1
173
----------------------------------------------------
174
lite = Instance.new("PointLight", torso)
175
lite.Brightness = 100
176
lite.Range = 15
177
lite.Color = Color3.new(2, 2, 2)
178
--[[local hed2 = hed:Clone()
179
hed2.CanCollide = false
180
hed2.Parent = char
181
hed2:ClearAllChildren()
182
hed2.Transparency = 1
183
hed2.Name = "DARP"
184
local w = Instance.new("Weld",hed2)
185
w.Part0 = hed
186
w.Part1 = hed2
187
w.C0 = CFrame.new(0,0,-0.175)
188
z=Instance.new("SurfaceGui",hed2)
189
z.Enabled = true
190
z.Face = "Front"
191
z.Adornee = hed2
192
z.CanvasSize = Vector2.new(100,100)
193
local face = Instance.new("ImageLabel",z)
194
face.Size = UDim2.new(1,-30,1,0)
195
face.Position = UDim2.new(0,15,0,0)
196
face.BackgroundTransparency = 1
197
face.Image='rbxassetid://46282671']]--
198
----------------------------------------------------
199
z = Instance.new("Sound", char)
200
z.SoundId = "rbxassetid://1498886681"--504618717 into sound
201
z.Looped = true
202
z.Pitch = 1
203
z.Volume = 3
204
wait(.001)
205
z:Play()
206
----------------------------------------------------
207
208
local m = Instance.new("Model")
209
m.Name = "Absolution"
210
p1 = Instance.new("Part", m)
211
p1.BrickColor = BrickColor.new("Bright blue")
212
p1.FormFactor = Enum.FormFactor.Custom
213
p1.Size = Vector3.new(1, 0.600000024, 1.5)
214
p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
215
p1.CanCollide = false
216
p1.Locked = true
217
p1.Elasticity = 0
218
p1.BottomSurface = Enum.SurfaceType.Smooth
219
p1.TopSurface = Enum.SurfaceType.Smooth
220
b1 = Instance.new("SpecialMesh", p1)
221
b1.MeshType = Enum.MeshType.Wedge
222
b1.Name = "Mesh"
223
b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
224
p2 = Instance.new("Part", m)
225
p2.BrickColor = BrickColor.new("Really black")
226
p2.FormFactor = Enum.FormFactor.Custom
227
p2.Size = Vector3.new(1, 2.9000001, 1)
228
p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
229
p2.CanCollide = false
230
p2.Locked = true
231
p2.Elasticity = 0
232
p2.BottomSurface = Enum.SurfaceType.Smooth
233
p2.TopSurface = Enum.SurfaceType.Smooth
234
b2 = Instance.new("BlockMesh", p2)
235
b2.Name = "Mesh"
236
b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
237
p3 = Instance.new("Part", m)
238
p3.BrickColor = BrickColor.new("Bright blue")
239
p3.FormFactor = Enum.FormFactor.Custom
240
p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
241
p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
242
p3.CanCollide = false
243
p3.Locked = true
244
p3.Elasticity = 0
245
p3.BottomSurface = Enum.SurfaceType.Smooth
246
p3.TopSurface = Enum.SurfaceType.Smooth
247
b3 = Instance.new("SpecialMesh", p3)
248
b3.MeshType = Enum.MeshType.Wedge
249
b3.Name = "Mesh"
250
b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
251
p4 = Instance.new("Part", m)
252
p4.BrickColor = BrickColor.new("Bright blue")
253
p4.FormFactor = Enum.FormFactor.Custom
254
p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
255
p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
256
p4.CanCollide = false
257
p4.Locked = true
258
p4.Elasticity = 0
259
p4.BottomSurface = Enum.SurfaceType.Smooth
260
p4.TopSurface = Enum.SurfaceType.Smooth
261
b4 = Instance.new("SpecialMesh", p4)
262
b4.MeshType = Enum.MeshType.Wedge
263
b4.Name = "Mesh"
264
b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
265
p5 = Instance.new("Part", m)
266
p5.BrickColor = BrickColor.new("Bright blue")
267
p5.FormFactor = Enum.FormFactor.Custom
268
p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
269
p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
270
p5.CanCollide = false
271
p5.Locked = true
272
p5.Elasticity = 0
273
p5.BottomSurface = Enum.SurfaceType.Smooth
274
p5.TopSurface = Enum.SurfaceType.Smooth
275
b5 = Instance.new("SpecialMesh", p5)
276
b5.MeshType = Enum.MeshType.Wedge
277
b5.Name = "Mesh"
278
b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
279
p6 = Instance.new("Part", m)
280
p6.Name = "Handle"
281
p6.BrickColor = BrickColor.new("Really black")
282
p6.FormFactor = Enum.FormFactor.Custom
283
p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
284
p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
285
p6.CanCollide = false
286
p6.Locked = true
287
p6.Elasticity = 0
288
p6.BottomSurface = Enum.SurfaceType.Smooth
289
p6.TopSurface = Enum.SurfaceType.Smooth
290
b6 = Instance.new("BlockMesh", p6)
291
b6.Name = "Mesh"
292
b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
293
p7 = Instance.new("Part", m)
294
p7.BrickColor = BrickColor.new("Bright blue")
295
p7.FormFactor = Enum.FormFactor.Custom
296
p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
297
p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
298
p7.CanCollide = false
299
p7.Locked = true
300
p7.Elasticity = 0
301
p7.BottomSurface = Enum.SurfaceType.Smooth
302
p7.TopSurface = Enum.SurfaceType.Smooth
303
b7 = Instance.new("SpecialMesh", p7)
304
b7.MeshType = Enum.MeshType.Wedge
305
b7.Name = "Mesh"
306
b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
307
p8 = Instance.new("Part", m)
308
p8.BrickColor = BrickColor.new("Bright blue")
309
p8.FormFactor = Enum.FormFactor.Custom
310
p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
311
p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
312
p8.CanCollide = false
313
p8.Locked = true
314
p8.Elasticity = 0
315
p8.BottomSurface = Enum.SurfaceType.Smooth
316
p8.TopSurface = Enum.SurfaceType.Smooth
317
b8 = Instance.new("SpecialMesh", p8)
318
b8.MeshType = Enum.MeshType.Wedge
319
b8.Name = "Mesh"
320
b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
321
p9 = Instance.new("Part", m)
322
p9.BrickColor = BrickColor.new("Really black")
323
p9.FormFactor = Enum.FormFactor.Custom
324
p9.Size = Vector3.new(1, 1.07999957, 1)
325
p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
326
p9.CanCollide = false
327
p9.Locked = true
328
p9.Elasticity = 0
329
p9.BottomSurface = Enum.SurfaceType.Smooth
330
p9.TopSurface = Enum.SurfaceType.Smooth
331
b9 = Instance.new("BlockMesh", p9)
332
b9.Name = "Mesh"
333
b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
334
p10 = Instance.new("Part", m)
335
p10.BrickColor = BrickColor.new("Really black")
336
p10.FormFactor = Enum.FormFactor.Custom
337
p10.Size = Vector3.new(1, 1.41999948, 1)
338
p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
339
p10.CanCollide = false
340
p10.Locked = true
341
p10.Elasticity = 0
342
p10.BottomSurface = Enum.SurfaceType.Smooth
343
p10.TopSurface = Enum.SurfaceType.Smooth
344
b10 = Instance.new("BlockMesh", p10)
345
b10.Name = "Mesh"
346
b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
347
p11 = Instance.new("Part", m)
348
p11.BrickColor = BrickColor.new("Really black")
349
p11.FormFactor = Enum.FormFactor.Custom
350
p11.Size = Vector3.new(1, 1.50999951, 1)
351
p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
352
p11.CanCollide = false
353
p11.Locked = true
354
p11.Elasticity = 0
355
p11.BottomSurface = Enum.SurfaceType.Smooth
356
p11.TopSurface = Enum.SurfaceType.Smooth
357
b11 = Instance.new("BlockMesh", p11)
358
b11.Name = "Mesh"
359
b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
360
p12 = Instance.new("Part", m)
361
p12.Name = "BladeCenter"
362
p12.BrickColor = BrickColor.new("Dark stone grey")
363
p12.Material = Enum.Material.Concrete
364
p12.FormFactor = Enum.FormFactor.Symmetric
365
p12.Size = Vector3.new(1, 2, 2)
366
p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
367
p12.CanCollide = false
368
p12.Locked = true
369
p12.BottomSurface = Enum.SurfaceType.Smooth
370
p12.TopSurface = Enum.SurfaceType.Smooth
371
b12 = Instance.new("SpecialMesh", p12)
372
b12.MeshType = Enum.MeshType.Brick
373
b12.Name = "Mesh"
374
b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
375
p13 = Instance.new("Part", m)
376
p13.BrickColor = BrickColor.new("Really black")
377
p13.FormFactor = Enum.FormFactor.Custom
378
p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
379
p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
380
p13.CanCollide = false
381
p13.Locked = true
382
p13.Elasticity = 0
383
p13.BottomSurface = Enum.SurfaceType.Smooth
384
p13.TopSurface = Enum.SurfaceType.Smooth
385
b13 = Instance.new("BlockMesh", p13)
386
b13.Name = "Mesh"
387
b13.Scale = Vector3.new(1, 1, 0.400000006)
388
p14 = Instance.new("Part", m)
389
p14.BrickColor = BrickColor.new("Really black")
390
p14.FormFactor = Enum.FormFactor.Custom
391
p14.Size = Vector3.new(2.5, 2.17999935, 1)
392
p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
393
p14.CanCollide = false
394
p14.Locked = true
395
p14.Elasticity = 0
396
p14.BottomSurface = Enum.SurfaceType.Smooth
397
p14.TopSurface = Enum.SurfaceType.Smooth
398
b14 = Instance.new("BlockMesh", p14)
399
b14.Name = "Mesh"
400
b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
401
p15 = Instance.new("Part", m)
402
p15.BrickColor = BrickColor.new("Really black")
403
p15.FormFactor = Enum.FormFactor.Custom
404
p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
405
p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
406
p15.CanCollide = false
407
p15.Locked = true
408
p15.Elasticity = 0
409
p15.BottomSurface = Enum.SurfaceType.Smooth
410
p15.TopSurface = Enum.SurfaceType.Smooth
411
b15 = Instance.new("BlockMesh", p15)
412
b15.Name = "Mesh"
413
b15.Scale = Vector3.new(1, 1, 0.400000006)
414
p16 = Instance.new("Part", m)
415
p16.BrickColor = BrickColor.new("Really black")
416
p16.FormFactor = Enum.FormFactor.Custom
417
p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
418
p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
419
p16.CanCollide = false
420
p16.Locked = true
421
p16.Elasticity = 0
422
p16.BottomSurface = Enum.SurfaceType.Smooth
423
p16.TopSurface = Enum.SurfaceType.Smooth
424
b16 = Instance.new("BlockMesh", p16)
425
b16.Name = "Mesh"
426
b16.Scale = Vector3.new(1, 1, 0.400000006)
427
p17 = Instance.new("Part", m)
428
p17.BrickColor = BrickColor.new("Really black")
429
p17.FormFactor = Enum.FormFactor.Custom
430
p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
431
p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
432
p17.CanCollide = false
433
p17.Locked = true
434
p17.Elasticity = 0
435
p17.BottomSurface = Enum.SurfaceType.Smooth
436
p17.TopSurface = Enum.SurfaceType.Smooth
437
b17 = Instance.new("BlockMesh", p17)
438
b17.Name = "Mesh"
439
b17.Scale = Vector3.new(1, 1, 0.400000006)
440
p18 = Instance.new("WedgePart", m)
441
p18.BrickColor = BrickColor.new("Dark stone grey")
442
p18.Name = "BladePart1"
443
p18.Material = Enum.Material.Concrete
444
p18.Name = "Wedge"
445
p18.FormFactor = Enum.FormFactor.Symmetric
446
p18.Size = Vector3.new(1, 4, 2)
447
p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
448
p18.CanCollide = false
449
p18.Locked = true
450
p18.BottomSurface = Enum.SurfaceType.Smooth
451
p18.TopSurface = Enum.SurfaceType.Smooth
452
b18 = Instance.new("SpecialMesh", p18)
453
b18.MeshType = Enum.MeshType.Wedge
454
b18.Name = "Mesh"
455
b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
456
p19 = Instance.new("WedgePart", m)
457
p19.BrickColor = BrickColor.new("Dark stone grey")
458
p19.Name = "BladePart2"
459
p19.Material = Enum.Material.Concrete
460
p19.Name = "Wedge"
461
p19.FormFactor = Enum.FormFactor.Symmetric
462
p19.Size = Vector3.new(1, 4, 2)
463
p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
464
p19.CanCollide = false
465
p19.Locked = true
466
p19.BottomSurface = Enum.SurfaceType.Smooth
467
p19.TopSurface = Enum.SurfaceType.Smooth
468
b19 = Instance.new("SpecialMesh", p19)
469
b19.MeshType = Enum.MeshType.Wedge
470
b19.Name = "Mesh"
471
b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
472
p20 = Instance.new("Part", m)
473
p20.BrickColor = BrickColor.new("Really black")
474
p20.FormFactor = Enum.FormFactor.Custom
475
p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
476
p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
477
p20.CanCollide = false
478
p20.Locked = true
479
p20.Elasticity = 0
480
p20.BottomSurface = Enum.SurfaceType.Smooth
481
p20.TopSurface = Enum.SurfaceType.Smooth
482
b20 = Instance.new("BlockMesh", p20)
483
b20.Name = "Mesh"
484
b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
485
p21 = Instance.new("Part", m)
486
p21.BrickColor = BrickColor.new("Bright blue")
487
p21.FormFactor = Enum.FormFactor.Custom
488
p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
489
p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
490
p21.CanCollide = false
491
p21.Locked = true
492
p21.Elasticity = 0
493
p21.BottomSurface = Enum.SurfaceType.Smooth
494
p21.TopSurface = Enum.SurfaceType.Smooth
495
b21 = Instance.new("SpecialMesh", p21)
496
b21.MeshType = Enum.MeshType.Wedge
497
b21.Name = "Mesh"
498
b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
499
w1 = Instance.new("Weld", p1)
500
w1.Name = "Part_Weld"
501
w1.Part0 = p1
502
w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
503
w1.Part1 = p2
504
w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
505
w2 = Instance.new("Weld", p2)
506
w2.Name = "Part_Weld"
507
w2.Part0 = p2
508
w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
509
w2.Part1 = p3
510
w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
511
w3 = Instance.new("Weld", p3)
512
w3.Name = "Part_Weld"
513
w3.Part0 = p3
514
w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
515
w3.Part1 = p4
516
w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
517
w4 = Instance.new("Weld", p4)
518
w4.Name = "Part_Weld"
519
w4.Part0 = p4
520
w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
521
w4.Part1 = p5
522
w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
523
w5 = Instance.new("Weld", p5)
524
w5.Name = "Part_Weld"
525
w5.Part0 = p5
526
w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
527
w5.Part1 = p6
528
w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
529
w6 = Instance.new("Weld", p6)
530
w6.Name = "Part_Weld"
531
w6.Part0 = p6
532
w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
533
w6.Part1 = p7
534
w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
535
w7 = Instance.new("Weld", p7)
536
w7.Name = "Part_Weld"
537
w7.Part0 = p7
538
w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
539
w7.Part1 = p8
540
w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
541
w8 = Instance.new("Weld", p8)
542
w8.Name = "Part_Weld"
543
w8.Part0 = p8
544
w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
545
w8.Part1 = p9
546
w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
547
w9 = Instance.new("Weld", p9)
548
w9.Name = "Part_Weld"
549
w9.Part0 = p9
550
w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
551
w9.Part1 = p10
552
w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
553
w10 = Instance.new("Weld", p10)
554
w10.Name = "Part_Weld"
555
w10.Part0 = p10
556
w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
557
w10.Part1 = p11
558
w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
559
w11 = Instance.new("Weld", p11)
560
w11.Name = "Part_Weld"
561
w11.Part0 = p11
562
w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
563
w11.Part1 = p12
564
w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
565
w12 = Instance.new("Weld", p12)
566
w12.Name = "Part_Weld"
567
w12.Part0 = p12
568
w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
569
w12.Part1 = p13
570
w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
571
w13 = Instance.new("Weld", p13)
572
w13.Name = "Part_Weld"
573
w13.Part0 = p13
574
w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
575
w13.Part1 = p14
576
w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
577
w14 = Instance.new("Weld", p14)
578
w14.Name = "Part_Weld"
579
w14.Part0 = p14
580
w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
581
w14.Part1 = p15
582
w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
583
w15 = Instance.new("Weld", p15)
584
w15.Name = "Part_Weld"
585
w15.Part0 = p15
586
w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
587
w15.Part1 = p16
588
w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
589
w16 = Instance.new("Weld", p16)
590
w16.Name = "Part_Weld"
591
w16.Part0 = p16
592
w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
593
w16.Part1 = p17
594
w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
595
w17 = Instance.new("Weld", p17)
596
w17.Name = "Wedge_Weld"
597
w17.Part0 = p17
598
w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
599
w17.Part1 = p18
600
w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
601
w18 = Instance.new("Weld", p18)
602
w18.Name = "Wedge_Weld"
603
w18.Part0 = p18
604
w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
605
w18.Part1 = p19
606
w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
607
w19 = Instance.new("Weld", p19)
608
w19.Name = "Part_Weld"
609
w19.Part0 = p19
610
w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
611
w19.Part1 = p20
612
w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
613
w20 = Instance.new("Weld", p20)
614
w20.Name = "Part_Weld"
615
w20.Part0 = p20
616
w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
617
w20.Part1 = p21
618
w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
619
m.Parent = char
620
m:MakeJoints()
621
----------------------------------------------------
622
local cor = Instance.new("Part", char.Absolution)
623
cor.Name = "Thingy"
624
cor.Locked = true
625
cor.BottomSurface = 0
626
cor.CanCollide = false
627
cor.Size = Vector3.new(1, 13, 1)
628
cor.Transparency = 1
629
cor.TopSurface = 0
630
corw = Instance.new("Weld", cor)
631
corw.Part0 = rarm
632
corw.Part1 = cor
633
corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
634
corw.C1 = CFrame.new(0, 0, 0)
635
weld1 = Instance.new("Weld", char.Absolution)
636
weld1.Part0 = cor
637
weld1.Part1 = p6
638
weld1.C0 = CFrame.new(0, 0, 0)
639
----------------------------------------------------
640
hitb = Instance.new("Part", char.Absolution)
641
hitb.Name = "Thingy2"
642
hitb.Locked = true
643
hitb.BottomSurface = 0
644
hitb.CanCollide = false
645
hitb.Size = Vector3.new(0, 8, 6)
646
hitb.Transparency = 1
647
hitb.TopSurface = 0
648
weld2 = Instance.new("Weld", char.Absolution)
649
weld2.Part0 = hitb
650
weld2.Part1 = p12
651
weld2.C0 = CFrame.new(0, .6, 1)
652
----------------------------------------------------
653
local m = Instance.new("Model")
654
m.Name = "Claw"
655
p1 = Instance.new("Part", m)
656
p1.BrickColor = BrickColor.new("Really black")
657
p1.FormFactor = Enum.FormFactor.Custom
658
p1.Size = Vector3.new(1.5, 0.5, 0.5)
659
p1.CFrame = CFrame.new(2.91120553, 6.79703379, -19.5339718, -0.205515206, -0.209888965, 0.955883741, 0.52527827, -0.847774804, -0.0732159689, 0.825741529, 0.487057745, 0.284480691)
660
p1.CanCollide = false
661
p1.Locked = true
662
p1.BottomSurface = Enum.SurfaceType.Smooth
663
p1.TopSurface = Enum.SurfaceType.Smooth
664
b1 = Instance.new("BlockMesh", p1)
665
b1.Name = "Mesh"
666
p2 = Instance.new("WedgePart", m)
667
p2.BrickColor = BrickColor.new("Really black")
668
p2.Name = "Wedge"
669
p2.FormFactor = Enum.FormFactor.Custom
670
p2.Size = Vector3.new(3, 1, 0.5)
671
p2.CFrame = CFrame.new(2.94872427, 6.13246727, -16.5004997, -5.96046448e-008, -4.47034836e-008, -1.00000358, -1.3615936e-005, 0.99999994, 4.47034836e-008, 1.00000358, 1.41002238e-005, 0)
672
p2.CanCollide = false
673
p2.Locked = true
674
p2.BottomSurface = Enum.SurfaceType.Smooth
675
p2.TopSurface = Enum.SurfaceType.Smooth
676
p3 = Instance.new("Part", m)
677
p3.BrickColor = BrickColor.new("Really black")
678
p3.FormFactor = Enum.FormFactor.Custom
679
p3.Size = Vector3.new(1.5, 0.5, 0.5)
680
p3.CFrame = CFrame.new(1.84869456, 6.79700661, -18.5422173, -5.06400113e-008, 1.07230136e-007, 1.00000715, -0.499905825, -0.866079628, -1.1125789e-007, 0.86608547, -0.499910295, -2.17476881e-008)
681
p3.CanCollide = false
682
p3.Locked = true
683
p3.BottomSurface = Enum.SurfaceType.Smooth
684
p3.TopSurface = Enum.SurfaceType.Smooth
685
b2 = Instance.new("BlockMesh", p3)
686
b2.Name = "Mesh"
687
p4 = Instance.new("WedgePart", m)
688
p4.BrickColor = BrickColor.new("Really black")
689
p4.Name = "Wedge"
690
p4.FormFactor = Enum.FormFactor.Custom
691
p4.Size = Vector3.new(3, 1, 0.5)
692
p4.CFrame = CFrame.new(0.0487272739, 4.13279819, -16.5004959, -1.62921424e-007, 1.78814929e-007, 1.00001431, -1.2755394e-005, -0.999999762, -1.78813849e-007, 1.00001431, -1.46627426e-005, -7.54998553e-008)
693
p4.CanCollide = false
694
p4.Locked = true
695
p4.BottomSurface = Enum.SurfaceType.Smooth
696
p4.TopSurface = Enum.SurfaceType.Smooth
697
p5 = Instance.new("Part", m)
698
p5.BrickColor = BrickColor.new("Really black")
699
p5.FormFactor = Enum.FormFactor.Custom
700
p5.Size = Vector3.new(1.5, 0.5, 0.5)
701
p5.CFrame = CFrame.new(1.84874606, 6.79701567, -19.6422844, -4.29027068e-007, 1.9046513e-007, 1.00001431, 0.500089467, -0.865973532, 2.18601315e-008, 0.865987122, 0.50009501, 3.78533827e-008)
702
p5.CanCollide = false
703
p5.Locked = true
704
p5.BottomSurface = Enum.SurfaceType.Smooth
705
p5.TopSurface = Enum.SurfaceType.Smooth
706
b3 = Instance.new("BlockMesh", p5)
707
b3.Name = "Mesh"
708
p6 = Instance.new("Part", m)
709
p6.BrickColor = BrickColor.new("Really black")
710
p6.FormFactor = Enum.FormFactor.Custom
711
p6.Size = Vector3.new(1.5, 0.5, 0.5)
712
p6.CFrame = CFrame.new(2.61122823, 6.79701757, -18.433939, -0.250001401, 0.0669622123, 0.965941966, -0.491382152, -0.868364573, -0.0669801831, 0.834303975, -0.491393685, 0.249996051)
713
p6.CanCollide = false
714
p6.Locked = true
715
p6.BottomSurface = Enum.SurfaceType.Smooth
716
p6.TopSurface = Enum.SurfaceType.Smooth
717
b4 = Instance.new("BlockMesh", p6)
718
b4.Name = "Mesh"
719
p7 = Instance.new("Part", m)
720
p7.BrickColor = BrickColor.new("Really black")
721
p7.FormFactor = Enum.FormFactor.Custom
722
p7.Size = Vector3.new(3, 1, 1.20000005)
723
p7.CFrame = CFrame.new(2.59874034, 5.13276958, -16.5005379, -3.27825546e-007, -3.57627869e-007, -1.00001431, -0.000133868307, 0.99999994, 1.49011612e-008, 1.00001442, 0.000135900453, -5.96046448e-008)
724
p7.CanCollide = false
725
p7.Locked = true
726
p7.BottomSurface = Enum.SurfaceType.Smooth
727
p7.TopSurface = Enum.SurfaceType.Smooth
728
b5 = Instance.new("BlockMesh", p7)
729
b5.Name = "Mesh"
730
p8 = Instance.new("Part", m)
731
p8.BrickColor = BrickColor.new("Bright blue")
732
p8.FormFactor = Enum.FormFactor.Symmetric
733
p8.Size = Vector3.new(1, 1, 1)
734
p8.CFrame = CFrame.new(1.84841466, 6.25537968, -20.3997307, -1.42129729e-005, 0.00428489037, -1.00000513, 0.965967655, 0.258660465, 0.00109496934, 0.258668512, -0.965972245, -0.00414247159)
735
p8.CanCollide = false
736
p8.Locked = true
737
b6 = Instance.new("SpecialMesh", p8)
738
b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
739
b6.TextureId = ""
740
b6.MeshType = Enum.MeshType.FileMesh
741
b6.Name = "Mesh"
742
b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
743
p9 = Instance.new("Part", m)
744
p9.BrickColor = BrickColor.new("Really black")
745
p9.FormFactor = Enum.FormFactor.Custom
746
p9.Size = Vector3.new(1.5, 0.5, 0.5)
747
p9.CFrame = CFrame.new(2.79691935, 3.68131566, -18.264101, -0.277095288, -0.561500967, -0.779720128, 0.631033003, 0.505603611, -0.58835566, 0.724593103, -0.655058563, 0.214224264)
748
p9.CanCollide = false
749
p9.Locked = true
750
p9.BottomSurface = Enum.SurfaceType.Smooth
751
p9.TopSurface = Enum.SurfaceType.Smooth
752
b7 = Instance.new("BlockMesh", p9)
753
b7.Name = "Mesh"
754
p10 = Instance.new("Part", m)
755
p10.BrickColor = BrickColor.new("Bright blue")
756
p10.FormFactor = Enum.FormFactor.Symmetric
757
p10.Size = Vector3.new(1, 1, 1)
758
p10.CFrame = CFrame.new(3.09846497, 6.25236273, -20.2996788, -0.0669716895, 0.254178405, -0.964850724, 0.96595335, 0.258713901, 0.00110733509, 0.249903828, -0.93192625, -0.262850702)
759
p10.CanCollide = false
760
p10.Locked = true
761
b8 = Instance.new("SpecialMesh", p10)
762
b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
763
b8.TextureId = ""
764
b8.MeshType = Enum.MeshType.FileMesh
765
b8.Name = "Mesh"
766
b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
767
p11 = Instance.new("Part", m)
768
p11.BrickColor = BrickColor.new("Really black")
769
p11.FormFactor = Enum.FormFactor.Custom
770
p11.Size = Vector3.new(1.5, 0.5, 0.5)
771
p11.CFrame = CFrame.new(0.386122227, 6.79699421, -18.533905, 0.250022948, -0.0669473261, 0.965937555, -0.491377324, -0.868365645, 0.0670026764, 0.834300399, -0.491393894, -0.250007868)
772
p11.CanCollide = false
773
p11.Locked = true
774
p11.BottomSurface = Enum.SurfaceType.Smooth
775
p11.TopSurface = Enum.SurfaceType.Smooth
776
b9 = Instance.new("BlockMesh", p11)
777
b9.Name = "Mesh"
778
p12 = Instance.new("Part", m)
779
p12.BrickColor = BrickColor.new("Really black")
780
p12.FormFactor = Enum.FormFactor.Custom
781
p12.Size = Vector3.new(1.5, 0.5, 0.5)
782
p12.CFrame = CFrame.new(1.14871967, 6.79700947, -19.6422291, -4.76837158e-007, 2.83122063e-007, 1.00001442, 0.500089884, -0.865973473, 4.47034836e-008, 0.865987122, 0.500095367, 1.49011612e-008)
783
p12.CanCollide = false
784
p12.Locked = true
785
p12.BottomSurface = Enum.SurfaceType.Smooth
786
p12.TopSurface = Enum.SurfaceType.Smooth
787
b10 = Instance.new("BlockMesh", p12)
788
b10.Name = "Mesh"
789
p13 = Instance.new("Part", m)
790
p13.BrickColor = BrickColor.new("Really black")
791
p13.FormFactor = Enum.FormFactor.Custom
792
p13.Size = Vector3.new(1.5, 0.5, 0.5)
793
p13.CFrame = CFrame.new(1.14870512, 6.79699612, -18.5421638, -4.63888163e-008, 5.08347114e-007, 1.00001442, -0.499899268, -0.866083562, -2.18518963e-008, 0.866095126, -0.499908328, 3.78581007e-008)
794
p13.CanCollide = false
795
p13.Locked = true
796
p13.BottomSurface = Enum.SurfaceType.Smooth
797
p13.TopSurface = Enum.SurfaceType.Smooth
798
b11 = Instance.new("BlockMesh", p13)
799
b11.Name = "Mesh"
800
p14 = Instance.new("Part", m)
801
p14.BrickColor = BrickColor.new("Bright blue")
802
p14.FormFactor = Enum.FormFactor.Symmetric
803
p14.Size = Vector3.new(1, 1, 1)
804
p14.CFrame = CFrame.new(1.14845455, 6.25537348, -20.3996773, -1.42545232e-005, 0.00425684778, -1.00000536, 0.965958476, 0.258694947, 0.00108788908, 0.258703023, -0.965963125, -0.00411536777)
805
p14.CanCollide = false
806
p14.Locked = true
807
b12 = Instance.new("SpecialMesh", p14)
808
b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
809
b12.TextureId = ""
810
b12.MeshType = Enum.MeshType.FileMesh
811
b12.Name = "Mesh"
812
b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
813
p15 = Instance.new("Part", m)
814
p15.BrickColor = BrickColor.new("Medium stone grey")
815
p15.Transparency = 1
816
p15.Name = "ArmPart"
817
p15.FormFactor = Enum.FormFactor.Custom
818
p15.Size = Vector3.new(2, 1, 1)
819
p15.CFrame = CFrame.new(1.49875152, 5.13257265, -16.0004654, -2.99420208e-007, 4.39002179e-007, 1.00001442, 0.00011029192, -1, 0, 1.00001454, 0.000108176115, 4.42378223e-008)
820
p15.CanCollide = false
821
p15.Locked = true
822
p15.BottomSurface = Enum.SurfaceType.Smooth
823
p15.TopSurface = Enum.SurfaceType.Smooth
824
b13 = Instance.new("BlockMesh", p15)
825
b13.Name = "Mesh"
826
p16 = Instance.new("Part", m)
827
p16.BrickColor = BrickColor.new("Really black")
828
p16.FormFactor = Enum.FormFactor.Custom
829
p16.Size = Vector3.new(3, 1, 2.4000001)
830
p16.CFrame = CFrame.new(1.49872661, 6.13250732, -16.5007095, -2.98894406e-007, 4.39006953e-007, 1.00001442, 0.000110270419, -1, 4.71678729e-012, 1.00001454, 0.000108154614, 4.37120207e-008)
831
p16.CanCollide = false
832
p16.Locked = true
833
p16.BottomSurface = Enum.SurfaceType.Smooth
834
p16.TopSurface = Enum.SurfaceType.Smooth
835
b14 = Instance.new("BlockMesh", p16)
836
b14.Name = "Mesh"
837
p17 = Instance.new("Part", m)
838
p17.BrickColor = BrickColor.new("Really black")
839
p17.FormFactor = Enum.FormFactor.Custom
840
p17.Size = Vector3.new(1.5, 0.5, 0.5)
841
p17.CFrame = CFrame.new(2.77308726, 3.37837577, -19.2558823, 0.396035522, -0.497440547, -0.771840453, -0.207958207, 0.770127177, -0.603040278, 0.894391596, 0.399337679, 0.201549783)
842
p17.CanCollide = false
843
p17.Locked = true
844
p17.BottomSurface = Enum.SurfaceType.Smooth
845
p17.TopSurface = Enum.SurfaceType.Smooth
846
b15 = Instance.new("BlockMesh", p17)
847
b15.Name = "Mesh"
848
p18 = Instance.new("Part", m)
849
p18.BrickColor = BrickColor.new("Bright blue")
850
p18.FormFactor = Enum.FormFactor.Symmetric
851
p18.Size = Vector3.new(1, 1, 1)
852
p18.CFrame = CFrame.new(-0.0516102314, 6.25535488, -20.1996384, 0.066943109, -0.245838761, -0.967011333, 0.965954781, 0.258709013, 0.00110003352, 0.249906152, -0.934162259, 0.254788101)
853
p18.CanCollide = false
854
p18.Locked = true
855
b16 = Instance.new("SpecialMesh", p18)
856
b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
857
b16.TextureId = ""
858
b16.MeshType = Enum.MeshType.FileMesh
859
b16.Name = "Mesh"
860
b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
861
p19 = Instance.new("Part", m)
862
p19.BrickColor = BrickColor.new("Bright blue")
863
p19.FormFactor = Enum.FormFactor.Symmetric
864
p19.Size = Vector3.new(1, 1, 1)
865
p19.CFrame = CFrame.new(2.43177533, 3.59484506, -20.0301056, 0.559401393, 0.116905749, 0.820629179, -0.685213447, -0.491872638, 0.537163019, 0.466440916, -0.862796843, -0.195047855)
866
p19.CanCollide = false
867
p19.Locked = true
868
b17 = Instance.new("SpecialMesh", p19)
869
b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
870
b17.TextureId = ""
871
b17.MeshType = Enum.MeshType.FileMesh
872
b17.Name = "Mesh"
873
b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
874
p20 = Instance.new("Part", m)
875
p20.BrickColor = BrickColor.new("Really black")
876
p20.FormFactor = Enum.FormFactor.Custom
877
p20.Size = Vector3.new(3, 1, 2.4000001)
878
p20.CFrame = CFrame.new(1.49873698, 4.13275099, -16.500618, -2.38418579e-007, -4.47034836e-007, -1.00001454, -0.000133797526, 1.00000024, -2.98023224e-008, 1.00001466, 0.000135831535, -5.96046448e-008)
879
p20.CanCollide = false
880
p20.Locked = true
881
p20.BottomSurface = Enum.SurfaceType.Smooth
882
p20.TopSurface = Enum.SurfaceType.Smooth
883
b18 = Instance.new("BlockMesh", p20)
884
b18.Name = "Mesh"
885
p21 = Instance.new("Part", m)
886
p21.BrickColor = BrickColor.new("Really black")
887
p21.FormFactor = Enum.FormFactor.Custom
888
p21.Size = Vector3.new(3, 1, 1.19999993)
889
p21.CFrame = CFrame.new(0.398718834, 5.13273239, -16.5005798, -2.22529991e-007, -4.17224015e-007, -1.00001454, -0.000133820766, 1.00000024, 5.9472427e-012, 1.00001466, 0.000135854774, -4.37120207e-008)
890
p21.CanCollide = false
891
p21.Locked = true
892
p21.BottomSurface = Enum.SurfaceType.Smooth
893
p21.TopSurface = Enum.SurfaceType.Smooth
894
b19 = Instance.new("BlockMesh", p21)
895
b19.Name = "Mesh"
896
p22 = Instance.new("WedgePart", m)
897
p22.BrickColor = BrickColor.new("Really black")
898
p22.Name = "Wedge"
899
p22.FormFactor = Enum.FormFactor.Custom
900
p22.Size = Vector3.new(3, 1, 0.5)
901
p22.CFrame = CFrame.new(2.94884443, 4.13282013, -16.5005474, 1.35156796e-007, 4.17202415e-007, -1.00001454, 1.19470278e-005, -1.00000024, -6.07483681e-013, -1.00001466, -1.39792755e-005, 4.37120278e-008)
902
p22.CanCollide = false
903
p22.Locked = true
904
p22.BottomSurface = Enum.SurfaceType.Smooth
905
p22.TopSurface = Enum.SurfaceType.Smooth
906
p23 = Instance.new("Part", m)
907
p23.BrickColor = BrickColor.new("Really black")
908
p23.FormFactor = Enum.FormFactor.Custom
909
p23.Size = Vector3.new(1.5, 0.5, 0.5)
910
p23.CFrame = CFrame.new(0.111123323, 6.79699326, -19.53405, 0.167916089, 0.220654398, 0.960804224, 0.593452632, -0.800862908, 0.0802069977, 0.787171543, 0.556722164, -0.265425682)
911
p23.CanCollide = false
912
p23.Locked = true
913
p23.BottomSurface = Enum.SurfaceType.Smooth
914
p23.TopSurface = Enum.SurfaceType.Smooth
915
b20 = Instance.new("BlockMesh", p23)
916
b20.Name = "Mesh"
917
p24 = Instance.new("WedgePart", m)
918
p24.BrickColor = BrickColor.new("Really black")
919
p24.Name = "Wedge"
920
p24.FormFactor = Enum.FormFactor.Custom
921
p24.Size = Vector3.new(3, 1, 0.5)
922
p24.CFrame = CFrame.new(0.0487362742, 6.13243389, -16.5004158, -0.000165194273, -0.00030361861, 1.00001442, 0.00304524973, 0.999995589, 0.000303655863, -1.00001013, 0.00304720178, -0.000164449215)
923
p24.CanCollide = false
924
p24.Locked = true
925
p24.BottomSurface = Enum.SurfaceType.Smooth
926
p24.TopSurface = Enum.SurfaceType.Smooth
927
p25 = Instance.new("Part", m)
928
p25.BrickColor = BrickColor.new("Bright blue")
929
p25.FormFactor = Enum.FormFactor.Symmetric
930
p25.Size = Vector3.new(1, 1, 1)
931
p25.CFrame = CFrame.new(1.49870086, 5.13261318, -18.0007782, 1.20991026e-005, -1.00001454, -4.94604174e-005, -1.00000024, -1.16155716e-005, -0.000471511274, 0.000469659513, 4.96469293e-005, -1.00001466)
932
p25.CanCollide = false
933
p25.Locked = true
934
p25.BottomSurface = Enum.SurfaceType.Smooth
935
p25.TopSurface = Enum.SurfaceType.Smooth
936
b21 = Instance.new("SpecialMesh", p25)
937
b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
938
b21.TextureId = ""
939
b21.MeshType = Enum.MeshType.FileMesh
940
b21.Name = "Mesh"
941
b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
942
p26 = Instance.new("Part", m)
943
p26.BrickColor = BrickColor.new("Really black")
944
p26.FormFactor = Enum.FormFactor.Symmetric
945
p26.Size = Vector3.new(1, 1, 1)
946
p26.CFrame = CFrame.new(1.49868095, 5.13287783, -17.5005093, 0.00030383491, 0.000164763711, -1.00001454, -0.999995768, -0.00302907336, -0.000303868263, -0.00303102471, 1.00001025, 0.000164022902)
947
p26.CanCollide = false
948
p26.Locked = true
949
p26.BottomSurface = Enum.SurfaceType.Smooth
950
p26.TopSurface = Enum.SurfaceType.Smooth
951
b22 = Instance.new("SpecialMesh", p26)
952
b22.MeshType = Enum.MeshType.Brick
953
b22.Name = "Mesh"
954
w1 = Instance.new("Weld", p1)
955
w1.Name = "Wedge_Weld"
956
w1.Part0 = p1
957
w1.C0 = CFrame.new(13.1579618, 15.8875484, 3.27191186, -0.205515206, 0.52527827, 0.825741529, -0.209888965, -0.847774804, 0.487057745, 0.955883741, -0.0732159689, 0.284480691)
958
w1.Part1 = p2
959
w1.C1 = CFrame.new(16.5005817, -6.13223743, 2.94872212, -4.37113883e-008, -1.38580826e-005, 1, 0, 1, 1.38580826e-005, -1, 6.05756005e-013, -4.37113883e-008)
960
w2 = Instance.new("Weld", p2)
961
w2.Name = "Part_Weld"
962
w2.Part0 = p2
963
w2.C0 = CFrame.new(16.5006275, -6.13223362, 2.94873357, -5.96046448e-008, -1.3615936e-005, 1.00000358, -4.47034836e-008, 0.99999994, 1.41002238e-005, -1.00000358, 4.47034836e-008, 0)
964
w2.Part1 = p3
965
w2.C1 = CFrame.new(19.4568748, -3.38260746, -1.84870064, -4.37113883e-008, -0.499906301, 0.866079509, 0, -0.866079509, -0.499906301, 1, -2.18515979e-008, 3.78575393e-008)
966
w3 = Instance.new("Weld", p3)
967
w3.Name = "Wedge_Weld"
968
w3.Part0 = p3
969
w3.C0 = CFrame.new(19.456995, -3.38268948, -1.84870648, -5.06400113e-008, -0.499905825, 0.86608547, 1.07230136e-007, -0.866079628, -0.499910295, 1.00000715, -1.1125789e-007, -2.17476881e-008)
970
w3.Part1 = p4
971
w3.C1 = CFrame.new(16.5005646, 4.13256884, -0.0487511083, -4.37113883e-008, -1.37408551e-005, 1, 0, -1, -1.37408551e-005, 1, -6.00631849e-013, 4.37113883e-008)
972
w4 = Instance.new("Weld", p4)
973
w4.Name = "Part_Weld"
974
w4.Part0 = p4
975
w4.C0 = CFrame.new(16.5007706, 4.13255453, -0.0487275235, -1.62921424e-007, -1.2755394e-005, 1.00001431, 1.78814929e-007, -0.999999762, -1.46627426e-005, 1.00001431, -1.78813849e-007, -7.54998553e-008)
976
w4.Part1 = p5
977
w4.C1 = CFrame.new(13.6104183, 15.7089605, -1.84869325, -4.37113883e-008, 0.500093758, 0.865971267, 0, -0.865971267, 0.500093758, 1, 2.18597922e-008, 3.78528071e-008)
978
w5 = Instance.new("Weld", p5)
979
w5.Name = "Part_Weld"
980
w5.Part0 = p5
981
w5.C0 = CFrame.new(13.6108379, 15.7090359, -1.84877098, -4.29027068e-007, 0.500089467, 0.865987122, 1.9046513e-007, -0.865973532, 0.50009501, 1.00001431, 2.18601315e-008, 3.78533827e-008)
982
w5.Part1 = p6
983
w5.C1 = CFrame.new(19.3720245, -3.33087778, 2.54137325, -0.249996737, -0.491388977, 0.834289134, 0.0669635162, -0.868360817, -0.491391122, 0.965928316, -0.0669792444, 0.24999252)
984
w6 = Instance.new("Weld", p6)
985
w6.Name = "Part_Weld"
986
w6.Part0 = p6
987
w6.C0 = CFrame.new(19.3722382, -3.33087826, 2.54137945, -0.250001401, -0.491382152, 0.834303975, 0.0669622123, -0.868364573, -0.491393685, 0.965941966, -0.0669801831, 0.249996051)
988
w6.Part1 = p7
989
w6.C1 = CFrame.new(16.5012703, -5.1305232, 2.59873891, -4.37113883e-008, -0.000135861075, 1, 0, 1, 0.000135861075, -1, 5.9386762e-012, -4.37113883e-008)
990
w7 = Instance.new("Weld", p7)
991
w7.Name = "Part_Weld"
992
w7.Part0 = p7
993
w7.C0 = CFrame.new(16.5014496, -5.13052464, 2.59877563, -3.27825546e-007, -0.000133868307, 1.00001442, -3.57627869e-007, 0.99999994, 0.000135900453, -1.00001431, 1.49011612e-008, -5.96046448e-008)
994
w7.Part1 = p8
995
w7.C1 = CFrame.new(-0.765930653, -21.3311157, 1.75706458, -1.37833995e-005, 0.965968609, 0.258659452, 0.00428466033, 0.258657128, -0.965959728, -0.999990821, 0.00109495374, -0.00414241292)
996
w8 = Instance.new("Weld", p8)
997
w8.Name = "Part_Weld"
998
w8.Part0 = p8
999
w8.C0 = CFrame.new(-0.765703201, -21.3314991, 1.75706851, -1.42129729e-005, 0.965967655, 0.258668512, 0.00428489037, 0.258660465, -0.965972245, -1.00000513, 0.00109496934, -0.00414247159)
1000
w8.Part1 = p9
1001
w8.C1 = CFrame.new(11.6857395, -12.2548676, 8.25926208, -0.277089596, 0.631037474, 0.724577785, -0.561487973, 0.505604029, -0.655054033, -0.779713154, -0.588350415, 0.214222342)
1002
w9 = Instance.new("Weld", p9)
1003
w9.Name = "Part_Weld"
1004
w9.Part0 = p9
1005
w9.C0 = CFrame.new(11.6860123, -12.254859, 8.25934601, -0.277095288, 0.631033003, 0.724593103, -0.561500967, 0.505603611, -0.655058563, -0.779720128, -0.58835566, 0.214224264)
1006
w9.Part1 = p10
1007
w9.C1 = CFrame.new(-0.759226322, -21.3225994, -2.35311079, -0.0669693872, 0.965954244, 0.249894977, 0.254174918, 0.258710593, -0.931914091, -0.964836895, 0.00110732042, -0.262847036)
1008
w10 = Instance.new("Weld", p10)
1009
w10.Name = "Part_Weld"
1010
w10.Part0 = p10
1011
w10.C0 = CFrame.new(-0.759016514, -21.3229256, -2.3531487, -0.0669716895, 0.96595335, 0.249903828, 0.254178405, 0.258713901, -0.93192625, -0.964850724, 0.00110733509, -0.262850702)
1012
w10.Part1 = p11
1013
w10.C1 = CFrame.new(18.7059784, -3.17931223, -5.46201515, 0.250018269, -0.49138394, 0.834285676, -0.0669495314, -0.86836195, -0.491391063, 0.965923727, 0.0670017004, -0.250004292)
1014
w11 = Instance.new("Weld", p11)
1015
w11.Name = "Part_Weld"
1016
w11.Part0 = p11
1017
w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46200418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868)
1018
w11.Part1 = p12
1019
w11.C1 = CFrame.new(13.6104174, 15.708952, -1.1486963, -4.37113883e-008, 0.500093997, 0.865971148, 0, -0.865971148, 0.500093997, 1, 2.18598029e-008, 3.78528e-008)
1020
w12 = Instance.new("Weld", p12)
1021
w12.Name = "Part_Weld"
1022
w12.Part0 = p12
1023
w12.C0 = CFrame.new(13.6107903, 15.7090092, -1.1487354, -4.76837158e-007, 0.500089884, 0.865987122, 2.83122063e-007, -0.865973473, 0.500095367, 1.00001442, 4.47034836e-008, 1.49011612e-008)
1024
w12.Part1 = p13
1025
w12.C1 = CFrame.new(19.4568653, -3.38261366, -1.14870369, -4.37113883e-008, -0.499906093, 0.866079628, 0, -0.866079628, -0.499906093, 1, -2.1851589e-008, 3.78575429e-008)
1026
w13 = Instance.new("Weld", p13)
1027
w13.Name = "Part_Weld"
1028
w13.Part0 = p13
1029
w13.C0 = CFrame.new(19.457077, -3.38260937, -1.14871991, -4.63888163e-008, -0.499899268, 0.866095126, 5.08347114e-007, -0.866083562, -0.499908328, 1.00001442, -2.18518963e-008, 3.78581007e-008)
1030
w13.Part1 = p14
1031
w13.C1 = CFrame.new(-0.765169621, -21.3281136, 1.05768669, -1.37638153e-005, 0.96595937, 0.258693874, 0.00425664661, 0.258691579, -0.965950608, -0.99999094, 0.00108787336, -0.00411530817)
1032
w14 = Instance.new("Weld", p14)
1033
w14.Name = "ArmPart_Weld"
1034
w14.Part0 = p14
1035
w14.C0 = CFrame.new(-0.764959335, -21.3284416, 1.05770254, -1.42545232e-005, 0.965958476, 0.258703023, 0.00425684778, 0.258694947, -0.965963125, -1.00000536, 0.00108788908, -0.00411536777)
1036
w14.Part1 = p15
1037
w14.C1 = CFrame.new(16.0000172, 5.13429213, -1.49874043, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
1038
w15 = Instance.new("Weld", p15)
1039
w15.Name = "Part_Weld"
1040
w15.Part0 = p15
1041
w15.C0 = CFrame.new(16.0001163, 5.13430214, -1.49877143, -2.99420208e-007, 0.00011029192, 1.00001454, 4.39002179e-007, -1, 0.000108176115, 1.00001442, 0, 4.42378223e-008)
1042
w15.Part1 = p16
1043
w15.C1 = CFrame.new(16.5000153, 6.13429213, -1.49872518, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
1044
w16 = Instance.new("Weld", p16)
1045
w16.Name = "Part_Weld"
1046
w16.Part0 = p16
1047
w16.C0 = CFrame.new(16.5002594, 6.1342907, -1.49874651, -2.98894406e-007, 0.000110270419, 1.00001454, 4.39006953e-007, -1, 0.000108154614, 1.00001442, 4.71678729e-012, 4.37120207e-008)
1048
w16.Part1 = p17
1049
w16.C1 = CFrame.new(16.8263168, 6.46704865, 8.05857849, 0.396029502, -0.207962677, 0.894378066, -0.497426808, 0.770130157, 0.399332225, -0.771833658, -0.603034973, 0.201548025)
1050
w17 = Instance.new("Weld", p17)
1051
w17.Name = "Part_Weld"
1052
w17.Part0 = p17
1053
w17.C0 = CFrame.new(16.8266068, 6.46726036, 8.05869198, 0.396035522, -0.207958207, 0.894391596, -0.497440547, 0.770127177, 0.399337679, -0.771840453, -0.603040278, 0.201549783)
1054
w17.Part1 = p18
1055
w17.C1 = CFrame.new(-0.991122723, -20.5004215, 5.08983374, 0.0669417754, 0.965955615, 0.249897182, -0.245835528, 0.258705586, -0.9341501, -0.966997266, 0.00110005983, 0.254784435)
1056
w18 = Instance.new("Weld", p18)
1057
w18.Name = "Part_Weld"
1058
w18.Part0 = p18
1059
w18.C0 = CFrame.new(-0.990923882, -20.5007305, 5.08983374, 0.066943109, 0.965954781, 0.249906152, -0.245838761, 0.258709013, -0.934162259, -0.967011333, 0.00110003352, 0.254788101)
1060
w18.Part1 = p19
1061
w18.C1 = CFrame.new(10.4456682, -15.7977238, -7.8332901, 0.559388936, -0.68521893, 0.466432214, 0.116898462, -0.491870552, -0.862785101, 0.820620954, 0.537157655, -0.195045918)
1062
w19 = Instance.new("Weld", p19)
1063
w19.Name = "Part_Weld"
1064
w19.Part0 = p19
1065
w19.C0 = CFrame.new(10.4457512, -15.7979813, -7.83342838, 0.559401393, -0.685213447, 0.466440916, 0.116905749, -0.491872638, -0.862796843, 0.820629179, 0.537163019, -0.195047855)
1066
w19.Part1 = p20
1067
w19.C1 = CFrame.new(16.5012665, -4.13050127, 1.49876332, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
1068
w20 = Instance.new("Weld", p20)
1069
w20.Name = "Part_Weld"
1070
w20.Part0 = p20
1071
w20.C0 = CFrame.new(16.5013981, -4.13050938, 1.498757, -2.38418579e-007, -0.000133797526, 1.00001466, -4.47034836e-007, 1.00000024, 0.000135831535, -1.00001454, -2.98023224e-008, -5.96046448e-008)
1072
w20.Part1 = p21
1073
w20.C1 = CFrame.new(16.5012627, -5.13048887, 0.39874959, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
1074
w21 = Instance.new("Weld", p21)
1075
w21.Name = "Wedge_Weld"
1076
w21.Part0 = p21
1077
w21.C0 = CFrame.new(16.5014935, -5.13049126, 0.398722976, -2.22529991e-007, -0.000133820766, 1.00001466, -4.17224015e-007, 1.00000024, 0.000135854774, -1.00001454, 5.9472427e-012, -4.37120207e-008)
1078
w21.Part1 = p22
1079
w21.C1 = CFrame.new(-16.5005875, 4.13259029, 2.94876933, -4.37113883e-008, 1.39792737e-005, -1, 0, -1, -1.39792737e-005, -1, -6.11053471e-013, 4.37113883e-008)
1080
w22 = Instance.new("Weld", p22)
1081
w22.Name = "Part_Weld"
1082
w22.Part0 = p22
1083
w22.C0 = CFrame.new(-16.500824, 4.13258791, 2.94888711, 1.35156796e-007, 1.19470278e-005, -1.00001466, 4.17202415e-007, -1.00000024, -1.39792755e-005, -1.00001454, -6.07483681e-013, 4.37120278e-008)
1084
w22.Part1 = p23
1085
w22.C1 = CFrame.new(11.3238592, 16.2938461, -5.83674097, 0.167913347, 0.593457043, 0.787155509, 0.220650926, -0.800859332, 0.556720257, 0.960790455, 0.0802058354, -0.265421808)
1086
w23 = Instance.new("Weld", p23)
1087
w23.Name = "Wedge_Weld"
1088
w23.Part0 = p23
1089
w23.C0 = CFrame.new(11.3242846, 16.2939701, -5.83676767, 0.167916089, 0.593452632, 0.787171543, 0.220654398, -0.800862908, 0.556722164, 0.960804224, 0.0802069977, -0.265425682)
1090
w23.Part1 = p24
1091
w23.C1 = CFrame.new(-16.5190907, -6.08210278, -0.053311754, -0.000165350299, 0.00304719806, -0.999995351, -0.000303142268, 0.999995351, 0.00304725766, 0.99999994, 0.000303644716, -0.000164425801)
1092
w24 = Instance.new("Weld", p24)
1093
w24.Name = "Part_Weld"
1094
w24.Part0 = p24
1095
w24.C0 = CFrame.new(-16.5192356, -6.08211088, -0.0533116534, -0.000165194273, 0.00304524973, -1.00001013, -0.00030361861, 0.999995589, 0.00304720178, 1.00001442, 0.000303655863, -0.000164449215)
1096
w24.Part1 = p25
1097
w24.C1 = CFrame.new(5.14108515, 1.49960721, -17.9982204, 1.16387992e-005, -0.999999881, 0.000471503939, -1, -1.1615477e-005, 4.94651576e-005, -4.94596788e-005, -0.000471504522, -0.999999881)
1098
w25 = Instance.new("Weld", p25)
1099
w25.Name = "Part_Weld"
1100
w25.Part0 = p25
1101
w25.C0 = CFrame.new(5.14104986, 1.49967504, -17.9985313, 1.20991026e-005, -1.00000024, 0.000469659513, -1.00001454, -1.16155716e-005, 4.96469293e-005, -4.94604174e-005, -0.000471511274, -1.00001466)
1102
w25.Part1 = p26
1103
w25.C1 = CFrame.new(5.07938719, 17.5157299, 1.50311017, 0.00030336561, -0.99999541, -0.00302907825, 0.000164940167, -0.00302901864, 0.999995351, -0.99999994, -0.000303863839, 0.000164020501)
1104
m.Parent = char
1105
m:MakeJoints()
1106
----------------------------------------------------
1107
local cor2 = Instance.new("Part", char.Claw)
1108
cor2.Name = "Thingy"
1109
cor2.Locked = true
1110
cor2.BottomSurface = 0
1111
cor2.CanCollide = false
1112
cor2.Size = Vector3.new(2, 1, 1)
1113
cor2.Transparency = 1
1114
cor2.TopSurface = 0
1115
corw2 = Instance.new("Weld", cor2)
1116
corw2.Part0 = larm
1117
corw2.Part1 = cor2
1118
corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
1119
corw2.C1 = CFrame.new(0, 0, 0)
1120
weld2 = Instance.new("Weld", char.Claw)
1121
weld2.Part0 = cor2
1122
weld2.Part1 = char.Claw.ArmPart
1123
weld2.C0 = CFrame.new(0, 0, 0)
1124
----------------------------------------------------
1125
function weld5(part0, part1, c0, c1)
1126
    weeld=Instance.new("Weld", part0)
1127
    weeld.Part0=part0
1128
    weeld.Part1=part1
1129
    weeld.C0=c0
1130
    weeld.C1=c1
1131
    return weeld
1132
end
1133
----------------------------------------------------
1134
----------------------------------------------------
1135
a = game.Players.LocalPlayer.Character.Absolution:GetChildren()
1136
for i = 1,#a do
1137
if a[i]:IsA("UnionOperation") or a[i]:IsA("Part") or a[i]:IsA("WedgePart") then
1138
a[i].Transparency = 1
1139
end
1140
end
1141
----------------------------------------------------
1142
ACE = game.Players.LocalPlayer.Character.Claw:GetChildren()
1143
for i = 1,#a do
1144
if ACE[i]:IsA("UnionOperation") or ACE[i]:IsA("Part") or ACE[i]:IsA("WedgePart") then
1145
ACE[i].Transparency = 1
1146
end
1147
end
1148
----------------------------------------------------
1149
function newRay(start,face,range,wat)
1150
	local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
1151
	hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
1152
	return rey,hit,pos
1153
end
1154
----------------------------------------------------
1155
mod5 = Instance.new("Model",char)
1156
1157
function FindNearestTorso(Position,Distance,SinglePlayer)
1158
    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
1159
        local List = {}
1160
        for i,v in pairs(workspace:GetChildren())do
1161
            if v:IsA("Model")then
1162
                if v:findFirstChild("Torso")then
1163
                    if v ~= char then
1164
                        if(v.Torso.Position -Position).magnitude <= Distance then
1165
                            table.insert(List,v)
1166
                        end 
1167
                    end 
1168
                end 
1169
            end 
1170
        end
1171
    return List
1172
end
1173
1174
function Landing()
1175
    part=Instance.new('Part',mod5)
1176
    part.Anchored=true
1177
    part.CanCollide=false
1178
    part.FormFactor='Custom'
1179
    part.Size=Vector3.new(.2,.2,.2)
1180
    part.CFrame=root.CFrame*CFrame.new(0,-2,0)
1181
    part.Transparency=.7
1182
    part.BrickColor=BrickColor.new('Really black')
1183
    mesh=Instance.new('SpecialMesh',part)
1184
    mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
1185
    mesh.Scale=Vector3.new(10,5,10)
1186
1187
    for i,v in pairs(FindNearestTorso(torso.CFrame.p,40))do
1188
        if v:FindFirstChild('Humanoid') then
1189
            v.Humanoid:TakeDamage(math.random(20,30))
1190
            v.Humanoid.PlatformStand = true
1191
            v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
1192
        end
1193
    end
1194
1195
    coroutine.resume(coroutine.create(function() 
1196
        for i=0,3.8,0.05 do
1197
            wait()
1198
            part.CFrame=part.CFrame
1199
            part.Transparency=i
1200
            mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
1201
            end
1202
        part.Parent = nil
1203
    end))
1204
end
1205
----------------------------------------------------
1206
mod4 = Instance.new("Model",char)
1207
1208
ptez = {0.7, 0.8, 0.9, 1}
1209
1210
function FindNearestTorso(Position,Distance,SinglePlayer)
1211
    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
1212
        local List = {}
1213
        for i,v in pairs(workspace:GetChildren())do
1214
            if v:IsA("Model")then
1215
                if v:findFirstChild("Torso")then
1216
                    if v ~= char then
1217
                        if(v.Torso.Position -Position).magnitude <= Distance then
1218
                            table.insert(List,v)
1219
                        end 
1220
                    end 
1221
                end 
1222
            end 
1223
        end
1224
    return List
1225
end
1226
1227
function GroundPound()
1228
    part=Instance.new('Part',mod4)
1229
    part.Anchored=true
1230
    part.CanCollide=false
1231
    part.FormFactor='Custom'
1232
    part.Size=Vector3.new(.2,.2,.2)
1233
    part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
1234
    part.Transparency=.7
1235
    part.BrickColor=BrickColor.new('Really black')
1236
    mesh=Instance.new('SpecialMesh',part)
1237
    mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
1238
    mesh.Scale=Vector3.new(3,3,3)
1239
    part2=Instance.new('Part',mod4)
1240
    part2.Anchored=true
1241
    part2.CanCollide=false
1242
    part2.FormFactor='Custom'
1243
    part2.Size=Vector3.new(.2,.2,.2)
1244
    part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
1245
    part2.Transparency=.7
1246
    part2.BrickColor=BrickColor.new('Really red')
1247
    mesh2=Instance.new('SpecialMesh',part2)
1248
    mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
1249
    mesh2.Scale=Vector3.new(3,1.5,3)
1250
    x = Instance.new("Sound",char)
1251
    x.SoundId = "http://www.roblox.com/asset/?id=142070127"
1252
    x.Pitch = ptez[math.random(1,#ptez)]
1253
    x.Volume = 1
1254
    wait(0.001)
1255
    x:Play()
1256
    for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
1257
        if v:FindFirstChild('Humanoid') then
1258
            v.Humanoid:TakeDamage(math.random(8,15))
1259
        end
1260
    end
1261
    coroutine.resume(coroutine.create(function() 
1262
        for i=0,0.62,0.13 do
1263
            wait()
1264
            part.CFrame=part.CFrame
1265
            part.Transparency=i
1266
            mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
1267
            part2.CFrame=part2.CFrame
1268
            part2.Transparency=i
1269
            mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
1270
            end
1271
        part.Parent=nil
1272
        part2.Parent=nil
1273
        x:Destroy()
1274
    end))
1275
end
1276
----------------------------------------------------
1277
mod=Instance.new('Model',char)
1278
1279
function charge()
1280
    hed.Velocity=hed.CFrame.lookVector*200
1281
    part=Instance.new('Part',mod)
1282
    part.Anchored=true
1283
    part.CanCollide=false
1284
    part.FormFactor='Custom'
1285
    part.Size=Vector3.new(.2,.2,.2)
1286
    part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
1287
    part.Transparency=.7
1288
    part.BrickColor=BrickColor.new('Black')
1289
    mesh=Instance.new('SpecialMesh',part)
1290
    mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
1291
    mesh.Scale=Vector3.new(10,5,10)
1292
    part2=part:clone()
1293
    part2.Parent=mod
1294
    part2.BrickColor=BrickColor.new('Bright red')
1295
    mesh2=mesh:clone()
1296
    mesh2.Parent=part2
1297
    mesh2.Scale=Vector3.new(20,10,20)
1298
    part3=part2:clone()
1299
    part3.Parent = mod
1300
    part3.BrickColor=BrickColor.new('Really black')
1301
    mesh3=mesh2:clone()
1302
    mesh2.Parent=part3
1303
    mesh3.Scale=Vector3.new(30,15,30)
1304
    coroutine.resume(coroutine.create(function() 
1305
        for i=0,1,0.1 do
1306
            wait()
1307
            part.CFrame=part.CFrame
1308
            part.Transparency=i
1309
            mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
1310
            part2.CFrame=part2.CFrame
1311
            part2.Transparency=i
1312
            mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
1313
            part3.CFrame=part3.CFrame
1314
            part3.Transparency=i
1315
            mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
1316
            end
1317
        part.Parent=nil
1318
        part2.Parent=nil
1319
        part3.Parent = nil
1320
    end))
1321
end
1322
----------------------------------------------------
1323
function FindNearestTorso(Position,Distance,SinglePlayer)
1324
    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
1325
        local List = {}
1326
        for i,v in pairs(workspace:GetChildren())do
1327
            if v:IsA("Model")then
1328
                if v:findFirstChild("Torso")then
1329
                    if v ~= char then
1330
                        if(v.Torso.Position -Position).magnitude <= Distance then
1331
                            table.insert(List,v)
1332
                        end 
1333
                    end 
1334
                end 
1335
            end 
1336
        end
1337
    return List
1338
end
1339
1340
mod3 = Instance.new("Model",rleg)
1341
1342
function Stomp()
1343
    part=Instance.new('Part',mod3)
1344
    part.Anchored=true
1345
    part.CanCollide=false
1346
    part.FormFactor='Custom'
1347
    part.Size=Vector3.new(.2,.2,.2)
1348
    part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
1349
    part.Transparency=.7
1350
    part.BrickColor=BrickColor.new('Bright green')
1351
    mesh=Instance.new('SpecialMesh',part)
1352
    mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
1353
    mesh.Scale=Vector3.new(25,25,25)
1354
    part2=part:clone()
1355
    part2.Parent=mod3
1356
    part2.BrickColor=BrickColor.new('Bright green')
1357
    mesh2=mesh:clone()
1358
    mesh2.Parent=part2
1359
    mesh2.Scale=Vector3.new(15,15,15)
1360
    part3=part:clone()
1361
    part3.Parent=mod3
1362
    part3.TopSurface=0
1363
    part3.BottomSurface=0
1364
    part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
1365
    mesh3=Instance.new('SpecialMesh',part3)
1366
    mesh3.MeshType = 3
1367
    mesh3.Scale=Vector3.new(12,12,12)
1368
    for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
1369
        if v:FindFirstChild('Humanoid') then
1370
            v.Humanoid:TakeDamage(math.random(20,60))
1371
            v.Humanoid.PlatformStand = true
1372
            v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
1373
        end
1374
    end 
1375
    coroutine.resume(coroutine.create(function() 
1376
        for i=0,3.8,0.05 do
1377
            wait()
1378
            part.CFrame=part.CFrame
1379
            part.Transparency=i
1380
            mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
1381
            part2.CFrame=part2.CFrame
1382
            part2.Transparency=i
1383
            mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
1384
            part3.CFrame=part3.CFrame
1385
            part3.Transparency=i
1386
            mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
1387
        end
1388
    end))
1389
end
1390
----------------------------------------------------
1391
1392
local acos = math.acos
1393
local sqrt = math.sqrt
1394
local Vec3 = Vector3.new
1395
local fromAxisAngle = CFrame.fromAxisAngle
1396
1397
local function toAxisAngle(CFr)
1398
        local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
1399
        local Angle = math.acos((R00+R11+R22-1)/2)
1400
        local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
1401
        A = A == 0 and 0.00001 or A
1402
        local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
1403
        B = B == 0 and 0.00001 or B
1404
        local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
1405
        C = C == 0 and 0.00001 or C
1406
        local x = (R21-R12)/sqrt(A)
1407
        local y = (R02-R20)/sqrt(B)
1408
        local z = (R10-R01)/sqrt(C)
1409
        return Vec3(x,y,z),Angle
1410
end
1411
1412
function ApplyTrig(Num,Func)
1413
        local Min,Max = Func(0),Func(1)
1414
        local i = Func(Num)
1415
        return (i-Min)/(Max-Min)
1416
        --[[if Func == "sin" then
1417
                return (math.sin((1-Num)*math.pi)+1)/2
1418
        elseif Func == "cos" then
1419
                return (math.cos((1-Num)*math.pi)+1)/2
1420
        end]]
1421
end
1422
1423
function LerpCFrame(CFrame1,CFrame2,Num)
1424
        local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
1425
        return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
1426
end
1427
1428
function Crater(Torso,Radius)
1429
        Spawn(function()
1430
        local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
1431
        local Ignore = {}
1432
        for i,v in pairs(game:GetService("Players"):GetPlayers()) do
1433
                if v.Character ~= nil then
1434
                        Ignore[#Ignore+1] = v.Character
1435
                end
1436
        end
1437
        local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
1438
        if Hit == nil then return end
1439
        local Parts = {}
1440
        for i = 1,360,10 do
1441
                local P = Instance.new("Part",Torso.Parent)
1442
                P.Anchored = true
1443
                P.FormFactor = "Custom"
1444
                P.BrickColor = Hit.BrickColor
1445
                P.Material = Hit.Material
1446
                P.TopSurface = "Smooth"
1447
                P.BottomSurface = "Smooth"
1448
                P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
1449
                P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,7,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
1450
                Parts[#Parts+1] = {P,P.CFrame,((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,1,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius)*CFrame.Angles(math.rad(math.random(-50,-20)),math.rad(math.random(-15,15)),math.rad(math.random(-15,15))),P.Size}
1451
                if math.random(0,5) == 0 then -- rubble
1452
                        local P = Instance.new("Part",Torso.Parent)
1453
                        P.Anchored = true
1454
                        P.FormFactor = "Custom"
1455
                        P.BrickColor = Hit.BrickColor
1456
                        P.Material = Hit.Material
1457
                        P.TopSurface = "Smooth"
1458
                        P.BottomSurface = "Smooth"
1459
                        P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
1460
                        P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,2.5,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
1461
                        Parts[#Parts+1] = {P,P.CFrame,(CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius-8)*CFrame.Angles(math.rad(math.random(-90,90)),math.rad(math.random(-90,90)),math.rad(math.random(-90,90))),P.Size}
1462
                end
1463
        end
1464
        for i = 0,1,0.05 do
1465
                for i2,v in pairs(Parts) do
1466
                        v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
1467
                end
1468
                wait(0.02)
1469
        end
1470
        for i,v in pairs(Parts) do
1471
                if v[1].Size.X > 2.1 then
1472
                        v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
1473
                end
1474
                v[1].Anchored = false
1475
        end
1476
        for i = 0,1,0.05 do
1477
                for i2,v in pairs(Parts) do
1478
                        v[1].Transparency = i
1479
                        if i == 1 then
1480
                                v[1]:Destroy()
1481
                        elseif i >= 0.25 then
1482
                                v[1].CanCollide = false
1483
                        end
1484
                end
1485
                wait(0.02)
1486
        end
1487
        Parts = nil
1488
        end)
1489
end
1490
1491
----------------------------------------------------
1492
mouse.KeyDown:connect(function(key)
1493
    if key == "r" then
1494
        larm.BrickColor = BrickColor.new("Bright red")
1495
        rarm.BrickColor = BrickColor.new("Bright red")
1496
        if Debounces.CanAttack == true then
1497
        Debounces.CanAttack = false
1498
        Debounces.on = true
1499
        Debounces.NoIdl = true
1500
to = char.Absolution.Thingy2.Touched:connect(function(ht)
1501
        hit = ht.Parent
1502
        if ht and hit:IsA("Model") then
1503
                if hit:FindFirstChild("Humanoid") then
1504
                    if hit.Name ~= p.Name then
1505
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
1506
                                Debounces.Slashed = true]]--
1507
                                    hit:FindFirstChild("Humanoid"):TakeDamage(10)
1508
                                wait(1)
1509
                                --Debounces.Slashed = false
1510
                        --end
1511
                    end
1512
                end
1513
        elseif ht and hit:IsA("Hat") then
1514
            if hit.Parent.Name ~= p.Name then
1515
                if hit.Parent:FindFirstChild("Humanoid") then
1516
                       --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
1517
                                Debounces.Slashed = true]]--
1518
                                hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
1519
                                wait(1)
1520
                    --Debounces.Slashed = false
1521
                end
1522
            end
1523
        end    
1524
    end)
1525
q = Instance.new("Sound",hed)
1526
q.SoundId = "http://www.roblox.com/asset/?id=134012322"
1527
q.Pitch = 0.85
1528
q.Looped = false
1529
q1 = Instance.new("Sound",hed)
1530
q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
1531
q1.Pitch = 0.85
1532
q1.Looped = false
1533
q:Play()
1534
q1:Play()
1535
    for i = 1,20 do
1536
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
1537
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
1538
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
1539
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
1540
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
1541
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
1542
        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.5)
1543
        if Debounces.on == false then break end
1544
    wait()
1545
end
1546
n = Instance.new("Sound",hed)
1547
n.SoundId = "http://www.roblox.com/asset/?id=168514932"
1548
n.Pitch = 0.94
1549
n.Looped = false
1550
n1 = Instance.new("Sound",hed)
1551
n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
1552
n1.Pitch = 0.94
1553
n1.Looped = false
1554
n:Play()
1555
n1:Play()
1556
b = Instance.new("Sound",hed)
1557
b.SoundId = "http://www.roblox.com/asset/?id=168586586"
1558
b.Pitch = 0.94
1559
b.Looped = false
1560
b1 = Instance.new("Sound",hed)
1561
b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
1562
b1.Pitch = 0.94
1563
b1.Looped = false
1564
b:Play()
1565
b1:Play()
1566
    for i = 1,26 do
1567
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.5)
1568
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.5)
1569
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.5)
1570
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.5)
1571
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.5)
1572
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.5)
1573
        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.5)
1574
        if Debounces.on == false then break end
1575
    wait()
1576
end
1577
wait(.5)
1578
to:disconnect()
1579
q:Destroy()
1580
q1:Destroy()
1581
n:Destroy()
1582
n1:Destroy()
1583
larm.BrickColor = BrickColor.new("Really black")
1584
rarm.BrickColor = BrickColor.new("Really black")
1585
    if Debounces.CanAttack == false then
1586
        Debounces.CanAttack = true
1587
        Debounces.on = false
1588
        Debounces.NoIdl = false
1589
            end
1590
        end
1591
    end
1592
end)
1593
----------------------------------------------------
1594
mouse.KeyDown:connect(function(key)
1595
    if key == "q" then
1596
        larm.BrickColor = BrickColor.new("Bright red")
1597
        rarm.BrickColor = BrickColor.new("Bright red")
1598
        if Debounces.CanAttack == true then
1599
        Debounces.CanAttack = false
1600
        Debounces.on = true
1601
        Debounces.NoIdl = true
1602
to = char.Absolution.Thingy2.Touched:connect(function(ht)
1603
        hit = ht.Parent
1604
        if ht and hit:IsA("Model") then
1605
                if hit:FindFirstChild("Humanoid") then
1606
                    if hit.Name ~= p.Name then
1607
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
1608
                                Debounces.Slashed = true]]--
1609
                                    hit:FindFirstChild("Humanoid"):TakeDamage(4)
1610
                                wait(1)
1611
                                --Debounces.Slashed = false
1612
                        --end
1613
                    end
1614
                end
1615
        elseif ht and hit:IsA("Hat") then
1616
            if hit.Parent.Name ~= p.Name then
1617
                if hit.Parent:FindFirstChild("Humanoid") then
1618
                       --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
1619
                                Debounces.Slashed = true]]--
1620
                                hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
1621
                                wait(1)
1622
                    --Debounces.Slashed = false
1623
                end
1624
            end
1625
        end    
1626
    end)
1627
        for i = 1, 20 do
1628
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2)
1629
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2)
1630
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
1631
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
1632
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
1633
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
1634
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
1635
        if Debounces.on == false then break end
1636
        wait()
1637
    end
1638
    z = Instance.new("Sound",hed)
1639
    z.SoundId = "rbxassetid://160069154"
1640
    z.Looped = false
1641
    z.Pitch = .9
1642
    z1 = Instance.new("Sound",hed)
1643
    z1.SoundId = "rbxassetid://160069154"
1644
    z1.Looped = false
1645
    z1.Pitch = .9
1646
    wait(0.01)
1647
    z:Play()
1648
    z1:Play()
1649
        for i = 1, 12 do
1650
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2)
1651
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5)
1652
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
1653
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5)
1654
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
1655
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
1656
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
1657
        if Debounces.on == false then break end
1658
        wait()
1659
    end
1660
        for i = 1, 12 do
1661
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4)
1662
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4)
1663
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
1664
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
1665
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
1666
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
1667
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
1668
        if Debounces.on == false then break end
1669
        wait()
1670
    end
1671
    z = Instance.new("Sound",hed)
1672
    z.SoundId = "rbxassetid://168586621"
1673
    z.Looped = false
1674
    z.Pitch = 1
1675
    z1 = Instance.new("Sound",hed)
1676
    z1.SoundId = "rbxassetid://168586621"
1677
    z1.Looped = false
1678
    z1.Pitch = 1
1679
    wait(0.01)
1680
    z:Play()
1681
    z1:Play()
1682
        for i = 1, 12 do
1683
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5)
1684
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4)
1685
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
1686
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
1687
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
1688
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
1689
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1)
1690
        if Debounces.on == false then break end
1691
        wait()
1692
    end
1693
to:disconnect()
1694-
            hum.WalkSpeed = 7
1694+
1695
rarm.BrickColor = BrickColor.new("Really black")
1696
    if Debounces.CanAttack == false then
1697
        Debounces.CanAttack = true
1698
        Debounces.on = false
1699
        Debounces.NoIdl = false
1700
            end
1701
        end
1702
    end
1703
end)
1704
----------------------------------------------------
1705
Sit = false
1706
mouse.KeyDown:connect(function(key)
1707
    if key == "v" then
1708
        if Sit == false then
1709
            Sit = true
1710
            hum.WalkSpeed = 0.001
1711
        stanceToggle = "Sitting"
1712
    elseif Sit == true then
1713
        Sit = false
1714
            hum.WalkSpeed = 30
1715
        stanceToggle = "Normal"
1716
        end
1717
    end
1718
end)
1719
----------------------------------------------------
1720
mouse.KeyDown:connect(function(key)
1721
    if key == "t" then
1722
        if Debounces.CanAttack == true then
1723
        Debounces.CanAttack = false
1724
        Debounces.on = true
1725
        Debounces.NoIdl = true
1726
        for i = 1, 20 do
1727
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) *  CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
1728
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) *  CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
1729
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
1730
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
1731
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
1732
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
1733
        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
1734
            if Debounces.on == false then break end
1735
            wait()
1736
        end
1737
        Spawn(function()
1738
            local Parts = {}
1739
            for Y = -5,5 do
1740
                local P = Instance.new("Part",char)
1741
                P.Anchored = true
1742
                P.FormFactor = "Custom"
1743
                P.CanCollide = false
1744
                P.Size = Vector3.new(1,2,1)
1745
                P.TopSurface = "SmoothNoOutlines"
1746
                P.BottomSurface = "SmoothNoOutlines"
1747
                P.BrickColor = BrickColor.new("Really black")
1748
                P.Name = tostring(Y)
1749
                local i = (Y+5)/(10)
1750
                i = 1-math.cos(math.pi*i-(math.pi/2))
1751
                P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
1752
                --[[P.Touched:connect(function(ht)
1753
                    local hit = ht.Parent
1754
                    if hit:FindFirstChild("Humanoid") then
1755
                        hit.Humanoid:TakeDamage(math.random(20,50))
1756
                    end
1757
                end)]]--
1758
        s = Instance.new("Sound",P)
1759
        s.SoundId = "rbxassetid://228343271"
1760
        s.Volume = .7
1761
        s.Pitch = 0.9
1762
        s:Play()
1763
P.Touched:connect(function(ht)
1764
        hit = ht.Parent
1765
        if ht and hit:IsA("Model") then
1766
                if hit:FindFirstChild("Humanoid") then
1767
                    if hit.Name ~= p.Name then
1768
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
1769
                                Debounces.Slashed = true]]--
1770
                                    hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
1771
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
1772
                                wait(1)
1773
                                --Debounces.Slashed = false
1774
                        --end
1775
                end
1776
                end
1777
        elseif ht and hit:IsA("Hat") then
1778
            if hit.Parent.Name ~= p.Name then
1779
                if hit.Parent:FindFirstChild("Humanoid") then
1780
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
1781
                                Debounces.Slashed = true]]--
1782
                                hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
1783
                                hit:FindFirstChild("Humanoid").PlatformStand = true
1784
                                wait(1)
1785
                    --Debounces.Slashed = false
1786
                --end
1787
            end
1788
        end
1789
    end
1790
end)
1791
                Parts[#Parts+1] = P
1792
            end
1793
            local BREAKIT = false
1794
            local CParts = {}
1795
            local Rocks = {}
1796
            local LastPos = nil
1797
            for i = 1,70 do
1798
                for i2,v in pairs(Parts) do
1799
                    v.CFrame = v.CFrame*CFrame.new(0,0,-4)
1800
                    local cf = v.CFrame
1801
                    v.Size = v.Size+Vector3.new(0.4,0.35,0)
1802
                    v.CFrame = cf
1803
                    v.Transparency = v.Transparency+0.02
1804
                    if v.Transparency >= 0.975 then BREAKIT = true end
1805
                    if v.Name == "0" then
1806
                        local Ignore = {}
1807
                        for i,v in pairs(game:GetService("Players"):GetPlayers()) do
1808
                            if v.Character ~= nil then
1809
                                Ignore[#Ignore+1] = v.Character
1810
                            end
1811
                        end
1812
                        local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
1813
                        local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
1814
                        if Hit ~= nil then
1815
                            if #Rocks == 0 then
1816
                                for i = 1,5 do
1817
                                    local P = Instance.new("Part",char)
1818
                                    Rocks[#Rocks+1] = P
1819
                                    P.Anchored = true
1820
                                    P.FormFactor = "Custom"
1821
                                    P.BrickColor = Hit.BrickColor
1822
                                    P.Material = Hit.Material
1823
                                    P.TopSurface = "Smooth"
1824
                                    P.BottomSurface = "Smooth"
1825
                                    P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
1826
                                end
1827
                            end
1828
                            for i,P in pairs(Rocks) do
1829
                                P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
1830
                            end
1831
                            local P = Instance.new("Part",char)
1832
                            CParts[#CParts+1] = {P,tick()}
1833
                            P.Anchored = true
1834
                            P.FormFactor = "Custom"
1835
                            P.BrickColor = Hit.BrickColor
1836
                            P.Material = Hit.Material
1837
                            P.TopSurface = "Smooth"
1838
                            P.BottomSurface = "Smooth"
1839
                            P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
1840
                            Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
1841
                            Pos = Pos.p
1842
                            P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
1843
                            local P = P:Clone()
1844
                            CParts[#CParts+1] = {P,tick()}
1845
                            P.Parent = char
1846
                            Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
1847
                            Pos = Pos.p
1848
                            P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
1849
                            if LastPos ~= nil then
1850
                                local P = P:Clone()
1851
                                CParts[#CParts+1] = {P,tick()}
1852
                                P.Parent = char
1853
                                P.BrickColor = BrickColor.new("Really black")
1854
                                Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
1855
                                Pos = Pos.p
1856
                                local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
1857
                                P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
1858
                                --P.Velocity = Vector3.new(0,-1000,0)
1859
                                P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
1860
                            end
1861
                            LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
1862
                        end
1863
                    end
1864
                end
1865
                if BREAKIT then break end
1866
                wait(0.002)
1867
            end
1868
            for i,v in pairs(Rocks) do
1869
                CParts[#CParts+1] = {v,tick()}
1870
            end
1871
            for i,v in pairs(Parts) do
1872
                v:Destroy()
1873
            end
1874
            Parts = nil
1875
            while true do
1876
                local t = tick()
1877
                local p = nil
1878
                for i,v in pairs(CParts) do
1879
                    if t-v[2] > 4 then
1880
                        v[1].Transparency = v[1].Transparency+0.05
1881
                        if v[1].Transparency >= 1 then
1882
                            v[1]:Destroy()
1883
                            CParts[i] = nil
1884
                        end
1885
                    end
1886
                    p = v
1887
                end
1888
                if p == nil then break end
1889
                wait(0.002)
1890
            end
1891
            for i,v in pairs(CParts) do
1892
                v:Destroy()
1893
            end
1894
            CParts = {}
1895
        end)
1896
        for i = 1, 20 do
1897
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) *   CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
1898
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) *   CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
1899
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
1900
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
1901
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
1902
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
1903
        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
1904
            if Debounces.on == false then break end
1905
            wait()
1906
        end
1907
    if Debounces.CanAttack == false then
1908
        Debounces.CanAttack = true
1909
        Debounces.on = false
1910
        Debounces.NoIdl = false
1911
            end
1912
        end
1913
    end
1914
end)
1915
----------------------------------------------------
1916
mouse.KeyDown:connect(function(key)
1917
    if key == "e" then
1918
    larm.BrickColor = BrickColor.new("Bright red")
1919
    rarm.BrickColor = BrickColor.new("Bright red")
1920
        if Debounces.CanAttack == true then
1921
        Debounces.CanAttack = false
1922
        Debounces.on = true
1923
        Debounces.NoIdl = true
1924
        for i = 1, 18 do
1925
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
1926
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
1927
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
1928
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
1929
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
1930
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
1931
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
1932
        if Debounces.on == false then break end
1933
            wait()
1934
        end
1935
        local HandCF = CFrame.new(char.Absolution.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
1936
        local rng = Instance.new("Part", char.Absolution.Handle)
1937
        rng.Anchored = true
1938
        rng.BrickColor = BrickColor.new("Really black")
1939
        rng.CanCollide = true
1940
        rng.FormFactor = 3
1941
        rng.Name = "Ring"
1942
        rng.Size = Vector3.new(1, 1, 1)
1943
        rng.CanCollide = false
1944
        rng.Transparency = 0.35
1945
        rng.TopSurface = 0
1946
        rng.BottomSurface = 0
1947
        rng.CFrame = HandCF
1948
        local rngm = Instance.new("SpecialMesh", rng)
1949
        rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
1950
        rngm.Scale = Vector3.new(1, 1, 2)
1951
            x = Instance.new("Sound", hed)
1952
            x.SoundId = "http://www.roblox.com/asset/?id=169445602"
1953
            x.Looped = false
1954
            x.Pitch = .7
1955
            x.Volume = 1
1956
            x1 = Instance.new("Sound", hed)
1957
            x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
1958
            x1.Looped = false
1959
            x1.Pitch = .7
1960
            x1.Volume = 1
1961
            x:Play()
1962
            x1:Play()
1963
            rngto = rng.Touched:connect(function(ht)
1964
            hit = ht.Parent
1965
            if ht and hit:IsA("Model") then
1966
                    if hit:FindFirstChild("Humanoid") then
1967
                        if hit.Name ~= p.Name then
1968
                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
1969
                                    Debounces.Slashed = true]]--
1970
                                    hit:FindFirstChild("Humanoid"):TakeDamage(4)
1971
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
1972
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
1973
                                    --Debounces.Slashed = false
1974
                            --end
1975
                        end
1976
                    end
1977
            elseif ht and hit:IsA("Hat") then
1978
                if hit.Parent.Name ~= p.Name then
1979
                    if hit.Parent:FindFirstChild("Humanoid") then
1980
                           --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
1981
                                    Debounces.Slashed = true]]--
1982
                                    hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
1983
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
1984
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
1985
                        --Debounces.Slashed = false
1986
                    end
1987
                end
1988
            end    
1989
        end)
1990
                coroutine.wrap(function()
1991
                for i = 1, 60, 2 do
1992
                rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
1993
                rng.Size = rngm.Scale
1994
                rng.CFrame = HandCF
1995
                rng.Transparency = i/60
1996
                wait()
1997
                end
1998
                wait()
1999
                rng:Destroy()
2000
                end)()
2001
        for i = 1, 18 do
2002
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
2003
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
2004
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
2005
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
2006
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
2007
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
2008
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
2009
        if Debounces.on == false then break end
2010
            wait()
2011
        end
2012
        larm.BrickColor = BrickColor.new("Really black")
2013
        rarm.BrickColor = BrickColor.new("Really black")
2014
        x:Destroy()
2015
        x1:Destroy()
2016
    if Debounces.CanAttack == false then
2017
        Debounces.CanAttack = true
2018
        Debounces.on = false
2019
        Debounces.NoIdl = false
2020
            end
2021
        end
2022
    end
2023
end)
2024
----------------------------------------------------
2025
mouse.KeyDown:connect(function(key)
2026
	if key == "y" then
2027
		if Debounces.CanAttack == true then
2028
            Debounces.CanAttack = false
2029
            Debounces.on = true
2030
            Debounces.NoIdl = true
2031
				for i = 1, 15 do
2032
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
2033
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.2)
2034
					hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
2035
					torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
2036
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
2037
					rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
2038
					cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
2039
                    if Debounces.on == false then break end
2040
                    wait()
2041
                end
2042
				x = Instance.new("Sound",char)
2043
				x.SoundId = "rbxassetid://228343271"
2044
				x.Pitch = 1
2045
				x.Volume = .8
2046
				wait(.1)
2047
				x:Play()
2048
				Debounces.on = false
2049
				Debounces.Here = false
2050
				shot = shot + 1
2051
local rng = Instance.new("Part", char)
2052
rng.Anchored = true
2053
rng.BrickColor = BrickColor.new("Really black")
2054
rng.CanCollide = false
2055
rng.FormFactor = 3
2056
rng.Name = "Ring"
2057
rng.Size = Vector3.new(1, 1, 1)
2058
rng.Transparency = 0.35
2059
rng.TopSurface = 0
2060
rng.BottomSurface = 0
2061
rng2 = rng:clone()
2062
rng3 = rng2:clone()
2063
rng4 = rng2:clone()
2064
local rngm = Instance.new("SpecialMesh", rng)
2065
rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
2066
rngm.Scale = Vector3.new(10, 10, 1)
2067
rngm2 = rngm:clone()
2068
rngm2.Scale = Vector3.new(5, 5, 1)
2069
rngm3=rngm2:clone()
2070
rngm3.Parent = rng3
2071
rngm3.Scale = Vector3.new(8, 8, 1)
2072
rngm4 = rngm2:clone()
2073
rngm4.Parent = rng4
2074
rngm4.Scale = Vector3.new(6, 6, 1)
2075
local bem = Instance.new("Part", char)
2076
bem.Anchored = true
2077
bem.BrickColor = BrickColor.new("Really black")
2078
bem.CanCollide = false
2079
bem.FormFactor = 3
2080
bem.Name = "Beam" .. shot
2081
bem.Size = Vector3.new(1, 1, 1)
2082
bem.Transparency = 0.35
2083
bem.TopSurface = 0
2084
bem.BottomSurface = 0
2085
local bemm = Instance.new("SpecialMesh", bem)
2086
bemm.MeshType = 4
2087
bemm.Scale = Vector3.new(1, 4, 4)
2088
local out = Instance.new("Part", char)
2089
out.Anchored = true
2090
out.BrickColor = BrickColor.new("Really black")
2091
out.CanCollide = false
2092
out.FormFactor = 3
2093
out.Name = "Out"
2094
out.Size = Vector3.new(4, 4, 4)
2095
out.Transparency = 0.35
2096
out.TopSurface = 0
2097
out.BottomSurface = 0
2098
local outm = Instance.new("SpecialMesh", out)
2099
outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
2100
outm.Scale = Vector3.new(4, 4, 4)
2101
local bnd = Instance.new("Part", char)
2102
bnd.Anchored = true
2103
bnd.BrickColor = BrickColor.new("Really black")
2104
bnd.CanCollide = false
2105
bnd.FormFactor = 3
2106
bnd.Name = "Bend"
2107
bnd.Size = Vector3.new(1, 1, 1)
2108
bnd.Transparency = 1
2109
bnd.TopSurface = 0
2110
bnd.BottomSurface = 0
2111
local bndm = Instance.new("SpecialMesh", bnd)
2112
bndm.MeshType = 3
2113
bndm.Scale = Vector3.new(8, 8, 8)
2114
out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
2115
bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
2116
bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
2117
rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
2118
rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
2119
rng4.CFrame = rng3.CFrame * CFrame.new(0, -.5, 0)
2120
Debounces.Shewt = true
2121
coroutine.wrap(function()
2122
for i = 1, 20, 0.2 do
2123
rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
2124
rngm3.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
2125
rngm4.Scale = Vector3.new(6 + i*2, 6 + i*2, 1)
2126
rng.Transparency = i/20
2127
rng3.Transparency = 1/16
2128
rng4.Transparency = i/12
2129
wait()
2130
end
2131
wait()
2132
rng:Destroy()
2133
end)()
2134
if Debounces.Shewt == true then
2135
char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
2136
hit = ht.Parent
2137
if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
2138
if HasntTouched(hit.Name) == true and deb == false then
2139
deb = true
2140
coroutine.wrap(function()
2141
hit:FindFirstChild("Humanoid").PlatformStand = true
2142
hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
2143
hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
2144
end)()
2145
table.insert(Touche, hit.Name)
2146
deb = false
2147
end
2148
elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
2149
if HasntTouched(hit.Parent.Name) == true and deb == false then
2150
deb = true
2151
coroutine.wrap(function()
2152
hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
2153
hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
2154
wait(1)
2155
hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
2156
end)()
2157
table.insert(Touche, hit.Parent.Name)
2158
deb = false
2159
for i, v in pairs(Touche) do
2160
print(v)
2161
end
2162
end
2163
end
2164
end)
2165
end
2166
for i = 0, 260, 8 do
2167
bem.Size = Vector3.new(i, 2, 2)
2168
bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
2169
bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
2170
bnd.Size = Vector3.new(1,1,1)
2171
bndm.Scale = Vector3.new(8,8,8)
2172
if i % 10 == 0 then
2173
local newRng = rng2:Clone()
2174
newRng.Parent = char
2175
newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
2176
local newRngm = rngm2:clone()
2177
newRngm.Parent=newRng
2178
coroutine.wrap(function()
2179
for i = 1, 10, 0.2 do
2180
newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
2181
newRng.Transparency = i/10
2182
wait()
2183
end
2184
wait()
2185
newRng:Destroy()
2186
end)()
2187
end
2188
wait()
2189
end
2190
wait()
2191
Debounces.Shewt = false
2192
bem:Destroy()
2193
out:Destroy()
2194
bnd:Destroy()
2195
Debounces.Ready = false
2196
for i, v in pairs(Touche) do
2197
table.remove(Touche, i)
2198
end
2199
wait()
2200
table.insert(Touche, char.Name)
2201
Debounces.NoIdl = false
2202
if Debounces.CanAttack == false then
2203
Debounces.CanAttack = true
2204
end
2205
end
2206
end
2207
end)
2208
----------------------------------------------------
2209
sidz = {"231917888", "231917845", "231917806"}
2210
ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
2211
mouse.KeyDown:connect(function(key)
2212
    if key == "f" then
2213
    larm.BrickColor = BrickColor.new("Bright red")
2214
    rarm.BrickColor = BrickColor.new("Bright red")
2215
        if Debounces.CanAttack == true then
2216
            Debounces.CanAttack = false
2217
            Debounces.on = true
2218
            Debounces.NoIdl = true
2219
                for i = 1, 10 do
2220
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.4)
2221
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.4)
2222
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
2223
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
2224
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
2225
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
2226
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
2227
                    if Debounces.on == false then break end
2228
                    wait()
2229
                end
2230
                z = Instance.new("Sound",char)
2231
                z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
2232
                z.Pitch = ptz[math.random(1,#ptz)]
2233
                z.Volume = 1
2234
                z1 = Instance.new("Sound",char)
2235
                z1.SoundId = z.SoundId
2236
                z1.Pitch = z.Pitch
2237
                z1.Volume = 1
2238
                wait(1)
2239
                z:Play()
2240
                z1:Play()
2241
                Stomp()
2242
                for i = 1, 20 do
2243
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.6)
2244
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.6)
2245
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
2246
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.6)
2247
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
2248
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
2249
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
2250
                    if Debounces.on == false then break end
2251
                    wait()
2252
                end
2253
        if Debounces.CanAttack == false then
2254
            Debounces.CanAttack = true
2255
            Debounces.on = false
2256
            Debounces.NoIdl = false
2257
            larm.BrickColor = BrickColor.new("Really black")
2258
            rarm.BrickColor = BrickColor.new("Really black")
2259
            end
2260
        end
2261
    end
2262
end)    
2263
----------------------------------------------------
2264
mouse.KeyDown:connect(function(key)
2265
    if key == "g" then
2266
    larm.BrickColor = BrickColor.new("Bright red")
2267
    rarm.BrickColor = BrickColor.new("Bright red")
2268
        if Debounces.CanAttack == true then
2269
        Debounces.CanAttack = false
2270
        Debounces.on = true
2271
        Debounces.NoIdl = true
2272
        chrg = lleg.Touched:connect(function(ht)
2273
        hit = ht.Parent
2274
            if ht and hit:IsA("Model") then
2275
                    if hit:FindFirstChild("Humanoid") then
2276
                        if hit.Name ~= p.Name then
2277
                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
2278
                                    Debounces.Slashed = true]]--
2279
                                    hit:FindFirstChild("Humanoid"):TakeDamage(2)
2280
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
2281
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
2282
                                    --Debounces.Slashed = false
2283
                            --end
2284
                        end
2285
                    end
2286
            elseif ht and hit:IsA("Hat") then
2287
                if hit.Parent.Name ~= p.Name then
2288
                    if hit.Parent:FindFirstChild("Humanoid") then
2289
                           --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
2290
                                    Debounces.Slashed = true]]--
2291
                                    hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
2292
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
2293
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
2294
                        --Debounces.Slashed = false
2295
                    end
2296
                end
2297
            end    
2298
        end)
2299
        for i = 1, 14 do
2300
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.5)
2301
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.5)
2302
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.5)
2303
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
2304
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
2305
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
2306
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
2307
            if Debounces.on == false then break end
2308
            wait()
2309
        end
2310
        charge()
2311
        z = Instance.new("Sound",char)
2312
        z.SoundId = "rbxassetid://200632875"
2313
        z.Volume = 1
2314
        z.Pitch = .8
2315
        z1 = Instance.new("Sound",char)
2316
        z1.SoundId = "rbxassetid://200632875"
2317
        z1.Volume = 1
2318
        z1.Pitch = .9
2319
        z:Play()
2320
        z1:Play()
2321
        wait(1)
2322
        z:Destroy()
2323
        z1:Destroy()
2324
        chrg:disconnect()
2325
        if Debounces.CanAttack == false then
2326
            Debounces.CanAttack = true
2327
            Debounces.on = false
2328
            Debounces.NoIdl = false
2329
            larm.BrickColor = BrickColor.new("Really black")
2330
            rarm.BrickColor = BrickColor.new("Really black")
2331
            end
2332
        end
2333
    end
2334
end)
2335
----------------------------------------------------
2336
pt = {0.7, 0.8, 0.9}
2337
mouse.KeyDown:connect(function(key)
2338
    if key == "h" then
2339
        if Debounces.CanJoke == true then
2340
            Debounces.CanJoke = false
2341
            u = Instance.new("Sound")
2342
            u.SoundId = "http://www.roblox.com/asset/?id=138199573"
2343
            u.Parent = char
2344
            u.Looped = false
2345
            u.Pitch = pt[math.random(1,#pt)]
2346
            u.Volume = 1
2347
            u2 = Instance.new("Sound")
2348
            u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
2349
            u2.Parent = char
2350
            u2.Looped = false
2351
            u2.Pitch = u.Pitch
2352
            u2.Volume = 1
2353
            wait(.01)
2354
            u:Play()
2355
            u2:Play()
2356
            wait(6)
2357
            u:Destroy()
2358
            u2:Destroy()
2359
            if Debounces.CanJoke == false then
2360
                Debounces.CanJoke = true
2361
            end
2362
        end
2363
    end
2364
end)
2365
----------------------------------------------------
2366
mouse.KeyDown:connect(function(key)
2367
    if key == "j" then
2368
			if Debounces.CanJoke == true then
2369
				Debounces.CanJoke = false
2370
                z = Instance.new("Sound",char)
2371
                z.SoundId = "rbxassetid://135017755"
2372
                z.Pitch = .76
2373
                z.Volume = 1
2374
				wait()
2375
				z:Play()
2376
				wait(6)
2377
				z:Destroy()
2378
			if Debounces.CanJoke == false then
2379
				Debounces.CanJoke = true
2380
			end
2381
		end
2382
	end
2383
end)
2384
----------------------------------------------------
2385
mouse.KeyDown:connect(function(key)
2386
    if key == "k" then
2387
			if Debounces.CanJoke == true then
2388
				Debounces.CanJoke = false
2389
                z = Instance.new("Sound",char)
2390
                z.SoundId = "rbxassetid://135017578"
2391
                z.Pitch = .76
2392
                z.Volume = 1
2393
				wait()
2394
				z:Play()
2395
				wait(4)
2396
				z:Destroy()
2397
			if Debounces.CanJoke == false then
2398
				Debounces.CanJoke = true
2399
			end
2400
		end
2401
	end
2402
end)
2403
----------------------------------------------------
2404
mouse.KeyDown:connect(function(key)
2405
    if key == "x" then
2406
        if Debounces.CanAttack == true then
2407
            Debounces.CanAttack = false
2408
            Debounces.NoIdl = true
2409
            Debounces.on = true
2410
            Debounces.ks = true
2411
        for i = 1, 10 do
2412
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.6)
2413
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.6)
2414
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
2415
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.6)
2416
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.6)
2417
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.6)
2418
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
2419
            if Debounces.on == false then break end
2420
            wait()
2421
        end
2422
        z = Instance.new("Sound",hed)
2423
        z.SoundId = "rbxassetid://169445092"
2424
        z.Volume = 1
2425
        wait(0.1)
2426
        z:Play()
2427
        kik = rleg.Touched:connect(function(ht)
2428
        hit = ht.Parent
2429
            if ht and hit:IsA("Model") then
2430
                    if hit:FindFirstChild("Humanoid") then
2431
                        if hit.Name ~= p.Name then
2432
                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
2433
                                    Debounces.Slashed = true]]--
2434
                                    if Debounces.ks==true then
2435
                                    z = Instance.new("Sound",hed)
2436
                                    z.SoundId = "rbxassetid://169380525"
2437
                                    z.Volume = 1
2438
                                    z:Play()
2439
                                    Debounces.ks=false
2440
                                    end
2441
                                    hit:FindFirstChild("Humanoid"):TakeDamage(2)
2442
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
2443
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
2444
                            --Debounces.Slashed = false
2445
                        --end
2446
                    end
2447
                end
2448
            elseif ht and hit:IsA("Hat") then
2449
                if hit.Parent.Name ~= p.Name then
2450
                    if hit.Parent:FindFirstChild("Humanoid") then
2451
                           --[[if Debounces.Slashing == true and Debounces.Slashed == false then
2452
                                    Debounces.Slashed = true]]--
2453
                                    hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
2454
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
2455
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
2456
                            --Debounces.Slashed = false
2457
                        --end
2458
                    end
2459
                end
2460
            end    
2461
        end)
2462
        for i = 1, 8 do
2463
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
2464
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.7)
2465
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.7)
2466
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.7)
2467
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
2468
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.7)
2469
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
2470
            if Debounces.on == false then break end
2471
            wait()
2472
        end
2473
        kik:disconnect()
2474
        if Debounces.CanAttack == false then
2475
            Debounces.CanAttack = true
2476
            Debounces.on = false
2477
            Debounces.NoIdl = false
2478
            end
2479
        end
2480
    end
2481
end)
2482
----------------------------------------------------
2483
mouse.KeyDown:connect(function(key)
2484
    if key == "c" then
2485
        if Debounces.CanAttack == true then
2486
            Debounces.CanAttack = false
2487
            Debounces.NoIdl = true
2488
            Debounces.on = true
2489
            SIDZ = {"231917744", "231917742"}
2490
            PTZ = {0.7, 0.8, 0.9, 1}
2491
                for i = 1, 20 do
2492
                    wait()
2493
                        for i,v in pairs(char.Absolution:children()) do
2494
                    if v:IsA("Part") or v:IsA("WedgePart") then
2495
                        v.Transparency = v.Transparency + 0.05
2496
                        end
2497
                    end
2498
                end
2499
                function FindNearestTorso(Position,Distance,SinglePlayer)
2500
                    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
2501
                        local List = {}
2502
                        for i,v in pairs(workspace:GetChildren())do
2503
                            if v:IsA("Model")then
2504
                                if v:findFirstChild("Torso")then
2505
                                    if v ~= char then
2506
                                        if(v.Torso.Position -Position).magnitude <= Distance then
2507
                                            table.insert(List,v)
2508
                                        end 
2509
                                    end 
2510
                                end 
2511
                            end 
2512
                        end
2513
                    return List
2514
                end
2515
                GroundPound()
2516
                for i = 1, 5 do
2517
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
2518
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
2519
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
2520
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
2521
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
2522
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
2523
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
2524
                    if Debounces.on == false then break end
2525
                    wait()
2526
                end
2527
                GroundPound()
2528
                for i = 1, 5 do
2529
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
2530
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
2531
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
2532
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
2533
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
2534
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
2535
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
2536
                    if Debounces.on == false then break end
2537
                    wait()
2538
                end
2539
                GroundPound()
2540
                for i = 1, 5 do
2541
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
2542
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
2543
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
2544
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
2545
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
2546
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
2547
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
2548
                    if Debounces.on == false then break end
2549
                    wait()
2550
                end
2551
                GroundPound()
2552
                for i = 1, 5 do
2553
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
2554
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
2555
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
2556
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
2557
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
2558
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
2559
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
2560
                    if Debounces.on == false then break end
2561
                    wait()
2562
                end
2563
                GroundPound()
2564
                for i = 1, 5 do
2565
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
2566
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
2567
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
2568
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
2569
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
2570
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
2571
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
2572
                    if Debounces.on == false then break end
2573
                    wait()
2574
                end
2575
                GroundPound()
2576
                for i = 1, 5 do
2577
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
2578
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
2579
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
2580
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
2581
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
2582
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
2583
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
2584
                    if Debounces.on == false then break end
2585
                    wait()
2586
                end
2587
                for i = 1, 18 do
2588
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.4)
2589
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.4)
2590
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
2591
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
2592
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
2593
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
2594
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
2595
                    if Debounces.on == false then break end
2596
                    wait()
2597
                end
2598
                for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
2599
                    if v:FindFirstChild('Humanoid') then
2600
                        v.Humanoid:TakeDamage(math.random(20,60))
2601
                        v.Humanoid.PlatformStand = true
2602
                        v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
2603
                    end
2604
                end
2605
                x = Instance.new("Sound",char)
2606
                x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
2607
                x.Pitch = PTZ[math.random(1,#PTZ)]
2608
                x.Volume = 1
2609
                wait(0.1)
2610
                x:Play()
2611
                Crater(hed,20)
2612
                for i = 1, 14 do
2613
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(-10)), 0.6)
2614
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(10)), 0.6)
2615
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
2616
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
2617
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
2618
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
2619
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
2620
                    if Debounces.on == false then break end
2621
                    wait()
2622
                end
2623
            if Debounces.CanAttack == false then
2624
                Debounces.CanAttack = true
2625
                Debounces.on = false
2626
                Debounces.NoIdl = false
2627
                for i = 1, 20 do
2628
                    wait()
2629
                        for i,v in pairs(char.Absolution:children()) do
2630
                    if v:IsA("Part") or v:IsA("WedgePart") then
2631
                        v.Transparency = v.Transparency - 0.05
2632
                        end
2633
                    end
2634
                end
2635
            end
2636
        end
2637
    end
2638
end)
2639
----------------------------------------------------176349813
2640
mouse.KeyDown:connect(function(key)
2641
    if key == "b" then
2642
        hum.WalkSpeed = 0.01
2643
        if Debounces.CanAttack == true then
2644
            Debounces.CanAttack = false
2645
            Debounces.NoIdl = true
2646
            Debounces.on = true
2647
            for i = 1,20 do
2648
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
2649
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
2650
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
2651
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
2652
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
2653
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
2654
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
2655
            if Debounces.on == false then break end
2656
            wait()
2657
            end
2658
        wait(1)
2659
        v = Instance.new("Sound")
2660
        v.SoundId = "rbxassetid://181384451"
2661
        v.Parent = char
2662
        v.Looped = false
2663
        v.Pitch = 1.04
2664
        v.Volume = 1
2665
        wait(.01)
2666
        v:Play()
2667
        
2668
        if Daytime == true then
2669
            Daytime = false
2670
            l.TimeOfDay = 24
2671
        else
2672
            Daytime = true
2673
            l.TimeOfDay = 12
2674
            l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
2675
        end
2676
        
2677
            local Shockwave = function()
2678
                local rng1 = Instance.new("Part", char)
2679
                rng1.Anchored = true
2680
                rng1.BrickColor = BrickColor.new("Really black")
2681
                rng1.CanCollide = false
2682
                rng1.FormFactor = 3
2683
                rng1.Name = "Ring"
2684
                rng1.Size = Vector3.new(1, 1, 1)
2685
                rng1.Transparency = 0.35
2686
                rng1.TopSurface = 0
2687
                rng1.BottomSurface = 0
2688
                local rngm1 = Instance.new("SpecialMesh", rng)
2689
                rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
2690
                rngm1.Scale = Vector3.new(10, 10, 1)
2691
                rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
2692
                local Wave = Instance.new("Part", game.Workspace--[[?]])
2693
                Wave.Name = "Shockwave"
2694
                Wave.BrickColor = BrickColor.new("Really black")
2695
                Wave.Size = Vector3.new(1, 1, 1)
2696
                Wave.Shape = "Ball"
2697
                Wave.CanCollide = false
2698
                Wave.Anchored = true
2699
                Wave.TopSurface = 0
2700
                Wave.BottomSurface = 0
2701
                Wave.Touched:connect(function(hit)
2702
                    if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
2703
                        local Occlude = true
2704
                        local NotOccludes = {
2705
                            char.Name;
2706
                            "Wings";
2707
                            "Scythe";
2708
                            "Thingy";
2709
                            "Thingy2"; -- put all of the names in a table pls
2710
                        }
2711
                        for i,v in pairs(NotOccludes) do
2712
                            if hit.Parent.Name == v then
2713
                                Occlude = false
2714
                            end
2715
                        end
2716
                        --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name     ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and     hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
2717
                        if Occlude then
2718
                            hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
2719
                            hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
2720
                        end
2721
                    end
2722
                end)
2723
                
2724
                Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
2725
                
2726
                coroutine.wrap(function()
2727
                    for i = 1, 20, 0.2 do
2728
                        rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
2729
                        rng1.Transparency = i/20
2730
                    wait()
2731
                    end
2732
                    wait()
2733
                    rng1:Destroy()
2734
                end)()
2735
                
2736
                Delay(0, function()
2737
2738
                    if Daytime == false then
2739
                       for i = 1, 50, 1 do
2740
                            Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
2741
                            Wave.CFrame = char.Torso.CFrame
2742
                            local t = i / 50
2743
                            Wave.Transparency = t
2744
                            wait()
2745
                        end
2746
                    else
2747
                        for i = 1, 50, 1 do
2748
                            Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
2749
                            Wave.CFrame = char.Torso.CFrame
2750
                            local t = i / 50
2751
                            Wave.Transparency = t
2752
                            wait()
2753
                        end
2754
                    end
2755
                    Wave:Destroy()
2756
                end)
2757
                Delay(0, function()
2758
                    while wait() do
2759
                        if Wave ~= nil then
2760
                            Wave.CFrame = char.Torso.CFrame
2761
                        else
2762
                            break
2763
                        end
2764
                    end
2765
                end)
2766
            end
2767
        Shockwave() 
2768
        for i = 1, 15 do
2769
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-130)), 0.2)
2770
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(70)), 0.2)
2771
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
2772
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20),     math.rad(0)), 0.2)
2773
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
2774
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
2775
            if Debounces.on == false then break end
2776
            wait()
2777
        end
2778
        for i = 1, 15 do
2779
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-70)), 0.2)
2780
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(130)), 0.2)
2781
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
2782
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20),     math.rad(0)), 0.2)
2783
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
2784
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
2785
            if Debounces.on == false then break end
2786
            wait()
2787
        end
2788
        for i = 1, 15 do
2789
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-130)), 0.2)
2790
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(70)), 0.2)
2791
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
2792
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20),     math.rad(0)), 0.2)
2793
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
2794
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
2795
            if Debounces.on == false then break end
2796
            wait()
2797
        end
2798
        for i = 1, 15 do
2799
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-70)), 0.2)
2800
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(130)), 0.2)
2801
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
2802
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20),     math.rad(0)), 0.2)
2803
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
2804
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
2805
            if Debounces.on == false then break end
2806
            wait()
2807
        end
2808
        for i = 1, 15 do
2809
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-130)), 0.2)
2810-
        hum.WalkSpeed = 5
2810+
2811
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
2812
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20),     math.rad(0)), 0.2)
2813
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
2814
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
2815
            if Debounces.on == false then break end
2816
            wait()
2817
        end
2818
        for i = 1, 15 do
2819
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-70)), 0.2)
2820
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(130)), 0.2)
2821
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
2822
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20),     math.rad(0)), 0.2)
2823
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
2824
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
2825
            if Debounces.on == false then break end
2826
            wait()
2827
        end
2828
        wait(1.4)
2829
        Debounces.NoIdl = false
2830
        hum.WalkSpeed = 30
2831
        Debounces.on = false
2832
        wait()
2833
        if Debounces.CanAttack == false then
2834
            Debounces.CanAttack = true
2835
            v:Destroy()
2836
            end
2837
        end
2838
    end
2839
end)
2840
----------------------------------------------------
2841
mouse.KeyDown:connect(function(key)
2842
    if key == "m" then
2843
hum.WalkSpeed = 0
2844
        if Debounces.CanAttack == true then
2845
        Debounces.CanAttack = false
2846
        Debounces.on = true
2847
        Debounces.NoIdl = true
2848
            --[[x = Instance.new("Sound",char)
2849
            x.SoundId = "http://www.roblox.com/asset/?id=169445572"
2850
            x.Looped = false
2851
            x.Pitch = 1.1
2852
            x.Volume = 1
2853
            x:Play()
2854
            x2 = Instance.new("Sound",char)
2855
            x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
2856
            x2.Looped = false
2857
            x2.Pitch = .7
2858
            x2.Volume = 1
2859
            wait(.1)
2860
            x:Play()
2861
            x2:Play()
2862
        for i = 1, 20 do
2863
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.6,-.2) *CFrame.Angles (math.rad    (45),math.rad(0),math.rad(32)), 0.2)
2864
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1,0)*CFrame.Angles(math.rad     (0),math.rad(0),math.rad(-20)), 0.2)
2865
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad (-    8),math.rad(-40), math.rad(-8)),0.2)
2866
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3.2, 0) * CFrame.Angles  (math.rad    (-50), math.rad(40), math.rad(0)), 0.2)
2867
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, .4, -1.6) * CFrame.Angles  (math.rad    (30), 0, math.rad(20)), 0.2)
2868
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.6, -2, 0) * CFrame.Angles  (math.rad(-    10), math.rad(-40), math.rad(0)), 0.2)
2869
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
2870
            if Debounces.on == false then break end
2871
                wait()
2872
            x:Destroy()
2873
            x2:Destroy()
2874
            end
2875
            wait(1)]]--
2876
        local rng = Instance.new("Part", char)
2877
        rng.Anchored = true
2878
        rng.BrickColor = BrickColor.new("Really black")
2879
        rng.CanCollide = false
2880
        rng.FormFactor = 3
2881
        rng.Name = "Ring"
2882
        rng.Size = Vector3.new(1, 1, 1)
2883
        rng.Transparency = 0.35
2884
        rng.TopSurface = 0
2885
        rng.BottomSurface = 0
2886
        rng.Position = torso.Position - Vector3.new(0,2,0)
2887
        rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
2888
        local rngm = Instance.new("SpecialMesh", rng)
2889
        rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
2890
        rngm.Scale = Vector3.new(1, 1, 2)
2891
            x = Instance.new("Sound",char)
2892
            x.SoundId = "http://www.roblox.com/asset/?id=169445602"
2893
            x.Looped = false
2894
            x.Pitch = .7
2895
            x.Volume = 1
2896
            x:Play()
2897
                coroutine.wrap(function()
2898
                for i = 1, 60, 2 do
2899
                rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
2900
                rng.Transparency = i/60
2901
                wait()
2902
                end
2903
                wait()
2904
                rng:Destroy()
2905
                end)()
2906
            hum.WalkSpeed = 50
2907
        BV = Instance.new("BodyVelocity", torso)
2908
        BV.maxForce = Vector3.new(0,200000,0)
2909
        BV.P = 100000
2910
        BV.velocity = Vector3.new(0,800,0)
2911
    for i = 1, 20 do
2912
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0),     math.rad(0)),0.7)
2913
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-16),     math.rad(0), math.rad(0)), 0.7)
2914
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0,     math.rad(-20)), 0.7)
2915
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(-40),     math.rad(0), math.rad(20)), 0.7)
2916
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
2917
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
2918
        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
2919
        if Debounces.on == false then break end
2920
        wait()
2921
    end
2922
x:Destroy()
2923
BV:Destroy()
2924
    --[[for i = 1, 30 do
2925
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0),     math.rad(0)),0.3)
2926
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad    (0), math.rad(0)), 0.3)
2927
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0),     math.rad(0), math.rad(-10)), 0.3)
2928
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0),     math.rad(0), math.rad(10)), 0.3)
2929
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
2930
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0),     0.3)
2931
        if Debounces.on == false then break end
2932
        wait()
2933
    end]]--
2934
if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
2935
    for i = 1, 30 do
2936
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
2937
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
2938
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-90)), 0.3)
2939
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
2940-
hum.WalkSpeed = 8
2940+
2941
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
2942
        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
2943
        if Debounces.on == false then break end
2944
        wait()
2945
    end
2946
end
2947
Debounces.on = false
2948
Debounces.NoIdl = false
2949
local ry,ht,ps=nil,nil,nil
2950
while ht==nil do
2951
	ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
2952
	wait()
2953
end
2954
z = Instance.new("Sound",char)
2955
z.SoundId = "rbxassetid://142070127"
2956
z.Volume = 1
2957
wait(.1)
2958
z:Play()
2959
Landing()
2960
hum.WalkSpeed = 30
2961
if Debounces.CanAttack == false then
2962
Debounces.CanAttack = true
2963
end
2964
end
2965
end
2966
end)
2967
----------------------------------------------------
2968
Grab = false
2969
mouse.KeyDown:connect(function(key)
2970
    if key == "z" then
2971
    larm.BrickColor = BrickColor.new("Bright red")
2972
    rarm.BrickColor = BrickColor.new("Bright red")
2973
        Debounces.on = true
2974
        Debounces.NoIdl = true
2975
        if Grab == false then
2976
        gp = nil
2977
        con1=larm.Touched:connect(function(hit) -- this is grab
2978
            ht = hit.Parent
2979
            hum1=ht:FindFirstChild('Humanoid')
2980
            if hum1 ~= nil then
2981
                hum1.PlatformStand=true
2982
                gp = ht
2983
                Grab = true
2984
                asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
2985
                asd.Parent = larm
2986
                asd.Name = "asd"
2987
                asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
2988
            elseif hum1 == nil then
2989
                con1:disconnect()
2990
                wait() return
2991
            end
2992
        end)
2993
        for i = 1, 18 do
2994
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(36)), 0.2)
2995
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.65,.9,-.5)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
2996
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
2997
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
2998
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
2999
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
3000
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
3001
            if Debounces.on == false then break end
3002
            wait()
3003
        end
3004
    con1:disconnect()
3005
    Debounces.on = false
3006
    Debounces.NoIdl = false
3007
    elseif Grab == true then
3008
        Grab = false
3009
    for i = 1, 20 do
3010
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.2)
3011
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-20)), 0.1)
3012
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
3013
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
3014
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
3015
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
3016
        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
3017
        if Debounces.on == false then end
3018
        wait()
3019
    end
3020
        if gp ~= nil then
3021
        for i,v in pairs(larm:GetChildren()) do
3022
            if v.Name == "asd" and v:IsA("Weld") then
3023
                v:Remove()
3024
            end
3025
        end
3026
        bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
3027
        bv.maxForce = Vector3.new(400000, 400000, 400000)
3028
        bv.P = 125000
3029
        bv.velocity = char.Head.CFrame.lookVector * 200
3030
        for i = 1, 12 do
3031
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.75)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(20)), 0.5)
3032
            if Debounces.on == false then end
3033
            wait()
3034
        end
3035
        ht=nil
3036
        Spawn(function()
3037-
        char.Humanoid.WalkSpeed = 5
3037+
3038
            bv:Destroy()
3039
        end)
3040
        Debounces.on = false
3041
        Debounces.NoIdl = false
3042
        elseif ht == nil then wait()
3043
        Grab = false
3044
        Debounces.on = false
3045
        Debounces.NoIdl = false
3046
            end
3047
        end
3048
    end
3049
end)
3050
mouse.KeyDown:connect(function(key)
3051
    if string.byte(key) == 52 then
3052
        char.Humanoid.WalkSpeed = 21
3053
    end
3054
end)
3055
mouse.KeyUp:connect(function(key)
3056
    if string.byte(key) == 52 then
3057
        char.Humanoid.WalkSpeed = 30
3058
    end
3059
end)
3060
----------------------------------------------------
3061
local animpose = "Idle"
3062
local lastanimpose = "Idle"
3063
local sine = 0
3064
local change = 1
3065
local val = 0
3066
local ffing = false
3067
----------------------------------------------------
3068
-------------------------------
3069
game:GetService("RunService").RenderStepped:connect(function()
3070
--[[if char.Humanoid.Jump == true then
3071
jump = true
3072
else
3073
jump = false
3074
end]]
3075
char.Humanoid.FreeFalling:connect(function(f)
3076
if f then
3077
ffing = true
3078
else
3079
ffing = false
3080
end
3081
end)
3082
sine = sine + change
3083
if jumpn == true then
3084
animpose = "Jumping"
3085
elseif ffing == true then
3086
animpose = "Freefalling"
3087
elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
3088
animpose = "Idle"
3089
elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
3090
animpose = "Walking"
3091
elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
3092
animpose = "Running"
3093
end
3094
if animpose ~= lastanimpose then
3095
sine = 0
3096
if Debounces.NoIdl == false then
3097
if animpose == "Idle" then
3098
for i = 1, 2 do
3099
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(20)), 0.05)
3100
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.05)
3101
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
3102
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
3103
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
3104
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
3105
cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
3106
end
3107
elseif animpose == "Walking" then
3108
for i = 1, 2 do
3109
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
3110
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
3111
hed.Weld.C0 = CFrame.new(0,4,-1.5)*CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0)
3112
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(-8)), 0.4)
3113
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(8)), 0.4)
3114
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(1.2, 20, -.2) * CFrame.Angles(math.rad(-15),0, math.rad(0)), 0.05)
3115
end
3116
elseif animpose == "Running" then
3117
for i = 1, 2 do
3118
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
3119
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.2, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2)
3120
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
3121
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
3122
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
3123
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
3124
cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
3125
end
3126
wait()
3127
end
3128
else
3129
end
3130
end
3131
lastanimpose = animpose
3132
if Debounces.NoIdl == false then
3133
if animpose == "Idle" then
3134
if stanceToggle == "Normal" then
3135
change = 0.5
3136
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(10+2*math.cos(sine/10)),math.rad(0),math.rad(20)), 0.2)
3137
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(15),math.rad(5),math.rad(-20-2*math.cos(sine/14))), 0.2)
3138
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/20)),math.rad(40),0), 0.2)
3139
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1*math.cos(sine/20), 2) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
3140
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
3141
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
3142
cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
3143
elseif stanceToggle == "Sitting" then
3144
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2)
3145
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2, .9, -1)*CFrame.Angles(math.rad(78+1*math.cos(sine/14)), math.rad(0), math.rad(50)), 0.2)
3146
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2)
3147
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
3148
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2)
3149
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2)
3150
cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
3151
end
3152
elseif animpose == "Walking" then
3153
if stanceToggle == "Normal" then
3154
change = 1
3155
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
3156
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
3157
hed.Weld.C0 = CFrame.new(0,3,-1.5)*CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0)
3158
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(-8)), 0.4)
3159
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(8)), 0.4)
3160
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(1.2, 10, -.2) * CFrame.Angles(math.rad(-15),0, math.rad(0)), 0.05)
3161
end
3162
elseif animpose == "Running" then
3163
change = 1
3164
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10-20*math.cos(sine/4)/2), math.rad(-40+10*math.cos(sine/4)/2), math.rad(50-10*math.cos(sine/4)/2)), 0.2)
3165
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .5)*CFrame.Angles(math.rad(10+20*math.cos(sine/4)/2), math.rad(40-10*math.cos(sine/4)/2), math.rad(-50+10*math.cos(sine/4)/2)), 0.2)
3166
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
3167
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
3168
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
3169
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
3170
cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
3171
end
3172
end
3173
--[[if animpose == "Walking" then
3174
    if footsteps == false then
3175
        x:Play()
3176
        footsteps = true
3177
    end
3178
    x.Pitch = 1.1
3179
elseif animpose == "Idle" then
3180
    x:Stop()
3181
    footsteps = false
3182
elseif animpose == "Running" then
3183
    x.Pitch = 1.2
3184
    if footsteps == false then
3185
        x:Play()
3186
        footsteps = true
3187
    end
3188
end]]--
3189
end)
3190
3191
3192
3193
	Player=game:GetService('Players').LocalPlayer
3194
	Character=Player.Character
3195
	Mouse=Player:GetMouse()
3196
	m=Instance.new('Model',Character)
3197
3198
3199
	local function weldBetween(a, b)
3200
	    local weldd = Instance.new("ManualWeld")
3201
	    weldd.Part0 = a
3202
	    weldd.Part1 = b
3203
	    weldd.C0 = CFrame.new()
3204
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3205
	    weldd.Parent = a
3206
	    return weldd
3207
	end
3208
	
3209
	it=Instance.new
3210
	
3211
	function nooutline(part)
3212
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3213
	end
3214
	
3215
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3216
		local fp=it("Part")
3217
		fp.formFactor=formfactor
3218
		fp.Parent=parent
3219
		fp.Reflectance=reflectance
3220
		fp.Transparency=transparency
3221
		fp.CanCollide=false
3222
		fp.Locked=true
3223
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3224
		fp.Name=name
3225
		fp.Size=size
3226
		fp.Position=Character.Torso.Position
3227
		nooutline(fp)
3228
		fp.Material=material
3229
		fp:BreakJoints()
3230
		return fp
3231
	end
3232
	
3233
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3234
		local mesh=it(Mesh)
3235
		mesh.Parent=part
3236
		if Mesh=="SpecialMesh" then
3237
			mesh.MeshType=meshtype
3238
			mesh.MeshId=meshid
3239
		end
3240
		mesh.Offset=offset
3241
		mesh.Scale=scale
3242
		return mesh
3243
	end
3244
	
3245
	function weld(parent,part0,part1,c0,c1)
3246
		local weld=it("Weld")
3247
		weld.Parent=parent
3248
		weld.Part0=part0
3249
		weld.Part1=part1
3250
		weld.C0=c0
3251
		weld.C1=c1
3252
		return weld
3253
	end
3254
3255
Head=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Really black","Handle",Vector3.new(4.50989914, 4.5098958, 4.50989771))
3256
Headweld=weld(m,Character["Head"],Head,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.019949913, -0.784425735, 0.342384338, 1, 0, 0, 0, 0.939693093, -0.342019022, 0, 0.342018992, 0.939693093))
3257
mesh("SpecialMesh",Head,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=16952952",Vector3.new(0, 0, 0),Vector3.new(2.25494957, 2.2549479, 2.25494885))
3258
	Player=game:GetService('Players').LocalPlayer
3259
	Character=Player.Character
3260
	Mouse=Player:GetMouse()
3261
	m=Instance.new('Model',Character)
3262
3263
3264
	local function weldBetween(a, b)
3265
	    local weldd = Instance.new("ManualWeld")
3266
	    weldd.Part0 = a
3267
	    weldd.Part1 = b
3268
	    weldd.C0 = CFrame.new()
3269
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3270
	    weldd.Parent = a
3271
	    return weldd
3272
	end
3273
	
3274
	it=Instance.new
3275
	
3276
	function nooutline(part)
3277
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3278
	end
3279
	
3280
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3281
		local fp=it("Part")
3282
		fp.formFactor=formfactor
3283
		fp.Parent=parent
3284
		fp.Reflectance=reflectance
3285
		fp.Transparency=transparency
3286
		fp.CanCollide=false
3287
		fp.Locked=true
3288
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3289
		fp.Name=name
3290
		fp.Size=size
3291
		fp.Position=Character.Torso.Position
3292
		nooutline(fp)
3293
		fp.Material=material
3294
		fp:BreakJoints()
3295
		return fp
3296
	end
3297
	
3298
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3299
		local mesh=it(Mesh)
3300
		mesh.Parent=part
3301
		if Mesh=="SpecialMesh" then
3302
			mesh.MeshType=meshtype
3303
			mesh.MeshId=meshid
3304
		end
3305
		mesh.Offset=offset
3306
		mesh.Scale=scale
3307
		return mesh
3308
	end
3309
	
3310
	function weld(parent,part0,part1,c0,c1)
3311
		local weld=it("Weld")
3312
		weld.Parent=parent
3313
		weld.Part0=part0
3314
		weld.Part1=part1
3315
		weld.C0=c0
3316
		weld.C1=c1
3317
		return weld
3318
	end
3319
3320
LArm=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(2.39230847, 1.27000177, 2.25777745))
3321
LArmweld=weld(m,Character["Left Arm"],LArm,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0699939728, 0.124999046, -1.14440918e-005, 1, 0, 0, 0, 1, 0, 0, 0, 1))
3322
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
3323
Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.42499733, -0.0949978828, -7.62939453e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1))
3324
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.39230847, 1.27000177, 2.25777745))
3325
Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 1.45000315, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
3326
LLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","LLeg",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3327
LLegweld=weld(m,LArm,LLeg,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.450008392, -0.290473938, -1.11473179, 0, 0, 1, 1, 0, 0, 0, 1, 0))
3328
mesh("SpecialMesh",LLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
3329
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.08000183, 1.9832561))
3330
Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.155472755, -0.149731159, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
3331
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3332
Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.822774887, -1.09854889, 1.52587891e-005, -0.984807849, 0.173647985, 0, 0.173647985, 0.984807849, 0, 0, 0, -1))
3333
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3334
Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.789524078, 0.795269012, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1))
3335
	Player=game:GetService('Players').LocalPlayer
3336
	Character=Player.Character
3337
	Mouse=Player:GetMouse()
3338
	m=Instance.new('Model',Character)
3339
3340
3341
	local function weldBetween(a, b)
3342
	    local weldd = Instance.new("ManualWeld")
3343
	    weldd.Part0 = a
3344
	    weldd.Part1 = b
3345
	    weldd.C0 = CFrame.new()
3346
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3347
	    weldd.Parent = a
3348
	    return weldd
3349
	end
3350
	
3351
	it=Instance.new
3352
	
3353
	function nooutline(part)
3354
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3355
	end
3356
	
3357
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3358
		local fp=it("Part")
3359
		fp.formFactor=formfactor
3360
		fp.Parent=parent
3361
		fp.Reflectance=reflectance
3362
		fp.Transparency=transparency
3363
		fp.CanCollide=false
3364
		fp.Locked=true
3365
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3366
		fp.Name=name
3367
		fp.Size=size
3368
		fp.Position=Character.Torso.Position
3369
		nooutline(fp)
3370
		fp.Material=material
3371
		fp:BreakJoints()
3372
		return fp
3373
	end
3374
	
3375
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3376
		local mesh=it(Mesh)
3377
		mesh.Parent=part
3378
		if Mesh=="SpecialMesh" then
3379
			mesh.MeshType=meshtype
3380
			mesh.MeshId=meshid
3381
		end
3382
		mesh.Offset=offset
3383
		mesh.Scale=scale
3384
		return mesh
3385
	end
3386
	
3387
	function weld(parent,part0,part1,c0,c1)
3388
		local weld=it("Weld")
3389
		weld.Parent=parent
3390
		weld.Part0=part0
3391
		weld.Part1=part1
3392
		weld.C0=c0
3393
		weld.C1=c1
3394
		return weld
3395
	end
3396
3397
RArm=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(2.39230847, 1.27000177, 2.25777745))
3398
RArmweld=weld(m,Character["Right Arm"],RArm,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0500068665, 0.124999046, -1.14440918e-005, 1, 0, 0, 0, 1, 0, 0, 0, 1))
3399
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.39230847, 1.27000177, 2.25777745))
3400
Partweld=weld(m,RArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 1.45000315, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
3401
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
3402
Partweld=weld(m,RArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.54501152, -0.0949978828, -7.62939453e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1))
3403
	Player=game:GetService('Players').LocalPlayer
3404
	Character=Player.Character
3405
	Mouse=Player:GetMouse()
3406
	m=Instance.new('Model',Character)
3407
3408
3409
	local function weldBetween(a, b)
3410
	    local weldd = Instance.new("ManualWeld")
3411
	    weldd.Part0 = a
3412
	    weldd.Part1 = b
3413
	    weldd.C0 = CFrame.new()
3414
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3415
	    weldd.Parent = a
3416
	    return weldd
3417
	end
3418
	
3419
	it=Instance.new
3420
	
3421
	function nooutline(part)
3422
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3423
	end
3424
	
3425
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3426
		local fp=it("Part")
3427
		fp.formFactor=formfactor
3428
		fp.Parent=parent
3429
		fp.Reflectance=reflectance
3430
		fp.Transparency=transparency
3431
		fp.CanCollide=false
3432
		fp.Locked=true
3433
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3434
		fp.Name=name
3435
		fp.Size=size
3436
		fp.Position=Character.Torso.Position
3437
		nooutline(fp)
3438
		fp.Material=material
3439
		fp:BreakJoints()
3440
		return fp
3441
	end
3442
	
3443
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3444
		local mesh=it(Mesh)
3445
		mesh.Parent=part
3446
		if Mesh=="SpecialMesh" then
3447
			mesh.MeshType=meshtype
3448
			mesh.MeshId=meshid
3449
		end
3450
		mesh.Offset=offset
3451
		mesh.Scale=scale
3452
		return mesh
3453
	end
3454
	
3455
	function weld(parent,part0,part1,c0,c1)
3456
		local weld=it("Weld")
3457
		weld.Parent=parent
3458
		weld.Part0=part0
3459
		weld.Part1=part1
3460
		weld.C0=c0
3461
		weld.C1=c1
3462
		return weld
3463
	end
3464
3465
RLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3466
RLegweld=weld(m,Character["Right Leg"],RLeg,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.450008392, -0.269515991, -0.949736118, 0, 0, -1, -1, 0, 0, 0, 1, 0))
3467
3468
mesh("SpecialMesh",RLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
3469
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3470
3471
Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.00201035, 1.44436717, 0.57000351, 0, -1, 0, 0, 0, 1, -1, 0, 0))
3472
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3473
3474
Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.542831421, 0.283806801, 0.569999695, 0, -0.866025388, 0.500000238, 0, 0.500000179, 0.866025329, -1, 0, 0))
3475
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.0700016, 1.9832561))
3476
Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.254991531, 0.96000123, -0.450004578, 0, -1, 0, 0, 0, 1, -1, 0, 0))
3477
3478
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3479
Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.06000137, 1.91000128, -0.449989319, 0, -1, 0, 0, 0, 1, -1, 0, 0))
3480
3481
3482
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3483
Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.895587921, 0.0462193489, -0.450004578, 0, -0.984807849, 0.173647985, 0, 0.173647985, 0.984807849, -1, 0, 0))
3484
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3485
3486
Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00769901276, 0.173805237, 0.593242645, -0.150384068, -0.852868438, 0.500000238, 0.0868240222, 0.492404103, 0.866025329, -0.984807789, 0.173648432, -2.60770406e-007))
3487
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3488
3489
Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.470241547, 1.62436724, 0.593242645, -0.173647985, -0.984807849, 0, 0, 0, 1, -0.984807849, 0.173647985, 0))
3490
	Player=game:GetService('Players').LocalPlayer
3491
	Character=Player.Character
3492
	Mouse=Player:GetMouse()
3493
	m=Instance.new('Model',Character)
3494
3495
3496
	local function weldBetween(a, b)
3497
	    local weldd = Instance.new("ManualWeld")
3498
	    weldd.Part0 = a
3499
	    weldd.Part1 = b
3500
	    weldd.C0 = CFrame.new()
3501
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3502
	    weldd.Parent = a
3503
	    return weldd
3504
	end
3505
	
3506
	it=Instance.new
3507
	
3508
	function nooutline(part)
3509
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3510
	end
3511
	
3512
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3513
		local fp=it("Part")
3514
		fp.formFactor=formfactor
3515
		fp.Parent=parent
3516
		fp.Reflectance=reflectance
3517
		fp.Transparency=transparency
3518
		fp.CanCollide=false
3519
		fp.Locked=true
3520
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3521
		fp.Name=name
3522
		fp.Size=size
3523
		fp.Position=Character.Torso.Position
3524
		nooutline(fp)
3525
		fp.Material=material
3526
		fp:BreakJoints()
3527
		return fp
3528
	end
3529
	
3530
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3531
		local mesh=it(Mesh)
3532
		mesh.Parent=part
3533
		if Mesh=="SpecialMesh" then
3534
			mesh.MeshType=meshtype
3535
			mesh.MeshId=meshid
3536
		end
3537
		mesh.Offset=offset
3538
		mesh.Scale=scale
3539
		return mesh
3540
	end
3541
	
3542
	function weld(parent,part0,part1,c0,c1)
3543
		local weld=it("Weld")
3544
		weld.Parent=parent
3545
		weld.Part0=part0
3546
		weld.Part1=part1
3547
		weld.C0=c0
3548
		weld.C1=c1
3549
		return weld
3550
	end
3551
3552
Torso=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Handle",Vector3.new(2.03212667, 4.08000183, 2.04325604))
3553
Torsoweld=weld(m,Character["Torso"],Torso,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.044511795, 0.0452680588, 0.0299835205, 1, 0, 0, 0, 1, 0, 0, 0, 1))
3554
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
3555
Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.991963387, 0.394999981, -0.990013123, -1, 0, 0, 0, 1, 0, 0, 0, -1))
3556
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.05393803, 4.16000175, 2.08000016))
3557
Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.43049431, -0.0152668953, -0.0299987793, 1, 0, 0, 0, 1, 0, 0, 0, 1))
3558
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
3559
Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.07803631, 0.394999981, -0.990009308, -1, 0, 0, 0, 1, 0, 0, 0, -1))
3560
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.43393803, 4.46000195, 2.11000013))
3561
Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0449981689, 0.119999886, 0.0149841309, -1, 0, 0, 0, 1, 0, 0, 0, -1))
3562
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
3563
Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.48950481, -0.0152668953, -0.0299835205, 1, 0, 0, 0, 1, 0, 0, 0, 1))
3564
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
3565
Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.708036423, 0.585000515, -0.990009308, -1, 0, 0, 0, 1, 0, 0, 0, -1))
3566
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
3567
Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.571961403, 0.585000515, -0.990013123, -1, 0, 0, 0, 1, 0, 0, 0, -1))
3568
	Player=game:GetService('Players').LocalPlayer
3569
	Character=Player.Character
3570
	Mouse=Player:GetMouse()
3571
	m=Instance.new('Model',Character)
3572
3573
3574
	local function weldBetween(a, b)
3575
	    local weldd = Instance.new("ManualWeld")
3576
	    weldd.Part0 = a
3577
	    weldd.Part1 = b
3578
	    weldd.C0 = CFrame.new()
3579
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3580
	    weldd.Parent = a
3581
	    return weldd
3582
	end
3583
	
3584
	it=Instance.new
3585
	
3586
	function nooutline(part)
3587
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3588
	end
3589
	
3590
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3591
		local fp=it("Part")
3592
		fp.formFactor=formfactor
3593
		fp.Parent=parent
3594
		fp.Reflectance=reflectance
3595
		fp.Transparency=transparency
3596
		fp.CanCollide=false
3597
		fp.Locked=true
3598
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3599
		fp.Name=name
3600
		fp.Size=size
3601
		fp.Position=Character.Torso.Position
3602
		nooutline(fp)
3603
		fp.Material=material
3604
		fp:BreakJoints()
3605
		return fp
3606
	end
3607
	
3608
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3609
		local mesh=it(Mesh)
3610
		mesh.Parent=part
3611
		if Mesh=="SpecialMesh" then
3612
			mesh.MeshType=meshtype
3613
			mesh.MeshId=meshid
3614
		end
3615
		mesh.Offset=offset
3616
		mesh.Scale=scale
3617
		return mesh
3618
	end
3619
	
3620
	function weld(parent,part0,part1,c0,c1)
3621
		local weld=it("Weld")
3622
		weld.Parent=parent
3623
		weld.Part0=part0
3624
		weld.Part1=part1
3625
		weld.C0=c0
3626
		weld.C1=c1
3627
		return weld
3628
	end
3629
3630
LLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3631
LLegweld=weld(m,Character["Left Leg"],LLeg,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.450004578, -0.240491867, -0.949736118, 0, 0, 1, 1, 0, 0, 0, 1, 0))
3632
mesh("SpecialMesh",LLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
3633
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.08000183, 1.9832561))
3634
Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.135001183, 0.965001106, -0.450008392, 0, 1, 0, 0, 0, 1, 1, 0, 0))
3635
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3636
Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.07999802, 1.91000128, 0.450008392, 0, -1, 0, 0, 0, 1, -1, 0, 0))
3637
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3638
Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.91526413, 0.0496888161, 0.450023651, 0, -0.984807849, 0.173647985, 0, 0.173647985, 0.984807849, -1, 0, 0))
3639
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3640
Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.1345892, 1.44436717, -0.569984436, 0, -1, 0, 0, 0, 1, -1, 0, 0))
3641
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3642
Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.657648087, 0.350095749, -0.569992065, 0, -0.866025388, 0.500000238, 0, 0.500000179, 0.866025329, -1, 0, 0))
3643
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3644
Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.754587173, 1.624367, -0.569984436, 0, -1, 0, 0, 0, 1, -1, 0, 0))
3645
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3646
Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.238555908, 0.315980911, -0.569992065, 0, -0.866025388, 0.500000238, 0, 0.500000179, 0.866025329, -1, 0, 0))
3647
3648
	Player=game:GetService('Players').LocalPlayer
3649
	Character=Player.Character
3650
	Mouse=Player:GetMouse()
3651
	m=Instance.new('Model',Character)
3652
3653
3654
	local function weldBetween(a, b)
3655
	    local weldd = Instance.new("ManualWeld")
3656
	    weldd.Part0 = a
3657
	    weldd.Part1 = b
3658
	    weldd.C0 = CFrame.new()
3659
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3660
	    weldd.Parent = a
3661
	    return weldd
3662
	end
3663
	
3664
	it=Instance.new
3665
	
3666
	function nooutline(part)
3667
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3668
	end
3669
	
3670
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3671
		local fp=it("Part")
3672
		fp.formFactor=formfactor
3673
		fp.Parent=parent
3674
		fp.Reflectance=reflectance
3675
		fp.Transparency=transparency
3676
		fp.CanCollide=false
3677
		fp.Locked=true
3678
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3679
		fp.Name=name
3680
		fp.Size=size
3681
		fp.Position=Character.Torso.Position
3682
		nooutline(fp)
3683
		fp.Material=material
3684
		fp:BreakJoints()
3685
		return fp
3686
	end
3687
	
3688
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3689
		local mesh=it(Mesh)
3690
		mesh.Parent=part
3691
		if Mesh=="SpecialMesh" then
3692
			mesh.MeshType=meshtype
3693
			mesh.MeshId=meshid
3694
		end
3695
		mesh.Offset=offset
3696
		mesh.Scale=scale
3697
		return mesh
3698
	end
3699
	
3700
	function weld(parent,part0,part1,c0,c1)
3701
		local weld=it("Weld")
3702
		weld.Parent=parent
3703
		weld.Part0=part0
3704
		weld.Part1=part1
3705
		weld.C0=c0
3706
		weld.C1=c1
3707
		return weld
3708
	end
3709
3710
Orb=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0.5,"Really red","Handle",Vector3.new(3.20000124, 3.20000124, 3.20000124))
3711
Orb.Shape = "Ball"
3712
Orbweld=weld(m,Character["Left Arm"],Orb,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.319931984, 3.51501703, -0.0999984741, -1, 0, 0, 0, 1, 0, 0, 0, -1))
3713
Orb.Transparency = 0
3714
----------------------------------------------------
3715
	Player=game:GetService('Players').LocalPlayer
3716
	Character=Player.Character
3717
	Mouse=Player:GetMouse()
3718
	m=Instance.new('Model',Character)
3719
3720
3721
	local function weldBetween(a, b)
3722
	    local weldd = Instance.new("ManualWeld")
3723
	    weldd.Part0 = a
3724
	    weldd.Part1 = b
3725
	    weldd.C0 = CFrame.new()
3726
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3727
	    weldd.Parent = a
3728
	    return weldd
3729
	end
3730
	
3731
	it=Instance.new
3732
	
3733
	function nooutline(part)
3734
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3735
	end
3736
	
3737
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3738
		local fp=it("Part")
3739
		fp.formFactor=formfactor
3740
		fp.Parent=parent
3741
		fp.Reflectance=reflectance
3742
		fp.Transparency=transparency
3743
		fp.CanCollide=false
3744
		fp.Locked=true
3745
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3746
		fp.Name=name
3747
		fp.Size=size
3748
		fp.Position=Character.Torso.Position
3749
		nooutline(fp)
3750
		fp.Material=material
3751
		fp:BreakJoints()
3752
		return fp
3753
	end
3754
	
3755
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3756
		local mesh=it(Mesh)
3757
		mesh.Parent=part
3758
		if Mesh=="SpecialMesh" then
3759
			mesh.MeshType=meshtype
3760
			mesh.MeshId=meshid
3761
		end
3762
		mesh.Offset=offset
3763
		mesh.Scale=scale
3764
		return mesh
3765
	end
3766
	
3767
	function weld(parent,part0,part1,c0,c1)
3768
		local weld=it("Weld")
3769
		weld.Parent=parent
3770
		weld.Part0=part0
3771
		weld.Part1=part1
3772
		weld.C0=c0
3773
		weld.C1=c1
3774
		return weld
3775
	end
3776
3777
WIngs=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Maroon","Handle",Vector3.new(0.526163042, 0.373031557, 0.931079745))
3778
WIngsweld=weld(m,Character["Torso"],WIngs,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.0159111, -1.20853615, -6.0207634, 0.866024971, 0.250001013, -0.433012992, -0.326577812, 0.938599944, -0.111252062, 0.378612816, 0.237759501, 0.894495845))
3779
mesh("BlockMesh",WIngs,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
3780
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3781
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0145301819, -1.5309906, 1.12540245, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, -3.7252903e-009, -0.982352912, -0.187036932))
3782
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3783
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3784
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.012840271, -2.20268631, 1.11525655, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, -3.7252903e-009, -0.982352912, -0.187036932))
3785
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3786
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3787
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, 1.69621086, 2.74610329, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.329198927, -0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
3788
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3789
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3790
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128326416, 3.14628506, 2.63505173, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.757224739, -0.653154373, 2.98023224e-008, -0.653154373, 0.757224917))
3791
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3792
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3793
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, 1.01108551, 2.51173878, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.0735907629, -0.997288585, 0, -0.997288525, 0.0735907704))
3794
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3795
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3796
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, 0.396331787, 2.11554885, -1, 1.86264515e-008, 5.96046448e-008, 0, 0.187033802, -0.982353449, -7.4505806e-009, -0.982353449, -0.187033832))
3797
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3798
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3799
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, -0.0868225098, 1.57054901, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.434913546, -0.900472343, 0, -0.900472283, -0.434913576))
3800
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3801
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3802
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128173828, 2.42856979, 2.78783226, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.562374592, -0.82688272, 0, -0.826882541, 0.562374532))
3803
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3804
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3805
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128173828, -0.416015625, 0.917181015, -1, 1.86264515e-008, 5.96046448e-008, -5.96046448e-008, 0.653154254, -0.757224917, 1.49011612e-008, -0.757224798, -0.653154254))
3806
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3807
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3808
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128173828, 0.159194946, -1.12555099, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.187036917, -0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
3809
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3810
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3811
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140304565, -3.38129997, -2.7243309, -1, 1.86264515e-008, 5.96046448e-008, 0, 0.329198927, 0.944260657, -1.49011612e-008, 0.944260657, -0.329198956))
3812
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3813
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3814
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140457153, 1.33783531, 2.71401596, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.329198927, -0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
3815
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3816
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Maroon","Part",Vector3.new(0.526163042, 0.373031557, 0.931079745))
3817
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.78812122, 1.92715263, -2.28927612, 0.49999845, -0.565649092, 0.655776381, 0.565651298, 0.786692977, 0.24729073, -0.655774534, 0.247295752, 0.713305533))
3818
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
3819
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3820
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80215645, 2.86511993, 0.140659332, -0.49999845, 0.565649092, -0.655776381, 0.433012724, -0.492487878, -0.754954159, -0.750001132, -0.661435425, 0.00130999088))
3821
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3822
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3823
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80046654, -4.2369194, -0.140804291, -0.49999845, 0.565649092, -0.655776381, -0.433012724, 0.492487878, 0.754954159, 0.750001132, 0.661435425, -0.00130999088))
3824
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3825
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3826
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80215645, -4.90860367, -0.150947571, -0.49999845, 0.565649092, -0.655776381, -0.433012724, 0.492487878, 0.754954159, 0.750001132, 0.661435425, -0.00130999088))
3827
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3828
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3829
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80265999, -4.14035034, -0.33956337, 0.49999845, -0.565649092, 0.655776381, -0.750000596, 0.0957893208, 0.654464483, -0.433013558, -0.819063783, -0.376342565))
3830
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3831
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3832
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80095482, 3.22347641, 0.17275238, -0.49999845, 0.565649092, -0.655776381, 0.433012724, -0.492487878, -0.754954159, -0.750001132, -0.661435425, 0.00130999088))
3833
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3834
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3835
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, -4.81201553, -0.349707603, 0.49999845, -0.565649092, 0.655776381, -0.750000596, 0.0957893208, 0.654464483, -0.433013558, -0.819063783, -0.376342565))
3836
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3837
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3838
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, 2.76852798, 0.339404106, 0.49999845, -0.565649092, 0.655776381, 0.750000596, -0.0957893208, -0.654464483, 0.433013558, 0.819063783, 0.376342565))
3839
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3840
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3841
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80095482, 3.18227959, -0.357192993, -0.49999845, 0.565649092, -0.655776381, -2.98023224e-007, -0.757224619, -0.653154492, -0.866026402, -0.326576054, 0.378611445))
3842
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3843
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3844
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80094719, 3.23778915, -0.0931434631, -0.49999845, 0.565649092, -0.655776381, 0.224142939, -0.646899283, -0.728890419, -0.836517453, -0.511431754, 0.196662545))
3845
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3846
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3847
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80093193, 3.15235138, 0.421354294, -0.49999845, 0.565649092, -0.655776381, 0.612372398, -0.304515153, -0.729568839, -0.61237365, -0.766362667, -0.194130719))
3848
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3849
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3850
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80095387, 3.00566101, 0.650568962, -0.49999845, 0.565649092, -0.655776381, 0.749999642, -0.0957909003, -0.654465079, -0.433014959, -0.819063544, -0.376341343))
3851
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3852
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3853
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80094147, 2.81278229, 0.830840111, -0.49999845, 0.565649092, -0.655776381, 0.836516857, 0.119463086, -0.534760058, -0.224145442, -0.815947115, -0.532906353))
3854
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3855
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3856
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80094433, 2.57622147, 0.953166008, -0.49999845, 0.565649092, -0.655776381, 0.866026282, 0.326575905, -0.378611505, -4.32133675e-007, -0.757224679, -0.653154492))
3857
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3858
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3859
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128326416, 0.963986397, 2.83012009, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
3860
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3861
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3862
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128173828, -3.00747108, -2.84039688, 1, -1.86264515e-008, -5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, -2.98023224e-008, -0.0735884532, -0.997288704))
3863
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3864
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3865
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128250122, 3.25563431, 2.63391113, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.757224739, 0.653154373, 2.98023224e-008, -0.653154373, 0.757224917))
3866
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3867
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3868
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128440857, 2.53445959, 2.8150177, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.900472701, 0.434912592, 0, -0.434912592, 0.90047276))
3869
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3870
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3871
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128326416, 1.79145408, 2.79978943, 1, -1.86264515e-008, -5.96046448e-008, 5.58793545e-009, 0.982353508, 0.187033504, 0, -0.187033504, 0.982353628))
3872
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3873
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3874
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128364563, -0.414859772, 1.02649212, 1, -1.86264515e-008, -5.96046448e-008, -5.96046448e-008, 0.653154254, -0.757224917, -1.49011612e-008, 0.757224798, 0.653154254))
3875
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3876
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3877
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128326416, 0.451953888, 2.2096405, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.94426012, -0.329200208, 2.98023224e-008, 0.329200208, 0.94426012))
3878
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3879
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3880
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128364563, 1.08917046, 2.58826447, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
3881
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3882
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3883
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128173828, -0.057434082, 1.67582893, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.826882601, -0.562374711, 0, 0.562374711, 0.82688272))
3884
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3885
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3886
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140419006, -1.82085991, 1.02886391, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, 5.96046448e-008, 0.562375724, 0.826881766))
3887
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3888
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3889
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.014541626, -2.33579445, -2.83024597, 1, -1.86264515e-008, -5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, -2.98023224e-008, -0.0735884532, -0.997288704))
3890
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3891
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3892
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0123214722, -1.149189, 1.03900719, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, 5.96046448e-008, 0.562375724, 0.826881766))
3893
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3894
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3895
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.01404953, -0.222623825, -1.03916359, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.826881826, -0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
3896
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3897
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3898
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80045509, -4.03017044, 0.229810715, -0.49999845, 0.565649092, -0.655776381, -0.836517692, -0.511431158, 0.196663141, -0.224142194, 0.6468997, 0.7288903))
3899
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3900
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3901
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094051, 3.2564106, 0.190433502, 0.49999845, -0.565649092, 0.655776381, 0.433015227, 0.819063604, 0.376341105, -0.749999583, 0.0957911685, 0.654465318))
3902
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3903
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3904
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80093765, 3.05438042, 0.688827515, 0.49999845, -0.565649092, 0.655776381, 0.612375081, 0.766361952, 0.194129199, -0.612371087, 0.304516733, 0.729569316))
3905
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3906
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3907
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80093765, 3.21963882, -0.358337402, 0.49999845, -0.565649092, 0.655776381, 2.98023224e-007, 0.757224619, 0.653154492, -0.866026402, -0.326576054, 0.378611445))
3908
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3909
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3910
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80095196, 3.27416515, -0.0845680237, 0.49999845, -0.565649092, 0.655776381, 0.224145487, 0.815947115, 0.532906294, -0.836516857, -0.119463041, 0.534760058))
3911
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3912
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3913
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094719, 2.57737732, 0.990515709, 0.49999845, -0.565649092, 0.655776381, 0.866026282, 0.326575905, -0.378611505, 4.32133675e-007, 0.757224679, 0.653154492))
3914
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3915
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3916
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, 3.0253334, 0.682353973, 0.49999845, -0.565649092, 0.655776381, 0.75000155, 0.66143465, -0.00131103396, -0.433011711, 0.492488772, 0.7549541))
3917
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3918
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3919
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.8026638, -4.42617226, -0.68901062, 0.49999845, -0.565649092, 0.655776381, -0.612375081, -0.766361952, -0.194129199, 0.612371087, -0.304516733, -0.729569316))
3920
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3921
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3922
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80093575, -5.09785843, -0.699146271, 0.49999845, -0.565649092, 0.655776381, -0.612375081, -0.766361952, -0.194129199, 0.612371087, -0.304516733, -0.729569316))
3923
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3924
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3925
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, 2.8235321, 0.866632462, 0.49999845, -0.565649092, 0.655776381, 0.836517394, 0.511432052, -0.196662098, -0.224143416, 0.646898985, 0.728890657))
3926
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3927
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3928
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80217552, -4.70182419, 0.219669342, -0.49999845, 0.565649092, -0.655776381, -0.836517692, -0.511431158, 0.196663141, -0.224142194, 0.6468997, 0.7288903))
3929
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3930
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3931
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80096149, 3.17957115, 0.446971893, 0.49999845, -0.565649092, 0.655776381, 0.612375081, 0.766361952, 0.194129199, -0.612371087, 0.304516733, 0.729569316))
3932
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3933
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3934
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216312, 2.65835953, -0.229951859, -0.49999845, 0.565649092, -0.655776381, 0.836517692, 0.511431158, -0.196663141, 0.224142194, -0.6468997, -0.7288903))
3935
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3936
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3937
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0123329163, -2.7096405, -2.71417046, -1, 1.86264515e-008, 5.96046448e-008, 0, 0.329198927, 0.944260657, -1.49011612e-008, 0.944260657, -0.329198956))
3938
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3939
Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Really red","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
3940
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000423431396, 0.000568389893, 0.0205516815, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
3941
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
3942
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
3943
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.397033691, 0.00685501099, 0.361976624, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
3944
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
3945
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
3946
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000408172607, 0.000564575195, 0.0234174728, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
3947
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
3948
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
3949
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000427246094, 0.00227355957, 0.0205459595, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
3950
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
3951
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
3952
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000438690186, 0.00173950195, 0.0229845047, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
3953
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
3954
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
3955
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146331787, -3.40140152, -1.11369061, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
3956
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3957
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
3958
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146255493, 1.63386917, 1.11945939, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.187036917, -0.982352853, -3.7252903e-009, -0.982352912, -0.187036932))
3959
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3960
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
3961
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122375488, -6.76598835, 0.57843399, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, 0.608101726, 0.793859124, 0, -0.793859184, 0.608101785))
3962
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3963
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
3964
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.385643005, 0.0125732422, -0.371212006, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
3965
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
3966
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
3967
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0115966797, -0.543251038, 1.7864542, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.434913546, 0.900472343, 0, -0.900472283, -0.434913576))
3968
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
3969
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
3970
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0116043091, -1.59219742, 2.67541885, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, 0.0735907629, 0.997288585, 0, -0.997288525, 0.0735907704))
3971
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
3972
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
3973
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0115814209, -2.22006989, 2.7550087, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.329198927, 0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
3974
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
3975
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
3976
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.011592865, -1.02312088, 2.25215411, 1, -1.86264515e-008, -5.96046448e-008, 0, -0.187033802, 0.982353449, -7.4505806e-009, -0.982353449, -0.187033832))
3977
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
3978
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
3979
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0116004944, -0.851036072, 0.823085785, 1, -1.86264515e-008, -5.96046448e-008, 5.96046448e-008, -0.653154254, 0.757224917, 1.49011612e-008, -0.757224798, -0.653154254))
3980
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
3981
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
3982
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0116004944, -4.12805939, 3.14675999, -1, 1.86264515e-008, 5.96046448e-008, -5.96046448e-008, 0.653154254, -0.757224917, 1.49011612e-008, -0.757224798, -0.653154254))
3983
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
3984
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
3985
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146331787, -1.75381827, 0.0856170654, 1, -1.86264515e-008, -5.96046448e-008, 5.58793545e-009, 0.982353508, 0.187033504, 0, -0.187033504, 0.982353628))
3986
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3987
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
3988
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146331787, -1.7653625, 1.58002472, -1, 1.86264515e-008, 5.96046448e-008, 5.58793545e-009, 0.982353508, 0.187033504, 0, 0.187033504, -0.982353628))
3989
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
3990
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
3991
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146217346, 1.84269714, 2.61419201, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, 0.484992713, -0.874518216, 0, -0.874518156, -0.484992743))
3992
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3993
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
3994
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, -1.39143753, -1.12134099, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
3995
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3996
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
3997
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146255493, -4.44521141, -2.69960213, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.484992713, 0.874518216, 0, 0.874518156, 0.484992743))
3998
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3999
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
4000
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146102905, -1.24437332, -1.12705016, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.187036917, -0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
4001
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4002
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
4003
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.012260437, 2.08576965, -1.09300995, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.94426012, 0.329200208, 2.98023224e-008, 0.329200208, 0.94426012))
4004
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4005
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
4006
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, 2.07419205, 2.7586441, 1, -1.86264515e-008, -5.96046448e-008, -1.49011612e-008, -0.94426012, 0.329200208, -2.98023224e-008, -0.329200208, -0.94426012))
4007
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
4008
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
4009
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, 2.81254005, -2.72010994, 1, -1.86264515e-008, -5.96046448e-008, 0, -0.329198927, -0.944260657, -1.49011612e-008, 0.944260657, -0.329198956))
4010
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4011
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
4012
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0122528076, -0.0657215118, 2.71253204, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.329198927, -0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
4013
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4014
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
4015
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, -4.58002281, 2.72588158, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.329198927, 0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
4016
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4017
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
4018
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122489929, -2.57005119, 2.71822929, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.329198927, 0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
4019
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4020
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
4021
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122451782, 4.16341972, -0.663871765, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, -0.608101726, -0.793859124, 0, 0.793859184, -0.608101785))
4022
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4023
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
4024
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0115814209, -4.30217743, 3.24400997, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.627695382, -0.778459072, -1.49011612e-008, -0.778458953, -0.627695441))
4025
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4026
Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Really red","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
4027
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99267197, 4.78870678, -0.0154352188, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
4028
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
4029
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
4030
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.59518433, 4.79498959, 0.32599926, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
4031
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
4032
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
4033
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99268341, 4.7886982, -0.0125761032, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
4034
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
4035
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
4036
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99270248, 4.79042339, -0.0154447556, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
4037
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
4038
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
4039
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99266815, 4.78983879, -0.0129785538, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
4040
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
4041
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
4042
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80036545, 4.80890846, 2.25815582, 0.49999845, -0.565649092, 0.655776381, 0.176621437, -0.674706042, -0.716642678, 0.847824514, 0.474144399, -0.237446278))
4043
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4044
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
4045
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037117, -4.09732819, 0.144859314, 0.49999845, -0.565649092, 0.655776381, -0.433012724, 0.492487878, 0.754954159, -0.750001132, -0.661435425, 0.00130999088))
4046
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4047
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
4048
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037403, -6.10728073, 0.152519226, 0.49999845, -0.565649092, 0.655776381, -0.433012724, 0.492487878, 0.754954159, -0.750001132, -0.661435425, 0.00130999088))
4049
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4050
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
4051
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037498, -0.499183655, 4.28593826, 0.49999845, -0.565649092, 0.655776381, -0.75000155, -0.66143465, 0.00131103396, 0.433011711, -0.492488772, -0.7549541))
4052
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
4053
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
4054
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.802742, 1.36500931, 0.337909698, 0.49999845, -0.565649092, 0.655776381, 0.750000596, -0.0957893208, -0.654464483, 0.433013558, 0.819063783, 0.376342565))
4055
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4056
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
4057
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80034828, 1.46158218, 0.139152527, -0.49999845, 0.565649092, -0.655776381, 0.433012724, -0.492487878, -0.754954159, -0.750001132, -0.661435425, 0.00130999088))
4058
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4059
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
4060
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80037212, -0.487609863, -2.62030792, -0.49999845, 0.565649092, -0.655776381, -0.75000155, -0.66143465, 0.00131103396, -0.433011711, 0.492488772, 0.7549541))
4061
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4062
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
4063
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80035973, 4.33980179, -0.146759033, 0.49999845, -0.565649092, 0.655776381, 0.433012724, -0.492487878, -0.754954159, 0.750001132, 0.661435425, -0.00130999088))
4064
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4065
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
4066
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037403, -7.41146851, -2.34357452, 0.49999845, -0.565649092, 0.655776381, -0.176621437, 0.674706042, 0.716642678, -0.847824514, -0.474144399, 0.237446278))
4067
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4068
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
4069
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.8027401, 4.77935791, 2.0391655, -0.49999845, 0.565649092, -0.655776381, 0.847824097, 0.16527845, -0.50386256, -0.176623657, -0.807913423, -0.562209845))
4070
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4071
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
4072
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80274773, -0.288840294, -2.52373123, 0.49999845, -0.565649092, 0.655776381, 0.433015227, 0.819063604, 0.376341105, -0.749999583, 0.0957911685, 0.654465318))
4073
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4074
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
4075
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.60663605, 4.80071163, -0.407197952, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
4076
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
4077
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
4078
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80274963, -0.300402641, 4.18932724, -0.49999845, 0.565649092, -0.655776381, 0.433015227, 0.819063604, 0.376341105, 0.749999583, -0.0957911685, -0.654465318))
4079
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
4080
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
4081
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80271721, -4.00077438, 0.34360981, -0.49999845, 0.565649092, -0.655776381, -0.750000596, 0.0957893208, 0.654464483, 0.433013558, 0.819063783, 0.376342565))
4082
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4083
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
4084
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.802742, 4.24324417, -0.345514297, -0.49999845, 0.565649092, -0.655776381, 0.750000596, -0.0957893208, -0.654464483, -0.433013558, -0.819063783, -0.376342565))
4085
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4086
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
4087
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80274391, -7.38192749, -2.1245718, -0.49999845, 0.565649092, -0.655776381, -0.847824097, -0.16527845, 0.50386256, 0.176623657, 0.807913423, 0.562209845))
4088
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4089
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
4090
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79971504, -3.44285583, 1.04676247, 0.49999845, -0.565649092, 0.655776381, -0.836516857, -0.119463086, 0.534760058, -0.224145442, -0.815947115, -0.532906353))
4091
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4092
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
4093
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79971695, -3.73348618, 0.58502388, 0.49999845, -0.565649092, 0.655776381, -0.612372398, 0.304515153, 0.729568839, -0.61237365, -0.766362667, -0.194130719))
4094
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
4095
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
4096
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.802742, -6.01073456, 0.351270676, -0.49999845, 0.565649092, -0.655776381, -0.750000596, 0.0957893208, 0.654464483, 0.433013558, 0.819063783, 0.376342565))
4097
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4098
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
4099
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79972649, -3.63246918, 0.787195206, 0.49999845, -0.565649092, 0.655776381, -0.749999642, 0.0957909003, 0.654465079, -0.433014959, -0.819063544, -0.376341343))
4100
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4101
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
4102
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.79971886, -1.31037903, 3.18079185, -0.49999845, 0.565649092, -0.655776381, 0.865550399, 0.301296592, -0.400053799, -0.0287068337, -0.767633677, -0.640245616))
4103
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4104
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
4105
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.79972172, -1.1358223, 3.18273926, -0.49999845, 0.565649092, -0.655776381, 0.866026282, 0.326575905, -0.378611505, -4.32133675e-007, -0.757224679, -0.653154492))
4106
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4107
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
4108
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.7997303, -3.74736404, 0.181629181, 0.49999845, -0.565649092, 0.655776381, -0.433012724, 0.492487878, 0.754954159, -0.750001132, -0.661435425, 0.00130999088))
4109
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
4110
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
4111
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79971409, -3.84326553, 0.859061241, 0.49999845, -0.565649092, 0.655776381, -0.866026282, -0.326575905, 0.378611505, -4.32133675e-007, -0.757224679, -0.653154492))
4112
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4113
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
4114
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146179199, -0.439552307, 2.82862473, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
4115
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4116
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
4117
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146255493, 2.43866539, -2.83621216, -1, 1.86264515e-008, 5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, -2.98023224e-008, -0.0735884532, -0.997288704))
4118
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4119
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
4120
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, 2.19028473, 2.38479328, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, 0.0735907629, 0.997288585, 0, 0.997288525, -0.0735907704))
4121
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
4122
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
4123
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146331787, 2.20183945, -0.719162941, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, 0.0735907629, 0.997288585, 0, -0.997288525, 0.0735907704))
4124
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4125
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
4126
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140457153, -2.31531954, 2.80868149, -1, 1.86264515e-008, 5.96046448e-008, -5.58793545e-009, -0.982353508, -0.187033504, 0, -0.187033504, 0.982353628))
4127
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
4128
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
4129
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140533447, -1.67030334, 2.75189209, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
4130
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
4131
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
4132
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0145950317, -6.44722939, 0.805679321, -1, 1.86264515e-008, 5.96046448e-008, 1.11758709e-008, -0.970244586, -0.242127106, 0, -0.242127106, 0.970244527))
4133
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4134
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
4135
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140609741, -0.572654724, 1.89173317, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.826882601, 0.562374711, 0, 0.562374711, 0.82688272))
4136
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4137
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
4138
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140533447, -1.07876587, 2.34624863, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.94426012, 0.329200208, 2.98023224e-008, 0.329200208, 0.94426012))
4139
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4140
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
4141
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, -4.20618105, 2.84195328, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
4142
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4143
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
4144
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, -2.19620895, 2.83431244, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
4145
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4146
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
4147
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, 3.84465933, -0.891094208, -1, 1.86264515e-008, 5.96046448e-008, -1.11758709e-008, 0.970244586, 0.242127106, 0, 0.242127106, -0.970244527))
4148
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4149
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
4150
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.012260437, 1.25204659, 1.03306961, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.826881826, -0.562375784, 5.96046448e-008, 0.562375724, 0.826881766))
4151
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4152
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
4153
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122413635, -3.0195713, -1.02729225, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
4154
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4155
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
4156
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0122451782, -1.66742134, 0.467433929, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.562374592, -0.82688272, 0, -0.826882541, 0.562374532))
4157
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4158
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
4159
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122451782, -1.67897987, 1.19819832, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, -0.562374592, -0.82688272, 0, 0.826882541, -0.562374532))
4160
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
4161
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
4162
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122489929, 1.50705338, 2.41267586, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.609420419, -0.792847335, 0, 0.792847276, 0.609420419))
4163
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4164
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
4165
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.012260437, -1.00959778, -1.03495979, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
4166
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4167
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
4168
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, -4.10961151, -2.49808693, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.609420419, 0.792847335, 0, -0.792847276, -0.609420419))
4169
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4170
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
4171
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.012260437, -1.6261673, -1.04066467, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.826881826, -0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
4172
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4173
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
4174
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140533447, -0.852184296, 0.906645775, -1, 1.86264515e-008, 5.96046448e-008, 5.96046448e-008, -0.653154254, 0.757224917, -1.49011612e-008, 0.757224798, 0.653154254))
4175
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4176
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
4177
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80034447, -0.86977005, 4.07917023, 0.49999845, -0.565649092, 0.655776381, 0.224142939, -0.646899283, -0.728890419, 0.836517453, 0.511431754, -0.196662545))
4178
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
4179
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
4180
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80038261, -7.09912872, -2.63088512, 0.49999845, -0.565649092, 0.655776381, -0.864648581, -0.283361614, 0.414836287, -0.0488298535, -0.774433494, -0.630768061))
4181
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4182
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
4183
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037403, -3.89056778, -0.225765228, 0.49999845, -0.565649092, 0.655776381, -0.836517692, -0.511431158, 0.196663141, 0.224142194, -0.6468997, -0.7288903))
4184
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4185
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
4186
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80038261, -5.9005394, -0.218101501, 0.49999845, -0.565649092, 0.655776381, -0.836517692, -0.511431158, 0.196663141, 0.224142194, -0.6468997, -0.7288903))
4187
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4188
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
4189
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80037498, -0.858222961, -2.41352463, -0.49999845, 0.565649092, -0.655776381, 0.224142939, -0.646899283, -0.728890419, -0.836517453, -0.511431754, 0.196662545))
4190
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4191
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
4192
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037594, 4.49656296, 2.54547501, 0.49999845, -0.565649092, 0.655776381, 0.864648581, 0.283361614, -0.414836287, 0.0488298535, 0.774433494, 0.630768061))
4193
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4194
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
4195
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.8027277, 0.0490112305, 4.47517967, -0.49999845, 0.565649092, -0.655776381, -0.612372398, 0.304515153, 0.729568839, 0.61237365, 0.766362667, 0.194130719))
4196
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
4197
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
4198
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80274391, 0.0605697632, -2.80956078, 0.49999845, -0.565649092, 0.655776381, -0.612372398, 0.304515153, 0.729568839, -0.61237365, -0.766362667, -0.194130719))
4199
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4200
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
4201
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80274677, 4.52905464, -0.69493866, -0.49999845, 0.565649092, -0.655776381, 0.612375081, 0.766361952, 0.194129199, 0.612371087, -0.304516733, -0.729569316))
4202
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4203
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
4204
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80274773, 1.65083885, 0.687343597, 0.49999845, -0.565649092, 0.655776381, 0.612375081, 0.766361952, 0.194129199, -0.612371087, 0.304516733, 0.729569316))
4205
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4206
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
4207
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80273438, 5.16016769, 1.79669189, -0.49999845, 0.565649092, -0.655776381, 0.390038431, 0.823161662, 0.412643731, 0.773221493, -0.0494567379, -0.632204533))
4208
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4209
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
4210
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80038166, 4.13302612, 0.223876953, 0.49999845, -0.565649092, 0.655776381, 0.836517692, 0.511431158, -0.196663141, -0.224142194, 0.6468997, 0.7288903))
4211
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4212
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
4213
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80273819, -4.28659248, 0.693054199, -0.49999845, 0.565649092, -0.655776381, -0.612375081, -0.766361952, -0.194129199, -0.612371087, 0.304516733, 0.729569316))
4214
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4215
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
4216
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80276012, -6.29656792, 0.700717926, -0.49999845, 0.565649092, -0.655776381, -0.612375081, -0.766361952, -0.194129199, -0.612371087, 0.304516733, 0.729569316))
4217
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4218
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
4219
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216217, -3.78028393, 0.199310303, -0.49999845, 0.565649092, -0.655776381, -0.433015227, -0.819063604, -0.376341105, -0.749999583, 0.0957911685, 0.654465318))
4220
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
4221
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
4222
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216694, -3.76069069, 0.610641479, -0.49999845, 0.565649092, -0.655776381, -0.612375081, -0.766361952, -0.194129199, -0.612371087, 0.304516733, 0.729569316))
4223
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
4224
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
4225
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80275726, -7.76274252, -1.88209915, -0.49999845, 0.565649092, -0.655776381, -0.390038431, -0.823161662, -0.412643731, -0.773221493, 0.0494567379, 0.632204533))
4226
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4227
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
4228
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216217, -3.84443283, 0.870663643, -0.49999845, 0.565649092, -0.655776381, -0.866026282, -0.326575905, 0.378611505, 4.32133675e-007, 0.757224679, 0.653154492))
4229
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4230
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
4231
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80217838, -3.45362091, 1.0825386, -0.49999845, 0.565649092, -0.655776381, -0.836517394, -0.511432052, 0.196662098, -0.224143416, 0.646898985, 0.728890657))
4232
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4233
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
4234
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216312, -3.65211487, 0.818996429, -0.49999845, 0.565649092, -0.655776381, -0.75000155, -0.66143465, 0.00131103396, -0.433011711, 0.492488772, 0.7549541))
4235
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4236
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
4237
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80037689, 1.2548027, -0.231477737, -0.49999845, 0.565649092, -0.655776381, 0.836517692, 0.511431158, -0.196663141, 0.224142194, -0.6468997, -0.7288903))
4238
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4239
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
4240
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.37387466, 0.0131607056, 3.24288177, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
4241
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
4242
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
4243
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.45108032, -0.324279785, 3.24173164, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
4244
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
4245
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
4246
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.45108795, 0.0165786743, 3.23201942, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
4247
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
4248
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
4249
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.45106888, 0.370029449, 3.24633598, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
4250
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
4251
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
4252
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.458839417, 5.15813541, 3.2103529, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
4253
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
4254
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
4255
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.458843231, 4.46384811, 3.20575047, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
4256
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
4257
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
4258
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.458824158, 4.80470562, 3.19602489, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
4259
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
4260
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
4261
Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.381649017, 4.80128193, 3.20690632, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
4262
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
4263
4264
4265
4266
4267
	Player=game:GetService('Players').LocalPlayer
4268
	Character=Player.Character
4269
	Mouse=Player:GetMouse()
4270
	m=Instance.new('Model',Character)
4271
4272
4273
	local function weldBetween(a, b)
4274
	    local weldd = Instance.new("ManualWeld")
4275
	    weldd.Part0 = a
4276
	    weldd.Part1 = b
4277
	    weldd.C0 = CFrame.new()
4278
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
4279
	    weldd.Parent = a
4280
	    return weldd
4281
	end
4282
	
4283
	it=Instance.new
4284
	
4285
	function nooutline(part)
4286
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
4287
	end
4288
	
4289
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
4290
		local fp=it("Part")
4291
		fp.formFactor=formfactor
4292
		fp.Parent=parent
4293
		fp.Reflectance=reflectance
4294
		fp.Transparency=transparency
4295
		fp.CanCollide=false
4296
		fp.Locked=true
4297
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
4298
		fp.Name=name
4299
		fp.Size=size
4300
		fp.Position=Character.Torso.Position
4301
		nooutline(fp)
4302
		fp.Material=material
4303
		fp:BreakJoints()
4304
		return fp
4305
	end
4306
	
4307
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
4308
		local mesh=it(Mesh)
4309
		mesh.Parent=part
4310
		if Mesh=="SpecialMesh" then
4311
			mesh.MeshType=meshtype
4312
			mesh.MeshId=meshid
4313
		end
4314
		mesh.Offset=offset
4315
		mesh.Scale=scale
4316
		return mesh
4317
	end
4318
	
4319
	function weld(parent,part0,part1,c0,c1)
4320
		local weld=it("Weld")
4321
		weld.Parent=parent
4322
		weld.Part0=part0
4323
		weld.Part1=part1
4324
		weld.C0=c0
4325
		weld.C1=c1
4326
		return weld
4327
	end
4328
4329
BladeEnd=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle",Vector3.new(0.333970994, 2.40790987, 0.825482368))
4330
BladeEndweld=weld(m,Character["Right Arm"],BladeEnd,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.450769424, -5.79949188, -1.7236805, -0.999986351, -0.00451200129, -0.00263599772, 0.00276065455, -0.0278460663, -0.999610126, 0.00443684589, -0.999605477, 0.0278581958))
4331
mesh("BlockMesh",BladeEnd,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
4332
Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 2.93125677, 0.825482368))
4333
Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.90734863e-005, -5.98527908, 0.00445604324, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4334
mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
4335
Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.442278117, 0.333971083))
4336
Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-005, -2.39555359, 3.80643082, 1, -5.3551048e-009, 1.5788828e-009, -1.62981451e-009, 0.500003278, 0.866030395, 5.12227416e-009, -0.866027415, 0.500004888))
4337
mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
4338
Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.426588923, 0.333971083))
4339
Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-006, 2.40819931, 3.84829712, 1, -5.3551048e-009, 1.5788828e-009, 4.07453626e-009, -0.499998868, 0.866032958, 3.95812094e-009, -0.866030097, -0.500000536))
4340
mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.834210217))
4341
Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.442278117, 0.333971083))
4342
Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.33514404e-005, 0.468460083, -1.15685654, 1, -5.3551048e-009, 1.5788828e-009, 1.62981451e-009, -0.500003278, -0.866030395, -5.12227416e-009, 0.866027415, -0.500004888))
4343
mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
4344
Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 3.13969851, 0.398512334))
4345
Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(5.7220459e-006, -2.85785294, 0.00391054153, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4346
mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
4347
Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.426588923, 0.333971083))
4348
Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.458122253, -1.16581345, 1, -5.3551048e-009, 1.5788828e-009, -4.07453626e-009, 0.499998868, -0.866032958, -3.95812094e-009, 0.866030097, 0.500000536))
4349
mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
4350
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4351
BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00392150879, -0.000373840332, 6.66751862, 1, -3.30619514e-008, -9.9773024e-007, 1.00096076e-006, 1.07847154e-006, 1.00000679, -2.28174031e-008, -1.00000346, 1.09151006e-006))
4352
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.884725809, 0.0892784372))
4353
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4354
BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00390815735, 6.52303314, 1.88164616, 1, -5.3551048e-009, 1.5788828e-009, 5.58793545e-009, -0.965928555, 0.258823007, -4.65661287e-010, -0.258822083, -0.965931714))
4355
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
4356
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4357
BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00391769409, 0.0489282608, 6.86997986, 1, -3.30619514e-008, -9.9773024e-007, 1.00096076e-006, 1.07847154e-006, 1.00000679, -2.28174031e-008, -1.00000346, 1.09151006e-006))
4358
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.616281807, 0.0892784372))
4359
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4360
BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00391578674, 5.61977386, 3.36309242, 1, -3.30619514e-008, -9.9773024e-007, 4.8102811e-007, -0.866027653, 0.50000453, -8.77771527e-007, -0.500002861, -0.866030633))
4361
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.794125915, 0.0892784372))
4362
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.452364713, 0.333971083))
4363
BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0039100647, -6.65688705, 0.13747406, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4364
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 1, 0.0892784372))
4365
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4366
BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00391578674, 6.71179581, 0.134818077, 1, -5.3551048e-009, 1.5788828e-009, 5.3551048e-009, -1.00000346, 5.58793545e-009, -1.5788828e-009, 5.58793545e-009, -1.00000691))
4367
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.34112677, 0.0892784372))
4368
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4369
BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00389480591, 4.77613449, 4.91134644, 1, -5.3551048e-009, 1.5788828e-009, 4.88944352e-009, -0.707108498, 0.707112134, 2.79396772e-009, -0.707109809, -0.707111001))
4370
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
4371
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4372
BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00392341614, 5.84634399, 3.51166153, 1, -5.3551048e-009, 1.5788828e-009, 5.3551048e-009, -0.86602813, 0.500003815, 1.62981451e-009, -0.500002027, -0.866031051))
4373
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
4374
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4375
BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00389862061, 1.71303558, 6.64987946, 1, -3.30619514e-008, -9.9773024e-007, 9.61008482e-007, -0.258820415, 0.96593225, -2.80793756e-007, -0.965929031, -0.258821368))
4376
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
4377
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.672227144, 1.760818))
4378
BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00542259216, -0.378371716, 8.37445831, -1, -8.87969509e-006, 4.24777681e-006, -4.31565422e-006, 0.00727553666, -0.999980152, 8.85874033e-006, -0.999976993, -0.00727554969))
4379
mesh("SpecialMesh",BladeNeon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.774613976, 1, 1))
4380
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 5.69591618, 0.333971083))
4381
BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000516891479, -2.73707199, -0.00561141968, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4382
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.844456613, 1, 0.458388805))
4383
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 8.72168827, 1.36339724))
4384
BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00561523438, -3.13931656, -0.0179476738, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4385
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.760567904, 1, 1))
4386
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.681192338, 1.760818))
4387
BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00429534912, -0.295157909, 8.37542725, 1, 8.87969509e-006, -4.24777681e-006, 4.31533408e-006, -0.0072765369, 0.999980271, 8.85874033e-006, -0.999976933, -0.0072765518))
4388
mesh("SpecialMesh",BladeNeon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.767835736, 1, 1))
4389
Handle=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle",Vector3.new(0.333970994, 3.65670252, 0.333971083))
4390
Handleweld=weld(m,BladeEnd,Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00547122955, -5.38523102, -0.00175476074, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1.36788003e-006, -1.00000346, 2.09547579e-006, 1, 1.35786831e-006, 1.63512595e-007))
4391
mesh("CylinderMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(0.677820504, 1, 0.80868715))
4392
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4393
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00848770142, 4.68890381, 5.0786438, -1, 5.3551048e-009, -1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, -4.88944352e-009, 0.707108498, -0.707112134))
4394
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.567087829))
4395
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.90585577, 1.45080817))
4396
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0022315979, 2.16143417, -0.0224318504, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4397
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
4398
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4399
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000429153442, -0.148144245, 1.37475967, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
4400
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4401
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.615819991, 1.04920125))
4402
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00186729431, 0.705814362, 1.8845787, -1, -5.0291419e-008, -2.00066279e-006, -1.46543607e-006, 0.701945484, 0.712237716, 1.35891605e-006, 0.712235332, -0.701947927))
4403
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.847812057, 1, 1))
4404
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.730286956, 0.333971083))
4405
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00281333923, 2.86053848, 0.11316824, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4406
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 0.270477563))
4407
Handle2=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.51886344, 0.333971083, 0.636532664))
4408
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00347757339, -0.00207901001, 2.874897, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
4409
mesh("CylinderMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.842242956, 1))
4410
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
4411
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000751495361, 0.735794067, 2.04483795, -1, -5.0291419e-008, -2.00066279e-006, -1.46543607e-006, 0.701945484, 0.712237716, 1.35891605e-006, 0.712235332, -0.701947927))
4412
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
4413
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.750458777, 0.333971083))
4414
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00281143188, 2.86390305, -0.125523567, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4415
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 0.270477563))
4416
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 2.43250322))
4417
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00225639343, 3.24793243, -0.0257816315, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4418
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
4419
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.477399707, 0.333971083))
4420
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00573730469, 5.12487411, 5.07043457, 1, -5.3551048e-009, 1.5788828e-009, -4.88944352e-009, 0.707108498, -0.707112134, -2.79396772e-009, 0.707109809, 0.707111001))
4421
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
4422
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4423
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00847434998, 5.07132339, 5.49375916, -1, 5.3551048e-009, -1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, -4.88944352e-009, 0.707108498, -0.707112134))
4424
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.781843007))
4425
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.71422374, 0.527387738))
4426
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00225067139, 0.240013123, -0.00784635544, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4427
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.869846582, 1, 1))
4428
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4429
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00223922729, 3.48665237, -0.0140166283, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4430
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 0.414765924))
4431
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.23496354, 0.333971083))
4432
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0057144165, 6.50336838, 0.0964884758, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4433
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.637554169))
4434
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4435
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00573348999, 4.2307663, -4.09196472, 1, -5.3551048e-009, 1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, 4.88944352e-009, -0.707108498, 0.707112134))
4436
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 0.452999234, 0.452998996))
4437
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.963326454))
4438
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00227165222, 3.39096451, 0.390414715, 1, -5.3551048e-009, 1.5788828e-009, -5.58793545e-009, 0.965928555, -0.258823007, 4.65661287e-010, 0.258822083, 0.965931714))
4439
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
4440
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.963326454))
4441
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00225067139, 3.38317871, -0.408802032, 1, -5.3551048e-009, 1.5788828e-009, -4.42378223e-009, 0.965928733, 0.25882256, 2.96859071e-009, -0.258821636, 0.965931952))
4442
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
4443
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.530070603, 0.595068455))
4444
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00849342346, -3.96007156, 6.41414642, -1.00000012, 2.06101686e-006, 1.94132008e-006, 5.31668775e-007, -0.539589584, 0.841935158, 2.77510844e-006, 0.841932237, 0.539591372))
4445
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 1, 1))
4446
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.452745259, 0.333971083))
4447
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00574302673, 4.75794983, 4.6880188, 1, -5.3551048e-009, 1.5788828e-009, -4.88944352e-009, 0.707108498, -0.707112134, -2.79396772e-009, 0.707109809, 0.707111001))
4448
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
4449
Handle2=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.356368661))
4450
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00491142273, -3.52550125, -0.00119590759, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1.36788003e-006, -1.00000346, 2.09547579e-006, 1, 1.35786831e-006, 1.63512595e-007))
4451
mesh("CylinderMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.788553476, 0.718087614, 1))
4452
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.391848803, 0.756001353))
4453
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00224113464, 0.895763397, 0.829719543, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 0.866027653, -0.50000453, -1.39698386e-009, 0.500002861, 0.866030633))
4454
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
4455
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4456
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000440597534, -0.138348579, 0.894599915, 1, 1.88290142e-006, -4.05231549e-006, 4.06977051e-006, -0.00727253594, 0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
4457
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4458
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4459
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000467300415, -0.172971725, -4.87036133, 1, -3.86452302e-006, 5.11141843e-006, 5.13588748e-006, 0.00727250986, -0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
4460
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4461
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
4462
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00296974182, 0.775684357, 2.01208115, 1, -9.49250534e-007, 2.02898082e-006, 2.10141297e-006, 0.701943696, -0.712239444, -7.53090717e-007, 0.712237179, 0.70194608))
4463
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
4464
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4465
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000457763672, -0.0884757042, 7.14133453, 1, 1.88290142e-006, -4.05231549e-006, 4.06977051e-006, -0.00727253594, 0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
4466
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4467
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4468
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00278663635, 2.60951233, -0.0151414871, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4469
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 0.683390796, 0.723476529))
4470
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.615819991, 1.04920125))
4471
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00187492371, 0.745685577, 1.8518219, 1, -9.49250534e-007, 2.02898082e-006, 2.10141297e-006, 0.701943696, -0.712239444, -7.53090717e-007, 0.712237179, 0.70194608))
4472
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.847812057, 1, 1))
4473
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
4474
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00299263, -1.55075121, 3.68893433, -1, 9.7672455e-007, -1.02919876e-006, -1.01856858e-006, 0.007278217, 0.99998033, 9.73697752e-007, 0.999976873, -0.00727825798))
4475
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
4476
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4477
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000438690186, -0.132833481, 0.892940521, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
4478
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4479
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4480
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000461578369, -0.098233223, -4.87198639, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
4481
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4482
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4483
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000400543213, -0.123067856, 1.37639999, 1, -3.86452302e-006, 5.11141843e-006, 5.13588748e-006, 0.00727250986, -0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
4484
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4485
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
4486
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00226783752, -1.49668598, 3.68751907, 1, 2.25845724e-008, 1.00135367e-006, 9.98486939e-007, 0.00727552548, -0.999980271, -4.02797014e-008, 0.999976993, 0.00727553107))
4487
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
4488
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.71422374, 0.527387738))
4489
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00223731995, -6.00695419, -0.00337791443, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4490
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.861234307, 1, 1))
4491
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4492
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000419616699, -0.182757378, 7.13973236, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
4493
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4494
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.391848803, 0.756001353))
4495
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00224304199, 0.873001099, -0.876026154, 1, -5.3551048e-009, 1.5788828e-009, -3.25962901e-009, 0.866028011, 0.500003994, 3.95812094e-009, -0.500002265, 0.866030872))
4496
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
4497
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.397666305, 1.13997447))
4498
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000431060791, -0.155970097, 8.00754547, 1, 1.88290142e-006, -4.05231549e-006, 4.06977051e-006, -0.00727253594, 0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
4499
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.798337698, 1, 1))
4500
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.435768574, 1.13997447))
4501
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00150680542, -0.259859562, 8.01216888, -1, -8.87969509e-006, 4.24777681e-006, -4.31565422e-006, 0.00727553666, -0.999980152, 8.85874033e-006, -0.999976993, -0.00727554969))
4502
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.805115938, 1, 1))
4503
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.477399707, 0.333971083))
4504
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00572776794, 3.31259918, 1.56507874, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 0.86602813, -0.500003815, -1.62981451e-009, 0.500002027, 0.866031051))
4505
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
4506
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4507
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00847244263, 1.56596184, 3.68146133, -1, 5.3551048e-009, -1.5788828e-009, -1.62981451e-009, 0.500003278, 0.866030395, -5.12227416e-009, 0.866027415, -0.500004888))
4508
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.781843007))
4509
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4510
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00846862793, -0.113676071, -3.98678207, -1, 5.3551048e-009, -1.5788828e-009, -6.54836185e-010, -0.114217885, -0.993462563, 5.3551048e-009, -0.993459225, 0.11421828))
4511
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.563732326))
4512
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.652221978))
4513
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00847244263, 2.12783813, 4.00239944, 1, 5.0291419e-008, 2.00066279e-006, 1.7893035e-006, 0.418343931, -0.908295453, -8.91042873e-007, 0.908292413, 0.418345362))
4514
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.523465693, 1))
4515
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.534553051))
4516
Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00848197937, -0.114953518, 4.34464645, 1, -5.3551048e-009, 1.5788828e-009, -6.54836185e-010, -0.114217885, -0.993462563, -5.3551048e-009, 0.993459165, -0.114218257))
4517
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 1))
4518
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 1.76913583, 0.333971083))
4519
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00280761719, 2.54881287, -0.00673675537, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4520
mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.851167679, 1, 0.444966584))
4521
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.615819991, 1.04920125))
4522
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00242233276, 0.781448364, 1.95035934, 1, -9.49250534e-007, 2.02898082e-006, 2.10141297e-006, 0.701943696, -0.712239444, -7.53090717e-007, 0.712237179, 0.70194608))
4523
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 1))
4524
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4525
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.11886787, -0.00262260437, 3.30176163, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
4526
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
4527
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
4528
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00124740601, -0.197305202, 1.52207947, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
4529
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4530
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4531
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.12582397, -0.00260162354, 3.30752563, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
4532
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
4533
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
4534
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00125694275, -0.156280041, 1.52334595, 1, -3.86452302e-006, 5.11141843e-006, 5.13573468e-006, 0.00727050938, -0.999980271, 3.81702557e-006, 0.999976993, 0.00727053359))
4535
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4536
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.403703302))
4537
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00126838684, 2.85546875, 0.447472572, 1, 2.25845724e-008, 1.00135367e-006, -4.02797014e-008, 0.999976933, 0.00727766939, -9.98494215e-007, -0.00727765262, 0.999980211))
4538
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 1))
4539
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
4540
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00126075745, 1.30287552, 1.671875, -1, 3.86452302e-006, -5.11141843e-006, -9.32952389e-007, 0.701947451, 0.712235808, 6.33043237e-006, 0.712233365, -0.701949954))
4541
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.190766811, 1))
4542
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.403703302))
4543
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00127220154, 2.8675766, 0.511937141, -1, 3.86452302e-006, -5.11141843e-006, 3.81679274e-006, 0.999976873, 0.00727466121, 5.1354582e-006, 0.00727464817, -0.999980271))
4544
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 1))
4545
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.615819991, 1.04920125))
4546
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00128173828, 0.741531372, 1.98311234, -1, -5.0291419e-008, -2.00066279e-006, -1.46543607e-006, 0.701945484, 0.712237716, 1.35891605e-006, 0.712235332, -0.701947927))
4547
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 1))
4548
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4549
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00129127502, 2.06131363, -1.58065796, -1, 3.86452302e-006, -5.11141843e-006, 6.3306652e-006, 0.712233424, -0.701949954, 9.32952389e-007, -0.701947451, -0.712235808))
4550
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 0.873242319))
4551
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4552
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.65778923, -0.00261688232, 3.554142, 9.13976692e-007, -0.298402101, 0.954447031, 1, 2.66823918e-007, -8.68145435e-007, -4.42378223e-009, 0.954443753, 0.298403084))
4553
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
4554
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4555
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.071811676, -0.00623512268, 6.19100571, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
4556
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
4557
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4558
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0718102455, -0.00624275208, 6.83526611, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
4559
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
4560
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4561
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0718164444, -0.00625419617, 6.99786377, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
4562
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
4563
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4564
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0718173981, -0.00625228882, 6.02839279, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
4565
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
4566
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.633004189, 1.13885355))
4567
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00294113159, -1.51745224, 3.69674301, 1, 2.25845724e-008, 1.00135367e-006, 9.98486939e-007, 0.00727552548, -0.999980271, -4.02797014e-008, 0.999976993, 0.00727553107))
4568
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.790433347, 1, 1))
4569
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
4570
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00124549866, -0.169769287, 1.02795029, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
4571
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4572
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
4573
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00121879578, -0.147402763, -4.72467804, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
4574
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4575
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4576
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00126075745, 2.0196228, -1.61859512, 1, 2.25845724e-008, 1.00135367e-006, -7.34464265e-007, 0.70194453, 0.712238789, -6.76838681e-007, -0.712236404, 0.701947033))
4577
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 0.940353274))
4578
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
4579
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00123596191, 1.31023407, 1.65644073, 1, 4.13204543e-006, 4.88809019e-006, 5.71715645e-007, 0.701945722, -0.712237537, -6.37990888e-006, 0.712235212, 0.701948166))
4580
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.190766811, 1))
4581
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 2.02464533, 0.704451442))
4582
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00224876404, -5.9966774, -0.00673389435, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4583
mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.834389985, 1, 1))
4584
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
4585
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00121307373, -0.206172466, -4.72341537, 1, -3.86452302e-006, 5.11141843e-006, 5.13573468e-006, 0.00727050938, -0.999980271, 3.81702557e-006, 0.999976993, 0.00727053359))
4586
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4587
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
4588
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00122642517, -0.219696999, 7.27475739, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
4589
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4590
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4591
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.709104538, 0.00263023376, 3.57127762, 5.24742063e-007, -0.298404753, -0.954446197, -1, 1.02631748e-006, -8.71201337e-007, 1.22864731e-006, 0.954442978, -0.298405796))
4592
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
4593
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
4594
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00124359131, -0.133904457, 7.27602386, 1, 1.88290142e-006, -4.05231549e-006, 4.06897016e-006, -0.00727054104, 0.99998033, 1.86357647e-006, -0.999976873, -0.00727054477))
4595
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4596
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 2.02464533, 0.704451442))
4597
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0022354126, 0.250286102, -0.011218071, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
4598
mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.834389985, 1, 1))
4599
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
4600
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00124740601, -0.18379879, 1.0292511, 1, 1.88290142e-006, -4.05231549e-006, 4.06897016e-006, -0.00727054104, 0.99998033, 1.86357647e-006, -0.999976873, -0.00727054477))
4601
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4602
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4603
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0027923584, 2.42457581, -2.43035126, 1, -5.3551048e-009, 1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, 4.88944352e-009, -0.707108498, 0.707112134))
4604
mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.851167679, 0.317635983, 0.314100146))
4605
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.620843053, 0.333971083, 0.636532664))
4606
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00516605377, -0.00261116028, 2.88111496, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
4607
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.832176328, 1))
4608
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.633004189, 1.13885355))
4609
Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00233078003, -1.57151031, 3.69814682, -1, 9.7672455e-007, -1.02919876e-006, -1.01856858e-006, 0.007278217, 0.99998033, 9.73697752e-007, 0.999976873, -0.00727825798))
4610
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.790433347, 1, 1))
4611
4612
	Player=game:GetService('Players').LocalPlayer
4613
	Character=Player.Character
4614
	Mouse=Player:GetMouse()
4615
	m=Instance.new('Model',Character)
4616
4617
4618
	local function weldBetween(a, b)
4619
	    local weldd = Instance.new("ManualWeld")
4620
	    weldd.Part0 = a
4621
	    weldd.Part1 = b
4622
	    weldd.C0 = CFrame.new()
4623
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
4624
	    weldd.Parent = a
4625
	    return weldd
4626
	end
4627
	
4628
	it=Instance.new
4629
	
4630
	function nooutline(part)
4631
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
4632
	end
4633
	
4634
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
4635
		local fp=it("Part")
4636
		fp.formFactor=formfactor
4637
		fp.Parent=parent
4638
		fp.Reflectance=reflectance
4639
		fp.Transparency=transparency
4640
		fp.CanCollide=false
4641
		fp.Locked=true
4642
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
4643
		fp.Name=name
4644
		fp.Size=size
4645
		fp.Position=Character.Torso.Position
4646
		nooutline(fp)
4647
		fp.Material=material
4648
		fp:BreakJoints()
4649
		return fp
4650
	end
4651
	
4652
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
4653
		local mesh=it(Mesh)
4654
		mesh.Parent=part
4655
		if Mesh=="SpecialMesh" then
4656
			mesh.MeshType=meshtype
4657
			mesh.MeshId=meshid
4658
		end
4659
		mesh.Offset=offset
4660
		mesh.Scale=scale
4661
		return mesh
4662
	end
4663
	
4664
	function weld(parent,part0,part1,c0,c1)
4665
		local weld=it("Weld")
4666
		weld.Parent=parent
4667
		weld.Part0=part0
4668
		weld.Part1=part1
4669
		weld.C0=c0
4670
		weld.C1=c1
4671
		return weld
4672
	end
4673
4674
Face=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Really black","Handle",Vector3.new(2.39999938, 2.39999938, 2.39999938))
4675
Face.Shape = "Ball"
4676
Faceweld=weld(m,Character["Head"],Face,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0199375153, 0.150016785, -0.590007782, -1, 0, 0, 0, 1, 0, 0, 0, -1))
4677
4678
4679
	Player=game:GetService('Players').LocalPlayer
4680
	Character=Player.Character
4681
	Mouse=Player:GetMouse()
4682
	m=Instance.new('Model',Character)
4683
4684
4685
	local function weldBetween(a, b)
4686
	    local weldd = Instance.new("ManualWeld")
4687
	    weldd.Part0 = a
4688
	    weldd.Part1 = b
4689
	    weldd.C0 = CFrame.new()
4690
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
4691
	    weldd.Parent = a
4692
	    return weldd
4693
	end
4694
	
4695
	it=Instance.new
4696
	
4697
	function nooutline(part)
4698
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
4699
	end
4700
	
4701
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
4702
		local fp=it("Part")
4703
		fp.formFactor=formfactor
4704
		fp.Parent=parent
4705
		fp.Reflectance=reflectance
4706
		fp.Transparency=transparency
4707
		fp.CanCollide=false
4708
		fp.Locked=true
4709
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
4710
		fp.Name=name
4711
		fp.Size=size
4712
		fp.Position=Character.Torso.Position
4713
		nooutline(fp)
4714
		fp.Material=material
4715
		fp:BreakJoints()
4716
		return fp
4717
	end
4718
	
4719
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
4720
		local mesh=it(Mesh)
4721
		mesh.Parent=part
4722
		if Mesh=="SpecialMesh" then
4723
			mesh.MeshType=meshtype
4724
			mesh.MeshId=meshid
4725
		end
4726
		mesh.Offset=offset
4727
		mesh.Scale=scale
4728
		return mesh
4729
	end
4730
	
4731
	function weld(parent,part0,part1,c0,c1)
4732
		local weld=it("Weld")
4733
		weld.Parent=parent
4734
		weld.Part0=part0
4735
		weld.Part1=part1
4736
		weld.C0=c0
4737
		weld.C1=c1
4738
		return weld
4739
	end
4740
4741
Back=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(4.37000132, 3.20000124, 1.59000123))
4742
Backweld=weld(m,Character["Torso"],Back,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0149364471, -0.464990616, 1.0450058, -1, 0, 0, 0, 1, 0, 0, 0, -1))
4743
4744
local size = 40,40,40
4745
4746
4747
----------------------------------------------------
4748
	Player=game:GetService('Players').LocalPlayer
4749
	Character=Player.Character
4750
	Mouse=Player:GetMouse()
4751
	m=Instance.new('Model',Character)
4752
4753
4754
	local function weldBetween(a, b)
4755
	    local weldd = Instance.new("ManualWeld")
4756
	    weldd.Part0 = a
4757
	    weldd.Part1 = b
4758
	    weldd.C0 = CFrame.new()
4759
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
4760
	    weldd.Parent = a
4761
	    return weldd
4762
	end
4763
	
4764
	it=Instance.new
4765
	
4766
	function nooutline(part)
4767
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
4768
	end
4769
	
4770
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
4771
		local fp=it("Part")
4772
		fp.formFactor=formfactor
4773
		fp.Parent=parent
4774
		fp.Reflectance=reflectance
4775
		fp.Transparency=transparency
4776
		fp.CanCollide=false
4777
		fp.Locked=true
4778
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
4779
		fp.Name=name
4780
		fp.Size=size
4781
		fp.Position=Character.Torso.Position
4782
		nooutline(fp)
4783
		fp.Material=material
4784
		fp:BreakJoints()
4785
		return fp
4786
	end
4787
	
4788
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
4789
		local mesh=it(Mesh)
4790
		mesh.Parent=part
4791
		if Mesh=="SpecialMesh" then
4792
			mesh.MeshType=meshtype
4793
			mesh.MeshId=meshid
4794
		end
4795
		mesh.Offset=offset
4796
		mesh.Scale=scale
4797
		return mesh
4798
	end
4799
	
4800
	function weld(parent,part0,part1,c0,c1)
4801
		local weld=it("Weld")
4802
		weld.Parent=parent
4803
		weld.Part0=part0
4804
		weld.Part1=part1
4805
		weld.C0=c0
4806
		weld.C1=c1
4807
		return weld
4808
	end
4809
4810
F3=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0.5,"Really black","Handle",Vector3.new(30.6000023, 30.6000023, 30.6000023))
4811
F3weld=weld(m,Character["Torso"],F3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.35006237, -0.479990005, 1.62999344, -1, 0, 0, 0, 1, 0, 0, 0, -1))
4812
F3.Name = "F3"
4813
F3.Shape = "Ball"
4814
F3.CanCollide = false
4815
F3.Size = Vector3.new(size)
4816
F3.Transparency = 0.7
4817
F3.Material = "Neon"
4818
F3.Anchored = true
4819
F3.BrickColor = BrickColor.new(0,0,0)
4820
F3.Locked = true
4821
F3.Archivable = false
4822
4823
4824
4825
local p = F3
4826
local me = game.Players.LocalPlayer.Character
4827
 game.Workspace.CodedOverLordPlush.Humanoid.JumpPower = 400
4828
4829
4830
p.Shape = "Ball"
4831
4832
game:GetService('RunService').Stepped:connect(function()
4833
	p.CFrame = me.Torso.CFrame * CFrame.new(0,0,0) * CFrame.Angles(0,0,0)
4834
end)
4835
4836
4837
wait(0.1)
4838
4839
F3.CanCollide = false
4840
F3.CanCollide = false
4841
4842
4843
F3.Transparency = 0.9