View difference between Paste ID: NSYxYgsY and Z4BHCUrV
SHOW: | | - or go back to the newest paste.
1
2
3
local p = game.Players.LocalPlayer
4
local char = p.Character
5
local mouse = p:GetMouse()
6
local larm = char["Left Arm"]
7
local rarm = char["Right Arm"]
8
local lleg = char["Left Leg"]
9
local rleg = char["Right Leg"]
10
local hed = char.Head
11
local torso = char.Torso
12
local hum = char.Humanoid
13
local cam = game.Workspace.CurrentCamera
14
local root = char.HumanoidRootPart
15
local deb = false
16
local shot = 0
17
local l = game:GetService("Lighting")
18
local rs = game:GetService("RunService").RenderStepped
19
local stanceToggle = "Normal"
20
math.randomseed(os.time())
21
hum.WalkSpeed = 7
22
char.Health:Destroy()
23
hum.MaxHealth = 50000
24
wait(0.01)
25
hum.Health = 50000
26
----------------------------------------------------
27
----------------------------------------------------
28
shirt = Instance.new("Shirt", char)
29
shirt.Name = "Shirt"
30
pants = Instance.new("Pants", char)
31
pants.Name = "Pants"
32
char.Shirt.ShirtTemplate = "rbxassetid://237906462"
33
char.Pants.PantsTemplate = "rbxassetid://237906462"
34
----------------------------------------------------
35
----------------------------------------------------
36
Debounces = {
37
on = false;
38
ks = false;
39
CanAttack = true;
40
CanJoke = true;
41
NoIdl = false;
42
Slashing = false;
43
Slashed = false;
44
Grabbing = false;
45
Grabbed = false;
46
}
47
local Touche = {char.Name, }
48
----------------------------------------------------
49
function lerp(a, b, t) -- Linear interpolation
50
    return a + (b - a)*t
51
end
52
 
53
function slerp(a, b, t) --Spherical interpolation
54
    dot = a:Dot(b)
55
    if dot > 0.99999 or dot < -0.99999 then
56
        return t <= 0.5 and a or b
57
    else
58
        r = math.acos(dot)
59
        return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
60
    end
61
end
62
 
63
function matrixInterpolate(a, b, t)
64
    local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
65
    local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
66
    local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
67
    local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector  right
68
    local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector  up
69
    local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector  back
70
    local t = v1:Dot(v2)
71
    if not (t < 0 or t == 0 or t > 0) then     -- Failsafe
72
        return CFrame.new()
73
    end
74
    return CFrame.new(
75
    v0.x, v0.y, v0.z,
76
    v1.x, v1.y, v1.z,
77
    v2.x, v2.y, v2.z,
78
    v3.x, v3.y, v3.z)
79
end
80
----------------------------------------------------
81
function genWeld(a,b)
82
    local w = Instance.new("Weld",a)
83
    w.Part0 = a
84
    w.Part1 = b
85
    return w
86
end
87
function weld(a, b)
88
    local weld = Instance.new("Weld")
89
    weld.Name = "W"
90
    weld.Part0 = a
91
    weld.Part1 = b
92
    weld.C0 = a.CFrame:inverse() * b.CFrame
93
    weld.Parent = a
94
    return weld;
95
end
96
----------------------------------------------------
97
function Lerp(c1,c2,al)
98
local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
99
local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
100
for i,v in pairs(com1) do 
101
com1[i] = v+(com2[i]-v)*al
102
end
103
return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
104
end
105
----------------------------------------------------
106
newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
107
local wld = Instance.new("Weld", wp1)
108
wld.Part0 = wp0
109
wld.Part1 = wp1
110
wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
111
end
112
----------------------------------------------------
113
for i,v in pairs(char:children()) do
114
    if v:IsA("Hat") then
115
        v:Destroy()
116
    end
117
end
118
for i,v in pairs(hed:children()) do
119
    if v:IsA("Sound") then
120
        v:Destroy()
121
    end
122
end
123
----------------------------------------------------
124
function HasntTouched(plrname)
125
local ret = true
126
for _, v in pairs(Touche) do
127
if v == plrname then
128
ret = false
129
end
130
end
131
return ret
132
end
133
----------------------------------------------------
134
larm.Size = larm.Size * 2
135
rarm.Size = rarm.Size * 2
136
lleg.Size = lleg.Size * 2
137
rleg.Size = rleg.Size * 2
138
torso.Size = torso.Size * 2
139
hed.Size = hed.Size * 2
140
root.Size = root.Size * 2
141
----------------------------------------------------
142
newWeld(torso, larm, -1.5, 0.5, 0)
143
larm.Weld.C1 = CFrame.new(0, 0.5, 0)
144
newWeld(torso, rarm, 1.5, 0.5, 0)
145
rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
146
newWeld(torso, hed, 0, 1.5, 0)
147
newWeld(torso, lleg, -0.5, -1, 0)
148
lleg.Weld.C1 = CFrame.new(0, 1, 0)
149
newWeld(torso, rleg, 0.5, -1, 0)
150
rleg.Weld.C1 = CFrame.new(0, 1, 0)
151
newWeld(root, torso, 0, -1, 0)
152
torso.Weld.C1 = CFrame.new(0, -1, 0)
153
hed.Transparency = 1
154
----------------------------------------------------
155
lite = Instance.new("PointLight", torso)
156
lite.Brightness = 100
157
lite.Range = 15
158
lite.Color = Color3.new(2, 2, 2)
159
--[[local hed2 = hed:Clone()
160
hed2.CanCollide = false
161
hed2.Parent = char
162
hed2:ClearAllChildren()
163
hed2.Transparency = 1
164
hed2.Name = "DARP"
165
local w = Instance.new("Weld",hed2)
166
w.Part0 = hed
167
w.Part1 = hed2
168
w.C0 = CFrame.new(0,0,-0.175)
169
z=Instance.new("SurfaceGui",hed2)
170
z.Enabled = true
171
z.Face = "Front"
172
z.Adornee = hed2
173
z.CanvasSize = Vector2.new(100,100)
174
local face = Instance.new("ImageLabel",z)
175
face.Size = UDim2.new(1,-30,1,0)
176
face.Position = UDim2.new(0,15,0,0)
177
face.BackgroundTransparency = 1
178
face.Image='rbxassetid://46282671']]--
179
----------------------------------------------------
180
z = Instance.new("Sound", char)
181
z.SoundId = "rbxassetid://1498886681"--504618717 into sound
182-
z.SoundId = "rbxassetid://242463565"--504618717
182+
183
z.Pitch = 1
184
z.Volume = 3
185
wait(.001)
186
z:Play()
187
----------------------------------------------------
188
189
local m = Instance.new("Model")
190
m.Name = "Absolution"
191
p1 = Instance.new("Part", m)
192
p1.BrickColor = BrickColor.new("Bright blue")
193
p1.FormFactor = Enum.FormFactor.Custom
194
p1.Size = Vector3.new(1, 0.600000024, 1.5)
195
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)
196
p1.CanCollide = false
197
p1.Locked = true
198
p1.Elasticity = 0
199
p1.BottomSurface = Enum.SurfaceType.Smooth
200
p1.TopSurface = Enum.SurfaceType.Smooth
201
b1 = Instance.new("SpecialMesh", p1)
202
b1.MeshType = Enum.MeshType.Wedge
203
b1.Name = "Mesh"
204
b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
205
p2 = Instance.new("Part", m)
206
p2.BrickColor = BrickColor.new("Really black")
207
p2.FormFactor = Enum.FormFactor.Custom
208
p2.Size = Vector3.new(1, 2.9000001, 1)
209
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)
210
p2.CanCollide = false
211
p2.Locked = true
212
p2.Elasticity = 0
213
p2.BottomSurface = Enum.SurfaceType.Smooth
214
p2.TopSurface = Enum.SurfaceType.Smooth
215
b2 = Instance.new("BlockMesh", p2)
216
b2.Name = "Mesh"
217
b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
218
p3 = Instance.new("Part", m)
219
p3.BrickColor = BrickColor.new("Bright blue")
220
p3.FormFactor = Enum.FormFactor.Custom
221
p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
222
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)
223
p3.CanCollide = false
224
p3.Locked = true
225
p3.Elasticity = 0
226
p3.BottomSurface = Enum.SurfaceType.Smooth
227
p3.TopSurface = Enum.SurfaceType.Smooth
228
b3 = Instance.new("SpecialMesh", p3)
229
b3.MeshType = Enum.MeshType.Wedge
230
b3.Name = "Mesh"
231
b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
232
p4 = Instance.new("Part", m)
233
p4.BrickColor = BrickColor.new("Bright blue")
234
p4.FormFactor = Enum.FormFactor.Custom
235
p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
236
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)
237
p4.CanCollide = false
238
p4.Locked = true
239
p4.Elasticity = 0
240
p4.BottomSurface = Enum.SurfaceType.Smooth
241
p4.TopSurface = Enum.SurfaceType.Smooth
242
b4 = Instance.new("SpecialMesh", p4)
243
b4.MeshType = Enum.MeshType.Wedge
244
b4.Name = "Mesh"
245
b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
246
p5 = Instance.new("Part", m)
247
p5.BrickColor = BrickColor.new("Bright blue")
248
p5.FormFactor = Enum.FormFactor.Custom
249
p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
250
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)
251
p5.CanCollide = false
252
p5.Locked = true
253
p5.Elasticity = 0
254
p5.BottomSurface = Enum.SurfaceType.Smooth
255
p5.TopSurface = Enum.SurfaceType.Smooth
256
b5 = Instance.new("SpecialMesh", p5)
257
b5.MeshType = Enum.MeshType.Wedge
258
b5.Name = "Mesh"
259
b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
260
p6 = Instance.new("Part", m)
261
p6.Name = "Handle"
262
p6.BrickColor = BrickColor.new("Really black")
263
p6.FormFactor = Enum.FormFactor.Custom
264
p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
265
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)
266
p6.CanCollide = false
267
p6.Locked = true
268
p6.Elasticity = 0
269
p6.BottomSurface = Enum.SurfaceType.Smooth
270
p6.TopSurface = Enum.SurfaceType.Smooth
271
b6 = Instance.new("BlockMesh", p6)
272
b6.Name = "Mesh"
273
b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
274
p7 = Instance.new("Part", m)
275
p7.BrickColor = BrickColor.new("Bright blue")
276
p7.FormFactor = Enum.FormFactor.Custom
277
p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
278
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)
279
p7.CanCollide = false
280
p7.Locked = true
281
p7.Elasticity = 0
282
p7.BottomSurface = Enum.SurfaceType.Smooth
283
p7.TopSurface = Enum.SurfaceType.Smooth
284
b7 = Instance.new("SpecialMesh", p7)
285
b7.MeshType = Enum.MeshType.Wedge
286
b7.Name = "Mesh"
287
b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
288
p8 = Instance.new("Part", m)
289
p8.BrickColor = BrickColor.new("Bright blue")
290
p8.FormFactor = Enum.FormFactor.Custom
291
p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
292
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)
293
p8.CanCollide = false
294
p8.Locked = true
295
p8.Elasticity = 0
296
p8.BottomSurface = Enum.SurfaceType.Smooth
297
p8.TopSurface = Enum.SurfaceType.Smooth
298
b8 = Instance.new("SpecialMesh", p8)
299
b8.MeshType = Enum.MeshType.Wedge
300
b8.Name = "Mesh"
301
b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
302
p9 = Instance.new("Part", m)
303
p9.BrickColor = BrickColor.new("Really black")
304
p9.FormFactor = Enum.FormFactor.Custom
305
p9.Size = Vector3.new(1, 1.07999957, 1)
306
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)
307
p9.CanCollide = false
308
p9.Locked = true
309
p9.Elasticity = 0
310
p9.BottomSurface = Enum.SurfaceType.Smooth
311
p9.TopSurface = Enum.SurfaceType.Smooth
312
b9 = Instance.new("BlockMesh", p9)
313
b9.Name = "Mesh"
314
b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
315
p10 = Instance.new("Part", m)
316
p10.BrickColor = BrickColor.new("Really black")
317
p10.FormFactor = Enum.FormFactor.Custom
318
p10.Size = Vector3.new(1, 1.41999948, 1)
319
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)
320
p10.CanCollide = false
321
p10.Locked = true
322
p10.Elasticity = 0
323
p10.BottomSurface = Enum.SurfaceType.Smooth
324
p10.TopSurface = Enum.SurfaceType.Smooth
325
b10 = Instance.new("BlockMesh", p10)
326
b10.Name = "Mesh"
327
b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
328
p11 = Instance.new("Part", m)
329
p11.BrickColor = BrickColor.new("Really black")
330
p11.FormFactor = Enum.FormFactor.Custom
331
p11.Size = Vector3.new(1, 1.50999951, 1)
332
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)
333
p11.CanCollide = false
334
p11.Locked = true
335
p11.Elasticity = 0
336
p11.BottomSurface = Enum.SurfaceType.Smooth
337
p11.TopSurface = Enum.SurfaceType.Smooth
338
b11 = Instance.new("BlockMesh", p11)
339
b11.Name = "Mesh"
340
b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
341
p12 = Instance.new("Part", m)
342
p12.Name = "BladeCenter"
343
p12.BrickColor = BrickColor.new("Dark stone grey")
344
p12.Material = Enum.Material.Concrete
345
p12.FormFactor = Enum.FormFactor.Symmetric
346
p12.Size = Vector3.new(1, 2, 2)
347
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)
348
p12.CanCollide = false
349
p12.Locked = true
350
p12.BottomSurface = Enum.SurfaceType.Smooth
351
p12.TopSurface = Enum.SurfaceType.Smooth
352
b12 = Instance.new("SpecialMesh", p12)
353
b12.MeshType = Enum.MeshType.Brick
354
b12.Name = "Mesh"
355
b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
356
p13 = Instance.new("Part", m)
357
p13.BrickColor = BrickColor.new("Really black")
358
p13.FormFactor = Enum.FormFactor.Custom
359
p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
360
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)
361
p13.CanCollide = false
362
p13.Locked = true
363
p13.Elasticity = 0
364
p13.BottomSurface = Enum.SurfaceType.Smooth
365
p13.TopSurface = Enum.SurfaceType.Smooth
366
b13 = Instance.new("BlockMesh", p13)
367
b13.Name = "Mesh"
368
b13.Scale = Vector3.new(1, 1, 0.400000006)
369
p14 = Instance.new("Part", m)
370
p14.BrickColor = BrickColor.new("Really black")
371
p14.FormFactor = Enum.FormFactor.Custom
372
p14.Size = Vector3.new(2.5, 2.17999935, 1)
373
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)
374
p14.CanCollide = false
375
p14.Locked = true
376
p14.Elasticity = 0
377
p14.BottomSurface = Enum.SurfaceType.Smooth
378
p14.TopSurface = Enum.SurfaceType.Smooth
379
b14 = Instance.new("BlockMesh", p14)
380
b14.Name = "Mesh"
381
b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
382
p15 = Instance.new("Part", m)
383
p15.BrickColor = BrickColor.new("Really black")
384
p15.FormFactor = Enum.FormFactor.Custom
385
p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
386
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)
387
p15.CanCollide = false
388
p15.Locked = true
389
p15.Elasticity = 0
390
p15.BottomSurface = Enum.SurfaceType.Smooth
391
p15.TopSurface = Enum.SurfaceType.Smooth
392
b15 = Instance.new("BlockMesh", p15)
393
b15.Name = "Mesh"
394
b15.Scale = Vector3.new(1, 1, 0.400000006)
395
p16 = Instance.new("Part", m)
396
p16.BrickColor = BrickColor.new("Really black")
397
p16.FormFactor = Enum.FormFactor.Custom
398
p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
399
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)
400
p16.CanCollide = false
401
p16.Locked = true
402
p16.Elasticity = 0
403
p16.BottomSurface = Enum.SurfaceType.Smooth
404
p16.TopSurface = Enum.SurfaceType.Smooth
405
b16 = Instance.new("BlockMesh", p16)
406
b16.Name = "Mesh"
407
b16.Scale = Vector3.new(1, 1, 0.400000006)
408
p17 = Instance.new("Part", m)
409
p17.BrickColor = BrickColor.new("Really black")
410
p17.FormFactor = Enum.FormFactor.Custom
411
p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
412
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)
413
p17.CanCollide = false
414
p17.Locked = true
415
p17.Elasticity = 0
416
p17.BottomSurface = Enum.SurfaceType.Smooth
417
p17.TopSurface = Enum.SurfaceType.Smooth
418
b17 = Instance.new("BlockMesh", p17)
419
b17.Name = "Mesh"
420
b17.Scale = Vector3.new(1, 1, 0.400000006)
421
p18 = Instance.new("WedgePart", m)
422
p18.BrickColor = BrickColor.new("Dark stone grey")
423
p18.Name = "BladePart1"
424
p18.Material = Enum.Material.Concrete
425
p18.Name = "Wedge"
426
p18.FormFactor = Enum.FormFactor.Symmetric
427
p18.Size = Vector3.new(1, 4, 2)
428
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)
429
p18.CanCollide = false
430
p18.Locked = true
431
p18.BottomSurface = Enum.SurfaceType.Smooth
432
p18.TopSurface = Enum.SurfaceType.Smooth
433
b18 = Instance.new("SpecialMesh", p18)
434
b18.MeshType = Enum.MeshType.Wedge
435
b18.Name = "Mesh"
436
b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
437
p19 = Instance.new("WedgePart", m)
438
p19.BrickColor = BrickColor.new("Dark stone grey")
439
p19.Name = "BladePart2"
440
p19.Material = Enum.Material.Concrete
441
p19.Name = "Wedge"
442
p19.FormFactor = Enum.FormFactor.Symmetric
443
p19.Size = Vector3.new(1, 4, 2)
444
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)
445
p19.CanCollide = false
446
p19.Locked = true
447
p19.BottomSurface = Enum.SurfaceType.Smooth
448
p19.TopSurface = Enum.SurfaceType.Smooth
449
b19 = Instance.new("SpecialMesh", p19)
450
b19.MeshType = Enum.MeshType.Wedge
451
b19.Name = "Mesh"
452
b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
453
p20 = Instance.new("Part", m)
454
p20.BrickColor = BrickColor.new("Really black")
455
p20.FormFactor = Enum.FormFactor.Custom
456
p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
457
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)
458
p20.CanCollide = false
459
p20.Locked = true
460
p20.Elasticity = 0
461
p20.BottomSurface = Enum.SurfaceType.Smooth
462
p20.TopSurface = Enum.SurfaceType.Smooth
463
b20 = Instance.new("BlockMesh", p20)
464
b20.Name = "Mesh"
465
b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
466
p21 = Instance.new("Part", m)
467
p21.BrickColor = BrickColor.new("Bright blue")
468
p21.FormFactor = Enum.FormFactor.Custom
469
p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
470
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)
471
p21.CanCollide = false
472
p21.Locked = true
473
p21.Elasticity = 0
474
p21.BottomSurface = Enum.SurfaceType.Smooth
475
p21.TopSurface = Enum.SurfaceType.Smooth
476
b21 = Instance.new("SpecialMesh", p21)
477
b21.MeshType = Enum.MeshType.Wedge
478
b21.Name = "Mesh"
479
b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
480
w1 = Instance.new("Weld", p1)
481
w1.Name = "Part_Weld"
482
w1.Part0 = p1
483
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)
484
w1.Part1 = p2
485
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)
486
w2 = Instance.new("Weld", p2)
487
w2.Name = "Part_Weld"
488
w2.Part0 = p2
489
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)
490
w2.Part1 = p3
491
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)
492
w3 = Instance.new("Weld", p3)
493
w3.Name = "Part_Weld"
494
w3.Part0 = p3
495
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)
496
w3.Part1 = p4
497
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)
498
w4 = Instance.new("Weld", p4)
499
w4.Name = "Part_Weld"
500
w4.Part0 = p4
501
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)
502
w4.Part1 = p5
503
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)
504
w5 = Instance.new("Weld", p5)
505
w5.Name = "Part_Weld"
506
w5.Part0 = p5
507
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)
508
w5.Part1 = p6
509
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)
510
w6 = Instance.new("Weld", p6)
511
w6.Name = "Part_Weld"
512
w6.Part0 = p6
513
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)
514
w6.Part1 = p7
515
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)
516
w7 = Instance.new("Weld", p7)
517
w7.Name = "Part_Weld"
518
w7.Part0 = p7
519
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)
520
w7.Part1 = p8
521
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)
522
w8 = Instance.new("Weld", p8)
523
w8.Name = "Part_Weld"
524
w8.Part0 = p8
525
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)
526
w8.Part1 = p9
527
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)
528
w9 = Instance.new("Weld", p9)
529
w9.Name = "Part_Weld"
530
w9.Part0 = p9
531
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)
532
w9.Part1 = p10
533
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)
534
w10 = Instance.new("Weld", p10)
535
w10.Name = "Part_Weld"
536
w10.Part0 = p10
537
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)
538
w10.Part1 = p11
539
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)
540
w11 = Instance.new("Weld", p11)
541
w11.Name = "Part_Weld"
542
w11.Part0 = p11
543
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)
544
w11.Part1 = p12
545
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)
546
w12 = Instance.new("Weld", p12)
547
w12.Name = "Part_Weld"
548
w12.Part0 = p12
549
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)
550
w12.Part1 = p13
551
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)
552
w13 = Instance.new("Weld", p13)
553
w13.Name = "Part_Weld"
554
w13.Part0 = p13
555
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)
556
w13.Part1 = p14
557
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)
558
w14 = Instance.new("Weld", p14)
559
w14.Name = "Part_Weld"
560
w14.Part0 = p14
561
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)
562
w14.Part1 = p15
563
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)
564
w15 = Instance.new("Weld", p15)
565
w15.Name = "Part_Weld"
566
w15.Part0 = p15
567
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)
568
w15.Part1 = p16
569
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)
570
w16 = Instance.new("Weld", p16)
571
w16.Name = "Part_Weld"
572
w16.Part0 = p16
573
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)
574
w16.Part1 = p17
575
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)
576
w17 = Instance.new("Weld", p17)
577
w17.Name = "Wedge_Weld"
578
w17.Part0 = p17
579
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)
580
w17.Part1 = p18
581
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)
582
w18 = Instance.new("Weld", p18)
583
w18.Name = "Wedge_Weld"
584
w18.Part0 = p18
585
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)
586
w18.Part1 = p19
587
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)
588
w19 = Instance.new("Weld", p19)
589
w19.Name = "Part_Weld"
590
w19.Part0 = p19
591
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)
592
w19.Part1 = p20
593
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)
594
w20 = Instance.new("Weld", p20)
595
w20.Name = "Part_Weld"
596
w20.Part0 = p20
597
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)
598
w20.Part1 = p21
599
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)
600
m.Parent = char
601
m:MakeJoints()
602
----------------------------------------------------
603
local cor = Instance.new("Part", char.Absolution)
604
cor.Name = "Thingy"
605
cor.Locked = true
606
cor.BottomSurface = 0
607
cor.CanCollide = false
608
cor.Size = Vector3.new(1, 13, 1)
609
cor.Transparency = 1
610
cor.TopSurface = 0
611
corw = Instance.new("Weld", cor)
612
corw.Part0 = rarm
613
corw.Part1 = cor
614
corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
615
corw.C1 = CFrame.new(0, 0, 0)
616
weld1 = Instance.new("Weld", char.Absolution)
617
weld1.Part0 = cor
618
weld1.Part1 = p6
619
weld1.C0 = CFrame.new(0, 0, 0)
620
----------------------------------------------------
621
hitb = Instance.new("Part", char.Absolution)
622
hitb.Name = "Thingy2"
623
hitb.Locked = true
624
hitb.BottomSurface = 0
625
hitb.CanCollide = false
626
hitb.Size = Vector3.new(0, 8, 6)
627
hitb.Transparency = 1
628
hitb.TopSurface = 0
629
weld2 = Instance.new("Weld", char.Absolution)
630
weld2.Part0 = hitb
631
weld2.Part1 = p12
632
weld2.C0 = CFrame.new(0, .6, 1)
633
----------------------------------------------------
634
local m = Instance.new("Model")
635
m.Name = "Claw"
636
p1 = Instance.new("Part", m)
637
p1.BrickColor = BrickColor.new("Really black")
638
p1.FormFactor = Enum.FormFactor.Custom
639
p1.Size = Vector3.new(1.5, 0.5, 0.5)
640
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)
641
p1.CanCollide = false
642
p1.Locked = true
643
p1.BottomSurface = Enum.SurfaceType.Smooth
644
p1.TopSurface = Enum.SurfaceType.Smooth
645
b1 = Instance.new("BlockMesh", p1)
646
b1.Name = "Mesh"
647
p2 = Instance.new("WedgePart", m)
648
p2.BrickColor = BrickColor.new("Really black")
649
p2.Name = "Wedge"
650
p2.FormFactor = Enum.FormFactor.Custom
651
p2.Size = Vector3.new(3, 1, 0.5)
652
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)
653
p2.CanCollide = false
654
p2.Locked = true
655
p2.BottomSurface = Enum.SurfaceType.Smooth
656
p2.TopSurface = Enum.SurfaceType.Smooth
657
p3 = Instance.new("Part", m)
658
p3.BrickColor = BrickColor.new("Really black")
659
p3.FormFactor = Enum.FormFactor.Custom
660
p3.Size = Vector3.new(1.5, 0.5, 0.5)
661
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)
662
p3.CanCollide = false
663
p3.Locked = true
664
p3.BottomSurface = Enum.SurfaceType.Smooth
665
p3.TopSurface = Enum.SurfaceType.Smooth
666
b2 = Instance.new("BlockMesh", p3)
667
b2.Name = "Mesh"
668
p4 = Instance.new("WedgePart", m)
669
p4.BrickColor = BrickColor.new("Really black")
670
p4.Name = "Wedge"
671
p4.FormFactor = Enum.FormFactor.Custom
672
p4.Size = Vector3.new(3, 1, 0.5)
673
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)
674
p4.CanCollide = false
675
p4.Locked = true
676
p4.BottomSurface = Enum.SurfaceType.Smooth
677
p4.TopSurface = Enum.SurfaceType.Smooth
678
p5 = Instance.new("Part", m)
679
p5.BrickColor = BrickColor.new("Really black")
680
p5.FormFactor = Enum.FormFactor.Custom
681
p5.Size = Vector3.new(1.5, 0.5, 0.5)
682
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)
683
p5.CanCollide = false
684
p5.Locked = true
685
p5.BottomSurface = Enum.SurfaceType.Smooth
686
p5.TopSurface = Enum.SurfaceType.Smooth
687
b3 = Instance.new("BlockMesh", p5)
688
b3.Name = "Mesh"
689
p6 = Instance.new("Part", m)
690
p6.BrickColor = BrickColor.new("Really black")
691
p6.FormFactor = Enum.FormFactor.Custom
692
p6.Size = Vector3.new(1.5, 0.5, 0.5)
693
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)
694
p6.CanCollide = false
695
p6.Locked = true
696
p6.BottomSurface = Enum.SurfaceType.Smooth
697
p6.TopSurface = Enum.SurfaceType.Smooth
698
b4 = Instance.new("BlockMesh", p6)
699
b4.Name = "Mesh"
700
p7 = Instance.new("Part", m)
701
p7.BrickColor = BrickColor.new("Really black")
702
p7.FormFactor = Enum.FormFactor.Custom
703
p7.Size = Vector3.new(3, 1, 1.20000005)
704
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)
705
p7.CanCollide = false
706
p7.Locked = true
707
p7.BottomSurface = Enum.SurfaceType.Smooth
708
p7.TopSurface = Enum.SurfaceType.Smooth
709
b5 = Instance.new("BlockMesh", p7)
710
b5.Name = "Mesh"
711
p8 = Instance.new("Part", m)
712
p8.BrickColor = BrickColor.new("Bright blue")
713
p8.FormFactor = Enum.FormFactor.Symmetric
714
p8.Size = Vector3.new(1, 1, 1)
715
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)
716
p8.CanCollide = false
717
p8.Locked = true
718
b6 = Instance.new("SpecialMesh", p8)
719
b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
720
b6.TextureId = ""
721
b6.MeshType = Enum.MeshType.FileMesh
722
b6.Name = "Mesh"
723
b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
724
p9 = Instance.new("Part", m)
725
p9.BrickColor = BrickColor.new("Really black")
726
p9.FormFactor = Enum.FormFactor.Custom
727
p9.Size = Vector3.new(1.5, 0.5, 0.5)
728
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)
729
p9.CanCollide = false
730
p9.Locked = true
731
p9.BottomSurface = Enum.SurfaceType.Smooth
732
p9.TopSurface = Enum.SurfaceType.Smooth
733
b7 = Instance.new("BlockMesh", p9)
734
b7.Name = "Mesh"
735
p10 = Instance.new("Part", m)
736
p10.BrickColor = BrickColor.new("Bright blue")
737
p10.FormFactor = Enum.FormFactor.Symmetric
738
p10.Size = Vector3.new(1, 1, 1)
739
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)
740
p10.CanCollide = false
741
p10.Locked = true
742
b8 = Instance.new("SpecialMesh", p10)
743
b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
744
b8.TextureId = ""
745
b8.MeshType = Enum.MeshType.FileMesh
746
b8.Name = "Mesh"
747
b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
748
p11 = Instance.new("Part", m)
749
p11.BrickColor = BrickColor.new("Really black")
750
p11.FormFactor = Enum.FormFactor.Custom
751
p11.Size = Vector3.new(1.5, 0.5, 0.5)
752
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)
753
p11.CanCollide = false
754
p11.Locked = true
755
p11.BottomSurface = Enum.SurfaceType.Smooth
756
p11.TopSurface = Enum.SurfaceType.Smooth
757
b9 = Instance.new("BlockMesh", p11)
758
b9.Name = "Mesh"
759
p12 = Instance.new("Part", m)
760
p12.BrickColor = BrickColor.new("Really black")
761
p12.FormFactor = Enum.FormFactor.Custom
762
p12.Size = Vector3.new(1.5, 0.5, 0.5)
763
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)
764
p12.CanCollide = false
765
p12.Locked = true
766
p12.BottomSurface = Enum.SurfaceType.Smooth
767
p12.TopSurface = Enum.SurfaceType.Smooth
768
b10 = Instance.new("BlockMesh", p12)
769
b10.Name = "Mesh"
770
p13 = Instance.new("Part", m)
771
p13.BrickColor = BrickColor.new("Really black")
772
p13.FormFactor = Enum.FormFactor.Custom
773
p13.Size = Vector3.new(1.5, 0.5, 0.5)
774
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)
775
p13.CanCollide = false
776
p13.Locked = true
777
p13.BottomSurface = Enum.SurfaceType.Smooth
778
p13.TopSurface = Enum.SurfaceType.Smooth
779
b11 = Instance.new("BlockMesh", p13)
780
b11.Name = "Mesh"
781
p14 = Instance.new("Part", m)
782
p14.BrickColor = BrickColor.new("Bright blue")
783
p14.FormFactor = Enum.FormFactor.Symmetric
784
p14.Size = Vector3.new(1, 1, 1)
785
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)
786
p14.CanCollide = false
787
p14.Locked = true
788
b12 = Instance.new("SpecialMesh", p14)
789
b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
790
b12.TextureId = ""
791
b12.MeshType = Enum.MeshType.FileMesh
792
b12.Name = "Mesh"
793
b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
794
p15 = Instance.new("Part", m)
795
p15.BrickColor = BrickColor.new("Medium stone grey")
796
p15.Transparency = 1
797
p15.Name = "ArmPart"
798
p15.FormFactor = Enum.FormFactor.Custom
799
p15.Size = Vector3.new(2, 1, 1)
800
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)
801
p15.CanCollide = false
802
p15.Locked = true
803
p15.BottomSurface = Enum.SurfaceType.Smooth
804
p15.TopSurface = Enum.SurfaceType.Smooth
805
b13 = Instance.new("BlockMesh", p15)
806
b13.Name = "Mesh"
807
p16 = Instance.new("Part", m)
808
p16.BrickColor = BrickColor.new("Really black")
809
p16.FormFactor = Enum.FormFactor.Custom
810
p16.Size = Vector3.new(3, 1, 2.4000001)
811
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)
812
p16.CanCollide = false
813
p16.Locked = true
814
p16.BottomSurface = Enum.SurfaceType.Smooth
815
p16.TopSurface = Enum.SurfaceType.Smooth
816
b14 = Instance.new("BlockMesh", p16)
817
b14.Name = "Mesh"
818
p17 = Instance.new("Part", m)
819
p17.BrickColor = BrickColor.new("Really black")
820
p17.FormFactor = Enum.FormFactor.Custom
821
p17.Size = Vector3.new(1.5, 0.5, 0.5)
822
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)
823
p17.CanCollide = false
824
p17.Locked = true
825
p17.BottomSurface = Enum.SurfaceType.Smooth
826
p17.TopSurface = Enum.SurfaceType.Smooth
827
b15 = Instance.new("BlockMesh", p17)
828
b15.Name = "Mesh"
829
p18 = Instance.new("Part", m)
830
p18.BrickColor = BrickColor.new("Bright blue")
831
p18.FormFactor = Enum.FormFactor.Symmetric
832
p18.Size = Vector3.new(1, 1, 1)
833
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)
834
p18.CanCollide = false
835
p18.Locked = true
836
b16 = Instance.new("SpecialMesh", p18)
837
b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
838
b16.TextureId = ""
839
b16.MeshType = Enum.MeshType.FileMesh
840
b16.Name = "Mesh"
841
b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
842
p19 = Instance.new("Part", m)
843
p19.BrickColor = BrickColor.new("Bright blue")
844
p19.FormFactor = Enum.FormFactor.Symmetric
845
p19.Size = Vector3.new(1, 1, 1)
846
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)
847
p19.CanCollide = false
848
p19.Locked = true
849
b17 = Instance.new("SpecialMesh", p19)
850
b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
851
b17.TextureId = ""
852
b17.MeshType = Enum.MeshType.FileMesh
853
b17.Name = "Mesh"
854
b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
855
p20 = Instance.new("Part", m)
856
p20.BrickColor = BrickColor.new("Really black")
857
p20.FormFactor = Enum.FormFactor.Custom
858
p20.Size = Vector3.new(3, 1, 2.4000001)
859
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)
860
p20.CanCollide = false
861
p20.Locked = true
862
p20.BottomSurface = Enum.SurfaceType.Smooth
863
p20.TopSurface = Enum.SurfaceType.Smooth
864
b18 = Instance.new("BlockMesh", p20)
865
b18.Name = "Mesh"
866
p21 = Instance.new("Part", m)
867
p21.BrickColor = BrickColor.new("Really black")
868
p21.FormFactor = Enum.FormFactor.Custom
869
p21.Size = Vector3.new(3, 1, 1.19999993)
870
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)
871
p21.CanCollide = false
872
p21.Locked = true
873
p21.BottomSurface = Enum.SurfaceType.Smooth
874
p21.TopSurface = Enum.SurfaceType.Smooth
875
b19 = Instance.new("BlockMesh", p21)
876
b19.Name = "Mesh"
877
p22 = Instance.new("WedgePart", m)
878
p22.BrickColor = BrickColor.new("Really black")
879
p22.Name = "Wedge"
880
p22.FormFactor = Enum.FormFactor.Custom
881
p22.Size = Vector3.new(3, 1, 0.5)
882
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)
883
p22.CanCollide = false
884
p22.Locked = true
885
p22.BottomSurface = Enum.SurfaceType.Smooth
886
p22.TopSurface = Enum.SurfaceType.Smooth
887
p23 = Instance.new("Part", m)
888
p23.BrickColor = BrickColor.new("Really black")
889
p23.FormFactor = Enum.FormFactor.Custom
890
p23.Size = Vector3.new(1.5, 0.5, 0.5)
891
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)
892
p23.CanCollide = false
893
p23.Locked = true
894
p23.BottomSurface = Enum.SurfaceType.Smooth
895
p23.TopSurface = Enum.SurfaceType.Smooth
896
b20 = Instance.new("BlockMesh", p23)
897
b20.Name = "Mesh"
898
p24 = Instance.new("WedgePart", m)
899
p24.BrickColor = BrickColor.new("Really black")
900
p24.Name = "Wedge"
901
p24.FormFactor = Enum.FormFactor.Custom
902
p24.Size = Vector3.new(3, 1, 0.5)
903
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)
904
p24.CanCollide = false
905
p24.Locked = true
906
p24.BottomSurface = Enum.SurfaceType.Smooth
907
p24.TopSurface = Enum.SurfaceType.Smooth
908
p25 = Instance.new("Part", m)
909
p25.BrickColor = BrickColor.new("Bright blue")
910
p25.FormFactor = Enum.FormFactor.Symmetric
911
p25.Size = Vector3.new(1, 1, 1)
912
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)
913
p25.CanCollide = false
914
p25.Locked = true
915
p25.BottomSurface = Enum.SurfaceType.Smooth
916
p25.TopSurface = Enum.SurfaceType.Smooth
917
b21 = Instance.new("SpecialMesh", p25)
918
b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
919
b21.TextureId = ""
920
b21.MeshType = Enum.MeshType.FileMesh
921
b21.Name = "Mesh"
922
b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
923
p26 = Instance.new("Part", m)
924
p26.BrickColor = BrickColor.new("Really black")
925
p26.FormFactor = Enum.FormFactor.Symmetric
926
p26.Size = Vector3.new(1, 1, 1)
927
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)
928
p26.CanCollide = false
929
p26.Locked = true
930
p26.BottomSurface = Enum.SurfaceType.Smooth
931
p26.TopSurface = Enum.SurfaceType.Smooth
932
b22 = Instance.new("SpecialMesh", p26)
933
b22.MeshType = Enum.MeshType.Brick
934
b22.Name = "Mesh"
935
w1 = Instance.new("Weld", p1)
936
w1.Name = "Wedge_Weld"
937
w1.Part0 = p1
938
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)
939
w1.Part1 = p2
940
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)
941
w2 = Instance.new("Weld", p2)
942
w2.Name = "Part_Weld"
943
w2.Part0 = p2
944
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)
945
w2.Part1 = p3
946
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)
947
w3 = Instance.new("Weld", p3)
948
w3.Name = "Wedge_Weld"
949
w3.Part0 = p3
950
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)
951
w3.Part1 = p4
952
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)
953
w4 = Instance.new("Weld", p4)
954
w4.Name = "Part_Weld"
955
w4.Part0 = p4
956
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)
957
w4.Part1 = p5
958
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)
959
w5 = Instance.new("Weld", p5)
960
w5.Name = "Part_Weld"
961
w5.Part0 = p5
962
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)
963
w5.Part1 = p6
964
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)
965
w6 = Instance.new("Weld", p6)
966
w6.Name = "Part_Weld"
967
w6.Part0 = p6
968
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)
969
w6.Part1 = p7
970
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)
971
w7 = Instance.new("Weld", p7)
972
w7.Name = "Part_Weld"
973
w7.Part0 = p7
974
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)
975
w7.Part1 = p8
976
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)
977
w8 = Instance.new("Weld", p8)
978
w8.Name = "Part_Weld"
979
w8.Part0 = p8
980
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)
981
w8.Part1 = p9
982
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)
983
w9 = Instance.new("Weld", p9)
984
w9.Name = "Part_Weld"
985
w9.Part0 = p9
986
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)
987
w9.Part1 = p10
988
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)
989
w10 = Instance.new("Weld", p10)
990
w10.Name = "Part_Weld"
991
w10.Part0 = p10
992
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)
993
w10.Part1 = p11
994
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)
995
w11 = Instance.new("Weld", p11)
996
w11.Name = "Part_Weld"
997
w11.Part0 = p11
998
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)
999
w11.Part1 = p12
1000
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)
1001
w12 = Instance.new("Weld", p12)
1002
w12.Name = "Part_Weld"
1003
w12.Part0 = p12
1004
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)
1005
w12.Part1 = p13
1006
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)
1007
w13 = Instance.new("Weld", p13)
1008
w13.Name = "Part_Weld"
1009
w13.Part0 = p13
1010
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)
1011
w13.Part1 = p14
1012
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)
1013
w14 = Instance.new("Weld", p14)
1014
w14.Name = "ArmPart_Weld"
1015
w14.Part0 = p14
1016
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)
1017
w14.Part1 = p15
1018
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)
1019
w15 = Instance.new("Weld", p15)
1020
w15.Name = "Part_Weld"
1021
w15.Part0 = p15
1022
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)
1023
w15.Part1 = p16
1024
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)
1025
w16 = Instance.new("Weld", p16)
1026
w16.Name = "Part_Weld"
1027
w16.Part0 = p16
1028
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)
1029
w16.Part1 = p17
1030
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)
1031
w17 = Instance.new("Weld", p17)
1032
w17.Name = "Part_Weld"
1033
w17.Part0 = p17
1034
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)
1035
w17.Part1 = p18
1036
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)
1037
w18 = Instance.new("Weld", p18)
1038
w18.Name = "Part_Weld"
1039
w18.Part0 = p18
1040
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)
1041
w18.Part1 = p19
1042
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)
1043
w19 = Instance.new("Weld", p19)
1044
w19.Name = "Part_Weld"
1045
w19.Part0 = p19
1046
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)
1047
w19.Part1 = p20
1048
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)
1049
w20 = Instance.new("Weld", p20)
1050
w20.Name = "Part_Weld"
1051
w20.Part0 = p20
1052
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)
1053
w20.Part1 = p21
1054
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)
1055
w21 = Instance.new("Weld", p21)
1056
w21.Name = "Wedge_Weld"
1057
w21.Part0 = p21
1058
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)
1059
w21.Part1 = p22
1060
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)
1061
w22 = Instance.new("Weld", p22)
1062
w22.Name = "Part_Weld"
1063
w22.Part0 = p22
1064
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)
1065
w22.Part1 = p23
1066
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)
1067
w23 = Instance.new("Weld", p23)
1068
w23.Name = "Wedge_Weld"
1069
w23.Part0 = p23
1070
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)
1071
w23.Part1 = p24
1072
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)
1073
w24 = Instance.new("Weld", p24)
1074
w24.Name = "Part_Weld"
1075
w24.Part0 = p24
1076
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)
1077
w24.Part1 = p25
1078
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)
1079
w25 = Instance.new("Weld", p25)
1080
w25.Name = "Part_Weld"
1081
w25.Part0 = p25
1082
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)
1083
w25.Part1 = p26
1084
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)
1085
m.Parent = char
1086
m:MakeJoints()
1087
----------------------------------------------------
1088
local cor2 = Instance.new("Part", char.Claw)
1089
cor2.Name = "Thingy"
1090
cor2.Locked = true
1091
cor2.BottomSurface = 0
1092
cor2.CanCollide = false
1093
cor2.Size = Vector3.new(2, 1, 1)
1094
cor2.Transparency = 1
1095
cor2.TopSurface = 0
1096
corw2 = Instance.new("Weld", cor2)
1097
corw2.Part0 = larm
1098
corw2.Part1 = cor2
1099
corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
1100
corw2.C1 = CFrame.new(0, 0, 0)
1101
weld2 = Instance.new("Weld", char.Claw)
1102
weld2.Part0 = cor2
1103
weld2.Part1 = char.Claw.ArmPart
1104
weld2.C0 = CFrame.new(0, 0, 0)
1105
----------------------------------------------------
1106
function weld5(part0, part1, c0, c1)
1107
    weeld=Instance.new("Weld", part0)
1108
    weeld.Part0=part0
1109
    weeld.Part1=part1
1110
    weeld.C0=c0
1111
    weeld.C1=c1
1112
    return weeld
1113
end
1114
----------------------------------------------------
1115
----------------------------------------------------
1116
a = game.Players.LocalPlayer.Character.Absolution:GetChildren()
1117
for i = 1,#a do
1118
if a[i]:IsA("UnionOperation") or a[i]:IsA("Part") or a[i]:IsA("WedgePart") then
1119
a[i].Transparency = 1
1120
end
1121
end
1122
----------------------------------------------------
1123
ACE = game.Players.LocalPlayer.Character.Claw:GetChildren()
1124
for i = 1,#a do
1125
if ACE[i]:IsA("UnionOperation") or ACE[i]:IsA("Part") or ACE[i]:IsA("WedgePart") then
1126
ACE[i].Transparency = 1
1127
end
1128
end
1129
----------------------------------------------------
1130
function newRay(start,face,range,wat)
1131
	local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
1132
	hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
1133
	return rey,hit,pos
1134
end
1135
----------------------------------------------------
1136
mod5 = Instance.new("Model",char)
1137
1138
function FindNearestTorso(Position,Distance,SinglePlayer)
1139
    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
1140
        local List = {}
1141
        for i,v in pairs(workspace:GetChildren())do
1142
            if v:IsA("Model")then
1143
                if v:findFirstChild("Torso")then
1144
                    if v ~= char then
1145
                        if(v.Torso.Position -Position).magnitude <= Distance then
1146
                            table.insert(List,v)
1147
                        end 
1148
                    end 
1149
                end 
1150
            end 
1151
        end
1152
    return List
1153
end
1154
1155
function Landing()
1156
    part=Instance.new('Part',mod5)
1157
    part.Anchored=true
1158
    part.CanCollide=false
1159
    part.FormFactor='Custom'
1160
    part.Size=Vector3.new(.2,.2,.2)
1161
    part.CFrame=root.CFrame*CFrame.new(0,-2,0)
1162
    part.Transparency=.7
1163
    part.BrickColor=BrickColor.new('Really black')
1164
    mesh=Instance.new('SpecialMesh',part)
1165
    mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
1166
    mesh.Scale=Vector3.new(10,5,10)
1167
1168
    for i,v in pairs(FindNearestTorso(torso.CFrame.p,40))do
1169
        if v:FindFirstChild('Humanoid') then
1170
            v.Humanoid:TakeDamage(math.random(20,30))
1171
            v.Humanoid.PlatformStand = true
1172
            v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
1173
        end
1174
    end
1175
1176
    coroutine.resume(coroutine.create(function() 
1177
        for i=0,3.8,0.05 do
1178
            wait()
1179
            part.CFrame=part.CFrame
1180
            part.Transparency=i
1181
            mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
1182
            end
1183
        part.Parent = nil
1184
    end))
1185
end
1186
----------------------------------------------------
1187
mod4 = Instance.new("Model",char)
1188
1189
ptez = {0.7, 0.8, 0.9, 1}
1190
1191
function FindNearestTorso(Position,Distance,SinglePlayer)
1192
    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
1193
        local List = {}
1194
        for i,v in pairs(workspace:GetChildren())do
1195
            if v:IsA("Model")then
1196
                if v:findFirstChild("Torso")then
1197
                    if v ~= char then
1198
                        if(v.Torso.Position -Position).magnitude <= Distance then
1199
                            table.insert(List,v)
1200
                        end 
1201
                    end 
1202
                end 
1203
            end 
1204
        end
1205
    return List
1206
end
1207
1208
function GroundPound()
1209
    part=Instance.new('Part',mod4)
1210
    part.Anchored=true
1211
    part.CanCollide=false
1212
    part.FormFactor='Custom'
1213
    part.Size=Vector3.new(.2,.2,.2)
1214
    part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
1215
    part.Transparency=.7
1216
    part.BrickColor=BrickColor.new('Really black')
1217
    mesh=Instance.new('SpecialMesh',part)
1218
    mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
1219
    mesh.Scale=Vector3.new(3,3,3)
1220
    part2=Instance.new('Part',mod4)
1221
    part2.Anchored=true
1222
    part2.CanCollide=false
1223
    part2.FormFactor='Custom'
1224
    part2.Size=Vector3.new(.2,.2,.2)
1225
    part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
1226
    part2.Transparency=.7
1227
    part2.BrickColor=BrickColor.new('Really red')
1228
    mesh2=Instance.new('SpecialMesh',part2)
1229
    mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
1230
    mesh2.Scale=Vector3.new(3,1.5,3)
1231
    x = Instance.new("Sound",char)
1232
    x.SoundId = "http://www.roblox.com/asset/?id=142070127"
1233
    x.Pitch = ptez[math.random(1,#ptez)]
1234
    x.Volume = 1
1235
    wait(0.001)
1236
    x:Play()
1237
    for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
1238
        if v:FindFirstChild('Humanoid') then
1239
            v.Humanoid:TakeDamage(math.random(8,15))
1240
        end
1241
    end
1242
    coroutine.resume(coroutine.create(function() 
1243
        for i=0,0.62,0.13 do
1244
            wait()
1245
            part.CFrame=part.CFrame
1246
            part.Transparency=i
1247
            mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
1248
            part2.CFrame=part2.CFrame
1249
            part2.Transparency=i
1250
            mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
1251
            end
1252
        part.Parent=nil
1253
        part2.Parent=nil
1254
        x:Destroy()
1255
    end))
1256
end
1257
----------------------------------------------------
1258
mod=Instance.new('Model',char)
1259
1260
function charge()
1261
    hed.Velocity=hed.CFrame.lookVector*200
1262
    part=Instance.new('Part',mod)
1263
    part.Anchored=true
1264
    part.CanCollide=false
1265
    part.FormFactor='Custom'
1266
    part.Size=Vector3.new(.2,.2,.2)
1267
    part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
1268
    part.Transparency=.7
1269
    part.BrickColor=BrickColor.new('Black')
1270
    mesh=Instance.new('SpecialMesh',part)
1271
    mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
1272
    mesh.Scale=Vector3.new(10,5,10)
1273
    part2=part:clone()
1274
    part2.Parent=mod
1275
    part2.BrickColor=BrickColor.new('Bright red')
1276
    mesh2=mesh:clone()
1277
    mesh2.Parent=part2
1278
    mesh2.Scale=Vector3.new(20,10,20)
1279
    part3=part2:clone()
1280
    part3.Parent = mod
1281
    part3.BrickColor=BrickColor.new('Really black')
1282
    mesh3=mesh2:clone()
1283
    mesh2.Parent=part3
1284
    mesh3.Scale=Vector3.new(30,15,30)
1285
    coroutine.resume(coroutine.create(function() 
1286
        for i=0,1,0.1 do
1287
            wait()
1288
            part.CFrame=part.CFrame
1289
            part.Transparency=i
1290
            mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
1291
            part2.CFrame=part2.CFrame
1292
            part2.Transparency=i
1293
            mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
1294
            part3.CFrame=part3.CFrame
1295
            part3.Transparency=i
1296
            mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
1297
            end
1298
        part.Parent=nil
1299
        part2.Parent=nil
1300
        part3.Parent = nil
1301
    end))
1302
end
1303
----------------------------------------------------
1304
function FindNearestTorso(Position,Distance,SinglePlayer)
1305
    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
1306
        local List = {}
1307
        for i,v in pairs(workspace:GetChildren())do
1308
            if v:IsA("Model")then
1309
                if v:findFirstChild("Torso")then
1310
                    if v ~= char then
1311
                        if(v.Torso.Position -Position).magnitude <= Distance then
1312
                            table.insert(List,v)
1313
                        end 
1314
                    end 
1315
                end 
1316
            end 
1317
        end
1318
    return List
1319
end
1320
1321
mod3 = Instance.new("Model",rleg)
1322
1323
function Stomp()
1324
    part=Instance.new('Part',mod3)
1325
    part.Anchored=true
1326
    part.CanCollide=false
1327
    part.FormFactor='Custom'
1328
    part.Size=Vector3.new(.2,.2,.2)
1329
    part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
1330
    part.Transparency=.7
1331
    part.BrickColor=BrickColor.new('Bright green')
1332
    mesh=Instance.new('SpecialMesh',part)
1333
    mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
1334
    mesh.Scale=Vector3.new(25,25,25)
1335
    part2=part:clone()
1336
    part2.Parent=mod3
1337
    part2.BrickColor=BrickColor.new('Bright green')
1338
    mesh2=mesh:clone()
1339
    mesh2.Parent=part2
1340
    mesh2.Scale=Vector3.new(15,15,15)
1341
    part3=part:clone()
1342
    part3.Parent=mod3
1343
    part3.TopSurface=0
1344
    part3.BottomSurface=0
1345
    part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
1346
    mesh3=Instance.new('SpecialMesh',part3)
1347
    mesh3.MeshType = 3
1348
    mesh3.Scale=Vector3.new(12,12,12)
1349
    for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
1350
        if v:FindFirstChild('Humanoid') then
1351
            v.Humanoid:TakeDamage(math.random(20,60))
1352
            v.Humanoid.PlatformStand = true
1353
            v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
1354
        end
1355
    end 
1356
    coroutine.resume(coroutine.create(function() 
1357
        for i=0,3.8,0.05 do
1358
            wait()
1359
            part.CFrame=part.CFrame
1360
            part.Transparency=i
1361
            mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
1362
            part2.CFrame=part2.CFrame
1363
            part2.Transparency=i
1364
            mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
1365
            part3.CFrame=part3.CFrame
1366
            part3.Transparency=i
1367
            mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
1368
        end
1369
    end))
1370
end
1371
----------------------------------------------------
1372
1373
local acos = math.acos
1374
local sqrt = math.sqrt
1375
local Vec3 = Vector3.new
1376
local fromAxisAngle = CFrame.fromAxisAngle
1377
1378
local function toAxisAngle(CFr)
1379
        local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
1380
        local Angle = math.acos((R00+R11+R22-1)/2)
1381
        local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
1382
        A = A == 0 and 0.00001 or A
1383
        local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
1384
        B = B == 0 and 0.00001 or B
1385
        local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
1386
        C = C == 0 and 0.00001 or C
1387
        local x = (R21-R12)/sqrt(A)
1388
        local y = (R02-R20)/sqrt(B)
1389
        local z = (R10-R01)/sqrt(C)
1390
        return Vec3(x,y,z),Angle
1391
end
1392
1393
function ApplyTrig(Num,Func)
1394
        local Min,Max = Func(0),Func(1)
1395
        local i = Func(Num)
1396
        return (i-Min)/(Max-Min)
1397
        --[[if Func == "sin" then
1398
                return (math.sin((1-Num)*math.pi)+1)/2
1399
        elseif Func == "cos" then
1400
                return (math.cos((1-Num)*math.pi)+1)/2
1401
        end]]
1402
end
1403
1404
function LerpCFrame(CFrame1,CFrame2,Num)
1405
        local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
1406
        return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
1407
end
1408
1409
function Crater(Torso,Radius)
1410
        Spawn(function()
1411
        local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
1412
        local Ignore = {}
1413
        for i,v in pairs(game:GetService("Players"):GetPlayers()) do
1414
                if v.Character ~= nil then
1415
                        Ignore[#Ignore+1] = v.Character
1416
                end
1417
        end
1418
        local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
1419
        if Hit == nil then return end
1420
        local Parts = {}
1421
        for i = 1,360,10 do
1422
                local P = Instance.new("Part",Torso.Parent)
1423
                P.Anchored = true
1424
                P.FormFactor = "Custom"
1425
                P.BrickColor = Hit.BrickColor
1426
                P.Material = Hit.Material
1427
                P.TopSurface = "Smooth"
1428
                P.BottomSurface = "Smooth"
1429
                P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
1430
                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)))
1431
                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}
1432
                if math.random(0,5) == 0 then -- rubble
1433
                        local P = Instance.new("Part",Torso.Parent)
1434
                        P.Anchored = true
1435
                        P.FormFactor = "Custom"
1436
                        P.BrickColor = Hit.BrickColor
1437
                        P.Material = Hit.Material
1438
                        P.TopSurface = "Smooth"
1439
                        P.BottomSurface = "Smooth"
1440
                        P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
1441
                        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)))
1442
                        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}
1443
                end
1444
        end
1445
        for i = 0,1,0.05 do
1446
                for i2,v in pairs(Parts) do
1447
                        v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
1448
                end
1449
                wait(0.02)
1450
        end
1451
        for i,v in pairs(Parts) do
1452
                if v[1].Size.X > 2.1 then
1453
                        v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
1454
                end
1455
                v[1].Anchored = false
1456
        end
1457
        for i = 0,1,0.05 do
1458
                for i2,v in pairs(Parts) do
1459
                        v[1].Transparency = i
1460
                        if i == 1 then
1461
                                v[1]:Destroy()
1462
                        elseif i >= 0.25 then
1463
                                v[1].CanCollide = false
1464
                        end
1465
                end
1466
                wait(0.02)
1467
        end
1468
        Parts = nil
1469
        end)
1470
end
1471
1472
----------------------------------------------------
1473
mouse.KeyDown:connect(function(key)
1474
    if key == "r" then
1475
        larm.BrickColor = BrickColor.new("Bright red")
1476
        rarm.BrickColor = BrickColor.new("Bright red")
1477
        if Debounces.CanAttack == true then
1478
        Debounces.CanAttack = false
1479
        Debounces.on = true
1480
        Debounces.NoIdl = true
1481
to = char.Absolution.Thingy2.Touched:connect(function(ht)
1482
        hit = ht.Parent
1483
        if ht and hit:IsA("Model") then
1484
                if hit:FindFirstChild("Humanoid") then
1485
                    if hit.Name ~= p.Name then
1486
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
1487
                                Debounces.Slashed = true]]--
1488
                                    hit:FindFirstChild("Humanoid"):TakeDamage(10)
1489
                                wait(1)
1490
                                --Debounces.Slashed = false
1491
                        --end
1492
                    end
1493
                end
1494
        elseif ht and hit:IsA("Hat") then
1495
            if hit.Parent.Name ~= p.Name then
1496
                if hit.Parent:FindFirstChild("Humanoid") then
1497
                       --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
1498
                                Debounces.Slashed = true]]--
1499
                                hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
1500
                                wait(1)
1501
                    --Debounces.Slashed = false
1502
                end
1503
            end
1504
        end    
1505
    end)
1506
q = Instance.new("Sound",hed)
1507
q.SoundId = "http://www.roblox.com/asset/?id=134012322"
1508
q.Pitch = 0.85
1509
q.Looped = false
1510
q1 = Instance.new("Sound",hed)
1511
q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
1512
q1.Pitch = 0.85
1513
q1.Looped = false
1514
q:Play()
1515
q1:Play()
1516
    for i = 1,20 do
1517
        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)
1518
        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)
1519
        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)
1520
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
1521
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
1522
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
1523
        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)
1524
        if Debounces.on == false then break end
1525
    wait()
1526
end
1527
n = Instance.new("Sound",hed)
1528
n.SoundId = "http://www.roblox.com/asset/?id=168514932"
1529
n.Pitch = 0.94
1530
n.Looped = false
1531
n1 = Instance.new("Sound",hed)
1532
n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
1533
n1.Pitch = 0.94
1534
n1.Looped = false
1535
n:Play()
1536
n1:Play()
1537
b = Instance.new("Sound",hed)
1538
b.SoundId = "http://www.roblox.com/asset/?id=168586586"
1539
b.Pitch = 0.94
1540
b.Looped = false
1541
b1 = Instance.new("Sound",hed)
1542
b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
1543
b1.Pitch = 0.94
1544
b1.Looped = false
1545
b:Play()
1546
b1:Play()
1547
    for i = 1,26 do
1548
        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)
1549
        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)
1550
        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)
1551
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.5)
1552
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.5)
1553
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.5)
1554
        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)
1555
        if Debounces.on == false then break end
1556
    wait()
1557
end
1558
wait(.5)
1559
to:disconnect()
1560
q:Destroy()
1561
q1:Destroy()
1562
n:Destroy()
1563
n1:Destroy()
1564
larm.BrickColor = BrickColor.new("Really black")
1565
rarm.BrickColor = BrickColor.new("Really black")
1566
    if Debounces.CanAttack == false then
1567
        Debounces.CanAttack = true
1568
        Debounces.on = false
1569
        Debounces.NoIdl = false
1570
            end
1571
        end
1572
    end
1573
end)
1574
----------------------------------------------------
1575
mouse.KeyDown:connect(function(key)
1576
    if key == "q" then
1577
        larm.BrickColor = BrickColor.new("Bright red")
1578
        rarm.BrickColor = BrickColor.new("Bright red")
1579
        if Debounces.CanAttack == true then
1580
        Debounces.CanAttack = false
1581
        Debounces.on = true
1582
        Debounces.NoIdl = true
1583
to = char.Absolution.Thingy2.Touched:connect(function(ht)
1584
        hit = ht.Parent
1585
        if ht and hit:IsA("Model") then
1586
                if hit:FindFirstChild("Humanoid") then
1587
                    if hit.Name ~= p.Name then
1588
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
1589
                                Debounces.Slashed = true]]--
1590
                                    hit:FindFirstChild("Humanoid"):TakeDamage(4)
1591
                                wait(1)
1592
                                --Debounces.Slashed = false
1593
                        --end
1594
                    end
1595
                end
1596
        elseif ht and hit:IsA("Hat") then
1597
            if hit.Parent.Name ~= p.Name then
1598
                if hit.Parent:FindFirstChild("Humanoid") then
1599
                       --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
1600
                                Debounces.Slashed = true]]--
1601
                                hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
1602
                                wait(1)
1603
                    --Debounces.Slashed = false
1604
                end
1605
            end
1606
        end    
1607
    end)
1608
        for i = 1, 20 do
1609
            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)
1610
            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)
1611
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
1612
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
1613
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
1614
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
1615
            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)
1616
        if Debounces.on == false then break end
1617
        wait()
1618
    end
1619
    z = Instance.new("Sound",hed)
1620
    z.SoundId = "rbxassetid://160069154"
1621
    z.Looped = false
1622
    z.Pitch = .9
1623
    z1 = Instance.new("Sound",hed)
1624
    z1.SoundId = "rbxassetid://160069154"
1625
    z1.Looped = false
1626
    z1.Pitch = .9
1627
    wait(0.01)
1628
    z:Play()
1629
    z1:Play()
1630
        for i = 1, 12 do
1631
            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)
1632
            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)
1633
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
1634
            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)
1635
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
1636
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
1637
            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)
1638
        if Debounces.on == false then break end
1639
        wait()
1640
    end
1641
        for i = 1, 12 do
1642
            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)
1643
            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)
1644
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
1645
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
1646
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
1647
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
1648
            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)
1649
        if Debounces.on == false then break end
1650
        wait()
1651
    end
1652
    z = Instance.new("Sound",hed)
1653
    z.SoundId = "rbxassetid://168586621"
1654
    z.Looped = false
1655
    z.Pitch = 1
1656
    z1 = Instance.new("Sound",hed)
1657
    z1.SoundId = "rbxassetid://168586621"
1658
    z1.Looped = false
1659
    z1.Pitch = 1
1660
    wait(0.01)
1661
    z:Play()
1662
    z1:Play()
1663
        for i = 1, 12 do
1664
            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)
1665
            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)
1666
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
1667
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
1668
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
1669
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
1670
            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)
1671
        if Debounces.on == false then break end
1672
        wait()
1673
    end
1674
to:disconnect()
1675
larm.BrickColor = BrickColor.new("Really black")
1676
rarm.BrickColor = BrickColor.new("Really black")
1677
    if Debounces.CanAttack == false then
1678
        Debounces.CanAttack = true
1679
        Debounces.on = false
1680
        Debounces.NoIdl = false
1681
            end
1682
        end
1683
    end
1684
end)
1685
----------------------------------------------------
1686
Sit = false
1687
mouse.KeyDown:connect(function(key)
1688
    if key == "v" then
1689
        if Sit == false then
1690
            Sit = true
1691
            hum.WalkSpeed = 0.001
1692
        stanceToggle = "Sitting"
1693
    elseif Sit == true then
1694
        Sit = false
1695
            hum.WalkSpeed = 7
1696
        stanceToggle = "Normal"
1697
        end
1698
    end
1699
end)
1700
----------------------------------------------------
1701
mouse.KeyDown:connect(function(key)
1702
    if key == "t" then
1703
        if Debounces.CanAttack == true then
1704
        Debounces.CanAttack = false
1705
        Debounces.on = true
1706
        Debounces.NoIdl = true
1707
        for i = 1, 20 do
1708
        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)
1709
        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)
1710
        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)
1711
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
1712
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
1713
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
1714
        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)
1715
            if Debounces.on == false then break end
1716
            wait()
1717
        end
1718
        Spawn(function()
1719
            local Parts = {}
1720
            for Y = -5,5 do
1721
                local P = Instance.new("Part",char)
1722
                P.Anchored = true
1723
                P.FormFactor = "Custom"
1724
                P.CanCollide = false
1725
                P.Size = Vector3.new(1,2,1)
1726
                P.TopSurface = "SmoothNoOutlines"
1727
                P.BottomSurface = "SmoothNoOutlines"
1728
                P.BrickColor = BrickColor.new("Really black")
1729
                P.Name = tostring(Y)
1730
                local i = (Y+5)/(10)
1731
                i = 1-math.cos(math.pi*i-(math.pi/2))
1732
                P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
1733
                --[[P.Touched:connect(function(ht)
1734
                    local hit = ht.Parent
1735
                    if hit:FindFirstChild("Humanoid") then
1736
                        hit.Humanoid:TakeDamage(math.random(20,50))
1737
                    end
1738
                end)]]--
1739
        s = Instance.new("Sound",P)
1740
        s.SoundId = "rbxassetid://228343271"
1741
        s.Volume = .7
1742
        s.Pitch = 0.9
1743
        s:Play()
1744
P.Touched:connect(function(ht)
1745
        hit = ht.Parent
1746
        if ht and hit:IsA("Model") then
1747
                if hit:FindFirstChild("Humanoid") then
1748
                    if hit.Name ~= p.Name then
1749
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
1750
                                Debounces.Slashed = true]]--
1751
                                    hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
1752
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
1753
                                wait(1)
1754
                                --Debounces.Slashed = false
1755
                        --end
1756
                end
1757
                end
1758
        elseif ht and hit:IsA("Hat") then
1759
            if hit.Parent.Name ~= p.Name then
1760
                if hit.Parent:FindFirstChild("Humanoid") then
1761
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
1762
                                Debounces.Slashed = true]]--
1763
                                hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
1764
                                hit:FindFirstChild("Humanoid").PlatformStand = true
1765
                                wait(1)
1766
                    --Debounces.Slashed = false
1767
                --end
1768
            end
1769
        end
1770
    end
1771
end)
1772
                Parts[#Parts+1] = P
1773
            end
1774
            local BREAKIT = false
1775
            local CParts = {}
1776
            local Rocks = {}
1777
            local LastPos = nil
1778
            for i = 1,70 do
1779
                for i2,v in pairs(Parts) do
1780
                    v.CFrame = v.CFrame*CFrame.new(0,0,-4)
1781
                    local cf = v.CFrame
1782
                    v.Size = v.Size+Vector3.new(0.4,0.35,0)
1783
                    v.CFrame = cf
1784
                    v.Transparency = v.Transparency+0.02
1785
                    if v.Transparency >= 0.975 then BREAKIT = true end
1786
                    if v.Name == "0" then
1787
                        local Ignore = {}
1788
                        for i,v in pairs(game:GetService("Players"):GetPlayers()) do
1789
                            if v.Character ~= nil then
1790
                                Ignore[#Ignore+1] = v.Character
1791
                            end
1792
                        end
1793
                        local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
1794
                        local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
1795
                        if Hit ~= nil then
1796
                            if #Rocks == 0 then
1797
                                for i = 1,5 do
1798
                                    local P = Instance.new("Part",char)
1799
                                    Rocks[#Rocks+1] = P
1800
                                    P.Anchored = true
1801
                                    P.FormFactor = "Custom"
1802
                                    P.BrickColor = Hit.BrickColor
1803
                                    P.Material = Hit.Material
1804
                                    P.TopSurface = "Smooth"
1805
                                    P.BottomSurface = "Smooth"
1806
                                    P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
1807
                                end
1808
                            end
1809
                            for i,P in pairs(Rocks) do
1810
                                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)))
1811
                            end
1812
                            local P = Instance.new("Part",char)
1813
                            CParts[#CParts+1] = {P,tick()}
1814
                            P.Anchored = true
1815
                            P.FormFactor = "Custom"
1816
                            P.BrickColor = Hit.BrickColor
1817
                            P.Material = Hit.Material
1818
                            P.TopSurface = "Smooth"
1819
                            P.BottomSurface = "Smooth"
1820
                            P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
1821
                            Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
1822
                            Pos = Pos.p
1823
                            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)))
1824
                            local P = P:Clone()
1825
                            CParts[#CParts+1] = {P,tick()}
1826
                            P.Parent = char
1827
                            Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
1828
                            Pos = Pos.p
1829
                            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)))
1830
                            if LastPos ~= nil then
1831
                                local P = P:Clone()
1832
                                CParts[#CParts+1] = {P,tick()}
1833
                                P.Parent = char
1834
                                P.BrickColor = BrickColor.new("Really black")
1835
                                Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
1836
                                Pos = Pos.p
1837
                                local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
1838
                                P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
1839
                                --P.Velocity = Vector3.new(0,-1000,0)
1840
                                P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
1841
                            end
1842
                            LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
1843
                        end
1844
                    end
1845
                end
1846
                if BREAKIT then break end
1847
                wait(0.002)
1848
            end
1849
            for i,v in pairs(Rocks) do
1850
                CParts[#CParts+1] = {v,tick()}
1851
            end
1852
            for i,v in pairs(Parts) do
1853
                v:Destroy()
1854
            end
1855
            Parts = nil
1856
            while true do
1857
                local t = tick()
1858
                local p = nil
1859
                for i,v in pairs(CParts) do
1860
                    if t-v[2] > 4 then
1861
                        v[1].Transparency = v[1].Transparency+0.05
1862
                        if v[1].Transparency >= 1 then
1863
                            v[1]:Destroy()
1864
                            CParts[i] = nil
1865
                        end
1866
                    end
1867
                    p = v
1868
                end
1869
                if p == nil then break end
1870
                wait(0.002)
1871
            end
1872
            for i,v in pairs(CParts) do
1873
                v:Destroy()
1874
            end
1875
            CParts = {}
1876
        end)
1877
        for i = 1, 20 do
1878
        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)
1879
        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)
1880
        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)
1881
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
1882
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
1883
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
1884
        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)
1885
            if Debounces.on == false then break end
1886
            wait()
1887
        end
1888
    if Debounces.CanAttack == false then
1889
        Debounces.CanAttack = true
1890
        Debounces.on = false
1891
        Debounces.NoIdl = false
1892
            end
1893
        end
1894
    end
1895
end)
1896
----------------------------------------------------
1897
mouse.KeyDown:connect(function(key)
1898
    if key == "e" then
1899
    larm.BrickColor = BrickColor.new("Bright red")
1900
    rarm.BrickColor = BrickColor.new("Bright red")
1901
        if Debounces.CanAttack == true then
1902
        Debounces.CanAttack = false
1903
        Debounces.on = true
1904
        Debounces.NoIdl = true
1905
        for i = 1, 18 do
1906
            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)
1907
            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)
1908
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
1909
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
1910
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
1911
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
1912
            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)
1913
        if Debounces.on == false then break end
1914
            wait()
1915
        end
1916
        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))
1917
        local rng = Instance.new("Part", char.Absolution.Handle)
1918
        rng.Anchored = true
1919
        rng.BrickColor = BrickColor.new("Really black")
1920
        rng.CanCollide = true
1921
        rng.FormFactor = 3
1922
        rng.Name = "Ring"
1923
        rng.Size = Vector3.new(1, 1, 1)
1924
        rng.CanCollide = false
1925
        rng.Transparency = 0.35
1926
        rng.TopSurface = 0
1927
        rng.BottomSurface = 0
1928
        rng.CFrame = HandCF
1929
        local rngm = Instance.new("SpecialMesh", rng)
1930
        rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
1931
        rngm.Scale = Vector3.new(1, 1, 2)
1932
            x = Instance.new("Sound", hed)
1933
            x.SoundId = "http://www.roblox.com/asset/?id=169445602"
1934
            x.Looped = false
1935
            x.Pitch = .7
1936
            x.Volume = 1
1937
            x1 = Instance.new("Sound", hed)
1938
            x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
1939
            x1.Looped = false
1940
            x1.Pitch = .7
1941
            x1.Volume = 1
1942
            x:Play()
1943
            x1:Play()
1944
            rngto = rng.Touched:connect(function(ht)
1945
            hit = ht.Parent
1946
            if ht and hit:IsA("Model") then
1947
                    if hit:FindFirstChild("Humanoid") then
1948
                        if hit.Name ~= p.Name then
1949
                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
1950
                                    Debounces.Slashed = true]]--
1951
                                    hit:FindFirstChild("Humanoid"):TakeDamage(4)
1952
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
1953
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
1954
                                    --Debounces.Slashed = false
1955
                            --end
1956
                        end
1957
                    end
1958
            elseif ht and hit:IsA("Hat") then
1959
                if hit.Parent.Name ~= p.Name then
1960
                    if hit.Parent:FindFirstChild("Humanoid") then
1961
                           --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
1962
                                    Debounces.Slashed = true]]--
1963
                                    hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
1964
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
1965
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
1966
                        --Debounces.Slashed = false
1967
                    end
1968
                end
1969
            end    
1970
        end)
1971
                coroutine.wrap(function()
1972
                for i = 1, 60, 2 do
1973
                rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
1974
                rng.Size = rngm.Scale
1975
                rng.CFrame = HandCF
1976
                rng.Transparency = i/60
1977
                wait()
1978
                end
1979
                wait()
1980
                rng:Destroy()
1981
                end)()
1982
        for i = 1, 18 do
1983
            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)
1984
            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)
1985
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
1986
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
1987
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
1988
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
1989
            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)
1990
        if Debounces.on == false then break end
1991
            wait()
1992
        end
1993
        larm.BrickColor = BrickColor.new("Really black")
1994
        rarm.BrickColor = BrickColor.new("Really black")
1995
        x:Destroy()
1996
        x1:Destroy()
1997
    if Debounces.CanAttack == false then
1998
        Debounces.CanAttack = true
1999
        Debounces.on = false
2000
        Debounces.NoIdl = false
2001
            end
2002
        end
2003
    end
2004
end)
2005
----------------------------------------------------
2006
mouse.KeyDown:connect(function(key)
2007
	if key == "y" then
2008
		if Debounces.CanAttack == true then
2009
            Debounces.CanAttack = false
2010
            Debounces.on = true
2011
            Debounces.NoIdl = true
2012
				for i = 1, 15 do
2013
					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)
2014
					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)
2015
					hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
2016
					torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
2017
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
2018
					rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
2019
					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)
2020
                    if Debounces.on == false then break end
2021
                    wait()
2022
                end
2023
				x = Instance.new("Sound",char)
2024
				x.SoundId = "rbxassetid://228343271"
2025
				x.Pitch = 1
2026
				x.Volume = .8
2027
				wait(.1)
2028
				x:Play()
2029
				Debounces.on = false
2030
				Debounces.Here = false
2031
				shot = shot + 1
2032
local rng = Instance.new("Part", char)
2033
rng.Anchored = true
2034
rng.BrickColor = BrickColor.new("Really black")
2035
rng.CanCollide = false
2036
rng.FormFactor = 3
2037
rng.Name = "Ring"
2038
rng.Size = Vector3.new(1, 1, 1)
2039
rng.Transparency = 0.35
2040
rng.TopSurface = 0
2041
rng.BottomSurface = 0
2042
rng2 = rng:clone()
2043
rng3 = rng2:clone()
2044
rng4 = rng2:clone()
2045
local rngm = Instance.new("SpecialMesh", rng)
2046
rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
2047
rngm.Scale = Vector3.new(10, 10, 1)
2048
rngm2 = rngm:clone()
2049
rngm2.Scale = Vector3.new(5, 5, 1)
2050
rngm3=rngm2:clone()
2051
rngm3.Parent = rng3
2052
rngm3.Scale = Vector3.new(8, 8, 1)
2053
rngm4 = rngm2:clone()
2054
rngm4.Parent = rng4
2055
rngm4.Scale = Vector3.new(6, 6, 1)
2056
local bem = Instance.new("Part", char)
2057
bem.Anchored = true
2058
bem.BrickColor = BrickColor.new("Really black")
2059
bem.CanCollide = false
2060
bem.FormFactor = 3
2061
bem.Name = "Beam" .. shot
2062
bem.Size = Vector3.new(1, 1, 1)
2063
bem.Transparency = 0.35
2064
bem.TopSurface = 0
2065
bem.BottomSurface = 0
2066
local bemm = Instance.new("SpecialMesh", bem)
2067
bemm.MeshType = 4
2068
bemm.Scale = Vector3.new(1, 4, 4)
2069
local out = Instance.new("Part", char)
2070
out.Anchored = true
2071
out.BrickColor = BrickColor.new("Really black")
2072
out.CanCollide = false
2073
out.FormFactor = 3
2074
out.Name = "Out"
2075
out.Size = Vector3.new(4, 4, 4)
2076
out.Transparency = 0.35
2077
out.TopSurface = 0
2078
out.BottomSurface = 0
2079
local outm = Instance.new("SpecialMesh", out)
2080
outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
2081
outm.Scale = Vector3.new(4, 4, 4)
2082
local bnd = Instance.new("Part", char)
2083
bnd.Anchored = true
2084
bnd.BrickColor = BrickColor.new("Really black")
2085
bnd.CanCollide = false
2086
bnd.FormFactor = 3
2087
bnd.Name = "Bend"
2088
bnd.Size = Vector3.new(1, 1, 1)
2089
bnd.Transparency = 1
2090
bnd.TopSurface = 0
2091
bnd.BottomSurface = 0
2092
local bndm = Instance.new("SpecialMesh", bnd)
2093
bndm.MeshType = 3
2094
bndm.Scale = Vector3.new(8, 8, 8)
2095
out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
2096
bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
2097
bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
2098
rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
2099
rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
2100
rng4.CFrame = rng3.CFrame * CFrame.new(0, -.5, 0)
2101
Debounces.Shewt = true
2102
coroutine.wrap(function()
2103
for i = 1, 20, 0.2 do
2104
rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
2105
rngm3.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
2106
rngm4.Scale = Vector3.new(6 + i*2, 6 + i*2, 1)
2107
rng.Transparency = i/20
2108
rng3.Transparency = 1/16
2109
rng4.Transparency = i/12
2110
wait()
2111
end
2112
wait()
2113
rng:Destroy()
2114
end)()
2115
if Debounces.Shewt == true then
2116
char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
2117
hit = ht.Parent
2118
if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
2119
if HasntTouched(hit.Name) == true and deb == false then
2120
deb = true
2121
coroutine.wrap(function()
2122
hit:FindFirstChild("Humanoid").PlatformStand = true
2123
hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
2124
hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
2125
end)()
2126
table.insert(Touche, hit.Name)
2127
deb = false
2128
end
2129
elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
2130
if HasntTouched(hit.Parent.Name) == true and deb == false then
2131
deb = true
2132
coroutine.wrap(function()
2133
hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
2134
hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
2135
wait(1)
2136
hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
2137
end)()
2138
table.insert(Touche, hit.Parent.Name)
2139
deb = false
2140
for i, v in pairs(Touche) do
2141
print(v)
2142
end
2143
end
2144
end
2145
end)
2146
end
2147
for i = 0, 260, 8 do
2148
bem.Size = Vector3.new(i, 2, 2)
2149
bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
2150
bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
2151
bnd.Size = Vector3.new(1,1,1)
2152
bndm.Scale = Vector3.new(8,8,8)
2153
if i % 10 == 0 then
2154
local newRng = rng2:Clone()
2155
newRng.Parent = char
2156
newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
2157
local newRngm = rngm2:clone()
2158
newRngm.Parent=newRng
2159
coroutine.wrap(function()
2160
for i = 1, 10, 0.2 do
2161
newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
2162
newRng.Transparency = i/10
2163
wait()
2164
end
2165
wait()
2166
newRng:Destroy()
2167
end)()
2168
end
2169
wait()
2170
end
2171
wait()
2172
Debounces.Shewt = false
2173
bem:Destroy()
2174
out:Destroy()
2175
bnd:Destroy()
2176
Debounces.Ready = false
2177
for i, v in pairs(Touche) do
2178
table.remove(Touche, i)
2179
end
2180
wait()
2181
table.insert(Touche, char.Name)
2182
Debounces.NoIdl = false
2183
if Debounces.CanAttack == false then
2184
Debounces.CanAttack = true
2185
end
2186
end
2187
end
2188
end)
2189
----------------------------------------------------
2190
sidz = {"231917888", "231917845", "231917806"}
2191
ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
2192
mouse.KeyDown:connect(function(key)
2193
    if key == "f" then
2194
    larm.BrickColor = BrickColor.new("Bright red")
2195
    rarm.BrickColor = BrickColor.new("Bright red")
2196
        if Debounces.CanAttack == true then
2197
            Debounces.CanAttack = false
2198
            Debounces.on = true
2199
            Debounces.NoIdl = true
2200
                for i = 1, 10 do
2201
                    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)
2202
                    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)
2203
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
2204
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
2205
                    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)
2206
                    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)
2207
                    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)
2208
                    if Debounces.on == false then break end
2209
                    wait()
2210
                end
2211
                z = Instance.new("Sound",char)
2212
                z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
2213
                z.Pitch = ptz[math.random(1,#ptz)]
2214
                z.Volume = 1
2215
                z1 = Instance.new("Sound",char)
2216
                z1.SoundId = z.SoundId
2217
                z1.Pitch = z.Pitch
2218
                z1.Volume = 1
2219
                wait(1)
2220
                z:Play()
2221
                z1:Play()
2222
                Stomp()
2223
                for i = 1, 20 do
2224
                    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)
2225
                    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)
2226
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
2227
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.6)
2228
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
2229
                    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)
2230
                    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)
2231
                    if Debounces.on == false then break end
2232
                    wait()
2233
                end
2234
        if Debounces.CanAttack == false then
2235
            Debounces.CanAttack = true
2236
            Debounces.on = false
2237
            Debounces.NoIdl = false
2238
            larm.BrickColor = BrickColor.new("Really black")
2239
            rarm.BrickColor = BrickColor.new("Really black")
2240
            end
2241
        end
2242
    end
2243
end)    
2244
----------------------------------------------------
2245
mouse.KeyDown:connect(function(key)
2246
    if key == "g" then
2247
    larm.BrickColor = BrickColor.new("Bright red")
2248
    rarm.BrickColor = BrickColor.new("Bright red")
2249
        if Debounces.CanAttack == true then
2250
        Debounces.CanAttack = false
2251
        Debounces.on = true
2252
        Debounces.NoIdl = true
2253
        chrg = lleg.Touched:connect(function(ht)
2254
        hit = ht.Parent
2255
            if ht and hit:IsA("Model") then
2256
                    if hit:FindFirstChild("Humanoid") then
2257
                        if hit.Name ~= p.Name then
2258
                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
2259
                                    Debounces.Slashed = true]]--
2260
                                    hit:FindFirstChild("Humanoid"):TakeDamage(2)
2261
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
2262
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
2263
                                    --Debounces.Slashed = false
2264
                            --end
2265
                        end
2266
                    end
2267
            elseif ht and hit:IsA("Hat") then
2268
                if hit.Parent.Name ~= p.Name then
2269
                    if hit.Parent:FindFirstChild("Humanoid") then
2270
                           --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
2271
                                    Debounces.Slashed = true]]--
2272
                                    hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
2273
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
2274
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
2275
                        --Debounces.Slashed = false
2276
                    end
2277
                end
2278
            end    
2279
        end)
2280
        for i = 1, 14 do
2281
            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)
2282
            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)
2283
            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)
2284
            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)
2285
            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)
2286
            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)
2287
            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)
2288
            if Debounces.on == false then break end
2289
            wait()
2290
        end
2291
        charge()
2292
        z = Instance.new("Sound",char)
2293
        z.SoundId = "rbxassetid://200632875"
2294
        z.Volume = 1
2295
        z.Pitch = .8
2296
        z1 = Instance.new("Sound",char)
2297
        z1.SoundId = "rbxassetid://200632875"
2298
        z1.Volume = 1
2299
        z1.Pitch = .9
2300
        z:Play()
2301
        z1:Play()
2302
        wait(1)
2303
        z:Destroy()
2304
        z1:Destroy()
2305
        chrg:disconnect()
2306
        if Debounces.CanAttack == false then
2307
            Debounces.CanAttack = true
2308
            Debounces.on = false
2309
            Debounces.NoIdl = false
2310
            larm.BrickColor = BrickColor.new("Really black")
2311
            rarm.BrickColor = BrickColor.new("Really black")
2312
            end
2313
        end
2314
    end
2315
end)
2316
----------------------------------------------------
2317
pt = {0.7, 0.8, 0.9}
2318
mouse.KeyDown:connect(function(key)
2319
    if key == "h" then
2320
        if Debounces.CanJoke == true then
2321
            Debounces.CanJoke = false
2322
            u = Instance.new("Sound")
2323
            u.SoundId = "http://www.roblox.com/asset/?id=138199573"
2324
            u.Parent = char
2325
            u.Looped = false
2326
            u.Pitch = pt[math.random(1,#pt)]
2327
            u.Volume = 1
2328
            u2 = Instance.new("Sound")
2329
            u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
2330
            u2.Parent = char
2331
            u2.Looped = false
2332
            u2.Pitch = u.Pitch
2333
            u2.Volume = 1
2334
            wait(.01)
2335
            u:Play()
2336
            u2:Play()
2337
            wait(6)
2338
            u:Destroy()
2339
            u2:Destroy()
2340
            if Debounces.CanJoke == false then
2341
                Debounces.CanJoke = true
2342
            end
2343
        end
2344
    end
2345
end)
2346
----------------------------------------------------
2347
mouse.KeyDown:connect(function(key)
2348
    if key == "j" then
2349
			if Debounces.CanJoke == true then
2350
				Debounces.CanJoke = false
2351
                z = Instance.new("Sound",char)
2352
                z.SoundId = "rbxassetid://135017755"
2353
                z.Pitch = .76
2354
                z.Volume = 1
2355
				wait()
2356
				z:Play()
2357
				wait(6)
2358
				z: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 == "k" then
2368
			if Debounces.CanJoke == true then
2369
				Debounces.CanJoke = false
2370
                z = Instance.new("Sound",char)
2371
                z.SoundId = "rbxassetid://135017578"
2372
                z.Pitch = .76
2373
                z.Volume = 1
2374
				wait()
2375
				z:Play()
2376
				wait(4)
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 == "x" then
2387
        if Debounces.CanAttack == true then
2388
            Debounces.CanAttack = false
2389
            Debounces.NoIdl = true
2390
            Debounces.on = true
2391
            Debounces.ks = true
2392
        for i = 1, 10 do
2393
            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)
2394
            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)
2395
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
2396
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.6)
2397
            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)
2398
            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)
2399
            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)
2400
            if Debounces.on == false then break end
2401
            wait()
2402
        end
2403
        z = Instance.new("Sound",hed)
2404
        z.SoundId = "rbxassetid://169445092"
2405
        z.Volume = 1
2406
        wait(0.1)
2407
        z:Play()
2408
        kik = rleg.Touched:connect(function(ht)
2409
        hit = ht.Parent
2410
            if ht and hit:IsA("Model") then
2411
                    if hit:FindFirstChild("Humanoid") then
2412
                        if hit.Name ~= p.Name then
2413
                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
2414
                                    Debounces.Slashed = true]]--
2415
                                    if Debounces.ks==true then
2416
                                    z = Instance.new("Sound",hed)
2417
                                    z.SoundId = "rbxassetid://169380525"
2418
                                    z.Volume = 1
2419
                                    z:Play()
2420
                                    Debounces.ks=false
2421
                                    end
2422
                                    hit:FindFirstChild("Humanoid"):TakeDamage(2)
2423
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
2424
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
2425
                            --Debounces.Slashed = false
2426
                        --end
2427
                    end
2428
                end
2429
            elseif ht and hit:IsA("Hat") then
2430
                if hit.Parent.Name ~= p.Name then
2431
                    if hit.Parent:FindFirstChild("Humanoid") then
2432
                           --[[if Debounces.Slashing == true and Debounces.Slashed == false then
2433
                                    Debounces.Slashed = true]]--
2434
                                    hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
2435
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
2436
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
2437
                            --Debounces.Slashed = false
2438
                        --end
2439
                    end
2440
                end
2441
            end    
2442
        end)
2443
        for i = 1, 8 do
2444
            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)
2445
            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)
2446
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.7)
2447
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.7)
2448
            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)
2449
            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)
2450
            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)
2451
            if Debounces.on == false then break end
2452
            wait()
2453
        end
2454
        kik:disconnect()
2455
        if Debounces.CanAttack == false then
2456
            Debounces.CanAttack = true
2457
            Debounces.on = false
2458
            Debounces.NoIdl = false
2459
            end
2460
        end
2461
    end
2462
end)
2463
----------------------------------------------------
2464
mouse.KeyDown:connect(function(key)
2465
    if key == "c" then
2466
        if Debounces.CanAttack == true then
2467
            Debounces.CanAttack = false
2468
            Debounces.NoIdl = true
2469
            Debounces.on = true
2470
            SIDZ = {"231917744", "231917742"}
2471
            PTZ = {0.7, 0.8, 0.9, 1}
2472
                for i = 1, 20 do
2473
                    wait()
2474
                        for i,v in pairs(char.Absolution:children()) do
2475
                    if v:IsA("Part") or v:IsA("WedgePart") then
2476
                        v.Transparency = v.Transparency + 0.05
2477
                        end
2478
                    end
2479
                end
2480
                function FindNearestTorso(Position,Distance,SinglePlayer)
2481
                    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
2482
                        local List = {}
2483
                        for i,v in pairs(workspace:GetChildren())do
2484
                            if v:IsA("Model")then
2485
                                if v:findFirstChild("Torso")then
2486
                                    if v ~= char then
2487
                                        if(v.Torso.Position -Position).magnitude <= Distance then
2488
                                            table.insert(List,v)
2489
                                        end 
2490
                                    end 
2491
                                end 
2492
                            end 
2493
                        end
2494
                    return List
2495
                end
2496
                GroundPound()
2497
                for i = 1, 5 do
2498
                    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)
2499
                    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)
2500
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
2501
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
2502
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
2503
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
2504
                    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)
2505
                    if Debounces.on == false then break end
2506
                    wait()
2507
                end
2508
                GroundPound()
2509
                for i = 1, 5 do
2510
                    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)
2511
                    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)
2512
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
2513
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
2514
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
2515
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
2516
                    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)
2517
                    if Debounces.on == false then break end
2518
                    wait()
2519
                end
2520
                GroundPound()
2521
                for i = 1, 5 do
2522
                    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)
2523
                    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)
2524
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
2525
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
2526
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
2527
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
2528
                    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)
2529
                    if Debounces.on == false then break end
2530
                    wait()
2531
                end
2532
                GroundPound()
2533
                for i = 1, 5 do
2534
                    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)
2535
                    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)
2536
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
2537
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
2538
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
2539
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
2540
                    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)
2541
                    if Debounces.on == false then break end
2542
                    wait()
2543
                end
2544
                GroundPound()
2545
                for i = 1, 5 do
2546
                    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)
2547
                    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)
2548
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
2549
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
2550
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
2551
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
2552
                    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)
2553
                    if Debounces.on == false then break end
2554
                    wait()
2555
                end
2556
                GroundPound()
2557
                for i = 1, 5 do
2558
                    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)
2559
                    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)
2560
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
2561
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
2562
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
2563
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
2564
                    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)
2565
                    if Debounces.on == false then break end
2566
                    wait()
2567
                end
2568
                for i = 1, 18 do
2569
                    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)
2570
                    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)
2571
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
2572
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
2573
                    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)
2574
                    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)
2575
                    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)
2576
                    if Debounces.on == false then break end
2577
                    wait()
2578
                end
2579
                for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
2580
                    if v:FindFirstChild('Humanoid') then
2581
                        v.Humanoid:TakeDamage(math.random(20,60))
2582
                        v.Humanoid.PlatformStand = true
2583
                        v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
2584
                    end
2585
                end
2586
                x = Instance.new("Sound",char)
2587
                x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
2588
                x.Pitch = PTZ[math.random(1,#PTZ)]
2589
                x.Volume = 1
2590
                wait(0.1)
2591
                x:Play()
2592
                Crater(hed,20)
2593
                for i = 1, 14 do
2594
                    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)
2595
                    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)
2596
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
2597
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
2598
                    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)
2599
                    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)
2600
                    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)
2601
                    if Debounces.on == false then break end
2602
                    wait()
2603
                end
2604
            if Debounces.CanAttack == false then
2605
                Debounces.CanAttack = true
2606
                Debounces.on = false
2607
                Debounces.NoIdl = false
2608
                for i = 1, 20 do
2609
                    wait()
2610
                        for i,v in pairs(char.Absolution:children()) do
2611
                    if v:IsA("Part") or v:IsA("WedgePart") then
2612
                        v.Transparency = v.Transparency - 0.05
2613
                        end
2614
                    end
2615
                end
2616
            end
2617
        end
2618
    end
2619
end)
2620
----------------------------------------------------176349813
2621
mouse.KeyDown:connect(function(key)
2622
    if key == "b" then
2623
        hum.WalkSpeed = 0.01
2624
        if Debounces.CanAttack == true then
2625
            Debounces.CanAttack = false
2626
            Debounces.NoIdl = true
2627
            Debounces.on = true
2628
            for i = 1,20 do
2629
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
2630
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
2631
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
2632
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
2633
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
2634
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
2635
            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)
2636
            if Debounces.on == false then break end
2637
            wait()
2638
            end
2639
        wait(1)
2640
        v = Instance.new("Sound")
2641
        v.SoundId = "rbxassetid://181384451"
2642
        v.Parent = char
2643
        v.Looped = false
2644
        v.Pitch = 1.04
2645
        v.Volume = 1
2646
        wait(.01)
2647
        v:Play()
2648
        
2649
        if Daytime == true then
2650
            Daytime = false
2651
            l.TimeOfDay = 24
2652
        else
2653
            Daytime = true
2654
            l.TimeOfDay = 12
2655
            l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
2656
        end
2657
        
2658
            local Shockwave = function()
2659
                local rng1 = Instance.new("Part", char)
2660
                rng1.Anchored = true
2661
                rng1.BrickColor = BrickColor.new("Really black")
2662
                rng1.CanCollide = false
2663
                rng1.FormFactor = 3
2664
                rng1.Name = "Ring"
2665
                rng1.Size = Vector3.new(1, 1, 1)
2666
                rng1.Transparency = 0.35
2667
                rng1.TopSurface = 0
2668
                rng1.BottomSurface = 0
2669
                local rngm1 = Instance.new("SpecialMesh", rng)
2670
                rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
2671
                rngm1.Scale = Vector3.new(10, 10, 1)
2672
                rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
2673
                local Wave = Instance.new("Part", game.Workspace--[[?]])
2674
                Wave.Name = "Shockwave"
2675
                Wave.BrickColor = BrickColor.new("Really black")
2676
                Wave.Size = Vector3.new(1, 1, 1)
2677
                Wave.Shape = "Ball"
2678
                Wave.CanCollide = false
2679
                Wave.Anchored = true
2680
                Wave.TopSurface = 0
2681
                Wave.BottomSurface = 0
2682
                Wave.Touched:connect(function(hit)
2683
                    if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
2684
                        local Occlude = true
2685
                        local NotOccludes = {
2686
                            char.Name;
2687
                            "Wings";
2688
                            "Scythe";
2689
                            "Thingy";
2690
                            "Thingy2"; -- put all of the names in a table pls
2691
                        }
2692
                        for i,v in pairs(NotOccludes) do
2693
                            if hit.Parent.Name == v then
2694
                                Occlude = false
2695
                            end
2696
                        end
2697
                        --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
2698
                        if Occlude then
2699
                            hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
2700
                            hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
2701
                        end
2702
                    end
2703
                end)
2704
                
2705
                Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
2706
                
2707
                coroutine.wrap(function()
2708
                    for i = 1, 20, 0.2 do
2709
                        rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
2710
                        rng1.Transparency = i/20
2711
                    wait()
2712
                    end
2713
                    wait()
2714
                    rng1:Destroy()
2715
                end)()
2716
                
2717
                Delay(0, function()
2718
2719
                    if Daytime == false then
2720
                       for i = 1, 50, 1 do
2721
                            Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
2722
                            Wave.CFrame = char.Torso.CFrame
2723
                            local t = i / 50
2724
                            Wave.Transparency = t
2725
                            wait()
2726
                        end
2727
                    else
2728
                        for i = 1, 50, 1 do
2729
                            Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
2730
                            Wave.CFrame = char.Torso.CFrame
2731
                            local t = i / 50
2732
                            Wave.Transparency = t
2733
                            wait()
2734
                        end
2735
                    end
2736
                    Wave:Destroy()
2737
                end)
2738
                Delay(0, function()
2739
                    while wait() do
2740
                        if Wave ~= nil then
2741
                            Wave.CFrame = char.Torso.CFrame
2742
                        else
2743
                            break
2744
                        end
2745
                    end
2746
                end)
2747
            end
2748
        Shockwave() 
2749
        for i = 1, 15 do
2750
            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)
2751
            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)
2752
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
2753
            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)
2754
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
2755
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
2756
            if Debounces.on == false then break end
2757
            wait()
2758
        end
2759
        for i = 1, 15 do
2760
            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)
2761
            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)
2762
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
2763
            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)
2764
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
2765
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
2766
            if Debounces.on == false then break end
2767
            wait()
2768
        end
2769
        for i = 1, 15 do
2770
            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)
2771
            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)
2772
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
2773
            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)
2774
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
2775
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
2776
            if Debounces.on == false then break end
2777
            wait()
2778
        end
2779
        for i = 1, 15 do
2780
            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)
2781
            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)
2782
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
2783
            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)
2784
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
2785
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
2786
            if Debounces.on == false then break end
2787
            wait()
2788
        end
2789
        for i = 1, 15 do
2790
            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)
2791
            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)
2792
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
2793
            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)
2794
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
2795
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
2796
            if Debounces.on == false then break end
2797
            wait()
2798
        end
2799
        for i = 1, 15 do
2800
            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)
2801
            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)
2802
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
2803
            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)
2804
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
2805
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
2806
            if Debounces.on == false then break end
2807
            wait()
2808
        end
2809
        wait(1.4)
2810
        Debounces.NoIdl = false
2811
        hum.WalkSpeed = 5
2812
        Debounces.on = false
2813
        wait()
2814
        if Debounces.CanAttack == false then
2815
            Debounces.CanAttack = true
2816
            v:Destroy()
2817
            end
2818
        end
2819
    end
2820
end)
2821
----------------------------------------------------
2822
mouse.KeyDown:connect(function(key)
2823
    if key == "m" then
2824
hum.WalkSpeed = 0
2825
        if Debounces.CanAttack == true then
2826
        Debounces.CanAttack = false
2827
        Debounces.on = true
2828
        Debounces.NoIdl = true
2829
            --[[x = Instance.new("Sound",char)
2830
            x.SoundId = "http://www.roblox.com/asset/?id=169445572"
2831
            x.Looped = false
2832
            x.Pitch = 1.1
2833
            x.Volume = 1
2834
            x:Play()
2835
            x2 = Instance.new("Sound",char)
2836
            x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
2837
            x2.Looped = false
2838
            x2.Pitch = .7
2839
            x2.Volume = 1
2840
            wait(.1)
2841
            x:Play()
2842
            x2:Play()
2843
        for i = 1, 20 do
2844
            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)
2845
            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)
2846
            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)
2847
            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)
2848
            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)
2849
            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)
2850
            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)
2851
            if Debounces.on == false then break end
2852
                wait()
2853
            x:Destroy()
2854
            x2:Destroy()
2855
            end
2856
            wait(1)]]--
2857
        local rng = Instance.new("Part", char)
2858
        rng.Anchored = true
2859
        rng.BrickColor = BrickColor.new("Really black")
2860
        rng.CanCollide = false
2861
        rng.FormFactor = 3
2862
        rng.Name = "Ring"
2863
        rng.Size = Vector3.new(1, 1, 1)
2864
        rng.Transparency = 0.35
2865
        rng.TopSurface = 0
2866
        rng.BottomSurface = 0
2867
        rng.Position = torso.Position - Vector3.new(0,2,0)
2868
        rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
2869
        local rngm = Instance.new("SpecialMesh", rng)
2870
        rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
2871
        rngm.Scale = Vector3.new(1, 1, 2)
2872
            x = Instance.new("Sound",char)
2873
            x.SoundId = "http://www.roblox.com/asset/?id=169445602"
2874
            x.Looped = false
2875
            x.Pitch = .7
2876
            x.Volume = 1
2877
            x:Play()
2878
                coroutine.wrap(function()
2879
                for i = 1, 60, 2 do
2880
                rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
2881
                rng.Transparency = i/60
2882
                wait()
2883
                end
2884
                wait()
2885
                rng:Destroy()
2886
                end)()
2887
            hum.WalkSpeed = 50
2888
        BV = Instance.new("BodyVelocity", torso)
2889
        BV.maxForce = Vector3.new(0,200000,0)
2890
        BV.P = 100000
2891
        BV.velocity = Vector3.new(0,800,0)
2892
    for i = 1, 20 do
2893
        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)
2894
        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)
2895
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0,     math.rad(-20)), 0.7)
2896
        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)
2897
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
2898
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
2899
        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)
2900
        if Debounces.on == false then break end
2901
        wait()
2902
    end
2903
x:Destroy()
2904
BV:Destroy()
2905
    --[[for i = 1, 30 do
2906
        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)
2907
        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)
2908
        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)
2909
        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)
2910
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
2911
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0),     0.3)
2912
        if Debounces.on == false then break end
2913
        wait()
2914
    end]]--
2915
if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
2916
    for i = 1, 30 do
2917
        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)
2918
        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)
2919
        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)
2920
        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)
2921
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
2922
        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)
2923
        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)
2924
        if Debounces.on == false then break end
2925
        wait()
2926
    end
2927
end
2928
Debounces.on = false
2929
Debounces.NoIdl = false
2930
local ry,ht,ps=nil,nil,nil
2931
while ht==nil do
2932
	ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
2933
	wait()
2934
end
2935
z = Instance.new("Sound",char)
2936
z.SoundId = "rbxassetid://142070127"
2937
z.Volume = 1
2938
wait(.1)
2939
z:Play()
2940
Landing()
2941
hum.WalkSpeed = 8
2942
if Debounces.CanAttack == false then
2943
Debounces.CanAttack = true
2944
end
2945
end
2946
end
2947
end)
2948
----------------------------------------------------
2949
Grab = false
2950
mouse.KeyDown:connect(function(key)
2951
    if key == "z" then
2952
    larm.BrickColor = BrickColor.new("Bright red")
2953
    rarm.BrickColor = BrickColor.new("Bright red")
2954
        Debounces.on = true
2955
        Debounces.NoIdl = true
2956
        if Grab == false then
2957
        gp = nil
2958
        con1=larm.Touched:connect(function(hit) -- this is grab
2959
            ht = hit.Parent
2960
            hum1=ht:FindFirstChild('Humanoid')
2961
            if hum1 ~= nil then
2962
                hum1.PlatformStand=true
2963
                gp = ht
2964
                Grab = true
2965
                asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
2966
                asd.Parent = larm
2967
                asd.Name = "asd"
2968
                asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
2969
            elseif hum1 == nil then
2970
                con1:disconnect()
2971
                wait() return
2972
            end
2973
        end)
2974
        for i = 1, 18 do
2975
            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)
2976
            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)
2977
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
2978
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
2979
            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)
2980
            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)
2981
            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)
2982
            if Debounces.on == false then break end
2983
            wait()
2984
        end
2985
    con1:disconnect()
2986
    Debounces.on = false
2987
    Debounces.NoIdl = false
2988
    elseif Grab == true then
2989
        Grab = false
2990
    for i = 1, 20 do
2991
        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)
2992
        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)
2993
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
2994
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
2995
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
2996
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
2997
        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)
2998
        if Debounces.on == false then end
2999
        wait()
3000
    end
3001
        if gp ~= nil then
3002
        for i,v in pairs(larm:GetChildren()) do
3003
            if v.Name == "asd" and v:IsA("Weld") then
3004
                v:Remove()
3005
            end
3006
        end
3007
        bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
3008
        bv.maxForce = Vector3.new(400000, 400000, 400000)
3009
        bv.P = 125000
3010
        bv.velocity = char.Head.CFrame.lookVector * 200
3011
        for i = 1, 12 do
3012
            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)
3013
            if Debounces.on == false then end
3014
            wait()
3015
        end
3016
        ht=nil
3017
        Spawn(function()
3018
            wait(0.5)
3019
            bv:Destroy()
3020
        end)
3021
        Debounces.on = false
3022
        Debounces.NoIdl = false
3023
        elseif ht == nil then wait()
3024
        Grab = false
3025
        Debounces.on = false
3026
        Debounces.NoIdl = false
3027
            end
3028
        end
3029
    end
3030
end)
3031
mouse.KeyDown:connect(function(key)
3032
    if string.byte(key) == 52 then
3033
        char.Humanoid.WalkSpeed = 21
3034
    end
3035
end)
3036
mouse.KeyUp:connect(function(key)
3037
    if string.byte(key) == 52 then
3038
        char.Humanoid.WalkSpeed = 5
3039
    end
3040
end)
3041
----------------------------------------------------
3042
local animpose = "Idle"
3043
local lastanimpose = "Idle"
3044
local sine = 0
3045
local change = 1
3046
local val = 0
3047
local ffing = false
3048
----------------------------------------------------
3049
-------------------------------
3050
game:GetService("RunService").RenderStepped:connect(function()
3051
--[[if char.Humanoid.Jump == true then
3052
jump = true
3053
else
3054
jump = false
3055
end]]
3056
char.Humanoid.FreeFalling:connect(function(f)
3057
if f then
3058
ffing = true
3059
else
3060
ffing = false
3061
end
3062
end)
3063
sine = sine + change
3064
if jumpn == true then
3065
animpose = "Jumping"
3066
elseif ffing == true then
3067
animpose = "Freefalling"
3068
elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
3069
animpose = "Idle"
3070
elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
3071
animpose = "Walking"
3072
elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
3073
animpose = "Running"
3074
end
3075
if animpose ~= lastanimpose then
3076
sine = 0
3077
if Debounces.NoIdl == false then
3078
if animpose == "Idle" then
3079
for i = 1, 2 do
3080
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)
3081
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)
3082
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
3083
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
3084
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
3085
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
3086
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)
3087
end
3088
elseif animpose == "Walking" then
3089
for i = 1, 2 do
3090
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)
3091
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)
3092
hed.Weld.C0 = CFrame.new(0,4,-1.5)*CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0)
3093
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)
3094
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)
3095
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(1.2, 20, -.2) * CFrame.Angles(math.rad(-15),0, math.rad(0)), 0.05)
3096
end
3097
elseif animpose == "Running" then
3098
for i = 1, 2 do
3099
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)
3100
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)
3101
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)
3102
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)
3103
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)
3104
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)
3105
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)
3106
end
3107
wait()
3108
end
3109
else
3110
end
3111
end
3112
lastanimpose = animpose
3113
if Debounces.NoIdl == false then
3114
if animpose == "Idle" then
3115
if stanceToggle == "Normal" then
3116
change = 0.5
3117
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)
3118
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)
3119
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)
3120
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)
3121
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)
3122
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)
3123
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)
3124
elseif stanceToggle == "Sitting" then
3125
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)
3126
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)
3127
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)
3128
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)
3129
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)
3130
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)
3131
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)
3132
end
3133
elseif animpose == "Walking" then
3134
if stanceToggle == "Normal" then
3135
change = 1
3136
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)
3137
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)
3138
hed.Weld.C0 = CFrame.new(0,3,-1.5)*CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0)
3139
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)
3140
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)
3141
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(1.2, 10, -.2) * CFrame.Angles(math.rad(-15),0, math.rad(0)), 0.05)
3142
end
3143
elseif animpose == "Running" then
3144
change = 1
3145
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)
3146
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)
3147
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)
3148
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)
3149
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)
3150
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)
3151
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)
3152
end
3153
end
3154
--[[if animpose == "Walking" then
3155
    if footsteps == false then
3156
        x:Play()
3157
        footsteps = true
3158
    end
3159
    x.Pitch = 1.1
3160
elseif animpose == "Idle" then
3161
    x:Stop()
3162
    footsteps = false
3163
elseif animpose == "Running" then
3164
    x.Pitch = 1.2
3165
    if footsteps == false then
3166
        x:Play()
3167
        footsteps = true
3168
    end
3169
end]]--
3170
end)
3171
3172
3173
3174
	Player=game:GetService('Players').LocalPlayer
3175
	Character=Player.Character
3176
	Mouse=Player:GetMouse()
3177
	m=Instance.new('Model',Character)
3178
3179
3180
	local function weldBetween(a, b)
3181
	    local weldd = Instance.new("ManualWeld")
3182
	    weldd.Part0 = a
3183
	    weldd.Part1 = b
3184
	    weldd.C0 = CFrame.new()
3185
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3186
	    weldd.Parent = a
3187
	    return weldd
3188
	end
3189
	
3190
	it=Instance.new
3191
	
3192
	function nooutline(part)
3193
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3194
	end
3195
	
3196
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3197
		local fp=it("Part")
3198
		fp.formFactor=formfactor
3199
		fp.Parent=parent
3200
		fp.Reflectance=reflectance
3201
		fp.Transparency=transparency
3202
		fp.CanCollide=false
3203
		fp.Locked=true
3204
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3205
		fp.Name=name
3206
		fp.Size=size
3207
		fp.Position=Character.Torso.Position
3208
		nooutline(fp)
3209
		fp.Material=material
3210
		fp:BreakJoints()
3211
		return fp
3212
	end
3213
	
3214
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3215
		local mesh=it(Mesh)
3216
		mesh.Parent=part
3217
		if Mesh=="SpecialMesh" then
3218
			mesh.MeshType=meshtype
3219
			mesh.MeshId=meshid
3220
		end
3221
		mesh.Offset=offset
3222
		mesh.Scale=scale
3223
		return mesh
3224
	end
3225
	
3226
	function weld(parent,part0,part1,c0,c1)
3227
		local weld=it("Weld")
3228
		weld.Parent=parent
3229
		weld.Part0=part0
3230
		weld.Part1=part1
3231
		weld.C0=c0
3232
		weld.C1=c1
3233
		return weld
3234
	end
3235
3236
Head=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Really black","Handle",Vector3.new(4.50989914, 4.5098958, 4.50989771))
3237
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))
3238
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))
3239
	Player=game:GetService('Players').LocalPlayer
3240
	Character=Player.Character
3241
	Mouse=Player:GetMouse()
3242
	m=Instance.new('Model',Character)
3243
3244
3245
	local function weldBetween(a, b)
3246
	    local weldd = Instance.new("ManualWeld")
3247
	    weldd.Part0 = a
3248
	    weldd.Part1 = b
3249
	    weldd.C0 = CFrame.new()
3250
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3251
	    weldd.Parent = a
3252
	    return weldd
3253
	end
3254
	
3255
	it=Instance.new
3256
	
3257
	function nooutline(part)
3258
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3259
	end
3260
	
3261
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3262
		local fp=it("Part")
3263
		fp.formFactor=formfactor
3264
		fp.Parent=parent
3265
		fp.Reflectance=reflectance
3266
		fp.Transparency=transparency
3267
		fp.CanCollide=false
3268
		fp.Locked=true
3269
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3270
		fp.Name=name
3271
		fp.Size=size
3272
		fp.Position=Character.Torso.Position
3273
		nooutline(fp)
3274
		fp.Material=material
3275
		fp:BreakJoints()
3276
		return fp
3277
	end
3278
	
3279
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3280
		local mesh=it(Mesh)
3281
		mesh.Parent=part
3282
		if Mesh=="SpecialMesh" then
3283
			mesh.MeshType=meshtype
3284
			mesh.MeshId=meshid
3285
		end
3286
		mesh.Offset=offset
3287
		mesh.Scale=scale
3288
		return mesh
3289
	end
3290
	
3291
	function weld(parent,part0,part1,c0,c1)
3292
		local weld=it("Weld")
3293
		weld.Parent=parent
3294
		weld.Part0=part0
3295
		weld.Part1=part1
3296
		weld.C0=c0
3297
		weld.C1=c1
3298
		return weld
3299
	end
3300
3301
LArm=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(2.39230847, 1.27000177, 2.25777745))
3302
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))
3303
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
3304
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))
3305
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.39230847, 1.27000177, 2.25777745))
3306
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))
3307
LLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","LLeg",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3308
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))
3309
mesh("SpecialMesh",LLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
3310
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.08000183, 1.9832561))
3311
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))
3312
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3313
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))
3314
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3315
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))
3316
	Player=game:GetService('Players').LocalPlayer
3317
	Character=Player.Character
3318
	Mouse=Player:GetMouse()
3319
	m=Instance.new('Model',Character)
3320
3321
3322
	local function weldBetween(a, b)
3323
	    local weldd = Instance.new("ManualWeld")
3324
	    weldd.Part0 = a
3325
	    weldd.Part1 = b
3326
	    weldd.C0 = CFrame.new()
3327
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3328
	    weldd.Parent = a
3329
	    return weldd
3330
	end
3331
	
3332
	it=Instance.new
3333
	
3334
	function nooutline(part)
3335
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3336
	end
3337
	
3338
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3339
		local fp=it("Part")
3340
		fp.formFactor=formfactor
3341
		fp.Parent=parent
3342
		fp.Reflectance=reflectance
3343
		fp.Transparency=transparency
3344
		fp.CanCollide=false
3345
		fp.Locked=true
3346
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3347
		fp.Name=name
3348
		fp.Size=size
3349
		fp.Position=Character.Torso.Position
3350
		nooutline(fp)
3351
		fp.Material=material
3352
		fp:BreakJoints()
3353
		return fp
3354
	end
3355
	
3356
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3357
		local mesh=it(Mesh)
3358
		mesh.Parent=part
3359
		if Mesh=="SpecialMesh" then
3360
			mesh.MeshType=meshtype
3361
			mesh.MeshId=meshid
3362
		end
3363
		mesh.Offset=offset
3364
		mesh.Scale=scale
3365
		return mesh
3366
	end
3367
	
3368
	function weld(parent,part0,part1,c0,c1)
3369
		local weld=it("Weld")
3370
		weld.Parent=parent
3371
		weld.Part0=part0
3372
		weld.Part1=part1
3373
		weld.C0=c0
3374
		weld.C1=c1
3375
		return weld
3376
	end
3377
3378
RArm=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(2.39230847, 1.27000177, 2.25777745))
3379
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))
3380
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.39230847, 1.27000177, 2.25777745))
3381
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))
3382
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
3383
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))
3384
	Player=game:GetService('Players').LocalPlayer
3385
	Character=Player.Character
3386
	Mouse=Player:GetMouse()
3387
	m=Instance.new('Model',Character)
3388
3389
3390
	local function weldBetween(a, b)
3391
	    local weldd = Instance.new("ManualWeld")
3392
	    weldd.Part0 = a
3393
	    weldd.Part1 = b
3394
	    weldd.C0 = CFrame.new()
3395
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3396
	    weldd.Parent = a
3397
	    return weldd
3398
	end
3399
	
3400
	it=Instance.new
3401
	
3402
	function nooutline(part)
3403
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3404
	end
3405
	
3406
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3407
		local fp=it("Part")
3408
		fp.formFactor=formfactor
3409
		fp.Parent=parent
3410
		fp.Reflectance=reflectance
3411
		fp.Transparency=transparency
3412
		fp.CanCollide=false
3413
		fp.Locked=true
3414
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3415
		fp.Name=name
3416
		fp.Size=size
3417
		fp.Position=Character.Torso.Position
3418
		nooutline(fp)
3419
		fp.Material=material
3420
		fp:BreakJoints()
3421
		return fp
3422
	end
3423
	
3424
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3425
		local mesh=it(Mesh)
3426
		mesh.Parent=part
3427
		if Mesh=="SpecialMesh" then
3428
			mesh.MeshType=meshtype
3429
			mesh.MeshId=meshid
3430
		end
3431
		mesh.Offset=offset
3432
		mesh.Scale=scale
3433
		return mesh
3434
	end
3435
	
3436
	function weld(parent,part0,part1,c0,c1)
3437
		local weld=it("Weld")
3438
		weld.Parent=parent
3439
		weld.Part0=part0
3440
		weld.Part1=part1
3441
		weld.C0=c0
3442
		weld.C1=c1
3443
		return weld
3444
	end
3445
3446
RLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3447
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))
3448
3449
mesh("SpecialMesh",RLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
3450
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3451
3452
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))
3453
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3454
3455
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))
3456
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.0700016, 1.9832561))
3457
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))
3458
3459
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3460
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))
3461
3462
3463
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3464
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))
3465
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3466
3467
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))
3468
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3469
3470
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))
3471
	Player=game:GetService('Players').LocalPlayer
3472
	Character=Player.Character
3473
	Mouse=Player:GetMouse()
3474
	m=Instance.new('Model',Character)
3475
3476
3477
	local function weldBetween(a, b)
3478
	    local weldd = Instance.new("ManualWeld")
3479
	    weldd.Part0 = a
3480
	    weldd.Part1 = b
3481
	    weldd.C0 = CFrame.new()
3482
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3483
	    weldd.Parent = a
3484
	    return weldd
3485
	end
3486
	
3487
	it=Instance.new
3488
	
3489
	function nooutline(part)
3490
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3491
	end
3492
	
3493
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3494
		local fp=it("Part")
3495
		fp.formFactor=formfactor
3496
		fp.Parent=parent
3497
		fp.Reflectance=reflectance
3498
		fp.Transparency=transparency
3499
		fp.CanCollide=false
3500
		fp.Locked=true
3501
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3502
		fp.Name=name
3503
		fp.Size=size
3504
		fp.Position=Character.Torso.Position
3505
		nooutline(fp)
3506
		fp.Material=material
3507
		fp:BreakJoints()
3508
		return fp
3509
	end
3510
	
3511
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3512
		local mesh=it(Mesh)
3513
		mesh.Parent=part
3514
		if Mesh=="SpecialMesh" then
3515
			mesh.MeshType=meshtype
3516
			mesh.MeshId=meshid
3517
		end
3518
		mesh.Offset=offset
3519
		mesh.Scale=scale
3520
		return mesh
3521
	end
3522
	
3523
	function weld(parent,part0,part1,c0,c1)
3524
		local weld=it("Weld")
3525
		weld.Parent=parent
3526
		weld.Part0=part0
3527
		weld.Part1=part1
3528
		weld.C0=c0
3529
		weld.C1=c1
3530
		return weld
3531
	end
3532
3533
Torso=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Handle",Vector3.new(2.03212667, 4.08000183, 2.04325604))
3534
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))
3535
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
3536
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))
3537
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.05393803, 4.16000175, 2.08000016))
3538
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))
3539
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
3540
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))
3541
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.43393803, 4.46000195, 2.11000013))
3542
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))
3543
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
3544
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))
3545
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
3546
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))
3547
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
3548
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))
3549
	Player=game:GetService('Players').LocalPlayer
3550
	Character=Player.Character
3551
	Mouse=Player:GetMouse()
3552
	m=Instance.new('Model',Character)
3553
3554
3555
	local function weldBetween(a, b)
3556
	    local weldd = Instance.new("ManualWeld")
3557
	    weldd.Part0 = a
3558
	    weldd.Part1 = b
3559
	    weldd.C0 = CFrame.new()
3560
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3561
	    weldd.Parent = a
3562
	    return weldd
3563
	end
3564
	
3565
	it=Instance.new
3566
	
3567
	function nooutline(part)
3568
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3569
	end
3570
	
3571
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3572
		local fp=it("Part")
3573
		fp.formFactor=formfactor
3574
		fp.Parent=parent
3575
		fp.Reflectance=reflectance
3576
		fp.Transparency=transparency
3577
		fp.CanCollide=false
3578
		fp.Locked=true
3579
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3580
		fp.Name=name
3581
		fp.Size=size
3582
		fp.Position=Character.Torso.Position
3583
		nooutline(fp)
3584
		fp.Material=material
3585
		fp:BreakJoints()
3586
		return fp
3587
	end
3588
	
3589
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3590
		local mesh=it(Mesh)
3591
		mesh.Parent=part
3592
		if Mesh=="SpecialMesh" then
3593
			mesh.MeshType=meshtype
3594
			mesh.MeshId=meshid
3595
		end
3596
		mesh.Offset=offset
3597
		mesh.Scale=scale
3598
		return mesh
3599
	end
3600
	
3601
	function weld(parent,part0,part1,c0,c1)
3602
		local weld=it("Weld")
3603
		weld.Parent=parent
3604
		weld.Part0=part0
3605
		weld.Part1=part1
3606
		weld.C0=c0
3607
		weld.C1=c1
3608
		return weld
3609
	end
3610
3611
LLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3612
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))
3613
mesh("SpecialMesh",LLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
3614
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.08000183, 1.9832561))
3615
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))
3616
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3617
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))
3618
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
3619
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))
3620
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3621-
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3621+
3622
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3623-
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3623+
3624
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3625-
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3625+
3626
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3627-
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
3627+
3628
3629
	Player=game:GetService('Players').LocalPlayer
3630
	Character=Player.Character
3631
	Mouse=Player:GetMouse()
3632
	m=Instance.new('Model',Character)
3633
3634
3635
	local function weldBetween(a, b)
3636
	    local weldd = Instance.new("ManualWeld")
3637
	    weldd.Part0 = a
3638
	    weldd.Part1 = b
3639
	    weldd.C0 = CFrame.new()
3640
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3641
	    weldd.Parent = a
3642
	    return weldd
3643
	end
3644
	
3645
	it=Instance.new
3646
	
3647
	function nooutline(part)
3648
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3649
	end
3650
	
3651
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3652
		local fp=it("Part")
3653
		fp.formFactor=formfactor
3654
		fp.Parent=parent
3655
		fp.Reflectance=reflectance
3656
		fp.Transparency=transparency
3657
		fp.CanCollide=false
3658
		fp.Locked=true
3659
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3660
		fp.Name=name
3661
		fp.Size=size
3662
		fp.Position=Character.Torso.Position
3663
		nooutline(fp)
3664
		fp.Material=material
3665
		fp:BreakJoints()
3666
		return fp
3667
	end
3668
	
3669
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3670
		local mesh=it(Mesh)
3671
		mesh.Parent=part
3672
		if Mesh=="SpecialMesh" then
3673
			mesh.MeshType=meshtype
3674
			mesh.MeshId=meshid
3675
		end
3676
		mesh.Offset=offset
3677
		mesh.Scale=scale
3678
		return mesh
3679
	end
3680
	
3681
	function weld(parent,part0,part1,c0,c1)
3682
		local weld=it("Weld")
3683
		weld.Parent=parent
3684
		weld.Part0=part0
3685
		weld.Part1=part1
3686
		weld.C0=c0
3687
		weld.C1=c1
3688
		return weld
3689
	end
3690
3691
Orb=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0.5,"Really red","Handle",Vector3.new(3.20000124, 3.20000124, 3.20000124))
3692-
Orb=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0.5,"Institutional white","Handle",Vector3.new(3.20000124, 3.20000124, 3.20000124))
3692+
3693
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))
3694
Orb.Transparency = 0
3695
----------------------------------------------------
3696
	Player=game:GetService('Players').LocalPlayer
3697
	Character=Player.Character
3698
	Mouse=Player:GetMouse()
3699
	m=Instance.new('Model',Character)
3700
3701
3702
	local function weldBetween(a, b)
3703
	    local weldd = Instance.new("ManualWeld")
3704
	    weldd.Part0 = a
3705
	    weldd.Part1 = b
3706
	    weldd.C0 = CFrame.new()
3707
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
3708
	    weldd.Parent = a
3709
	    return weldd
3710
	end
3711
	
3712
	it=Instance.new
3713
	
3714
	function nooutline(part)
3715
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
3716
	end
3717
	
3718
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
3719
		local fp=it("Part")
3720
		fp.formFactor=formfactor
3721
		fp.Parent=parent
3722
		fp.Reflectance=reflectance
3723
		fp.Transparency=transparency
3724
		fp.CanCollide=false
3725
		fp.Locked=true
3726
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
3727
		fp.Name=name
3728
		fp.Size=size
3729
		fp.Position=Character.Torso.Position
3730
		nooutline(fp)
3731
		fp.Material=material
3732
		fp:BreakJoints()
3733
		return fp
3734
	end
3735
	
3736
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
3737
		local mesh=it(Mesh)
3738
		mesh.Parent=part
3739
		if Mesh=="SpecialMesh" then
3740
			mesh.MeshType=meshtype
3741
			mesh.MeshId=meshid
3742
		end
3743
		mesh.Offset=offset
3744
		mesh.Scale=scale
3745
		return mesh
3746
	end
3747
	
3748
	function weld(parent,part0,part1,c0,c1)
3749
		local weld=it("Weld")
3750
		weld.Parent=parent
3751
		weld.Part0=part0
3752
		weld.Part1=part1
3753
		weld.C0=c0
3754
		weld.C1=c1
3755
		return weld
3756
	end
3757
3758
WIngs=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Lily white","Handle",Vector3.new(0.526163042, 0.373031557, 0.931079745))
3759
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))
3760
mesh("BlockMesh",WIngs,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
3761
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3762
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))
3763
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3764
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3765
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))
3766
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3767
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3768
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))
3769
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3770
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3771
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))
3772
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3773
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3774
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))
3775
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3776
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3777
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))
3778
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3779
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3780
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))
3781
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3782
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3783
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))
3784
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3785
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3786
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))
3787
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3788
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3789
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))
3790
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3791
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3792
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))
3793
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3794
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3795
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))
3796
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3797
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Lily white","Part",Vector3.new(0.526163042, 0.373031557, 0.931079745))
3798
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))
3799
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
3800
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3801
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))
3802
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3803
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3804
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))
3805
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3806
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3807
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))
3808
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3809
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3810
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))
3811
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3812
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3813
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))
3814
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3815
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3816
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))
3817
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3818
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3819
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))
3820
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3821
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3822
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))
3823
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3824
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3825
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))
3826
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3827
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3828
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))
3829
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3830
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3831
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))
3832
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3833
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3834
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))
3835
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3836
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3837
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))
3838
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3839
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3840
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))
3841
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3842
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3843
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))
3844
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3845
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3846
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))
3847
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3848
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3849
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))
3850
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3851
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3852
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))
3853
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3854
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3855
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))
3856
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3857
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3858
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))
3859
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3860
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3861
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))
3862
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3863
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3864
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))
3865
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3866
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3867
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))
3868
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3869
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3870
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))
3871
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3872
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3873
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))
3874
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3875
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3876
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))
3877
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3878
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3879
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))
3880
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3881
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3882
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))
3883
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3884
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3885
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))
3886
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3887
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3888
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))
3889
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3890
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3891
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))
3892
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3893
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3894
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))
3895
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3896
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3897
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))
3898
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3899
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3900
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))
3901
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3902
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3903
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))
3904
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3905
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3906
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))
3907
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3908
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
3909
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))
3910
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3911
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
3912
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))
3913
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
3914
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
3915
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))
3916
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
3917
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
3918
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))
3919
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
3920
Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Really red","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
3921-
Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
3921+
3922
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
3923
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
3924
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))
3925
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
3926
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
3927
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))
3928
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
3929
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
3930-
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
3930+
3931
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
3932
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
3933-
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
3933+
3934
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
3935
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
3936
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))
3937
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3938
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
3939
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))
3940
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3941
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
3942
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))
3943
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3944
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
3945
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))
3946
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
3947
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
3948
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))
3949
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
3950
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
3951
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))
3952
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
3953
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
3954
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))
3955
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
3956
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
3957
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))
3958
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
3959
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
3960
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))
3961
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
3962
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
3963
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))
3964
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
3965
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
3966
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))
3967
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3968
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
3969
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))
3970
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
3971
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
3972
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))
3973
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3974
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
3975
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))
3976
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3977
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
3978
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))
3979
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3980
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
3981
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))
3982
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3983
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
3984
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))
3985
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3986
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
3987
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))
3988
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
3989
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
3990
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))
3991
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3992
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
3993
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))
3994
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3995
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
3996
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))
3997
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
3998
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
3999
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))
4000
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4001
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
4002
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))
4003
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4004
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
4005
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))
4006
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4007
Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Really red","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
4008-
Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
4008+
4009
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
4010
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
4011
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))
4012
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
4013
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
4014
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))
4015
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
4016
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
4017-
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
4017+
4018
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
4019
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
4020-
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
4020+
4021
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
4022
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
4023
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))
4024
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4025
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
4026
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))
4027
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4028
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
4029
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))
4030
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4031
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
4032
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))
4033
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
4034
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
4035
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))
4036
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4037
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
4038
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))
4039
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4040
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
4041
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))
4042
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4043
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
4044
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))
4045
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4046
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
4047
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))
4048
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4049
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
4050
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))
4051
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4052
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
4053
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))
4054
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4055
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
4056
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))
4057
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
4058
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
4059
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))
4060
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
4061
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
4062
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))
4063
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4064
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
4065
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))
4066
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4067
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
4068
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))
4069
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4070
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
4071
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))
4072
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4073
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
4074
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))
4075
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
4076
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
4077
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))
4078
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4079
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
4080
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))
4081
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4082
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
4083
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))
4084
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4085
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
4086
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))
4087
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4088
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
4089
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))
4090
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
4091
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
4092
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))
4093
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4094
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
4095
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))
4096
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4097
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
4098
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))
4099
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4100
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
4101
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))
4102
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
4103
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
4104
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))
4105
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4106
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
4107
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))
4108
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
4109
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
4110
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))
4111
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
4112
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
4113
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))
4114
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4115
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
4116
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))
4117
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4118
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
4119
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))
4120
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4121
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
4122
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))
4123
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4124
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
4125
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))
4126
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4127
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
4128
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))
4129
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4130
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
4131
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))
4132
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4133
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
4134
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))
4135
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4136
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
4137
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))
4138
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4139
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
4140
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))
4141
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
4142
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
4143
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))
4144
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4145
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
4146
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))
4147
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4148
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
4149
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))
4150
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4151
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
4152
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))
4153
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4154
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
4155
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))
4156
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4157
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
4158
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))
4159
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
4160
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
4161
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))
4162
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4163
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
4164
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))
4165
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4166
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
4167
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))
4168
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4169
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
4170
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))
4171
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4172
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
4173
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))
4174
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4175
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
4176
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))
4177
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
4178
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
4179
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))
4180
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4181
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
4182
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))
4183
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4184
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
4185
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))
4186
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4187
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
4188
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))
4189
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4190
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
4191
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))
4192
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4193
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
4194
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))
4195
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4196
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
4197
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))
4198
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4199
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
4200
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))
4201
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
4202
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
4203
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))
4204
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
4205
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
4206
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))
4207
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4208
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
4209
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))
4210
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4211
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
4212
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))
4213
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4214
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
4215
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))
4216
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
4217
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
4218
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))
4219
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
4220
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
4221
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))
4222
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
4223
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
4224
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))
4225
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
4226
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
4227
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))
4228
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
4229
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
4230
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))
4231
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
4232
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
4233
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))
4234
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
4235
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
4236
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))
4237
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
4238
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
4239
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))
4240
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
4241
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
4242
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))
4243
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
4244
4245
4246
4247
4248
	Player=game:GetService('Players').LocalPlayer
4249
	Character=Player.Character
4250
	Mouse=Player:GetMouse()
4251
	m=Instance.new('Model',Character)
4252
4253
4254
	local function weldBetween(a, b)
4255
	    local weldd = Instance.new("ManualWeld")
4256
	    weldd.Part0 = a
4257
	    weldd.Part1 = b
4258
	    weldd.C0 = CFrame.new()
4259
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
4260
	    weldd.Parent = a
4261
	    return weldd
4262
	end
4263
	
4264
	it=Instance.new
4265
	
4266
	function nooutline(part)
4267
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
4268
	end
4269
	
4270
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
4271
		local fp=it("Part")
4272
		fp.formFactor=formfactor
4273
		fp.Parent=parent
4274
		fp.Reflectance=reflectance
4275
		fp.Transparency=transparency
4276
		fp.CanCollide=false
4277
		fp.Locked=true
4278
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
4279
		fp.Name=name
4280
		fp.Size=size
4281
		fp.Position=Character.Torso.Position
4282
		nooutline(fp)
4283
		fp.Material=material
4284
		fp:BreakJoints()
4285
		return fp
4286
	end
4287
	
4288
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
4289
		local mesh=it(Mesh)
4290
		mesh.Parent=part
4291
		if Mesh=="SpecialMesh" then
4292
			mesh.MeshType=meshtype
4293
			mesh.MeshId=meshid
4294
		end
4295
		mesh.Offset=offset
4296
		mesh.Scale=scale
4297
		return mesh
4298
	end
4299
	
4300
	function weld(parent,part0,part1,c0,c1)
4301
		local weld=it("Weld")
4302
		weld.Parent=parent
4303
		weld.Part0=part0
4304
		weld.Part1=part1
4305
		weld.C0=c0
4306
		weld.C1=c1
4307
		return weld
4308
	end
4309
4310
BladeEnd=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle",Vector3.new(0.333970994, 2.40790987, 0.825482368))
4311
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))
4312
mesh("BlockMesh",BladeEnd,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
4313
Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 2.93125677, 0.825482368))
4314
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))
4315
mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
4316
Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.442278117, 0.333971083))
4317
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))
4318
mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
4319
Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.426588923, 0.333971083))
4320
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))
4321
mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.834210217))
4322
Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.442278117, 0.333971083))
4323
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))
4324
mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
4325
Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 3.13969851, 0.398512334))
4326
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))
4327
mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
4328
Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.426588923, 0.333971083))
4329
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))
4330
mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
4331
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4332-
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4332+
4333
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.884725809, 0.0892784372))
4334
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4335-
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4335+
4336
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
4337
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4338-
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4338+
4339
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.616281807, 0.0892784372))
4340
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4341-
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4341+
4342
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.794125915, 0.0892784372))
4343
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.452364713, 0.333971083))
4344-
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.452364713, 0.333971083))
4344+
4345
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 1, 0.0892784372))
4346
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4347-
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4347+
4348
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.34112677, 0.0892784372))
4349
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4350-
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4350+
4351
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
4352
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4353-
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4353+
4354
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
4355
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4356-
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4356+
4357
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
4358
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.672227144, 1.760818))
4359-
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.672227144, 1.760818))
4359+
4360
mesh("SpecialMesh",BladeNeon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.774613976, 1, 1))
4361
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 5.69591618, 0.333971083))
4362-
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 5.69591618, 0.333971083))
4362+
4363
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.844456613, 1, 0.458388805))
4364
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 8.72168827, 1.36339724))
4365-
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 8.72168827, 1.36339724))
4365+
4366
mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.760567904, 1, 1))
4367
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really red","BladeNeon",Vector3.new(0.333970994, 0.681192338, 1.760818))
4368-
BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.681192338, 1.760818))
4368+
4369
mesh("SpecialMesh",BladeNeon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.767835736, 1, 1))
4370
Handle=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle",Vector3.new(0.333970994, 3.65670252, 0.333971083))
4371
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))
4372
mesh("CylinderMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(0.677820504, 1, 0.80868715))
4373
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4374
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))
4375
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.567087829))
4376
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.90585577, 1.45080817))
4377
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))
4378
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
4379
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4380
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))
4381
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4382
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.615819991, 1.04920125))
4383
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))
4384
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.847812057, 1, 1))
4385
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.730286956, 0.333971083))
4386
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))
4387
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 0.270477563))
4388
Handle2=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.51886344, 0.333971083, 0.636532664))
4389
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))
4390
mesh("CylinderMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.842242956, 1))
4391
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
4392
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))
4393
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
4394
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.750458777, 0.333971083))
4395
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))
4396
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 0.270477563))
4397
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 2.43250322))
4398
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))
4399
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
4400
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.477399707, 0.333971083))
4401
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))
4402
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
4403
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4404
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))
4405
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.781843007))
4406
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.71422374, 0.527387738))
4407
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))
4408
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.869846582, 1, 1))
4409
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4410
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))
4411
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 0.414765924))
4412
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.23496354, 0.333971083))
4413
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))
4414
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.637554169))
4415
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4416
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))
4417
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 0.452999234, 0.452998996))
4418
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.963326454))
4419
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))
4420
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
4421
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.963326454))
4422
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))
4423
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
4424
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.530070603, 0.595068455))
4425
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))
4426
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 1, 1))
4427
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.452745259, 0.333971083))
4428
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))
4429
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
4430
Handle2=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.356368661))
4431
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))
4432
mesh("CylinderMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.788553476, 0.718087614, 1))
4433
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.391848803, 0.756001353))
4434
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))
4435
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
4436
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4437
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))
4438
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4439
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4440
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))
4441
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4442
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
4443
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))
4444
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
4445
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4446
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))
4447
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4448
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4449
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))
4450
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 0.683390796, 0.723476529))
4451
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.615819991, 1.04920125))
4452
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))
4453
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.847812057, 1, 1))
4454
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
4455
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))
4456
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
4457
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4458
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))
4459
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4460
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4461
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))
4462
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4463
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4464
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))
4465
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4466
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
4467
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))
4468
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
4469
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.71422374, 0.527387738))
4470
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))
4471
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.861234307, 1, 1))
4472
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
4473
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))
4474
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
4475
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.391848803, 0.756001353))
4476
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))
4477
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
4478
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.397666305, 1.13997447))
4479
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))
4480
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.798337698, 1, 1))
4481
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.435768574, 1.13997447))
4482
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))
4483
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.805115938, 1, 1))
4484
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.477399707, 0.333971083))
4485
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))
4486
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
4487
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4488
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))
4489
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.781843007))
4490
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4491
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))
4492
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.563732326))
4493
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.652221978))
4494
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))
4495
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.523465693, 1))
4496
Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.534553051))
4497
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))
4498
mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 1))
4499
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 1.76913583, 0.333971083))
4500
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))
4501
mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.851167679, 1, 0.444966584))
4502
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.615819991, 1.04920125))
4503
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))
4504
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 1))
4505
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4506
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))
4507
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
4508
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
4509
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))
4510
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4511
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4512
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))
4513
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
4514
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
4515
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))
4516
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4517
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.403703302))
4518
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))
4519
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 1))
4520
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
4521-
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
4521+
4522
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.190766811, 1))
4523
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.403703302))
4524-
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.403703302))
4524+
4525
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 1))
4526
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.615819991, 1.04920125))
4527-
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.615819991, 1.04920125))
4527+
4528
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 1))
4529
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4530-
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4530+
4531
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 0.873242319))
4532
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4533-
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4533+
4534
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
4535
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4536-
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4536+
4537
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
4538
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4539-
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4539+
4540
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
4541
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4542-
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4542+
4543
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
4544
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4545-
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4545+
4546
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
4547
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.633004189, 1.13885355))
4548-
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.633004189, 1.13885355))
4548+
4549
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.790433347, 1, 1))
4550
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
4551-
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
4551+
4552
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4553
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
4554-
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
4554+
4555
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4556
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4557-
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4557+
4558
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 0.940353274))
4559
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
4560-
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
4560+
4561
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.190766811, 1))
4562
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 2.02464533, 0.704451442))
4563-
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 2.02464533, 0.704451442))
4563+
4564
mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.834389985, 1, 1))
4565
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
4566-
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
4566+
4567
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4568
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
4569-
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
4569+
4570
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4571
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4572
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))
4573
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
4574
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
4575
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))
4576
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4577
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 2.02464533, 0.704451442))
4578
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))
4579
mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.834389985, 1, 1))
4580
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
4581
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))
4582
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
4583
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
4584
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))
4585
mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.851167679, 0.317635983, 0.314100146))
4586
Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.620843053, 0.333971083, 0.636532664))
4587
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))
4588
mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.832176328, 1))
4589
Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Neon",Vector3.new(0.333970994, 0.633004189, 1.13885355))
4590
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))
4591
mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.790433347, 1, 1))
4592
4593
	Player=game:GetService('Players').LocalPlayer
4594
	Character=Player.Character
4595
	Mouse=Player:GetMouse()
4596
	m=Instance.new('Model',Character)
4597
4598
4599
	local function weldBetween(a, b)
4600
	    local weldd = Instance.new("ManualWeld")
4601
	    weldd.Part0 = a
4602
	    weldd.Part1 = b
4603
	    weldd.C0 = CFrame.new()
4604
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
4605
	    weldd.Parent = a
4606
	    return weldd
4607
	end
4608
	
4609
	it=Instance.new
4610
	
4611
	function nooutline(part)
4612
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
4613
	end
4614
	
4615
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
4616
		local fp=it("Part")
4617
		fp.formFactor=formfactor
4618
		fp.Parent=parent
4619
		fp.Reflectance=reflectance
4620
		fp.Transparency=transparency
4621
		fp.CanCollide=false
4622
		fp.Locked=true
4623
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
4624
		fp.Name=name
4625
		fp.Size=size
4626
		fp.Position=Character.Torso.Position
4627
		nooutline(fp)
4628
		fp.Material=material
4629
		fp:BreakJoints()
4630
		return fp
4631
	end
4632
	
4633
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
4634
		local mesh=it(Mesh)
4635
		mesh.Parent=part
4636
		if Mesh=="SpecialMesh" then
4637
			mesh.MeshType=meshtype
4638
			mesh.MeshId=meshid
4639
		end
4640
		mesh.Offset=offset
4641
		mesh.Scale=scale
4642
		return mesh
4643
	end
4644
	
4645
	function weld(parent,part0,part1,c0,c1)
4646
		local weld=it("Weld")
4647
		weld.Parent=parent
4648
		weld.Part0=part0
4649
		weld.Part1=part1
4650
		weld.C0=c0
4651
		weld.C1=c1
4652
		return weld
4653
	end
4654
4655
Face=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Really red","Handle",Vector3.new(2.39999938, 2.39999938, 2.39999938))
4656
Face.Shape = "Ball"
4657
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))
4658
4659
4660
	Player=game:GetService('Players').LocalPlayer
4661
	Character=Player.Character
4662
	Mouse=Player:GetMouse()
4663
	m=Instance.new('Model',Character)
4664
4665
4666
	local function weldBetween(a, b)
4667
	    local weldd = Instance.new("ManualWeld")
4668
	    weldd.Part0 = a
4669
	    weldd.Part1 = b
4670
	    weldd.C0 = CFrame.new()
4671
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
4672
	    weldd.Parent = a
4673
	    return weldd
4674
	end
4675
	
4676
	it=Instance.new
4677
	
4678
	function nooutline(part)
4679
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
4680
	end
4681
	
4682
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
4683
		local fp=it("Part")
4684
		fp.formFactor=formfactor
4685
		fp.Parent=parent
4686
		fp.Reflectance=reflectance
4687
		fp.Transparency=transparency
4688
		fp.CanCollide=false
4689
		fp.Locked=true
4690
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
4691
		fp.Name=name
4692
		fp.Size=size
4693
		fp.Position=Character.Torso.Position
4694
		nooutline(fp)
4695
		fp.Material=material
4696
		fp:BreakJoints()
4697
		return fp
4698
	end
4699
	
4700
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
4701
		local mesh=it(Mesh)
4702
		mesh.Parent=part
4703
		if Mesh=="SpecialMesh" then
4704
			mesh.MeshType=meshtype
4705
			mesh.MeshId=meshid
4706
		end
4707
		mesh.Offset=offset
4708
		mesh.Scale=scale
4709
		return mesh
4710
	end
4711
	
4712
	function weld(parent,part0,part1,c0,c1)
4713
		local weld=it("Weld")
4714
		weld.Parent=parent
4715
		weld.Part0=part0
4716
		weld.Part1=part1
4717
		weld.C0=c0
4718
		weld.C1=c1
4719
		return weld
4720
	end
4721
4722
Back=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(4.37000132, 3.20000124, 1.59000123))
4723
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))
4724
4725
local size = 40,40,40
4726
4727
4728
----------------------------------------------------
4729
	Player=game:GetService('Players').LocalPlayer
4730
	Character=Player.Character
4731
	Mouse=Player:GetMouse()
4732
	m=Instance.new('Model',Character)
4733
4734
4735
	local function weldBetween(a, b)
4736
	    local weldd = Instance.new("ManualWeld")
4737
	    weldd.Part0 = a
4738
	    weldd.Part1 = b
4739
	    weldd.C0 = CFrame.new()
4740
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
4741
	    weldd.Parent = a
4742
	    return weldd
4743
	end
4744
	
4745
	it=Instance.new
4746
	
4747
	function nooutline(part)
4748
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
4749
	end
4750
	
4751
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
4752
		local fp=it("Part")
4753
		fp.formFactor=formfactor
4754
		fp.Parent=parent
4755
		fp.Reflectance=reflectance
4756
		fp.Transparency=transparency
4757
		fp.CanCollide=false
4758
		fp.Locked=true
4759
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
4760
		fp.Name=name
4761
		fp.Size=size
4762
		fp.Position=Character.Torso.Position
4763
		nooutline(fp)
4764
		fp.Material=material
4765
		fp:BreakJoints()
4766
		return fp
4767
	end
4768
	
4769
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
4770
		local mesh=it(Mesh)
4771
		mesh.Parent=part
4772
		if Mesh=="SpecialMesh" then
4773
			mesh.MeshType=meshtype
4774
			mesh.MeshId=meshid
4775
		end
4776
		mesh.Offset=offset
4777
		mesh.Scale=scale
4778
		return mesh
4779
	end
4780
	
4781
	function weld(parent,part0,part1,c0,c1)
4782
		local weld=it("Weld")
4783
		weld.Parent=parent
4784
		weld.Part0=part0
4785
		weld.Part1=part1
4786
		weld.C0=c0
4787
		weld.C1=c1
4788
		return weld
4789
	end
4790
4791
F3=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0.5,"Really black","Handle",Vector3.new(30.6000023, 30.6000023, 30.6000023))
4792
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))
4793
F3.Name = "F3"
4794
F3.Shape = "Ball"
4795
F3.CanCollide = false
4796
F3.Size = Vector3.new(size)
4797
F3.Transparency = 0.7
4798
F3.Material = "Neon"
4799
F3.Anchored = true
4800
F3.BrickColor = BrickColor.new(0,0,0)
4801
F3.Locked = true
4802
F3.Archivable = false
4803
4804
4805
4806
local p = F3
4807
local me = game.Players.LocalPlayer.Character
4808
 game.Workspace.CodedOverLordPlush.Humanoid.JumpPower = 400
4809
4810
4811
p.Shape = "Ball"
4812
4813
game:GetService('RunService').Stepped:connect(function()
4814
	p.CFrame = me.Torso.CFrame * CFrame.new(0,0,0) * CFrame.Angles(0,0,0)
4815
end)
4816
4817
4818
wait(0.1)
4819
4820
F3.CanCollide = false
4821
F3.CanCollide = false
4822
4823
4824
F3.Transparency = 0.9