Advertisement
Maximalio

Untitled

Mar 19th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 140.08 KB | None | 0 0
  1.  
  2. Player=game:GetService("Players").LocalPlayer
  3. Character=Player.Character
  4. PlayerGui=Player.PlayerGui
  5. Backpack=Player.Backpack
  6. Torso=Character.Torso
  7. Head=Character.Head
  8. Humanoid=Character.Humanoid
  9. m=Instance.new('Model',Character)
  10. LeftArm=Character["Left Arm"]
  11. LeftLeg=Character["Left Leg"]
  12. RightArm=Character["Right Arm"]
  13. RightLeg=Character["Right Leg"]
  14. LS=Torso["Left Shoulder"]
  15. LH=Torso["Left Hip"]
  16. RS=Torso["Right Shoulder"]
  17. RH=Torso["Right Hip"]
  18. Face = Head.face
  19. Neck=Torso.Neck
  20. it=Instance.new
  21. attacktype=1
  22. vt=Vector3.new
  23. cf=CFrame.new
  24. euler=CFrame.fromEulerAnglesXYZ
  25. angles=CFrame.Angles
  26. cloaked=false
  27. necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  28. necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  29. LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
  30. LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
  31. RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
  32. RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
  33. RootPart=Character.HumanoidRootPart
  34. RootJoint=RootPart.RootJoint
  35. RootCF=euler(-1.57,0,3.14)
  36. attack = false
  37. attackdebounce = false
  38. deb=false
  39. equipped=true
  40. hand=false
  41. MMouse=nil
  42. combo=0
  43. mana=0
  44. trispeed=.2
  45. attackmode='none'
  46. local idle=0
  47. local Anim="Idle"
  48. local Effects={}
  49. local gun=false
  50. local shoot=false
  51. player=nil
  52. mana=0
  53. local CurrentMode = "Unsheathed"
  54.  
  55. mouse=Player:GetMouse()
  56. --save shoulders
  57. RSH, LSH=nil, nil
  58. --welds
  59. RW, LW=Instance.new("Weld"), Instance.new("Weld")
  60. RW.Name="Right Shoulder" LW.Name="Left Shoulder"
  61. LH=Torso["Left Hip"]
  62. RH=Torso["Right Hip"]
  63. TorsoColor=Torso.BrickColor
  64. function NoOutline(Part)
  65. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  66. end
  67. player=Player
  68. ch=Character
  69. RSH=ch.Torso["Right Shoulder"]
  70. LSH=ch.Torso["Left Shoulder"]
  71. --
  72. RSH.Parent=nil
  73. LSH.Parent=nil
  74. --
  75. RW.Name="Right Shoulder"
  76. RW.Part0=ch.Torso
  77. RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  78. RW.C1=cf(0, 0.5, 0)
  79. RW.Part1=ch["Right Arm"]
  80. RW.Parent=ch.Torso
  81. --
  82. LW.Name="Left Shoulder"
  83. LW.Part0=ch.Torso
  84. LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  85. LW.C1=cf(0, 0.5, 0)
  86. LW.Part1=ch["Left Arm"]
  87. LW.Parent=ch.Torso
  88.  
  89. local function weldBetween(a, b)
  90. local weldd = Instance.new("ManualWeld")
  91. weldd.Part0 = a
  92. weldd.Part1 = b
  93. weldd.C0 = CFrame.new()
  94. weldd.C1 = b.CFrame:inverse() * a.CFrame
  95. weldd.Parent = a
  96. return weldd
  97. end
  98.  
  99. function nooutline(part)
  100. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  101. end
  102.  
  103. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  104. local fp=it("Part")
  105. fp.formFactor=formfactor
  106. fp.Parent=parent
  107. fp.Reflectance=reflectance
  108. fp.Transparency=transparency
  109. fp.CanCollide=false
  110. fp.Locked=true
  111. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  112. fp.Name=name
  113. fp.Size=size
  114. fp.Position=Character.Torso.Position
  115. nooutline(fp)
  116. fp.Material=material
  117. fp:BreakJoints()
  118. return fp
  119. end
  120.  
  121. function swait(num)
  122. if num==0 or num==nil then
  123. game:service'RunService'.Heartbeat:wait(0)
  124. else
  125. for i=0,num do
  126. game:service'RunService'.Heartbeat:wait(0)
  127. end
  128. end
  129. end
  130.  
  131. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  132. local mesh=it(Mesh)
  133. mesh.Parent=part
  134. if Mesh=="SpecialMesh" then
  135. mesh.MeshType=meshtype
  136. mesh.MeshId=meshid
  137. end
  138. mesh.Offset=offset
  139. mesh.Scale=scale
  140. return mesh
  141. end
  142.  
  143. function weld(parent,part0,part1,c0,c1)
  144. local weld=it("Weld")
  145. weld.Parent=parent
  146. weld.Part0=part0
  147. weld.Part1=part1
  148. weld.C0=c0
  149. weld.C1=c1
  150. return weld
  151. end
  152.  
  153.  
  154. local function CFrameFromTopBack(at, top, back)
  155. local right = top:Cross(back)
  156. return CFrame.new(at.x, at.y, at.z,
  157. right.x, top.x, back.x,
  158. right.y, top.y, back.y,
  159. right.z, top.z, back.z)
  160. end
  161.  
  162. function Triangle(a, b, c)
  163. local edg1 = (c-a):Dot((b-a).unit)
  164. local edg2 = (a-b):Dot((c-b).unit)
  165. local edg3 = (b-c):Dot((a-c).unit)
  166. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  167. a, b, c = a, b, c
  168. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  169. a, b, c = b, c, a
  170. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  171. a, b, c = c, a, b
  172. else
  173. assert(false, "unreachable")
  174. end
  175.  
  176. local len1 = (c-a):Dot((b-a).unit)
  177. local len2 = (b-a).magnitude - len1
  178. local width = (a + (b-a).unit*len1 - c).magnitude
  179.  
  180. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  181.  
  182. local list = {}
  183.  
  184. if len1 > 0.01 then
  185. local w1 = Instance.new('WedgePart', m)
  186. game:GetService("Debris"):AddItem(w1,5)
  187. w1.Material = "SmoothPlastic"
  188. w1.FormFactor = 'Custom'
  189. w1.BrickColor = BrickColor.new("Institutional white")
  190. w1.Transparency = 0
  191. w1.Reflectance = 0
  192. w1.Material = "Neon"
  193. w1.CanCollide = false
  194. NoOutline(w1)
  195. local sz = Vector3.new(0.2, width, len1)
  196. w1.Size = sz
  197. local sp = Instance.new("SpecialMesh",w1)
  198. sp.MeshType = "Wedge"
  199. sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
  200. w1:BreakJoints()
  201. w1.Anchored = true
  202. w1.Parent = workspace
  203. w1.Transparency = 0.3
  204. table.insert(Effects,{w1,"Disappear",.03})
  205. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  206. table.insert(list,w1)
  207. end
  208. if len2 > 0.01 then
  209. local w2 = Instance.new('WedgePart', m)
  210. game:GetService("Debris"):AddItem(w2,5)
  211. w2.Material = "SmoothPlastic"
  212. w2.FormFactor = 'Custom'
  213. w2.BrickColor = BrickColor.new("Institutional white")
  214. w2.Transparency = 0
  215. w2.Reflectance = 0
  216. w2.Material = "Neon"
  217. w2.CanCollide = false
  218. NoOutline(w2)
  219. local sz = Vector3.new(0.2, width, len2)
  220. w2.Size = sz
  221. local sp = Instance.new("SpecialMesh",w2)
  222. sp.MeshType = "Wedge"
  223. sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
  224. w2:BreakJoints()
  225. w2.Anchored = true
  226. w2.Parent = workspace
  227. w2.Transparency = 0.3
  228. table.insert(Effects,{w2,"Disappear",.03})
  229. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  230. table.insert(list,w2)
  231. end
  232. return unpack(list)
  233. end
  234.  
  235.  
  236. so = function(id,par,vol,pit)
  237. coroutine.resume(coroutine.create(function()
  238. local sou = Instance.new("Sound",par or workspace)
  239. sou.Volume=vol
  240. sou.Pitch=pit or 1
  241. sou.SoundId=id
  242. swait()
  243. sou:play()
  244. game:GetService("Debris"):AddItem(sou,6)
  245. end))
  246. end
  247.  
  248. function clerp(a,b,t)
  249. local qa = {QuaternionFromCFrame(a)}
  250. local qb = {QuaternionFromCFrame(b)}
  251. local ax, ay, az = a.x, a.y, a.z
  252. local bx, by, bz = b.x, b.y, b.z
  253. local _t = 1-t
  254. return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t))
  255. end
  256.  
  257. function QuaternionFromCFrame(cf)
  258. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  259. local trace = m00 + m11 + m22
  260. if trace > 0 then
  261. local s = math.sqrt(1 + trace)
  262. local recip = 0.5/s
  263. return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5
  264. else
  265. local i = 0
  266. if m11 > m00 then
  267. i = 1
  268. end
  269. if m22 > (i == 0 and m00 or m11) then
  270. i = 2
  271. end
  272. if i == 0 then
  273. local s = math.sqrt(m00-m11-m22+1)
  274. local recip = 0.5/s
  275. return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip
  276. elseif i == 1 then
  277. local s = math.sqrt(m11-m22-m00+1)
  278. local recip = 0.5/s
  279. return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip
  280. elseif i == 2 then
  281. local s = math.sqrt(m22-m00-m11+1)
  282. local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip
  283. end
  284. end
  285. end
  286.  
  287. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  288. local xs, ys, zs = x + x, y + y, z + z
  289. local wx, wy, wz = w*xs, w*ys, w*zs
  290. local xx = x*xs
  291. local xy = x*ys
  292. local xz = x*zs
  293. local yy = y*ys
  294. local yz = y*zs
  295. local zz = z*zs
  296. 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))
  297. end
  298.  
  299. function QuaternionSlerp(a, b, t)
  300. local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4]
  301. local startInterp, finishInterp;
  302. if cosTheta >= 0.0001 then
  303. if (1 - cosTheta) > 0.0001 then
  304. local theta = math.acos(cosTheta)
  305. local invSinTheta = 1/math.sin(theta)
  306. startInterp = math.sin((1-t)*theta)*invSinTheta
  307. finishInterp = math.sin(t*theta)*invSinTheta
  308. else
  309. startInterp = 1-t
  310. finishInterp = t
  311. end
  312. else
  313. if (1+cosTheta) > 0.0001 then
  314. local theta = math.acos(-cosTheta)
  315. local invSinTheta = 1/math.sin(theta)
  316. startInterp = math.sin((t-1)*theta)*invSinTheta
  317. finishInterp = math.sin(t*theta)*invSinTheta
  318. else
  319. startInterp = t-1
  320. finishInterp = t
  321. end
  322. end
  323. 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
  324. end
  325.  
  326. function rayCast(Pos, Dir, Max, Ignore) -- Origin Position , Direction, MaxDistance , IgnoreDescendants
  327. return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore)
  328. end
  329.  
  330. Damagefunc=function(Part,hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
  331. if hit.Parent==nil then
  332. return
  333. end
  334. local h=hit.Parent:FindFirstChild("Humanoid")
  335. for _,v in pairs(hit.Parent:children()) do
  336. if v:IsA("Humanoid") then
  337. h=v
  338. end
  339. end
  340. if hit.Parent.Parent:FindFirstChild("Torso")~=nil then
  341. h=hit.Parent.Parent:FindFirstChild("Humanoid")
  342. end
  343. if hit.Parent.className=="Hat" then
  344. hit=hit.Parent.Parent:findFirstChild("Head")
  345. end
  346. if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then
  347. if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end
  348. --[[ if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then
  349. return
  350. end]]
  351. -- hs(hit,1.2)
  352. local c=Instance.new("ObjectValue")
  353. c.Name="creator"
  354. c.Value=game:service("Players").LocalPlayer
  355. c.Parent=h
  356. game:GetService("Debris"):AddItem(c,.5)
  357. local Damage=math.random(minim,maxim)
  358. -- h:TakeDamage(Damage)
  359. local blocked=false
  360. local block=hit.Parent:findFirstChild("Block")
  361. if block~=nil then
  362. print(block.className)
  363. if block.className=="NumberValue" then
  364. if block.Value>0 then
  365. blocked=true
  366. if decreaseblock==nil then
  367. block.Value=block.Value-1
  368. end
  369. end
  370. end
  371. if block.className=="IntValue" then
  372. if block.Value>0 then
  373. blocked=true
  374. if decreaseblock~=nil then
  375. block.Value=block.Value-1
  376. end
  377. end
  378. end
  379. end
  380. if blocked==false then
  381. -- h:TakeDamage(Damage)
  382. h.Health=h.Health-Damage
  383. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, Part.BrickColor.Color)
  384. else
  385. h.Health=h.Health-(Damage/2)
  386. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Bright blue").Color)
  387. end
  388. if Type=="Knockdown" then
  389. local hum=hit.Parent.Humanoid
  390. hum.PlatformStand=true
  391. coroutine.resume(coroutine.create(function(HHumanoid)
  392. swait(1)
  393. HHumanoid.PlatformStand=false
  394. end),hum)
  395. local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
  396. --hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
  397. local bodvol=Instance.new("BodyVelocity")
  398. bodvol.velocity=angle*knockback
  399. bodvol.P=5000
  400. bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  401. bodvol.Parent=hit
  402. local rl=Instance.new("BodyAngularVelocity")
  403. rl.P=3000
  404. rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
  405. rl.angularvelocity=Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
  406. rl.Parent=hit
  407. game:GetService("Debris"):AddItem(bodvol,.5)
  408. game:GetService("Debris"):AddItem(rl,.5)
  409. elseif Type=="Normal" then
  410. local vp=Instance.new("BodyVelocity")
  411. vp.P=500
  412. vp.maxForce=Vector3.new(math.huge,0,math.huge)
  413. -- vp.velocity=Character.Torso.CFrame.lookVector*Knockback
  414. if KnockbackType==1 then
  415. vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
  416. elseif KnockbackType==2 then
  417. vp.velocity=Property.CFrame.lookVector*knockback
  418. end
  419. if knockback>0 then
  420. vp.Parent=hit.Parent.Torso
  421. end
  422. game:GetService("Debris"):AddItem(vp,.5)
  423. elseif Type=="Up" then
  424. local bodyVelocity=Instance.new("BodyVelocity")
  425. bodyVelocity.velocity=vt(0,60,0)
  426. bodyVelocity.P=5000
  427. bodyVelocity.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  428. bodyVelocity.Parent=hit
  429. game:GetService("Debris"):AddItem(bodyVelocity,1)
  430. local rl=Instance.new("BodyAngularVelocity")
  431. rl.P=3000
  432. rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
  433. rl.angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
  434. rl.Parent=hit
  435. game:GetService("Debris"):AddItem(rl,.5)
  436. elseif Type=="Snare" then
  437. local bp=Instance.new("BodyPosition")
  438. bp.P=2000
  439. bp.D=100
  440. bp.maxForce=Vector3.new(math.huge,math.huge,math.huge)
  441. bp.position=hit.Parent.Torso.Position
  442. bp.Parent=hit.Parent.Torso
  443. game:GetService("Debris"):AddItem(bp,1)
  444. elseif Type=="Target" then
  445. local Targetting = false
  446. if Targetting==false then
  447. ZTarget=hit.Parent.Torso
  448. coroutine.resume(coroutine.create(function(Part)
  449. so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5)
  450. swait(5)
  451. so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5)
  452. end),ZTarget)
  453. local TargHum=ZTarget.Parent:findFirstChild("Humanoid")
  454. local targetgui=Instance.new("BillboardGui")
  455. targetgui.Parent=ZTarget
  456. targetgui.Size=UDim2.new(10,100,10,100)
  457. local targ=Instance.new("ImageLabel")
  458. targ.Parent=targetgui
  459. targ.BackgroundTransparency=1
  460. targ.Image="rbxassetid://4834067"
  461. targ.Size=UDim2.new(1,0,1,0)
  462. cam.CameraType="Scriptable"
  463. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  464. local dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  465. workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  466. Targetting=true
  467. RocketTarget=ZTarget
  468. for i=1,Property do
  469. --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do
  470. if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then
  471. swait()
  472. end
  473. --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100)
  474. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  475. dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  476. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0)
  477. end
  478. Targetting=false
  479. RocketTarget=nil
  480. targetgui.Parent=nil
  481. cam.CameraType="Custom"
  482. end
  483. end
  484. local debounce=Instance.new("BoolValue")
  485. debounce.Name="DebounceHit"
  486. debounce.Parent=hit.Parent
  487. debounce.Value=true
  488. game:GetService("Debris"):AddItem(debounce,Delay)
  489. c=Instance.new("ObjectValue")
  490. c.Name="creator"
  491. c.Value=Player
  492. c.Parent=h
  493. game:GetService("Debris"):AddItem(c,.5)
  494. end
  495. end
  496.  
  497.  
  498. function ShowDamage(Pos, Text, Time, Color)
  499. local Rate = (1 / 30)
  500. local Pos = (Pos or Vector3.new(0, 0, 0))
  501. local Text = (Text or "")
  502. local Time = (Time or 2)
  503. local Color = (Color or Color3.new(1, 0, 0))
  504. local EffectPart = part("Custom",workspace,"SmoothPlastic",0,1,BrickColor.new(Color),"Effect",vt(0,0,0))
  505. EffectPart.Anchored = true
  506. local BillboardGui = Instance.new("BillboardGui")
  507. BillboardGui.Size = UDim2.new(3, 0, 3, 0)
  508. BillboardGui.Adornee = EffectPart
  509. local TextLabel = Instance.new("TextLabel")
  510. TextLabel.BackgroundTransparency = 1
  511. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  512. TextLabel.Text = Text
  513. TextLabel.TextColor3 = Color
  514. TextLabel.TextScaled = true
  515. TextLabel.Font = Enum.Font.ArialBold
  516. TextLabel.Parent = BillboardGui
  517. BillboardGui.Parent = EffectPart
  518. game.Debris:AddItem(EffectPart, (Time + 0.1))
  519. EffectPart.Parent = game:GetService("Workspace")
  520. Delay(0, function()
  521. local Frames = (Time / Rate)
  522. for Frame = 1, Frames do
  523. wait(Rate)
  524. local Percent = (Frame / Frames)
  525. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  526. TextLabel.TextTransparency = Percent
  527. end
  528. if EffectPart and EffectPart.Parent then
  529. EffectPart:Destroy()
  530. end
  531. end)
  532. end
  533.  
  534. handle=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","handle",Vector3.new(0.400000006, 0.400000006, 2.20000005))
  535. handleweld=weld(m,Character["Right Arm"],handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999994874, 0, 0, 0, 1),CFrame.new(-0.758374214, 0.665901423, -0.105019093, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  536. mesh("BlockMesh",handle,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.74000001, 0.74000001, 0.959999979))
  537. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Pearl","Part",Vector3.new(0.200000003, 0.200000003, 1))
  538. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(1.04904175e-005, 0.0899972916, 6.06000233, -1, -0.000298770639, -1.4152457e-008, 0.000298770639, -1, 1.85732972e-007, -1.42079468e-008, 1.85728723e-007, 1))
  539. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.150000006, 0.899999976, 1))
  540. Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Pearl","Hitbox",Vector3.new(0.200000003, 0.400000006, 4))
  541. Hitboxweld=weld(m,handle,Hitbox,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, -3.57627869e-007, -3.56000185, -1, -0.000298770639, -1.4152457e-008, -0.000298770639, 1, -9.63270068e-008, 1.41812357e-008, -9.6322772e-008, -1))
  542. mesh("BlockMesh",Hitbox,"","",Vector3.new(0, 0, 0),Vector3.new(0.150000006, 0.899999976, 1))
  543. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  544. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-4.76837158e-007, 9.53674316e-007, 1.08999634, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  545. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.800000012, 0.5))
  546. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  547. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -0.96999836, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  548. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.5, 0.5, 0.959999979))
  549. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  550. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -1.01000118, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  551. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.800000012, 0.5))
  552. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  553. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -1.51000309, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  554. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.600000024, 0.600000024, 0.50999999))
  555. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  556. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-0.170712471, 0.170712471, -1.51000333, 0.707312465, -0.70690316, 2.98023171e-008, -0.70690316, -0.707312465, -7.45063673e-008, 7.37483319e-008, 3.16319202e-008, -1))
  557. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.800000012, 0.49000001))
  558. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  559. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0.170704365, -0.17071104, -1.51000333, 0.707312465, -0.70690316, 2.98023171e-008, -0.70690316, -0.707312465, -7.45063673e-008, 7.37483319e-008, 3.16319202e-008, -1))
  560. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.800000012, 0.49000001))
  561. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  562. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-0.170713425, 0.170711994, -1.51000309, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  563. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.800000012, 0.49000001))
  564. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  565. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -1.51000309, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  566. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.800000012, 0.5))
  567. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  568. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0.170715332, -0.170710564, -1.51000309, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  569. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.800000012, 0.49000001))
  570. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  571. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0.170704365, -0.17071104, -1.51000333, 0.707312465, -0.70690316, 2.98023171e-008, -0.70690316, -0.707312465, -7.45063673e-008, 7.37483319e-008, 3.16319202e-008, -1))
  572. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.600000024, 0.495000005))
  573. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  574. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-0.170713425, 0.170711994, -1.51000309, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  575. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.600000024, 0.495000005))
  576. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  577. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-0.170712471, 0.170712471, -1.51000333, 0.707312465, -0.70690316, 2.98023171e-008, -0.70690316, -0.707312465, -7.45063673e-008, 7.37483319e-008, 3.16319202e-008, -1))
  578. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.600000024, 0.495000005))
  579. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  580. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-0.170713425, 0.170711994, -1.51000309, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  581. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.810000002, 0.810000002, 0.200000003))
  582. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  583. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0.170715332, -0.170710564, -1.51000309, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  584. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.810000002, 0.810000002, 0.200000003))
  585. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  586. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0.170704365, -0.17071104, -1.51000333, 0.707312465, -0.70690316, 2.98023171e-008, -0.70690316, -0.707312465, -7.45063673e-008, 7.37483319e-008, 3.16319202e-008, -1))
  587. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.810000002, 0.810000002, 0.200000003))
  588. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  589. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0.170715332, -0.170710564, -1.51000309, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  590. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.600000024, 0.495000005))
  591. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  592. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-0.170712471, 0.170712471, -1.51000333, 0.707312465, -0.70690316, 2.98023171e-008, -0.70690316, -0.707312465, -7.45063673e-008, 7.37483319e-008, 3.16319202e-008, -1))
  593. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.810000002, 0.810000002, 0.200000003))
  594. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  595. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -1.51000309, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  596. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.810000002, 0.810000002, 0.200000003))
  597. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  598. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  599. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.75999999, 0.75999999, 0.959999979))
  600. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  601. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-4.76837158e-007, 9.53674316e-007, 0.300003052, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  602. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.75999999, 0.75999999, 0.959999979))
  603. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  604. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-4.76837158e-007, 9.53674316e-007, 0.900001526, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  605. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.75999999, 0.75999999, 0.959999979))
  606. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  607. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -0.299998283, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  608. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.75999999, 0.75999999, 0.959999979))
  609. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  610. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-4.76837158e-007, 9.53674316e-007, 0.599998474, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  611. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.75999999, 0.75999999, 0.959999979))
  612. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  613. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -1.51000309, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  614. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.699999988, 0.50999999))
  615. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  616. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -1.51000309, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  617. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.200000003, 0.200000003, 0.529999971))
  618. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  619. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -1.51000309, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  620. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.0299999993, 0.600000024, 0.529999971))
  621. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  622. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-9.53674316e-007, 1.28000379, 0.131719112, -0.706890166, -0.707325459, -7.00354633e-007, -7.98286237e-007, -1.92352729e-007, 1, -0.707325459, 0.706890166, -4.2867461e-007))
  623. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0299999993, 1.20000005, 0.0299999993))
  624. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  625. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-1.90734863e-006, 1.29000783, 0.159997821, 0.99999994, 0.000299277192, -4.03083277e-007, 4.03099023e-007, -5.25620685e-008, 1, 0.000299277221, -1, -5.26827044e-008))
  626. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.0299999993, 0.0299999993))
  627. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  628. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-3.33786011e-006, 1.28000331, 0.160001755, 0.000298437197, -1, -6.49640924e-007, -4.01389116e-007, -6.49760693e-007, 1, -1, -0.000298437197, -4.01583009e-007))
  629. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.0299999993, 0.0299999993))
  630. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  631. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-9.53674316e-007, -1.29000759, 0.160004616, 1, 0.000296356593, 1.66819416e-006, 1.66813425e-006, 2.02194087e-007, -1, -0.000296356593, 1, 2.0169972e-007))
  632. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.0299999993, 0.0299999993))
  633. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  634. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-2.98023224e-008, 0, -1.51000285, 0.259103209, -0.965849638, -2.43478695e-008, -0.965849638, -0.259103209, 1.94292014e-008, -2.50742964e-008, 1.84822131e-008, -1))
  635. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.00999999978, 0.699999988, 0.529999971))
  636. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  637. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, -1.1920929e-007, -1.51000333, 1, 0.000298770639, 7.37575547e-008, 0.000298770639, -1, -3.98630178e-008, 7.37456389e-008, 3.98850517e-008, -1))
  638. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.0299999993, 0.839999974, 0.529999971))
  639. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  640. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -1.51000309, -0.2585302, -0.966003239, 4.52830307e-009, -0.966003299, 0.2585302, 4.66956109e-008, -4.62788172e-008, 7.69787079e-009, -1))
  641. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.00999999978, 0.699999988, 0.529999971))
  642. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  643. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -1.51000333, 0.500252426, -0.865881324, 6.15431439e-009, -0.865881383, -0.500252545, -1.57115672e-008, 1.6683062e-008, 2.53084376e-009, -1))
  644. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.00999999978, 0.620000005, 0.529999971))
  645. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  646. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -1.51000333, 0.866171956, -0.499749094, 2.26325767e-008, -0.499749124, -0.866172075, -1.54488635e-008, 2.73242584e-008, 2.07076334e-009, -1))
  647. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.00999999978, 0.620000005, 0.529999971))
  648. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  649. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -1.51000285, -0.499734759, -0.866180182, 1.43536738e-008, -0.866180301, 0.499734819, 2.20713279e-008, -2.62907758e-008, -1.40305889e-009, -1))
  650. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.00999999978, 0.620000005, 0.529999971))
  651. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  652. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -1.51000309, -0.865873158, -0.500266671, -8.10240153e-010, -0.500266731, 0.865873098, -6.15434104e-009, 3.7803769e-009, -4.92354246e-009, -1))
  653. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.00999999978, 0.620000005, 0.529999971))
  654. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  655. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -1.51000309, 0.000298914005, -1, 2.34620079e-009, -1, -0.000298914034, -1.41524428e-008, 1.41531427e-008, -2.34197017e-009, -1))
  656. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.0299999993, 0.839999974, 0.529999971))
  657. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  658. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 4.47034836e-008, -1.51000309, -0.965847313, -0.259112269, 4.92315024e-008, -0.259112269, 0.965847313, 3.17988409e-008, -5.57895738e-008, 1.79563369e-008, -1))
  659. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.00999999978, 0.699999988, 0.529999971))
  660. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  661. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, -4.76837158e-007, -1.51000309, 0.707312405, -0.706903219, 2.98023153e-008, -0.706903219, -0.707312405, -5.96052061e-008, 6.32146495e-008, 2.10921502e-008, -1))
  662. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.0299999993, 0.620000005, 0.529999971))
  663. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  664. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-9.53674316e-007, -1.29000759, 0.160004616, 1, 0.000296356593, 1.66819416e-006, 1.66813425e-006, 2.02194087e-007, -1, -0.000296356593, 1, 2.0169972e-007))
  665. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0299999993, 1.20000005, 0.0299999993))
  666. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  667. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-2.50339508e-006, -1.29000783, 0.159993649, 0.000298437197, -1, 4.54213307e-007, 7.38960466e-008, -4.54191252e-007, -1, 1, 0.000298437197, 7.37605035e-008))
  668. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0299999993, 1.20000005, 0.0299999993))
  669. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  670. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -1.51000285, -0.96600318, 0.258530378, 1.0630022e-007, 0.258530378, 0.96600318, 1.78234654e-008, -9.80784449e-008, 4.46993589e-008, -1))
  671. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, -0.00200000009),Vector3.new(0.00999999978, 0.699999988, 0.529999971))
  672. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  673. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-3.33786011e-006, 1.28000331, 0.160001755, 0.000298437197, -1, -6.49640924e-007, -4.01389116e-007, -6.49760693e-007, 1, -1, -0.000298437197, -4.01583009e-007))
  674. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0299999993, 1.20000005, 0.0299999993))
  675. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  676. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-1.90734863e-006, 1.29000783, 0.159997821, 0.99999994, 0.000299277192, -4.03083277e-007, 4.03099023e-007, -5.25620685e-008, 1, 0.000299277221, -1, -5.26827044e-008))
  677. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0299999993, 1.20000005, 0.0299999993))
  678. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  679. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(0, 0, -1.01000118, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  680. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.699999988, 0.50999999))
  681. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  682. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-1.00135803e-005, -1.29000735, 0.131716251, 0.707310736, -0.706904888, 1.62422623e-006, 1.29611203e-006, -1.00080945e-006, -1, 0.706904888, 0.707310736, 2.08344062e-007))
  683. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0299999993, 1.20000005, 0.0299999993))
  684. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  685. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(6.19888306e-006, -1.29000759, 0.131710052, -0.706890106, -0.707325518, 4.47034779e-007, -2.79956112e-007, -3.52225243e-007, -1, 0.707325518, -0.706890106, 5.09642852e-008))
  686. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0299999993, 1.20000005, 0.0299999993))
  687. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  688. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-3.33786011e-006, 1.29000735, 0.131717682, 0.707312644, -0.706902981, -4.91738319e-007, 2.97979739e-007, -3.97473116e-007, 1, -0.706902981, -0.707312644, -7.04947851e-008))
  689. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0299999993, 1.20000005, 0.0299999993))
  690. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  691. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-6.67572021e-006, 1.27999997, 0.160003662, -0.706890166, -0.707325459, -7.00354633e-007, -7.98286237e-007, -1.92352644e-007, 1, -0.707325459, 0.706890166, -4.28674724e-007))
  692. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.0299999993, 0.0299999993))
  693. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  694. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-6.19888306e-006, 1.29000735, 0.160003662, 0.707312644, -0.706902981, -4.91738319e-007, 2.97979739e-007, -3.97473116e-007, 1, -0.706902981, -0.707312644, -7.04947851e-008))
  695. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.0299999993, 0.0299999993))
  696. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  697. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-3.33786011e-006, -1.29000735, 0.160000324, 0.707310736, -0.706904888, 1.65402855e-006, 1.30139119e-006, -1.03768627e-006, -1, 0.706904888, 0.707310736, 1.85992647e-007))
  698. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.0299999993, 0.0299999993))
  699. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  700. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(4.76837158e-006, -1.29000759, 0.159996033, -0.706890106, -0.707325518, 4.47034779e-007, -2.79956055e-007, -3.52225271e-007, -1, 0.707325518, -0.706890106, 5.09643705e-008))
  701. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.0299999993, 0.0299999993))
  702. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  703. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-4.76837158e-007, 9.53674316e-007, 1.08999634, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1))
  704. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.600000024, 0.50999999))
  705. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  706. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(-2.50339508e-006, -1.29000783, 0.159993649, 0.000298437197, -1, 4.54213307e-007, 7.38960466e-008, -4.54191252e-007, -1, 1, 0.000298437197, 7.37605035e-008))
  707. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.0299999993, 0.0299999993))
  708. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  709. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-007, 2.26979995, -2.26983905, -1, -0.000298770639, -1.4152457e-008, -0.000211273946, 0.707110763, 0.707102776, -0.000211251521, 0.707102776, -0.707110822))
  710. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.0599999987, 1.36000001))
  711. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  712. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 1.98695636, -1.98699224, -1, -0.000298770639, -1.4152457e-008, -0.000211273946, 0.707110763, 0.707102776, -0.000211251521, 0.707102776, -0.707110822))
  713. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.0599999987, 1.36000001))
  714. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  715. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 2.55263519, -2.55267763, -1, -0.000298770639, -1.4152457e-008, -0.000211273946, 0.707110763, 0.707102776, -0.000211251521, 0.707102776, -0.707110822))
  716. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.0599999987, 1.36000001))
  717. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  718. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 2.12837481, -2.12841225, -1, -0.000298770639, -1.4152457e-008, -0.000211273946, 0.707110763, 0.707102776, -0.000211251521, 0.707102776, -0.707110822))
  719. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.0599999987, 1.36000001))
  720. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  721. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 2.6940589, -2.69410276, -1, -0.000298770639, -1.4152457e-008, -0.000211273946, 0.707110763, 0.707102776, -0.000211251521, 0.707102776, -0.707110822))
  722. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.0599999987, 1.36000001))
  723. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
  724. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, -9.53674316e-006, -1.61000156, -1, -0.000298770639, -1.4152457e-008, -0.000298770639, 1, -9.63270068e-008, 1.41812357e-008, -9.6322772e-008, -1))
  725. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.910000026, 0.5))
  726. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.80000001192093,"New Yeller","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
  727. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 1.1920929e-006, -2.54999828, -1, -0.000298770639, -1.4152457e-008, -0.000298770639, 1, -9.63270068e-008, 1.41812357e-008, -9.6322772e-008, -1))
  728. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.910000026, 0.899999976))
  729. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.60000002384186,"New Yeller","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
  730. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 1.1920929e-006, -2.22999287, -1, -0.000298770639, -1.4152457e-008, -0.000298770639, 1, -9.63270068e-008, 1.41812357e-008, -9.6322772e-008, -1))
  731. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.910000026, 0.699999988))
  732. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.5,"New Yeller","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
  733. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 1.1920929e-006, -2.08999348, -1, -0.000298770639, -1.4152457e-008, -0.000298770639, 1, -9.63270068e-008, 1.41812357e-008, -9.6322772e-008, -1))
  734. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.910000026, 0.699999988))
  735. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.10000002384186,"New Yeller","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
  736. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 1.1920929e-006, -1.71999836, -1, -0.000298770639, -1.4152457e-008, -0.000298770639, 1, -9.63270068e-008, 1.41812357e-008, -9.6322772e-008, -1))
  737. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.910000026, 0.600000024))
  738. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.89999997615814,"New Yeller","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
  739. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(1.71661377e-005, 1.07288361e-006, -2.739995, -1, -0.000298770639, -1.4152457e-008, -0.000298770639, 1, -9.63270068e-008, 1.41812357e-008, -9.6322772e-008, -1))
  740. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.910000026, 1))
  741. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.30000001192093,"New Yeller","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
  742. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 1.1920929e-006, -1.8399992, -1, -0.000298770639, -1.4152457e-008, -0.000298770639, 1, -9.63270068e-008, 1.41812357e-008, -9.6322772e-008, -1))
  743. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.910000026, 0.600000024))
  744. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"New Yeller","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
  745. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 1.1920929e-006, -1.95999622, -1, -0.000298770639, -1.4152457e-008, -0.000298770639, 1, -9.63270068e-008, 1.41812357e-008, -9.6322772e-008, -1))
  746. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.910000026, 0.600000024))
  747. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.69999998807907,"New Yeller","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
  748. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 1.1920929e-006, -2.3799963, -1, -0.000298770639, -1.4152457e-008, -0.000298770639, 1, -9.63270068e-008, 1.41812357e-008, -9.6322772e-008, -1))
  749. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.910000026, 0.800000012))
  750. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 3.60000014))
  751. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-007, -9.65595245e-006, -3.31000209, -1, -0.000298770639, -1.4152457e-008, -0.000298770639, 1, -9.63270068e-008, 1.41812357e-008, -9.6322772e-008, -1))
  752. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.100000001, 1))
  753. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.400000036))
  754. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 0.100015044, 5.91000271, -1, -0.000298770639, 1.34186394e-006, 0.000298770639, -1, 9.63269216e-008, 1.34183506e-006, 9.6727824e-008, 1))
  755. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.100000001, 1))
  756. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  757. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 3.11831951, -3.11836815, -1, -0.000298770639, -1.4152457e-008, -0.000211273946, 0.707110763, 0.707102776, -0.000211251521, 0.707102776, -0.707110822))
  758. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.0599999987, 1.36000001))
  759. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  760. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-007, 2.97690248, -2.97694969, -1, -0.000298770639, -1.4152457e-008, -0.000211273946, 0.707110763, 0.707102776, -0.000211251521, 0.707102776, -0.707110822))
  761. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.0599999987, 1.36000001))
  762. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  763. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 2.83547997, -2.83552551, -1, -0.000298770639, -1.4152457e-008, -0.000211273946, 0.707110763, 0.707102776, -0.000211251521, 0.707102776, -0.707110822))
  764. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.0599999987, 1.36000001))
  765. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  766. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 2.41121674, -2.41125751, -1, -0.000298770639, -1.4152457e-008, -0.000211273946, 0.707110763, 0.707102776, -0.000211251521, 0.707102776, -0.707110822))
  767. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.0599999987, 1.36000001))
  768. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.600000024))
  769. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(5.7220459e-006, -0.0999906063, 4.81000566, -1, -0.000298770639, 1.34186394e-006, 0.000298770639, -1, 9.63269216e-008, 1.34183506e-006, 9.6727824e-008, 1))
  770. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.100000001, 1))
  771. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.400000036))
  772. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(7.62939453e-006, 9.89437103e-006, 5.31000233, -1, -0.000298770639, 1.34186394e-006, 0.000298770639, -1, 9.63269216e-008, 1.34183506e-006, 9.6727824e-008, 1))
  773. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.100000001, 1))
  774. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 4.20000029))
  775. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, -0.100016236, -3.61000133, -1, -0.000298770639, -1.4152457e-008, -0.000298770639, 1, -9.63270068e-008, 1.41812357e-008, -9.6322772e-008, -1))
  776. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.100000001, 1))
  777. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 3.00000024))
  778. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(9.53674316e-006, 0.0999947786, -3.01000309, -1, -0.000298770639, -1.4152457e-008, -0.000298770639, 1, -9.63270068e-008, 1.41812357e-008, -9.6322772e-008, -1))
  779. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.159999996, 0.100000001, 1))
  780. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Pearl","Part",Vector3.new(0.200000003, 0.200000003, 0.600000024))
  781. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, -0.706889808, -0.707325816, -2.37656984e-016, -0.707325816, 0.706889808, -2.72852357e-035, 1.23851543e-016, 1.23927789e-016, -1),CFrame.new(2.86102295e-006, -0.0899988413, 5.86000156, -1, -0.000298770639, -1.4152457e-008, 0.000298770639, -1, 1.85732972e-007, -1.42079468e-008, 1.85728723e-007, 1))
  782. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.150000006, 0.899999976, 1))
  783.  
  784. HandleArm=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","HandleArm",Vector3.new(1.04999995, 0.400000006, 1.04999995))
  785. 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))
  786. mesh("SpecialMesh",HandleArm,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  787. Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Really black","Hitbox",Vector3.new(1.04999995, 0.480000019, 1.04999995))
  788. 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))
  789. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  790. 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))
  791. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.850000024, 0.850000024, 0.850000024))
  792. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.07000005, 0.400000006, 1.07000005))
  793. 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))
  794. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  795. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.04999995, 0.449999988, 1.04999995))
  796. 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))
  797. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  798. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.04999995, 0.850000024, 0.600000024))
  799. 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))
  800. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  801. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  802. 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))
  803. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.850000024, 0.850000024, 0.850000024))
  804. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  805. 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))
  806. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.850000024, 0.850000024, 0.850000024))
  807. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  808. 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))
  809. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.850000024, 0.850000024, 0.850000024))
  810. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  811. 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))
  812. 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))
  813. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  814. 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))
  815. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  816. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  817. 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))
  818. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  819. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  820. 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))
  821. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  822. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  823. 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))
  824. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  825. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  826. 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))
  827. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  828. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  829. 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))
  830. 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))
  831. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  832. 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))
  833. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  834. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  835. 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))
  836. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  837. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  838. 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))
  839. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  840. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  841. 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))
  842. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  843. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  844. 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))
  845. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  846. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  847. 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))
  848. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  849. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
  850. 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))
  851. mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
  852. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(1.04999995, 0.200000003, 1.04999995))
  853. 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))
  854. mesh("SpecialMesh",Part,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 1))
  855. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 1.04999995))
  856. 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))
  857. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  858.  
  859. HandleSheathe=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","HandleSheathe",Vector3.new(0.200000003, 0.400000006, 5.4000001))
  860. HandleSheatheweld=weld(m,Character["Torso"],HandleSheathe,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999994993, 0, 0, 0, 1),CFrame.new(-0.47948885, 0.0231413841, -0.372282982, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0))
  861. mesh("BlockMesh",HandleSheathe,"","",Vector3.new(0, 0, -0.00100000005),Vector3.new(0.800000012, 0.899999976, 1))
  862. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 5.4000001))
  863. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, 8.10623169e-006, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0))
  864. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  865. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 0.400000036))
  866. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.64140439, 0.00237417221, 0, 0, 1, -0.521158814, -0.853459716, 0, 0.853459716, -0.521158814, 0))
  867. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 0.300000012, 0.300000012))
  868. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 0.400000036))
  869. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.55078983, 0.685926437, 0, 0, 1, -0.282514036, -0.959263146, 0, 0.959263146, -0.282514036, 0))
  870. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.08000004, 0.400000006, 0.400000006))
  871. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 0.400000036))
  872. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -1.86607623, 1.86943388, 0, 0, 1, 0.23497206, -0.972002208, 0, 0.972002208, 0.23497206, 0))
  873. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.03999996, 0.720000029, 0.720000029))
  874. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 0.400000036))
  875. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.28633738, 1.32275629, 0, 0, 1, -0.0246080048, -0.999697208, 0, 0.999697208, -0.0246080048, 0))
  876. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.519999981, 0.519999981))
  877. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  878. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.134349585, 0.289924145, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  879. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.629999995, 0.629999995))
  880. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  881. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -1.54857218, 1.70412493, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  882. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.629999995, 0.629999995))
  883. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  884. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -1.35057604, 1.19500494, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  885. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.629999995, 0.629999995))
  886. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  887. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, 0.572748661, -0.417183876, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  888. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.629999995, 0.629999995))
  889. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  890. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.64348197, 0.487906456, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  891. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.629999995, 0.629999995))
  892. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  893. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, 0.0636363029, -0.219212532, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  894. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.629999995, 0.629999995))
  895. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  896. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.841456175, 0.997021198, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  897. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.629999995, 0.629999995))
  898. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 0.200000018))
  899. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.2599833, 0.0500040054, 0, 0, -1, -0.521158814, -0.853459716, 0, -0.853459716, 0.521158814, 0))
  900. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0.00499999989),Vector3.new(1.01999998, 0.800000012, 0.449999988))
  901. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  902. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, 0.770748496, -0.926301956, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  903. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.629999995, 0.629999995))
  904. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 0.200000018))
  905. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.25998688, 0.0499887466, 0, 0, 1, -0.521158814, -0.853459716, 0, 0.853459716, -0.521158814, 0))
  906. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0.00499999989),Vector3.new(1.01999998, 0.800000012, 0.449999988))
  907. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.400000006, 0.200000018))
  908. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.21996212, 0.0300107002, 0, 0, -1, -0.521158814, -0.853459716, 0, -0.853459716, 0.521158814, 0))
  909. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.02499998, 0.600000024, 0.300000012))
  910. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.400000006, 0.400000036))
  911. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.64140439, 0.00237417221, 0, 0, 1, -0.521158814, -0.853459716, 0, 0.853459716, -0.521158814, 0))
  912. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.11000001, 0.300000012, 0.300000012))
  913. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.400000006, 0.200000018))
  914. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.21999311, 0.0299911499, 0, 0, 1, -0.521158814, -0.853459716, 0, 0.853459716, -0.521158814, 0))
  915. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.02499998, 0.600000024, 0.300000012))
  916. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.200000003, 0.200000033))
  917. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.0299611092, 2.60000229, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0))
  918. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.005, 0.300000012, 1))
  919. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  920. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.0300388336, 2.59999752, 0, 0, -1, 0.853464603, -0.521150768, 0, -0.521150768, -0.853464603, 0))
  921. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.005, 0.300000012, 1))
  922. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.200000003, 0.400000036))
  923. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.0300078392, 2.29998899, 0, 0, -1, -0.853464603, 0.521150768, 0, 0.521150768, 0.853464603, 0))
  924. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.005, 0.300000012, 1))
  925. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.200000003, 0.400000036))
  926. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.029999733, 2.29998302, 0, 0, 1, 0.853464603, -0.521150768, 0, 0.521150768, 0.853464603, 0))
  927. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.005, 0.300000012, 1))
  928. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Bright yellow","Part",Vector3.new(0.200000003, 0.400000006, 4.60000038))
  929. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, 1.38282776e-005, 0.199996471, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0))
  930. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.005, 0.300000012, 1))
  931. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1))
  932. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -1.09672546e-005, -1.79999304, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0))
  933. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.899999976, 1))
  934. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  935. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.141419888, 0.282840252, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  936. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.699999988, 0.699999988))
  937. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  938. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.636410832, 0.494980812, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  939. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.699999988, 0.699999988))
  940. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  941. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, 0.777803659, -0.919229984, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  942. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.699999988, 0.699999988))
  943. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  944. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -1.55564058, 1.6970582, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  945. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.699999988, 0.699999988))
  946. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  947. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.8485291, 0.98994875, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  948. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.699999988, 0.699999988))
  949. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000018))
  950. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.59999704, -0.100004673, 0, 0, -1, 0.521158814, 0.853459716, 0, 0.853459716, -0.521158814, 0))
  951. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.100000001))
  952. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 4.5999999))
  953. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.0999894142, 0.200005531, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0))
  954. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.100000001, 1))
  955. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  956. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -1.3435024, 1.20208311, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  957. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.699999988, 0.699999988))
  958. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  959. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, 0.0707153082, -0.2121315, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  960. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.699999988, 0.699999988))
  961. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000018))
  962. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.59998941, -0.0999932289, 0, 0, 1, 0.521158814, 0.853459716, 0, -0.853459716, 0.521158814, 0))
  963. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.100000001))
  964. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  965. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, 0.565685391, -0.424254894, 0, 0, 1, -0.23497206, 0.972002208, 0, -0.972002208, -0.23497206, 0))
  966. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.699999988, 0.699999988))
  967. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 4.5999999))
  968. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, 0.100010395, 0.199995995, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0))
  969. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.100000001, 1))
  970. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.400000006, 0.200000018))
  971. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.29997611, 0.0500164032, 0, 0, -1, -0.521158814, -0.853459716, 0, -0.853459716, 0.521158814, 0))
  972. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.600000024))
  973. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.400000006, 0.400000036))
  974. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.685966015, -2.55077887, 0, 0, 1, -0.959267616, 0.282498896, 0, -0.282498896, -0.959267616, 0))
  975. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.07000005, 0.479999989, 0.479999989))
  976. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.400000006, 0.400000036))
  977. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.00239944458, -2.64140463, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0))
  978. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.09000003, 0.379999995, 0.379999995))
  979. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.400000006, 0.400000036))
  980. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -1.32278585, -2.28631997, 0, 0, 1, -0.999697506, 0.0245949887, 0, -0.0245949887, -0.999697506, 0))
  981. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.600000024, 0.600000024))
  982. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.400000006, 0.400000036))
  983. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -1.86607623, 1.86943388, 0, 0, 1, 0.23497206, -0.972002208, 0, 0.972002208, 0.23497206, 0))
  984. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.800000012, 0.800000012))
  985. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.400000006))
  986. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.12187314, -1.0577054, 0, 0, -1, -0.0246080048, -0.999697208, 0, -0.999697208, 0.0246080048, 0))
  987. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.200000003, 1))
  988. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.400000036))
  989. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.40646172, 0.211781502, 0, 0, 1, -0.521158814, -0.853459716, 0, 0.853459716, -0.521158814, 0))
  990. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.200000003, 1))
  991. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.400000036))
  992. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.03611207, 1.4662714, 0, 0, 1, -0.0246080048, -0.999697208, 0, 0.999697208, -0.0246080048, 0))
  993. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.200000003, 1))
  994. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.400000036))
  995. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.12530613, -1.05176783, 0, 0, 1, -0.878063679, -0.478543818, 0, 0.478543818, -0.878063679, 0))
  996. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.200000003, 1))
  997. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.400000006))
  998. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.40645671, 0.214931965, 0, 0, -1, -0.521158814, -0.853459716, 0, -0.853459716, 0.521158814, 0))
  999. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.200000003, 1))
  1000. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.400000006))
  1001. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.03452969, 1.46898675, 0, 0, -1, -0.878063679, -0.478543818, 0, -0.478543818, 0.878063679, 0))
  1002. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.200000003, 1))
  1003. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.600000024))
  1004. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -1.11445045, 2.42006826, 0, 0, -1, -0.999697506, 0.0245949887, 0, 0.0245949887, 0.999697506, 0))
  1005. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.200000003, 1))
  1006. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.200000003, 0.600000024))
  1007. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -1.11713958, 2.4185133, 0, 0, 1, 0.478539169, -0.878066301, 0, 0.878066301, 0.478539169, 0))
  1008. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.200000003, 1))
  1009. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(0.200000003, 0.400000006, 0.200000018))
  1010. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.29999256, 0.049987793, 0, 0, 1, -0.521158814, -0.853459716, 0, 0.853459716, -0.521158814, 0))
  1011. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.600000024))
  1012. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000018))
  1013. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.14536762, -0.877007008, 0, 0, -1, -0.0246080048, -0.999697208, 0, -0.999697208, 0.0246080048, 0))
  1014. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 1, 1))
  1015. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.400000036))
  1016. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.27534819, 0.91332221, 0, 0, -1, -0.724288762, -0.689496756, 0, -0.689496756, 0.724288762, 0))
  1017. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.970000029, 1, 1))
  1018. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.400000036))
  1019. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -1.57492399, 2.07987404, 0, 0, -1, -0.971999764, -0.234981939, 0, -0.234981939, 0.971999764, 0))
  1020. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  1021. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000018))
  1022. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.14538002, -0.877015948, 0, 0, 1, -0.878063679, -0.478543818, 0, 0.478543818, -0.878063679, 0))
  1023. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 1, 1))
  1024. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.400000036))
  1025. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -2.2753613, 0.913320065, 0, 0, 1, -0.282514036, -0.959263146, 0, 0.959263146, -0.282514036, 0))
  1026. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.970000029, 1, 1))
  1027. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.400000036))
  1028. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -1.57489944, 2.07988501, 0, 0, 1, 0.23497206, -0.972002208, 0, 0.972002208, 0.23497206, 0))
  1029. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  1030. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.600000024))
  1031. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.447159052, 2.77529073, 0, 0, 1, 0.689497352, -0.724288344, 0, 0.724288344, 0.689497352, 0))
  1032. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 1, 1))
  1033. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.600000024))
  1034. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.447195053, 2.7752862, 0, 0, -1, -0.959267378, 0.282500088, 0, 0.282500088, 0.959267378, 0))
  1035. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 1, 1))
  1036. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.600000024))
  1037. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.0999827385, 2.99998784, 0, 0, 1, 0.853464603, -0.521150768, 0, 0.521150768, 0.853464603, 0))
  1038. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1039. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.600000024))
  1040. Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, 0, 0, 1, -0.853464603, 0.521150768, 0, -0.521150768, -0.853464603, 0),CFrame.new(0, -0.100019932, 2.99999213, 0, 0, -1, -0.853464603, 0.521150768, 0, 0.521150768, 0.853464603, 0))
  1041. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1042.  
  1043.  
  1044. local Lite = it("PointLight",Torso)
  1045. Lite.Color = Color3.new(255, 255, 0)
  1046. Lite.Range = 8
  1047. Lite.Brightness = 10
  1048. Lite.Shadows = true
  1049.  
  1050. function BreakEffect(brickcolor,cframe,x1,y1,z1)
  1051. local prt=part("Custom",workspace,"Neon",0,0,"Institutional white","Effect",vt(0.5,0.5,0.5))
  1052. prt.Anchored=true
  1053. prt.CFrame=cframe*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  1054. local msh=mesh("SpecialMesh",prt,"Sphere","",vt(0,0,0),vt(x1,y1,z1))
  1055. coroutine.resume(coroutine.create(function(Part,CF,Numbb,randnumb)
  1056. CF=Part.CFrame
  1057. Numbb=0
  1058. randnumb=math.random()-math.random()
  1059. for i=0,1,0.05 do
  1060. wait()
  1061. CF=CF*cf(0,1,0)
  1062. --Part.CFrame=Part.CFrame*euler(0.5,0,0)*cf(0,1,0)
  1063. Part.CFrame=CF*euler(Numbb,0,0)
  1064. Part.Transparency=i
  1065. Numbb=Numbb+randnumb
  1066. end
  1067. Part.Parent=nil
  1068. end),prt)
  1069. end
  1070. --BreakEffect(BrickColor.new("Institutional white"),Hitbox.CFrame,0.5,math.random(5,20),0.5)
  1071.  
  1072. function attackone()
  1073. attack=true
  1074. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,500000000,500000000,math.random(10,20),"Normal",RootPart,.2,1) end)
  1075. for i=0,1,0.1 do
  1076. swait()
  1077. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(120),math.rad(0),math.rad(20)),.3)
  1078. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-10),math.rad(-20),math.rad(-90)),.3)
  1079. LH.C0=clerp(LH.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)
  1080. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(120),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1081. handleweld.C0=clerp(handleweld.C0,cf(0,-0,.4)*angles(math.rad(70),math.rad(-10),math.rad(0)),.3)
  1082. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  1083. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-0),math.rad(0),math.rad(50)),.3)
  1084. end
  1085. so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,1)
  1086. so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,1)
  1087. hitconasdf = Hitbox.Touched:connect(function(hit)
  1088. local hum12 = hit.Parent:FindFirstChild("Humanoid")
  1089. if hum12 and not hum12:IsDescendantOf(Character) then
  1090. so('http://roblox.com/asset/?id=220833976',Hitbox,1,1)
  1091. for i = 1,10 do
  1092. BreakEffect(BrickColor.new("Institutional white"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
  1093. end
  1094. hitconasdf:disconnect()
  1095. end
  1096. end)
  1097. for i=0,1,0.1 do
  1098. swait()
  1099. local blcf = Hitbox.CFrame*CFrame.new(0,.3,0)
  1100. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1101. local h = 5
  1102. 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)
  1103. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1104. 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)
  1105. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1106. scfr = blcf
  1107. elseif not scfr then
  1108. scfr = blcf
  1109. end
  1110. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(110),math.rad(-90),math.rad(20)),.3)
  1111. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-10),math.rad(-20),math.rad(-50)),.3)
  1112. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-120),math.rad(5))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1113. RH.C0=clerp(RH.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)
  1114. handleweld.C0=clerp(handleweld.C0,cf(0,-0,0)*angles(math.rad(-60),math.rad(-10),math.rad(0)),.3)
  1115. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.3)
  1116. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-0),math.rad(0),math.rad(-50)),.3)
  1117. end
  1118. attack=false
  1119. con:disconnect()
  1120. scfr = nil
  1121. pcall(function()
  1122. hitconasdf:disconnect()
  1123. end)
  1124. end
  1125.  
  1126. function attacktwo()
  1127. attack = true
  1128. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,500000000,500000000,math.random(10,20),"Normal",RootPart,.2,1) end)
  1129. for i = 0,1,0.1 do
  1130. swait()
  1131. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(20),math.rad(0),math.rad(50)),.3)
  1132. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(10),math.rad(-50)),.3)
  1133. 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)
  1134. 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)
  1135. 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)
  1136. 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)
  1137. handleweld.C0 = clerp(handleweld.C0,cf(0,0,0)* angles(math.rad(4),math.rad(0),math.rad(0)),.3)
  1138. end
  1139. so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,1)
  1140. for i = 0,1,0.1 do
  1141. swait()
  1142. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1143. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1144. local h = 5
  1145. 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)
  1146. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1147. 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)
  1148. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1149. scfr = blcf
  1150. elseif not scfr then
  1151. scfr = blcf
  1152. end
  1153. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,-0.5)* angles(math.rad(30),math.rad(0),math.rad(-50)),.3)
  1154. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(50)),.3)
  1155. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-20), math.rad(90)), 0.3)
  1156. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-50), math.rad(0), math.rad(-20)), 0.3)
  1157. 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)
  1158. 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)
  1159. handleweld.C0 = clerp(handleweld.C0,cf(0,0,0)* angles(math.rad(30),math.rad(0),math.rad(0)),.3)
  1160. Torso.Velocity=Head.CFrame.lookVector*50
  1161. end
  1162. Humanoid.Jump = true
  1163. for i=0,0.6,.5 do
  1164. swait()
  1165. so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,1)
  1166. for i=0,1,0.1 do
  1167. swait()
  1168. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1169. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1170. local h = 5
  1171. 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)
  1172. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1173. 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)
  1174. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1175. scfr = blcf
  1176. elseif not scfr then
  1177. scfr = blcf
  1178. end
  1179. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,4)*euler(0,1,-6*i), .3)
  1180. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  1181. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(70), math.rad(90)), 0.3)
  1182. LW.C0 = clerp(LW.C0, CFrame.new(.5, 0.5, -.8) * angles(math.rad(0), math.rad(-170), math.rad(-90)), 0.3)
  1183. 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)
  1184. 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)
  1185. handleweld.C0 = clerp(handleweld.C0,cf(0,0,0)* angles(math.rad(50),math.rad(0),math.rad(0)),.3)
  1186. end
  1187. end
  1188. attack = false
  1189. scfr = nil
  1190. con:disconnect()
  1191. end
  1192.  
  1193. function Stab()
  1194. attack=true
  1195. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,500000000,500000000,math.random(10,20),"Normal",RootPart,.2,1) end)
  1196. for i=0,1,0.1 do
  1197. swait()
  1198. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  1199. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(10),math.rad(0),math.rad(60)),.3)
  1200. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(20),math.rad(90)),.3)
  1201. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(0),math.rad(-20),math.rad(-90)),.3)
  1202. LH.C0=clerp(LH.C0,cf(-1,-.9,0)*angles(math.rad(0),math.rad(-60),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1203. RH.C0=clerp(RH.C0,cf(1,-.9,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1204. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
  1205. end
  1206. hitconasdf = Hitbox.Touched:connect(function(hit)
  1207. local hum12 = hit.Parent:FindFirstChild("Humanoid")
  1208. if hum12 and not hum12:IsDescendantOf(Character) then
  1209. so('http://roblox.com/asset/?id=220833976',Hitbox,1,1)
  1210. for i = 1,10 do
  1211. BreakEffect(BrickColor.new("Institutional white"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
  1212. end
  1213. hitconasdf:disconnect()
  1214. end
  1215. end)
  1216. so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,.9)
  1217. so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,.9)
  1218. for i=0,1,0.1 do
  1219. swait()
  1220. local blcf = Hitbox.CFrame*CFrame.new(0,.3,0)
  1221. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1222. local h = 5
  1223. 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)
  1224. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1225. 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)
  1226. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1227. scfr = blcf
  1228. elseif not scfr then
  1229. scfr = blcf
  1230. end
  1231. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.4)
  1232. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(10),math.rad(0),math.rad(-80)),.4)
  1233. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.4)
  1234. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(0),math.rad(-20),math.rad(-30)),.4)
  1235. LH.C0=clerp(LH.C0,cf(-1,-.9,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.4)
  1236. RH.C0=clerp(RH.C0,cf(1,-.9,0)*angles(math.rad(0),math.rad(60),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.4)
  1237. handleweld.C0=clerp(handleweld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4)
  1238. end
  1239. con:disconnect()
  1240. attack=false
  1241. scfr = nil
  1242. pcall(function()
  1243. hitconasdf:disconnect()
  1244. end)
  1245. end
  1246.  
  1247. function Spin()
  1248. attack=true
  1249. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,500000000,500000000,math.random(10,20),"Normal",RootPart,.2,1) end)
  1250. hitconasdf = Hitbox.Touched:connect(function(hit)
  1251. local hum12 = hit.Parent:FindFirstChild("Humanoid")
  1252. if hum12 and not hum12:IsDescendantOf(Character) then
  1253. so('http://roblox.com/asset/?id=220833976',Hitbox,1,1)
  1254. for i = 1,10 do
  1255. BreakEffect(BrickColor.new("Institutional white"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
  1256. end
  1257. hitconasdf:disconnect()
  1258. end
  1259. end)
  1260. for i=0,1,1 do
  1261. so("http://roblox.com/asset/?id=260433850",Hitbox,1,1)
  1262. so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,1)
  1263. swait()
  1264. for i=0,1,0.1 do
  1265. swait()
  1266. local blcf = Hitbox.CFrame*CFrame.new(0,.3,0)
  1267. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1268. local h = 5
  1269. 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)
  1270. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1271. 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)
  1272. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1273. scfr = blcf
  1274. elseif not scfr then
  1275. scfr = blcf
  1276. end
  1277. RW.C0=clerp(RW.C0,cf(1,0.5,-.5)*angles(math.rad(90),math.rad(0),math.rad(-50)),.3)
  1278. LW.C0=clerp(LW.C0,cf(-1,0.5,-.5)*angles(math.rad(90),math.rad(0),math.rad(50)),.3)
  1279. LH.C0=clerp(LH.C0,cf(-1,-.5,-1)*angles(math.rad(-20),math.rad(-90),math.rad(0)),.3)
  1280. RH.C0=clerp(RH.C0,cf(1,-.5,-1)*angles(math.rad(-20),math.rad(90),math.rad(0)),.3)
  1281. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,5)*euler(6*i,0,0),.5)
  1282. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(30)),1)
  1283. end
  1284. end
  1285. attack=false
  1286. con:disconnect()
  1287. scfr = nil
  1288. pcall(function()
  1289. hitconasdf:disconnect()
  1290. end)
  1291. end
  1292.  
  1293. function ContAttack()
  1294. attack=true
  1295. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,500000000,500000000,math.random(10,20),"Normal",RootPart,.2,1) end)
  1296. hitconasdf = Hitbox.Touched:connect(function(hit)
  1297. local hum12 = hit.Parent:FindFirstChild("Humanoid")
  1298. if hum12 and not hum12:IsDescendantOf(Character) then
  1299. so('http://roblox.com/asset/?id=220833976',Hitbox,1,1)
  1300. for i = 1,10 do
  1301. BreakEffect(BrickColor.new("Institutional white"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
  1302. end
  1303. hitconasdf:disconnect()
  1304. end
  1305. end)
  1306. for i=1,4 do
  1307. swait()
  1308. for i=0,1,0.2 do
  1309. swait()
  1310. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(120),math.rad(0),math.rad(20)),.3)
  1311. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-10),math.rad(-20),math.rad(-90)),.3)
  1312. LH.C0=clerp(LH.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)
  1313. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(120),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1314. handleweld.C0=clerp(handleweld.C0,cf(0,-0,.4)*angles(math.rad(70),math.rad(-10),math.rad(0)),.3)
  1315. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  1316. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-0),math.rad(0),math.rad(50)),.3)
  1317. end
  1318. so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,1)
  1319. so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,1)
  1320. for i=0,1,0.2 do
  1321. swait()
  1322. local blcf = Hitbox.CFrame*CFrame.new(0,.3,0)
  1323. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1324. local h = 5
  1325. 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)
  1326. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1327. 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)
  1328. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1329. scfr = blcf
  1330. elseif not scfr then
  1331. scfr = blcf
  1332. end
  1333. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(110),math.rad(-90),math.rad(20)),.3)
  1334. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-10),math.rad(-20),math.rad(-50)),.3)
  1335. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-120),math.rad(5))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1336. RH.C0=clerp(RH.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)
  1337. handleweld.C0=clerp(handleweld.C0,cf(0,-0,0)*angles(math.rad(-60),math.rad(-10),math.rad(0)),.3)
  1338. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.3)
  1339. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-0),math.rad(0),math.rad(-50)),.3)
  1340. end
  1341. for i=0,1,0.2 do
  1342. swait()
  1343. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(90),math.rad(90)),.3)
  1344. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-10),math.rad(-20),math.rad(-50)),.3)
  1345. LH.C0=clerp(LH.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)
  1346. RH.C0=clerp(RH.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)
  1347. handleweld.C0=clerp(handleweld.C0,cf(0,-0,0)*angles(math.rad(-30),math.rad(-10),math.rad(0)),.3)
  1348. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(70)),.3)
  1349. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-0),math.rad(0),math.rad(-50)),.3)
  1350. end
  1351. so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,.9)
  1352. so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,.9)
  1353. for i=0,1,0.2 do
  1354. swait()
  1355. local blcf = Hitbox.CFrame*CFrame.new(0,.3,0)
  1356. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1357. local h = 5
  1358. 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)
  1359. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1360. 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)
  1361. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1362. scfr = blcf
  1363. elseif not scfr then
  1364. scfr = blcf
  1365. end
  1366. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(-50),math.rad(90)),.3)
  1367. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-10),math.rad(-20),math.rad(-90)),.3)
  1368. LH.C0=clerp(LH.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)
  1369. 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)
  1370. handleweld.C0=clerp(handleweld.C0,cf(0,-0,0)*angles(math.rad(-50),math.rad(10),math.rad(0)),.3)
  1371. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  1372. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-0),math.rad(0),math.rad(50)),.3)
  1373. end
  1374. end
  1375. attack=false
  1376. con:disconnect()
  1377. scfr = nil
  1378. pcall(function()
  1379. hitconasdf:disconnect()
  1380. end)
  1381. end
  1382.  
  1383.  
  1384. function Sheathe()
  1385. attack = true
  1386. so("http://www.roblox.com/asset/?id=130785407",Hitbox,1,.9)
  1387. CurrentMode = "Sheathed"
  1388. for i = 0,1,0.1 do
  1389. swait()
  1390. handleweld.Part0 = Torso
  1391. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  1392. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-10),math.rad(0),math.rad(-20)),.3)
  1393. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(190),math.rad(0),math.rad(0)),.3)
  1394. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-10),math.rad(20),math.rad(-10)),.3)
  1395. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1396. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1397. handleweld.C0=clerp(handleweld.C0,cf(3,3,0.5)*angles(math.rad(90),math.rad(150),math.rad(90)),.3)
  1398. end
  1399. attack = false
  1400. end
  1401.  
  1402. function Unsheathe()
  1403. attack = true
  1404. CurrentMode = "Unsheathed"
  1405. so("http://www.roblox.com/asset/?id=130785407",Hitbox,1,.9)
  1406. for i = 0,1,0.1 do
  1407. swait()
  1408. handleweld.Part0 = RightArm
  1409. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  1410. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(60)),.3)
  1411. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(200),math.rad(0),math.rad(0)),.3)
  1412. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(0),math.rad(-30),math.rad(-30)),.3)
  1413. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1414. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1415. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(30),math.rad(0)),.3)
  1416. end
  1417. scfr = nil
  1418. attack = false
  1419. end
  1420.  
  1421. local Sit = false
  1422.  
  1423. mouse.Button1Down:connect(function()
  1424. if attack==false then
  1425. if attacktype==1 and CurrentMode == "Unsheathed" then
  1426. attack=true
  1427. attacktype=2
  1428. attackone()
  1429. elseif attacktype==2 and CurrentMode == "Unsheathed" then
  1430. attack=true
  1431. attacktype=1
  1432. attacktwo()
  1433. end
  1434. end
  1435. end)
  1436.  
  1437.  
  1438. mouse.KeyDown:connect(function(k)
  1439. k=k:lower()
  1440. if k=='q' then
  1441. if attack==false and CurrentMode == "Unsheathed" then
  1442. Stab()
  1443. end
  1444. elseif k=='e' then
  1445. if attack==false and CurrentMode == "Unsheathed" then
  1446. Spin()
  1447. end
  1448. elseif k=='r' then
  1449. if attack==false and CurrentMode == "Unsheathed" then
  1450. ContAttack()
  1451. end
  1452. elseif k=='f' then
  1453. if attack==false and CurrentMode == "Unsheathed" then
  1454. Sheathe()
  1455. elseif k=='f' then
  1456. if attack==false and Sit == false and CurrentMode == "Sheathed" then
  1457. Unsheathe()
  1458. end
  1459. end
  1460. elseif k=='t' then
  1461. if attack==false and Sit == false and CurrentMode == "Sheathed" then
  1462. Sit = true
  1463. Humanoid.WalkSpeed = 0
  1464. elseif k=='t' then
  1465. if attack==false and Sit == true and CurrentMode == "Sheathed" then
  1466. Sit = false
  1467. Humanoid.WalkSpeed = 16
  1468. end
  1469. end
  1470.  
  1471. end
  1472. end)
  1473.  
  1474.  
  1475. local sine = 0
  1476. local change = 1
  1477. local val = 0
  1478. local RHCF = CFrame.fromEulerAnglesXYZ(0, 1.6, 0)
  1479. local LHCF = (CFrame.fromEulerAnglesXYZ(0, -1.6, 0))
  1480. local cn = CFrame.new
  1481. local NeckCF = cn(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  1482.  
  1483. while true do
  1484. swait()
  1485. sine = sine + change
  1486. local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude
  1487. local velderp=RootPart.Velocity.y
  1488. hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
  1489. if equipped==true or equipped==false then
  1490. if attack==false then
  1491. idle=idle+1
  1492. else
  1493. idle=0
  1494. end
  1495. if idle>=500 then
  1496. if attack==false then
  1497. end
  1498. end
  1499. if RootPart.Velocity.y > 1 and hitfloor==nil then
  1500. Anim="Jump"
  1501. if attack==false and Sit == false and CurrentMode == "Unsheathed" then
  1502. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  1503. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
  1504. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(50),math.rad(0),math.rad(30)),.3)
  1505. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-40),math.rad(5),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1506. LH.C0=clerp(LH.C0,cf(-1,-.5,-1)*angles(math.rad(-20),math.rad(-90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1507. handleweld.C0=clerp(handleweld.C0,cf(0,-0,.4)*angles(math.rad(85),math.rad(-10),math.rad(0)),.3)
  1508. end
  1509. if attack==false and Sit == false and CurrentMode == "Sheathed" then
  1510. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
  1511. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1512. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(0),math.rad(30)),.3)
  1513. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(0),math.rad(0),math.rad(-30)),.3)
  1514. LH.C0=clerp(LH.C0,cf(-1,-1,-.2)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
  1515. RH.C0=clerp(RH.C0,cf(1,-1,-.2)*angles(math.rad(0),math.rad(90),math.rad(5))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
  1516. handleweld.C0=clerp(handleweld.C0,cf(3,3,0.5)*angles(math.rad(90),math.rad(150),math.rad(90)),.3)
  1517. end
  1518. elseif RootPart.Velocity.y < -1 and hitfloor==nil then
  1519. Anim="Fall"
  1520. if attack==false and Sit == false and CurrentMode == "Unsheathed" then
  1521. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(10),math.rad(0),math.rad(0)),.3)
  1522. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(10),math.rad(0),math.rad(0)),.3)
  1523. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(-5),math.rad(0),math.rad(20)),.3)
  1524. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-40),math.rad(5),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1525. LH.C0=clerp(LH.C0,cf(-1,-.5,-1)*angles(math.rad(-20),math.rad(-90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1526. handleweld.C0=clerp(handleweld.C0,cf(0,-0,.4)*angles(math.rad(85),math.rad(-10),math.rad(0)),.3)
  1527. end
  1528. if attack==false and Sit == false and CurrentMode == "Sheathed" then
  1529. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(10),math.rad(0),math.rad(0)),.3)
  1530. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
  1531. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(0),math.rad(50)),.3)
  1532. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(0),math.rad(0),math.rad(-50)),.3)
  1533. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
  1534. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-75),math.rad(-10)),.3)
  1535. handleweld.C0=clerp(handleweld.C0,cf(3,3,0.5)*angles(math.rad(90),math.rad(150),math.rad(90)),.3)
  1536. end
  1537. elseif torvel<1 and hitfloor~=nil then
  1538. Anim="Idle"
  1539. if attack==false and Sit == false and CurrentMode == "Unsheathed" then
  1540. --[[Neck.C0=clerp(Neck.C0,necko*angles(math.rad(-10),0,0),.3)
  1541. Neck.C1=clerp(Neck.C1,necko2*angles(0,0,0),.3)
  1542. RootJoint.C0=clerp(RootJoint.C0,RootCF*angles(math.rad(15),0,0),.3)
  1543. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(0,0,0.1),.3)
  1544. RW.C1=clerp(LW.C1,cf(0,0.5,0)*angles(0,0,0),.3)
  1545. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(90),0,math.rad(45)),.3)
  1546. LW.C1=clerp(LW.C1,cf(0,0.5,0)*angles(0,0,0),.3)
  1547. RH.C0=clerp(RH.C0,cf(1,-.5,-.5)*angles(math.rad(15),math.rad(90),0),.3)
  1548. RH.C1=clerp(RH.C1,RHC1,.3)
  1549. LH.C0=clerp(LH.C0,cf(1,-.5,0)*angles(math.rad(15),math.rad(-90),0),.3)
  1550. LH.C1=clerp(LH.C1,LHC1,.3)]]
  1551. idleanim=.4
  1552. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-0.5-idleanim)*euler(0.4+(idleanim/2),0,-0.4),.3)
  1553. --RootJoint.C0=clerp(RootJoint.C0,RootCF*euler(0,0,0),.3)
  1554. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*euler(-idleanim/2,0,0.4),.3)
  1555. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(-25),math.rad(-35),math.rad(45)),.3)
  1556. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(90),math.rad(0),math.rad(45)),.3)
  1557. RH.C0=clerp(RH.C0,cf(1,-1,-idleanim)*euler(-0.2-(idleanim/2),1.57,0),.3)
  1558. LH.C0=clerp(LH.C0,cf(-1,-.5+idleanim,0)*euler(0.5+(idleanim/2),-1.2,0)*euler(-.2,0,0),.3)
  1559. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  1560. end
  1561. if attack==false and Sit == false and CurrentMode == "Sheathed" then
  1562. RootJoint.C0=clerp(RootJoint.C0,RootCF*angles(math.rad(0),math.rad(0),math.rad(-45)),.3)
  1563. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(45)),.3)
  1564. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-2),math.rad(-25),math.rad(15)),.3)
  1565. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(-5)),.3)
  1566. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1567. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  1568. handleweld.C0=clerp(handleweld.C0,cf(3,3,0.5)*angles(math.rad(90),math.rad(150),math.rad(90)),.3)
  1569. end
  1570. if attack==false and Sit == true and CurrentMode == "Sheathed" then
  1571. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-2)*angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
  1572. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(10),math.rad(0),math.rad(0)),.3)
  1573. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(-10),math.rad(0),math.rad(5)),.3)
  1574. LW.C0=clerp(LW.C0,cf(-1.3,0.5,0)*euler(math.rad(90),math.rad(0),math.rad(30)),.3)
  1575. LH.C0=clerp(LH.C0,cf(-1,.7,-.5)*angles(math.rad(0),math.rad(-90),math.rad(-10))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
  1576. RH.C0=clerp(RH.C0,cf(1,-.5,-.5)*angles(math.rad(0),math.rad(90),math.rad(70))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
  1577. handleweld.C0=clerp(handleweld.C0,cf(3,3,0.5)*angles(math.rad(90),math.rad(150),math.rad(90)),.3)
  1578. end
  1579. elseif torvel>2 and hitfloor~=nil then
  1580. Anim="Walk"
  1581. if attack==false and Sit == false and CurrentMode == "Unsheathed" then
  1582. change=2
  1583. RootJoint.C0 = clerp(RootJoint.C0, RootCF * cn(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(2 * math.cos((sine) / 7))), 0.3)
  1584. Torso.Neck.C0 = clerp(Torso.Neck.C0, NeckCF * angles(math.rad(5 + 3 * math.cos((sine) / 23)), math.rad(0), math.rad(-2 * math.cos((sine) / 7))), 0.3)
  1585. RW.C0 = clerp(RW.C0, CFrame.new(1.4, 0.7, 0) * angles(math.rad(0), math.rad(110), math.rad(205)), 0.3)
  1586. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-30 * math.cos((sine) / 10)), math.rad(0), math.rad(-5)), 0.3)
  1587. RH.C0 = clerp(RH.C0, cn(1, -1 - 0.3 * math.cos((sine) / 8) / 2, -0.03 + math.sin((sine) / 8) / 2) * RHCF * angles(math.rad(-2), math.rad(0), math.rad(-10) - math.sin((sine) / 8)), 0.3)
  1588. LH.C0 = clerp(LH.C0, cn(-1, -1 + 0.3 * math.cos((sine) / 8) / 2, -0.03 - math.sin((sine) / 8) / 2) * LHCF * angles(math.rad(-2), math.rad(0), math.rad(10) - math.sin((sine) / 8)), 0.3)
  1589. handleweld.C0 = clerp(handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(23), math.rad(-20), math.rad(0)), 0.3)
  1590. end
  1591. if attack==false and Sit == false and CurrentMode == "Sheathed" then
  1592. idleanim=-1
  1593. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*euler(0.4,0,0),.3)
  1594. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*euler(-0.2,0,0),.3)
  1595. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(-35),math.rad(45)),.3)
  1596. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(0),math.rad(35),math.rad(-45)),.3)
  1597. RH.C0=clerp(RH.C0,cf(1,-1,0)*euler(0.2,1.57,0),.3)
  1598. LH.C0=clerp(LH.C0,cf(-1,-1,0)*euler(0.5,-1.57,0)*euler(0,0,0),.3)
  1599. handleweld.C0=clerp(handleweld.C0,cf(3,3,0.5)*angles(math.rad(90),math.rad(150),math.rad(90)),.3)
  1600. end
  1601. end
  1602. end
  1603. if #Effects>0 then
  1604. for e=1,#Effects do
  1605. if Effects[e]~=nil then
  1606. local Thing=Effects[e]
  1607. if Thing~=nil then
  1608. local Part=Thing[1]
  1609. local Mode=Thing[2]
  1610. local Delay=Thing[3]
  1611. local IncX=Thing[4]
  1612. local IncY=Thing[5]
  1613. local IncZ=Thing[6]
  1614. if Thing[1].Transparency<=1 then
  1615. if Thing[2]=="Block1" then
  1616. Thing[1].CFrame=Thing[1].CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  1617. Mesh=Thing[1].Mesh
  1618. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  1619. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1620. elseif Thing[2]=="Cylinder" then
  1621. Mesh=Thing[1].Mesh
  1622. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  1623. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1624. elseif Thing[2]=="Blood" then
  1625. Mesh=Thing[7]
  1626. Thing[1].CFrame=Thing[1].CFrame*cf(0,.5,0)
  1627. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  1628. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1629. elseif Thing[2]=="Elec" then
  1630. Mesh=Thing[1].Mesh
  1631. Mesh.Scale=Mesh.Scale+vt(Thing[7],Thing[8],Thing[9])
  1632. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1633. elseif Thing[2]=="Disappear" then
  1634. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1635. end
  1636. else
  1637. Part.Parent=nil
  1638. table.remove(Effects,e)
  1639. end
  1640. end
  1641. end
  1642. end
  1643. end
  1644. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement