View difference between Paste ID: e8RxF59E and g7t4HRju
SHOW: | | - or go back to the newest paste.
1
 if game:GetService("RunService"):IsClient() then error("Please run as a server script. Use h/ instead of hl/.") end
2
print("FE Compatibility: by WaverlyCole & Mokiros")
3
InternalData = {}
4
do
5
	script.Parent = owner.Character
6
	local Event = Instance.new("RemoteEvent")
7
	Event.Name = "UserInput"
8
	local function NewFakeEvent()
9
		local Fake = {fakeEvent=true,Connect=function(self,Func)self.Function=Func end}Fake.connect = Fake.Connect
10
		return Fake
11
	end
12
	local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
13
	local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
14
	local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
15
		self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
16
	end};ContextActionService.UnBindAction = ContextActionService.BindAction
17
	local function TriggerEvent(self,Event,...)
18
		local Trigger = Mouse[Event]
19
		if Trigger and Trigger.fakeEvent and Trigger.Function then
20
			Trigger.Function(...)
21
		end
22
	end
23
	Mouse.TrigEvent = TriggerEvent
24
	UserInputService.TrigEvent = TriggerEvent
25
	Event.OnServerEvent:Connect(function(FiredBy,Input)
26
		if FiredBy.Name ~= owner.Name then end
27
		if Input.MouseEvent then
28
			Mouse.Target = Input.Target
29
			Mouse.Hit = Input.Hit
30
		else
31
			local Begin = Input.UserInputState == Enum.UserInputState.Begin
32
			if Input.UserInputType == Enum.UserInputType.MouseButton1 then
33
				return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up")
34
			end
35
			for _,Action in pairs(ContextActionService.Actions) do
36
				for _,Key in pairs(Action.Keys) do
37
					if Key==Input.KeyCode then
38
						Action.Function(Action.Name,Input.UserInputState,Input)
39
					end
40
				end
41
			end
42
			Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
43
			UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
44
		end
45
	end)
46
	InternalData["Mouse"] = Mouse
47
	InternalData["ContextActionService"] = ContextActionService
48
	InternalData["UserInputService"] = UserInputService
49
	Event.Parent = NLS([[
50
		local Player = owner
51
		local Event = script:WaitForChild("UserInput")
52
		local UserInputService = game:GetService("UserInputService")
53
		local Mouse = Player:GetMouse()
54
		local Input = function(Input,gameProcessedEvent)
55
			if gameProcessedEvent then return end
56
			Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
57
		end
58
		UserInputService.InputBegan:Connect(Input)
59
		UserInputService.InputEnded:Connect(Input)
60
		local Hit,Target
61
		while wait(1/30) do
62
			if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
63
				Hit,Target = Mouse.Hit,Mouse.Target
64
				Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
65
			end
66
		end
67
	]],owner.Character)
68
end
69
RealGame = game;game = setmetatable({},{
70
	__index = function (self,Index)
71
		local Sandbox = function (Thing)
72
			if Thing:IsA("Player") then
73
				local RealPlayer = Thing
74
				return setmetatable({},{
75
					__index = function (self,Index)
76
						local Type = type(RealPlayer[Index])
77
						if Type == "function" then
78
							if Index:lower() == "getmouse" or Index:lower() == "mouse" then
79
								return function (self)
80
									return InternalData["Mouse"]
81
								end
82
							end
83
							return function (self,...)
84
								return RealPlayer[Index](RealPlayer,...)
85
							end
86
						else
87
							if Index == "PlrObj" then
88
								return RealPlayer
89
							end
90
							return RealPlayer[Index]
91
						end
92
					end;
93
					__tostring = function(self)
94
						return RealPlayer.Name
95
					end
96
				})
97
			end
98
		end
99
		if RealGame[Index] then
100
			local Type = type(RealGame[Index])
101
			if Type == "function" then
102
				if Index:lower() == "getservice" or Index:lower() == "service" then
103
					return function (self,Service)
104
						if Service:lower() == "players" then
105
							return setmetatable({},{
106
								__index = function (self2,Index2)
107
									local RealService = RealGame:GetService(Service)
108
									local Type2 = type(Index2)
109
									if Type2 == "function" then
110
										return function (self,...)
111
											return RealService[Index2](RealService,...)
112
										end
113
									else
114
										if Index2:lower() == "localplayer" then
115
											return Sandbox(owner)
116
										end
117
										return RealService[Index2]
118
									end
119
								end;
120
								__tostring = function(self)
121
									return RealGame:GetService(Service).Name
122
								end
123
							})
124
						elseif Service:lower() == "contextactionservice" then
125
							return InternalData["ContextActionService"]
126
						elseif Service:lower() == "contextactionservice" then
127
							return InternalData["UserInputService"]
128
						elseif Service:lower() == "runservice" then
129
							return setmetatable({},{
130
								__index = function(self2,Index2)
131
									local RealService = RealGame:GetService(Service)
132
									local Type2 = type(Index2)
133
									if Type2 == "function" then
134
										return function (self,...)
135
											return RealService[Index2](RealService,...)
136
										end
137
									else
138
										if Index2:lower() == "bindtorenderstep" then
139
											return function (self,Name,Priority,Function)
140
												return RealGame:GetService("RunService").Stepped:Connect(Function)
141
											end
142
										end
143
										if Index2:lower() == "renderstepped" then
144
											return RealService["Stepped"]
145
										end
146
										return RealService[Index2]
147
									end
148
								end
149
							})
150
						else
151
							return RealGame:GetService(Service)
152
						end
153
					end
154
				end
155
				return function (self,...)
156
					return RealGame[Index](RealGame,...)
157
				end
158
			else
159
				if game:GetService(Index) then
160
					return game:GetService(Index)
161
				end
162
				return RealGame[Index]
163
			end
164
		else
165
			return nil
166
		end
167
	end
168
});Game = game;owner = game:GetService("Players").LocalPlayer;script = {}
169
print("Complete! Running...")
170
171
Player=game:GetService("Players").LocalPlayer
172
Character=Player.Character 
173
PlayerGui=Player.PlayerGui
174
Backpack=Player.Backpack 
175
Torso=Character.Torso 
176
Head=Character.Head 
177
Humanoid=Character.Humanoid
178
m=Instance.new('Model',Character)
179
LeftArm=Character["Left Arm"] 
180
LeftLeg=Character["Left Leg"] 
181
RightArm=Character["Right Arm"] 
182
RightLeg=Character["Right Leg"] 
183
LS=Torso["Left Shoulder"] 
184
LH=Torso["Left Hip"] 
185
RS=Torso["Right Shoulder"] 
186
RH=Torso["Right Hip"] 
187
Face = Head.face
188
Neck=Torso.Neck
189
it=Instance.new
190
attacktype=1
191
vt=Vector3.new
192
cf=CFrame.new
193
euler=CFrame.fromEulerAnglesXYZ
194
angles=CFrame.Angles
195
cloaked=false
196
necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
197
necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
198
LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
199
LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
200
RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
201
RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
202
RootPart=Character.HumanoidRootPart
203
RootJoint=RootPart.RootJoint
204
RootCF=euler(-1.57,0,3.14)
205
attack = false 
206
attackdebounce = false 
207
deb=false
208
equipped=true
209
hand=false
210
MMouse=nil
211
combo=0
212
mana=0
213
trispeed=.2
214
attackmode='none'
215
local idle=0
216
local Anim="Idle"
217
local Effects={}
218
local gun=false
219
local shoot=false
220
player=nil 
221
mana=0
222
223
mouse=Player:GetMouse()
224
--save shoulders 
225
RSH, LSH=nil, nil 
226
--welds 
227
RW, LW=Instance.new("Weld"), Instance.new("Weld") 
228
RW.Name="Right Shoulder" LW.Name="Left Shoulder"
229
LH=Torso["Left Hip"]
230
RH=Torso["Right Hip"]
231
TorsoColor=Torso.BrickColor
232
function NoOutline(Part)
233
Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
234
end
235
player=Player 
236
ch=Character
237
RSH=ch.Torso["Right Shoulder"] 
238
LSH=ch.Torso["Left Shoulder"] 
239
-- 
240
RSH.Parent=nil 
241
LSH.Parent=nil 
242
-- 
243
RW.Name="Right Shoulder"
244
RW.Part0=ch.Torso 
245
RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5) 
246
RW.C1=cf(0, 0.5, 0) 
247
RW.Part1=ch["Right Arm"] 
248
RW.Parent=ch.Torso 
249
-- 
250
LW.Name="Left Shoulder"
251
LW.Part0=ch.Torso 
252
LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8) 
253
LW.C1=cf(0, 0.5, 0) 
254
LW.Part1=ch["Left Arm"] 
255
LW.Parent=ch.Torso 
256
257
	Player=game:GetService('Players').LocalPlayer
258
	Character=Player.Character
259
	Mouse=Player:GetMouse()
260
	m=Instance.new('Model',Character)
261
262
263
	local function weldBetween(a, b)
264
	    local weldd = Instance.new("ManualWeld")
265
	    weldd.Part0 = a
266
	    weldd.Part1 = b
267
	    weldd.C0 = CFrame.new()
268
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
269
	    weldd.Parent = a
270
	    return weldd
271
	end
272
	
273
	function swait(num)
274
    if num==0 or num==nil then
275
    game:service'RunService'.Stepped:wait(0)
276
    else
277
    for i=0,num do
278
    game:service'RunService'.Stepped:wait(0)
279
    end
280
    end
281
	    end
282
	
283
	function nooutline(part)
284
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
285
	end
286
	
287
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
288
		local fp=it("Part")
289
		fp.formFactor=formfactor
290
		fp.Parent=parent
291
		fp.Reflectance=reflectance
292
		fp.Transparency=transparency
293
		fp.CanCollide=false
294
		fp.Locked=true
295
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
296
		fp.Name=name
297
		fp.Size=size
298
		fp.Position=Character.Torso.Position
299
		nooutline(fp)
300
		fp.Material=material
301
		fp:BreakJoints()
302
		return fp
303
	end
304
	
305
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
306
		local mesh=it(Mesh)
307
		mesh.Parent=part
308
		if Mesh=="SpecialMesh" then
309
			mesh.MeshType=meshtype
310
			mesh.MeshId=meshid
311
		end
312
		mesh.Offset=offset
313
		mesh.Scale=scale
314
		return mesh
315
	end
316
	
317
	function weld(parent,part0,part1,c0,c1)
318
		local weld=it("Weld")
319
		weld.Parent=parent
320
		weld.Part0=part0
321
		weld.Part1=part1
322
		weld.C0=c0
323
		weld.C1=c1
324
		return weld
325
	end
326
	
327
	
328
local function CFrameFromTopBack(at, top, back)
329
local right = top:Cross(back)
330
return CFrame.new(at.x, at.y, at.z,
331
right.x, top.x, back.x,
332
right.y, top.y, back.y,
333
right.z, top.z, back.z)
334
end
335
336
function Triangle(a, b, c)
337
local edg1 = (c-a):Dot((b-a).unit)
338
local edg2 = (a-b):Dot((c-b).unit)
339
local edg3 = (b-c):Dot((a-c).unit)
340
if edg1 <= (b-a).magnitude and edg1 >= 0 then
341
a, b, c = a, b, c
342
elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
343
a, b, c = b, c, a
344
elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
345
a, b, c = c, a, b
346
else
347
assert(false, "unreachable")
348
end
349
 
350
local len1 = (c-a):Dot((b-a).unit)
351
local len2 = (b-a).magnitude - len1
352
local width = (a + (b-a).unit*len1 - c).magnitude
353
 
354
local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
355
 
356
local list = {}
357
358
local Color = BrickColor.new("Dark grey")
359
 
360
if len1 > 0.01 then
361
local w1 = Instance.new('WedgePart', m)
362
game:GetService("Debris"):AddItem(w1,5)
363
w1.Material = "SmoothPlastic"
364
w1.FormFactor = 'Custom'
365
w1.BrickColor = BrickColor.new(Color)
366
w1.Transparency = 0
367
w1.Reflectance = 0
368
w1.Material = "SmoothPlastic"
369
w1.CanCollide = false
370
NoOutline(w1)
371
local sz = Vector3.new(0.2, width, len1)
372
w1.Size = sz
373
local sp = Instance.new("SpecialMesh",w1)
374
sp.MeshType = "Wedge"
375
sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
376
w1:BreakJoints()
377
w1.Anchored = true
378
w1.Parent = workspace
379
w1.Transparency = 0.7
380
table.insert(Effects,{w1,"Disappear",.01})
381
w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
382
table.insert(list,w1)
383
end
384
 
385
if len2 > 0.01 then
386
local w2 = Instance.new('WedgePart', m)
387
game:GetService("Debris"):AddItem(w2,5)
388
w2.Material = "SmoothPlastic"
389
w2.FormFactor = 'Custom'
390
w2.BrickColor = BrickColor.new(Color)
391
w2.Transparency = 0
392
w2.Reflectance = 0
393
w2.Material = "SmoothPlastic"
394
w2.CanCollide = false
395
NoOutline(w2)
396
local sz = Vector3.new(0.2, width, len2)
397
w2.Size = sz
398
local sp = Instance.new("SpecialMesh",w2)
399
sp.MeshType = "Wedge"
400
sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
401
w2:BreakJoints()
402
w2.Anchored = true
403
w2.Parent = workspace
404
w2.Transparency = 0.7
405
table.insert(Effects,{w2,"Disappear",.01})
406
w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
407
table.insert(list,w2)
408
end
409
return unpack(list)
410
end
411
	
412
	
413
so = function(id,par,vol,pit) 
414
coroutine.resume(coroutine.create(function()
415
local sou = Instance.new("Sound",par or workspace)
416
sou.Volume=vol
417
sou.Pitch=pit or 1
418
sou.SoundId=id
419
swait() 
420
sou:play() 
421
game:GetService("Debris"):AddItem(sou,6)
422
end))
423
end
424
 
425
function clerp(a,b,t) 
426
local qa = {QuaternionFromCFrame(a)}
427
local qb = {QuaternionFromCFrame(b)} 
428
local ax, ay, az = a.x, a.y, a.z 
429
local bx, by, bz = b.x, b.y, b.z
430
local _t = 1-t
431
return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t)) 
432
end 
433
 
434
function QuaternionFromCFrame(cf) 
435
local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components() 
436
local trace = m00 + m11 + m22 
437
if trace > 0 then 
438
local s = math.sqrt(1 + trace) 
439
local recip = 0.5/s 
440
return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5 
441
else 
442
local i = 0 
443
if m11 > m00 then
444
i = 1
445
end
446
if m22 > (i == 0 and m00 or m11) then 
447
i = 2 
448
end 
449
if i == 0 then 
450
local s = math.sqrt(m00-m11-m22+1) 
451
local recip = 0.5/s 
452
return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip 
453
elseif i == 1 then 
454
local s = math.sqrt(m11-m22-m00+1) 
455
local recip = 0.5/s 
456
return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip 
457
elseif i == 2 then 
458
local s = math.sqrt(m22-m00-m11+1) 
459
local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip 
460
end 
461
end 
462
end
463
 
464
function QuaternionToCFrame(px, py, pz, x, y, z, w) 
465
local xs, ys, zs = x + x, y + y, z + z 
466
local wx, wy, wz = w*xs, w*ys, w*zs 
467
local xx = x*xs 
468
local xy = x*ys 
469
local xz = x*zs 
470
local yy = y*ys 
471
local yz = y*zs 
472
local zz = z*zs 
473
return CFrame.new(px, py, pz,1-(yy+zz), xy - wz, xz + wy,xy + wz, 1-(xx+zz), yz - wx, xz - wy, yz + wx, 1-(xx+yy)) 
474
end
475
 
476
function QuaternionSlerp(a, b, t) 
477
local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4] 
478
local startInterp, finishInterp; 
479
if cosTheta >= 0.0001 then 
480
if (1 - cosTheta) > 0.0001 then 
481
local theta = math.acos(cosTheta) 
482
local invSinTheta = 1/math.sin(theta) 
483
startInterp = math.sin((1-t)*theta)*invSinTheta 
484
finishInterp = math.sin(t*theta)*invSinTheta  
485
else 
486
startInterp = 1-t 
487
finishInterp = t 
488
end 
489
else 
490
if (1+cosTheta) > 0.0001 then 
491
local theta = math.acos(-cosTheta) 
492
local invSinTheta = 1/math.sin(theta) 
493
startInterp = math.sin((t-1)*theta)*invSinTheta 
494
finishInterp = math.sin(t*theta)*invSinTheta 
495
else 
496
startInterp = t-1 
497
finishInterp = t 
498
end 
499
end 
500
return a[1]*startInterp + b[1]*finishInterp, a[2]*startInterp + b[2]*finishInterp, a[3]*startInterp + b[3]*finishInterp, a[4]*startInterp + b[4]*finishInterp 
501
end
502
503
--Example: Torso.Weld.C0 = clerp(Torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
504
505
506
function rayCast(Pos, Dir, Max, Ignore)  -- Origin Position , Direction, MaxDistance , IgnoreDescendants
507
return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore) 
508
end 
509
510
Damagefunc=function(hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
511
        if hit.Parent==nil then
512
                return
513
        end
514
        h=hit.Parent:FindFirstChild("Humanoid")
515
        for _,v in pairs(hit.Parent:children()) do
516
        if v:IsA("Humanoid") then
517
        h=v
518
        end
519
        end
520
        if hit.Parent.Parent:FindFirstChild("Torso")~=nil then
521
        h=hit.Parent.Parent:FindFirstChild("Humanoid")
522
        end
523
        if hit.Parent.className=="Hat" then
524
        hit=hit.Parent.Parent:findFirstChild("Head")
525
        end
526
        if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then
527
        if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end
528
        --[[                if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then
529
                        return
530
                end]]
531
--                        hs(hit,1.2) 
532
                        c=Instance.new("ObjectValue")
533
                        c.Name="creator"
534
                        c.Value=game:service("Players").LocalPlayer
535
                        c.Parent=h
536
                        game:GetService("Debris"):AddItem(c,.5)
537
                Damage=math.random(minim,maxim)
538
--                h:TakeDamage(Damage)
539
                blocked=false
540
                block=hit.Parent:findFirstChild("Block")
541
                if block~=nil then
542
                print(block.className)
543
                if block.className=="NumberValue" then
544
                if block.Value>0 then
545
                blocked=true
546
                if decreaseblock==nil then
547
                block.Value=block.Value-1
548
                end
549
                end
550
                end
551
                if block.className=="IntValue" then
552
                if block.Value>0 then
553
                blocked=true
554
                if decreaseblock~=nil then
555
                block.Value=block.Value-1
556
                end
557
                end
558
                end
559
                end
560
                if blocked==false then
561
--                h:TakeDamage(Damage)
562
                h.Health=h.Health-Damage
563
                showDamage(hit.Parent,Damage,.5,BrickColor.new("New Yeller"))
564
                else
565
                h.Health=h.Health-(Damage/2)
566
                showDamage(hit.Parent,Damage/2,.5,BrickColor.new("Bright blue"))
567
                end
568
                if Type=="Knockdown" then
569
                hum=hit.Parent.Humanoid
570
hum.PlatformStand=true
571
coroutine.resume(coroutine.create(function(HHumanoid)
572
swait(1)
573
HHumanoid.PlatformStand=false
574
end),hum)
575
                local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
576
--hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
577
local bodvol=Instance.new("BodyVelocity")
578
bodvol.velocity=angle*knockback
579
bodvol.P=5000
580
bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
581
bodvol.Parent=hit
582
rl=Instance.new("BodyAngularVelocity")
583
rl.P=3000
584
rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
585
rl.angularvelocity=Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
586
rl.Parent=hit
587
game:GetService("Debris"):AddItem(bodvol,.5)
588
game:GetService("Debris"):AddItem(rl,.5)
589
                elseif Type=="Normal" then
590
                vp=Instance.new("BodyVelocity")
591
                vp.P=500
592
                vp.maxForce=Vector3.new(math.huge,0,math.huge)
593
--                vp.velocity=Character.Torso.CFrame.lookVector*Knockback
594
                if KnockbackType==1 then
595
                vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
596
                elseif KnockbackType==2 then
597
                vp.velocity=Property.CFrame.lookVector*knockback
598
                end
599
                if knockback>0 then
600
                        vp.Parent=hit.Parent.Torso
601
                end
602
                game:GetService("Debris"):AddItem(vp,.5)
603
                elseif Type=="Up" then
604
                local bodyVelocity=Instance.new("BodyVelocity")
605
                bodyVelocity.velocity=vt(0,60,0)
606
                bodyVelocity.P=5000
607
                bodyVelocity.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
608
                bodyVelocity.Parent=hit
609
                game:GetService("Debris"):AddItem(bodyVelocity,1)
610
                rl=Instance.new("BodyAngularVelocity")
611
                rl.P=3000
612
                rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
613
                rl.angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
614
                rl.Parent=hit
615
                game:GetService("Debris"):AddItem(rl,.5)
616
                elseif Type=="Snare" then
617
                bp=Instance.new("BodyPosition")
618
                bp.P=2000
619
                bp.D=100
620
                bp.maxForce=Vector3.new(math.huge,math.huge,math.huge)
621
                bp.position=hit.Parent.Torso.Position
622
                bp.Parent=hit.Parent.Torso
623
                game:GetService("Debris"):AddItem(bp,1)
624
                elseif Type=="Target" then
625
                if Targetting==false then
626
                ZTarget=hit.Parent.Torso
627
                coroutine.resume(coroutine.create(function(Part) 
628
                so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) 
629
                swait(5)
630
                so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) 
631
                end),ZTarget)
632
                TargHum=ZTarget.Parent:findFirstChild("Humanoid")
633
                targetgui=Instance.new("BillboardGui")
634
                targetgui.Parent=ZTarget
635
                targetgui.Size=UDim2.new(10,100,10,100)
636
                targ=Instance.new("ImageLabel")
637
                targ.Parent=targetgui
638
                targ.BackgroundTransparency=1
639
                targ.Image="rbxassetid://4834067"
640
                targ.Size=UDim2.new(1,0,1,0)
641
                cam.CameraType="Scriptable"
642
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
643
                dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
644
                workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
645
                Targetting=true
646
                RocketTarget=ZTarget
647
                for i=1,Property do
648
                --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do
649
                if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then
650
                swait()
651
                end
652
                --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100)
653
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
654
                dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
655
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0)
656
                end
657
                Targetting=false
658
                RocketTarget=nil
659
                targetgui.Parent=nil
660
                cam.CameraType="Custom"
661
                end
662
                end
663
                        debounce=Instance.new("BoolValue")
664
                        debounce.Name="DebounceHit"
665
                        debounce.Parent=hit.Parent
666
                        debounce.Value=true
667
                        game:GetService("Debris"):AddItem(debounce,Delay)
668
                        c=Instance.new("ObjectValue")
669
                        c.Name="creator"
670
                        c.Value=Player
671
                        c.Parent=h
672
                        game:GetService("Debris"):AddItem(c,.5)
673
                CRIT=false
674
                hitDeb=true
675
                AttackPos=6
676
        end
677
end
678
 
679
showDamage=function(Char,Dealt,du,Color)
680
        m=Instance.new("Model")
681
        m.Name=tostring(Dealt)
682
        h=Instance.new("Humanoid")
683
        h.Health=0
684
        h.MaxHealth=0
685
        h.Parent=m
686
        c=Instance.new("Part")
687
        c.Transparency=0
688
        c.BrickColor=Color
689
        c.Name="Head"
690
        c.TopSurface=0
691
        c.BottomSurface=0
692
        c.formFactor="Plate"
693
        c.Size=Vector3.new(1,.4,1)
694
        ms=Instance.new("CylinderMesh")
695
        ms.Scale=Vector3.new(.8,.8,.8)
696
        if CRIT==true then
697
                ms.Scale=Vector3.new(1,1.25,1)
698
        end
699
        ms.Parent=c
700
        c.Reflectance=0
701
        Instance.new("BodyGyro").Parent=c
702
        c.Parent=m
703
        if Char:findFirstChild("Head")~=nil then
704
        c.CFrame=CFrame.new(Char["Head"].CFrame.p+Vector3.new(0,1.5,0))
705
        elseif Char.Parent:findFirstChild("Head")~=nil then
706
        c.CFrame=CFrame.new(Char.Parent["Head"].CFrame.p+Vector3.new(0,1.5,0))
707
        end
708
        f=Instance.new("BodyPosition")
709
        f.P=2000
710
        f.D=100
711
        f.maxForce=Vector3.new(math.huge,math.huge,math.huge)
712
        f.position=c.Position+Vector3.new(0,3,0)
713
        f.Parent=c
714
        game:GetService("Debris"):AddItem(m,.5+du)
715
        c.CanCollide=false
716
        m.Parent=workspace
717
        c.CanCollide=false
718
end
719
720
Handle=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle",Vector3.new(1.52991915, 0.437119901, 0.393407792))
721
handleweld=weld(m,Character["Right Arm"],Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1),CFrame.new(0.629271507, 0.364027023, -0.03515625, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005))
722
Barrel=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Barrel",Vector3.new(0.437119901, 0.200000003, 0.200000003))
723
Barrelweld=weld(m,Handle,Barrel,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-1.15781593, -6.02580214, -0.00540161133, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
724
mesh("BlockMesh",Barrel,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.546399832, 0.546399891))
725
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.327839881, 0.218561411, 0.655679882))
726
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(0.674293518, -0.25077343, -0.0163497925, 3.09999959e-005, 0.99867487, -0.0514639914, 1.15483971e-013, -0.0514639877, -0.99867487, -1, 3.09589159e-005, -1.59538365e-006))
727
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.673164606, 0.5168944, 1.37037098))
728
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.688463688, 0.764960289, 0.672071636))
729
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.922239304, -0.0157063007, -0.00814819336, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
730
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
731
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really red","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
732
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(0.0218429565, -1.32717657, -1.50214005, 1, 0, 0, 0, -0.998670518, 0.0515479743, 0, -0.0515479706, -0.998670518))
733
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.163919926, 0.163919985, 0.163919985))
734
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.360623717, 0.546400249, 0.672071636))
735
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-1.08684444, -0.670524716, -0.00813293457, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
736
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
737
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.688463688, 0.546400249, 0.672071636))
738
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.922865868, -0.669787288, -0.00814056396, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
739
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
740
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Medium stone grey","Part",Vector3.new(0.426191092, 0.21855998, 0.639287293))
741
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.158159256, -1.64156067, -0.0136642456, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
742
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
743
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Medium stone grey","Part",Vector3.new(0.426191092, 0.21855998, 0.639287293))
744
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.152425766, -1.86255729, -0.0136566162, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
745
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
746
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.437119901, 0.546400249, 0.453511685))
747
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.616119385, -5.14775944, -0.00816345215, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
748
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
749
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.437119901, 1.09280038, 0.453511685))
750
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.616076469, -3.23572612, -0.00816345215, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
751
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
752
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.437119901, 3.3876791, 0.453511685))
753
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-1.04763794, -4.38280678, -0.00813293457, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
754
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
755
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.437119901, 1.0927999, 0.453511685))
756
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.616199493, -4.32815838, -0.00814819336, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
757
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
758
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Medium stone grey","Part",Vector3.new(0.426191092, 0.21855998, 0.639287293))
759
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.14601326, -2.19617081, -0.0136642456, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
760
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
761
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Medium stone grey","Part",Vector3.new(0.426191092, 0.21855998, 0.639287293))
762
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.151603699, -2.30627894, -0.0136566162, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
763
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
764
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Medium stone grey","Part",Vector3.new(0.426191092, 0.21855998, 0.639287293))
765
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.144908905, -2.42245507, -0.0136566162, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
766
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
767
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Medium stone grey","Part",Vector3.new(0.426191092, 0.21855998, 0.639287293))
768
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.146910667, -2.08363485, -0.0136642456, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
769
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
770
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Medium stone grey","Part",Vector3.new(0.426191092, 0.21855998, 0.639287293))
771
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.140681267, -1.97506142, -0.0136642456, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
772
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
773
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.437119901, 0.200000003, 0.453511685))
774
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.506929398, -3.83603525, -0.00816345215, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
775
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.546399832, 1))
776
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.437119901, 0.200000003, 0.453511685))
777
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.506917953, -4.8194356, -0.00815582275, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
778
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.546399832, 1))
779
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.688463688, 1.74848032, 0.672071636))
780
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.928315163, -1.81715894, -0.00814819336, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
781
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
782
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Medium stone grey","Part",Vector3.new(0.426191092, 0.21855998, 0.639287293))
783
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.155520439, -1.54852414, -0.0136566162, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
784
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
785
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Medium stone grey","Part",Vector3.new(0.426191092, 0.21855998, 0.639287293))
786
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.14614296, -1.75318325, -0.0136642456, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
787
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
788
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.535471082, 1.74847984, 0.200000003))
789
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.752339363, -1.81852794, -0.289558411, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
790
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.546399891))
791
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.35515976, 0.200000003, 0.200000003))
792
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-1.19827843, -2.63351822, -0.120140076, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
793
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.546399832, 0.546399891))
794
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.535471082, 1.74847984, 0.200000003))
795
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.750272751, 1.82602382, -0.278686523, 3.70000052e-005, -0.0515360087, -0.998671114, 4.30000036e-005, 0.998671114, -0.0515360087, 1, -4.10360335e-005, 3.91668837e-005))
796
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.546399891))
797
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.35515976, 0.200000003, 0.200000003))
798
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-1.19827175, -2.63358903, 0.0984115601, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
799
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.546399832, 0.546399891))
800
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.426191092, 0.21855998, 0.639287293))
801
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.150168419, -1.44049859, -0.0136642456, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
802
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(3.05983829, 0.655679941, 0.655679882))
803
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(1.16170859, -0.692814827, -0.010887146, 3.09999959e-005, 0.99867487, -0.0514639914, 1.15483971e-013, -0.0514639877, -0.99867487, -1, 3.09589159e-005, -1.59538365e-006))
804
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.426191092, 0.21855998, 0.639287293))
805
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.161856651, -2.53356171, -0.0136642456, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
806
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(3.49695778, 0.218559951, 0.639287293))
807
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-1.68596125, -0.693488121, -0.0137176514, 3.2999993e-005, 0.977953732, 0.208821952, 0, 0.208821952, -0.977953732, -1, 3.22724627e-005, 6.89112312e-006))
808
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.327841341, 0.200000003))
809
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(0.736662388, 0.0726900101, -0.0710296631, 2.90000116e-005, 0.89058131, 0.45482415, 0, 0.45482415, -0.89058131, -1, 2.58268665e-005, 1.31899051e-005))
810
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.546399832, 1, 0.546399951))
811
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.426190972, 1.20207977, 0.200000003))
812
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(0.0109329224, -0.889550328, -1.21264458, 1, 0, 0, 0, -0.998670518, 0.0515479743, 0, -0.0515479706, -0.998670518))
813
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.546399891))
814
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0.5,"Cyan","Part",Vector3.new(0.207631081, 0.200000003, 0.218559965))
815
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(0.0109176636, -1.32551646, -1.49111557, 1, 0, 0, 0, -0.998670518, 0.0515479743, 0, -0.0515479706, -0.998670518))
816
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.546399832, 1))
817
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.218559965))
818
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.147537231, -1.32582402, -1.49114323, 1, 0, 0, 0, -0.998670518, 0.0515479743, 0, -0.0515479706, -0.998670518))
819
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.546399832, 0.546399832, 1))
820
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.426190972, 0.200000003, 0.200000003))
821
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(0.0109176636, -1.32528722, -1.32722473, 1, 0, 0, 0, -0.998670518, 0.0515479743, 0, -0.0515479706, -0.998670518))
822
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.546399832, 0.546399891))
823
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.218559965))
824
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(0.169364929, -1.32592452, -1.49102116, 1, 0, 0, 0, -0.998670518, 0.0515479743, 0, -0.0515479706, -0.998670518))
825
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.546399832, 0.546399832, 1))
826
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.644751012, 0.764959991, 0.200000003))
827
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.721894264, 0.00661528111, 0.289634705, 3.70000052e-005, -0.0515360087, -0.998671114, 4.30000036e-005, 0.998671114, -0.0515360087, 1, -4.10360335e-005, 3.91668837e-005))
828
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.546399891))
829
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.426190972, 0.200000003, 0.200000003))
830
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(0.0109176636, -1.32529283, -1.65517044, 1, 0, 0, 0, -0.998670518, 0.0515479743, 0, -0.0515479706, -0.998670518))
831
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.546399832, 0.546399891))
832
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.644751012, 0.764959991, 0.200000003))
833
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.721923828, 0.00666630268, -0.289558411, 3.70000052e-005, -0.0515360087, -0.998671114, 4.30000036e-005, 0.998671114, -0.0515360087, 1, -4.10360335e-005, 3.91668837e-005))
834
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.546399891))
835
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(3.10355067, 0.21855998, 0.639287293))
836
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-1.9132967, -1.13005733, -0.0137252808, 3.09999959e-005, 0.99867487, -0.0514639914, 1.15483971e-013, -0.0514639877, -0.99867487, -1, 3.09589159e-005, -1.59538365e-006))
837
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.972590864, 0.218559951, 0.639287293))
838
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1.89999973e-005, 0.742548943, 0.669791937, 0, 0.669791937, -0.742548943, -1, -1.41084256e-005, -1.27260428e-005),CFrame.new(-0.542619705, 2.7044816, -0.0136413574, -5.0000006e-005, -0.0514970087, -0.998673141, 0, -0.998673141, 0.0514970087, -1, 2.57485067e-006, 4.99336638e-005))
839
840
HandleWing=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","HandleWing",Vector3.new(0.400000006, 0.400000036, 0.400000006))
841
HandleWingweld=weld(m,Character["Torso"],HandleWing,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00980377197, -0.0303750038, 0.719708443, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
842
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
843
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.30004406, 0.0999250412, 0.89994812, 3.00647334e-005, 1, 4.83130862e-007, -6.15131939e-005, -4.81282768e-007, 1, 1, -3.00644715e-005, 6.15130994e-005))
844
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
845
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.300045013, 0.0999641418, 0.900047302, 3.10006981e-005, -1, -6.15159661e-005, -4.81294194e-007, -6.15159806e-005, 1, -1, -3.100096e-005, -4.83128701e-007))
846
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
847
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.299965858, 0.0999107361, 0.899978638, 3.00647334e-005, 1, 4.83130862e-007, -6.15131939e-005, -4.81282768e-007, 1, 1, -3.00644715e-005, 6.15130994e-005))
848
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
849
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.299968958, 0.0999965668, 0.900039673, 3.10006981e-005, -1, -6.15159661e-005, -4.81294194e-007, -6.15159806e-005, 1, -1, -3.100096e-005, -4.83128701e-007))
850
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
851
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.89996171, 0.100031853, 0.900054932, 3.10006981e-005, -1, -6.15159661e-005, -4.81294194e-007, -6.15159806e-005, 1, -1, -3.100096e-005, -4.83128701e-007))
852
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
853
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.899968386, 0.0999345779, 0.900001526, 3.00647334e-005, 1, 4.83130862e-007, -6.15131939e-005, -4.81282768e-007, 1, 1, -3.00644715e-005, 6.15130994e-005))
854
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
855
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.90003705, 0.0999240875, 0.89994812, 3.00647334e-005, 1, 4.83130862e-007, -6.15131939e-005, -4.81282768e-007, 1, 1, -3.00644715e-005, 6.15130994e-005))
856
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
857
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.900043964, 0.0999336243, 0.899978638, 3.10006981e-005, -1, -6.15159661e-005, -4.81294194e-007, -6.15159806e-005, 1, -1, -3.100096e-005, -4.83128701e-007))
858
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
859
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.29624176, -0.200763702, -0.299974442, 0.707092822, 0.707120776, 1.71967458e-005, -0.707120836, 0.707093, -3.98719785e-005, -4.03540726e-005, 1.60330092e-005, 1))
860
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 0.200000003))
861
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-3.29620361, 0.199222565, -0.299955368, 0.707092822, 0.707120776, 1.71967458e-005, -0.707120836, 0.707093, -3.98719785e-005, -4.03540726e-005, 1.60330092e-005, 1))
862
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(3.80000019, 2.4000001, 0.200000003))
863
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(2.04773331, -2.38196564, 0.299893379, -0.707119763, 0.707093954, -1.65147794e-005, 0.707093894, 0.707119823, 4.05551255e-005, 4.03542872e-005, 1.6999822e-005, -1))
864
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111896510",Vector3.new(0, 0, 0),Vector3.new(1.45599985, 0.835999906, 0.429999948))
865
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
866
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-1.49459839, -1.1664257, -0.299978256, 0.965935767, -0.25878185, 3.45790031e-005, 0.25878188, 0.965935826, -2.56825715e-005, -2.67549985e-005, 3.37561505e-005, 1))
867
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(3.20000005, 1.79999995, 0.200000003))
868
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(2.99463654, -1.96639061, 0.299866676, -0.965935647, 0.258782327, -2.66135248e-005, 0.258782327, 0.965935647, 3.48299654e-005, 3.47204077e-005, 2.67563955e-005, -1))
869
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111896510",Vector3.new(0, 0, 0),Vector3.new(1.85199988, 0.673999965, 0.429999948))
870
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
871
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-1.54775238, -1.28196716, -0.299962044, 0.707121909, -0.707091928, 3.98714074e-005, 0.707091749, 0.707121849, -1.5834381e-005, -1.69976593e-005, 3.93895789e-005, 1))
872
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 0.200000003))
873
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-3.06266022, -0.380847931, -0.299927711, 0.965920448, 0.25883919, 2.68623189e-005, -0.25883919, 0.965920389, -3.38981408e-005, -3.47211098e-005, 2.57898828e-005, 1))
874
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
875
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.06268311, -0.780864716, -0.299971581, 0.965920448, 0.25883919, 2.68623189e-005, -0.25883919, 0.965920389, -3.38981408e-005, -3.47211098e-005, 2.57898828e-005, 1))
876
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(2.60000014, 1.4000001, 0.600000024))
877
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(3.26268768, -1.38084984, 0.299843788, -0.965919197, -0.25884375, -3.48302128e-005, -0.25884375, 0.965919197, 2.66137904e-005, 2.67544292e-005, 3.47223468e-005, -1))
878
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111896510",Vector3.new(0, 0, 0),Vector3.new(1.81599987, 0.921999931, 0.429999948))
879
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 0.200000003))
880
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-1.6946106, -0.866420746, -0.299965858, 0.965935767, -0.25878185, 3.45790031e-005, 0.25878188, 0.965935826, -2.56825715e-005, -2.67549985e-005, 3.37561505e-005, 1))
881
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
882
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.99621582, -0.200775146, -0.299974442, 0.707092822, 0.707120776, 1.71967458e-005, -0.707120836, 0.707093, -3.98719785e-005, -4.03540726e-005, 1.60330092e-005, 1))
883
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(3.20000005, 1.60000002, 0.600000024))
884
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(3.79626465, -0.900665283, 0.299840927, -0.70706749, -0.707146227, -4.05557985e-005, -0.707146227, 0.70706749, 1.65151196e-005, 1.69971609e-005, 4.03561753e-005, -1))
885
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111896510",Vector3.new(0, 0, 0),Vector3.new(1.71599984, 1.26399994, 0.429999948))
886
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 0.200000003))
887
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.49621582, 0.0992202759, -0.299964905, 0.707092822, 0.707120776, 1.71967458e-005, -0.707120836, 0.707093, -3.98719785e-005, -4.03540726e-005, 1.60330092e-005, 1))
888
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Really black","Part",Vector3.new(0.400000006, 0.399999797, 0.400000036))
889
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.200040817, -8.39233398e-005, 0.599999666, -3.09981733e-005, -3.10031937e-005, 1, 1, -3.00642459e-005, 3.09971656e-005, 3.00635911e-005, 1, 3.1004125e-005))
890
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.447999984, 0.265999973, 0.412))
891
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
892
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.699996948, 0.60003376, -0.0999851227, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
893
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(0.399999976, 0.200000003, 0.200000003))
894
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.600028992, 0.899998426, -0.099943161, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
895
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
896
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.699981689, 0.599993467, -0.0999393463, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
897
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Really black","Part",Vector3.new(0.400000006, 0.399999797, 0.400000036))
898
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.200047493, 0.599997044, 6.86645508e-005, -5.39489811e-005, -4.36452538e-005, 1, -4.53297616e-007, 1, 4.36452283e-005, -1, -4.51240339e-007, -5.39489301e-005))
899
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.447999984, 0.610000014, 0.231999993))
900
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 0.200000003))
901
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-1.83633423, -0.870796204, 0.300080299, -0.70706749, -0.707146227, -4.05557985e-005, -0.707146227, 0.70706749, 1.65151196e-005, 1.69971609e-005, 4.03561753e-005, -1))
902
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(0.400000006, 0.800000012, 0.400000006))
903
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-7.62939453e-006, 0.600003004, 4.29153442e-005, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
904
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 0.200000003))
905
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.49460602, -0.766386032, -0.299931526, 0.965935767, -0.25878185, 3.45790031e-005, 0.25878188, 0.965935826, -2.56825715e-005, -2.67549985e-005, 3.37561505e-005, 1))
906
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
907
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.700019836, 2.47955322e-005, -0.100001335, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
908
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(0.400000006, 0.399999797, 0.800000012))
909
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.200040817, -8.39233398e-005, 0.599999666, -3.09981733e-005, -3.10031937e-005, 1, 1, -3.00642459e-005, 3.09971656e-005, 3.00635911e-005, 1, 3.1004125e-005))
910
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.427999973, 0.265999973, 0.575999975))
911
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 0.200000003))
912
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.26269531, -0.480854034, -0.299972534, 0.965920448, 0.25883919, 2.68623189e-005, -0.25883919, 0.965920389, -3.38981408e-005, -3.47211098e-005, 2.57898828e-005, 1))
913
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(0.399999976, 0.200000003, 0.200000003))
914
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.599975586, 0.299989462, -0.0999555588, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
915
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 0.200000003))
916
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-1.84772491, -0.881942749, -0.299947739, 0.707121909, -0.707091928, 3.98714074e-005, 0.707091749, 0.707121849, -1.5834381e-005, -1.69976593e-005, 3.93895789e-005, 1))
917
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
918
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.19461823, -1.16641045, -0.299962044, 0.965935767, -0.25878185, 3.45790031e-005, 0.25878188, 0.965935826, -2.56825715e-005, -2.67549985e-005, 3.37561505e-005, 1))
919
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
920
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-1.56270599, -0.780872345, -0.299994469, 0.965920448, 0.25883919, 2.68623189e-005, -0.25883919, 0.965920389, -3.38981408e-005, -3.47211098e-005, 2.57898828e-005, 1))
921
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(0.399999976, 0.200000003, 0.200000003))
922
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.600036621, 0.300027609, -0.0999889374, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
923
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
924
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.836280823, -1.27070999, 0.300045013, -0.70706749, -0.707146227, -4.05557985e-005, -0.707146227, 0.70706749, 1.65151196e-005, 1.69971609e-005, 4.03561753e-005, -1))
925
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(3.80000019, 2.4000001, 0.200000003))
926
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(2.03636169, -2.37073898, -0.300144196, 0.707092822, 0.707120776, 1.71967458e-005, -0.707120836, 0.707093, -3.98719785e-005, -4.03540726e-005, 1.60330092e-005, 1))
927
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111896510",Vector3.new(0, 0, 0),Vector3.new(1.45599985, 0.835999906, 0.429999948))
928
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
929
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.347717285, -1.28197479, -0.30000782, 0.707121909, -0.707091928, 3.98714074e-005, 0.707091749, 0.707121849, -1.5834381e-005, -1.69976593e-005, 3.93895789e-005, 1))
930
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Really black","Part",Vector3.new(0.400000006, 0.399999797, 0.400000036))
931
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.199988365, 0, -0.600013256, -3.09981733e-005, -3.10031937e-005, 1, 1, -3.00642459e-005, 3.09971656e-005, 3.00635911e-005, 1, 3.1004125e-005))
932
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.447999984, 0.265999973, 0.412))
933
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
934
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-1.79621124, -0.200801849, -0.299977303, 0.707092822, 0.707120776, 1.71967458e-005, -0.707120836, 0.707093, -3.98719785e-005, -4.03540726e-005, 1.60330092e-005, 1))
935
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
936
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.76270294, -0.780849457, -0.299958229, 0.965920448, 0.25883919, 2.68623189e-005, -0.25883919, 0.965920389, -3.38981408e-005, -3.47211098e-005, 2.57898828e-005, 1))
937
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(0.400000006, 0.399999797, 0.800000012))
938
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.199988365, 0, -0.600013256, -3.09981733e-005, -3.10031937e-005, 1, 1, -3.00642459e-005, 3.09971656e-005, 3.00635911e-005, 1, 3.1004125e-005))
939
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.427999973, 0.265999973, 0.575999975))
940
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
941
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.994621277, -1.16645241, -0.2999897, 0.965935767, -0.25878185, 3.45790031e-005, 0.25878188, 0.965935826, -2.56825715e-005, -2.67549985e-005, 3.37561505e-005, 1))
942
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 0.200000003))
943
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-1.04772949, -0.981987, -0.29999733, 0.707121909, -0.707091928, 3.98714074e-005, 0.707091749, 0.707121849, -1.5834381e-005, -1.69976593e-005, 3.93895789e-005, 1))
944
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(3.20000005, 1.79999995, 0.200000003))
945
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(2.97909546, -1.96242332, -0.300165176, 0.965920448, 0.25883919, 2.68623189e-005, -0.25883919, 0.965920389, -3.38981408e-005, -3.47211098e-005, 2.57898828e-005, 1))
946
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111896510",Vector3.new(0, 0, 0),Vector3.new(1.85199988, 0.673999965, 0.429999948))
947
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Really black","Part",Vector3.new(0.400000006, 0.399999797, 0.400000036))
948
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.199979782, -0.600015879, 2.28881836e-005, -5.39489811e-005, -4.36452538e-005, 1, -4.53297616e-007, 1, 4.36452283e-005, -1, -4.51240339e-007, -5.39489301e-005))
949
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.447999984, 0.610000014, 0.231999993))
950
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
951
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.33631897, -1.27073288, 0.300020218, -0.70706749, -0.707146227, -4.05557985e-005, -0.707146227, 0.70706749, 1.65151196e-005, 1.69971609e-005, 4.03561753e-005, -1))
952
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
953
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.847732544, -1.28198242, -0.299990654, 0.707121909, -0.707091928, 3.98714074e-005, 0.707091749, 0.707121849, -1.5834381e-005, -1.69976593e-005, 3.93895789e-005, 1))
954
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(0.399999976, 0.200000003, 0.200000003))
955
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.600006104, 0.900032759, -0.0999727249, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
956
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
957
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-1.47909546, -1.16240501, 0.300043106, -0.965919197, -0.25884375, -3.48302128e-005, -0.25884375, 0.965919197, 2.66137904e-005, 2.67544292e-005, 3.47223468e-005, -1))
958
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
959
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.74719238, -0.785173416, 0.300055504, -0.965935647, 0.258782327, -2.66135248e-005, 0.258782327, 0.965935647, 3.48299654e-005, 3.47204077e-005, 2.67563955e-005, -1))
960
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
961
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.17910004, -1.16242409, 0.300059319, -0.965919197, -0.25884375, -3.48302128e-005, -0.25884375, 0.965919197, 2.66137904e-005, 2.67544292e-005, 3.47223468e-005, -1))
962
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 0.200000003))
963
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.48492432, 0.0878067017, 0.300058365, -0.707119763, 0.707093954, -1.65147794e-005, 0.707093894, 0.707119823, 4.05551255e-005, 4.03542872e-005, 1.6999822e-005, -1))
964
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
965
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.28490829, -0.212181091, 0.300060272, -0.707119763, 0.707093954, -1.65147794e-005, 0.707093894, 0.707119823, 4.05551255e-005, 4.03542872e-005, 1.6999822e-005, -1))
966
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 0.200000003))
967
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-1.03632355, -0.970756531, 0.300042152, -0.70706749, -0.707146227, -4.05557985e-005, -0.707146227, 0.70706749, 1.65151196e-005, 1.69971609e-005, 4.03561753e-005, -1))
968
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 0.200000003))
969
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-1.67910004, -0.862400055, 0.300045013, -0.965919197, -0.25884375, -3.48302128e-005, -0.25884375, 0.965919197, 2.66137904e-005, 2.67544292e-005, 3.47223468e-005, -1))
970
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
971
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.04720306, -0.785137177, 0.300051689, -0.965935647, 0.258782327, -2.66135248e-005, 0.258782327, 0.965935647, 3.48299654e-005, 3.47204077e-005, 2.67563955e-005, -1))
972
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 0.200000003))
973
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-3.04725647, -0.385164261, 0.300086021, -0.965935647, 0.258782327, -2.66135248e-005, 0.258782327, 0.965935647, 3.48299654e-005, 3.47204077e-005, 2.67563955e-005, -1))
974
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
975
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-1.78490829, -0.212181091, 0.300048828, -0.707119763, 0.707093954, -1.65147794e-005, 0.707093894, 0.707119823, 4.05551255e-005, 4.03542872e-005, 1.6999822e-005, -1))
976
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 1.20000005, 0.200000003))
977
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.899940491, -0.700034142, 0.300034523, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
978
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
979
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-1.54719543, -0.785116196, 0.300052643, -0.965935647, 0.258782327, -2.66135248e-005, 0.258782327, 0.965935647, 3.48299654e-005, 3.47204077e-005, 2.67563955e-005, -1))
980
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
981
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-1.53630066, -1.2707634, 0.300060272, -0.70706749, -0.707146227, -4.05557985e-005, -0.707146227, 0.70706749, 1.65151196e-005, 1.69971609e-005, 4.03561753e-005, -1))
982
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 0.200000003))
983
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.47912598, -0.762430191, 0.300069809, -0.965919197, -0.25884375, -3.48302128e-005, -0.25884375, 0.965919197, 2.66137904e-005, 2.67544292e-005, 3.47223468e-005, -1))
984
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
985
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.979110718, -1.16239738, 0.300032616, -0.965919197, -0.25884375, -3.48302128e-005, -0.25884375, 0.965919197, 2.66137904e-005, 2.67544292e-005, 3.47223468e-005, -1))
986
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 0.200000003))
987
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.24720764, -0.485141754, 0.300046921, -0.965935647, 0.258782327, -2.66135248e-005, 0.258782327, 0.965935647, 3.48299654e-005, 3.47204077e-005, 2.67563955e-005, -1))
988
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 2, 0.200000003))
989
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.300041199, 3.09944153e-006, 0.300023079, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
990
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(0.399999976, 0.200000003, 0.200000003))
991
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.60005188, -0.299981356, -0.0999956131, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
992
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 1.20000005, 0.200000003))
993
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.900032043, -0.69997263, 0.299980164, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
994
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(0.400000006, 0.200000003, 0.200000003))
995
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.599990845, -0.300009489, -0.0999727249, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
996
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000003, 0.200000003))
997
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.692848206, 0.400043488, 0.300006866, -0.866006851, -0.500032246, -3.80353231e-005, -0.500032246, 0.866006851, 2.17553606e-005, 2.20605471e-005, 3.78591722e-005, -1))
998
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 2, 0.200000003))
999
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.299980164, -1.3589859e-005, 0.300039291, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
1000
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
1001
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.700012207, -0.599973202, -0.10001564, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
1002
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(0.400000006, 0.800000012, 0.400000006))
1003
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(1.52587891e-005, -0.599998951, -1.04904175e-005, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
1004
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000003, 0.200000003))
1005
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.692825317, 0.399971008, 0.30005455, -0.866040707, 0.499973506, -2.1754995e-005, 0.499973506, 0.866040707, 3.80348138e-005, 3.78571822e-005, 2.20627644e-005, -1))
1006
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(0.400000006, 0.200000003, 0.200000003))
1007
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.599967957, -0.900018215, -0.099984169, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
1008
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000003, 0.200000003))
1009
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.60004425, 1.12056732e-005, 0.300005913, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
1010
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000003, 0.200000003))
1011
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.599990845, -2.78949738e-005, 0.300059319, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
1012
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 2, 0.400000006))
1013
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.300018311, 7.39097595e-006, 5.7220459e-006, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
1014
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
1015
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.699958801, -1.66893005e-005, -0.0999584198, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
1016
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
1017
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.699996948, -0.600014687, -0.0999603271, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
1018
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(2.60000014, 1.4000001, 0.600000024))
1019
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(3.24715424, -1.38516998, -0.300175667, 0.965935767, -0.25878185, 3.45790031e-005, 0.25878188, 0.965935826, -2.56825715e-005, -2.67549985e-005, 3.37561505e-005, 1))
1020
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111896510",Vector3.new(0, 0, 0),Vector3.new(1.81599987, 0.921999931, 0.429999948))
1021
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(3.20000005, 1.60000002, 0.600000024))
1022
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(3.78491974, -0.912193298, -0.300181389, 0.707121909, -0.707091928, 3.98714074e-005, 0.707091749, 0.707121849, -1.5834381e-005, -1.69976593e-005, 3.93895789e-005, 1))
1023
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111896510",Vector3.new(0, 0, 0),Vector3.new(1.71599984, 1.26399994, 0.429999948))
1024
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"New Yeller","Part",Vector3.new(0.399999976, 0.200000003, 0.200000003))
1025
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(0.600074768, -0.899979115, -0.100029945, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
1026
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 0.200000003))
1027
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-3.28493118, 0.187797546, 0.300078392, -0.707119763, 0.707093954, -1.65147794e-005, 0.707093894, 0.707119823, 4.05551255e-005, 4.03542872e-005, 1.6999822e-005, -1))
1028
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 2, 0.400000006))
1029
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-0.299995422, -9.29832458e-006, 2.19345093e-005, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1))
1030
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
1031
Partweld=weld(m,HandleWing,Part,CFrame.new(0, 0, 0, -1, -3.10001451e-005, -3.09999632e-005, -3.10008145e-005, 1, 3.09999996e-005, 3.09990755e-005, 3.100096e-005, -1),CFrame.new(-2.98490906, -0.212203979, 0.300058365, -0.707119763, 0.707093954, -1.65147794e-005, 0.707093894, 0.707119823, 4.05551255e-005, 4.03542872e-005, 1.6999822e-005, -1))
1032
1033
function part(formfactor,parent,reflectance,transparency,brickcolor,name,size)
1034
local fp = it("Part")
1035
fp.formFactor = formfactor 
1036
fp.Parent = parent
1037
fp.Reflectance = reflectance
1038
fp.Transparency = transparency
1039
fp.CanCollide = false 
1040
fp.Locked=true
1041
fp.BrickColor = brickcolor
1042
fp.Name = name
1043
fp.Size = size
1044
fp.Position = Torso.Position 
1045
NoOutline(fp)
1046
fp.Material="SmoothPlastic"
1047
fp:BreakJoints()
1048
return fp 
1049
end 
1050
1051
function MagicCylinder(brickcolor,cframe,x1,y1,z1,x3,y3,z3,delay)
1052
local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.2,0.2,0.2))
1053
prt.Anchored=true
1054
prt.CFrame=cframe
1055
msh=mesh("SpecialMesh",prt,"Head","",vt(0,0,0),vt(x1,y1,z1))
1056
game:GetService("Debris"):AddItem(prt,2)
1057
coroutine.resume(coroutine.create(function(Part,Mesh) 
1058
for i=0,1,delay do
1059
swait()
1060
Part.CFrame=Part.CFrame
1061
Part.Transparency=i
1062
Mesh.Scale=Mesh.Scale+vt(x3,y3,z3)
1063
end
1064
Part.Parent=nil
1065
end),prt,msh)
1066
end
1067
 
1068
function MagicCircle(brickcolor,cframe,x1,y1,z1,x3,y3,z3,delay)
1069
local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5))
1070
prt.Anchored=true
1071
prt.CFrame=cframe
1072
msh=mesh("SpecialMesh",prt,"Sphere","",vt(0,0,0),vt(x1,y1,z1))
1073
game:GetService("Debris"):AddItem(prt,2)
1074
coroutine.resume(coroutine.create(function(Part,Mesh) 
1075
for i=0,1,delay do
1076
swait()
1077
Part.CFrame=Part.CFrame
1078
Part.Transparency=i
1079
Mesh.Scale=Mesh.Scale+vt(x3,y3,z3)
1080
end
1081
Part.Parent=nil
1082
end),prt,msh)
1083
end
1084
1085
function LaserBarrage(Prt,Parent)
1086
attack=true
1087
--so("BeamLockon",Prt,1,1) 
1088
local efprt=part(3,Parent,0,0.5,BrickColor.new("Really black"),"Effect",vt(0.2,0.2,0.2))
1089
efprt.Anchored=true
1090
local efmsh=mesh("CylinderMesh",efprt,"","",vt(0,0,0),vt(1,1,1))
1091
spread=vt((math.random(-1,0)+math.random())*7,(math.random(-1,0)+math.random())*7,(math.random(-1,0)+math.random())*7)*(Prt.Position-Mouse.Hit.p).magnitude/100
1092
--spread=vt(0,0,0)
1093
coroutine.resume(coroutine.create(function(Part,Mesh,Spreaded) 
1094
game:GetService("Debris"):AddItem(Part,6)
1095
local TheHit=Mouse.Hit.p
1096
local MouseLook=cf((Prt.Position+TheHit)/2,TheHit+Spreaded)
1097
local hit,pos = rayCast(Prt.Position,MouseLook.lookVector,1000,Parent)
1098
so("Elec",Prt,0.2,1) 
1099
local tefprt=part(3,workspace,0,1,BrickColor.new("Black"),"Effect",vt(0.2,0.2,0.2))
1100
tefprt.CFrame=cf(pos)
1101
MagicCircle(BrickColor.new("Really black"),cf(pos),0.5,0.5,0.5,0.5,0.5,0.5,0.04)
1102
so("Elec",tefprt,0.3,1) 
1103
game:GetService("Debris"):AddItem(tefprt,3)
1104
Part.CFrame=CFrame.new((Prt.Position+pos)/2,pos)*angles(1.57,0,0) 
1105
if(hit.Parent:findFirstChild("Humanoid")~= nil)then 
1106
if hit.Parent:FindFirstChild("Humanoid") ~= nil and hit.Name ~= "Base" and hit.Parent.Name ~= Player.Name then 
1107
hit.Parent.Humanoid:TakeDamage(15) 
1108
end 
1109
end 
1110
local mag=(Prt.Position-pos).magnitude 
1111
MagicCylinder(BrickColor.new("Really black"),Part.CFrame,1,mag*5,1,0.5,0,0.5,0.05)
1112
Part.Parent=nil
1113
end),efprt,efmsh,spread)
1114
end
1115
1116
ready = false
1117
1118
function shoot()
1119
        if attack==true and ready==true then
1120
                ready=false
1121
                attack=true
1122
so("http://www.roblox.com/asset/?id=138083993",Barrel,1,1)
1123
for i=0,3,0.3 do
1124
LaserBarrage(Barrel,m)
1125
end
1126
                for i=0,3,0.3 do
1127
                        swait()
1128
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1129
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
1130
RW.C0 = clerp(RW.C0, CFrame.new(1.1, 0.5, 0.2) * angles(math.rad(120), math.rad(0), math.rad(-20)), 0.3)
1131
LW.C0 = clerp(LW.C0, CFrame.new(-0.5, 0.5, -1.2) * angles(math.rad(140), math.rad(0), math.rad(40)), 0.3)
1132
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
1133
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(-10)),.3)
1134
handleweld.C0=clerp(handleweld.C0,cf(-.1,.1,.1)*angles(math.rad(0),math.rad(0),math.rad(20)),.3)
1135
                end
1136
                for i=0,3,0.3 do
1137
	swait()
1138
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1139
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1140
RW.C0 = clerp(RW.C0, CFrame.new(1.3, 0.5, 0.2) * angles(math.rad(90), math.rad(0), math.rad(-20)), 0.3)
1141
LW.C0 = clerp(LW.C0, CFrame.new(-0.5, 0.5, -1.2) * angles(math.rad(90), math.rad(0), math.rad(40)), 0.3)
1142
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
1143
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(-10)),.3)
1144
handleweld.C0=clerp(handleweld.C0,cf(-.1,.1,.1)*angles(math.rad(0),math.rad(0),math.rad(20)),.3)
1145
end
1146
        for i=0,3,0.3 do
1147
	swait()
1148
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1149
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1150
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(80), math.rad(0), math.rad(-10)), 0.3)
1151
LW.C0 = clerp(LW.C0, CFrame.new(-1.3, 0.5, -1) * angles(math.rad(120), math.rad(0), math.rad(-10)), 0.3)
1152
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
1153
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(-0)),.3)
1154
handleweld.C0=clerp(handleweld.C0,cf(1,-1,.5)*angles(math.rad(0),math.rad(-20),math.rad(-70)),.3)
1155
end
1156
so("http://www.roblox.com/asset/?id=131072992",Barrel,1,.8)
1157
  for i=0,3,0.3 do
1158
	swait()
1159
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1160
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1161
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(80), math.rad(0), math.rad(-20)), 0.3)
1162
LW.C0 = clerp(LW.C0, CFrame.new(-1.3, 0.5, -1) * angles(math.rad(120), math.rad(0), math.rad(20)), 0.3)
1163
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
1164
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(-0)),.3)
1165
handleweld.C0=clerp(handleweld.C0,cf(1,-1,.5)*angles(math.rad(0),math.rad(-20),math.rad(-70)),.3)
1166
end
1167
    for i=0,3,0.3 do
1168
	swait()
1169
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1170
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1171
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(80), math.rad(0), math.rad(-10)), 0.3)
1172
LW.C0 = clerp(LW.C0, CFrame.new(-1.3, 0.5, -1) * angles(math.rad(120), math.rad(0), math.rad(-20)), 0.3)
1173
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
1174
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(-0)),.3)
1175
handleweld.C0=clerp(handleweld.C0,cf(1,-1,.5)*angles(math.rad(0),math.rad(-20),math.rad(-70)),.3)
1176
end
1177
1178
1179
                attack=false
1180
        end
1181
end
1182
1183
mouse.Button1Down:connect(function()
1184
pcall(function()
1185
shoot()
1186
end)
1187
end)
1188
1189
mouse.KeyDown:connect(function(k)
1190
        k=k:lower()
1191
        if k=='f' then
1192
                if ready==false then
1193
                        ready=true
1194
                        attack=true
1195
                elseif ready==true then
1196
                        ready=false
1197
                        attack=false
1198
end
1199
end
1200
end)
1201
1202
1203
1204
local sine = 0
1205
local change = 1
1206
local val = 0
1207
1208
while true do
1209
swait()
1210
sine = sine + change
1211
local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude 
1212
local velderp=RootPart.Velocity.y
1213
hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
1214
if equipped==true or equipped==false then
1215
if attack==false then
1216
idle=idle+1
1217
else
1218
idle=0
1219
end
1220
if idle>=500 then
1221
if attack==false then
1222
--Sheath()
1223
end
1224
end
1225
if RootPart.Velocity.y > 1 and hitfloor==nil then 
1226
Anim="Jump"
1227
if attack==false then
1228
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(-5),math.rad(0),math.rad(-15)),.3)
1229
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-5),math.rad(0),math.rad(15)),.3)
1230
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(15)), 0.3)
1231
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.3)
1232
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(20)),.3)
1233
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-75),math.rad(-10)),.3)
1234
handleweld.C0=clerp(handleweld.C0,cf(0,0,-1.5)*angles(math.rad(180),math.rad(0),math.rad(0)),.3)
1235
end
1236
elseif RootPart.Velocity.y < -1 and hitfloor==nil then 
1237
Anim="Fall"
1238
if attack==false then
1239
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(5),math.rad(0),math.rad(-15)),.3)
1240
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(15)),.3)
1241
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(15)), 0.3)
1242
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-30)), 0.3)
1243
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(20)),.3)
1244
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-75),math.rad(-10)),.3)
1245
handleweld.C0=clerp(handleweld.C0,cf(0,0,-1.5)*angles(math.rad(180),math.rad(0),math.rad(0)),.3)
1246
end
1247
elseif torvel<1 and hitfloor~=nil then
1248
Anim="Idle"
1249
if attack==false then
1250
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(5),math.rad(0),math.rad(-15)),.3)
1251
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(15)),.3)
1252
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(10)), 0.3)
1253
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-10)), 0.3)
1254
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
1255
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-75),math.rad(-10)),.3)
1256
handleweld.C0=clerp(handleweld.C0,cf(0,0,-1.5)*angles(math.rad(180),math.rad(0),math.rad(0)),.3)
1257
end
1258
elseif torvel>2 and hitfloor~=nil then
1259
Anim="Walk"
1260
if attack==false then
1261
change=3
1262
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(0)),.3)
1263
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1264
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(40), math.rad(0), math.rad(10)), 0.3)
1265
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-30*math.cos(sine/15)), math.rad(0), math.rad(-10)), 0.3)
1266
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
1267
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.3)
1268
handleweld.C0=clerp(handleweld.C0,cf(0,0,-1.5)*angles(math.rad(180),math.rad(0),math.rad(0)),.3)
1269
end
1270
end
1271
end
1272
if ready==true then
1273
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1274
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1275
RW.C0 = clerp(RW.C0, CFrame.new(1.1, 0.5, 0.2) * angles(math.rad(90), math.rad(0), math.rad(-20)), 0.3)
1276
LW.C0 = clerp(LW.C0, CFrame.new(-0.5, 0.5, -1.2) * angles(math.rad(90), math.rad(0), math.rad(40)), 0.3)
1277
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
1278
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(-10)),.3)
1279
handleweld.C0=clerp(handleweld.C0,cf(-.1,.1,.1)*angles(math.rad(0),math.rad(0),math.rad(20)),.3)
1280
        end
1281
end