Advertisement
CHARA-SCRIPTER

JETPACK

Jan 13th, 2018
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 137.37 KB | None | 0 0
  1. Player=game:GetService("Players").LocalPlayer
  2. Character=Player.Character
  3. PlayerGui=Player.PlayerGui
  4. Backpack=Player.Backpack
  5. Torso=Character.Torso
  6. Head=Character.Head
  7. Humanoid=Character.Humanoid
  8. LeftArm=Character["Left Arm"]
  9. LeftLeg=Character["Left Leg"]
  10. RightArm=Character["Right Arm"]
  11. RightLeg=Character["Right Leg"]
  12. Character=Player.Character
  13. PlayerGui=Player.PlayerGui
  14. Backpack=Player.Backpack
  15. Torso=Character.Torso
  16. Head=Character.Head
  17. Humanoid=Character.Humanoid
  18. LeftArm=Character["Left Arm"]
  19. LeftLeg=Character["Left Leg"]
  20. RightArm=Character["Right Arm"]
  21. RightLeg=Character["Right Leg"]
  22. LS=Torso["Left Shoulder"]
  23. LH=Torso["Left Hip"]
  24. RS=Torso["Right Shoulder"]
  25. RH=Torso["Right Hip"]
  26. Neck=Torso.Neck
  27. attacktype=1
  28. vt=Vector3.new
  29. cf=CFrame.new
  30. euler=CFrame.fromEulerAnglesXYZ
  31. angles=CFrame.Angles
  32. cloaked=false
  33. necko=cf(0,1,0,-1,-0,-0,0,0,1,0,1,0)
  34. necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  35. LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
  36. LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
  37. RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
  38. RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
  39. RootPart=Character.HumanoidRootPart
  40. RootJoint=RootPart.RootJoint
  41. RootCF=euler(-1.57,0,3.14)
  42. attack = false
  43. attackdebounce = false
  44. deb=false
  45. equipped=true
  46. hand=false
  47. MMouse=nil
  48. combo=0
  49. mana=0
  50. trispeed=.2
  51. attackmode='none'
  52. local idle=0
  53. local Anim="Idle"
  54. local Effects={}
  55. local gun=false
  56. local shoot=false
  57. player=nil
  58. mana=0
  59. cam = workspace.CurrentCamera
  60. ZTarget = nil
  61. RocketTarget = nil
  62. local RbxUtility = LoadLibrary("RbxUtility")
  63. local Create = RbxUtility.Create
  64. local m = Create("Model"){
  65. Name = "WeaponModel",
  66. Parent = Character,
  67. }
  68. mouse=Player:GetMouse()
  69. --save shoulders
  70. RSH, LSH=nil, nil
  71. LH=Torso["Left Hip"]
  72. RH=Torso["Right Hip"]
  73. TorsoColor=Torso.BrickColor
  74. function NoOutline(Part)
  75. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  76. end
  77. player=Player
  78. ch=Character
  79. RSH=ch.Torso["Right Shoulder"]
  80. LSH=ch.Torso["Left Shoulder"]
  81. --
  82. RSH.Parent=nil
  83. LSH.Parent=nil
  84. --
  85. RW=Create("Weld"){
  86. Name="Right Shoulder",
  87. Part0=ch.Torso ,
  88. C0=cf(1.5, 0.5, 0),
  89. C1=cf(0, 0.5, 0),
  90. Part1=ch["Right Arm"] ,
  91. Parent=ch.Torso ,
  92. }
  93. --
  94. LW=Create("Weld"){
  95. Name="Left Shoulder",
  96. Part0=ch.Torso ,
  97. C0=cf(-1.5, 0.5, 0),
  98. C1=cf(0, 0.5, 0) ,
  99. Part1=ch["Left Arm"] ,
  100. Parent=ch.Torso ,
  101. }
  102. function swait(num)
  103. if num==0 or num==nil then
  104. game:service'RunService'.Heartbeat:wait(0)
  105. else
  106. for i=0,num do
  107. game:service'RunService'.Heartbeat:wait(0)
  108. end
  109. end
  110. end
  111.  
  112. function nooutline(part)
  113. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  114. end
  115.  
  116. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  117. local fp=Create("Part"){
  118. formFactor=formfactor,
  119. Parent=parent,
  120. Reflectance=reflectance,
  121. Transparency=transparency,
  122. CanCollide=false,
  123. Locked=true,
  124. BrickColor=BrickColor.new(tostring(brickcolor)),
  125. Name=name,
  126. Size=size,
  127. Position=Character.Torso.Position,
  128. Material=material,
  129. }
  130. nooutline(fp)
  131. return fp
  132. end
  133.  
  134. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  135. local Msh=Create(Mesh){
  136. Parent=part,
  137. Offset=offset,
  138. Scale=scale,
  139. }
  140. if Mesh=="SpecialMesh" then
  141. Msh.MeshType=meshtype
  142. Msh.MeshId=meshid
  143. end
  144. return Msh
  145. end
  146.  
  147. function weld(parent,part0,part1,c0,c1)
  148. local Weld=Create("Weld"){
  149. Parent=parent,
  150. Part0=part0,
  151. Part1=part1,
  152. C0=c0,
  153. C1=c1,
  154. }
  155. return Weld
  156. end
  157.  
  158.  
  159. local function CFrameFromTopBack(at, top, back)
  160. local right = top:Cross(back)
  161. return CFrame.new(at.x, at.y, at.z,
  162. right.x, top.x, back.x,
  163. right.y, top.y, back.y,
  164. right.z, top.z, back.z)
  165. end
  166.  
  167. function Triangle(a, b, c)
  168. local edg1 = (c-a):Dot((b-a).unit)
  169. local edg2 = (a-b):Dot((c-b).unit)
  170. local edg3 = (b-c):Dot((a-c).unit)
  171. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  172. a, b, c = a, b, c
  173. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  174. a, b, c = b, c, a
  175. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  176. a, b, c = c, a, b
  177. else
  178. assert(false, "unreachable")
  179. end
  180.  
  181. local len1 = (c-a):Dot((b-a).unit)
  182. local len2 = (b-a).magnitude - len1
  183. local width = (a + (b-a).unit*len1 - c).magnitude
  184.  
  185. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  186.  
  187. local list = {}
  188.  
  189. local Color = BrickColor.new("Crimson")
  190.  
  191. if len1 > 0.01 then
  192. local w1 = Create('WedgePart', m){
  193. Material = "SmoothPlastic",
  194. FormFactor = 'Custom',
  195. BrickColor = Color,
  196. Transparency = 0,
  197. Reflectance = 0,
  198. Material = "Neon",
  199. CanCollide = false,
  200. Anchored = true,
  201. Parent = workspace,
  202. Transparency = 0.3,
  203. }
  204. game:GetService("Debris"):AddItem(w1,5)
  205. NoOutline(w1)
  206. local sz = Vector3.new(0.2, width, len1)
  207. w1.Size = sz
  208. local sp = Create("SpecialMesh"){
  209. Parent = w1,
  210. MeshType = "Wedge",
  211. Scale = Vector3.new(0,1,1) * sz/w1.Size,
  212. }
  213. w1:BreakJoints()
  214. table.insert(Effects,{w1,"Disappear",.03})
  215. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  216. table.insert(list,w1)
  217. end
  218. if len2 > 0.01 then
  219. local w2 = Create('WedgePart', m){
  220. Material = "SmoothPlastic",
  221. FormFactor = 'Custom',
  222. BrickColor = Color,
  223. Transparency = 0,
  224. Reflectance = 0,
  225. Material = "Neon",
  226. CanCollide = false,
  227. Anchored = true,
  228. Parent = workspace,
  229. Transparency = 0.3,
  230. }
  231. game:GetService("Debris"):AddItem(w2,5)
  232. NoOutline(w2)
  233. local sz = Vector3.new(0.2, width, len2)
  234. w2.Size = sz
  235. local sp = Create("SpecialMesh"){
  236. Parent = w2,
  237. MeshType = "Wedge",
  238. Scale = Vector3.new(0,1,1) * sz/w2.Size,
  239. }
  240. w2:BreakJoints()
  241. table.insert(Effects,{w2,"Disappear",.03})
  242. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  243. table.insert(list,w2)
  244. end
  245. return unpack(list)
  246. end
  247.  
  248.  
  249. so = function(id,par,vol,pit)
  250. coroutine.resume(coroutine.create(function()
  251. local sou = Create("Sound",par or workspace){
  252. Volume=vol,
  253. Pitch=pit or 1,
  254. SoundId=id,
  255. Parent=par
  256. }
  257. sou:Play()
  258. swait()
  259. game:GetService("Debris"):AddItem(sou,6)
  260. end))
  261. end
  262.  
  263. function clerp(a,b,t)
  264. local qa = {QuaternionFromCFrame(a)}
  265. local qb = {QuaternionFromCFrame(b)}
  266. local ax, ay, az = a.x, a.y, a.z
  267. local bx, by, bz = b.x, b.y, b.z
  268. local _t = 1-t
  269. return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t))
  270. end
  271.  
  272. function QuaternionFromCFrame(cf)
  273. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  274. local trace = m00 + m11 + m22
  275. if trace > 0 then
  276. local s = math.sqrt(1 + trace)
  277. local recip = 0.5/s
  278. return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5
  279. else
  280. local i = 0
  281. if m11 > m00 then
  282. i = 1
  283. end
  284. if m22 > (i == 0 and m00 or m11) then
  285. i = 2
  286. end
  287. if i == 0 then
  288. local s = math.sqrt(m00-m11-m22+1)
  289. local recip = 0.5/s
  290. return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip
  291. elseif i == 1 then
  292. local s = math.sqrt(m11-m22-m00+1)
  293. local recip = 0.5/s
  294. return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip
  295. elseif i == 2 then
  296. local s = math.sqrt(m22-m00-m11+1)
  297. local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip
  298. end
  299. end
  300. end
  301.  
  302. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  303. local xs, ys, zs = x + x, y + y, z + z
  304. local wx, wy, wz = w*xs, w*ys, w*zs
  305. local xx = x*xs
  306. local xy = x*ys
  307. local xz = x*zs
  308. local yy = y*ys
  309. local yz = y*zs
  310. local zz = z*zs
  311. 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))
  312. end
  313.  
  314. function QuaternionSlerp(a, b, t)
  315. local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4]
  316. local startInterp, finishInterp;
  317. if cosTheta >= 0.0001 then
  318. if (1 - cosTheta) > 0.0001 then
  319. local theta = math.acos(cosTheta)
  320. local invSinTheta = 1/math.sin(theta)
  321. startInterp = math.sin((1-t)*theta)*invSinTheta
  322. finishInterp = math.sin(t*theta)*invSinTheta
  323. else
  324. startInterp = 1-t
  325. finishInterp = t
  326. end
  327. else
  328. if (1+cosTheta) > 0.0001 then
  329. local theta = math.acos(-cosTheta)
  330. local invSinTheta = 1/math.sin(theta)
  331. startInterp = math.sin((t-1)*theta)*invSinTheta
  332. finishInterp = math.sin(t*theta)*invSinTheta
  333. else
  334. startInterp = t-1
  335. finishInterp = t
  336. end
  337. end
  338. 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
  339. end
  340.  
  341. function rayCast(Pos, Dir, Max, Ignore) -- Origin Position , Direction, MaxDistance , IgnoreDescendants
  342. return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore)
  343. end
  344.  
  345. Damagefunc=function(Part,hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
  346. if hit.Parent==nil then
  347. return
  348. end
  349. local h=hit.Parent:FindFirstChild("Humanoid")
  350. for _,v in pairs(hit.Parent:children()) do
  351. if v:IsA("Humanoid") then
  352. h=v
  353. end
  354. end
  355. if hit.Parent.Parent:FindFirstChild("Torso")~=nil then
  356. h=hit.Parent.Parent:FindFirstChild("Humanoid")
  357. end
  358. if hit.Parent.className=="Hat" then
  359. hit=hit.Parent.Parent:findFirstChild("Head")
  360. end
  361. if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then
  362. if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end
  363. --[[ if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then
  364. return
  365. end]]
  366. -- hs(hit,1.2)
  367. local c=Create("ObjectValue"){
  368. Name="creator",
  369. Value=game:service("Players").LocalPlayer,
  370. Parent=h,
  371. }
  372. game:GetService("Debris"):AddItem(c,.5)
  373. local Damage=math.random(minim,maxim)
  374. -- h:TakeDamage(Damage)
  375. local blocked=false
  376. local block=hit.Parent:findFirstChild("Block")
  377. if block~=nil then
  378. print(block.className)
  379. if block.className=="NumberValue" then
  380. if block.Value>0 then
  381. blocked=true
  382. if decreaseblock==nil then
  383. block.Value=block.Value-1
  384. end
  385. end
  386. end
  387. if block.className=="IntValue" then
  388. if block.Value>0 then
  389. blocked=true
  390. if decreaseblock~=nil then
  391. block.Value=block.Value-1
  392. end
  393. end
  394. end
  395. end
  396. if blocked==false then
  397. -- h:TakeDamage(Damage)
  398. h.Health=h.Health-Damage
  399. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, Part.BrickColor.Color)
  400. else
  401. h.Health=h.Health-(Damage/2)
  402. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Really black").Color)
  403. end
  404. if Type=="Knockdown" then
  405. local hum=hit.Parent.Humanoid
  406. hum.PlatformStand=true
  407. coroutine.resume(coroutine.create(function(HHumanoid)
  408. swait(1)
  409. HHumanoid.PlatformStand=false
  410. end),hum)
  411. local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
  412. --hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
  413. local bodvol=Create("BodyVelocity"){
  414. velocity=angle*knockback,
  415. P=5000,
  416. maxForce=Vector3.new(8e+003, 8e+003, 8e+003),
  417. Parent=hit,
  418. }
  419. local rl=Create("BodyAngularVelocity"){
  420. P=3000,
  421. maxTorque=Vector3.new(500000,500000,500000)*50000000000000,
  422. angularvelocity=Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10)),
  423. Parent=hit,
  424. }
  425. game:GetService("Debris"):AddItem(bodvol,.5)
  426. game:GetService("Debris"):AddItem(rl,.5)
  427. elseif Type=="Normal" then
  428. local vp=Create("BodyVelocity"){
  429. P=500,
  430. maxForce=Vector3.new(math.huge,0,math.huge),
  431. }
  432. -- vp.velocity=Character.Torso.CFrame.lookVector*Knockback
  433. if KnockbackType==1 then
  434. vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
  435. elseif KnockbackType==2 then
  436. vp.velocity=Property.CFrame.lookVector*knockback
  437. end
  438. if knockback>0 then
  439. vp.Parent=hit.Parent.Torso
  440. end
  441. game:GetService("Debris"):AddItem(vp,.5)
  442. elseif Type=="Up" then
  443. local bodyVelocity=Create("BodyVelocity"){
  444. velocity=vt(0,60,0),
  445. P=5000,
  446. maxForce=Vector3.new(8e+003, 8e+003, 8e+003),
  447. Parent=hit,
  448. }
  449. game:GetService("Debris"):AddItem(bodyVelocity,1)
  450. local rl=Create("BodyAngularVelocity"){
  451. P=3000,
  452. maxTorque=Vector3.new(500000,500000,500000)*50000000000000,
  453. angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30)),
  454. Parent=hit,
  455. }
  456. game:GetService("Debris"):AddItem(rl,.5)
  457. elseif Type=="Snare" then
  458. local bp=Create("BodyPosition"){
  459. P=2000,
  460. D=100,
  461. maxForce=Vector3.new(math.huge,math.huge,math.huge),
  462. position=hit.Parent.Torso.Position,
  463. Parent=hit.Parent.Torso,
  464. }
  465. game:GetService("Debris"):AddItem(bp,1)
  466. elseif Type=="Target" then
  467. local Targetting = false
  468. if Targetting==false then
  469. ZTarget=hit.Parent.Torso
  470. coroutine.resume(coroutine.create(function(Part)
  471. so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5)
  472. swait(5)
  473. so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5)
  474. end),ZTarget)
  475. local TargHum=ZTarget.Parent:findFirstChild("Humanoid")
  476. local targetgui=Create("BillboardGui"){
  477. Parent=ZTarget,
  478. Size=UDim2.new(10,100,10,100),
  479. }
  480. local targ=Create("ImageLabel"){
  481. Parent=targetgui,
  482. BackgroundTransparency=1,
  483. Image="rbxassetid://4834067",
  484. Size=UDim2.new(1,0,1,0),
  485. }
  486. cam.CameraType="Scriptable"
  487. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  488. local dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  489. workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  490. Targetting=true
  491. RocketTarget=ZTarget
  492. for i=1,Property do
  493. --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do
  494. if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then
  495. swait()
  496. end
  497. --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100)
  498. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  499. dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  500. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0)
  501. end
  502. Targetting=false
  503. RocketTarget=nil
  504. targetgui.Parent=nil
  505. cam.CameraType="Custom"
  506. end
  507. end
  508. local debounce=Create("BoolValue"){
  509. Name="DebounceHit",
  510. Parent=hit.Parent,
  511. Value=true,
  512. }
  513. game:GetService("Debris"):AddItem(debounce,Delay)
  514. c=Create("ObjectValue"){
  515. Name="creator",
  516. Value=Player,
  517. Parent=h,
  518. }
  519. game:GetService("Debris"):AddItem(c,.5)
  520. end
  521. end
  522.  
  523.  
  524. function ShowDamage(Pos, Text, Time, Color)
  525. local Rate = (1 / 30)
  526. local Pos = (Pos or Vector3.new(0, 0, 0))
  527. local Text = (Text or "")
  528. local Time = (Time or 2)
  529. local Color = (Color or Color3.new(1, 0, 0))
  530. local EffectPart = part("Custom",workspace,"SmoothPlastic",0,1,BrickColor.new(Color),"Effect",vt(0,0,0))
  531. EffectPart.Anchored = true
  532. local BillboardGui = Create("BillboardGui"){
  533. Size = UDim2.new(3, 0, 3, 0),
  534. Adornee = EffectPart,
  535. Parent = EffectPart,
  536. }
  537. local TextLabel = Create("TextLabel"){
  538. BackgroundTransparency = 1,
  539. Size = UDim2.new(1, 0, 1, 0),
  540. Text = Text,
  541. TextColor3 = Color,
  542. TextScaled = true,
  543. Font = Enum.Font.ArialBold,
  544. Parent = BillboardGui,
  545. }
  546. game.Debris:AddItem(EffectPart, (Time + 0.1))
  547. EffectPart.Parent = game:GetService("Workspace")
  548. Delay(0, function()
  549. local Frames = (Time / Rate)
  550. for Frame = 1, Frames do
  551. wait(Rate)
  552. local Percent = (Frame / Frames)
  553. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  554. TextLabel.TextTransparency = Percent
  555. end
  556. if EffectPart and EffectPart.Parent then
  557. EffectPart:Destroy()
  558. end
  559. end)
  560. end
  561.  
  562. --example: local con = HitboxB.Touched:connect(function(hit) Damagefunc(Hitbox,hit,Dmg,Dmg,math.random(Knockback,Knockback),"Normal",RootPart,.2,1) end)
  563.  
  564. Handle=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Handle",Vector3.new(0.360554546, 0.360554546, 0.379802853))
  565. Handleweld=weld(m,Character["Right Arm"],Handle,CFrame.new(0, 0, 0, 0, 0, -1, 0, 0.999993801, 0, 1, 0, 0),CFrame.new(0.177848816, 0.0589141846, -1.10449219, 0, 0, -1, 1, 0, 0, 0, -1, 0))
  566. mesh("SpecialMesh",Handle,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.526693285, 0.763705134, 1))
  567. Hitbox=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,1,"Bright red","Hitbox",Vector3.new(0.200000003, 4.10947084, 0.698936343))
  568. Hitboxweld=weld(m,Handle,Hitbox,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0.00057220459, -4.3589859, 0.0978279114, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  569. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Bright red","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  570. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0.28012085, 0.000827789307, 0.00477981567, 1, 0, 0, 0, 0, -1, 0, 1, 0))
  571. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.268613517, 0.56356132, 0.247545645))
  572. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Bright red","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  573. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0.275360107, 0.000465393066, 0.00193786621, 1, 0, 0, 0, 0, -1, 0, 1, 0))
  574. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.747904301, 0.539860368, 0.826908112))
  575. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Bright red","Part",Vector3.new(0.360554546, 0.360554546, 0.379802853))
  576. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(-0.000644683838, 0.0931091309, -0.256637573, 0, 0, -1, 0.341053069, -0.940044045, 0, -0.940044045, -0.341053069, 0))
  577. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.539860845, 0.144840568, 1))
  578. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Bright red","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  579. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, 0.0960845947, -0.257797241, 0, 0, -1, 0.355211943, -0.934785843, 0, -0.934785843, -0.355211943, 0))
  580. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.558294952, 0.0526693054, 0.689967871))
  581. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Bright red","Part",Vector3.new(0.360554546, 0.360554546, 0.379802853))
  582. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(-0.000644683838, 0.192611694, -0.192626953, 0, 0, -1, 0.707106829, -0.707106769, 0, -0.707106769, -0.707106829, 0))
  583. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.539860845, 0.144840568, 1))
  584. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Bright red","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  585. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, 0.193572998, -0.20010376, 0, 0, -1, 0.707106829, -0.707106769, 0, -0.707106769, -0.707106829, 0))
  586. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.558294952, 0.0526693054, 0.689967871))
  587. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Bright red","Part",Vector3.new(0.360554546, 4.10947084, 0.508936346))
  588. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -4.27897644, 0.152828217, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  589. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0842708647, 1, 1))
  590. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  591. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0.279167175, 0.000465393066, 0.00191879272, 1, 0, 0, 0, 0, -1, 0, 1, 0))
  592. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.632032096, 0.55065763, 0.826908112))
  593. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.371257514, 0.379802853))
  594. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -1.66312408, 7.62939453e-006, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  595. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.526693285, 1, 1))
  596. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.379802853))
  597. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, 1.04590607, 0, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  598. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.526693285, 0.766338646, 1))
  599. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.381702155))
  600. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, 1.05589294, -3.81469727e-006, 0, 0, -1, 1, 0, 0, 0, -1, 0))
  601. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.531960428, 0.416087478, 1))
  602. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.360554546, 0.360554546, 0.930516958))
  603. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -2.18531036, 0.00951004028, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  604. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.316016048, 0.344983995, 1))
  605. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 1.3293103))
  606. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -1.9859314, 0, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  607. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.526693285, 0.766338646, 1))
  608. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  609. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -3.90222931, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  610. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  611. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  612. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -3.579422, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  613. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  614. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  615. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -3.75029755, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  616. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  617. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  618. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -5.82025146, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  619. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  620. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  621. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -4.94670105, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  622. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  623. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  624. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -2.89572906, -0.113525391, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  625. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  626. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  627. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -3.40847015, -0.113517761, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  628. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  629. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  630. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -3.04767609, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  631. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  632. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  633. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -5.28852081, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  634. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  635. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  636. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -3.21861267, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  637. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  638. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  639. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -5.98604584, -0.113513947, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  640. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  641. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  642. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -4.43396759, -0.113513947, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  643. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  644. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  645. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -4.60487366, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  646. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  647. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  648. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -4.07314301, -0.113513947, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  649. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  650. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  651. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -4.77577209, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  652. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  653. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  654. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -4.24404144, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  655. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  656. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  657. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -5.64936066, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  658. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  659. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.379802853))
  660. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, 0.389762878, 7.62939453e-006, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  661. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.526693285, 0.766338646, 1))
  662. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.379802853))
  663. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -0.959503174, 3.81469727e-006, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  664. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.526693285, 0.766338646, 1))
  665. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  666. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -6.17155457, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  667. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.458222985, 0.624131382))
  668. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  669. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -5.4784317, -0.113513947, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  670. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  671. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  672. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -2.36400604, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  673. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.405553579, 0.624131382))
  674. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  675. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -5.11759949, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  676. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  677. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.813727915))
  678. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -2.18258667, 0.00520706177, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  679. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.784772933, 1))
  680. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  681. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -2.72483063, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  682. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  683. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.813727915))
  684. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -6.37661743, 0.00519943237, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  685. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.790039718, 1))
  686. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  687. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -2.55863953, -0.113529205, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  688. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 0.300214857, 0.624131382))
  689. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 4.19492531, 0.360554546))
  690. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -4.42153168, -0.251224518, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  691. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.210677236, 1, 0.834808409))
  692. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Part",Vector3.new(0.360554546, 0.360554546, 0.379802853))
  693. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -0.273963928, 7.62939453e-006, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  694. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.526693285, 0.766338646, 1))
  695. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  696. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, 1.88893127, -1.38394165, 0, 0, -1, 0.707106829, -0.707106769, 0, -0.707106769, -0.707106829, 0))
  697. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.215944156, 0.0526693054, 0.142207071))
  698. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  699. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, 4.86359406, -4.35860443, 0, 0, -1, 0.707106829, -0.707106769, 0, -0.707106769, -0.707106829, 0))
  700. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.215944156, 0.0526693054, 0.142207071))
  701. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Ghost grey","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  702. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(2.31504059, 0, -0.356616974, 1, 0, 0, 0, 0, -1, 0, 1, 0))
  703. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.221211255, 0.214890704, 0.186976045))
  704. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Ghost grey","Part",Vector3.new(0.360554546, 0.360554546, 0.360554546))
  705. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(6.5218811, 0, -0.356616974, 1, 0, 0, 0, 0, -1, 0, 1, 0))
  706. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.221211255, 0.214890704, 0.186976045))
  707. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.360554546, 0.444370121, 0.360554546))
  708. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -3.24833107, -5.30084229, 0, 0, -1, -0.500000179, -0.866025388, 0, -0.866025388, 0.500000179, 0))
  709. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0948047191, 1, 0.58462894))
  710. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.360554546, 4.10947084, 0.360554546))
  711. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -4.34153748, -0.000942230225, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  712. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0948047191, 1, 0.558294654))
  713. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(0.360554546, 0.444370121, 0.360554546))
  714. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, 1.03099823, -2.11115646, 0, 0, -1, 0.500000238, -0.866025269, 0, -0.866025269, -0.500000238, 0))
  715. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0948047191, 1, 0.58462894))
  716. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Ghost grey","Part",Vector3.new(0.360554546, 0.495643318, 0.360554546))
  717. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -3.19793129, -5.34571075, 0, 0, -1, -0.500000179, -0.866025388, 0, -0.866025388, 0.500000179, 0))
  718. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.105338618, 1, 0.726836324))
  719. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.495643318, 0.360554546))
  720. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, 1.04631042, -2.06634521, 0, 0, -1, 0.500000238, -0.866025269, 0, -0.866025269, -0.500000238, 0))
  721. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.105338618, 1, 0.726836324))
  722. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Ghost grey","Part",Vector3.new(0.360554546, 4.08098316, 0.360554546))
  723. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -4.27246094, -0.057964325, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  724. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.105338618, 1, 0.726836324))
  725. FakeHandle=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","FakeHandle",Vector3.new(0.360554546, 0.360554546, 0.381702155))
  726. FakeHandleweld=weld(m,Handle,FakeHandle,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, 0.454818726, 0, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  727. mesh("BlockMesh",FakeHandle,"","",Vector3.new(0, 0, 0),Vector3.new(0.531960428, 0.416087478, 1))
  728. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.963750422, 0.379802853))
  729. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -1.66403198, -7.62939453e-006, 0, 0, -1, 1, 0, 0, 0, -1, 0))
  730. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.526693285, 1, 1))
  731. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.379802853))
  732. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, 0.770057678, -1.52587891e-005, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  733. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.526693285, 0.763705134, 1))
  734. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.376005113, 0.38360101))
  735. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0.000465393066, 0.191772461, 7.62939453e-006, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  736. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.534593701, 1, 1))
  737. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.379802853))
  738. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0.000465393066, -1.2676239, -3.81469727e-006, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  739. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.529326737, 0.763705134, 1))
  740. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.376005113, 0.38360101))
  741. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0.000465393066, 0.792854309, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0))
  742. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.534593701, 1, 1))
  743. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.379802853))
  744. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, 1.3416748, -7.62939453e-006, 0, 0, -1, 1, 0, 0, 0, -1, 0))
  745. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.526693285, 0.763705134, 1))
  746. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.379802853))
  747. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0.000465393066, -0.666549683, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0))
  748. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.529326737, 0.763705134, 1))
  749. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.474753797))
  750. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(-0.000835418701, 1.75665283, 0.428131104, 0, 0, 1, 1, 0, 0, 0, 1, 0))
  751. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.526693285, 0.516159058, 1))
  752. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.474753797))
  753. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, 1.7547226, 0.426303864, 0, 0, -1, 1, 0, 0, 0, -1, 0))
  754. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.526693285, 0.516159058, 1))
  755. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Part",Vector3.new(0.360554546, 0.360554546, 0.379802853))
  756. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, 0.113929749, 0, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  757. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.526693285, 0.763705134, 1))
  758. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Part",Vector3.new(0.360554546, 0.360554546, 0.379802853))
  759. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, 0.685569763, -1.52587891e-005, 0, 0, -1, 1, 0, 0, 0, -1, 0))
  760. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.526693285, 0.763705134, 1))
  761. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.360554546, 0.360554546, 0.813727915))
  762. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(-0.000644683838, -6.6566925, 0.00424957275, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  763. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.208043844, 0.763705134, 1))
  764. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really red","Part",Vector3.new(0.360554546, 0.360554546, 0.379802853))
  765. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0, 0, -1, 1, 0, 0, 0, -1, 0),CFrame.new(0, -0.549789429, 0, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  766. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.526693285, 0.763705134, 1))
  767.  
  768. BackHandle=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","BackHandle",Vector3.new(0.400000095, 0.400000036, 0.200000003))
  769. BackHandleweld=weld(m,Character["Torso"],BackHandle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00270080566, -0.400000572, -0.995346785, 0.999995828, 9.57450538e-007, 9.07493813e-005, -8.38253868e-007, 0.999996424, 1.28402306e-007, -9.07492722e-005, -1.28478149e-007, 0.999994636))
  770. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.20000005, 0.400000036, 0.399999976))
  771. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.67028809e-005, -1.47819519e-005, 0.299961567, 0.999977112, 5.98281886e-008, 7.15263013e-007, 5.95732566e-008, 0.999999404, -1.0673773e-010, 1.5279511e-010, 1.35713663e-011, 0.999977708))
  772. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000072, 0.200000003, 0.600000024))
  773. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.43322754e-005, -1.29999566, -0.19994545, 0.999962568, 3.36675754e-007, 7.15328497e-007, 3.36268641e-007, -1.00000596, -1.72142322e-007, -7.15474016e-007, 1.72335845e-007, -0.999966145))
  774. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  775. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2, 0.400000036, 0.399999976))
  776. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.05175781e-005, 0.399995804, 0.299943924, 0.999962568, -5.95748411e-008, -1.5279511e-010, 5.99647478e-008, 1.00000596, -1.35571554e-011, 1.43096258e-006, -1.72875048e-010, 0.999966145))
  777. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000066, 0.600000024))
  778. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.299932957, -0.800000668, 0.699989319, -2.20599759e-006, 8.24195183e-008, -0.999966145, 2.50814537e-007, -1.00000596, -8.22300166e-008, -0.999962568, -2.51218012e-007, 7.751878e-007))
  779. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  780. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000003, 0.400000036))
  781. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.399985313, -5.38825989e-005, 0.800014496, 4.46675614e-007, -1.0000031, -9.53122026e-011, 1.25138467e-006, -1.92912353e-010, 0.999983191, -0.999981284, -4.46891306e-007, 4.16730472e-007))
  782. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  783. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000003, 0.400000036))
  784. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400000334, -4.8160553e-005, 0.799980164, -1.19698299e-007, -1.00000596, -8.56203997e-011, 1.75560126e-006, -2.72109446e-010, 0.999966145, -0.999962568, 1.19311267e-007, 3.24791472e-007))
  785. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  786. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.600000083, 0.599999964))
  787. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000152587891, 0.900003672, 0.199926376, 0.999962568, -5.98762355e-008, -7.15517672e-007, 6.02658901e-008, 1.00000596, 1.25339739e-010, 2.14632746e-006, -3.11786152e-010, 0.999966145))
  788. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000066, 0.600000024))
  789. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.299934387, -0.800001144, 0.699932098, 2.14639294e-006, -2.43232989e-010, 0.999966145, -6.0108313e-008, -1.00000596, -5.67865754e-011, 0.999962568, -5.97186656e-008, -7.15583155e-007))
  790. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  791. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.20000005, 0.400000036, 0.200000003))
  792. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.05175781e-005, 0.399998188, -5.57899475e-005, 0.999962449, -5.97711889e-008, -7.15554052e-007, 6.01608363e-008, 1.00000596, 7.9623419e-011, 2.14636384e-006, -2.66084044e-010, 0.999966025))
  793. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000003, 0.400000036))
  794. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.399990797, -4.00543213e-005, 0.799942017, 5.96139245e-008, 1.00000596, -1.47792889e-010, 1.26962186e-005, -3.92930133e-011, 0.999966145, 0.999962568, -5.92242273e-008, -1.12654307e-005))
  795. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  796. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2, 0.400000036, 0.399999976))
  797. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-005, -0.400005579, 0.299938679, 0.999981284, 5.93643037e-008, -8.36495019e-007, -5.91571911e-008, 1.0000031, 1.1671375e-010, 1.67113467e-006, -2.14456009e-010, 0.999983191))
  798. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000003, 0.400000036))
  799. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.399995089, -4.43458557e-005, 0.79996109, -3.87580286e-007, 1.00000024, -6.71747102e-011, 1.24300786e-005, 6.27267127e-011, 1.00000024, 1, 3.87599812e-007, -1.21916382e-005))
  800. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  801. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.20000005, 0.400000036, 0.200000003))
  802. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.62939453e-006, -0.399989605, -5.76972961e-005, 1, 7.44680392e-007, -1.49234256e-006, -7.44660611e-007, 1.00000024, 1.8306423e-010, 1.73078297e-006, -1.91121785e-010, 1.00000024))
  803. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
  804. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-005, -0.401464701, -0.012863636, 0.999999881, 5.91680802e-008, -1.55193993e-006, -5.91485332e-008, 1.00000024, 2.09965378e-010, 1.79038034e-006, -2.19046115e-010, 1.00000012))
  805. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
  806. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.05175781e-005, 0.398539066, -0.0128684044, 0.999999881, -5.956732e-008, 1.19071046e-007, 5.95868315e-008, 1.00000024, -1.81472615e-011, 1.19376637e-007, 8.96704933e-012, 1.00000012))
  807. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
  808. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.05175781e-005, 0.398539066, -0.0128684044, 0.999999762, -5.956732e-008, 1.19071046e-007, 5.95868315e-008, 1.00000024, -1.81472615e-011, 1.19369361e-007, 8.96704933e-012, 1))
  809. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 0.300000012, 1.10000002))
  810. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.200000003, 0.200000003))
  811. Partweld=weld(m,BackHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(5.34057617e-005, -0.401463985, -0.0128593445, 1, 5.91109917e-008, -1.67275721e-006, -5.90914624e-008, 1.00000024, 2.37989184e-010, 1.91119761e-006, -2.4706992e-010, 1.00000024))
  812. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 0.300000012, 1.10000002))
  813.  
  814. WingConnectorA=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Crimson","WingConnectorA",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  815. WingConnectorAweld=weld(m,BackHandle,WingConnectorA,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.760124207, -0.500091553, 2.59146118, -0.70701617, -8.76535466e-007, 0.707190692, 2.30480083e-007, 0.999996424, 1.35069615e-006, -0.707191586, 1.03366017e-006, -0.707015276))
  816. mesh("SpecialMesh",WingConnectorA,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  817. WingHandleA=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","WingHandleA",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  818. WingHandleAweld=weld(m,WingConnectorA,WingHandleA,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.81469727e-006, 9.36985016e-005, 7.62939453e-006, 0.999981105, -9.80367076e-009, 1.01327896e-006, 1.8345645e-008, 0.999986887, 2.1032065e-011, -1.34110451e-006, 9.24046617e-010, 0.999976635))
  819. mesh("SpecialMesh",WingHandleA,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  820. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  821. Partweld=weld(m,WingHandleA,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00260162354, 1.39987755, 0.397865295, -0.999964237, -2.82797487e-007, -7.74860382e-007, -2.68114036e-007, 0.999991536, -3.07588664e-007, 1.43051147e-006, -3.09293114e-007, -0.999956012))
  822. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  823. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.200000003, 1.20000005, 0.200000018))
  824. Partweld=weld(m,WingHandleA,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00754928589, -3.2998507, 0.200576782, 0.999981046, -0.000345696521, 1.01327896e-006, -0.000345703098, -0.999986887, 7.34406058e-007, 1.34110451e-006, -7.35720846e-007, -0.999976635))
  825. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  826. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.200000003, 1.20000005, 0.200000033))
  827. Partweld=weld(m,WingHandleA,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00755310059, -3.29984474, -0.000576019287, -0.999973834, 0.00034581509, -9.53674316e-007, -0.000345820386, -0.999988914, 8.78280844e-007, -1.43051147e-006, 8.79830168e-007, 0.999967694))
  828. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  829. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  830. Partweld=weld(m,WingHandleA,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0071105957, -2.19989014, 0.39232254, 0.999964118, -0.000341437757, 7.4505806e-007, -0.000341443112, -0.999991536, 4.55009285e-007, 1.51991844e-006, -4.56985958e-007, -0.999955952))
  831. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  832. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.600000143, 0.200000003))
  833. Partweld=weld(m,WingHandleA,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.397834778, 1.79987717, -0.0046081543, 1.1920929e-006, 8.05591753e-008, -0.999955893, -9.59476438e-007, 0.999991536, 8.22495849e-008, 0.999964118, 9.74177965e-007, 5.06639481e-007))
  834. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.400000036, 2.60000038, 0.200000003))
  835. Partweld=weld(m,WingHandleA,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.102138519, 1.39986181, -0.0054397583, 1.25169754e-006, 8.53931397e-008, -0.999958754, -9.66183052e-007, 0.99999094, 8.68290044e-008, 0.999966741, 9.78532171e-007, 5.96046448e-007))
  836.  
  837. WingConnectorB=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Crimson","WingConnectorB",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  838. WingConnectorBweld=weld(m,BackHandle,WingConnectorB,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.784416199, -0.499978304, 2.59280396, -0.707191348, -3.90662137e-007, -0.707015634, 2.66780262e-007, 0.999996424, -7.00154715e-007, 0.707016468, -5.99482121e-007, -0.707190454))
  839. mesh("SpecialMesh",WingConnectorB,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  840. WingHandleB=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","WingHandleB",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  841. WingHandleBweld=weld(m,WingConnectorB,WingHandleB,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0180549622, 0.000362634659, -0.00287246704, 1.00000024, 2.62332378e-009, -0.000288337469, -2.63818833e-009, 1.00000048, -1.41619694e-009, 0.000288575888, 1.4564705e-009, 1.00000012))
  842. mesh("SpecialMesh",WingHandleB,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  843. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.200000003, 1.20000005, 0.200000033))
  844. Partweld=weld(m,WingHandleB,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00733184814, -3.29872251, -0.000240325928, -1.00000024, 0.000345554465, 5.09619713e-006, -0.000345554959, -0.999998748, 8.77771527e-007, 6.97374344e-006, 8.76055537e-007, 1.00000679))
  845. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  846. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.200000003, 1.20000005, 0.200000018))
  847. Partweld=weld(m,WingHandleB,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00751495361, -3.30146718, 0.200904846, 1.00000048, -0.000345482345, 0.000583082438, -0.00034548252, -1.00000083, 5.31843398e-007, 0.000582695007, -7.33383786e-007, -1))
  848. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  849. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  850. Partweld=weld(m,WingHandleB,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00564956665, 1.40153003, 0.398208618, -1.0000006, -1.52919711e-007, -0.000701099634, -1.52856074e-007, 0.999992073, -2.92751594e-007, 0.000700622797, -2.9275219e-007, -1))
  851. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  852. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  853. Partweld=weld(m,WingHandleB,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0101585388, -2.2015543, 0.392654419, 1.00000048, -0.000341564562, 0.000701278448, -0.000341564592, -1.00000072, 2.00845534e-007, 0.000700861216, -4.40466266e-007, -1))
  854. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  855. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.400000036, 2.60000038, 0.200000003))
  856. Partweld=weld(m,WingHandleB,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.102455139, 1.40156364, -0.00542831421, 0.000591039658, 8.87212934e-008, -1, -1.1955226e-006, 1.00000083, 8.81201458e-008, 1.0000006, 1.19532979e-006, 0.000591367483))
  857. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.600000143, 0.200000003))
  858. Partweld=weld(m,WingHandleB,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.398174286, 1.80155635, -0.00764846802, 0.000699937344, 9.82820438e-008, -1.00000012, -8.54601353e-007, 1.00000155, 9.79221255e-008, 1.00000155, 8.54139444e-007, 0.000700563192))
  859.  
  860. WingConnector2A=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Really black","WingConnector2A",Vector3.new(0.399999976, 0.400000036, 0.399999976))
  861. WingConnector2Aweld=weld(m,BackHandle,WingConnector2A,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.35351944, -8.82148743e-006, 0.777774811, 0.70710361, 2.35763025e-007, 0.707103252, -1.815758e-007, 0.999996424, -3.26344036e-008, -0.707104087, -1.89611058e-007, 0.707102716))
  862. mesh("CylinderMesh",WingConnector2A,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  863. WingHandle2A=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","WingHandle2A",Vector3.new(0.399999976, 0.400000036, 0.399999976))
  864. WingHandle2Aweld=weld(m,WingConnector2A,WingHandle2A,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.28881836e-005, -3.09944153e-006, -3.05175781e-005, 1.00000012, 2.13349054e-008, 2.56299973e-006, -2.13311964e-008, 1.00000012, -2.10869437e-008, -2.50339508e-006, 2.10766586e-008, 1))
  865. mesh("CylinderMesh",WingHandle2A,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  866. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.600000024, 0.400000006, 0.200000003))
  867. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00458908081, -0.799812317, -1.43754196, -0.000118851662, 2.60861555e-007, -1, 8.83513394e-007, 1.00000012, 2.60746447e-007, 1, -8.8347872e-007, -0.000118762255))
  868. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  869. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000033, 2.60000038, 0.200000003))
  870. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.43828201, 1.49969769, -0.00198364258, 0.999976516, -1.20581092e-006, -0.000126719475, 1.20483628e-006, 0.999987006, -3.7582123e-007, 0.000127106905, 3.84210125e-007, 0.999981046))
  871. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.799999952, 1.20000005, 0.399999976))
  872. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.732719421, -0.000127077103, -0.011013031, 0.999976635, -2.55695795e-007, -4.47034836e-007, 2.54775983e-007, 0.999986887, 1.28024396e-007, 7.74860382e-007, -1.19475757e-007, 0.999981165))
  873. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000033, 0.400000155, 0.599999964))
  874. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.6384964, 0.599924326, -0.00668716431, 0.999953151, -1.2063831e-006, -0.000126421452, 1.20447589e-006, 0.999973774, -3.58210656e-007, 0.000127106905, 3.75161164e-007, 0.999962151))
  875. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.600000024, 0.600000024, 0.200000003))
  876. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00381469727, -0.499895573, -1.43782806, 0.00011792779, -5.21332424e-007, 0.999962091, -1.20606751e-006, -0.999973774, -5.3828353e-007, 0.999953151, -1.20786547e-006, -0.000117242336))
  877. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  878. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000036, 2.00000048, 0.200000003))
  879. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.738220215, 1.99993312, -0.00198364258, 0.999976635, -1.20194647e-006, -0.000127375126, 1.20097798e-006, 0.999977708, -4.28671427e-007, 0.000127702951, 4.37083344e-007, 0.999981105))
  880. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000033, 0.400000393, 0.200000003))
  881. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.03820801, 1.79991686, -0.00200271606, 0.999976635, -1.20224877e-006, -0.000126779079, 1.20128084e-006, 0.999977708, -4.25658016e-007, 0.000127106905, 4.34070643e-007, 0.999981105))
  882. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000033, 0.200000376, 0.200000003))
  883. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.03817749, 0.899925232, -0.00204849243, 0.999953151, -1.20194807e-006, -0.000124722719, 1.20003529e-006, 0.999973774, -4.1127916e-007, 0.000125437975, 4.2823288e-007, 0.999962091))
  884. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000003, 0.400000006))
  885. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0112571716, -0.699848175, 0.935894012, -0.00011792779, -1.25010138e-006, -0.999962091, -8.60096748e-007, -0.999973774, 1.23308939e-006, -0.999953151, 8.62096385e-007, 0.000117242336))
  886. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  887. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  888. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00269317627, -2.09995699, 1.03822327, -0.000118494034, 0.000339705701, -0.999980986, -2.36835331e-006, -0.999977708, -0.000339717168, -0.999976635, 2.32894104e-006, 0.000118196011))
  889. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  890. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.400000006))
  891. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00271606445, 0.89996767, -0.738178253, -0.000116944313, 0.000342214655, -0.999962091, 2.2733293e-006, 0.999973774, 0.000342227548, 0.999953151, -2.23520124e-006, -0.00011625886))
  892. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  893. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000036, 0.200000003, 0.400000036))
  894. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0116539001, -0.699934483, -0.537151337, 2.5331974e-006, -5.20983683e-008, 0.999962151, -4.94033145e-007, -0.999973774, -6.91953517e-008, 0.999953151, -4.95877543e-007, -1.84774399e-006))
  895. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  896. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.610000014, 0.800000131, 0.200000003))
  897. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.83622742, 1.50203705e-005, -0.00223922729, 0.999953151, -1.20720688e-006, -0.000126361847, 1.20529853e-006, 0.999973774, -3.67991873e-007, 0.000127017498, 3.84942496e-007, 0.999962091))
  898. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.600000024, 0.400000036, 0.400000006))
  899. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0066986084, -0.599959373, 1.93844223, -0.00011870265, 5.45789703e-007, -0.999962091, -1.48036668e-006, -0.999982953, -5.62686523e-007, -0.999953151, 1.48218601e-006, 0.000118017197))
  900. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  901. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 1, 0.200000003))
  902. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00186538696, 0.699984789, 1.63819122, 0.000117570162, 0.000343447289, 0.999962151, 1.81229552e-007, 0.999973774, -0.000343426189, -0.999953151, 2.2344058e-007, 0.000116944313))
  903. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  904. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  905. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00183486938, -1.99997032, 1.6382103, -0.000119000673, -0.0003434307, -0.999961793, -6.70683221e-007, -0.999992132, 0.000343403255, -0.999953032, 7.13414749e-007, 0.000118345022))
  906. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  907. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.600000024, 0.400000006, 0.600000024))
  908. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00689315796, -0.799924135, 1.8359642, 0.00011947751, -5.85247506e-007, 0.999980927, 1.29695411e-006, 1.00000536, 5.93606615e-007, -0.999976516, 1.29784451e-006, 0.000119119883))
  909. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  910. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.400000036, 0.400000006))
  911. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000377655029, -0.600088358, 1.94027328, -0.000118345022, 5.42628982e-007, -0.999961436, -1.47416779e-006, -1.00001073, -5.59483738e-007, -0.999953032, 1.4760343e-006, 0.000117659569))
  912. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  913. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.600000024, 1.00000012, 0.599999964))
  914. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.83838654, -0.0998883247, -0.00664901733, 0.999953032, -1.2058166e-006, -0.000126332045, 1.20385414e-006, 1.00001073, -3.57192391e-007, 0.0001270473, 3.74113938e-007, 0.999961436))
  915. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.400000006, 0.400000006))
  916. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00269699097, -3.1999507, 0.738132477, -0.000118583441, 0.000339725055, -0.999980748, -2.36830965e-006, -0.999996185, -0.000339730119, -0.999976516, 2.32889761e-006, 0.000118285418))
  917. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  918. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.399999976, 0.400000036, 0.399999976))
  919. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.136451721, -3.79085541e-005, 0.00166320801, 0.999943495, -2.43060981e-007, -1.16229057e-006, 2.41201008e-007, 1.00001097, -9.43163485e-008, 1.84774399e-006, 1.11379194e-007, 0.999952197))
  920. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000036, 0.600000381, 0.200000003))
  921. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.13814926, 1.29996634, -0.00199890137, 0.999976516, -1.20260449e-006, -0.000127136707, 1.20160905e-006, 0.999996185, -4.24037722e-007, 0.000127434731, 4.32436423e-007, 0.999980748))
  922. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000036, 0.200000003))
  923. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0111846924, -0.400034666, 1.23585892, -0.000119328499, -1.28770091e-006, -0.999980807, -8.9875391e-007, -1.00000536, 1.27924841e-006, -0.999976397, 8.99856275e-007, 0.000119000673))
  924. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  925. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000072, 0.399999976))
  926. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.23489761, -0.199841738, -0.0108909607, 0.999953032, -1.23361633e-006, -0.000125616789, 1.2316226e-006, 1.00001073, -5.93518166e-007, 0.000126242638, 6.10448865e-007, 0.999961495))
  927. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  928. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00266265869, -1.99999452, -1.23814011, 0.000118851662, -0.000342111831, 0.999980748, -1.78501068e-006, -0.999996185, -0.000342116982, 0.999976516, -1.74523427e-006, -0.000118523836))
  929. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  930. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 1, 0.200000003))
  931. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00266647339, 0.700069189, -1.23814774, -0.000118345022, 0.000342116429, -0.999980628, 2.27200508e-006, 1.00000536, 0.000342116284, 0.999976456, -2.23251186e-006, -0.000118017197))
  932. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  933. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000072, 0.599999964))
  934. Partweld=weld(m,WingHandle2A,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.43771744, -0.199832916, -0.00438690186, 0.999953032, -1.21251264e-006, -0.000125616789, 1.21055359e-006, 1.00001073, -3.29055638e-007, 0.000126242638, 3.45975934e-007, 0.999961495))
  935.  
  936. WingConnector2B=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Really black","WingConnector2B",Vector3.new(0.399999976, 0.400000036, 0.399999976))
  937. WingConnector2Bweld=weld(m,BackHandle,WingConnector2B,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.353546143, -1.02519989e-005, 0.77778244, 0.70710355, 2.76879433e-007, -0.707103431, -2.52642138e-007, 0.999996424, 1.9715614e-008, 0.707104325, 2.48997594e-007, 0.707102716))
  938. mesh("CylinderMesh",WingConnector2B,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  939. WingHandle2B=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","WingHandle2B",Vector3.new(0.399999976, 0.400000036, 0.399999976))
  940. WingHandle2Bweld=weld(m,WingConnector2B,WingHandle2B,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.95910645e-005, -1.00135803e-005, 1.14440918e-005, 1, -1.95296565e-007, -1.23381615e-005, 1.95308559e-007, 1.00000012, 1.4882113e-007, 1.22785568e-005, -1.48819879e-007, 1.00000024))
  941. mesh("CylinderMesh",WingHandle2B,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  942. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.400000006, 0.400000006))
  943. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0057144165, -3.20001864, 0.739765167, -6.97374344e-006, 0.00033977133, 1.00000012, 3.41693521e-007, -1.00000012, 0.000339771359, 1, 3.44076113e-007, 6.85453415e-006))
  944. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  945. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 1, 0.200000003))
  946. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00654602051, 0.700015306, 1.63977051, 7.68899918e-006, 0.000343456777, -1.00000024, 1.75846799e-006, 1.00000036, 0.00034345669, 1, -1.76109734e-006, 7.4505806e-006))
  947. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  948. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000036, 2.00000048, 0.200000003))
  949. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.739772797, 1.99997914, 0.00642776489, -1, 7.83247856e-007, -5.78165054e-006, 7.83254677e-007, 1.00000072, 4.01889906e-007, 6.10947609e-006, 4.01940554e-007, -1.00000048))
  950. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 1, 0.200000003))
  951. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00572967529, 0.700017214, -1.23976517, -7.4505806e-006, 0.000342165935, 1.00000072, -2.45941919e-007, 1.00000095, -0.000342165877, -1, -2.48526703e-007, -7.15255737e-006))
  952. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  953. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  954. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00574493408, -2.00001717, -1.23976517, 7.09295273e-006, -0.000342123793, -1.00000072, -2.43031536e-007, -1.00000095, 0.000342123734, -1, 2.40580533e-007, -6.7949295e-006))
  955. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  956. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  957. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00656890869, -2.00001454, 1.63977051, -7.09295273e-006, -0.000343398249, 1.00000072, -1.2695964e-006, -1.00000095, -0.000343398133, 1, -1.27200531e-006, 6.7949295e-006))
  958. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  959. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000036, 0.600000381, 0.200000003))
  960. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.13976669, 1.29998469, 0.0064239502, -1, 7.81620258e-007, -5.75184822e-006, 7.81646975e-007, 1.00000095, 3.88622823e-007, 6.10947609e-006, 3.88666422e-007, -1.0000006))
  961. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000033, 0.200000376, 0.200000003))
  962. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.03976822, 0.899980307, 0.0064125061, -1, 7.82491384e-007, -5.75184822e-006, 7.82518043e-007, 1.00000095, 3.9576264e-007, 6.10947609e-006, 3.95806239e-007, -1.0000006))
  963. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000003, 0.400000006))
  964. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00278091431, -0.699974537, 0.937519073, -7.06315041e-006, -1.23697805e-006, 1.00000072, -1.12531188e-006, -1.00000095, -1.23693724e-006, 1, -1.12529187e-006, 6.70552254e-006))
  965. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  966. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  967. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0057182312, -2.10001993, 1.0397644, -7.06315041e-006, 0.000339750521, 1.00000072, 3.41358827e-007, -1.00000095, 0.000339750462, 1, 3.43769329e-007, 6.70552254e-006))
  968. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  969. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000033, 2.60000038, 0.200000003))
  970. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.43976593, 1.49998724, 0.00643157959, -1, 7.81133508e-007, -5.75184822e-006, 7.81160281e-007, 1.00000095, 3.77194482e-007, 6.10947609e-006, 3.77238052e-007, -1.0000006))
  971. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000033, 0.400000393, 0.200000003))
  972. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.0397644, 1.799981, 0.00640869141, -1, 7.82864788e-007, -5.75184822e-006, 7.82891391e-007, 1.00000095, 3.98813171e-007, 6.10947609e-006, 3.98856685e-007, -1.0000006))
  973. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000036, 0.200000003, 0.400000036))
  974. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00316619873, -0.699970961, -0.541133881, 6.46710396e-006, 7.11757536e-007, -1.00000072, -5.82138682e-007, -1.00000095, -7.11712801e-007, -1, 5.82114012e-007, -6.10947609e-006))
  975. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  976. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.400000006))
  977. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0057258606, 0.900016785, -0.739753723, -7.4505806e-006, 0.000342250947, 1.00000072, -2.47193384e-007, 1.00000095, -0.000342250918, -1, -2.49782829e-007, -7.15255737e-006))
  978. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  979. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.600000024, 1.00000012, 0.599999964))
  980. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.84001541, -0.100023985, 0.00176620483, -1, 7.83643713e-007, -5.51342964e-006, 7.83670544e-007, 1.00000095, 3.81563382e-007, 5.87105751e-006, 3.81607123e-007, -1.00000072))
  981. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.600000024, 0.600000024, 0.200000003))
  982. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00459289551, -0.499979734, -1.4393959, 7.89761543e-006, -5.65608218e-007, -1.00000179, -7.77587161e-007, -1.00000262, 5.6575351e-007, -1.00000012, 7.77515424e-007, -6.88433647e-006))
  983. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  984. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000033, 0.400000155, 0.599999964))
  985. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.64005661, 0.599978924, 0.00173950195, -1, 7.80917503e-007, -5.51342964e-006, 7.80982475e-007, 1.00000262, 3.64202009e-007, 6.49690628e-006, 3.64349034e-007, -1.00000191))
  986. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000072, 0.399999976))
  987. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.2366333, -0.200026751, -0.00246047974, -1, 7.56787927e-007, -5.75184822e-006, 7.56851023e-007, 1.00000262, 6.28874716e-007, 6.82473183e-006, 6.29021883e-007, -1.00000191))
  988. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.799999952, 1.20000005, 0.399999976))
  989. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.736637115, -2.5510788e-005, -0.00245285034, -1, 7.98881445e-007, -5.75184822e-006, 7.98944541e-007, 1.00000262, 6.19298987e-007, 6.82473183e-006, 6.19445927e-007, -1.00000191))
  990. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000036, 0.200000003))
  991. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00276947021, -0.3999753, 1.23746872, -7.12275505e-006, -1.24613757e-006, 1.0000031, -1.08483562e-006, -1.00000429, -1.24588792e-006, 1.00000012, -1.08474001e-006, 5.453825e-006))
  992. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  993. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.399999976, 0.400000036, 0.399999976))
  994. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.135440826, -2.5510788e-005, 0.00338745117, 1.00000012, -7.98921292e-007, 5.453825e-006, 7.9902253e-007, 1.00000429, 6.19273123e-007, -7.12275505e-006, -6.19523803e-007, 1.0000031))
  995. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.610000014, 0.800000131, 0.200000003))
  996. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.83781815, -1.74045563e-005, 0.00619506836, -1, 7.80351115e-007, -5.7220459e-006, 7.80415974e-007, 1.00000262, 3.64990427e-007, 6.70552254e-006, 3.65137282e-007, -1.00000179))
  997. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.600000024, 0.400000006, 0.200000003))
  998. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00638580322, -0.79997921, -1.43897247, 0.000111579895, -6.41668478e-008, 1.00000048, 1.08743711e-006, 1.00000083, 6.39935536e-008, -1.00000012, 1.08741108e-006, 0.000111877918))
  999. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1000. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.400000036, 0.400000006))
  1001. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00640487671, -0.599977732, 1.94189835, -7.36117363e-006, 5.59386876e-007, 1.00000191, -5.1072891e-007, -1.00000262, 5.59534215e-007, 1, -5.10656719e-007, 6.34789467e-006))
  1002. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1003. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.600000024, 0.400000006, 0.600000024))
  1004. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00386810303, -0.79993391, 1.83702469, -0.00010445714, -2.80817233e-007, -1.0000006, 6.70409918e-007, 1.00000083, -2.80938991e-007, 1, -6.70420036e-007, -0.000104755163))
  1005. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1006. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.600000024, 0.400000036, 0.400000006))
  1007. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00172424316, -0.599978447, 1.94002914, -7.09295273e-006, 5.7002211e-007, 1.00000191, -5.03831359e-007, -1.00000262, 5.70169391e-007, 1, -5.03759338e-007, 6.10947609e-006))
  1008. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1009. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000072, 0.599999964))
  1010. Partweld=weld(m,WingHandle2B,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.4394722, -0.200026512, 0.00402832031, -1, 7.7835881e-007, -5.7220459e-006, 7.78423669e-007, 1.00000262, 3.64728379e-007, 6.70552254e-006, 3.64875291e-007, -1.00000179))
  1011.  
  1012. HandleArm=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","HandleArm",Vector3.new(1.04999995, 0.400000006, 1.04999995))
  1013. HandleArmweld=weld(m,Character["Right Arm"],HandleArm,CFrame.new(0, 0, 0, 0, 0, -1, 0, 0.999993801, 0, 1, 0, 0),CFrame.new(-0.0193786621, 0.988277435, -0.0015411377, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
  1014. mesh("SpecialMesh",HandleArm,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1015. Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Really black","Hitbox",Vector3.new(1.04999995, 0.480000019, 1.04999995))
  1016. Hitboxweld=weld(m,HandleArm,Hitbox,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.00234222412, 0.740032196, 0.00495147705, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
  1017. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1018. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.150016785, 0.270523071, -0.425022125, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
  1019. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.850000024, 0.850000024, 0.850000024))
  1020. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.07000005, 0.400000006, 1.07000005))
  1021. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-1.52587891e-005, -0.800033569, 7.62939453e-006, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
  1022. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1023. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.04999995, 0.449999988, 1.04999995))
  1024. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(7.62939453e-006, -0.42502594, 3.81469727e-006, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
  1025. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1026. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.04999995, 0.850000024, 0.600000024))
  1027. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(7.62939453e-006, -0.425014496, -0.225013733, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
  1028. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1029. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1030. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.435020447, 0.270511627, -0.424991608, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
  1031. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.850000024, 0.850000024, 0.850000024))
  1032. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1033. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.149978638, 0.270496368, -0.425022125, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
  1034. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.850000024, 0.850000024, 0.850000024))
  1035. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1036. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.439987183, 0.270507813, -0.425048828, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
  1037. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.850000024, 0.850000024, 0.850000024))
  1038. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1039. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.517841339, -0.199775696, 3.81469727e-005, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
  1040. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset?ID=9756362",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.300000012, 0.200000003))
  1041. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  1042. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.5, -0.799793243, -0.300029755, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
  1043. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  1044. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  1045. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.499992371, -0.799812317, -0.300060272, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
  1046. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  1047. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  1048. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.500045776, -0.799800873, 2.67028809e-005, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
  1049. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  1050. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  1051. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.499992371, -0.799823761, 0.300041199, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
  1052. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  1053. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  1054. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.499984741, -0.799808502, -1.90734863e-005, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
  1055. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  1056. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1057. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(7.62939453e-006, -0.199756622, -0.500049591, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
  1058. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.600000024))
  1059. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  1060. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.5, -0.799850464, 0.299995422, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
  1061. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  1062. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  1063. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.500068665, -0.799812317, 0.300010681, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
  1064. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  1065. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  1066. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.500019073, -0.799770355, 0.30002594, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
  1067. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  1068. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  1069. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.500061035, -0.799808502, -0.299942017, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
  1070. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  1071. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  1072. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.499977112, -0.799823761, -0.299972534, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
  1073. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  1074. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  1075. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.500053406, -0.799842834, -7.62939453e-006, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
  1076. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  1077. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  1078. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.500034332, -0.799797058, 2.28881836e-005, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
  1079. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  1080. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(1.04999995, 0.200000003, 1.04999995))
  1081. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(2.67028809e-005, -0.250026703, 7.62939453e-006, -0.000171573163, -0.00294177281, -1.00000501, -0.000121731515, -1.00000501, 0.00294179446, -1, 0.000122233527, 0.000171213178))
  1082. mesh("SpecialMesh",Part,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 1))
  1083. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 1.04999995))
  1084. Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.424980164, 0.200485229, 0, -0.000171573134, -0.00294178538, -1.00000501, 0.000121701836, 1.00000501, -0.0029418068, 1, -0.000122203841, -0.000171213236))
  1085. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1086.  
  1087. local PE1 = Create("ParticleEmitter"){
  1088. Parent = BackHandle,
  1089. Color = ColorSequence.new(Color3.new (85, 255, 255), Color3.new (85, 255, 255)),
  1090. Transparency = NumberSequence.new(0.5),
  1091. Size = NumberSequence.new(2),
  1092. Texture = "rbxassetid://242093929",
  1093. Lifetime = NumberRange.new(5),
  1094. Enabled = false,
  1095. Rate = 50,
  1096. Rotation = NumberRange.new(100),
  1097. RotSpeed = NumberRange.new(180),
  1098. Speed = NumberRange.new(3),
  1099. LightEmission = 1,
  1100. }
  1101.  
  1102. local PE2 = PE1:Clone()
  1103. PE2.Parent = WingHandleA
  1104. PE2.Enabled = false
  1105.  
  1106. local PE3 = PE1:Clone()
  1107. PE3.Parent = WingHandleB
  1108. PE2.Enabled = false
  1109.  
  1110.  
  1111.  
  1112. function DoubleJump()
  1113. attack = true
  1114. Torso.Velocity=vt(0,150,0)
  1115. PE1.Enabled = true
  1116. PE2.Enabled = true
  1117. PE3.Enabled = true
  1118. so("http://roblox.com/asset/?id=199145327",Torso,1,1)
  1119. so("http://roblox.com/asset/?id=153092348",Torso,1,.9)
  1120. for i = 0,1,0.1 do
  1121. swait()
  1122. --Torso.Velocity=Head.CFrame.lookVector*50
  1123. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(6*i,math.rad(0),math.rad(0)),.3)
  1124. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(10),math.rad(0),math.rad(-0)),.3)
  1125. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-50), math.rad(0), math.rad(10)), 0.3)
  1126. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-50), math.rad(0), math.rad(-10)), 0.3)
  1127. RH.C0=clerp(RH.C0,cf(1,-.5,-.5)*angles(math.rad(0),math.rad(90),math.rad(-50))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
  1128. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-80),math.rad(-20))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
  1129. FakeHandleweld.C0 = clerp(FakeHandleweld.C0,cf(0,0,0)* angles(math.rad(20),0,0),.3)
  1130. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1131. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1132. end
  1133. PE1.Enabled = false
  1134. PE2.Enabled = false
  1135. PE3.Enabled = false
  1136. attack = false
  1137. end
  1138.  
  1139. function attackone()
  1140. attack = true
  1141. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,10,30,math.random(10,20),"Normal",RootPart,.2,1) end)
  1142. for i = 0,1,0.1 do
  1143. swait()
  1144. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(50)),.3)
  1145. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-50)),.3)
  1146. RW.C0 = clerp(RW.C0, CFrame.new(1.3, 0.5, -.5) * angles(math.rad(0), math.rad(130), math.rad(90)), 0.3)
  1147. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-30), math.rad(0), math.rad(-30)), 0.3)
  1148. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1149. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-140),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1150. FakeHandleweld.C0 = clerp(FakeHandleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(20), math.rad(0), math.rad(0)), 0.3)
  1151. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1152. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1153. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1154. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1155. end
  1156. so("http://roblox.com/asset/?id=199145095",Hitbox,1,1)
  1157. for i = 0,1,0.1 do
  1158. swait()
  1159. local blcf = Hitbox.CFrame*CFrame.new(0,.3,0)
  1160. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1161. local h = 5
  1162. local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
  1163. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1164. local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
  1165. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1166. scfr = blcf
  1167. elseif not scfr then
  1168. scfr = blcf
  1169. end
  1170. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(-50)),.3)
  1171. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(50)),.3)
  1172. RW.C0 = clerp(RW.C0, CFrame.new(1.3, 0.5, 0) * angles(math.rad(0), math.rad(-10), math.rad(90)), 0.5)
  1173. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-40), math.rad(0), math.rad(-50)), 0.3)
  1174. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(130),math.rad(10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1175. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-50),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1176. FakeHandleweld.C0 = clerp(FakeHandleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(40), math.rad(0), math.rad(0)), 0.3)
  1177. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1178. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1179. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1180. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1181. end
  1182. attack = false
  1183. scfr = nil
  1184. con:disconnect()
  1185. end
  1186.  
  1187. function attacktwo()
  1188. attack = true
  1189. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,10,30,math.random(10,20),"Normal",RootPart,.2,1) end)
  1190. for i = 0,1,0.1 do
  1191. swait()
  1192. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-50)),.3)
  1193. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(50)),.3)
  1194. RW.C0 = clerp(RW.C0, CFrame.new(1.2, 0.5, 0) * angles(math.rad(0), math.rad(-80), math.rad(-120)), 0.3)
  1195. LW.C0 = clerp(LW.C0, CFrame.new(-.5, 0.5, -.5) * angles(math.rad(0), math.rad(50), math.rad(120)), 0.3)
  1196. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(130),math.rad(-5))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1197. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-50),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
  1198. FakeHandleweld.C0 = clerp(FakeHandleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(-30), math.rad(0), math.rad(0)), 0.3)
  1199. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1200. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1201. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1202. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1203. end
  1204. so("http://roblox.com/asset/?id=199145146",Hitbox,1,1)
  1205. for i = 0,1,0.1 do
  1206. swait()
  1207. local blcf = Hitbox.CFrame*CFrame.new(0,.3,0)
  1208. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1209. local h = 5
  1210. local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
  1211. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1212. local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
  1213. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1214. scfr = blcf
  1215. elseif not scfr then
  1216. scfr = blcf
  1217. end
  1218. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(80)),.3)
  1219. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(10),math.rad(0),math.rad(-70)),.3)
  1220. RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, -.5) * angles(math.rad(0), math.rad(-50), math.rad(-80)), 0.5)
  1221. LW.C0 = clerp(LW.C0, CFrame.new(-.5, 0.5, -.5) * angles(math.rad(0), math.rad(80), math.rad(80)), 0.5)
  1222. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(50),math.rad(-5))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1223. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-130),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
  1224. FakeHandleweld.C0 = clerp(FakeHandleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1225. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1226. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1227. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1228. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1229. end
  1230. attack = false
  1231. scfr = nil
  1232. con:disconnect()
  1233. end
  1234.  
  1235. function attackthree()
  1236. attack = true
  1237. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,10,30,math.random(10,20),"Normal",RootPart,.2,1) end)
  1238. for i = 0,1,0.1 do
  1239. swait()
  1240. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(20),math.rad(0),math.rad(50)),.3)
  1241. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(10),math.rad(-50)),.3)
  1242. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, -0.5) * angles(math.rad(0), math.rad(120), math.rad(120)), 0.3)
  1243. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0.5) * angles(math.rad(-50), math.rad(0), math.rad(-10)), 0.3)
  1244. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(-5),math.rad(60),math.rad(20))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1245. LH.C0=clerp(LH.C0,cf(-.8,-1,-.5)*angles(math.rad(0),math.rad(-140),math.rad(10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1246. FakeHandleweld.C0 = clerp(FakeHandleweld.C0,cf(0,0,0)* angles(math.rad(4),math.rad(0),math.rad(0)),.3)
  1247. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1248. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1249. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1250. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1251. end
  1252. so("http://www.roblox.com/asset/?id=199145204",Hitbox,1,1)
  1253. PE1.Enabled = true
  1254. PE2.Enabled = true
  1255. PE3.Enabled = true
  1256. for i = 0,1,0.1 do
  1257. swait()
  1258. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1259. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1260. local h = 5
  1261. local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
  1262. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1263. local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
  1264. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1265. scfr = blcf
  1266. elseif not scfr then
  1267. scfr = blcf
  1268. end
  1269. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,-0.5)* angles(math.rad(30),math.rad(0),math.rad(-50)),.3)
  1270. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(50)),.3)
  1271. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-20), math.rad(90)), 0.3)
  1272. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-50), math.rad(0), math.rad(-20)), 0.3)
  1273. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(-5),math.rad(140),math.rad(-20))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1274. LH.C0=clerp(LH.C0,cf(-1,-0.4,0)*angles(math.rad(0),math.rad(-60),math.rad(-30))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1275. FakeHandleweld.C0 = clerp(FakeHandleweld.C0,cf(0,0,0)* angles(math.rad(30),math.rad(0),math.rad(0)),.3)
  1276. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1277. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1278. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1279. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1280. Torso.Velocity=Head.CFrame.lookVector*50
  1281. end
  1282. Humanoid.Jump = true
  1283. for i=0,0.6,.5 do
  1284. swait()
  1285. so("http://www.roblox.com/asset/?id=199145327",Hitbox,1,1)
  1286. for i=0,1,0.1 do
  1287. swait()
  1288. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1289. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1290. local h = 5
  1291. local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
  1292. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1293. local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
  1294. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1295. scfr = blcf
  1296. elseif not scfr then
  1297. scfr = blcf
  1298. end
  1299. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,4)*euler(0,1,-6*i), .3)
  1300. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  1301. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(70), math.rad(90)), 0.3)
  1302. LW.C0 = clerp(LW.C0, CFrame.new(.5, 0.5, -.8) * angles(math.rad(0), math.rad(-170), math.rad(-90)), 0.3)
  1303. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(-5),math.rad(80),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1304. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-80),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1305. FakeHandleweld.C0 = clerp(FakeHandleweld.C0,cf(0,0,0)* angles(math.rad(50),math.rad(0),math.rad(0)),.3)
  1306. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1307. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1308. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1309. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1310. end
  1311. end
  1312. attack = false
  1313. scfr = nil
  1314. con:disconnect()
  1315. PE1.Enabled = false
  1316. PE2.Enabled = false
  1317. PE3.Enabled = false
  1318. end
  1319.  
  1320. function AirDash()
  1321. attack = true
  1322. PE1.Enabled = true
  1323. PE2.Enabled = true
  1324. PE3.Enabled = true
  1325. so("http://roblox.com/asset/?id=270989122",Torso,1,1.1)
  1326. so("http://roblox.com/asset/?id=153092348",Torso,1,.9)
  1327. Humanoid.WalkSpeed = 50
  1328. for i = 0,1,0.05 do
  1329. swait()
  1330. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,4)* angles(math.rad(60),math.rad(0),math.rad(0)),.3)
  1331. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-30),math.rad(0),math.rad(0)),.3)
  1332. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(20)), 0.3)
  1333. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-30), math.rad(0), math.rad(-30)), 0.3)
  1334. RH.C0=clerp(RH.C0,cf(1,-.5,-.5)*angles(math.rad(0),math.rad(90),math.rad(-10))*angles(math.rad(-2),math.rad(0),math.rad(0)),.3)
  1335. LH.C0=clerp(LH.C0,cf(-1,-1,-.3)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-2),math.rad(0),math.rad(0)),.3)
  1336. FakeHandleweld.C0 = clerp(FakeHandleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(20), math.rad(0), math.rad(0)), 0.3)
  1337. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1338. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1339. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1340. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1341. Torso.Velocity=Torso.CFrame.lookVector*150
  1342. end
  1343. Humanoid.WalkSpeed = 16
  1344. attack = false
  1345. scfr = nil
  1346. PE1.Enabled = false
  1347. PE2.Enabled = false
  1348. PE3.Enabled = false
  1349. end
  1350.  
  1351. function Spin()
  1352. attack = true
  1353. Humanoid.Jump = true
  1354. for i = 1,2 do
  1355. swait()
  1356. so("http://roblox.com/asset/?id=199145327",Torso,1,1)
  1357. for i = 0,1,0.1 do
  1358. swait()
  1359. local blcf = Hitbox.CFrame*CFrame.new(0,.3,0)
  1360. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1361. local h = 5
  1362. local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
  1363. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1364. local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
  1365. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1366. scfr = blcf
  1367. elseif not scfr then
  1368. scfr = blcf
  1369. end
  1370. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,5)* angles(6*i,math.rad(0),math.rad(0)),.3)
  1371. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-30),math.rad(0),math.rad(0)),.3)
  1372. RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, -.5) * angles(math.rad(90), math.rad(0), math.rad(-50)), 0.3)
  1373. LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.5, -.5) * angles(math.rad(90), math.rad(0), math.rad(50)), 0.3)
  1374. RH.C0=clerp(RH.C0,cf(1,-.5,-.5)*angles(math.rad(0),math.rad(90),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1375. LH.C0=clerp(LH.C0,cf(-1,-.5,-.5)*angles(math.rad(0),math.rad(-90),math.rad(10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1376. FakeHandleweld.C0 = clerp(FakeHandleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(40), math.rad(-50), math.rad(30)), 0.3)
  1377. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1378. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1379. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1380. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1381. end
  1382. end
  1383. attack = false
  1384. end
  1385.  
  1386. function MagniDamage(Hit,Part,magni,mindam,maxdam,knock,Type)
  1387. for _,c in pairs(workspace:children()) do
  1388. local hum=c:findFirstChild("Humanoid")
  1389. if hum~=nil then
  1390. local head=c:findFirstChild("Torso")
  1391. if head~=nil then
  1392. local targ=head.Position-Part.Position
  1393. local mag=targ.magnitude
  1394. if mag<=magni and c.Name~=Player.Name then
  1395. Damagefunc(Hit,head,mindam,maxdam,knock,Type,RootPart,.2,1,3)
  1396. end
  1397. end
  1398. end
  1399. end
  1400. end
  1401.  
  1402. function ShockRings()
  1403. local shock = Create("Part"){
  1404. FormFactor = "Custom",
  1405. Size = Vector3.new(1, 1, 1),
  1406. BrickColor = BrickColor.new("Really black"),
  1407. Anchored = true,
  1408. Name = "Shock Ring",
  1409. CanCollide = false,
  1410. Parent = workspace,
  1411. Material = "SmoothPlastic",
  1412. }
  1413. local mesh = Create("SpecialMesh"){
  1414. MeshType = "FileMesh",
  1415. MeshId = "http://www.roblox.com/Asset/?id=3270017",
  1416. Parent = shock,
  1417. }
  1418. MagniDamage(Hitbox,Torso,50,50,90,50,"Knockdown")
  1419. local shock2 = shock:Clone()
  1420. shock2.Parent = workspace
  1421. local shock3 = shock:Clone()
  1422. shock3.Parent = workspace
  1423. local shockAngle = CFrame.fromEulerAnglesXYZ(math.rad(90 + math.random(-5, 5)), math.rad(math.random(-5, 5)), math.rad(math.random(-5, 5)))
  1424. local shock2Angle = CFrame.fromEulerAnglesXYZ(math.rad(90 + math.random(-5, 5)), math.rad(math.random(-5, 5)), math.rad(math.random(-5, 5)))
  1425. local shock3Angle = CFrame.fromEulerAnglesXYZ(math.rad(90 + math.random(-5, 5)), math.rad(math.random(-5, 5)), math.rad(math.random(-5, 5)))
  1426. local shock2Size = math.random(1, 2)
  1427. local shock3Size = math.random(3, 4)
  1428. for i = 0, 100, 10 do
  1429. local shock4 = Create("Part"){
  1430. FormFactor = "Custom",
  1431. Size = Vector3.new(1, 1, 1),
  1432. BrickColor = BrickColor.new("Really black"),
  1433. Anchored = true,
  1434. Name = "Shock Ring",
  1435. CanCollide = false,
  1436. Parent = workspace,
  1437. Material = "SmoothPlastic",
  1438. CFrame = CFrame.new(Player.Character.Torso.Position - Vector3.new(0, 2, 0)) * CFrame.fromEulerAnglesXYZ(math.rad(math.random(-25, 25)), math.rad(math.random(-25, 25)), math.rad(math.random(-25, 25))),
  1439. }
  1440. local mesh = Instance.new("SpecialMesh")
  1441. mesh.MeshType = "FileMesh"
  1442. mesh.MeshId = "http://www.roblox.com/Asset/?id=20329976"
  1443. mesh.Parent = shock4
  1444. coroutine.resume(coroutine.create(function(part)
  1445. for i = 0, 1, 0.05 do
  1446. part.Transparency = i
  1447. part.Mesh.Scale = Vector3.new(i * 20, i * 20, i * 20)
  1448. wait()
  1449. end
  1450. part:Remove()
  1451. end),shock4)
  1452. shock.Transparency = i / 500
  1453. shock2.Transparency = i / 500
  1454. shock3.Transparency = i / 500
  1455. shock.Mesh.Scale = Vector3.new(i, i, i)
  1456. shock2.Mesh.Scale = Vector3.new(i, i, i) / shock2Size
  1457. shock3.Mesh.Scale = Vector3.new(i, i, i) / shock3Size
  1458. shock.CFrame = CFrame.new(Player.Character.Torso.Position - Vector3.new(0, 3, 0)) * shockAngle
  1459. shock2.CFrame = CFrame.new(Player.Character.Torso.Position - Vector3.new(0, 3, 0)) * shock2Angle
  1460. shock3.CFrame = CFrame.new(Player.Character.Torso.Position - Vector3.new(0, 3, 0)) * shock3Angle
  1461. wait(0.03)
  1462. end
  1463. table.insert(Effects,{shock,"Disappear",.1})
  1464. table.insert(Effects,{shock2,"Disappear",.1})
  1465. table.insert(Effects,{shock3,"Disappear",.1})
  1466. end
  1467.  
  1468. function Judgement()
  1469. attack = true
  1470. Humanoid.Jump = true
  1471. Humanoid.WalkSpeed = 0
  1472. Torso.Velocity=vt(0,100,0)
  1473. PE1.Enabled = true
  1474. PE2.Enabled = true
  1475. PE3.Enabled = true
  1476. so("http://roblox.com/asset/?id=199145327",Torso,1,1)
  1477. so("http://roblox.com/asset/?id=153092348",Torso,1,.9)
  1478. for i = 0,1,0.1 do
  1479. swait()
  1480. --Torso.Velocity=Head.CFrame.lookVector*50
  1481. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,5)* angles(6*i,math.rad(0),math.rad(0)),.3)
  1482. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-30),math.rad(0),math.rad(0)),.3)
  1483. RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, -.5) * angles(math.rad(90), math.rad(0), math.rad(-50)), 0.3)
  1484. LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.5, -.5) * angles(math.rad(90), math.rad(0), math.rad(50)), 0.3)
  1485. RH.C0=clerp(RH.C0,cf(1,-.5,-.5)*angles(math.rad(0),math.rad(90),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1486. LH.C0=clerp(LH.C0,cf(-1,-.5,-.5)*angles(math.rad(0),math.rad(-90),math.rad(10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1487. FakeHandleweld.C0 = clerp(FakeHandleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(40), math.rad(-50), math.rad(30)), 0.3)
  1488. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1489. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1490. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1491. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1492. end
  1493. PE1.Enabled = false
  1494. PE2.Enabled = false
  1495. PE3.Enabled = false
  1496. for i = 0,1,0.05 do
  1497. swait()
  1498. --Torso.Velocity=Head.CFrame.lookVector*50
  1499. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,-.5)* angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  1500. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(30),math.rad(0),math.rad(0)),.3)
  1501. RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, -.5) * angles(math.rad(90), math.rad(0), math.rad(-50)), 0.3)
  1502. LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.5, -.5) * angles(math.rad(90), math.rad(0), math.rad(50)), 0.3)
  1503. RH.C0=clerp(RH.C0,cf(1,-.5,-.5)*angles(math.rad(0),math.rad(90),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1504. LH.C0=clerp(LH.C0,cf(-1,-1,-.5)*angles(math.rad(0),math.rad(-90),math.rad(50))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1505. FakeHandleweld.C0 = clerp(FakeHandleweld.C0, CFrame.new(0, .5, 0) * angles(math.rad(180), math.rad(0), math.rad(0)), 0.3)
  1506. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1507. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1508. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1509. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1510. end
  1511. so("http://roblox.com/asset/?id=199145264",workspace,1,.9)
  1512. so("http://roblox.com/asset/?id=200632875",workspace,1,.9)
  1513. ShockRings()
  1514. Humanoid.WalkSpeed = 16
  1515. attack = false
  1516. end
  1517.  
  1518. function FlyOn()
  1519. attack = true
  1520. PE1.Enabled = true
  1521. PE2.Enabled = true
  1522. PE3.Enabled = true
  1523. so("http://roblox.com/asset/?id=169445572",Torso,1,1)
  1524. for i = 0,1,0.05 do
  1525. swait()
  1526. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,-.6)* angles(math.rad(20),math.rad(0),math.rad(0)),.3)
  1527. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(15),math.rad(0),math.rad(0)),.3)
  1528. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(60), math.rad(0), math.rad(10)), 0.3)
  1529. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(-20)), 0.3)
  1530. RH.C0=clerp(RH.C0,cf(1,-.2,-.5)*angles(math.rad(0),math.rad(90),math.rad(15))*angles(math.rad(-2),math.rad(0),math.rad(0)),.3)
  1531. LH.C0=clerp(LH.C0,cf(-1,-.6,-.3)*angles(math.rad(0),math.rad(-80),math.rad(20))*angles(math.rad(-2),math.rad(0),math.rad(0)),.3)
  1532. FakeHandleweld.C0 = clerp(FakeHandleweld.C0, CFrame.new(0, .4, -.4) * angles(math.rad(-80), math.rad(0), math.rad(0)), 0.3)
  1533. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1534. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1535. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1536. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1537. end
  1538. so("http://roblox.com/asset/?id=169445602",Torso,1,1)
  1539. local FlySound = Create("Sound"){
  1540. Parent = Torso,
  1541. SoundId = "rbxassetid://139582054",
  1542. Volume = 1,
  1543. Looped = true,
  1544. }
  1545. FlySound:Play()
  1546. coroutine.resume(coroutine.create(function()
  1547. local direction = Instance.new("BodyGyro", Torso)
  1548. direction.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1549. direction.cframe = CFrame.new(Torso.Position, mouse.Hit.p)
  1550. repeat wait()
  1551. if Torso:FindFirstChild("BodyGyro") then
  1552. wait()
  1553. direction.cframe = CFrame.new(Torso.Position, mouse.Hit.p)*CFrame.Angles(math.rad(-90),0,0)
  1554. Torso.Velocity = (direction.cframe*CFrame.Angles(math.rad(90),0,0)).lookVector.unit * 300
  1555. end
  1556. until attack == false
  1557. end))
  1558. for i = 0,1,0.05 do
  1559. swait()
  1560. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(60),math.rad(0),math.rad(0)),.3)
  1561. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-30),math.rad(0),math.rad(0)),.3)
  1562. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(20)), 0.3)
  1563. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-30), math.rad(0), math.rad(-30)), 0.3)
  1564. RH.C0=clerp(RH.C0,cf(1,-.7,-.2)*angles(math.rad(0),math.rad(90),math.rad(-10))*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  1565. LH.C0=clerp(LH.C0,cf(-1,-1,-.2)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  1566. FakeHandleweld.C0 = clerp(FakeHandleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(20), math.rad(0), math.rad(0)), 0.3)
  1567. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1568. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1569. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1570. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1571. end
  1572. end
  1573.  
  1574. function FlyOff()
  1575. attack = false
  1576. for i,BodyGyro in pairs(Torso:GetChildren()) do
  1577. if BodyGyro:IsA("BodyGyro") then
  1578. BodyGyro.maxTorque=Vector3.new(0,0,0)
  1579. BodyGyro.cframe=CFrame.new(0,0,0)
  1580. BodyGyro:Destroy()
  1581. end
  1582. end
  1583. for i,v in pairs (Torso:GetChildren()) do
  1584. if v:IsA("Sound") then
  1585. v:Stop()
  1586. v:remove()
  1587. end
  1588. end
  1589. so("http://roblox.com/asset/?id=139582177",Torso,1,1)
  1590. PE1.Enabled = false
  1591. PE2.Enabled = false
  1592. PE3.Enabled = false
  1593. end
  1594.  
  1595. mouse.Button1Down:connect(function()
  1596. if attack == false and attacktype == 1 then
  1597. attacktype = 2
  1598. attackone()
  1599. elseif attack == false and attacktype == 2 then
  1600. attacktype = 3
  1601. attacktwo()
  1602. elseif attack == false and attacktype == 3 then
  1603. attacktype = 1
  1604. attackthree()
  1605. --[[elseif attack == false and attacktype == 4 then
  1606. attacktype = 1
  1607. attackfour()]]--
  1608. end
  1609. end)
  1610.  
  1611. mouse.KeyDown:connect(function(k)
  1612. k=k:lower()
  1613. if attack == false and k == ' ' and Anim == "Jump" then
  1614. DoubleJump()
  1615. elseif attack == false and k == 'w' and Anim == "Jump" then
  1616. AirDash()
  1617. elseif attack == false and k == 'q' then
  1618. Spin()
  1619. elseif attack == false and k == 'e' then
  1620. Judgement()
  1621. elseif attack == false and k == 'g' then
  1622. FlyOn()
  1623. end
  1624. end)
  1625. mouse.KeyUp:connect(function(k)
  1626. if k == 'g' and attack == true then
  1627. FlyOff()
  1628. end
  1629. end)
  1630. --[[
  1631. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1632. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0.2, 0.5) * angles(math.rad(50), math.rad(0), math.rad(0)), 0.3)
  1633. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1634. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1635. ]]--
  1636.  
  1637. local sine = 0
  1638. local change = 1
  1639. local val = 0
  1640.  
  1641. while true do
  1642. swait()
  1643. sine = sine + change
  1644. local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude
  1645. local velderp=RootPart.Velocity.y
  1646. hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
  1647. if equipped==true or equipped==false then
  1648. if attack==false then
  1649. idle=idle+1
  1650. else
  1651. idle=0
  1652. end
  1653. if idle>=500 then
  1654. if attack==false then
  1655. end
  1656. end
  1657. if RootPart.Velocity.y > 1 and hitfloor==nil then
  1658. Anim="Jump"
  1659. if attack==false then
  1660. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1661. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(20),math.rad(0),math.rad(0)),.3)
  1662. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(20)), 0.3)
  1663. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-30), math.rad(0), math.rad(-30)), 0.3)
  1664. RH.C0=clerp(RH.C0,cf(1,-.5,-.5)*angles(math.rad(0),math.rad(90),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1665. LH.C0=clerp(LH.C0,cf(-1,-1,-.3)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1666. FakeHandleweld.C0 = clerp(FakeHandleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(20), math.rad(0), math.rad(0)), 0.3)
  1667. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1668. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1669. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1670. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1671. end
  1672. elseif RootPart.Velocity.y < -1 and hitfloor==nil then
  1673. Anim="Fall"
  1674. if attack==false then
  1675. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(5),math.rad(0),math.rad(0)),.3)
  1676. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(30),math.rad(0),math.rad(0)),.3)
  1677. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-40), math.rad(0), math.rad(40)), 0.3)
  1678. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-50)), 0.3)
  1679. RH.C0=clerp(RH.C0,cf(1,-1,-.5)*angles(math.rad(0),math.rad(90),math.rad(20))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
  1680. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(5))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
  1681. FakeHandleweld.C0 = clerp(FakeHandleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3)
  1682. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1683. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1684. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1685. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1686. end
  1687. elseif torvel<1 and hitfloor~=nil then
  1688. Anim="Idle"
  1689. if attack==false then
  1690. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-30)),.3)
  1691. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(10),math.rad(0),math.rad(30)),.3)
  1692. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(10)), 0.3)
  1693. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-5)), 0.3)
  1694. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-5))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1695. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-70),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
  1696. FakeHandleweld.C0 = clerp(FakeHandleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(20), math.rad(0), math.rad(0)), 0.3)
  1697. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1698. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1699. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1700. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1701. end
  1702. elseif torvel>2 and hitfloor~=nil then
  1703. Anim="Walk"
  1704. if attack==false then
  1705. change=3
  1706. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(20),math.rad(0),math.rad(0)),.3)
  1707. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
  1708. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(50), math.rad(0), math.rad(20)), 0.3)
  1709. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20)*math.cos(sine/13), math.rad(0), math.rad(-10)), 0.3)
  1710. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
  1711. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
  1712. FakeHandleweld.C0 = clerp(FakeHandleweld.C0, CFrame.new(0, .4, -.4) * angles(math.rad(-80), math.rad(0), math.rad(0)), 0.3)
  1713. WingHandleAweld.C0 = clerp(WingHandleAweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1714. WingHandleBweld.C0 = clerp(WingHandleBweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1715. WingHandle2Aweld.C0 = clerp(WingHandle2Aweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1716. WingHandle2Bweld.C0 = clerp(WingHandle2Bweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1717. end
  1718. end
  1719. end
  1720. if #Effects>0 then
  1721. for e=1,#Effects do
  1722. if Effects[e]~=nil then
  1723. local Thing=Effects[e]
  1724. if Thing~=nil then
  1725. local Part=Thing[1]
  1726. local Mode=Thing[2]
  1727. local Delay=Thing[3]
  1728. local IncX=Thing[4]
  1729. local IncY=Thing[5]
  1730. local IncZ=Thing[6]
  1731. if Thing[1].Transparency<=1 then
  1732. if Thing[2]=="Block1" then
  1733. Thing[1].CFrame=Thing[1].CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  1734. Mesh=Thing[1].Mesh
  1735. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  1736. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1737. elseif Thing[2]=="Cylinder" then
  1738. Mesh=Thing[1].Mesh
  1739. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  1740. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1741. elseif Thing[2]=="Blood" then
  1742. Mesh=Thing[7]
  1743. Thing[1].CFrame=Thing[1].CFrame*cf(0,.5,0)
  1744. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  1745. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1746. elseif Thing[2]=="Elec" then
  1747. Mesh=Thing[1].Mesh
  1748. Mesh.Scale=Mesh.Scale+vt(Thing[7],Thing[8],Thing[9])
  1749. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1750. elseif Thing[2]=="Disappear" then
  1751. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1752. end
  1753. else
  1754. Part.Parent=nil
  1755. table.remove(Effects,e)
  1756. end
  1757. end
  1758. end
  1759. end
  1760. end
  1761. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement