Im_Meme

Blood Sword

Mar 12th, 2018
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 162.87 KB | None | 0 0
  1. --The Color of the Attack and Sword--
  2. tclr = "Really red"
  3.  
  4.  
  5.  
  6.  
  7. Player=game:GetService("Players").LocalPlayer
  8. Character=Player.Character
  9. PlayerGui=Player.PlayerGui
  10. Backpack=Player.Backpack
  11. Torso=Character.Torso
  12. it=Instance.new
  13. attacktype=1
  14. vt=Vector3.new
  15. cf=CFrame.new
  16. euler=CFrame.fromEulerAnglesXYZ
  17. angles=CFrame.Angles
  18. cloaked=false
  19. necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  20. necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  21. LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
  22. LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
  23. RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
  24. RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
  25. RootPart=Character.HumanoidRootPart
  26. RootJoint=RootPart.RootJoint
  27. RootCF=euler(-1.57,0,3.14)
  28. attack = false
  29. attackdebounce = false
  30. deb=false
  31. equipped=true
  32. hand=false
  33. MMouse=nil
  34. combo=0
  35. mana=0
  36. trispeed=.2
  37. attackmode='none'
  38. local idle=0
  39. local Anim="Idle"
  40. local Effects={}
  41. local gun=false
  42. local shoot=false
  43.  
  44. player=nil
  45. mana=0
  46. cam = workspace.CurrentCamera
  47. ZTarget = nil
  48. RocketTarget = nil
  49. local m = Instance.new("Model",Character)
  50. m.Name = "WeaponModel"
  51.  
  52. mouse=Player:GetMouse()
  53. --save shoulders
  54. RSH, LSH=nil, nil
  55. --welds
  56. RW, LW=Instance.new("Weld"), Instance.new("Weld")
  57. RW.Name="Right Shoulder" LW.Name="Left Shoulder"
  58. LH=Torso["Left Hip"]
  59. RH=Torso["Right Hip"]
  60. TorsoColor=Torso.BrickColor
  61. function NoOutline(Part)
  62. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  63. end
  64. player=Player
  65. ch=Character
  66. RSH=ch.Torso["Right Shoulder"]
  67. LSH=ch.Torso["Left Shoulder"]
  68. --
  69. RSH.Parent=nil
  70. LSH.Parent=nil
  71. --
  72. RW.Name="Right Shoulder"
  73. RW.Part0=ch.Torso
  74. RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  75. RW.C1=cf(0, 0.5, 0)
  76. RW.Part1=ch["Right Arm"]
  77. RW.Parent=ch.Torso
  78. --
  79. LW.Name="Left Shoulder"
  80. LW.Part0=ch.Torso
  81. LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  82. LW.C1=cf(0, 0.5, 0)
  83. LW.Part1=ch["Left Arm"]
  84. LW.Parent=ch.Torso
  85.  
  86. function swait(num)
  87. if num==0 or num==nil then
  88. game:service'RunService'.Stepped:wait(0)
  89. else
  90. for i=0,num do
  91. game:service'RunService'.Stepped:wait(0)
  92. end
  93. end
  94. end
  95.  
  96. function nooutline(part)
  97. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  98. end
  99.  
  100. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  101. local fp=it("Part")
  102. fp.formFactor=formfactor
  103. fp.Parent=parent
  104. fp.Reflectance=reflectance
  105. fp.Transparency=transparency
  106. fp.CanCollide=false
  107. fp.Locked=true
  108. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  109. fp.Name=name
  110. fp.Size=size
  111. fp.Position=Character.Torso.Position
  112. nooutline(fp)
  113. fp.Material=material
  114. fp:BreakJoints()
  115. return fp
  116. end
  117.  
  118. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  119. local mesh=it(Mesh)
  120. mesh.Parent=part
  121. if Mesh=="SpecialMesh" then
  122. mesh.MeshType=meshtype
  123. mesh.MeshId=meshid
  124. end
  125. mesh.Offset=offset
  126. mesh.Scale=scale
  127. return mesh
  128. end
  129.  
  130. function weld(parent,part0,part1,c0,c1)
  131. local weld=it("Weld")
  132. weld.Parent=parent
  133. weld.Part0=part0
  134. weld.Part1=part1
  135. weld.C0=c0
  136. weld.C1=c1
  137. return weld
  138. end
  139.  
  140.  
  141. local function CFrameFromTopBack(at, top, back)
  142. local right = top:Cross(back)
  143. return CFrame.new(at.x, at.y, at.z,
  144. right.x, top.x, back.x,
  145. right.y, top.y, back.y,
  146. right.z, top.z, back.z)
  147. end
  148.  
  149. function Triangle(a, b, c)
  150. local edg1 = (c-a):Dot((b-a).unit)
  151. local edg2 = (a-b):Dot((c-b).unit)
  152. local edg3 = (b-c):Dot((a-c).unit)
  153. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  154. a, b, c = a, b, c
  155. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  156. a, b, c = b, c, a
  157. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  158. a, b, c = c, a, b
  159. else
  160. assert(false, "unreachable")
  161. end
  162.  
  163. local len1 = (c-a):Dot((b-a).unit)
  164. local len2 = (b-a).magnitude - len1
  165. local width = (a + (b-a).unit*len1 - c).magnitude
  166.  
  167. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  168.  
  169. local list = {}
  170.  
  171. local TrailColor = tclr
  172.  
  173. if len1 > 0.01 then
  174. local w1 = Instance.new('WedgePart', m)
  175. game:GetService("Debris"):AddItem(w1,5)
  176. w1.Material = "SmoothPlastic"
  177. w1.FormFactor = 'Custom'
  178. w1.BrickColor = BrickColor.new(TrailColor)
  179. w1.Transparency = 0
  180. w1.Reflectance = 0
  181. w1.Material = "Neon"
  182. w1.CanCollide = false
  183. NoOutline(w1)
  184. local sz = Vector3.new(0.2, width, len1)
  185. w1.Size = sz
  186. local sp = Instance.new("SpecialMesh",w1)
  187. sp.MeshType = "Wedge"
  188. sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
  189. w1:BreakJoints()
  190. w1.Anchored = true
  191. w1.Parent = workspace
  192. w1.Transparency = 0.7
  193. table.insert(Effects,{w1,"Disappear",.01})
  194. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  195. table.insert(list,w1)
  196. end
  197.  
  198. if len2 > 0.01 then
  199. local w2 = Instance.new('WedgePart', m)
  200. game:GetService("Debris"):AddItem(w2,5)
  201. w2.Material = "SmoothPlastic"
  202. w2.FormFactor = 'Custom'
  203. w2.BrickColor = BrickColor.new(TrailColor)
  204. w2.Transparency = 0
  205. w2.Reflectance = 0
  206. w2.Material = "Neon"
  207. w2.CanCollide = false
  208. NoOutline(w2)
  209. local sz = Vector3.new(0.2, width, len2)
  210. w2.Size = sz
  211. local sp = Instance.new("SpecialMesh",w2)
  212. sp.MeshType = "Wedge"
  213. sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
  214. w2:BreakJoints()
  215. w2.Anchored = true
  216. w2.Parent = workspace
  217. w2.Transparency = 0.7
  218. table.insert(Effects,{w2,"Disappear",.01})
  219. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  220. table.insert(list,w2)
  221. end
  222. return unpack(list)
  223. end
  224.  
  225.  
  226. so = function(id,par,vol,pit)
  227. coroutine.resume(coroutine.create(function()
  228. local sou = Instance.new("Sound",par or workspace)
  229. sou.Volume=vol
  230. sou.Pitch=pit or 1
  231. sou.SoundId=id
  232. swait()
  233. sou:play()
  234. game:GetService("Debris"):AddItem(sou,6)
  235. end))
  236. end
  237.  
  238. function clerp(a,b,t)
  239. local qa = {QuaternionFromCFrame(a)}
  240. local qb = {QuaternionFromCFrame(b)}
  241. local ax, ay, az = a.x, a.y, a.z
  242. local bx, by, bz = b.x, b.y, b.z
  243. local _t = 1-t
  244. return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t))
  245. end
  246.  
  247. function QuaternionFromCFrame(cf)
  248. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  249. local trace = m00 + m11 + m22
  250. if trace > 0 then
  251. local s = math.sqrt(1 + trace)
  252. local recip = 0.5/s
  253. return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5
  254. else
  255. local i = 0
  256. if m11 > m00 then
  257. i = 1
  258. end
  259. if m22 > (i == 0 and m00 or m11) then
  260. i = 2
  261. end
  262. if i == 0 then
  263. local s = math.sqrt(m00-m11-m22+1)
  264. local recip = 0.5/s
  265. return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip
  266. elseif i == 1 then
  267. local s = math.sqrt(m11-m22-m00+1)
  268. local recip = 0.5/s
  269. return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip
  270. elseif i == 2 then
  271. local s = math.sqrt(m22-m00-m11+1)
  272. local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip
  273. end
  274. end
  275. end
  276.  
  277. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  278. local xs, ys, zs = x + x, y + y, z + z
  279. local wx, wy, wz = w*xs, w*ys, w*zs
  280. local xx = x*xs
  281. local xy = x*ys
  282. local xz = x*zs
  283. local yy = y*ys
  284. local yz = y*zs
  285. local zz = z*zs
  286. 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))
  287. end
  288.  
  289. function QuaternionSlerp(a, b, t)
  290. local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4]
  291. local startInterp, finishInterp;
  292. if cosTheta >= 0.0001 then
  293. if (1 - cosTheta) > 0.0001 then
  294. local theta = math.acos(cosTheta)
  295. local invSinTheta = 1/math.sin(theta)
  296. startInterp = math.sin((1-t)*theta)*invSinTheta
  297. finishInterp = math.sin(t*theta)*invSinTheta
  298. else
  299. startInterp = 1-t
  300. finishInterp = t
  301. end
  302. else
  303. if (1+cosTheta) > 0.0001 then
  304. local theta = math.acos(-cosTheta)
  305. local invSinTheta = 1/math.sin(theta)
  306. startInterp = math.sin((t-1)*theta)*invSinTheta
  307. finishInterp = math.sin(t*theta)*invSinTheta
  308. else
  309. startInterp = t-1
  310. finishInterp = t
  311. end
  312. end
  313. 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
  314. end
  315.  
  316. function rayCast(Pos, Dir, Max, Ignore) -- Origin Position , Direction, MaxDistance , IgnoreDescendants
  317. return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore)
  318. end
  319.  
  320. Damagefunc=function(Part,hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
  321. if hit.Parent==nil then
  322. return
  323. end
  324. local h=hit.Parent:FindFirstChild("Humanoid")
  325. for _,v in pairs(hit.Parent:children()) do
  326. if v:IsA("Humanoid") then
  327. h=v
  328. end
  329. end
  330. if hit.Parent.Parent:FindFirstChild("Torso")~=nil then
  331. h=hit.Parent.Parent:FindFirstChild("Humanoid")
  332. end
  333. if hit.Parent.className=="Hat" then
  334. hit=hit.Parent.Parent:findFirstChild("Head")
  335. end
  336. if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then
  337. if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end
  338. --[[ if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then
  339. return
  340. end]]
  341. -- hs(hit,1.2)
  342. local c=Instance.new("ObjectValue")
  343. c.Name="creator"
  344. c.Value=game:service("Players").LocalPlayer
  345. c.Parent=h
  346. game:GetService("Debris"):AddItem(c,.5)
  347. local Damage=math.random(minim,maxim)
  348. -- h:TakeDamage(Damage)
  349. local blocked=false
  350. local block=hit.Parent:findFirstChild("Block")
  351. if block~=nil then
  352. print(block.className)
  353. if block.className=="NumberValue" then
  354. if block.Value>0 then
  355. blocked=true
  356. if decreaseblock==nil then
  357. block.Value=block.Value-1
  358. end
  359. end
  360. end
  361. if block.className=="IntValue" then
  362. if block.Value>0 then
  363. blocked=true
  364. if decreaseblock~=nil then
  365. block.Value=block.Value-1
  366. end
  367. end
  368. end
  369. end
  370. if blocked==false then
  371. -- h:TakeDamage(Damage)
  372. h.Health=h.Health-Damage
  373. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, Part.BrickColor.Color)
  374. else
  375. h.Health=h.Health-(Damage/2)
  376. 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)
  377. end
  378. if Type=="Knockdown" then
  379. local hum=hit.Parent.Humanoid
  380. hum.PlatformStand=true
  381. coroutine.resume(coroutine.create(function(HHumanoid)
  382. swait(1)
  383. HHumanoid.PlatformStand=false
  384. end),hum)
  385. local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
  386. --hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
  387. local bodvol=Instance.new("BodyVelocity")
  388. bodvol.velocity=angle*knockback
  389. bodvol.P=5000
  390. bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  391. bodvol.Parent=hit
  392. local rl=Instance.new("BodyAngularVelocity")
  393. rl.P=3000
  394. rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
  395. rl.angularvelocity=Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
  396. rl.Parent=hit
  397. game:GetService("Debris"):AddItem(bodvol,.5)
  398. game:GetService("Debris"):AddItem(rl,.5)
  399. elseif Type=="Normal" then
  400. local vp=Instance.new("BodyVelocity")
  401. vp.P=500
  402. vp.maxForce=Vector3.new(math.huge,0,math.huge)
  403. -- vp.velocity=Character.Torso.CFrame.lookVector*Knockback
  404. if KnockbackType==1 then
  405. vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
  406. elseif KnockbackType==2 then
  407. vp.velocity=Property.CFrame.lookVector*knockback
  408. end
  409. if knockback>0 then
  410. vp.Parent=hit.Parent.Torso
  411. end
  412. game:GetService("Debris"):AddItem(vp,.5)
  413. elseif Type=="Up" then
  414. local bodyVelocity=Instance.new("BodyVelocity")
  415. bodyVelocity.velocity=vt(0,60,0)
  416. bodyVelocity.P=5000
  417. bodyVelocity.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  418. bodyVelocity.Parent=hit
  419. game:GetService("Debris"):AddItem(bodyVelocity,1)
  420. local rl=Instance.new("BodyAngularVelocity")
  421. rl.P=3000
  422. rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
  423. rl.angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
  424. rl.Parent=hit
  425. game:GetService("Debris"):AddItem(rl,.5)
  426. elseif Type=="Snare" then
  427. local bp=Instance.new("BodyPosition")
  428. bp.P=2000
  429. bp.D=100
  430. bp.maxForce=Vector3.new(math.huge,math.huge,math.huge)
  431. bp.position=hit.Parent.Torso.Position
  432. bp.Parent=hit.Parent.Torso
  433. game:GetService("Debris"):AddItem(bp,1)
  434. elseif Type=="Target" then
  435. local Targetting = false
  436. if Targetting==false then
  437. ZTarget=hit.Parent.Torso
  438. coroutine.resume(coroutine.create(function(Part)
  439. so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5)
  440. swait(5)
  441. so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5)
  442. end),ZTarget)
  443. local TargHum=ZTarget.Parent:findFirstChild("Humanoid")
  444. local targetgui=Instance.new("BillboardGui")
  445. targetgui.Parent=ZTarget
  446. targetgui.Size=UDim2.new(10,100,10,100)
  447. local targ=Instance.new("ImageLabel")
  448. targ.Parent=targetgui
  449. targ.BackgroundTransparency=1
  450. targ.Image="rbxassetid://4834067"
  451. targ.Size=UDim2.new(1,0,1,0)
  452. cam.CameraType="Scriptable"
  453. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  454. local dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  455. workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  456. Targetting=true
  457. RocketTarget=ZTarget
  458. for i=1,Property do
  459. --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do
  460. if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then
  461. swait()
  462. end
  463. --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100)
  464. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  465. dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  466. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0)
  467. end
  468. Targetting=false
  469. RocketTarget=nil
  470. targetgui.Parent=nil
  471. cam.CameraType="Custom"
  472. end
  473. end
  474. local debounce=Instance.new("BoolValue")
  475. debounce.Name="DebounceHit"
  476. debounce.Parent=hit.Parent
  477. debounce.Value=true
  478. game:GetService("Debris"):AddItem(debounce,Delay)
  479. c=Instance.new("ObjectValue")
  480. c.Name="creator"
  481. c.Value=Player
  482. c.Parent=h
  483. game:GetService("Debris"):AddItem(c,.5)
  484. end
  485. end
  486.  
  487.  
  488. function ShowDamage(Pos, Text, Time, Color)
  489. local Rate = (1 / 30)
  490. local Pos = (Pos or Vector3.new(0, 0, 0))
  491. local Text = (Text or "")
  492. local Time = (Time or 2)
  493. local Color = (Color or Color3.new(1, 0, 0))
  494. local EffectPart = part("Custom",workspace,"SmoothPlastic",0,1,BrickColor.new(Color),"Effect",vt(0,0,0))
  495. EffectPart.Anchored = true
  496. local BillboardGui = Instance.new("BillboardGui")
  497. BillboardGui.Size = UDim2.new(3, 0, 3, 0)
  498. BillboardGui.Adornee = EffectPart
  499. local TextLabel = Instance.new("TextLabel")
  500. TextLabel.BackgroundTransparency = 1
  501. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  502. TextLabel.Text = Text
  503. TextLabel.TextColor3 = Color
  504. TextLabel.TextScaled = true
  505. TextLabel.Font = Enum.Font.ArialBold
  506. TextLabel.Parent = BillboardGui
  507. BillboardGui.Parent = EffectPart
  508. game.Debris:AddItem(EffectPart, (Time + 0.1))
  509. EffectPart.Parent = game:GetService("Workspace")
  510. Delay(0, function()
  511. local Frames = (Time / Rate)
  512. for Frame = 1, Frames do
  513. wait(Rate)
  514. local Percent = (Frame / Frames)
  515. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  516. TextLabel.TextTransparency = Percent
  517. end
  518. if EffectPart and EffectPart.Parent then
  519. EffectPart:Destroy()
  520. end
  521. end)
  522. end
  523.  
  524. Player=game:GetService('Players').LocalPlayer
  525. Character=Player.Character
  526. Mouse=Player:GetMouse()
  527. m=Instance.new('Model',Character)
  528. it=Instance.new
  529. function nooutline(part)
  530. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  531. end
  532. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  533. local fp=it("Part")
  534. fp.formFactor=formfactor
  535. fp.Parent=parent
  536. fp.Reflectance=reflectance
  537. fp.Transparency=transparency
  538. fp.CanCollide=false
  539. fp.Locked=true
  540. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  541. fp.Name=name
  542. fp.Size=size
  543. fp.Position=Character.Torso.Position
  544. nooutline(fp)
  545. fp.Material=material
  546. fp:BreakJoints()
  547. return fp
  548. end
  549. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  550. local mesh=it(Mesh)
  551. mesh.Parent=part
  552. if Mesh=="SpecialMesh" then
  553. mesh.MeshType=meshtype
  554. mesh.MeshId=meshid
  555. end
  556. mesh.Offset=offset
  557. mesh.Scale=scale
  558. return mesh
  559. end
  560. function weld(parent,part0,part1,c0,c1)
  561. local weld=it("Weld")
  562. weld.Parent=parent
  563. weld.Part0=part0
  564. weld.Part1=part1
  565. weld.C0=c0
  566. weld.C1=c1
  567. return weld
  568. end
  569.  
  570. Player=game:GetService('Players').LocalPlayer
  571. Character=Player.Character
  572. Mouse=Player:GetMouse()
  573. m=Instance.new('Model',Character)
  574. it=Instance.new
  575. function nooutline(part)
  576. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  577. end
  578. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  579. local fp=it("Part")
  580. fp.formFactor=formfactor
  581. fp.Parent=parent
  582. fp.Reflectance=reflectance
  583. fp.Transparency=transparency
  584. fp.CanCollide=false
  585. fp.Locked=true
  586. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  587. fp.Name=name
  588. fp.Size=size
  589. fp.Position=Character.Torso.Position
  590. nooutline(fp)
  591. fp.Material=material
  592. fp:BreakJoints()
  593. return fp
  594. end
  595. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  596. local mesh=it(Mesh)
  597. mesh.Parent=part
  598. if Mesh=="SpecialMesh" then
  599. mesh.MeshType=meshtype
  600. mesh.MeshId=meshid
  601. end
  602. mesh.Offset=offset
  603. mesh.Scale=scale
  604. return mesh
  605. end
  606. function weld(parent,part0,part1,c0,c1)
  607. local weld=it("Weld")
  608. weld.Parent=parent
  609. weld.Part0=part0
  610. weld.Part1=part1
  611. weld.C0=c0
  612. weld.C1=c1
  613. return weld
  614. end
  615.  
  616. Handle=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Handle",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  617. handleweld=weld(m,Character["Right Arm"],Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1),CFrame.new(0.741678238, 0.794418335, -0.0370121002, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  618. mesh("BlockMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  619. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.600000203, 0.200000003, 0.399999976))
  620. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.4672184, 1.46959305, 0.0142880678, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  621. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  622. Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Really black","Hitbox",Vector3.new(6.74074316, 0.259259313, 1.2962966))
  623. Hitboxweld=weld(m,Handle,Hitbox,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.94812012, 9.15527344e-005, -0.00979995728, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  624. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.29629672, 0.259259313, 1.03703737))
  625. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-10.5536575, -3.57627869e-006, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  626. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.04999995, 1))
  627. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(6.74074316, 0.259259313, 1.2962966))
  628. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70182037, 9.15527344e-005, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  629. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  630. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  631. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-9.3460083e-005, -0.324073672, 12.3684731, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  632. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.839999974, 1))
  633. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.518518627, 2.07407475))
  634. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-5.53131104e-005, -0.207403183, 12.0443993, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  635. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.810000002, 1))
  636. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.518518686, 2.07407475))
  637. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.7220459e-005, -0.207421303, 12.0443993, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  638. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.810000002, 1))
  639. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  640. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(9.3460083e-005, -0.324074984, 12.3684731, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  641. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.839999974, 1))
  642. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  643. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.18214798, 0.184528351, 0.00185966492, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  644. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  645. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  646. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.09992981, 1.09993172, 2.31266022e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  647. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  648. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  649. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.733297348, -0.733297348, -1.33514404e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  650. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  651. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  652. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.274971008, -0.27497673, 3.43322754e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  653. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  654. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  655. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.641641617, 0.641643524, 1.74045563e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  656. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  657. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  658. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.92491722, 1.92491722, 5.7220459e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  659. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  660. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  661. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.37493706, 1.37493706, 3.4570694e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  662. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  663. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  664. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.46542358, 1.46780205, 0.00187504292, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  665. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  666. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  667. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.0916500092, -0.0916557312, 1.71661377e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  668. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  669. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  670. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.641609192, -0.641607285, 1.71661377e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  671. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  672. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  673. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.732124329, 0.734502792, 0.00185978413, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  674. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  675. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.22222471, 0.518518627, 0.518518627))
  676. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.0536880493, 7.62939453e-005, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  677. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.0599999987, 1.00999999))
  678. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  679. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.366659164, -0.366657257, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  680. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  681. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  682. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.183334351, -0.183332443, -1.33514404e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  683. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  684. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  685. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.00829315, 1.00829506, 3.4570694e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  686. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  687. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  688. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.19162178, 1.19162369, 5.17368317e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  689. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  690. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  691. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.55827904, 1.55827904, 5.12599945e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  692. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  693. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  694. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.83205986, 1.83444023, 0.00188946724, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  695. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  696. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  697. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.824943542, -0.824941635, 1.90734863e-006, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  698. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  699. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  700. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.549957275, 0.549959183, -1.31130219e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  701. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  702. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  703. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.274999619, 0.275001526, 3.4570694e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  704. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  705. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  706. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.00117111206, 0.00120735168, 0.00185966492, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  707. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  708. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  709. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.457113266, 0.45949173, -0.00183963776, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  710. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  711. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  712. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.55705452, 1.55943298, -0.00180530548, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  713. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  714. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  715. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.28208542, 1.28446388, 0.00185978413, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  716. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  717. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  718. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.276185989, -0.273807526, -0.00183963776, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  719. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  720. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  721. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.548799515, 0.55116272, 0.00185024738, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  722. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  723. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  724. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.915441513, 0.917819977, 0.00185978413, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  725. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  726. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  727. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.273786545, 0.276166916, -0.00180530548, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  728. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  729. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  730. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.64990616, 1.64990807, 2.31266022e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  731. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  732. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  733. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.74037552, 1.74275398, -0.00180244446, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  734. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  735. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  736. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(1.00948334, -1.00710487, -0.00185012817, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  737. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  738. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  739. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.365472794, 0.367851257, 0.00187504292, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  740. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  741. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  742. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.640443802, 0.642822266, -0.00182056427, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  743. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  744. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  745. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.28325844, 1.28326035, 2.38418579e-007, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  746. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  747. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  748. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.18331337, 0.183315277, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  749. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  750. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  751. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.00708008, 1.00945854, -0.00180530548, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  752. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  753. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  754. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.826148987, -0.823768616, -0.00183963776, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  755. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  756. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  757. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.824975967, 0.824977875, 3.4570694e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  758. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  759. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  760. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.83322906, 1.83323097, 3.64780426e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  761. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  762. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  763. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.642831802, -0.640453339, -0.00183963776, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  764. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  765. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  766. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.0904636383, 0.0928440094, -0.00182056427, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  767. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  768. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  769. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.0928478241, -0.0904693604, -0.00182056427, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  770. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  771. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  772. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.549985886, -0.549983978, -1.33514404e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  773. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  774. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  775. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.19040871, 1.19278717, -0.00182056427, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  776. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  777. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  778. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.823759079, 0.826137543, -0.00182056427, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  779. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  780. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  781. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.46657944, 1.46658134, 2.31266022e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  782. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  783. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  784. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.733295441, 0.733297348, 2.38418579e-007, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  785. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  786. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  787. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.458320618, 0.458322525, 5.17368317e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  788. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  789. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  790. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.37374115, 1.37611961, -0.00180530548, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  791. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  792. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.22222471, 0.518518627, 0.518518627))
  793. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.0536880493, 0, 7.62939453e-005, 7.26342932e-008, 0, -1, -7.58196705e-008, 1, -5.50710795e-015, 1, 7.58196705e-008, 7.26342932e-008))
  794. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.0599999987, 1.00999999))
  795. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  796. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.916606903, 0.91660881, 2.38418579e-007, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  797. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  798. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  799. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.0916824341, 0.0916843414, 2.67028809e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  800. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  801. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  802. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.734451294, -0.732088089, 0.00185012817, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  803. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  804. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  805. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.916631699, -0.916629791, -1.71661377e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  806. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  807. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  808. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.367816925, -0.365451813, 0.00185966492, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  809. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  810. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  811. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.64874077, 1.65112114, 0.00186932087, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  812. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  813. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  814. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.551136017, -0.548772812, 0.00185012817, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  815. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  816. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  817. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.458297729, -0.458295822, 1.71661377e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  818. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  819. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  820. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.459510803, -0.457132339, -0.00182056427, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  821. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  822. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  823. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.366638184, 0.366640091, 2.31266022e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  824. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  825. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  826. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.74159431, 1.74159622, 5.12599945e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  827. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  828. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  829. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.184497833, -0.182132721, 0.00183963776, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  830. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  831. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  832. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.917798996, -0.915416718, 0.00183963776, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  833. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  834. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(6.22222471, 0.518518627, 0.518518627))
  835. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.0536880493, 0.000133514404, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  836. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  837. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.518518567, 0.518518686, 0.259259343))
  838. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.90315247, -0.000120162964, 0.847258329, 9.47018997e-009, -1.1920929e-007, 1, -1, -8.30279134e-008, 9.47017753e-009, 8.30279134e-008, -1, -1.19209282e-007))
  839. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.699999988, 0.699999988))
  840. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.518518567, 0.518518686, 0.259259343))
  841. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.90315247, -0.00012421608, -0.837946296, 9.47018997e-009, -1.1920929e-007, 1, -1, -8.30279134e-008, 9.47017753e-009, 8.30279134e-008, -1, -1.19209282e-007))
  842. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.699999988, 0.699999988))
  843. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.518518686, 1.03703749))
  844. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000133275986, 2.90047836, 4.3380785, -0.999999762, -2.11777547e-008, 3.85407475e-008, 4.39660077e-008, -0.499999642, 0.866025031, 9.29916588e-010, 0.866025269, 0.499999523))
  845. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 0.99000001, 1))
  846. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.518518686, 1.03703749))
  847. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000120401382, 2.90047836, 4.33810234, 1, 2.27286364e-007, 2.32403181e-007, -3.14910324e-007, 0.499999881, 0.866025448, 8.0634095e-008, -0.866025448, 0.499999881))
  848. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 0.99000001, 1))
  849. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.518518567, 1.2962966, 0.259259343))
  850. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.90047836, 3.17142868, 0.000120162964, -1.26123183e-007, 0.49999994, 0.866025448, 8.06344076e-008, -0.866025448, 0.49999994, 1, 1.32893049e-007, 6.89086761e-008))
  851. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 1, 0.99000001))
  852. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.518518567, 1.2962966, 0.259259343))
  853. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.90048981, -3.1714077, 0.000133752823, -1.0990815e-007, -0.49999994, 0.866025388, -9.30000077e-010, -0.866025388, -0.49999994, 1, -5.57594753e-008, 9.47182528e-008))
  854. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 1, 0.99000001))
  855. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.03703725, 0.259259313, 1.03703737))
  856. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.78516388, 0.000163555145, -4.44323349, -7.26343217e-008, -1.78813963e-007, 1, -1, -5.96046519e-008, -7.26343359e-008, 5.96046661e-008, -1, -1.78813977e-007))
  857. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.02999997, 1))
  858. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  859. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.87590027, 0.000174999237, -4.53397942, -7.26343217e-008, -1.78813963e-007, 1, -1, -5.96046519e-008, -7.26343359e-008, 5.96046661e-008, -1, -1.78813977e-007))
  860. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1))
  861. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  862. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.20371246, 9.27448273e-005, 4.59070015, -1.35872718e-008, -1, -1.78813934e-007, 1, -1.35873384e-008, 3.73972171e-007, -3.73972171e-007, -1.78813934e-007, 1))
  863. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1))
  864. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.03703725, 0.259259313, 1.03703737))
  865. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.68144608, 8.22544098e-005, -2.112957, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  866. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.02999997, 1))
  867. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.03703725, 0.259259313, 1.03703737))
  868. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.11297655, 8.32080841e-005, 4.68144417, -1.35872718e-008, -1, -1.78813934e-007, 1, -1.35873384e-008, 3.73972171e-007, -3.73972171e-007, -1.78813934e-007, 1))
  869. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.02999997, 1))
  870. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.2962966, 0.518518627, 1.29629672))
  871. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.07218933, 9.1791153e-005, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  872. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.02999997, 1))
  873. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.03703725, 0.259259313, 1.03703737))
  874. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.78264618, 8.17775726e-005, -4.555583, 7.26343217e-008, 1.78813934e-007, 1, 1, 1.35872735e-008, -7.26343217e-008, -1.35872877e-008, 1, -1.78813934e-007))
  875. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.02999997, 1))
  876. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  877. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.87337875, 9.13143158e-005, -4.64633274, 7.26343217e-008, 1.78813934e-007, 1, 1, 1.35872735e-008, -7.26343217e-008, -1.35872877e-008, 1, -1.78813934e-007))
  878. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1))
  879. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  880. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.59070206, 9.1791153e-005, -2.20370197, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  881. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1))
  882. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  883. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-10.8129234, 2.88486481e-005, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  884. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.03999996, 1))
  885. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 1.94444513))
  886. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000122070313, -0.116662025, 12.0443993, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  887. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.600000024, 1))
  888. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518686, 2.07407475))
  889. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.24249268e-005, -0.259274483, 12.1092224, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  890. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 1))
  891. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.74074316, 0.259259313, 0.259259343))
  892. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70181274, -1.90734863e-006, 0.583325624, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  893. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.02999997, 0.100000001))
  894. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.74074316, 0.259259313, 0.259259343))
  895. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70181274, -1.90734863e-006, 0.259250879, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  896. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.05999994, 0.100000001))
  897. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518627, 2.07407475))
  898. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.24249268e-005, -0.259250879, 12.1092224, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  899. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 1))
  900. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.74074316, 0.259259313, 0.259259343))
  901. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70181274, -1.90734863e-006, -0.583348989, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  902. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.02999997, 0.100000001))
  903. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 1.94444513))
  904. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000122070313, -0.116671681, 12.0443993, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  905. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.600000024, 1))
  906. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.74074316, 0.259259313, 0.259259343))
  907. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70181274, -1.90734863e-006, -0.259255409, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  908. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.05999994, 0.100000001))
  909. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.74074316, 0.259259313, 0.259259343))
  910. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70181274, -1.90734863e-006, -0.129636765, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  911. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.05999994, 0.200000003))
  912. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.74074316, 0.259259313, 0.259259343))
  913. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70182037, -1.90734863e-006, 0.129623413, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  914. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.05999994, 0.200000003))
  915. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  916. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.05718994e-005, -0.337038875, 12.3684731, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  917. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.839999974, 1))
  918. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.74074316, 0.259259313, 1.2962966))
  919. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70182037, -1.90734863e-006, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  920. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.119999997, 1.00100005))
  921. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  922. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(7.05718994e-005, -0.33703351, 12.3684731, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  923. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.839999974, 1))
  924. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518686, 0.518518686))
  925. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000120639801, -3.70452118, -2.79076195, 1, 4.20377333e-008, 2.81075273e-007, 2.82378039e-007, -0.258818924, -0.965925813, 3.21423244e-008, 0.965925813, -0.258818954))
  926. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  927. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.55555594, 0.259259343))
  928. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.26083183, -3.08899784, 0.000133752823, -8.63836647e-008, -0.422618359, 0.906307876, -4.29547775e-009, -0.906307757, -0.42261833, 1, -4.04003444e-008, 7.64748265e-008))
  929. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0599999987, 1, 1))
  930. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.2962966, 0.259259343))
  931. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.90047836, 3.17142868, 0.000120162964, -1.26123183e-007, 0.49999994, 0.866025448, 8.06344076e-008, -0.866025448, 0.49999994, 1, 1.32893049e-007, 6.89086761e-008))
  932. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.100000001))
  933. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.55555594, 0.259259343))
  934. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.0921936, 2.85683537, 0.000120639801, -1.09868267e-007, 0.390732348, 0.920504391, -4.35992824e-008, -0.920504391, 0.390732348, 1, 2.79575652e-009, 1.18169858e-007))
  935. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0599999987, 1, 1))
  936. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.2962966, 0.259259343))
  937. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.90048981, -3.1714077, 0.000133752823, -1.0990815e-007, -0.49999994, 0.866025388, -9.30000077e-010, -0.866025388, -0.49999994, 1, -5.57594753e-008, 9.47182528e-008))
  938. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.100000001))
  939. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.55555594, 0.259259343))
  940. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.54734802, -2.42215061, 0.000133991241, -9.79423547e-008, -0.258819193, 0.965925872, 4.70048391e-008, -0.965925872, -0.258819193, 1, 2.00538253e-008, 1.06770791e-007))
  941. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0599999987, 1, 1))
  942. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 0.518518686, 0.259259343))
  943. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.89389801, -0.000120162964, 0.847258329, 9.47018997e-009, -1.1920929e-007, 1, -1, -8.30279134e-008, 9.47017753e-009, 8.30279134e-008, -1, -1.19209282e-007))
  944. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.560000002, 0.709999979))
  945. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 0.518518806))
  946. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000130414963, 0.86914444, -4.22298431, -1, -1.22191182e-006, 1.42418617e-006, -1.54888335e-006, 0.965925753, -0.25881955, -1.05940342e-006, -0.25881955, -0.965925753))
  947. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  948. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 0.518518686, 0.259259343))
  949. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.89389801, -0.00012421608, -0.837946296, 9.47018997e-009, -1.1920929e-007, 1, -1, -8.30279134e-008, 9.47017753e-009, 8.30279134e-008, -1, -1.19209282e-007))
  950. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.560000002, 0.709999979))
  951. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 0.777778149))
  952. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000133275986, 3.89334488, -2.17629051, -1, -1.32561297e-006, 8.84132305e-007, -7.05949105e-007, 0.866025686, 0.499999583, -1.42848728e-006, 0.499999583, -0.866025686))
  953. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  954. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 1.03703749))
  955. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000135421753, 4.64661407, 1.34696198, -1, -9.82721986e-007, 1.11105791e-007, -1.47027706e-007, 0.25881955, 0.965925753, -9.7799284e-007, 0.965925753, -0.25881955))
  956. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  957. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 1.03703749))
  958. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000120162964, 4.64661789, 1.346982, 1, 4.00835432e-007, 3.23014717e-007, -2.08264595e-007, -0.258818746, 0.965925992, 4.70779611e-007, -0.965925992, -0.258818746))
  959. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  960. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 0.777778149))
  961. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000119686127, 3.89336014, -2.17628479, 1, 4.28033047e-007, 1.74377874e-007, 2.83498451e-007, -0.866025269, 0.500000298, 3.65032292e-007, -0.500000298, -0.866025269))
  962. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  963. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 0.518518806))
  964. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000119924545, 0.869161129, -4.22298813, 1, 5.51122014e-007, 2.59200249e-007, 5.99428972e-007, -0.965925992, -0.258818775, 1.0772753e-007, 0.258818775, -0.965925992))
  965. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  966. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.55555594, 0.259259343))
  967. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.2608223, 3.08901405, 0.000119686127, -1.10378075e-007, 0.422619462, 0.90630722, -1.69980208e-009, -0.90630722, 0.422619462, 1, 4.51073809e-008, 1.00754818e-007))
  968. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0599999987, 1, 1))
  969. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518686, 1.03703749))
  970. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000120401382, 2.90047836, 4.33810234, 1, 2.27286364e-007, 2.32403181e-007, -3.14910324e-007, 0.499999881, 0.866025448, 8.0634095e-008, -0.866025448, 0.499999881))
  971. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 1.01999998, 1))
  972. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518686, 1.03703749))
  973. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000133275986, 2.90695953, 4.32685566, -0.999999762, -2.11777547e-008, 3.85407475e-008, 4.39660077e-008, -0.499999642, 0.866025031, 9.29916588e-010, 0.866025269, 0.499999523))
  974. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 1.01999998, 1))
  975. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518686, 1.29629683))
  976. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000133275986, 3.70452118, 3.69815493, -1, -1.61937432e-008, 4.06052507e-008, 4.34129106e-008, -0.258818865, 0.965925932, -5.13255038e-009, 0.965925932, 0.258818835))
  977. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  978. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518686, 1.29629683))
  979. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000120639801, 3.70451164, 3.69817638, 1, 8.18811756e-008, 2.70399255e-007, -2.82378039e-007, 0.258818924, 0.965925872, 9.10670028e-009, -0.965925872, 0.258818924))
  980. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  981. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518686, 0.518518686))
  982. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000133514404, -3.70451355, -2.7907486, -1, -4.76288342e-009, -2.05528039e-009, 7.52531371e-010, 0.258818656, -0.965925932, 5.13253973e-009, -0.965925932, -0.258818626))
  983. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  984. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.55555594, 0.259259343))
  985. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.54733849, 2.42216587, 0.000120639801, -1.29213319e-007, 0.258820295, 0.965925574, -2.80968671e-009, -0.965925574, 0.258820295, 1, 3.07290726e-008, 1.25537639e-007))
  986. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0599999987, 1, 1))
  987. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.55555594, 0.259259343))
  988. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.14159012, -2.8024168, 0.000133752823, -6.01987367e-008, -0.37460652, 0.927183867, 3.81304055e-008, -0.927183867, -0.37460655, 1, 1.28030564e-008, 7.00991976e-008))
  989. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0599999987, 1, 1))
  990. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.8148154, 0.518518627, 2.07407475))
  991. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.81292725, 0.00012421608, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  992. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 1.01999998, 0.899999976))
  993. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.8148154, 0.518518627, 2.07407475))
  994. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.81292725, 4.9829483e-005, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  995. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.0599999987, 1.00999999))
  996. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  997. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.87337875, 8.17775726e-005, -4.64633274, 7.26343217e-008, 1.78813934e-007, 1, 1, 1.35872735e-008, -7.26343217e-008, -1.35872877e-008, 1, -1.78813934e-007))
  998. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 1.01999998, 0.899999976))
  999. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1000. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.87337875, -0.000175714493, -4.64633274, 7.26343217e-008, 1.78813934e-007, 1, 1, 1.35872735e-008, -7.26343217e-008, -1.35872877e-008, 1, -1.78813934e-007))
  1001. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.100000001, 1.00999999))
  1002. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1003. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.59070206, -0.000175237656, -2.20370197, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1004. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.100000001, 1.00999999))
  1005. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1006. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.20371246, 8.32080841e-005, 4.59070015, -1.35872718e-008, -1, -1.78813934e-007, 1, -1.35873384e-008, 3.73972171e-007, -3.73972171e-007, -1.78813934e-007, 1))
  1007. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 1.01999998, 0.899999976))
  1008. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1009. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.59070206, -0.000215768814, 2.20371342, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1010. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.100000001, 1.00999999))
  1011. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1012. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.59070206, 8.22544098e-005, -2.20370197, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1013. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 1.01999998, 0.899999976))
  1014. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1015. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.87590027, -9.20295715e-005, -4.53397942, -7.26343217e-008, -1.78813963e-007, 1, -1, -5.96046519e-008, -7.26343359e-008, 5.96046661e-008, -1, -1.78813977e-007))
  1016. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.100000001, 1.00999999))
  1017. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1018. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.87590027, 0.000163555145, -4.53397942, -7.26343217e-008, -1.78813963e-007, 1, -1, -5.96046519e-008, -7.26343359e-008, 5.96046661e-008, -1, -1.78813977e-007))
  1019. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 1.01999998, 0.899999976))
  1020. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1021. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.01086426e-005, -5.50149727, 1.24056816, -1, -1.92401131e-007, -4.53303073e-007, 6.00274603e-008, 0.866025209, -0.500000358, 4.88772514e-007, -0.500000358, -0.866025209))
  1022. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1023. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1024. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000164270401, -0.294586182, 6.34798241, -1, -2.81808241e-007, -1.07155677e-006, 1.06889968e-006, -0.499999523, -0.866025686, -2.91724689e-007, -0.866025686, 0.499999523))
  1025. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1026. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1027. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.95910645e-005, -5.39571381, 1.16452789, -1, -1.92401131e-007, -4.53303073e-007, 6.00274603e-008, 0.866025209, -0.500000358, 4.88772514e-007, -0.500000358, -0.866025209))
  1028. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1029. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1030. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.01086426e-005, -5.51445961, 1.21811485, -1, -1.92401131e-007, -4.53303073e-007, 6.00274603e-008, 0.866025209, -0.500000358, 4.88772514e-007, -0.500000358, -0.866025209))
  1031. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1032. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1033. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000111818314, -4.89693832, 3.89433098, -1, -6.54337043e-007, -1.05499896e-006, 5.86486806e-007, 0.500000536, -0.866025209, 1.09417238e-006, -0.866025209, -0.500000536))
  1034. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1035. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1036. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.14984131e-005, -4.77596188, -1.17524147, -1, -1.35872629e-008, 7.26342932e-008, -1.35872771e-008, 1, -1.78813934e-007, -7.26342932e-008, -1.78813934e-007, -1))
  1037. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1038. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1039. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-2.16960907e-005, -4.82089996, 3.78854847, -1, -6.54337043e-007, -1.05499896e-006, 5.86486806e-007, 0.500000536, -0.866025209, 1.09417238e-006, -0.866025209, -0.500000536))
  1040. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1041. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1042. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.6239624e-005, -0.171104431, 6.27668953, -1, -2.81808241e-007, -1.07155677e-006, 1.06889968e-006, -0.499999523, -0.866025686, -2.91724689e-007, -0.866025686, 0.499999523))
  1043. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1044. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1045. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000125408173, -2.85110855, 5.70879173, -1, -7.88447323e-007, -1.0545923e-006, 1.05459173e-006, 7.30156785e-007, -1, 7.88448119e-007, -1, -7.30155932e-007))
  1046. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1047. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1048. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000112056732, -4.87447739, 3.90729904, -1, -6.54337043e-007, -1.05499896e-006, 5.86486806e-007, 0.500000536, -0.866025209, 1.09417238e-006, -0.866025209, -0.500000536))
  1049. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1050. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1051. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(1.47819519e-005, -2.86407852, 5.57916451, -1, -7.88447323e-007, -1.0545923e-006, 1.05459173e-006, 7.30156785e-007, -1, 7.88448119e-007, -1, -7.30155932e-007))
  1052. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1053. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1054. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-8.20159912e-005, -4.64633274, -1.18819618, -1, -1.35872629e-008, 7.26342932e-008, -1.35872771e-008, 1, -1.78813934e-007, -7.26342932e-008, -1.78813934e-007, -1))
  1055. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1056. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1057. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.14984131e-005, -4.77596188, -1.20115852, -1, -1.35872629e-008, 7.26342932e-008, -1.35872771e-008, 1, -1.78813934e-007, -7.26342932e-008, -1.78813934e-007, -1))
  1058. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1059. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1060. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000163793564, -0.272134781, 6.33502007, -1, -2.81808241e-007, -1.07155677e-006, 1.06889968e-006, -0.499999523, -0.866025686, -2.91724689e-007, -0.866025686, 0.499999523))
  1061. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1062. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1063. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000125408173, -2.87703323, 5.70879173, -1, -7.88447323e-007, -1.0545923e-006, 1.05459173e-006, 7.30156785e-007, -1, 7.88448119e-007, -1, -7.30155932e-007))
  1064. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1065. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1066. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.53131104e-005, -2.33333254, 6.26292419, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1067. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1068. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1069. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.07424164e-005, 4.60000801, 3.13654184, -1, 7.88447494e-007, 1.05459264e-006, 1.05459196e-006, -8.34465027e-007, 1, 7.88448347e-007, 1, 8.34464174e-007))
  1070. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1071. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1072. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.81469727e-005, -2.33333683, 6.26292419, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1073. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1074. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1075. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-5.91278076e-005, 0.345923424, 6.61297035, 1, -1.35872806e-008, 7.26343004e-008, -2.45502303e-008, 0.866025329, 0.500000119, -6.96967817e-008, -0.500000119, 0.866025329))
  1076. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1077. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1078. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(6.67572021e-005, 0.451700211, 6.53692818, 1, -1.35872806e-008, 7.26343004e-008, -2.45502303e-008, 0.866025329, 0.500000119, -6.96967817e-008, -0.500000119, 0.866025329))
  1079. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1080. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1081. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.39233398e-005, 0.345918655, 6.48334122, -1, 1.92401188e-007, 4.53303187e-007, 6.00273324e-008, -0.866025329, 0.500000119, 4.88772628e-007, 0.500000119, 0.866025329))
  1082. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1083. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1084. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.15255737e-007, 4.60000992, 3.1365478, 1, -1.92401188e-007, 2.57636145e-007, -2.57636145e-007, -5.96046377e-008, 1, -1.92401174e-007, -1, -5.96046874e-008))
  1085. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1086. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1087. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000117063522, 4.61297989, 3.2661674, 1, -1.92401188e-007, 2.57636145e-007, -2.57636145e-007, -5.96046377e-008, 1, -1.92401174e-007, -1, -5.96046874e-008))
  1088. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1089. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1090. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000117063522, 4.58705902, 3.2661674, 1, -1.92401188e-007, 2.57636145e-007, -2.57636145e-007, -5.96046377e-008, 1, -1.92401174e-007, -1, -5.96046874e-008))
  1091. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1092. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1093. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000145196915, 4.970644, 0.487595558, 1, -5.64930247e-007, 1.63133308e-007, -4.23742733e-007, -0.50000006, 0.866025448, -4.07677305e-007, -0.866025448, -0.50000006))
  1094. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1095. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1096. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.39233398e-005, 0.332958221, 6.46089363, -1, 1.92401188e-007, 4.53303187e-007, 6.00273324e-008, -0.866025329, 0.500000119, 4.88772628e-007, 0.500000119, 0.866025329))
  1097. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1098. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1099. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000169277191, 4.97064209, 0.487604141, -1, 2.81808099e-007, 1.07155711e-006, 1.06889991e-006, 0.499999464, 0.866025746, -2.91724916e-007, 0.866025746, -0.499999464))
  1100. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1101. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1102. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000131368637, 4.61297798, 3.26617432, -1, 7.88447494e-007, 1.05459264e-006, 1.05459196e-006, -8.34465027e-007, 1, 7.88448347e-007, 1, 8.34464174e-007))
  1103. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1104. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1105. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-2.50339508e-005, 5.07168198, 0.429261208, 1, -5.64930247e-007, 1.63133308e-007, -4.23742733e-007, -0.50000006, 0.866025448, -4.07677305e-007, -0.866025448, -0.50000006))
  1106. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1107. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1108. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-5.91278076e-005, 0.332961082, 6.59052086, 1, -1.35872806e-008, 7.26343004e-008, -2.45502303e-008, 0.866025329, 0.500000119, -6.96967817e-008, -0.500000119, 0.866025329))
  1109. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1110. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1111. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.38690186e-005, 0.451704025, 6.40730095, -1, 1.92401188e-007, 4.53303187e-007, 6.00273324e-008, -0.866025329, 0.500000119, 4.88772628e-007, 0.500000119, 0.866025329))
  1112. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1113. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1114. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000169277191, 4.94818306, 0.500570297, -1, 2.81808099e-007, 1.07155711e-006, 1.06889991e-006, 0.499999464, 0.866025746, -2.91724916e-007, 0.866025746, -0.499999464))
  1115. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1116. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1117. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.00012254715, 2.81091881, 5.52395439, -1, 6.54337214e-007, 1.0549993e-006, 5.86486863e-007, -0.500000596, 0.866025031, 1.09417272e-006, 0.866025031, 0.500000596))
  1118. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1119. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1120. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.47819519e-005, 2.86450768, 5.40520668, -1, 6.54337214e-007, 1.0549993e-006, 5.86486863e-007, -0.500000596, 0.866025031, 1.09417272e-006, 0.866025031, 0.500000596))
  1121. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1122. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1123. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.95774841e-005, 5.07167244, 0.429275513, -1, 2.81808099e-007, 1.07155711e-006, 1.06889991e-006, 0.499999464, 0.866025746, -2.91724916e-007, 0.866025746, -0.499999464))
  1124. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1125. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1126. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.81469727e-005, 2.86450768, 5.4052124, 1, -3.41412829e-007, 2.95972967e-007, -8.56137845e-008, 0.499999881, 0.866025567, -4.43658678e-007, -0.866025567, 0.499999881))
  1127. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1128. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1129. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.53131104e-005, -2.33333254, 6.28885269, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1130. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1131. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1132. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-8.20159912e-005, -2.20370197, 6.27588654, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1133. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1134. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1135. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-8.74996185e-005, 2.81091881, 5.52396393, 1, -3.41412829e-007, 2.95972967e-007, -8.56137845e-008, 0.499999881, 0.866025567, -4.43658678e-007, -0.866025567, 0.499999881))
  1136. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1137. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1138. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000145196915, 4.94819832, 0.500566483, 1, -5.64930247e-007, 1.63133308e-007, -4.23742733e-007, -0.50000006, 0.866025448, -4.07677305e-007, -0.866025448, -0.50000006))
  1139. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1140. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1141. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.81469727e-005, -2.33333683, 6.28885269, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1142. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1143. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1144. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-8.74996185e-005, 2.78847122, 5.51100349, 1, -3.41412829e-007, 2.95972967e-007, -8.56137845e-008, 0.499999881, 0.866025567, -4.43658678e-007, -0.866025567, 0.499999881))
  1145. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1146. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1147. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.00012254715, 2.78846169, 5.51098824, -1, 6.54337214e-007, 1.0549993e-006, 5.86486863e-007, -0.500000596, 0.866025031, 1.09417272e-006, 0.866025031, 0.500000596))
  1148. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1149. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1150. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000131368637, 4.58704567, 3.26617432, -1, 7.88447494e-007, 1.05459264e-006, 1.05459196e-006, -8.34465027e-007, 1, 7.88448347e-007, 1, 8.34464174e-007))
  1151. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1152. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1153. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(9.15527344e-005, -2.20371342, 6.27588654, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1154. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1155. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1156. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-6.72340393e-005, -2.86659622, 5.46681213, 1, 8.19563866e-007, -1.05459219e-006, -1.05459162e-006, -7.30156785e-007, -1, -8.19564661e-007, 1, -7.30155932e-007))
  1157. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1158. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1159. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.12599945e-005, -2.87955475, 5.59644508, 1, 8.19563866e-007, -1.05459219e-006, -1.05459162e-006, -7.30156785e-007, -1, -8.19564661e-007, 1, -7.30155932e-007))
  1160. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1161. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1162. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.38418579e-007, -5.41842747, 1.15975761, 1, 2.08616257e-007, -4.53303073e-007, -4.59847378e-008, -0.866025269, -0.500000358, -4.96880091e-007, 0.500000358, -0.866025269))
  1163. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1164. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1165. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000163793564, -4.53397942, -1.19071579, 1, 5.96046519e-008, 7.26342861e-008, 5.96046661e-008, -1, -1.7881392e-007, 7.2634279e-008, 1.7881392e-007, -1))
  1166. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1167. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1168. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.76565552e-005, -4.84293938, 3.79575825, 1, 6.40749931e-007, -1.05499896e-006, -5.93280276e-007, -0.500000477, -0.86602515, -1.08240556e-006, 0.866025209, -0.500000477))
  1169. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1170. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1171. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.12599945e-005, -2.85363007, 5.59644508, 1, 8.19563866e-007, -1.05459219e-006, -1.05459162e-006, -7.30156785e-007, -1, -8.19564661e-007, 1, -7.30155932e-007))
  1172. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1173. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1174. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-2.64644623e-005, -4.66361141, -1.20367813, 1, 5.96046519e-008, 7.26342861e-008, 5.96046661e-008, -1, -1.7881392e-007, 7.2634279e-008, 1.7881392e-007, -1))
  1175. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1176. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1177. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.60012054e-005, -0.229459763, 6.18065071, 1, 3.27825546e-007, -1.07155665e-006, -1.09190842e-006, 0.499999553, -0.866025746, 2.51872478e-007, 0.866025746, 0.499999553))
  1178. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1179. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1180. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.78949738e-005, -4.82047844, 3.80872631, 1, 6.40749931e-007, -1.05499896e-006, -5.93280276e-007, -0.500000477, -0.86602515, -1.08240556e-006, 0.866025209, -0.500000477))
  1181. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1182. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1183. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000123739243, -5.29968166, 1.10616493, 1, 2.08616257e-007, -4.53303073e-007, -4.59847378e-008, -0.866025269, -0.500000358, -4.96880091e-007, 0.500000358, -0.866025269))
  1184. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1185. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1186. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-2.64644623e-005, -4.66361141, -1.17776489, 1, 5.96046519e-008, 7.26342861e-008, 5.96046661e-008, -1, -1.7881392e-007, 7.2634279e-008, 1.7881392e-007, -1))
  1187. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1188. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1189. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.38418579e-007, -5.40546131, 1.18221474, 1, 2.08616257e-007, -4.53303073e-007, -4.59847378e-008, -0.866025269, -0.500000358, -4.96880091e-007, 0.500000358, -0.866025269))
  1190. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1191. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1192. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.96453857e-005, -0.330493927, 6.23898315, 1, 3.27825546e-007, -1.07155665e-006, -1.09190842e-006, 0.499999553, -0.866025746, 2.51872478e-007, 0.866025746, 0.499999553))
  1193. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1194. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1195. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.96453857e-005, -0.352949142, 6.2519474, 1, 3.27825546e-007, -1.07155665e-006, -1.09190842e-006, 0.499999553, -0.866025746, 2.51872478e-007, 0.866025746, 0.499999553))
  1196. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1197. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1198. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-9.25064087e-005, -4.7668972, 3.68998146, 1, 6.40749931e-007, -1.05499896e-006, -5.93280276e-007, -0.500000477, -0.86602515, -1.08240556e-006, 0.866025209, -0.500000477))
  1199. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1200. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.8148154, 0.518518627, 2.07407475))
  1201. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.81292725, 0.000133752823, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1202. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1))
  1203. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,1,"Really black","Part",Vector3.new(0.259259343, 0.259259313, 0.259259343))
  1204. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.1920929e-007, -0.129768372, -3.81292725, -9.78950787e-009, -1, -2.98023224e-008, -1, 9.78950787e-009, 4.63133887e-009, -4.63133842e-009, 2.98023224e-008, -1))
  1205. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=6547801",Vector3.new(0, 0, 0),Vector3.new(0.0518518686, 0.00129629672, 0.0518518686))
  1206. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,1,"Really black","Part",Vector3.new(0.259259343, 0.259259313, 0.259259343))
  1207. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.1920929e-007, -0.129768372, -3.81292725, -9.78950787e-009, -1, -2.98023224e-008, -1, 9.78950787e-009, 4.63133887e-009, -4.63133842e-009, 2.98023224e-008, -1))
  1208. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=6547801",Vector3.new(0, 0, 0),Vector3.new(0.0518518686, 0.00129629672, 0.0518518686))
  1209. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,1,"Really black","Part",Vector3.new(0.259259343, 0.259259313, 0.259259343))
  1210. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.75984001, 0.000175714493, -3.91405869, -1.05164366e-008, -0.968119502, -0.250488758, -1, 9.91058347e-009, 3.68003583e-009, -1.08022657e-009, 0.250488758, -0.968119502))
  1211. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=6547801",Vector3.new(0, 0, 0),Vector3.new(0.0518518686, 0.00129629672, 0.0518518686))
  1212. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,1,"Really black","Part",Vector3.new(0.259259343, 0.259259313, 0.259259343))
  1213. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.65045071, 9.1791153e-005, -3.88835716, -7.4505806e-008, 0.968119502, -0.250488728, 1, 7.40473354e-008, -1.12545493e-008, 7.65227881e-009, -0.250488728, -0.968119562))
  1214. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=6547801",Vector3.new(0, 0, 0),Vector3.new(0.0518518686, 0.00129629672, 0.0518518686))
  1215. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1216. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000163793564, -0.283361435, 6.34150124, -1, -2.81808241e-007, -1.07155677e-006, 1.06889968e-006, -0.499999523, -0.866025686, -2.91724689e-007, -0.866025686, 0.499999523))
  1217. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1218. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1219. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.01086426e-005, -5.50797844, 1.22934341, -1, -1.92401131e-007, -4.53303073e-007, 6.00274603e-008, 0.866025209, -0.500000358, 4.88772514e-007, -0.500000358, -0.866025209))
  1220. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1221. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1222. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000125408173, -2.86408234, 5.70879555, -1, -7.88447323e-007, -1.0545923e-006, 1.05459173e-006, 7.30156785e-007, -1, 7.88448119e-007, -1, -7.30155932e-007))
  1223. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1224. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1225. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.14984131e-005, -4.77596188, -1.18818855, -1, -1.35872629e-008, 7.26342932e-008, -1.35872771e-008, 1, -1.78813934e-007, -7.26342932e-008, -1.78813934e-007, -1))
  1226. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1227. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1228. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000111818314, -4.88570976, 3.90081406, -1, -6.54337043e-007, -1.05499896e-006, 5.86486806e-007, 0.500000536, -0.866025209, 1.09417238e-006, -0.866025209, -0.500000536))
  1229. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1230. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1231. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-8.74996185e-005, 2.79969025, 5.51748085, 1, -3.41412829e-007, 2.95972967e-007, -8.56137845e-008, 0.499999881, 0.866025567, -4.43658678e-007, -0.866025567, 0.499999881))
  1232. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1233. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1234. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.53131104e-005, -2.33333254, 6.27589035, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1235. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1236. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1237. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000145196915, 4.95941925, 0.494076729, 1, -5.64930247e-007, 1.63133308e-007, -4.23742733e-007, -0.50000006, 0.866025448, -4.07677305e-007, -0.866025448, -0.50000006))
  1238. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1239. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1240. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.00012254715, 2.79969025, 5.51747131, -1, 6.54337214e-007, 1.0549993e-006, 5.86486863e-007, -0.500000596, 0.866025031, 1.09417272e-006, 0.866025031, 0.500000596))
  1241. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1242. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1243. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000169277191, 4.95941162, 0.494087219, -1, 2.81808099e-007, 1.07155711e-006, 1.06889991e-006, 0.499999464, 0.866025746, -2.91724916e-007, 0.866025746, -0.499999464))
  1244. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1245. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1246. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.81469727e-005, -2.33333683, 6.27589035, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1247. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1248. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1249. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.39233398e-005, 0.339439392, 6.47211838, -1, 1.92401188e-007, 4.53303187e-007, 6.00273324e-008, -0.866025329, 0.500000119, 4.88772628e-007, 0.500000119, 0.866025329))
  1250. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1251. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1252. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-5.91278076e-005, 0.339440346, 6.6017437, 1, -1.35872806e-008, 7.26343004e-008, -2.45502303e-008, 0.866025329, 0.500000119, -6.96967817e-008, -0.500000119, 0.866025329))
  1253. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1254. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1255. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000131368637, 4.60000801, 3.26617432, -1, 7.88447494e-007, 1.05459264e-006, 1.05459196e-006, -8.34465027e-007, 1, 7.88448347e-007, 1, 8.34464174e-007))
  1256. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1257. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1258. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000117063522, 4.60001373, 3.2661674, 1, -1.92401188e-007, 2.57636145e-007, -2.57636145e-007, -5.96046377e-008, 1, -1.92401174e-007, -1, -5.96046874e-008))
  1259. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1260. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1261. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.96453857e-005, -0.341720581, 6.24546432, 1, 3.27825546e-007, -1.07155665e-006, -1.09190842e-006, 0.499999553, -0.866025746, 2.51872478e-007, 0.866025746, 0.499999553))
  1262. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1263. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1264. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.12599945e-005, -2.86659622, 5.59644508, 1, 8.19563866e-007, -1.05459219e-006, -1.05459162e-006, -7.30156785e-007, -1, -8.19564661e-007, 1, -7.30155932e-007))
  1265. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1266. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1267. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-2.64644623e-005, -4.66361141, -1.19071198, 1, 5.96046519e-008, 7.26342861e-008, 5.96046661e-008, -1, -1.7881392e-007, 7.2634279e-008, 1.7881392e-007, -1))
  1268. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1269. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1270. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.76565552e-005, -4.831707, 3.80224323, 1, 6.40749931e-007, -1.05499896e-006, -5.93280276e-007, -0.500000477, -0.86602515, -1.08240556e-006, 0.866025209, -0.500000477))
  1271. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1272. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1273. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.38418579e-007, -5.4119463, 1.17098236, 1, 2.08616257e-007, -4.53303073e-007, -4.59847378e-008, -0.866025269, -0.500000358, -4.96880091e-007, 0.500000358, -0.866025269))
  1274. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1275.  
  1276. function MagniDamage(Hit,Part,magni,mindam,maxdam,knock,Type)
  1277. for _,c in pairs(workspace:children()) do
  1278. local hum=c:findFirstChild("Humanoid")
  1279. if hum~=nil then
  1280. local head=c:findFirstChild("Torso")
  1281. if head~=nil then
  1282. local targ=head.Position-Part.Position
  1283. local mag=targ.magnitude
  1284. if mag<=magni and c.Name~=Player.Name then
  1285. Damagefunc(Hit,head,mindam,maxdam,knock,Type,RootPart,.2,1,3)
  1286. end
  1287. end
  1288. end
  1289. end
  1290. end
  1291.  
  1292. function magicring(brickcolor,cframe,x1,y1,z1,x3,y3,z3)
  1293. local prt=part(3,workspace,"SmoothPlastic",0,0,brickcolor,"Effect",Vector3.new(0.5,0.5,0.5))
  1294. prt.Anchored=true
  1295. prt.CFrame=cframe
  1296. prt.Touched:connect(function(hit) end)
  1297. local msh=mesh("SpecialMesh",prt,"FileMesh","http://www.roblox.com/asset/?id=3270017",Vector3.new(0,0,0),Vector3.new(x1,y1,z1))
  1298. local ref = Instance.new("Part",workspace)
  1299. ref.Anchored = true
  1300. ref.Size = Vector3.new(5,5,5)
  1301. ref.CFrame = Torso.CFrame*CFrame.new(-5,0,0)
  1302. ref.CanCollide = false
  1303. ref.Transparency = 1
  1304. MagniDamage(prt,ref,10,5,10,0,"Knockdown")
  1305. coroutine.resume(coroutine.create(function(Part,Mesh)
  1306. for i=0,1,0.03 do
  1307. wait()
  1308. Part.CFrame=Part.CFrame
  1309. Part.Transparency=i
  1310. Mesh.Scale=Mesh.Scale+Vector3.new(x3,y3,z3)
  1311. end
  1312. Part.Parent=nil
  1313. ref.Parent = nil
  1314. end),prt,msh)
  1315. end
  1316.  
  1317. function attackone()
  1318. attack = true
  1319. for i = 0,1,0.1 do
  1320. swait()
  1321. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  1322. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(70)),.3)
  1323. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-40), math.rad(0), math.rad(10)),.3)
  1324. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  1325. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1326. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1327. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
  1328. end
  1329. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,30,50,math.random(5,10),"Normal",RootPart,.2,1) end)
  1330. so("http://roblox.com/asset/?id=199150686",Hitbox,1,1)
  1331. for i = 0,1,0.1 do
  1332. swait()
  1333. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1334. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1335. local h = 5
  1336. 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)
  1337. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1338. 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)
  1339. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1340. scfr = blcf
  1341. elseif not scfr then
  1342. scfr = blcf
  1343. end
  1344. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(90)),.3)
  1345. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-80)),.3)
  1346. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-90), math.rad(-130)),.3)
  1347. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-20)),.3)
  1348. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1349. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1350. handleweld.C0=clerp(handleweld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.3)
  1351. end
  1352. for i = 0,1,0.1 do
  1353. swait()
  1354. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(70)),.3)
  1355. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-70)),.3)
  1356. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(90), math.rad(50)),.3)
  1357. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-20)),.3)
  1358. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1359. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1360. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1361. end
  1362. so("http://roblox.com/asset/?id=199146359",Hitbox,1,1)
  1363. for i = 0,1,0.1 do
  1364. swait()
  1365. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1366. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1367. local h = 5
  1368. 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)
  1369. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1370. 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)
  1371. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1372. scfr = blcf
  1373. elseif not scfr then
  1374. scfr = blcf
  1375. end
  1376. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-50)),.3)
  1377. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(50)),.3)
  1378. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-10), math.rad(130)),.3)
  1379. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-20)),.3)
  1380. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1381. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1382. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-40),math.rad(0),math.rad(0)),.3)
  1383. end
  1384. attack = false
  1385. con:disconnect()
  1386. scfr = nil
  1387. end
  1388.  
  1389. function attacktwo()
  1390. attack = true
  1391. for i = 0,1,0.1 do
  1392. swait()
  1393. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(70)),.3)
  1394. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-70)),.3)
  1395. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-90), math.rad(-90)),.3)
  1396. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  1397. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1398. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1399. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1400. end
  1401. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,30,50,math.random(5,10),"Normal",RootPart,.2,1) end)
  1402. so("http://roblox.com/asset/?id=199150686",Hitbox,1,1)
  1403. for i = 0,1,0.1 do
  1404. swait()
  1405. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(90)),.3)
  1406. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-80)),.3)
  1407. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-190), math.rad(-90)),.3)
  1408. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  1409. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1410. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1411. handleweld.C0=clerp(handleweld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.3)
  1412. end
  1413. for i = 0,1,0.1 do
  1414. swait()
  1415. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(70)),.3)
  1416. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-70)),.3)
  1417. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(120), math.rad(90)),.3)
  1418. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  1419. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1420. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1421. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1422. end
  1423. so("http://roblox.com/asset/?id=199150686",Hitbox,1,.9)
  1424. for i = 0,1,0.1 do
  1425. swait()
  1426. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1427. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1428. local h = 5
  1429. 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)
  1430. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1431. 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)
  1432. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1433. scfr = blcf
  1434. elseif not scfr then
  1435. scfr = blcf
  1436. end
  1437. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  1438. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(70)),.3)
  1439. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-20), math.rad(90)),.3)
  1440. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  1441. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1442. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1443. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1444. end
  1445. for i = 0,1,0.1 do
  1446. swait()
  1447. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  1448. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(0)),.3)
  1449. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(150), math.rad(0), math.rad(0)),.3)
  1450. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  1451. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1452. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1453. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1454. end
  1455. so("http://roblox.com/asset/?id=199146359",Hitbox,1,.9)
  1456. for i = 0,1,0.1 do
  1457. swait()
  1458. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1459. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1460. local h = 5
  1461. 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)
  1462. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1463. 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)
  1464. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1465. scfr = blcf
  1466. elseif not scfr then
  1467. scfr = blcf
  1468. end
  1469. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(20)),.3)
  1470. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-20)),.3)
  1471. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(0)),.3)
  1472. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-30)),.3)
  1473. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1474. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1475. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1476. end
  1477. attack = false
  1478. con:disconnect()
  1479. scfr = nil
  1480. end
  1481.  
  1482. function Spin()
  1483. attack=true
  1484. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,30,50,math.random(5,10),"Normal",RootPart,.2,1) end)
  1485. for i=0,1,0.1 do
  1486. swait()
  1487. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(70)),.3)
  1488. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-70)),.3)
  1489. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(50), math.rad(120)),.3)
  1490. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-50)),.3)
  1491. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1492. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1493. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
  1494. end
  1495. Humanoid = game.Players.LocalPlayer.Character.Humanoid
  1496. Humanoid.Jump = true
  1497. for i=0,1,1 do
  1498. so("http://roblox.com/asset/?id=234365573",Torso,1,1)
  1499. swait()
  1500. for i=0,1,0.1 do
  1501. swait()
  1502. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1503. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1504. local h = 5
  1505. 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)
  1506. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1507. 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)
  1508. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1509. scfr = blcf
  1510. elseif not scfr then
  1511. scfr = blcf
  1512. end
  1513. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,2)*euler(0,-1.2,6*i),.3)
  1514. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-70)),.3)
  1515. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-10), math.rad(80)),.3)
  1516. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-70)),.3)
  1517. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(60),math.rad(-10)),.3)
  1518. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(10)),.3)
  1519. handleweld.C0=clerp(handleweld.C0,cf(0,-1,-1)*angles(math.rad(-80),math.rad(0),math.rad(0)),.3)
  1520. end
  1521. end
  1522. attack=false
  1523. con:disconnect()
  1524. scfr = nil
  1525. end
  1526.  
  1527. function StunTarget()
  1528. attack = true
  1529. for i = 0,1,0.05 do
  1530. swait()
  1531. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-80)),.3)
  1532. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(70)),.3)
  1533. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-40), math.rad(0), math.rad(10)),.3)
  1534. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-90)),.3)
  1535. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1536. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1537. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
  1538. end
  1539. so("http://roblox.com/asset/?id=228343249",Torso,1,1)
  1540. for i = 1,2 do
  1541. magicring(BrickColor.new(tclr),Torso.CFrame*CFrame.new(-5,0,0)*CFrame.Angles(math.random(-50,50),math.random(-50,50),math.random(-50,50)),1,1,0.1,1,1,0.05)
  1542. magicring(BrickColor.new(tclr),Torso.CFrame*CFrame.new(-5,0,0)*CFrame.Angles(math.random(-50,50),math.random(-50,50),math.random(-50,50)),1,1,0.1,1,1,0.05)
  1543. end
  1544. attack = false
  1545. end
  1546.  
  1547. mouse.Button1Down:connect(function()
  1548. if attack == false and attacktype == 1 then
  1549. attacktype = 2
  1550. attackone()
  1551. elseif attack == false and attacktype == 2 then
  1552. attacktype = 1
  1553. attacktwo()
  1554. end
  1555. end)
  1556.  
  1557. mouse.KeyDown:connect(function(k)
  1558. k=k:lower()
  1559. if attack == false and k == 'q' then
  1560. Spin()
  1561. elseif attack == false and k == 'e' then
  1562. StunTarget()
  1563. end
  1564. end)
  1565.  
  1566.  
  1567. local sine = 0
  1568. local change = 1
  1569. local val = 0
  1570.  
  1571. while true do
  1572. swait()
  1573. sine = sine + change
  1574. local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude
  1575. local velderp=RootPart.Velocity.y
  1576. hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
  1577. if equipped==true or equipped==false then
  1578. if attack==false then
  1579. idle=idle+1
  1580. else
  1581. idle=0
  1582. end
  1583. if idle>=500 then
  1584. if attack==false then
  1585. --Sheath()
  1586. end
  1587. end
  1588. if RootPart.Velocity.y > 1 and hitfloor==nil then
  1589. if attack==false then
  1590. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
  1591. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-20),math.rad(0),math.rad(0)),.2)
  1592. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(20)),.2)
  1593. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-20)),.2)
  1594. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-20)),.2)
  1595. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(-20)),.2)
  1596. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.2)
  1597. end
  1598. elseif RootPart.Velocity.y < -1 and hitfloor==nil then
  1599. Anim="Fall"
  1600. if attack==false then
  1601. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
  1602. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(20),math.rad(0),math.rad(0)),.2)
  1603. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(40)),.2)
  1604. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-40)),.2)
  1605. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-20)),.2)
  1606. LH.C0=clerp(LH.C0,cf(-1,-.5,-.5)*angles(math.rad(0),math.rad(-90),math.rad(10)),.2)
  1607. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.2)
  1608. end
  1609. elseif torvel<1 and hitfloor~=nil then
  1610. Anim="Idle"
  1611. if attack==false then
  1612. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-40)),.2)
  1613. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(40)),.2)
  1614. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(10)),.2)
  1615. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-10)),.2)
  1616. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.2)
  1617. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.2)
  1618. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-5),math.rad(0),math.rad(0)),.2)
  1619. end
  1620. elseif torvel>2 and hitfloor~=nil then
  1621. Anim="Walk"
  1622. if attack==false then
  1623. change=3
  1624. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(0)),.2)
  1625. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-5),math.rad(0),math.rad(0)),.2)
  1626. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(10)),.2)
  1627. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-15)),.2)
  1628. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(10)),.2)
  1629. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(10)),.2)
  1630. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-10),math.rad(0),math.rad(0)),.2)
  1631. end
  1632. end
  1633. end
  1634. if #Effects>0 then
  1635. for e=1,#Effects do
  1636. if Effects[e]~=nil then
  1637. local Thing=Effects[e]
  1638. if Thing~=nil then
  1639. local Part=Thing[1]
  1640. local Mode=Thing[2]
  1641. local Delay=Thing[3]
  1642. local IncX=Thing[4]
  1643. local IncY=Thing[5]
  1644. local IncZ=Thing[6]
  1645. if Thing[1].Transparency<=1 then
  1646. if Thing[2]=="Block1" then
  1647. Thing[1].CFrame=Thing[1].CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  1648. Mesh=Thing[1].Mesh
  1649. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  1650. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1651. elseif Thing[2]=="Cylinder" then
  1652. Mesh=Thing[1].Mesh
  1653. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  1654. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1655. elseif Thing[2]=="Blood" then
  1656. Mesh=Thing[7]
  1657. Thing[1].CFrame=Thing[1].CFrame*cf(0,.5,0)
  1658. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  1659. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1660. elseif Thing[2]=="Elec" then
  1661. Mesh=Thing[1].Mesh
  1662. Mesh.Scale=Mesh.Scale+vt(Thing[7],Thing[8],Thing[9])
  1663. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1664. elseif Thing[2]=="Disappear" then
  1665. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1666. end
  1667. else
  1668. Part.Parent=nil
  1669. table.remove(Effects,e)
  1670. end
  1671. end
  1672. end
  1673. end
  1674. end
  1675. end
Add Comment
Please, Sign In to add comment