Rakesh_Motheryar

Untitled

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