View difference between Paste ID: 38p05hLw and QFgvDXZ5
SHOW: | | - or go back to the newest paste.
1
local p = game.Players.LocalPlayer
2
local m = game.Players.LocalPlayer
3
local char = p.Character
4
local mouse = p:GetMouse()
5
local larm = char["Left Arm"]
6
local rarm = char["Right Arm"]
7
local lleg = char["Left Leg"]
8
local rleg = char["Right Leg"]
9
local hed = char.Head
10
local torso = char.Torso
11
local cam = game.Workspace.CurrentCamera
12
local root = char.HumanoidRootPart
13
local deb = false
14
local shot = 0
15
local l = game.Lighting
16
local stanceToggle = "Landed"
17
local animpose = "Idle"
18
local lastanimpose = "Idle"
19
local shirt = Instance.new("Shirt")
20
local pants = Instance.new("Pants")
21
 
22
for i,v in pairs(char:children()) do
23
    if v:IsA("Hat") then
24
        v:Destroy()
25
    end
26
end
27
 
28
game:service'InsertService':LoadAsset(16469427):children()[1].Parent = char
29
shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=147111512"
30
pants.PantsTemplate = "http://www.roblox.com/asset/?id=147111543"
31
 
32
ROW = function(out, trans, s, wt, t, ang, plus)
33
    for i = 1, 360, 360/t do
34
        local c = Instance.new("Part", game.Workspace)
35
        c.FormFactor = 3
36
        c.TopSurface = 0
37
        c.BottomSurface = 0
38
        c.Size = s
39
        c.Anchored = true
40
        c.CanCollide = wt
41
        c.Material=workspace.Base.Material
42
        c.Transparency = trans
43
        c.BrickColor = workspace.Base.BrickColor
44
        c.CFrame = CFrame.new(torso.CFrame.x,0,torso.CFrame.z) * CFrame.Angles(0, math.rad(i + plus), 0) * CFrame.new(0, 0, out) * ang
45
        c.Locked=true
46
        game.Debris:AddItem(c,4+math.random(1,10)/10)
47
    end
48
end
49
 
50
 
51
Part = function(x,y,z,color,tr,cc,an,parent)
52
local p = Instance.new('Part',parent or Weapon)
53
p.formFactor = 'Custom'
54
p.Size = Vector3.new(x,y,z)
55
p.BrickColor = BrickColor.new(color)
56
p.CanCollide = cc
57
p.Transparency = tr
58
p.Anchored = an
59
p.TopSurface,p.BottomSurface = 0,0
60
p.Locked=true
61
p:BreakJoints()
62
return p end
63
 
64
 
65
Mesh = function(par,num,x,y,z)
66
local msh = _
67
if num == 1 then msh = Instance.new("CylinderMesh",par)
68
elseif num == 2 then msh = Instance.new("SpecialMesh",par) msh.MeshType = 3
69
elseif num == 3 then msh = Instance.new("BlockMesh",par)
70
elseif num == 4 then msh = Instance.new("SpecialMesh",par) msh.MeshType = "Torso"
71
elseif type(num) == 'string' then msh = Instance.new("SpecialMesh",par) msh.MeshId = num
72
end msh.Scale = Vector3.new(x,y,z)
73
return msh end
74
 
75
function explosion(col1,col2,cfr,sz,rng,dmg)
76
    local a= Part(1,1,1,col1,.5,false,true,workspace)
77
    local a2= Part(1,1,1,col2,.5,false,true,workspace)
78
    local a3= Part(1,1,1,col2,.5,false,true,workspace)
79
    v1,v2,v3=sz.x,sz.y,sz.z
80
    local m= Mesh(a,'http://www.roblox.com/asset/?id=1185246',v1,v2,v3)
81
    local m2= Mesh(a2,3,v1/3,v2/3,v3/3)
82
    local m3= Mesh(a3,3,v1/3,v2/3,v3/3)
83
    a.CFrame=cfr
84
    a2.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
85
    a3.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
86
    for i,v in pairs(workspace:children()) do
87
        if v:IsA("Model") and v:findFirstChild("Humanoid") then
88
            if v:findFirstChild("Head") and v:findFirstChild("Torso") then
89
                if (v:findFirstChild("Torso").Position - a.Position).magnitude < rng and v.Name ~= char.Name then
90
                    local hit=v
91
                    hit.Humanoid.Health=v.Humanoid.Health-dmg
92
                    hit.Humanoid.PlatformStand=true
93
                    hit.Torso.Velocity=Vector3.new(math.random(-100,100),100,math.random(-100,-100))
94
                    wait(.1)
95
                    Spawn(function()wait(2)hit.Humanoid.PlatformStand=false end)
96
                end
97
            end
98
        end
99
    end
100
    Spawn(function()
101
        while wait() do
102
            if a.Transparency >= 1 then a:Destroy() a2:Destroy() a3:Destroy() break end
103
            m.Scale=m.Scale+Vector3.new(.1,0.1,0.1)
104
            m2.Scale=m2.Scale+Vector3.new(.1,0.1,0.1)
105
            m3.Scale=m3.Scale+Vector3.new(.1,0.1,0.1)
106
            a.Transparency=a.Transparency+0.05
107
            a2.Transparency=a2.Transparency+0.05
108
            a3.Transparency=a3.Transparency+0.05
109
        end
110
    end)
111
end
112
 
113
local keyVectors = {
114
        w = Vector3.new(0, 0, 1);
115
        a = Vector3.new(1, 0, 0);
116
        s = Vector3.new(0, 0, -1);
117
        d = Vector3.new(-1, 0, 0);
118
}
119
local keysDown = {}
120
local flySpeed = 30
121
local canFly = false
122
--local flyToggled = false
123
char.Humanoid.WalkSpeed = 5
124
----------------------------------------------------
125
function lerp(a, b, t) -- Linear interpolation
126
        return a + (b - a)*t
127
end
128
 
129
function slerp(a, b, t) --Spherical interpolation
130
        dot = a:Dot(b)
131
        if dot > 0.99999 or dot < -0.99999 then
132
                return t <= 0.5 and a or b
133
        else
134
                r = math.acos(dot)
135
                return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
136
        end
137
end
138
 
139
function matrixInterpolate(a, b, t)
140
        local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
141
        local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
142
        local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
143
        local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
144
        local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
145
        local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
146
        local t = v1:Dot(v2)
147
        if not (t < 0 or t == 0 or t > 0) then  -- Failsafe
148
                return CFrame.new()
149
        end
150
        return CFrame.new(
151
        v0.x, v0.y, v0.z,
152
        v1.x, v1.y, v1.z,
153
        v2.x, v2.y, v2.z,
154
        v3.x, v3.y, v3.z)
155
end
156
----------------------------------------------------
157
function genWeld(a,b)
158
    local w = Instance.new("Weld",a)
159
    w.Part0 = a
160
    w.Part1 = b
161
    return w
162
end
163
function weld(a, b)
164
    local weld = Instance.new("Weld")
165
    weld.Name = "W"
166
    weld.Part0 = a
167
    weld.Part1 = b
168
    weld.C0 = a.CFrame:inverse() * b.CFrame
169
    weld.Parent = a
170
    return weld;
171
end
172
----------------------------------------------------
173
Debounces = {
174
on = false;
175
CanAttack = true;
176
NoIdl = false;
177
}
178
----------------------------------------------------
179
function Lerp(c1,c2,al)
180
local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
181
local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
182
for i,v in pairs(com1) do
183
com1[i] = v+(com2[i]-v)*al
184
end
185
return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
186
end
187
-----------
188
newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
189
wld = Instance.new("Weld", wp1)
190
wld.Part0 = wp0
191
wld.Part1 = wp1
192
wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
193
end
194
-----------
195
function HasntTouched(plrname)
196
local ret = true
197
for _, v in pairs(Touche) do
198
if v == plrname then
199
ret = false
200
end
201
end
202
return ret
203
end
204
----------------------------
205
newWeld(torso, larm, -1.5, 0.5, 0)
206
larm.Weld.C1 = CFrame.new(0, 0.5, 0)
207
newWeld(torso, rarm, 1.5, 0.5, 0)
208
rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
209
newWeld(torso, hed, 0, 1.5, 0)
210
newWeld(torso, lleg, -0.5, -1, 0)
211
lleg.Weld.C1 = CFrame.new(0, 1, 0)
212
newWeld(torso, rleg, 0.5, -1, 0)
213
rleg.Weld.C1 = CFrame.new(0, 1, 0)
214
newWeld(root, torso, 0, -1, 0)
215
torso.Weld.C1 = CFrame.new(0, -1, 0)
216
-----------------------------------------------------
217
--[[l.TimeOfDay = 0
218
l.Ambient = Color3.new(0.25,0.25,0.25)
219
l.OutdoorAmbient = Color3.new(0.25,0.25,0.25)
220
l.FogEnd = 100
221
l.FogColor = Color3.new(0,0,0)
222
base = game.Workspace.Base
223
base.Material = "Fabric"
224
base.BrickColor = BrickColor.new("Really black")]]--
225
lite = Instance.new("PointLight")
226
lite.Parent = torso
227
lite.Brightness = 10
228
lite.Range = 8
229
lite.Color = Color3.new(1,0,0)
230
----------------------------------------------------
231
char.Reaper.Handle.Mesh.TextureId = "http://www.roblox.com/asset/?id=176349813"
232
hed.face:Destroy()
233
for i,v in pairs(hed:children()) do
234
    if v:IsA("Sound") then
235
        v:Destroy()
236
        end
237
end
238
--[[z = Instance.new("Sound")
239
z.SoundId = "http://www.roblox.com/asset/?id=162787383"--167985166
240
z.Parent = char
241
z.Looped = true
242
z.Pitch = .94
243
z.Volume = 1
244
wait(.01)
245
z:Play()
246
wait()
247
v = Instance.new("Sound")
248
v.SoundId = "http://www.roblox.com/asset/?id=167048484"
249
v.Parent = char
250
v.Looped = true
251
v.Pitch = 1
252
v.Volume = 0.05
253
wait(.01)
254
v:Play()]]--
255
----------------------------------------------------
256
if (script:FindFirstChild("forCustomRun")~=nil) then
257
local sc = script["forCustomRun"].Value
258
assert(loadstring(sc))()
259
return
260
elseif (script:FindFirstChild("forCustomRunL")~=nil) then
261
local locsc = workspace:FindFirstChild("_localrun")
262
local sc = script["forCustomRunL"]
263
if (locsc~=nil) then
264
local loc = locsc:clone()
265
loc["scrun"].Value = sc.Value
266
loc.Name = script.Name
267
for i,v in pairs(script:GetChildren()) do
268
v:clone().Parent = loc
269
end
270
loc.Parent = script.Parent
271
script:remove()
272
return
273
else
274
assert(loadstring(sc.Value))()
275
return
276
end
277
end
278
local m = Instance.new("Model")
279
m.Name = "Wings"
280
p1 = Instance.new("Part", m)
281
p1.Name = "Part1"
282
p1.BrickColor = BrickColor.new("Really black")
283
p1.Material = "Fabric"
284
p1.CFrame = CFrame.new(2.23064709, 5.42307234, -12.1674881, -0.707106709, 0.707106888, -
285
2.23517389e-007, -0.499999762, -0.499999851, -0.707106233, -0.499999374, -0.499999732,
286
0.707105637)
287
p1.CanCollide = false
288
p1.FormFactor = Enum.FormFactor.Symmetric
289
p1.Elasticity = 0
290
p1.Size = Vector3.new(1, 4, 1)
291
p1.BottomSurface = Enum.SurfaceType.Smooth
292
p1.TopSurface = Enum.SurfaceType.Smooth
293
b1 = Instance.new("BlockMesh", p1)
294
b1.Name = "Mesh"
295
b1.Scale = Vector3.new(0.299999923, 1, 0.299999923)
296
p2 = Instance.new("Part", m)
297
p2.Name = "Part2"
298
p2.BrickColor = BrickColor.new("Really black")
299
p2.Material = "Fabric"
300
p2.CFrame = CFrame.new(3.99841213, 4.17309284, -13.4174824, 0.707106709, 2.23517418e-007, -
301
0.707106829, 0.49999994, 0.707106292, 0.499999851, 0.499999553, -0.707105696, 0.499999791)
302
p2.CanCollide = false
303
p2.FormFactor = Enum.FormFactor.Symmetric
304
p2.Elasticity = 0
305
p2.Size = Vector3.new(1, 1, 1)
306
p2.BottomSurface = Enum.SurfaceType.Smooth
307
p2.TopSurface = Enum.SurfaceType.Smooth
308
b2 = Instance.new("SpecialMesh", p2)
309
b2.MeshType = Enum.MeshType.Wedge
310
b2.Name = "Mesh"
311
b2.Scale = Vector3.new(0.319999993, 0.299999923, 1)
312
p3 = Instance.new("Part", m)
313
p3.Name = "Part3"
314
p3.BrickColor = BrickColor.new("Really black")
315
p3.Material = "Fabric"
316
p3.CFrame = CFrame.new(2.20711732, 3.78849339, -12.3740644, 0.959171534, 0.28168276,
317
0.0253876615, -0.282448769, 0.958654881, 0.0346818939, -0.0145691708, -0.0404358432,
318
0.999074996)
319
p3.CanCollide = false
320
p3.FormFactor = Enum.FormFactor.Symmetric
321
p3.Elasticity = 0
322
p3.Size = Vector3.new(1, 3, 1)
323
p3.BottomSurface = Enum.SurfaceType.Smooth
324
p3.TopSurface = Enum.SurfaceType.Smooth
325
b3 = Instance.new("BlockMesh", p3)
326
b3.Name = "Mesh"
327
b3.Scale = Vector3.new(0.099999927, 1, 0.099999927)
328
p4 = Instance.new("Part", m)
329
p4.Name = "Part4"
330
p4.BrickColor = BrickColor.new("Really red")
331
p4.Material = "Fabric"
332
p4.CFrame = CFrame.new(1.26502275, 5.19090509, -11.4009991, 0.988936007, -0.146727905,
333
0.0218264833, 0.14821738, 0.983390749, -0.104755871, -0.00609340565, 0.106832691, 0.994257689)
334
p4.CanCollide = false
335
p4.FormFactor = Enum.FormFactor.Symmetric
336
p4.Elasticity = 0
337
p4.Size = Vector3.new(1, 2, 1)
338
p4.BottomSurface = Enum.SurfaceType.Smooth
339
p4.TopSurface = Enum.SurfaceType.Smooth
340
b4 = Instance.new("BlockMesh", p4)
341
b4.Name = "Mesh"
342
b4.Scale = Vector3.new(0.099999927, 1, 0.099999927)
343
p5 = Instance.new("Part", m)
344
p5.Name = "Part5"
345
p5.BrickColor = BrickColor.new("Really black")
346
p5.Material = "Fabric"
347
p5.CFrame = CFrame.new(-4.44179106, 5.13394976, -11.382658, 0.9583143, 0.284877658,
348
0.0218711179, -0.281183124, 0.953924894, -0.104703665, -0.0506914668, 0.0941898227,
349
0.994262278)
350
p5.CanCollide = false
351
p5.FormFactor = Enum.FormFactor.Symmetric
352
p5.Elasticity = 0
353
p5.Size = Vector3.new(1, 3, 1)
354
p5.BottomSurface = Enum.SurfaceType.Smooth
355
p5.TopSurface = Enum.SurfaceType.Smooth
356
b5 = Instance.new("BlockMesh", p5)
357
b5.Name = "Mesh"
358
b5.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
359
p6 = Instance.new("Part", m)
360
p6.Name = "Part6"
361
p6.BrickColor = BrickColor.new("Really red")
362
p6.Material = "Fabric"
363
p6.CFrame = CFrame.new(-3.25746775, 4.10252142, -11.1188278, 0.990586162, 0.136166841,
364
0.0140535301, -0.122137889, 0.925523639, -0.358451784, -0.0618163571, 0.353361398,
365
0.933441639)
366
p6.CanCollide = false
367
p6.FormFactor = Enum.FormFactor.Symmetric
368
p6.Elasticity = 0
369
p6.Size = Vector3.new(1, 3, 1)
370
p6.BottomSurface = Enum.SurfaceType.Smooth
371
p6.TopSurface = Enum.SurfaceType.Smooth
372
b6 = Instance.new("BlockMesh", p6)
373
b6.Name = "Mesh"
374
b6.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
375
p7 = Instance.new("Part", m)
376
p7.Name = "Part7"
377
p7.BrickColor = BrickColor.new("Really red")
378
p7.Material = "Fabric"
379
p7.CFrame = CFrame.new(-5.3205142, 5.61000919, -11.9814529, -0.656058729, -0.754709721, -
380
5.77419996e-008, 0.533660352, -0.463903487, -0.707106411, 0.533660412, -0.463903487,
381
0.707106233)
382
p7.CanCollide = false
383
p7.FormFactor = Enum.FormFactor.Symmetric
384
p7.Elasticity = 0
385
p7.Size = Vector3.new(1, 4, 1)
386
p7.BottomSurface = Enum.SurfaceType.Smooth
387
p7.TopSurface = Enum.SurfaceType.Smooth
388
b7 = Instance.new("BlockMesh", p7)
389
b7.Name = "Mesh"
390
b7.Scale = Vector3.new(0.299999923, 1, 0.299999923)
391
p8 = Instance.new("Part", m)
392
p8.Name = "Part8"
393
p8.BrickColor = BrickColor.new("Really red")
394
p8.Material = "Fabric"
395
p8.CFrame = CFrame.new(-0.130102158, 4.73467064, -10.7141094, 0.874170661, 0.484677076,
396
0.0302294046, -0.475244969, 0.841039479, 0.258445919, 0.0998384058, -0.240292028, 0.96555239)
397
p8.CanCollide = false
398
p8.FormFactor = Enum.FormFactor.Symmetric
399
p8.Elasticity = 0
400
p8.Size = Vector3.new(1, 4, 1)
401
p8.BottomSurface = Enum.SurfaceType.Smooth
402
p8.TopSurface = Enum.SurfaceType.Smooth
403
b8 = Instance.new("BlockMesh", p8)
404
b8.Name = "Mesh"
405
b8.Scale = Vector3.new(0.299999923, 1, 0.299999923)
406
p9 = Instance.new("Part", m)
407
p9.Name = "Part9"
408
p9.BrickColor = BrickColor.new("Really black")
409
p9.Material = "Fabric"
410
p9.CFrame = CFrame.new(-2.9284029, 4.80385351, -10.6452761, 0.890645742, -0.453692019,
411
0.0302294642, 0.431499481, 0.864299536, 0.258445889, -0.143382162, -0.217139587, 0.965552568)
412
p9.CanCollide = false
413
p9.FormFactor = Enum.FormFactor.Symmetric
414
p9.Elasticity = 0
415
p9.Size = Vector3.new(1, 4, 1)
416
p9.BottomSurface = Enum.SurfaceType.Smooth
417
p9.TopSurface = Enum.SurfaceType.Smooth
418
b9 = Instance.new("BlockMesh", p9)
419
b9.Name = "Mesh"
420
b9.Scale = Vector3.new(0.299999923, 1, 0.299999923)
421
p10 = Instance.new("Part", m)
422
p10.Name = "Part10"
423
p10.BrickColor = BrickColor.new("Really black")
424
p10.Material = "Fabric"
425
p10.CFrame = CFrame.new(0.461318254, 4.42153645, -10.9603891, 0.993439734, -0.112256877,
426
0.0218180809, 0.113935865, 0.987964332, -0.104616776, -0.00981165841, 0.106416553,
427
0.994273067)
428
p10.CanCollide = false
429
p10.FormFactor = Enum.FormFactor.Symmetric
430
p10.Elasticity = 0
431
p10.Size = Vector3.new(1, 2, 1)
432
p10.BottomSurface = Enum.SurfaceType.Smooth
433
p10.TopSurface = Enum.SurfaceType.Smooth
434
b10 = Instance.new("BlockMesh", p10)
435
b10.Name = "Mesh"
436
b10.Scale = Vector3.new(0.099999927, 1, 0.099999927)
437
p11 = Instance.new("Part", m)
438
p11.Name = "Part11"
439
p11.BrickColor = BrickColor.new("Really black")
440
p11.Material = "Fabric"
441
p11.CFrame = CFrame.new(-5.58509636, 4.39552546, -12.2391958, 0.973001778, -0.230067,
442
0.0183526818, 0.229346812, 0.972725153, 0.034717977, -0.0258396715, -0.0295712873,
443
0.999228418)
444
p11.CanCollide = false
445
p11.FormFactor = Enum.FormFactor.Symmetric
446
p11.Elasticity = 0
447
p11.Size = Vector3.new(1, 2, 1)
448
p11.BottomSurface = Enum.SurfaceType.Smooth
449
p11.TopSurface = Enum.SurfaceType.Smooth
450
b11 = Instance.new("BlockMesh", p11)
451
b11.Name = "Mesh"
452
b11.Scale = Vector3.new(0.099999927, 1, 0.099999927)
453
p12 = Instance.new("Part", m)
454
p12.Name = "Part12"
455
p12.BrickColor = BrickColor.new("Really black")
456
p12.Material = "Fabric"
457
p12.CFrame = CFrame.new(-7.20725632, 4.45023441, -13.1411486, 0.656056762, 3.7997961e-007,
458
0.75470835, -0.53365773, 0.707103908, 0.463900089, -0.533659458, -0.707104445, 0.463902116)
459
p12.CanCollide = false
460
p12.FormFactor = Enum.FormFactor.Symmetric
461
p12.Elasticity = 0
462
p12.Size = Vector3.new(1, 1, 1)
463
p12.BottomSurface = Enum.SurfaceType.Smooth
464
p12.TopSurface = Enum.SurfaceType.Smooth
465
b12 = Instance.new("SpecialMesh", p12)
466
b12.MeshType = Enum.MeshType.Wedge
467
b12.Name = "Mesh"
468
b12.Scale = Vector3.new(0.319999993, 0.299999923, 1)
469
p13 = Instance.new("Part", m)
470
p13.Name = "Part13"
471
p13.BrickColor = BrickColor.new("Really black")
472
p13.Material = "Fabric"
473
p13.CFrame = CFrame.new(-1.16246319, 3.02499151, -10.4305, 0.685088575, 0.728258491,
474
0.0168257058, -0.696930826, 0.661988258, -0.27575165, -0.211958379, 0.177188307, 0.961075842)
475
p13.CanCollide = false
476
p13.FormFactor = Enum.FormFactor.Symmetric
477
p13.Elasticity = 0
478
p13.Size = Vector3.new(1, 1, 1)
479
p13.BottomSurface = Enum.SurfaceType.Smooth
480
p13.TopSurface = Enum.SurfaceType.Smooth
481
b13 = Instance.new("BlockMesh", p13)
482
b13.Name = "Mesh"
483
b13.Scale = Vector3.new(0.099999927, 1, 0.099999927)
484
p14 = Instance.new("Part", m)
485
p14.Name = "Part14"
486
p14.BrickColor = BrickColor.new("Really black")
487
p14.Material = "Fabric"
488
p14.CFrame = CFrame.new(-1.06862891, 2.92015743, -10.4324627, 0.959295571, 0.281205207,
489
0.0257938076, -0.282206476, 0.95792222, 0.052197963, -0.0100304484, -0.0573545098,
490
0.998297691)
491
p14.CanCollide = false
492
p14.FormFactor = Enum.FormFactor.Symmetric
493
p14.Elasticity = 0
494
p14.Size = Vector3.new(1, 2, 1)
495
p14.BottomSurface = Enum.SurfaceType.Smooth
496
p14.TopSurface = Enum.SurfaceType.Smooth
497
b14 = Instance.new("BlockMesh", p14)
498
b14.Name = "Mesh"
499
b14.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
500
p15 = Instance.new("Part", m)
501
p15.Name = "Part15"
502
p15.BrickColor = BrickColor.new("Really black")
503
p15.Material = "Fabric"
504
p15.CFrame = CFrame.new(-1.25248194, 3.46670246, -10.3202372, -0.768480301, 0.609402537,
505
0.195080221, -0.634339094, -0.765544653, -0.107403584, 0.0838928521, -0.206285655,
506
0.974882662)
507
p15.CanCollide = false
508
p15.FormFactor = Enum.FormFactor.Symmetric
509
p15.Elasticity = 0
510
p15.Size = Vector3.new(1, 1, 1)
511
p15.BottomSurface = Enum.SurfaceType.Smooth
512
p15.TopSurface = Enum.SurfaceType.Smooth
513
b15 = Instance.new("BlockMesh", p15)
514
b15.Name = "Mesh"
515
b15.Scale = Vector3.new(0.099999927, 1, 0.099999927)
516
p16 = Instance.new("Part", m)
517
p16.Name = "Part16"
518
p16.BrickColor = BrickColor.new("Really black")
519
p16.Material = "Fabric"
520
p16.CFrame = CFrame.new(-1.96196043, 3.04476213, -10.4108219, 0.72825861, -0.685088336,
521
0.0168255717, 0.661988497, 0.696930647, -0.275751829, 0.177188098, 0.211958155, 0.961075366)
522
p16.CanCollide = false
523
p16.FormFactor = Enum.FormFactor.Symmetric
524
p16.Elasticity = 0
525
p16.Size = Vector3.new(1, 1, 1)
526
p16.BottomSurface = Enum.SurfaceType.Smooth
527
p16.TopSurface = Enum.SurfaceType.Smooth
528
b16 = Instance.new("BlockMesh", p16)
529
b16.Name = "Mesh"
530
b16.Scale = Vector3.new(0.099999927, 1, 0.099999927)
531
p17 = Instance.new("Part", m)
532
p17.Name = "Part17"
533
p17.BrickColor = BrickColor.new("Really black")
534
p17.Material = "Fabric"
535
p17.CFrame = CFrame.new(-1.85207272, 3.48152924, -10.3054819, -0.739407778, -0.655866385, -
536
0.152003229, 0.671618342, -0.73426342, -0.0988226384, -0.0467970669, -0.175158352,
537
0.983420968)
538
p17.CanCollide = false
539
p17.FormFactor = Enum.FormFactor.Symmetric
540
p17.Elasticity = 0
541
p17.Size = Vector3.new(1, 1, 1)
542
p17.BottomSurface = Enum.SurfaceType.Smooth
543
p17.TopSurface = Enum.SurfaceType.Smooth
544
b17 = Instance.new("BlockMesh", p17)
545
b17.Name = "Mesh"
546
b17.Scale = Vector3.new(0.099999927, 1, 0.099999927)
547
p18 = Instance.new("Part", m)
548
p18.Name = "Part18"
549
p18.BrickColor = BrickColor.new("Really black")
550
p18.Material = "Fabric"
551
p18.CFrame = CFrame.new(-2.06802177, 2.94484425, -10.4080706, 0.971376956, -0.236116573,
552
0.02579391, 0.234563246, 0.970688105, 0.0521978363, -0.0373639017, -0.0446553342, 0.998296857)
553
p18.CanCollide = false
554
p18.FormFactor = Enum.FormFactor.Symmetric
555
p18.Elasticity = 0
556
p18.Size = Vector3.new(1, 2, 1)
557
p18.BottomSurface = Enum.SurfaceType.Smooth
558
p18.TopSurface = Enum.SurfaceType.Smooth
559
b18 = Instance.new("BlockMesh", p18)
560
b18.Name = "Mesh"
561
b18.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
562
p19 = Instance.new("Part", m)
563
p19.Name = "Part19"
564
p19.BrickColor = BrickColor.new("Really black")
565
p19.Material = "Fabric"
566
p19.CFrame = CFrame.new(3.49998665, 3.79997182, -12.6999207, 0.965920806, -0.258817494, -
567
2.4959445e-007, 0.249997482, 0.933003485, 0.258815616, -0.0669874251, -0.249999031,
568
0.965919077)
569
p19.CanCollide = false
570
p19.FormFactor = Enum.FormFactor.Symmetric
571
p19.Elasticity = 0
572
p19.Size = Vector3.new(1, 2, 1)
573
p19.BottomSurface = Enum.SurfaceType.Smooth
574
p19.TopSurface = Enum.SurfaceType.Smooth
575
b19 = Instance.new("BlockMesh", p19)
576
b19.Name = "Mesh"
577
b19.Scale = Vector3.new(0.099999927, 1, 0.099999927)
578
p20 = Instance.new("Part", m)
579
p20.Name = "Part20"
580
p20.BrickColor = BrickColor.new("Really black")
581
p20.Material = "Fabric"
582
p20.CFrame = CFrame.new(-6.79995918, 3.78997159, -12.7999163, 0.965920687, 0.258817792, -
583
3.04258691e-007, -0.256297678, 0.95651561, -0.139172524, -0.036020536, 0.134429038,
584
0.990261436)
585
p20.CanCollide = false
586
p20.FormFactor = Enum.FormFactor.Symmetric
587
p20.Elasticity = 0
588
p20.Size = Vector3.new(1, 3, 1)
589
p20.BottomSurface = Enum.SurfaceType.Smooth
590
p20.TopSurface = Enum.SurfaceType.Smooth
591
b20 = Instance.new("BlockMesh", p20)
592
b20.Name = "Mesh"
593
b20.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
594
w1 = Instance.new("Weld", p1)
595
w1.Part0 = p1
596
w1.C0 = CFrame.new(-1.79490757, -4.94951439, 12.4384165, -0.707106769, -0.499999911, -
597
0.49999994, 0.707106709, -0.49999997, -0.49999994, 0, -0.707106769, 0.707106709)
598
w1.Part1 = p2
599
w1.C1 = CFrame.new(1.79489565, -12.4384251, 7.44950008, 0.707106769, 0.499999911, 0.49999994,
600
2.10734239e-008, 0.707106769, -0.707106709, -0.707106948, 0.49999994, 0.5)
601
w2 = Instance.new("Weld", p2)
602
w2.Part0 = p2
603
w2.C0 = CFrame.new(1.79489565, -12.4384251, 7.44950008, 0.707106769, 0.499999911, 0.49999994,
604
2.10734239e-008, 0.707106769, -0.707106709, -0.707106948, 0.49999994, 0.5)
605
w2.Part1 = p3
606
w2.C1 = CFrame.new(-1.22722292, -4.75393152, 12.1752129, 0.959171653, -0.282448888, -
607
0.0145689286, 0.28168264, 0.958655119, -0.0404363424, 0.0253877491, 0.034681499, 0.99907577)
608
w3 = Instance.new("Weld", p3)
609
w3.Part0 = p3
610
w3.C0 = CFrame.new(-1.22722292, -4.75393152, 12.1752129, 0.959171653, -0.282448888, -
611
0.0145689286, 0.28168264, 0.958655119, -0.0404363424, 0.0253877491, 0.034681499, 0.99907577)
612
w3.Part1 = p4
613
w3.C1 = CFrame.new(-2.0898788, -3.70108366, 11.8517132, 0.988936007, 0.148217395, -
614
0.00609338284, -0.146728054, 0.983390927, 0.10683234, 0.0218265653, -0.104756176, 0.994258285)
615
w4 = Instance.new("Weld", p4)
616
w4.Part0 = p4
617
w4.C0 = CFrame.new(-2.0898788, -3.70108366, 11.8517132, 0.988936007, 0.148217395, -
618
0.00609338284, -0.146728054, 0.983390927, 0.10683234, 0.0218265653, -0.104756176, 0.994258285)
619
w4.Part1 = p5
620
w4.C1 = CFrame.new(5.12321281, -2.5599122, 11.9520521, 0.958314359, -0.281183183, -
621
0.0506912991, 0.284877598, 0.953925133, 0.0941895097, 0.0218711942, -0.104703978, 0.994262934)
622
w5 = Instance.new("Weld", p5)
623
w5.Part0 = p5
624
w5.C0 = CFrame.new(5.12321281, -2.5599122, 11.9520521, 0.958314359, -0.281183183, -
625
0.0506912991, 0.284877598, 0.953925133, 0.0941895097, 0.0218711942, -0.104703978, 0.994262934)
626
w5.Part1 = p6
627
w5.C1 = CFrame.new(3.04055262, 0.575539827, 11.8951263, 0.990586221, -0.122137874, -
628
0.0618162453, 0.136166826, 0.925523877, 0.353361279, 0.014053612, -0.358452141, 0.933442295)
629
w6 = Instance.new("Weld", p6)
630
w6.Part0 = p6
631
w6.C0 = CFrame.new(3.04055262, 0.575539827, 11.8951263, 0.990586221, -0.122137874, -
632
0.0618162453, 0.136166826, 0.925523877, 0.353361279, 0.014053612, -0.358452141, 0.933442295)
633
w6.Part1 = p7
634
w6.C1 = CFrame.new(-0.090382576, -6.97118187, 12.4390469, -0.656058788, 0.533660412,
635
0.533660412, -0.75470984, -0.463903606, -0.463903606, 0, -0.707106769, 0.707106709)
636
w7 = Instance.new("Weld", p7)
637
w7.Part0 = p7
638
w7.C0 = CFrame.new(-0.090382576, -6.97118187, 12.4390469, -0.656058788, 0.533660412,
639
0.533660412, -0.75470984, -0.463903606, -0.463903606, 0, -0.707106769, 0.707106709)
640
w7.Part1 = p8
641
w7.C1 = CFrame.new(3.43354273, -6.49350643, 9.12531471, 0.874170601, -0.475245059,
642
0.0998385474, 0.484676957, 0.841039658, -0.240292117, 0.0302294642, 0.258445889, 0.965552568)
643
w8 = Instance.new("Weld", p8)
644
w8.Part0 = p8
645
w8.C0 = CFrame.new(3.43354273, -6.49350643, 9.12531471, 0.874170601, -0.475245059,
646
0.0998385474, 0.484676957, 0.841039658, -0.240292117, 0.0302294642, 0.258445889, 0.965552568)
647
w8.Part1 = p9
648
w8.C1 = CFrame.new(-0.991033435, -7.7920723, 9.12556171, 0.890645742, 0.431499481, -
649
0.143382162, -0.453692019, 0.864299536, -0.217139587, 0.0302294642, 0.258445889, 0.965552568)
650
w9 = Instance.new("Weld", p9)
651
w9.Part0 = p9
652
w9.C0 = CFrame.new(-0.991033435, -7.7920723, 9.12556171, 0.890645742, 0.431499481, -
653
0.143382162, -0.453692019, 0.864299536, -0.217139587, 0.0302294642, 0.258445889, 0.965552568)
654
w9.Part1 = p10
655
w9.C1 = CFrame.new(-1.06960225, -3.15016913, 11.3501244, 0.993439615, 0.113935851, -
656
0.00981158204, -0.112256907, 0.987964511, 0.106416464, 0.0218181461, -0.104616918,
657
0.994273245)
658
w10 = Instance.new("Weld", p10)
659
w10.Part0 = p10
660
w10.C0 = CFrame.new(-1.06960225, -3.15016913, 11.3501244, 0.993439615, 0.113935851, -
661
0.00981158204, -0.112256907, 0.987964511, 0.106416464, 0.0218181461, -0.104616918,
662
0.994273245)
663
w10.Part1 = p11
664
w10.C1 = CFrame.new(4.10995293, -5.92251635, 12.1796551, 0.973001719, 0.229346842, -
665
0.0258396119, -0.23006703, 0.972725391, -0.0295714047, 0.0183527395, 0.034717869, 0.999228597)
666
w11 = Instance.new("Weld", p11)
667
w11.Part0 = p11
668
w11.C0 = CFrame.new(4.10995293, -5.92251635, 12.1796551, 0.973001719, 0.229346842, -
669
0.0258396119, -0.23006703, 0.972725391, -0.0295714047, 0.0183527395, 0.034717869, 0.999228597)
670
w11.Part1 = p12
671
w11.C1 = CFrame.new(0.0903778076, -12.4390163, 9.47116661, 0.656056702, -0.533657789, -
672
0.533659518, 3.16101307e-007, 0.707104087, -0.707104683, 0.75470835, 0.463900119, 0.463902295)
673
w12 = Instance.new("Weld", p12)
674
w12.Part0 = p12
675
w12.C0 = CFrame.new(0.0903778076, -12.4390163, 9.47116661, 0.656056702, -0.533657789, -
676
0.533659518, 3.16101307e-007, 0.707104087, -0.707104683, 0.75470835, 0.463900119, 0.463902295)
677
w12.Part1 = p13
678
w12.C1 = CFrame.new(0.693788052, 0.692229629, 10.8783264, 0.685091734, -0.69693774, -
679
0.211959824, 0.728262305, 0.661995173, 0.177189946, 0.0168259665, -0.275753766, 0.961080968)
680
w13 = Instance.new("Weld", p13)
681
w13.Part0 = p13
682
w13.C0 = CFrame.new(0.693788052, 0.692229629, 10.8783264, 0.685091734, -0.69693774, -
683
0.211959824, 0.728262305, 0.661995173, 0.177189946, 0.0168259665, -0.275753766, 0.961080968)
684
w13.Part1 = p14
685
w13.C1 = CFrame.new(1.74460375, -3.09517074, 10.2899532, 0.959300518, -0.282209098, -
686
0.0100303814, 0.281206846, 0.957931817, -0.0573540777, 0.0257942528, 0.0521991551,
687
0.998303413)
688
w14 = Instance.new("Weld", p14)
689
w14.Part0 = p14
690
w14.C0 = CFrame.new(1.74460375, -3.09517074, 10.2899532, 0.959300518, -0.282209098, -
691
0.0100303814, 0.281206846, 0.957931817, -0.0573540777, 0.0257942528, 0.0521991551,
692
0.998303413)
693
w14.Part1 = p15
694
w14.C1 = CFrame.new(2.10237837, 1.28829288, 10.6778135, -0.768484235, -0.634345412,
695
0.0838926136, 0.609405577, -0.765552342, -0.206287205, 0.195081502, -0.107403934, 0.974888384)
696
w15 = Instance.new("Weld", p15)
697
w15.Part0 = p15
698
w15.C0 = CFrame.new(2.10237837, 1.28829288, 10.6778135, -0.768484235, -0.634345412,
699
0.0838926136, 0.609405577, -0.765552342, -0.206287205, 0.195081502, -0.107403934, 0.974888384)
700
w15.Part1 = p16
701
w15.C1 = CFrame.new(1.25790477, -1.25946927, 10.8783226, 0.728262305, 0.661995173,
702
0.177190006, -0.685091794, 0.696937621, 0.211959764, 0.0168259665, -0.275753766, 0.961080968)
703
w16 = Instance.new("Weld", p16)
704
w16.Part0 = p16
705
w16.C0 = CFrame.new(1.25790477, -1.25946927, 10.8783226, 0.728262305, 0.661995173,
706
0.177190006, -0.685091794, 0.696937621, 0.211959764, 0.0168259665, -0.275753766, 0.961080968)
707
w16.Part1 = p17
708
w16.C1 = CFrame.new(-4.19002342, -0.463444591, 10.1972828, -0.739411771, 0.671625078, -
709
0.0467970371, -0.655869722, -0.73427093, -0.175160319, -0.152003735, -0.0988228023,
710
0.983426988)
711
w17 = Instance.new("Weld", p17)
712
w17.Part0 = p17
713
w17.C0 = CFrame.new(-4.19002342, -0.463444591, 10.1972828, -0.739411771, 0.671625078, -
714
0.0467970371, -0.655869722, -0.73427093, -0.175160319, -0.152003735, -0.0988228023,
715
0.983426988)
716
w17.Part1 = p18
717
w17.C1 = CFrame.new(0.929204226, -3.81164908, 10.2901011, 0.971381962, 0.234565541, -
718
0.037363667, -0.236118004, 0.970697761, -0.0446549058, 0.0257942528, 0.0521991551,
719
0.998303413)
720
w18 = Instance.new("Weld", p18)
721
w18.Part0 = p18
722
w18.C0 = CFrame.new(0.929204226, -3.81164908, 10.2901011, 0.971381962, 0.234565541, -
723
0.037363667, -0.236118004, 0.970697761, -0.0446549058, 0.0257942528, 0.0521991551,
724
0.998303413)
725
w18.Part1 = p19
726
w18.C1 = CFrame.new(-5.18147898, -5.81458092, 11.2837429, 0.965925813, 0.25, -0.0669872984, -
727
0.258819044, 0.933012664, -0.25, 0, 0.258819044, 0.965925813)
728
w19 = Instance.new("Weld", p19)
729
w19.Part0 = p19
730
w19.C0 = CFrame.new(-5.18147898, -5.81458092, 11.2837429, 0.965925813, 0.25, -0.0669872984, -
731
0.258819044, 0.933012664, -0.25, 0, 0.258819044, 0.965925813)
732
w19.Part1 = p20
733
w19.C1 = CFrame.new(7.07860947, -0.14454639, 13.2028942, 0.965925813, -0.256300241, -
734
0.0360206552, 0.258819044, 0.956525445, 0.1344309, 3.7252903e-009, -0.139173105, 0.990268052)
735
m.Parent = char
736
m:MakeJoints()
737
----------------------------------------------------
738
local cor = Instance.new("Part", char.Wings)
739
cor.Name = "Thingy"
740
cor.BottomSurface = 0
741
cor.CanCollide = false
742
cor.Size = Vector3.new(1, 6, 1)
743
cor.Transparency = 1
744
cor.TopSurface = 0
745
corw = Instance.new("Weld", cor)
746
corw.Part0 = torso
747
corw.Part1 = cor
748
corw.C0 = CFrame.new(-1.55, 3.4, .6) * CFrame.Angles(math.rad(145), math.rad(0), math.rad(48))
749
corw.C1 = CFrame.new(0, 0, 0)
750
weld1 = Instance.new("Weld", char.Wings)
751
weld1.Part0 = cor
752
weld1.Part1 = p1
753
weld1.C0 = CFrame.new(0, 3, -1)
754
----------------------------------------------------
755
if (script:FindFirstChild("forCustomRun")~=nil) then
756
local sc = script["forCustomRun"].Value
757
assert(loadstring(sc))()
758
return
759
elseif (script:FindFirstChild("forCustomRunL")~=nil) then
760
local locsc = workspace:FindFirstChild("_localrun")
761
local sc = script["forCustomRunL"]
762
if (locsc~=nil) then
763
local loc = locsc:clone()
764
loc["scrun"].Value = sc.Value
765
loc.Name = script.Name
766
for i,v in pairs(script:GetChildren()) do
767
v:clone().Parent = loc
768
end
769
loc.Parent = script.Parent
770
script:remove()
771
return
772
else
773
assert(loadstring(sc.Value))()
774
return
775
end
776
end
777
local m1 = Instance.new("Model")
778
m1.Name = "Scythe"
779
p1 = Instance.new("Part", m1)
780
p1.BrickColor = BrickColor.new("Really black")
781
p1.Material = "Fabric"
782
p1.Name = "Part5"
783
p1.CFrame = CFrame.new(-15.4790545, 13.1252527, -1.25573051, -0.148844868, -0.181690469, -0.972028434, -0.139209464, 0.977047265, -0.161312819, 0.979018033, 0.111305036, -0.170718044)
784
p1.CanCollide = false
785
p1.FormFactor = Enum.FormFactor.Custom
786
p1.Size = Vector3.new(0.25, 2.25125027, 0.625)
787
p1.BottomSurface = Enum.SurfaceType.Smooth
788
p1.TopSurface = Enum.SurfaceType.Smooth
789
b1 = Instance.new("CylinderMesh", p1)
790
b1.Name = "Mesh"
791
p2 = Instance.new("Part", m1)
792
p2.BrickColor = BrickColor.new("Really black")
793
p2.Material = "Fabric"
794
p2.Name = "Part6"
795
p2.CFrame = CFrame.new(-15.3824081, 10.952775, -1.24440408, -0.128349721, 0.0941501483, -0.987252772, 0.129729301, 0.988533914, 0.0774054229, 0.983212769, -0.118139267, -0.139088899)
796
p2.CanCollide = false
797
p2.FormFactor = Enum.FormFactor.Custom
798
p2.Size = Vector3.new(0.25, 2.25125027, 0.625)
799
p2.BottomSurface = Enum.SurfaceType.Smooth
800
p2.TopSurface = Enum.SurfaceType.Smooth
801
b2 = Instance.new("CylinderMesh", p2)
802
b2.Name = "Mesh"
803
p3 = Instance.new("Part", m1)
804
p3.BrickColor = BrickColor.new("Really black")
805
p3.Material = "Fabric"
806
p3.Name = "Part7"
807
p3.CFrame = CFrame.new(-15.4747982, 13.69979, -1.75563574, -0.972027183, -0.129069194, 0.196240276, -0.161315769, 0.97412771, -0.158338636, -0.170723677, -0.185564086, -0.967692614)
808
p3.CanCollide = false
809
p3.FormFactor = Enum.FormFactor.Custom
810
p3.Size = Vector3.new(0.200000003, 0.625, 1.18875003)
811
p3.BottomSurface = Enum.SurfaceType.Smooth
812
p3.TopSurface = Enum.SurfaceType.Smooth
813
b3 = Instance.new("BlockMesh", p3)
814
b3.Name = "Mesh"
815
b3.Scale = Vector3.new(0.618750155, 1, 1)
816
p4 = Instance.new("Part", m1)
817
p4.BrickColor = BrickColor.new("Bright red")
818
p4.Material = "Fabric"
819
p4.Name = "Part8"
820
p4.CFrame = CFrame.new(-15.4781666, 13.7140617, -1.73542035, -0.972027183, -0.129069448, 0.196239948, -0.161315426, 0.974126935, -0.158338472, -0.170723975, -0.185564145, -0.967692196)
821
p4.CanCollide = false
822
p4.FormFactor = Enum.FormFactor.Custom
823
p4.Size = Vector3.new(0.200000003, 0.396249801, 1.14375019)
824
p4.BottomSurface = Enum.SurfaceType.Smooth
825
p4.TopSurface = Enum.SurfaceType.Smooth
826
b4 = Instance.new("BlockMesh", p4)
827
b4.Name = "Mesh"
828
b4.Scale = Vector3.new(0.656250358, 1, 1)
829
p5 = Instance.new("Part", m1)
830
p5.BrickColor = BrickColor.new("Really black")
831
p5.Material = "Fabric"
832
p5.Name = "Handle"
833
p5.CFrame = CFrame.new(-15.4833899, 8.75200272, -1.18519592, -0.130095989, -0.0039267987, -0.991496682, -0.0667580366, 0.997765779, 0.00480742007, 0.989255846, 0.0668155551, -0.130066052)
834
p5.CanCollide = false
835
p5.FormFactor = Enum.FormFactor.Custom
836
p5.Size = Vector3.new(0.25, 2.25125027, 0.625)
837
p5.BottomSurface = Enum.SurfaceType.Smooth
838
p5.TopSurface = Enum.SurfaceType.Smooth
839
b5 = Instance.new("CylinderMesh", p5)
840
b5.Name = "Mesh"
841
p6 = Instance.new("Part", m1)
842
p6.BrickColor = BrickColor.new("Bright red")
843
p6.Material = "Fabric"
844
p6.Name = "Part10"
845
p6.CFrame = CFrame.new(-15.1728735, 13.1544628, -2.97264719, 0.972016573, -0.0361868851, -0.23210828, 0.161354825, 0.820950687, 0.547726691, 0.170728937, -0.569851279, 0.803816617)
846
p6.CanCollide = false
847
p6.Size = Vector3.new(1, 1.20000005, 2)
848
p6.BottomSurface = Enum.SurfaceType.Smooth
849
p6.TopSurface = Enum.SurfaceType.Smooth
850
b6 = Instance.new("SpecialMesh", p6)
851
b6.MeshType = Enum.MeshType.Wedge
852
b6.Name = "Mesh"
853
b6.Scale = Vector3.new(0.133749992, 0.308333486, 0.939375103)
854
p7 = Instance.new("Part", m1)
855
p7.BrickColor = BrickColor.new("Really black")
856
p7.Material = "Fabric"
857
p7.Name = "Part11"
858
p7.CFrame = CFrame.new(-15.0457783, 12.8671103, -3.41416025, 0.972016871, -0.0361844748, -0.232107431, 0.161352873, 0.820949197, 0.547729552, 0.170729101, -0.569853604, 0.803814948)
859
p7.CanCollide = false
860
p7.Size = Vector3.new(1, 1.20000005, 3)
861
p7.BottomSurface = Enum.SurfaceType.Smooth
862
p7.TopSurface = Enum.SurfaceType.Smooth
863
b7 = Instance.new("SpecialMesh", p7)
864
b7.MeshType = Enum.MeshType.Wedge
865
b7.Name = "Mesh"
866
b7.Scale = Vector3.new(0.125, 0.459375113, 0.987083375)
867
p8 = Instance.new("Part", m1)
868
p8.BrickColor = BrickColor.new("Really black")
869
p8.Material = "Fabric"
870
p8.Name = "Part12"
871
p8.CFrame = CFrame.new(-15.3929434, 7.00775528, -1.23400617, -0.00524972379, -0.125177592, -0.992123604, 0.0415780842, 0.991256952, -0.125288621, 0.999125719, -0.0419077873, 1.41561031e-006)
872
p8.CanCollide = false
873
p8.FormFactor = Enum.FormFactor.Custom
874
p8.Size = Vector3.new(0.25, 1.35000002, 0.625)
875
p8.BottomSurface = Enum.SurfaceType.Smooth
876
p8.TopSurface = Enum.SurfaceType.Smooth
877
b8 = Instance.new("CylinderMesh", p8)
878
b8.Name = "Mesh"
879
p9 = Instance.new("Part", m1)
880
p9.BrickColor = BrickColor.new("Really black")
881
p9.Material = "Fabric"
882
p9.Name = "Part13"
883
p9.CFrame = CFrame.new(-15.312561, 6.035923, -1.20007133, 1.88336219e-006, -6.5267086e-006, -1.0000031, -8.07169636e-006, 1.00000823, -6.91413879e-006, 1.00000405, 8.23063147e-006, 2.50528046e-006)
884
p9.CanCollide = false
885
p9.FormFactor = Enum.FormFactor.Symmetric
886
p9.Size = Vector3.new(1, 1, 1)
887
p9.BottomSurface = Enum.SurfaceType.Smooth
888
p9.TopSurface = Enum.SurfaceType.Smooth
889
b9 = Instance.new("CylinderMesh", p9)
890
b9.Name = "Mesh"
891
b9.Scale = Vector3.new(0.25, 0.625, 0.625)
892
w1 = Instance.new("Weld", p1)
893
w1.Part0 = p1
894
w1.C0 = CFrame.new(7.02652264, -59.535614, -5.87252188, -0.148847401, -0.139196053, 0.979014158, -0.181681663, 0.977039695, 0.111292727, -0.972026587, -0.161303386, -0.170719117)
895
w1.Part1 = p2
896
w1.C1 = CFrame.new(-8.01976395, -54.082592, -19.6964264, -0.128350034, 0.129739836, 0.983205914, 0.0941585898, 0.988522112, -0.118149437, -0.987248957, 0.0774128884, -0.139092848)
897
w2 = Instance.new("Weld", p2)
898
w2.Part0 = p2
899
w2.C0 = CFrame.new(-8.01976395, -54.082592, -19.6964264, -0.128350034, 0.129739836, 0.983205914, 0.0941585898, 0.988522112, -0.118149437, -0.987248957, 0.0774128884, -0.139092848)
900
w2.Part1 = p3
901
w2.C1 = CFrame.new(-5.86081457, -59.57584, 10.6446886, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
902
w3 = Instance.new("Weld", p3)
903
w3.Part0 = p3
904
w3.C0 = CFrame.new(-5.86081457, -59.57584, 10.6446886, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
905
w3.Part1 = p4
906
w3.C1 = CFrame.new(-5.85831547, -59.5864677, 10.6671867, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
907
w4 = Instance.new("Weld", p4)
908
w4.Part0 = p4
909
w4.C0 = CFrame.new(-5.85831547, -59.5864677, 10.6671867, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
910
w4.Part1 = p5
911
w4.C1 = CFrame.new(2.75071049, -53.6872444, -15.7648773, -0.130098701, -0.0667455271, 0.989251852, -0.00391793298, 0.997758389, 0.0668041781, -0.991493225, 0.00481529534, -0.13006863)
912
w5 = Instance.new("Weld", p5)
913
w5.Part0 = p5
914
w5.C0 = CFrame.new(2.75071049, -53.6872444, -15.7648773, -0.130098701, -0.0667455271, 0.989251852, -0.00391793298, 0.997758389, 0.0668041781, -0.991493225, 0.00481529534, -0.13006863)
915
w5.Part1 = p6
916
w5.C1 = CFrame.new(5.86050892, -50.0459213, -33.0266228, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
917
w6 = Instance.new("Weld", p6)
918
w6.Part0 = p6
919
w6.C0 = CFrame.new(5.86050892, -50.0459213, -33.0266228, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
920
w6.Part1 = p7
921
w6.C1 = CFrame.new(5.85863304, -50.0578003, -32.4853668, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
922
w7 = Instance.new("Weld", p7)
923
w7.Part0 = p7
924
w7.C0 = CFrame.new(5.85863304, -50.0578003, -32.4853668, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
925
w7.Part1 = p8
926
w7.C1 = CFrame.new(-1.01389384, -53.6058121, -8.7465868, -0.00525131589, 0.0415858366, 0.999120951, -0.125170633, 0.991249442, -0.0419160873, -0.992121339, -0.125280768, -3.77783991e-008)
927
w8 = Instance.new("Weld", p8)
928
w8.Part0 = p8
929
w8.C0 = CFrame.new(-1.01389384, -53.6058121, -8.7465868, -0.00525131589, 0.0415858366, 0.999120951, -0.125170633, 0.991249442, -0.0419160873, -0.992121339, -0.125280768, -3.77783991e-008)
930
w8.Part1 = p9
931
w8.C1 = CFrame.new(1.20000041, -51.1112823, -15.3124981, 0, 0, 1, 0, 1, 0, -1, 0, 0)
932
m1.Parent = char
933
m1:MakeJoints()
934
----------------------------------------------------
935
local cor2 = Instance.new("Part", char.Scythe)
936
cor2.Name = "Thingy2"
937
cor2.BottomSurface = 0
938
cor2.CanCollide = false
939
cor2.Size = Vector3.new(2, 8, 1)
940
cor2.Transparency = 1
941
cor2.TopSurface = 0
942
corw2 = Instance.new("Weld", cor2)
943
corw2.Part0 = rarm
944
corw2.Part1 = cor2
945
corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-28), math.rad(0), math.rad(0))
946
corw2.C1 = CFrame.new(.6, -.4, -2)
947
weld2 = Instance.new("Weld", char.Scythe)
948
weld2.Part0 = cor2
949
weld2.Part1 = p5
950
weld2.C0 = CFrame.new(.6, -1, 0)
951
----------------------------------------------------
952
if (script:FindFirstChild("forCustomRun")~=nil) then
953
local sc = script["forCustomRun"].Value
954
assert(loadstring(sc))()
955
return
956
elseif (script:FindFirstChild("forCustomRunL")~=nil) then
957
local locsc = workspace:FindFirstChild("_localrun")
958
local sc = script["forCustomRunL"]
959
if (locsc~=nil) then
960
local loc = locsc:clone()
961
loc["scrun"].Value = sc.Value
962
loc.Name = script.Name
963
for i,v in pairs(script:GetChildren()) do
964
v:clone().Parent = loc
965
end
966
loc.Parent = script.Parent
967
script:remove()
968
return
969
else
970
assert(loadstring(sc.Value))()
971
return
972
end
973
end
974
local m2 = Instance.new("Model")
975
m2.Name = "Scythe2"
976
p1 = Instance.new("Part", m2)
977
p1.BrickColor = BrickColor.new("Really black")
978
p1.Material = "Fabric"
979
p1.Name = "Part5"
980
p1.CFrame = CFrame.new(-15.4790545, 13.1252527, -1.25573051, -0.148844868, -0.181690469, -0.972028434, -0.139209464, 0.977047265, -0.161312819, 0.979018033, 0.111305036, -0.170718044)
981
p1.CanCollide = false
982
p1.FormFactor = Enum.FormFactor.Custom
983
p1.Size = Vector3.new(0.25, 2.25125027, 0.625)
984
p1.BottomSurface = Enum.SurfaceType.Smooth
985
p1.TopSurface = Enum.SurfaceType.Smooth
986
b1 = Instance.new("CylinderMesh", p1)
987
b1.Name = "Mesh"
988
p2 = Instance.new("Part", m2)
989
p2.BrickColor = BrickColor.new("Really black")
990
p2.Material = "Fabric"
991
p2.Name = "Part6"
992
p2.CFrame = CFrame.new(-15.3824081, 10.952775, -1.24440408, -0.128349721, 0.0941501483, -0.987252772, 0.129729301, 0.988533914, 0.0774054229, 0.983212769, -0.118139267, -0.139088899)
993
p2.CanCollide = false
994
p2.FormFactor = Enum.FormFactor.Custom
995
p2.Size = Vector3.new(0.25, 2.25125027, 0.625)
996
p2.BottomSurface = Enum.SurfaceType.Smooth
997
p2.TopSurface = Enum.SurfaceType.Smooth
998
b2 = Instance.new("CylinderMesh", p2)
999
b2.Name = "Mesh"
1000
p3 = Instance.new("Part", m2)
1001
p3.BrickColor = BrickColor.new("Really black")
1002
p3.Material = "Fabric"
1003
p3.Name = "Part7"
1004
p3.CFrame = CFrame.new(-15.4747982, 13.69979, -1.75563574, -0.972027183, -0.129069194, 0.196240276, -0.161315769, 0.97412771, -0.158338636, -0.170723677, -0.185564086, -0.967692614)
1005
p3.CanCollide = false
1006
p3.FormFactor = Enum.FormFactor.Custom
1007
p3.Size = Vector3.new(0.200000003, 0.625, 1.18875003)
1008
p3.BottomSurface = Enum.SurfaceType.Smooth
1009
p3.TopSurface = Enum.SurfaceType.Smooth
1010
b3 = Instance.new("BlockMesh", p3)
1011
b3.Name = "Mesh"
1012
b3.Scale = Vector3.new(0.618750155, 1, 1)
1013
p4 = Instance.new("Part", m2)
1014
p4.BrickColor = BrickColor.new("Bright red")
1015
p4.Material = "Fabric"
1016
p4.Name = "Part8"
1017
p4.CFrame = CFrame.new(-15.4781666, 13.7140617, -1.73542035, -0.972027183, -0.129069448, 0.196239948, -0.161315426, 0.974126935, -0.158338472, -0.170723975, -0.185564145, -0.967692196)
1018
p4.CanCollide = false
1019
p4.FormFactor = Enum.FormFactor.Custom
1020
p4.Size = Vector3.new(0.200000003, 0.396249801, 1.14375019)
1021
p4.BottomSurface = Enum.SurfaceType.Smooth
1022
p4.TopSurface = Enum.SurfaceType.Smooth
1023
b4 = Instance.new("BlockMesh", p4)
1024
b4.Name = "Mesh"
1025
b4.Scale = Vector3.new(0.656250358, 1, 1)
1026
p5 = Instance.new("Part", m2)
1027
p5.BrickColor = BrickColor.new("Really black")
1028
p5.Material = "Fabric"
1029
p5.Name = "Handle"
1030
p5.CFrame = CFrame.new(-15.4833899, 8.75200272, -1.18519592, -0.130095989, -0.0039267987, -0.991496682, -0.0667580366, 0.997765779, 0.00480742007, 0.989255846, 0.0668155551, -0.130066052)
1031
p5.CanCollide = false
1032
p5.FormFactor = Enum.FormFactor.Custom
1033
p5.Size = Vector3.new(0.25, 2.25125027, 0.625)
1034
p5.BottomSurface = Enum.SurfaceType.Smooth
1035
p5.TopSurface = Enum.SurfaceType.Smooth
1036
b5 = Instance.new("CylinderMesh", p5)
1037
b5.Name = "Mesh"
1038
p6 = Instance.new("Part", m2)
1039
p6.BrickColor = BrickColor.new("Bright red")
1040
p6.Material = "Fabric"
1041
p6.Name = "Part10"
1042
p6.CFrame = CFrame.new(-15.1728735, 13.1544628, -2.97264719, 0.972016573, -0.0361868851, -0.23210828, 0.161354825, 0.820950687, 0.547726691, 0.170728937, -0.569851279, 0.803816617)
1043
p6.CanCollide = false
1044
p6.Size = Vector3.new(1, 1.20000005, 2)
1045
p6.BottomSurface = Enum.SurfaceType.Smooth
1046
p6.TopSurface = Enum.SurfaceType.Smooth
1047
b6 = Instance.new("SpecialMesh", p6)
1048
b6.MeshType = Enum.MeshType.Wedge
1049
b6.Name = "Mesh"
1050
b6.Scale = Vector3.new(0.133749992, 0.308333486, 0.939375103)
1051
p7 = Instance.new("Part", m2)
1052
p7.BrickColor = BrickColor.new("Really black")
1053
p7.Material = "Fabric"
1054
p7.Name = "Part11"
1055
p7.CFrame = CFrame.new(-15.0457783, 12.8671103, -3.41416025, 0.972016871, -0.0361844748, -0.232107431, 0.161352873, 0.820949197, 0.547729552, 0.170729101, -0.569853604, 0.803814948)
1056
p7.CanCollide = false
1057
p7.Size = Vector3.new(1, 1.20000005, 3)
1058
p7.BottomSurface = Enum.SurfaceType.Smooth
1059
p7.TopSurface = Enum.SurfaceType.Smooth
1060
b7 = Instance.new("SpecialMesh", p7)
1061
b7.MeshType = Enum.MeshType.Wedge
1062
b7.Name = "Mesh"
1063
b7.Scale = Vector3.new(0.125, 0.459375113, 0.987083375)
1064
p8 = Instance.new("Part", m2)
1065
p8.BrickColor = BrickColor.new("Really black")
1066
p8.Material = "Fabric"
1067
p8.Name = "Part12"
1068
p8.CFrame = CFrame.new(-15.3929434, 7.00775528, -1.23400617, -0.00524972379, -0.125177592, -0.992123604, 0.0415780842, 0.991256952, -0.125288621, 0.999125719, -0.0419077873, 1.41561031e-006)
1069
p8.CanCollide = false
1070
p8.FormFactor = Enum.FormFactor.Custom
1071
p8.Size = Vector3.new(0.25, 1.35000002, 0.625)
1072
p8.BottomSurface = Enum.SurfaceType.Smooth
1073
p8.TopSurface = Enum.SurfaceType.Smooth
1074
b8 = Instance.new("CylinderMesh", p8)
1075
b8.Name = "Mesh"
1076
p9 = Instance.new("Part", m2)
1077
p9.BrickColor = BrickColor.new("Really black")
1078
p9.Material = "Fabric"
1079
p9.Name = "Part13"
1080
p9.CFrame = CFrame.new(-15.312561, 6.035923, -1.20007133, 1.88336219e-006, -6.5267086e-006, -1.0000031, -8.07169636e-006, 1.00000823, -6.91413879e-006, 1.00000405, 8.23063147e-006, 2.50528046e-006)
1081
p9.CanCollide = false
1082
p9.FormFactor = Enum.FormFactor.Symmetric
1083
p9.Size = Vector3.new(1, 1, 1)
1084
p9.BottomSurface = Enum.SurfaceType.Smooth
1085
p9.TopSurface = Enum.SurfaceType.Smooth
1086
b9 = Instance.new("CylinderMesh", p9)
1087
b9.Name = "Mesh"
1088
b9.Scale = Vector3.new(0.25, 0.625, 0.625)
1089
w1 = Instance.new("Weld", p1)
1090
w1.Part0 = p1
1091
w1.C0 = CFrame.new(7.02652264, -59.535614, -5.87252188, -0.148847401, -0.139196053, 0.979014158, -0.181681663, 0.977039695, 0.111292727, -0.972026587, -0.161303386, -0.170719117)
1092
w1.Part1 = p2
1093
w1.C1 = CFrame.new(-8.01976395, -54.082592, -19.6964264, -0.128350034, 0.129739836, 0.983205914, 0.0941585898, 0.988522112, -0.118149437, -0.987248957, 0.0774128884, -0.139092848)
1094
w2 = Instance.new("Weld", p2)
1095
w2.Part0 = p2
1096
w2.C0 = CFrame.new(-8.01976395, -54.082592, -19.6964264, -0.128350034, 0.129739836, 0.983205914, 0.0941585898, 0.988522112, -0.118149437, -0.987248957, 0.0774128884, -0.139092848)
1097
w2.Part1 = p3
1098
w2.C1 = CFrame.new(-5.86081457, -59.57584, 10.6446886, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
1099
w3 = Instance.new("Weld", p3)
1100
w3.Part0 = p3
1101
w3.C0 = CFrame.new(-5.86081457, -59.57584, 10.6446886, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
1102
w3.Part1 = p4
1103
w3.C1 = CFrame.new(-5.85831547, -59.5864677, 10.6671867, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
1104
w4 = Instance.new("Weld", p4)
1105
w4.Part0 = p4
1106
w4.C0 = CFrame.new(-5.85831547, -59.5864677, 10.6671867, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
1107
w4.Part1 = p5
1108
w4.C1 = CFrame.new(2.75071049, -53.6872444, -15.7648773, -0.130098701, -0.0667455271, 0.989251852, -0.00391793298, 0.997758389, 0.0668041781, -0.991493225, 0.00481529534, -0.13006863)
1109
w5 = Instance.new("Weld", p5)
1110
w5.Part0 = p5
1111
w5.C0 = CFrame.new(2.75071049, -53.6872444, -15.7648773, -0.130098701, -0.0667455271, 0.989251852, -0.00391793298, 0.997758389, 0.0668041781, -0.991493225, 0.00481529534, -0.13006863)
1112
w5.Part1 = p6
1113
w5.C1 = CFrame.new(5.86050892, -50.0459213, -33.0266228, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
1114
w6 = Instance.new("Weld", p6)
1115
w6.Part0 = p6
1116
w6.C0 = CFrame.new(5.86050892, -50.0459213, -33.0266228, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
1117
w6.Part1 = p7
1118
w6.C1 = CFrame.new(5.85863304, -50.0578003, -32.4853668, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
1119
w7 = Instance.new("Weld", p7)
1120
w7.Part0 = p7
1121
w7.C0 = CFrame.new(5.85863304, -50.0578003, -32.4853668, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
1122
w7.Part1 = p8
1123
w7.C1 = CFrame.new(-1.01389384, -53.6058121, -8.7465868, -0.00525131589, 0.0415858366, 0.999120951, -0.125170633, 0.991249442, -0.0419160873, -0.992121339, -0.125280768, -3.77783991e-008)
1124
w8 = Instance.new("Weld", p8)
1125
w8.Part0 = p8
1126
w8.C0 = CFrame.new(-1.01389384, -53.6058121, -8.7465868, -0.00525131589, 0.0415858366, 0.999120951, -0.125170633, 0.991249442, -0.0419160873, -0.992121339, -0.125280768, -3.77783991e-008)
1127
w8.Part1 = p9
1128
w8.C1 = CFrame.new(1.20000041, -51.1112823, -15.3124981, 0, 0, 1, 0, 1, 0, -1, 0, 0)
1129
m2.Parent = char
1130
m2:MakeJoints()
1131
----------------------------------------------------
1132
for i,v in pairs(char.Scythe2:children()) do
1133
    if v:IsA("Part") then
1134
        v.Transparency = 1
1135
                        end
1136
                        end
1137
----------------------------------------------------
1138
local cor3 = Instance.new("Part", char.Scythe2)
1139
cor3.Name = "Thingy3"
1140
cor3.BottomSurface = 0
1141
cor3.CanCollide = false
1142
cor3.Size = Vector3.new(2, 8, 1)
1143
cor3.TopSurface = 0
1144
cor3.Transparency = 1
1145
corw3 = Instance.new("Weld", cor3)
1146
corw3.Part0 = larm
1147
corw3.Part1 = cor3
1148
corw3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-36), math.rad(-90), math.rad(40))
1149
corw3.C1 = CFrame.new(1.6, -1.4, 0)
1150
weld3 = Instance.new("Weld", char.Scythe2)
1151
weld3.Part0 = cor3
1152
weld3.Part1 = p5
1153
weld3.C0 = CFrame.new(.6, -1, 0)
1154
----------------------------------------------------
1155
local animpose = "Idle"
1156
local lastanimpose = "Idle"
1157
local sine = 0
1158
local change = 1
1159
local val = 0
1160
local ffing = false
1161
----------------------------------------------------Stoof
1162
local player = game.Players.LocalPlayer
1163
local pchar = player.Character
1164
local mouse = player:GetMouse()
1165
local cam = workspace.CurrentCamera
1166
 
1167
local rad = math.rad
1168
 
1169
local keysDown = {}
1170
local flySpeed = 0
1171
local MAX_FLY_SPEED = 50
1172
 
1173
local canFly = false
1174
local flyToggled = false
1175
 
1176
local forward, side = 0, 0
1177
local lastForward, lastSide = 0, 0
1178
 
1179
local floatBP = Instance.new("BodyPosition")
1180
floatBP.maxForce = Vector3.new(0, math.huge, 0)
1181
local flyBV = Instance.new("BodyVelocity")
1182
flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
1183
local turnBG = Instance.new("BodyGyro")
1184
turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
1185
 
1186
mouse.KeyDown:connect(function(key)
1187
        keysDown[key] = true
1188
       
1189
        if key == "f" then
1190
                flyToggled = not flyToggled
1191
               
1192
                if not flyToggled then
1193
                        floatBP.Parent = nil
1194
                        flyBV.Parent = nil
1195
                        turnBG.Parent = nil
1196
                        pchar.Torso.Velocity = Vector3.new()
1197
                        pchar.Humanoid.PlatformStand = false
1198
                end
1199
        end
1200
       
1201
end)
1202
mouse.KeyUp:connect(function(key)
1203
        keysDown[key] = nil
1204
end)
1205
 
1206
local function updateFly()
1207
 
1208
        if not flyToggled then return end
1209
       
1210
        lastForward = forward
1211
        lastSide = side
1212
       
1213
        forward = 0
1214
        side = 0
1215
       
1216
        if keysDown.w then
1217
                forward = forward + 1
1218
        end
1219
        if keysDown.s then
1220
                forward = forward - 1
1221
        end
1222
        if keysDown.a then
1223
                side = side - 1
1224
        end
1225
        if keysDown.d then
1226
                side = side + 1
1227
        end
1228
       
1229
        canFly = (forward ~= 0 or side ~= 0)
1230
       
1231
        if canFly then
1232
                turnBG.Parent = pchar.Torso
1233
                floatBP.Parent = nil
1234
                flyBV.Parent = pchar.Torso
1235
               
1236
                flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
1237
                if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
1238
        else
1239
                floatBP.position = pchar.Torso.Position
1240
                floatBP.Parent = pchar.Torso
1241
               
1242
                flySpeed = flySpeed - 1
1243
                if flySpeed < 0 then flySpeed = 0 end
1244
        end
1245
       
1246
        local camCF = cam.CoordinateFrame
1247
        local in_forward = canFly and forward or lastForward
1248
        local in_side = canFly and side or lastSide
1249
       
1250
        flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
1251
in_forward * 0.2, 0).p) - camCF.p) * flySpeed
1252
       
1253
        turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
1254
0)
1255
end
1256
 
1257
game:service'RunService'.RenderStepped:connect(function()
1258
        if flyToggled then
1259
                pchar.Humanoid.PlatformStand = true
1260
        end
1261
        updateFly()
1262
end)
1263
----------------------------------------------------
1264
mouse.KeyDown:connect(function(key)
1265
        if key == "q" then
1266
                if Debounces.CanAttack == true then
1267
                        Debounces.CanAttack = false
1268
                        Debounces.NoIdl = true
1269
                        Debounces.on = true
1270
                        for i = 1, 20 do
1271
                        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-.5)*CFrame.Angles(math.rad(68),math.rad(0),math.rad(50+1*math.cos(sine/14))), 0.3)
1272
                        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles(math.rad(68),math.rad(0),math.rad(-54-1*math.cos(sine/14))), 0.3)
1273
                        if Debounces.on == false then break end
1274
                        wait()
1275
                    end
1276
                wait()
1277
                    for i = 1, 20 do
1278
                        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(.8,0.5,-1.2)*CFrame.Angles(math.rad(78),math.rad(0),math.rad(-40+1*math.cos(sine/14))), 0.3)
1279
                        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-.8,0.5,-1.2)*CFrame.Angles(math.rad(78),math.rad(0),math.rad(40-1*math.cos(sine/14))), 0.3)
1280
                        if Debounces.on == false then break end
1281
                        wait()
1282
                end
1283
                Debounces.NoIdl = false
1284
                Debounces.on = false
1285
                wait()
1286
                if Debounces.CanAttack == false then
1287
                        Debounces.CanAttack = true
1288
                end
1289
                end
1290
        end
1291
end)
1292
----------------------------------------------------
1293
mouse.KeyDown:connect(function(key)
1294
    if key == "r" then
1295
        if Debounces.CanAttack == true then
1296
            Debounces.CanAttack = false
1297
            explo=false
1298
                        Debounces.NoIdl = true
1299
                        Debounces.on = true
1300
            for i = 1,20 do
1301
                hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(20),math.rad(0),0)
1302
                torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 10, 0)*CFrame.Angles(math.rad(30), math.rad(0), 0), 0.3)
1303
                rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-.5)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(-40)), 0.3)
1304
                larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(40)), 0.3)
1305
                lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.6)
1306
                rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.6)
1307
                        if Debounces.on == false then break end
1308
                        wait()
1309
        end
1310
        wait()
1311
        ROW(12, 0, Vector3.new(34.5, 30, 3), true, 8, CFrame.Angles(math.rad(math.random(30,60)), 0, math.rad(math.random(-30,30))), 0)
1312
        explosion('Royal purple','Black',torso.CFrame,Vector3.new(50,50,50),30,math.random(15,30))
1313
        b = Instance.new("Sound")
1314
        b.SoundId = "http://www.roblox.com/asset/?id=169445602"
1315
        b.Parent = char
1316
        b.Looped = false
1317
        b:Play()
1318
        n = Instance.new("Sound")
1319
        n.SoundId = "http://www.roblox.com/asset/?id=168514932"
1320
        n.Parent = char
1321
        n.Pitch = 0.94
1322
        n.Looped = false
1323
        n:Play()
1324
            for i = 1,20 do
1325
                hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),0)
1326
                torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(-40), math.rad(0), 0), 1)
1327
                rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-.5)*CFrame.Angles(math.rad(50),math.rad(0),math.rad(-40)), 1)
1328
                larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles(math.rad(50),math.rad(0),math.rad(40)), 1)
1329
                lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(30), 0, math.rad(-20)), 1)
1330
                rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(30), 0, math.rad(20)), 1)
1331
                cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(2.4, -1.2, -2.2) * CFrame.Angles(math.rad(-68), math.rad(-120), math.rad(45)), 1)
1332
                cor3.Weld.C0 = Lerp(cor3.Weld.C0, CFrame.new(0, -1.2, -2.2) * CFrame.Angles(math.rad(-88), math.rad(-60), math.rad(45)), 1)
1333
                        if Debounces.on == false then break end
1334
                        wait()
1335
                        end
1336
            Debounces.NoIdl = false
1337
            Debounces.on = false
1338
            wait()
1339
            if Debounces.CanAttack == false then
1340
                Debounces.CanAttack = true
1341
            b:Destroy()
1342
            end
1343
        end
1344
    end
1345
end)
1346
 
1347
----------------------------------------------------
1348
mouse.KeyDown:connect(function(key)
1349
        if key == "g" then
1350
                if Debounces.CanAttack == true then
1351
                        Debounces.CanAttack = false
1352
                        x = Instance.new("Sound")
1353-
                        x.SoundId = "http://www.roblox.com/asset/?id=229845528"
1353+
                        x.SoundId = "http://www.roblox.com/asset/?id=363150145"
1354
                        x.Parent = game.Workspace
1355
                        x.Looped = false
1356
                        x.Pitch = 1
1357
                        x.Volume = 1
1358
                        wait(.01)
1359
                        x:Play()
1360
                        wait(6)
1361
                        x:Destroy()
1362
                        if Debounces.CanAttack == false then
1363
                                Debounces.CanAttack = true
1364
                        end
1365
                end
1366
        end
1367
end)
1368
----------------------------------------------------
1369
mouse.KeyDown:connect(function(key)
1370
    if key == "t" then
1371
        if Debounces.CanAttack == true then
1372
            Debounces.CanAttack = false
1373
                            Debounces.NoIdl = true
1374
                                Debounces.on = true
1375
        for i = 1, 20 do
1376
            hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(20),math.rad(0),0)
1377
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0)*CFrame.Angles(math.rad(30), math.rad(0), 0), 0.1)
1378
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-.5)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(-40)), 0.1)
1379
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(40)), 0.1)
1380
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
1381
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
1382
                    if Debounces.on == false then break end
1383
                    wait()
1384
            end
1385
            wait(1)
1386
        for i = 1, 20 do
1387
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, .5, 0) * CFrame.Angles(math.rad(120), 0, math.rad(-100)), 0.2)
1388
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, .5, 0) * CFrame.Angles(math.rad(120), 0, math.rad(100)), 0.2)
1389
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-20)), 0.2)
1390
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(20)), 0.2)
1391
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(35), math.rad(0), 0), 0.2)
1392
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)), 0.2)
1393
                        if Debounces.on == false then break end
1394
        for i,v in pairs(char.Scythe2:children()) do
1395
    if v:IsA("Part") then
1396
        v.Transparency = 0
1397
    cor3.Transparency = 1
1398
                        end
1399
                        end
1400
                        wait()
1401
                    end
1402
            Debounces.NoIdl = false
1403
            Debounces.on = false
1404
            wait()
1405
            if Debounces.CanAttack == false then
1406
                Debounces.CanAttack = true
1407
                        end
1408
                end
1409
        end
1410
end)
1411
----------------------------------------------------
1412
mouse.KeyDown:connect(function(key)
1413
    if key == "y" then
1414
        if Debounces.CanAttack == true then
1415
            Debounces.CanAttack = false
1416
                            Debounces.NoIdl = true
1417
                                Debounces.on = true
1418
        for i = 1, 20 do
1419
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, .5, 0) * CFrame.Angles(math.rad(120), 0, math.rad(-100)), 0.2)
1420
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, .5, 0) * CFrame.Angles(math.rad(120), 0, math.rad(100)), 0.2)
1421
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-20)), 0.2)
1422
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(20)), 0.2)
1423
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(35), math.rad(0), 0), 0.2)
1424
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)), 0.2)
1425
            wait()
1426
            end
1427
            wait(1)
1428
        for i = 1, 20 do
1429
            hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(20),math.rad(0),0)
1430
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0)*CFrame.Angles(math.rad(30), math.rad(0), 0), 0.1)
1431
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-.5)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(-40)), 0.1)
1432
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(40)), 0.1)
1433
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
1434
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
1435
                    if Debounces.on == false then break end
1436
        for i,v in pairs(char.Scythe2:children()) do
1437
    if v:IsA("Part") then
1438
        v.Transparency = 1
1439
    cor3.Transparency = 1
1440
                        end
1441
                        end
1442
                        wait()
1443
                    end
1444
            Debounces.NoIdl = false
1445
            Debounces.on = false
1446
            wait()
1447
            if Debounces.CanAttack == false then
1448
                Debounces.CanAttack = true
1449
                        end
1450
                end
1451
        end
1452
end)
1453
----------------------------------------------------
1454
mouse.KeyDown:connect(function(key)
1455
    if key == "x" then
1456
char.Humanoid.MaxHealth = math.huge
1457
lite.Brightness = 0
1458
--[[                b = Instance.new("Sound")
1459
                    b.SoundId = "http://www.roblox.com/asset/?id=241240589"
1460
                    b.Parent = char.Head
1461
                    b.Looped = true
1462
                    b.Pitch = 1
1463
                    b.Volume = 1
1464
                    wait(.1)
1465
                    b:Play()]]
1466
                for i = 1, 20 do
1467
                wait()
1468
        char.Reaper.Handle.Transparency = char.Reaper.Handle.Transparency + 0.05
1469
        rarm.Transparency = rarm.Transparency + 0.05
1470
        larm.Transparency = larm.Transparency + 0.05
1471
        rleg.Transparency = rleg.Transparency + 0.05
1472
        lleg.Transparency = lleg.Transparency + 0.05
1473
        torso.Transparency = torso.Transparency + 0.05
1474
        hed.Transparency = hed.Transparency + 0.05
1475
                for i,v in pairs(char.Scythe:children()) do
1476
    if v:IsA("Part") then
1477
        v.Transparency = v.Transparency + 0.05
1478
                        end
1479
                    end
1480
                for i,v in pairs(char.Scythe2:children()) do
1481
    if v:IsA("Part") then
1482
        v.Transparency = v.Transparency + 0.05
1483
                        end
1484
                        end
1485
        for i,v in pairs(char.Wings:children()) do
1486
    if v:IsA("Part") then
1487
        v.Transparency = v.Transparency + 0.05
1488
                                end
1489
                        end
1490
        end
1491
--char.Parent = game.Workspace.Camera
1492
char.Humanoid.WalkSpeed = 40
1493
--z:Stop()
1494
--v:Stop()
1495
        end
1496
end)
1497
----------------------------------------------------
1498
mouse.KeyUp:connect(function(key)
1499
        if key == "x" then
1500
char.Humanoid.MaxHealth = 50000
1501
--[[                b = Instance.new("Sound")
1502
                    b.SoundId = "http://www.roblox.com/asset/?id=155348816"
1503
                    b.Parent = game.Workspace.TheDarkRevenant.Head
1504
                    b.Looped = false
1505
                    b.Pitch = 1
1506
                    b.Volume = 1
1507
                    wait(.1)
1508
                    b:Play()]]
1509
                char.Humanoid.WalkSpeed = 5
1510
                for i = 1, 10 do
1511
                wait()
1512
                char.Reaper.Handle.Transparency = char.Reaper.Handle.Transparency - 0.1
1513
                rarm.Transparency = rarm.Transparency - 0.1
1514
                larm.Transparency = larm.Transparency - 0.1
1515
                rleg.Transparency = rleg.Transparency - 0.1
1516
                lleg.Transparency = lleg.Transparency - 0.1
1517
                torso.Transparency = torso.Transparency - 0.1
1518
                for i,v in pairs(char.Scythe:children()) do
1519
    if v:IsA("Part") then
1520
        v.Transparency = v.Transparency - 0.1
1521
                        end
1522
                    end
1523
                for i,v in pairs(char.Scythe2:children()) do
1524
    if v:IsA("Part") then
1525
        v.Transparency = v.Transparency - 0.1
1526
                        end
1527
                        end
1528
                for i,v in pairs(char.Wings:children()) do
1529
    if v:IsA("Part") then
1530
        v.Transparency = v.Transparency - 0.1
1531
                        end
1532
                        end
1533
                end
1534
--b:Stop()
1535
--char.Parent = game.Workspace
1536
lite.Brightness = 10
1537
        end
1538
end)
1539
----------------------------------------------------
1540
local PressingMouse=false
1541
mouse.Button1Up:connect(function()
1542
    PressingMouse=false
1543
end)
1544
----------------------------------------------------
1545
mouse.Button1Down:connect(function()
1546
PressingMouse=true
1547
        if Debounces.CanAttack == true then
1548
                Debounces.CanAttack = false
1549
                Debounces.NoIdl = true
1550
                Debounces.on = true
1551
                for i = 1, 20 do
1552
            hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-4),math.rad(38),0)
1553
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.2*math.cos(sine/14), 0)*CFrame.Angles(math.rad(0), math.rad(-44), 0), 0.05)
1554
                        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20+1*math.cos(sine/14))), 0.3)
1555
                        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-20-1*math.cos(sine/14))), 0.3)
1556
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-8)), 0.6)
1557
                        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(8)), 0.6)
1558
                        if Debounces.on == false then break end
1559
                        wait()
1560
                end
1561
                    local targ=false
1562
                if mouse.Target and mouse.Target.Parent:FindFirstChild("Humanoid") then
1563
                        targ = mouse.Target.Parent
1564
        end
1565
            if targ and targ:FindFirstChild("Torso") then
1566
               
1567
                    --pulling the player towards you:
1568
                local TargetT = targ:FindFirstChild("Torso")
1569
                local TargetH = targ:FindFirstChild("Humanoid")
1570
                local weld = weld(char["Torso"],TargetT)
1571
                local start = weld.C0
1572
                for i = 1, 25 do wait()
1573
                    weld.C0 = matrixInterpolate(start,CFrame.new(-2.2,.4,-2)*CFrame.Angles(0,math.rad(60),0),i/25)
1574
            end
1575
                local Grabbing = true
1576
                local hum = targ:FindFirstChild("Humanoid")
1577
                hum.Changed:connect(function()
1578
                    if Grabbing then
1579
                        wait()
1580
                        hum.PlatformStand = true
1581
                        hum.Jump=false --yolo
1582
                    end
1583
            end)
1584
       
1585
            --grabing anim
1586
            for i = 1, 20 do
1587
            hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(4),math.rad(44),0)
1588
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.2*math.cos(sine/14), 0)*CFrame.Angles(math.rad(0), math.rad(-44), 0), 0.05)
1589
                        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,-.6)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-10+1*math.cos(sine/14))), 0.3)
1590
                        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-20-1*math.cos(sine/14))), 0.3)
1591
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-8)), 0.6)
1592
                        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(8)), 0.6)
1593
            cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(.6, -.6, -1.8)*CFrame.Angles(math.rad(10), math.rad(-16), math.rad(80)), 0.3)
1594
                        if Debounces.on == false then break end
1595
                        wait()
1596
            end
1597
            ------------
1598
            repeat wait()
1599
            until not PressingMouse
1600
            --throwing player:
1601
            local a = 0
1602
            local ang=0
1603
            for i = 1,25 do wait()
1604
               a = a+1/25
1605
               ang = ang+a
1606
               
1607
            end
1608
           
1609
            Grabbing=false
1610
            weld:Destroy()
1611
            Debounces.Slashing = false
1612
                    Debounces.NoIdl = false
1613
                    wait()
1614
                    if Debounces.CanAttack == false then
1615
                            Debounces.CanAttack = true
1616
                        end
1617
            else
1618
                Debounces.NoIdl = false
1619
                wait()
1620
                if Debounces.CanAttack == false then
1621
                        Debounces.CanAttack = true
1622
                end
1623
        end
1624
        end
1625
end)
1626
----------------------------------------------------
1627
mouse.KeyDown:connect(function(key)
1628
        if key == "e" then
1629
                for i,v in pairs(game.Players:getPlayers()) do
1630
                    if v.Name~=char.Name then
1631
                for j,k in pairs(v.Character:GetChildren()) do
1632
                    if k:IsA("BasePart") and k.Transparency <= 1 then
1633
                bawx=Instance.new("SelectionBox",cam)
1634
                bawx.Color = BrickColor.new("Bright red")
1635
                bawx.Transparency = .5
1636
                bawx.Adornee = k
1637
                    end
1638
                end
1639
            end
1640
            end
1641
    end
1642
end)
1643
----------------------------------------------------
1644
mouse.KeyUp:connect(function(key)
1645
    if key == "e" then
1646
            for i, v in pairs(cam:children()) do
1647
            if v:IsA("SelectionBox") then
1648
                v:Destroy()
1649
            end
1650
        end
1651
    end
1652
end)
1653
----------------------------------------------------
1654
--[[mouse.KeyDown:connect(function(key)
1655
        if key == "c" then
1656
                if Debounces.CanAttack == true then
1657
                        Debounces.CanAttack = false
1658
                       
1659
                        l.TimeOfDay = 24
1660
                        l.Ambient = Color3.new(0.2, 0.2, 0.2)
1661
                        l.OutdoorAmbient = Color3.new(0.2, 0.2, 0.2)
1662
                else do
1663
                    l.TimeOfDay = 12
1664
                    l.Ambient = Color3.new(0, 0, 0)
1665
                    l.OutdoorAmbient = Color3.new(0, 0, 0)
1666
                    end
1667
        end
1668
    end
1669
end)]]--
1670
----------------------------------------------------
1671
mouse.KeyDown:connect(function(key)
1672
    if key == "z" then
1673
        stanceToggle = "Landed"
1674
    elseif key == "c" then
1675
        stanceToggle = "Floating"
1676
    elseif key == "v" then
1677
        stanceToggle = "Sitting"
1678
    end
1679
end)
1680
----------------------------------------------------
1681
game:GetService("RunService").RenderStepped:connect(function()
1682
--[[if char.Humanoid.Jump == true then
1683
jumpn = true
1684
else
1685
jumpn = false
1686
end]]
1687
        char.Humanoid.FreeFalling:connect(function(f)
1688
                if f then
1689
                        ffing = true
1690
                else
1691
                        ffing = false
1692
                end
1693
        end)
1694
        sine = sine + change
1695
        if jumpn == true then
1696
                animpose = "Jumping"
1697
        elseif ffing == true then
1698
                animpose = "Freefalling"
1699
        elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
1700
                animpose = "Idle"
1701
        elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
1702
                animpose = "Walking"
1703
        elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
1704
                animpose = "Running"
1705
        end
1706
        if animpose ~= lastanimpose then
1707
                sine = 0
1708
                if Debounces.NoIdl == false then
1709
                    if stanceToggle == "Floating" then
1710
                        change = 1
1711
                                larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-10)), 0.6)
1712
                                rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
1713
                                lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-8)), 0.6)
1714
                                rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(8)), 0.6)
1715
                cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(0, -2.2, -1.8)*CFrame.Angles(math.rad(-28), math.rad(0), math.rad(0)), 0.6)
1716
                cor3.Weld.C0 = Lerp(cor3.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-36), math.rad(-90), math.rad(40)), 0.6)
1717
                    end
1718
        elseif stanceToggle == "Landed" then
1719
            change = 1
1720
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
1721
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
1722
        elseif stanceToggle == "Sitting" then
1723
            change = 1
1724
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
1725
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
1726
                                wait()
1727
                end
1728
                else
1729
end
1730
        lastanimpose = animpose
1731
        if Debounces.NoIdl == false then
1732
                if animpose == "Idle" then
1733
                    if stanceToggle == "Floating" then
1734
                        change = 0.5
1735
                        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.14*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.05)
1736
                        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30+1*math.cos(sine/14))), 0.3)
1737
                        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.05*math.cos(sine/14),0)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(-10-1.5*math.cos(sine/14))), 0.3)
1738
                        hed.Weld.C0 = CFrame.new(0,1.5,-.3)*CFrame.Angles(math.rad(-20+2*math.cos(sine/14)),math.rad(0),0)
1739
                        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-8-1.5*math.cos(sine/14))), 0.3)
1740
                        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(8+1.5*math.cos(sine/14))), 0.3)
1741
                        cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(0, -2.2, -1.8) * CFrame.Angles(math.rad(-28), math.rad(0), math.rad(0)), 0.3)
1742
                        elseif stanceToggle ==  "Landed" then
1743
                        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.05*math.cos(sine/14),0)*CFrame.Angles(math.rad(16),math.rad(12),math.rad(10+2*math.cos(sine/14))), 0.2)
1744
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.05*math.cos(sine/14),.2)*CFrame.Angles(math.rad(20),math.rad(22),math.rad(-16-2*math.cos(sine/14))), 0.2)
1745
            hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-10+2*math.cos(sine/14)),math.rad(36),0)
1746
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-36), math.rad(0)), 0.2)
1747
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.7, -1, -0.3) * CFrame.Angles(math.rad(30), math.rad(30), math.rad(-30)), 0.2)
1748
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
1749
            cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(1.6, -1.4, -1.4) * CFrame.Angles(math.rad(-60), math.rad(-60), math.rad(0)), 0.6)
1750
            cor3.Weld.C0 = Lerp(cor3.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-36), math.rad(-90), math.rad(40)), 0.6)
1751
            elseif stanceToggle == "Sitting" then
1752
                        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(85-1*math.cos(sine/14)),math.rad(0),math.rad(12)), 0.2)
1753
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-25-1*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
1754
            hed.Weld.C0 = CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-24+2*math.cos(sine/14)),math.rad(0),0)
1755
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-26+1*math.cos(sine/14)), math.rad(0), math.rad(0)), 0.2)
1756
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1.2, -.5) * CFrame.Angles(math.rad(-40-1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
1757
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.2, -1) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
1758
            end
1759
                elseif animpose == "Walking" then
1760
                    if stanceToggle == "Landed" then
1761
                    change = 0.5
1762
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0)*CFrame.Angles(math.sin(sine/8)/2.8, math.rad(14), math.rad(-10-2*math.cos(sine/14))), 1)
1763
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(-math.sin(sine/8)/2.8, math.rad(-14), math.rad(10)), 1)
1764
            hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-8), 0, 0)
1765
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(-math.sin(sine/8)/2.4, 0, 0), 1)
1766
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.sin(sine/8)/2.4, 0, 0), 1)
1767
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.2)
1768
            cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(1.6, -1.4, -1.4) * CFrame.Angles(math.rad(-60), math.rad(-60), math.rad(0)), 0.6)
1769
            elseif stanceToggle == "Sitting" then stanceToggle = "Landed"
1770
                    elseif stanceToggle == "Floating" then
1771
                        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20), 0, 0), 0.6)
1772
                        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90), 0, math.rad(30+2*math.cos(sine/14))), 0.4)
1773
                        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(15+10*math.cos(sine/16)), 0, 0), 0.4)
1774
                        hed.Weld.C0 = CFrame.new(0,1.5,-.3)*CFrame.Angles(math.rad(-18+2*math.cos(sine/20)),math.rad(0),0)
1775
                        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(13+4*math.cos(sine/16)), 0, 0), 0.4)
1776
                        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(15+10*math.cos(sine/16)), 0, 0), 0.4)
1777
                        cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(0, -2.2, -1.8) * CFrame.Angles(math.rad(-28), math.rad(0), math.rad(0)), 0.6)
1778
                    end
1779
                end
1780
            end
1781
    end)
1782
 
1783
while wait() do
1784
        wait(5)
1785
        ypcall(function()me=workspace.TheDarkRevenant
1786
                local bk=me["B&W"].Handle.Mesh bk.VertexColor=Vector3.new(0,0,0)
1787
                pl=Instance.new("PointLight",bk.Parent)pl.Brightness=0 pl.Color=Color3.new(0,0,0)
1788
                for i=1,100 do
1789
                        wait()
1790
                        bk.VertexColor=bk.VertexColor+Vector3.new(.01,.01,.01)
1791
                        pl.Brightness=pl.Brightness+0.01
1792
                end
1793
                for i=1,100 do
1794
                        wait()
1795
                        bk.VertexColor=bk.VertexColor-Vector3.new(.01,.01,.01)
1796
                        pl.Brightness=pl.Brightness-0.01
1797
                end
1798
                pl:Remove()
1799
        end)
1800
end
1801
 
1802
Spawn(function()
1803
        while wait() do
1804
               
1805
                updateFly()
1806
               
1807
        end
1808
end)
1809
 
1810
char.Humanoid.MaxHealth = 50000
1811
wait(2.4)
1812
char.Humanoid.Health = 50000
1813
--[[snds = {"166118364", "166118419", "166118501", "166118551", "167060296", "167060276", "131300621"}
1814
coroutine.wrap(function() while wait(math.random(10,30)) do
1815
sawnd=Instance.new("Sound")
1816
sawnd.Parent = game.Workspace
1817
sawnd.Volume=.6
1818
sawnd.Looped=false
1819
sawnd.Pitch=1
1820
sawnd.SoundId="http://www.roblox.com/asset/?id="..snds[math.random(1,#snds)]
1821
sawnd:Play()
1822
game:service'Debris':AddItem(sawnd,2.2)
1823
end
1824
end)()]]
1825
 
1826
 
1827
 
1828
--Left wing: Part8, Part1,    Part2
1829
--Right wing: Part9, Part 7,    Part 12
1830
 
1831
--[[
1832
z = Instance.new("Sound")
1833
z.SoundId = "http://www.roblox.com/asset/?id=229845528"
1834
z.Parent = game.Workspace.Heaysillydilly
1835
z.Looped = true
1836
z.Pitch = 1
1837
z.Volume = 1
1838
wait(.01)
1839
z:Play()
1840
]]--