Advertisement
BINO2002

Untitled

May 4th, 2017
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 123.63 KB | None | 0 0
  1. local plr = game.Players.LocalPlayer
  2. local chr = plr.Character
  3. local maus = plr:GetMouse()
  4. local PGui=plr.PlayerGui
  5. local lleg = chr["Left Leg"]
  6. local rleg = chr["Right Leg"]
  7. local larm = chr["Left Arm"]
  8. local rarm = chr["Right Arm"]
  9. local hed = chr.Head
  10. local armanims = false
  11. local rutprt = chr.HumanoidRootPart
  12. local torso = chr.Torso
  13. local otheranims=false
  14. local swimming=false
  15. chr.Animate.Disabled=true
  16. local fldb={['w']=false,['a']=false,['s']=false,['d']=false}
  17. local RunSpeed=30
  18. local WlkSpeed=16
  19. local SwimSpeed=14
  20. local SwimDashSpeed=28
  21. local anim = "Idling"
  22. local lastanim = "Idling"
  23. local val = 0
  24. local syne = 0
  25. local num = 0
  26. local runtime = 0
  27. local pseudohead=hed:Clone()
  28. for i,x in pairs(pseudohead:GetChildren()) do if not x.ClassName:find('Mesh') then x:Destroy() end end
  29. pseudohead.Name='PseudoHead'
  30. pseudohead.Parent=chr.Head
  31. local pseudoweld=Instance.new('Weld',torso)
  32. pseudoweld.Part0=hed
  33. pseudoweld.Name='PseudoHedWld'
  34. pseudoweld.Part1=pseudohead
  35. hed.Transparency=1
  36.  
  37. coroutine.wrap(function()
  38. for i,x in pairs(hed:GetChildren()) do if x:IsA('Sound') then x:Destroy() end end end)()
  39. function Lerp(a, b, i)
  40. local com1 = {a.X, a.Y, a.Z, a:toEulerAnglesXYZ()}
  41. local com2 = {b.X, b.Y, b.Z, b:toEulerAnglesXYZ()}
  42. local calx = com1[1] + (com2[1] - com1[1]) * i
  43. local caly = com1[2] + (com2[2] - com1[2]) * i
  44. local calz = com1[3] + (com2[3] - com1[3]) * i
  45. local cala = com1[4] + (com2[4] - com1[4]) * i
  46. local calb = com1[5] + (com2[5] - com1[5]) * i
  47. local calc = com1[6] + (com2[6] - com1[6]) * i
  48. return CFrame.new(calx, caly, calz) * CFrame.Angles(cala, calb, calc)
  49. end
  50. function TwnSingleNumber(s,f,m)
  51. local wot=s+(f-s)*m
  52. return wot
  53. end
  54. function TwnVector3(q,w,e)
  55. local begin={q.x,q.y,q.z}
  56. local ending={w.x,w.y,w.z}
  57. local bgx=begin[1]+(ending[1]-begin[1])*e
  58. local bgy=begin[2]+(ending[2]-begin[2])*e
  59. local bgz=begin[3]+(ending[3]-begin[3])*e
  60. return Vector3.new(bgx,bgy,bgz)
  61. end
  62. newWeld = function(wld, wp0, wp1, wc0x, wc0y, wc0z)
  63. wld = Instance.new("Weld", wp1)
  64. wld.Part0 = wp0
  65. wld.Part1 = wp1
  66. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  67. end
  68.  
  69.  
  70.  
  71. Player=game:GetService('Players').LocalPlayer
  72. Character=Player.Character
  73. Mouse=Player:GetMouse()
  74. m=Instance.new('Model',Character)
  75. it=Instance.new
  76. function nooutline(part)
  77. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  78. end
  79. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  80. local fp=it("Part")
  81. fp.formFactor=formfactor
  82. fp.Parent=parent
  83. fp.Reflectance=reflectance
  84. fp.Transparency=transparency
  85. fp.CanCollide=false
  86. fp.Locked=true
  87. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  88. fp.Name=name
  89. fp.Size=size
  90. fp.Position=Character.Torso.Position
  91. nooutline(fp)
  92. fp.Material=material
  93. fp:BreakJoints()
  94. return fp
  95. end
  96. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  97. local mesh=it(Mesh)
  98. mesh.Parent=part
  99. if Mesh=="SpecialMesh" then
  100. mesh.MeshType=meshtype
  101. mesh.MeshId=meshid
  102. end
  103. mesh.Offset=offset
  104. mesh.Scale=scale
  105. return mesh
  106. end
  107. function weld(parent,part0,part1,c0,c1)
  108. local weld=it("Weld")
  109. weld.Parent=parent
  110. weld.Part0=part0
  111. weld.Part1=part1
  112. weld.C0=c0
  113. weld.C1=c1
  114. return weld
  115. end
  116.  
  117.  
  118.  
  119. Handle=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,1,1,"Black","Handle",Vector3.new(1.29641879, 0.312060267, 0.227520004))
  120. Handleweld=weld(m,Character["Right Arm"],Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999995589, 0, 0, 0, 1),CFrame.new(-0.0149519444, 0.949842215, 0.00441265106, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  121. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  122. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0158817768, -3.03935075, 4.77418518, -0.999731123, -0.0231310017, 0.00167600019, 0.0173783638, -0.795031726, -0.606318772, 0.0153572327, -0.606126547, 0.795219898))
  123. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.872586608, 0.696021676))
  124. Col_Blade=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0.40000000596046,0,"Lime green","Col_Blade",Vector3.new(1.06449354, 0.307984889, 0.227520004))
  125. Col_Bladeweld=weld(m,Handle,Col_Blade,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-2.31494164, 0.00124526024, 1.78813934e-005, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  126. mesh("BlockMesh",Col_Blade,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.450367093))
  127. Col_Blade=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0.40000000596046,0,"Lime green","Col_Blade",Vector3.new(1.85129857, 0.315553576, 0.227520004))
  128. Col_Bladeweld=weld(m,Handle,Col_Blade,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-5.87756252, 1.12115347, -0.0184012651, -0.00797700044, 0.274818987, -0.961462975, -0.0217779912, 0.961217642, 0.274929553, 0.999731004, 0.0231318455, -0.00168262795))
  129. mesh("BlockMesh",Col_Blade,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.450367093))
  130. Col_Blade=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0.40000000596046,0,"Lime green","Col_Blade",Vector3.new(0.793395817, 0.315553576, 0.227520004))
  131. Col_Bladeweld=weld(m,Handle,Col_Blade,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-4.07144928, 0.581784725, 3.27825546e-005, -0.00142200012, 0.17207402, -0.985083103, -0.0231460072, 0.984814465, 0.172060519, 0.999731123, 0.0230454057, 0.0025824199))
  132. mesh("BlockMesh",Col_Blade,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.450367093))
  133. Col_Blade=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0.40000000596046,0,"Lime green","Col_Blade",Vector3.new(1.06449354, 0.307984889, 0.227520004))
  134. Col_Bladeweld=weld(m,Handle,Col_Blade,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-3.27442455, 0.269274116, 2.02655792e-005, 0.000546000141, 0.0878540203, -0.996133208, -0.0231869929, 0.995866656, 0.0878178105, 0.999731004, 0.0230493844, 0.00258081383))
  135. mesh("BlockMesh",Col_Blade,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.450367093))
  136. Col_Blade=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0.40000000596046,0,"Lime green","Col_Blade",Vector3.new(0.793395817, 0.315553576, 0.227520004))
  137. Col_Bladeweld=weld(m,Handle,Col_Blade,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-4.74355555, 0.707420349, -0.0183535814, -0.00615599845, 0.195035949, -0.980776787, -0.0223590098, 0.980523407, 0.195125893, 0.999731123, 0.0231303908, -0.00167528994))
  138. mesh("BlockMesh",Col_Blade,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.450367093))
  139. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(1.29641879, 0.312060267, 0.227520004))
  140. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00166845322, 0.0271141529, 0.000629425049, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  141. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.511780679))
  142. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  143. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.98826778, 0.883645773, 0.00157105923, -0.00922600366, 0.497384191, -0.867481291, -0.0212790053, 0.867224157, 0.497463077, 0.999731004, 0.0230487362, 0.00258282758))
  144. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.412663817, 0.555282235, 0.483632803))
  145. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  146. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-2.42113304, -0.346726418, 0.00156152248, 0.00371400081, -0.0492790118, -0.998778224, -0.0228920039, 0.998519182, -0.0493513569, 0.999731123, 0.0230473243, 0.00258040545))
  147. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.994765878, 0.652520776, 0.483632803))
  148. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  149. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-2.42114449, -0.314360619, 0.00155472755, 0.00371400081, -0.0492790118, -0.998778224, -0.0228920039, 0.998519182, -0.0493513569, 0.999731123, 0.0230473243, 0.00258040545))
  150. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.994765878, 0.652520776, 0.483632803))
  151. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.480638713, 0.227520004, 0.227520004))
  152. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-2.75283718, -0.228187442, 0.00154924393, 0.0027649987, -0.00795699656, -0.999964535, -0.0230239965, 0.999702752, -0.00801857654, 0.999731123, 0.0230453517, 0.00258097495))
  153. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.818849623, 0.483632803))
  154. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  155. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.15320885, -0.178858995, -0.00433695316, 0.00236500031, 0.00928800087, -0.999954104, -0.0230670068, 0.999691367, 0.00923100486, 0.999731123, 0.0230441131, 0.00257851626))
  156. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.789800346, 0.179123342, 0.240536943))
  157. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  158. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.17112136, 0.221183538, -0.0043566227, -0.00533899851, 0.337043911, -0.941473782, -0.0225679968, 0.941206813, 0.337076336, 0.999731123, 0.0230468288, 0.0025813044))
  159. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.789800346, 0.179123342, 0.240536943))
  160. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.480638713, 0.227520004, 0.227520004))
  161. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-3.64721632, 0.0685203075, 0.00155746937, 0.00056000019, 0.0873300284, -0.996179342, -0.0231839977, 0.99591279, 0.0872936323, 0.999731123, 0.0230465345, 0.00258237077))
  162. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.818849623, 0.483632803))
  163. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Quill grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  164. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.561839938, -1.14565945, 0.0018736124, 0.0202230066, -0.920933366, 0.389195144, 0.0113480054, -0.389038235, -0.921151757, 0.999731123, 0.0230450425, 0.00258323411))
  165. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0546574928, 0.473397434, 0.522016287))
  166. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  167. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.09361887, -0.0651893616, 0.00126576424, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  168. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754272938, 0.527134538, 0.511780679))
  169. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  170. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.17757213, 1.44953024, 0.00156402588, -0.0159450062, 0.763993323, -0.64502722, -0.016834015, 0.644812644, 0.764155328, 0.999731243, 0.0230428595, 0.00257953396))
  171. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.281485736, 0.186800003, 0.483632803))
  172. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Lime green","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  173. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.659963489, 0.63932538, -0.000614643097, 0.0159439966, -0.763845801, 0.645201802, -0.0168400034, 0.644987166, 0.764007807, -0.999731123, -0.0230465382, -0.00257949368))
  174. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.718746006, 0.0639726296, 0.496427387))
  175. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.924868882, 0.227520004, 0.227520004))
  176. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-4.29239607, 0.330039978, -0.0160773993, -0.00519699976, 0.153119996, -0.988193989, -0.0225930009, 0.987937093, 0.153199017, 0.999731243, 0.0231224392, -0.00167486863))
  177. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.818849623, 0.483632803))
  178. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(1.45746064, 0.227520004, 0.227520004))
  179. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-5.83711243, 0.719637156, -0.0168081522, -0.00692600245, 0.22880207, -0.973448336, -0.0221340023, 0.973198175, 0.22890076, 0.999731123, 0.0231316742, -0.00167606783))
  180. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.818849623, 0.483632803))
  181. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.496805072, 0.227520004, 0.227520004))
  182. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-2.29717207, -0.288731337, 0.0015488863, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  183. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.186800003, 0.483632803))
  184. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  185. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-2.05816746, 1.00655174, 0.0015642643, -0.00922600366, 0.497384191, -0.867481291, -0.0212790053, 0.867224157, 0.497463077, 0.999731004, 0.0230487362, 0.00258282758))
  186. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.994765878, 0.859792054, 0.483632803))
  187. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Black","Part",Vector3.new(0.52043283, 0.227520004, 0.227520004))
  188. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.93111658, -0.186139584, 0.00218164921, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  189. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.92888242, 0.463161618))
  190. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  191. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.68822205, 1.14013505, 0.00155472755, -0.0127799977, 0.640420914, -0.767917871, -0.0193490088, 0.76767838, 0.640543163, 0.999731123, 0.023044588, 0.00258058147))
  192. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.232294038, 0.849556386, 0.483632803))
  193. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  194. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00155115128, 0.984236956, -1.61299479, -0.999731004, -0.0230490007, -0.00257900008, -0.0193514116, 0.767679632, 0.640541673, -0.0127839977, 0.640419245, -0.767919123))
  195. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.511047542, 0.255890518, 0.225183547))
  196. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  197. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.0015642643, 1.0421586, -1.68906128, -0.999731004, -0.0230490007, -0.00257900008, -0.0193514116, 0.767679632, 0.640541673, -0.0127839977, 0.640419245, -0.767919123))
  198. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.511047542, 0.255890518, 0.225183547))
  199. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  200. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.61219263, 1.08221149, 0.00155365467, -0.0127799977, 0.640420914, -0.767917871, -0.0193490088, 0.76767838, 0.640543163, 0.999731123, 0.023044588, 0.00258058147))
  201. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.232294038, 0.849556386, 0.483632803))
  202. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.242495522, 0.327197492, 0.227520004))
  203. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.934810162, -1.20536542, 0.00218033791, 0.0212789923, -0.86722368, -0.497463822, -0.00922700018, 0.497384965, -0.867480874, 0.999731004, 0.0230492186, 0.00258197752))
  204. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.504104078))
  205. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  206. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.38702512, 0.976281881, 0.00155448914, -0.0127799977, 0.640420914, -0.767917871, -0.0193490088, 0.76767838, 0.640543163, 0.999731123, 0.023044588, 0.00258058147))
  207. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.937375486, 0.849556386, 0.483632803))
  208. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.51172781, 0.227520004, 0.227520004))
  209. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-2.00448728, -0.0905809402, 0.00155937672, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  210. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.611578107, 0.483632803))
  211. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  212. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00156211853, 0.926685333, -1.54194677, -0.999731004, -0.0230490007, -0.00257900008, -0.0193514116, 0.767679632, 0.640541673, -0.0127839977, 0.640419245, -0.767919123))
  213. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.511047542, 0.255890518, 0.225183547))
  214. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.305656016, 0.227520004))
  215. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.73025751, 0.0170589685, 0.00154685974, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  216. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.975635886, 1, 0.483632803))
  217. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  218. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.18472624, 0.896080256, -0.00120961666, -0.0148059977, 0.720166922, -0.693642914, -0.0178450011, 0.693418086, 0.720314443, 0.999731243, 0.0230430327, 0.00258463295))
  219. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.393533975, 0.424778193, 0.578312278))
  220. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  221. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.54114962, 1.02467203, 0.00155067444, -0.0127799977, 0.640420914, -0.767917871, -0.0193490088, 0.76767838, 0.640543163, 0.999731123, 0.023044588, 0.00258058147))
  222. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.232294038, 0.849556386, 0.483632803))
  223. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.391101927, 0.227520004, 0.227520004))
  224. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.422725916, 1.38972998, 0.00121176243, 0.0231539924, -0.998237669, -0.0546389818, -0.0013189977, -0.0546840876, 0.998502851, -0.999731123, -0.0230472591, -0.00258282805))
  225. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821408451, 0.578312278))
  226. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  227. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(1.04394341, 1.0909543, 0.00121724606, 0.0138739953, -0.683544755, 0.72977674, -0.0185830127, 0.72954464, 0.683680654, -0.999731123, -0.0230468344, -0.00258062268))
  228. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.953773081, 0.424778193, 0.578312278))
  229. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  230. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.13986635, 0.269025326, 0.00125455856, -0.00401599845, 0.281459898, -0.959564626, -0.0228410028, 0.959296167, 0.281476736, 0.999731123, 0.0230478272, 0.00257629412))
  231. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0546574928, 0.0870027393, 0.511780679))
  232. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  233. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.918655276, 0.0302206278, 0.00128209591, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  234. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.188568011, 0.570635855, 0.511780679))
  235. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Lime green","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  236. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00189065933, -0.738847256, -0.639299393, -0.999731004, -0.0230490007, -0.00257900008, -0.0159461964, 0.763845801, -0.645201802, 0.0168412142, -0.644987106, -0.764007866))
  237. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.541109085, 0.0716493651, 0.0767671093))
  238. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  239. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.16813254, -0.083006382, 0.00125837326, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  240. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0546574928, 0.0870027393, 0.511780679))
  241. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  242. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.93055892, 0.722340584, 0.00125086308, -0.0128929978, 0.644890964, -0.764165878, -0.0192750022, 0.763927102, 0.645014703, 0.999731123, 0.0230454691, 0.00258096401))
  243. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0546574928, 0.0870027393, 0.511780679))
  244. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  245. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.34400928, 1.16765118, 0.00126075745, -0.0215309951, 0.963668764, -0.266230941, -0.00862499233, 0.266103715, 0.963905811, 0.999731004, 0.0230500922, 0.00258215796))
  246. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0546574928, 0.0870027393, 0.511780679))
  247. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  248. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.000638842583, -0.103034019, -1.2525599, -0.999731004, -0.0230490007, -0.00257900008, -0.0230414253, 0.999730229, -0.00292900181, 0.00264581502, -0.00286878995, -0.999992371))
  249. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.530177593, 0.747200251, 0.624372482))
  250. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.515458703, 0.227520004, 0.227520004))
  251. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.400811434, 1.46163118, 0.00121247768, 0.0231539924, -0.998237669, -0.0546389818, -0.0013189977, -0.0546840876, 0.998502851, -0.999731123, -0.0230472591, -0.00258282805))
  252. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.368482381, 0.578312278))
  253. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  254. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.544226646, -0.755554199, 0.00126028061, 0.0213810056, -0.872781157, -0.487643123, -0.00898600277, 0.487567186, -0.873039186, 0.999731004, 0.0230484195, 0.00258186297))
  255. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.19676666, 0.174005538, 0.511780679))
  256. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  257. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.00639439, -0.812852144, -0.00433242321, 0.0142189981, -0.521224916, -0.853300869, -0.0183200017, 0.853108108, -0.521412492, 0.999731123, 0.0230464358, 0.00258150208))
  258. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.579369009, 0.345452189, 0.240536943))
  259. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  260. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.621147633, 0.159193516, 0.000629901886, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  261. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.128444925, 0.18935892, 0.511780679))
  262. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Dark stone grey","Part",Vector3.new(0.783447266, 0.34815684, 0.227520004))
  263. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.97543931, -0.000554084778, 0.000618338585, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  264. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.491309464))
  265. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  266. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0881903172, 1.38434887, 0.00121772289, 0.0225710049, -0.992567241, 0.119586028, -0.00531901233, 0.119495586, 0.992820561, -0.999731123, -0.0230450351, -0.00258234143))
  267. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.199499831, 0.281479508, 0.578312278))
  268. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  269. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.454901993, 0.421582699, 0.000641465187, -0.00988100469, 0.524004221, -0.851658404, -0.0209799986, 0.851403832, 0.524091005, 0.999731123, 0.0230463371, 0.00258088228))
  270. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.128444925, 0.261008292, 0.511780679))
  271. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Dark stone grey","Part",Vector3.new(0.290994704, 0.34815684, 0.227520004))
  272. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.743714333, 0.0002617836, 0.000635623932, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  273. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.491309464))
  274. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.274828374, 0.227520004, 0.227520004))
  275. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.49963951, 0.185424805, -0.00121641159, -0.00408299826, 0.284549862, -0.958652496, -0.022827005, 0.958384216, 0.284567446, 0.999731123, 0.0230450537, 0.00258234004))
  276. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.424778193, 0.578312278))
  277. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  278. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.314360142, 1.51527357, 0.00120556355, 0.0230270047, -0.973577261, -0.227194056, 0.00272200955, -0.227192432, 0.973846197, -0.999731123, -0.0230431817, -0.0025814746))
  279. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.953773081, 0.424778193, 0.578312278))
  280. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  281. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.302050829, 0.745018363, 0.00095641613, -0.0225840062, 0.942359209, 0.333840102, 0.00525999116, -0.333808631, 0.942626238, 0.999731123, 0.0230442714, 0.00258193514))
  282. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.261008292, 0.539928615))
  283. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Quill grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  284. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.783005297, -1.10117483, -0.000928044319, 0.0151219964, -0.732334793, 0.680776834, 0.0175830163, -0.680554628, -0.732486367, 0.999731123, 0.0230467673, 0.00258531095))
  285. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0546574928, 0.473397434, 0.570635557))
  286. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  287. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.949791312, 0.487065315, -0.00434303284, -0.011621004, 0.594219208, -0.804219306, -0.0200650003, 0.803973079, 0.594327152, 0.999731123, 0.0230433345, 0.00258003362))
  288. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.30334878, 0.179123342, 0.240536943))
  289. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  290. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.800710797, 0.00755381584, 0.00094640255, -0.00251299911, -0.00290399906, 0.999992669, 0.0230530053, -0.999730229, -0.00284530432, 0.999731123, 0.0230456851, 0.0025792669))
  291. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.338876605, 0.458043963, 0.539928615))
  292. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Lime green","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  293. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.000624895096, -0.580647469, -0.639029026, -0.999731004, -0.0230490007, -0.00257900008, -0.0159461964, 0.763845801, -0.645201802, 0.0168412142, -0.644987106, -0.764007866))
  294. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.530177593, 0.0716493651, 0.0767671093))
  295. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  296. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.381318092, -0.94070369, 0.00127208233, 0.0220990069, -0.913161278, -0.406999141, -0.00702299317, 0.406946689, -0.913424969, 0.999731123, 0.0230441336, 0.00257999217))
  297. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.418129534, 0.949353814, 0.511780679))
  298. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  299. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.478524327, 1.28506351, 0.00122618675, 0.0193890017, -0.891839147, 0.45193705, -0.0127160111, 0.451765478, 0.892046094, -0.999731243, -0.0230427198, -0.00258135563))
  300. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.199499831, 0.281479508, 0.578312278))
  301. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Quill grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  302. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(1.06903172, 0.730411708, 0.00188446045, -0.0158379935, 0.597240746, 0.801905692, 0.0169379972, -0.801730931, 0.597445071, 0.999731123, 0.0230450071, 0.00258174678))
  303. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.377136648, 0.980060697, 0.522016287))
  304. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  305. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.781213522, 0.889925957, 0.00125992298, -0.0160179976, 0.766811907, -0.641671956, -0.0167640038, 0.641458154, 0.766974866, 0.999731243, 0.0230423938, 0.00257996237))
  306. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.139376596, 0.365923405, 0.511780679))
  307. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  308. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.893458605, 1.15072465, 0.00122833252, 0.0184729975, -0.724135935, -0.689409912, 0.0140180066, -0.689272225, 0.724366903, -0.999731123, -0.0230453778, -0.00258198171))
  309. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.393533975, 0.424778193, 0.578312278))
  310. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Quill grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  311. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(1.14875746, 0.4563694, 0.00187432766, -0.0132629983, 0.47684595, 0.878886878, 0.0190189984, -0.878684819, 0.477023304, 0.999731243, 0.0230423082, 0.00258486322))
  312. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.388068259, 0.130504131, 0.522016287))
  313. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Bright green","Part",Vector3.new(0.248713434, 0.227520004, 0.227520004))
  314. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.674019277, 1.1251874, -0.000950217247, 0.0168870073, -0.799840331, 0.599975288, -0.0158910081, 0.599770367, 0.800014436, -0.999731123, -0.0230440591, -0.00258194213))
  315. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.667874217, 0.550164342))
  316. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  317. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.36035788, -0.424215555, -0.00121831894, 0.00553599978, -0.129262999, -0.99159497, -0.0225219838, 0.991342425, -0.129355818, 0.999731123, 0.0230487995, 0.0025768124))
  318. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.808930755, 0.662756503, 0.578312278))
  319. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  320. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.35933292, 0.550595641, 0.00121104717, 0.00915800501, -0.290041149, -0.956970453, 0.0213039927, -0.956736684, 0.290174216, -0.999731123, -0.0230447054, -0.00258276472))
  321. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.953773081, 0.424778193, 0.578312278))
  322. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.390075386, 0.227520004))
  323. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0369704962, 1.11456966, 0.00127375126, -0.0229999889, 0.999595523, -0.0167249925, -0.00296700187, 0.0166610964, 0.999856889, 0.999731123, 0.0230463184, 0.00258259661))
  324. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.773403466, 1, 0.511780679))
  325. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  326. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00155425072, 1.11029482, -1.76637244, -0.999731004, -0.0230490007, -0.00257900008, -0.0193514116, 0.767679632, 0.640541673, -0.0127839977, 0.640419245, -0.767919123))
  327. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.511047542, 0.255890518, 0.225183547))
  328. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Mid gray","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  329. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.53351754, 1.12334776, -0.000945806503, 0.0168870073, -0.799840331, 0.599975288, -0.0158910081, 0.599770367, 0.800014436, -0.999731123, -0.0230440591, -0.00258194213))
  330. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.319746286, 0.667874217, 0.550164342))
  331. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  332. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.21599257, 1.81675804, 0.00154519081, -0.0222299974, 0.984043896, -0.176531985, -0.00660098204, 0.176427275, 0.984291494, 0.999731123, 0.0230460837, 0.00257367804))
  333. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.614896357, 0.186800003, 0.483632803))
  334. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  335. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.673153639, 1.18448734, 0.00122177601, 0.0168870073, -0.799840331, 0.599975288, -0.0158910081, 0.599770367, 0.800014436, -0.999731123, -0.0230440591, -0.00258194213))
  336. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.199499831, 0.281479508, 0.578312278))
  337. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  338. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.45553994, 1.22114515, 0.00157034397, -0.0127799977, 0.640420914, -0.767917871, -0.0193490088, 0.76767838, 0.640543163, 0.999731123, 0.023044588, 0.00258058147))
  339. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.281485736, 0.186800003, 0.483632803))
  340. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  341. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0301311016, 0.826504707, 0.000956177711, -0.0230340138, 0.97382158, 0.226144135, 0.00269999169, -0.22614269, 0.974090457, 0.999731123, 0.0230478011, 0.00257966411))
  342. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.647403002, 0.539928615))
  343. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.242495522, 0.521652997, 0.227520004))
  344. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.59547079, -0.0357422829, 0.0018748045, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  345. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.501545072))
  346. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  347. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.7655592, 1.20825791, 0.00155556202, -0.0127799977, 0.640420914, -0.767917871, -0.0193490088, 0.76767838, 0.640543163, 0.999731123, 0.023044588, 0.00258058147))
  348. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.232294038, 0.849556386, 0.483632803))
  349. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.235209614, 0.227520004))
  350. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.711235285, 0.0658324957, 0.000641226768, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  351. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.623095393, 1, 0.511780679))
  352. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  353. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.678504229, -0.0484796762, 0.000971317291, 0.00367400097, -0.0474620126, -0.99886626, -0.0228950046, 0.998607218, -0.0475339144, 0.999731123, 0.0230436884, 0.00258224062))
  354. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.972903371, 0.619255006, 0.539928615))
  355. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.318353206, 0.227520004, 0.227520004))
  356. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.48159635, -0.266295195, -0.0012280941, 0.00227500009, 0.01315, -0.99991101, -0.0230769999, 0.999647975, 0.0130940359, 0.999731123, 0.0230451543, 0.0025776613))
  357. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.424778193, 0.578312278))
  358. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  359. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.578295588, 1.05409002, 0.00126504898, -0.01926101, 0.887162387, -0.461055219, -0.0129129877, 0.460881561, 0.887367725, 0.999731123, 0.0230451971, 0.00257887342))
  360. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0546574928, 0.0870027393, 0.511780679))
  361. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.227520019, 0.318464518, 0.227520004))
  362. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.40474606, 0.232381105, -0.00122880936, -0.00191300048, 0.192780048, -0.981240213, -0.023114007, 0.980971277, 0.192772284, 0.999731004, 0.0230491646, 0.00257932069))
  363. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.808930755, 1, 0.578312278))
  364. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  365. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.266587019, 1.3781693, 0.00120985508, 0.0213050079, -0.956737339, 0.2901721, -0.00915700104, 0.290039033, 0.95697099, -0.999731123, -0.0230453797, -0.00258156075))
  366. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.396266848, 0.516898751, 0.578312278))
  367. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  368. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.443424702, 0.030343771, 0.000943779945, -0.00109700032, 0.158001065, -0.987438381, -0.0231689978, 0.987169862, 0.157983854, 0.999731004, 0.0230512656, 0.00257780077))
  369. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  370. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  371. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.321699381, 0.15201807, 0.000955700874, -0.00728900172, 0.417960078, -0.908436239, -0.0220110025, 0.908173203, 0.418015659, 0.999731243, 0.0230425075, 0.00258004409))
  372. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  373. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  374. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.000306844711, 0.0463330746, -0.140547276, -0.999731004, -0.0230490007, -0.00257900008, -0.0230414253, 0.999730229, -0.00292900181, 0.00264581502, -0.00286878995, -0.999992371))
  375. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.565705001, 0.440131694, 0.736964345))
  376. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  377. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.579321384, 0.604588389, 0.000960946083, -0.0163800027, 0.622950077, 0.782090127, 0.0164150037, -0.781922162, 0.623160005, 0.999731123, 0.0230453704, 0.00258215982))
  378. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.647403002, 0.539928615))
  379. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  380. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.207494259, -0.0928707123, 0.000951051712, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  381. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.486451745, 0.708816648, 0.539928615))
  382. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  383. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.744727492, -0.343635321, 0.000977039337, 0.0105370013, -0.550507069, 0.834764123, 0.0206600092, -0.834512353, -0.55060184, 0.999731123, 0.023047924, 0.00258022221))
  384. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.511047661, 0.158652082, 0.539928615))
  385. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.227520019, 0.356307656, 0.227520004))
  386. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.154972076, 0.452605486, 0.000644922256, 0.0231719948, -0.997115731, -0.0722729862, 0.000905991881, 0.0723133162, -0.997381628, 0.999731123, 0.0230458397, 0.0025790222))
  387. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.194034144, 1, 0.511780679))
  388. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Lily white","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  389. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.5165931, 0.216356695, 0.00121700764, 0.0127159981, -0.451759934, -0.892048895, 0.0193899982, -0.891841888, 0.451931506, -0.999731123, -0.0230435878, -0.00258103502))
  390. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.31428057, 0.534811139, 0.578312278))
  391. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Dark stone grey","Part",Vector3.new(0.926457405, 0.227520004, 0.227520004))
  392. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.379840136, -0.125204802, 0.000640511513, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  393. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.432454914, 0.522016287))
  394. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  395. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.366830587, 0.0510215759, 0.00221192837, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  396. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.937376022, 0.383835763, 0.529693067))
  397. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  398. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.35136795, 0.177421093, 0.00094294548, -0.00917700212, 0.495446116, -0.868590176, -0.0212949999, 0.868333042, 0.495524406, 0.999731123, 0.0230440535, 0.0025818313))
  399. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  400. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  401. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.0873787403, -0.753434658, 0.000644087791, -0.0230400078, 0.999730349, -0.00292900088, -0.00264699548, 0.00286876527, 0.999992371, 0.999731123, 0.023047585, 0.00258018542))
  402. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.382602543, 0.954471648, 0.511780679))
  403. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  404. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.295895576, -0.748491764, 0.0009547472, 0.0217849892, -0.971545517, 0.235848874, 0.00794800371, -0.235729128, -0.97178638, 0.999731123, 0.0230448823, 0.00258649071))
  405. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.475520253, 0.158652082, 0.539928615))
  406. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Medium stone grey","Part",Vector3.new(0.263636231, 0.227520004, 0.227520004))
  407. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.216866016, 0.740495443, 0.000632762909, 0.0225560013, -0.940421104, -0.339263022, -0.0053910003, 0.339230031, -0.940688014, 0.999731123, 0.0230471268, 0.00258186227))
  408. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.465720773, 0.511780679))
  409. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.227520019, 0.312060267, 0.227520004))
  410. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.623607635, 0.0273089409, 0.000640630722, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  411. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.194034144, 1, 0.511780679))
  412. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.508618951, 0.227520004, 0.227520004))
  413. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0967252254, 0.000676691532, 0.000945210457, 0.0106720068, -0.358378202, -0.933515549, -0.0205880031, 0.933292091, -0.35852775, 0.999731123, 0.02304543, 0.00258180802))
  414. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.368482292, 0.539928615))
  415. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  416. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.659655333, 0.0811083317, -0.000939011574, 0.00266099907, -0.00343199889, -0.999990642, 0.0230400097, -0.999728501, 0.00349240913, -0.999731004, -0.0230490863, -0.00258120312))
  417. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  418. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  419. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.687225938, -0.027872324, 0.000955939293, 0.00109700032, -0.158001065, 0.987438381, 0.0231689978, -0.987169862, -0.157983854, 0.999731004, 0.0230512656, 0.00257780077))
  420. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  421. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  422. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.50034523, -0.107414722, 0.000970244408, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  423. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.48098591, 0.565518022, 0.539928615))
  424. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  425. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.444574594, 0.34507823, -0.000963687897, 0.0120919924, -0.423161775, -0.905973434, 0.019785, -0.905761063, 0.423326671, -0.999731123, -0.0230435468, -0.00258020009))
  426. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  427. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  428. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.695587635, -0.150626421, 0.000957846642, 0.00518099871, -0.330499917, 0.943791747, 0.0226029959, -0.943524718, -0.330530465, 0.999731123, 0.0230449978, 0.00258188788))
  429. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  430. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.480638713, 0.227520004, 0.227520004))
  431. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-3.20657992, -0.0378842354, 0.00155949593, 0.00127600064, 0.0563650243, -0.99840945, -0.0231520049, 0.998144269, 0.0563204661, 0.999731123, 0.0230433121, 0.00257859565))
  432. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.818849623, 0.483632803))
  433. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  434. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.82638395, 0.642688036, 0.00155067444, -0.00539199822, 0.339233875, -0.940686643, -0.0225569941, 0.940419734, 0.339266896, 0.999731004, 0.023048386, 0.00258135446))
  435. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.281485736, 0.186800003, 0.483632803))
  436. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  437. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.367396355, 0.0826923847, -0.000938296318, 0.00266099907, -0.00343199889, -0.999990642, 0.0230400097, -0.999728501, 0.00349240913, -0.999731004, -0.0230490863, -0.00258120312))
  438. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  439. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  440. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.305127144, -0.120472908, 0.000969409943, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  441. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.232294455, 0.35312888, 0.539928615))
  442. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  443. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.153181314, 0.255677819, -0.000948190689, 0.0156089962, -0.586448908, -0.809835792, 0.0171499867, -0.809658349, 0.586650908, -0.999731123, -0.0230457038, -0.00258036447))
  444. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  445. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  446. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.613780975, 0.183183789, -0.000946640968, 0.00632000156, -0.163656041, -0.986497223, 0.0223130044, -0.986248255, 0.163757682, -0.999731123, -0.0230466668, -0.00258143223))
  447. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  448. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  449. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.686384082, -0.275133848, 0.000966310501, 0.00917700212, -0.495446116, 0.868590176, 0.0212949999, -0.868333042, -0.495524406, 0.999731123, 0.0230440535, 0.0025818313))
  450. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  451. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  452. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-2.02439523, 0.899111271, 0.00155317783, -0.00922600366, 0.497384191, -0.867481291, -0.0212790053, 0.867224157, 0.497463077, 0.999731004, 0.0230487362, 0.00258282758))
  453. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.412663817, 0.555282235, 0.483632803))
  454. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.25368762, 0.227520004, 0.227520004))
  455. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.600331187, 1.74550319, 0.00155508518, -0.0207440052, 0.938460231, -0.344764084, -0.0103669949, 0.344617814, 0.938685834, 0.999731123, 0.02304627, 0.002580259))
  456. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.284038395, 0.483632803))
  457. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  458. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-1.96756411, 0.314329863, 0.00155854225, -0.00139299966, 0.170776948, -0.985308766, -0.0231480058, 0.985040247, 0.170763135, 0.999731123, 0.0230458044, 0.00258098496))
  459. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.699615479, 0.186800003, 0.483632803))
  460. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.234045208, 0.227520004))
  461. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.132048368, 0.161450386, 0.000948309898, 0.0231660083, -0.997694373, -0.0637910217, 0.00110298558, 0.0638336316, -0.997960031, 0.999731004, 0.023048386, 0.00257921242))
  462. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.439992964, 1, 0.539928615))
  463. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.621161819, 0.227520004, 0.227520004))
  464. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.319671631, 0.106071234, 0.00220811367, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  465. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.42733714, 0.529693067))
  466. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.325814635, 0.227520004, 0.227520004))
  467. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-6.58620739, 1.18264508, -0.0168553591, -0.00849199854, 0.297657937, -0.954634786, -0.0215790085, 0.954392374, 0.297774285, 0.999731123, 0.0231287722, -0.00168153527))
  468. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.818849623, 0.483632803))
  469. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  470. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.325047731, 0.137892604, -0.000945687294, 0.00632000156, -0.163656041, -0.986497223, 0.0223130044, -0.986248255, 0.163757682, -0.999731123, -0.0230466668, -0.00258143223))
  471. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  472. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  473. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.420639992, -0.0515599251, 0.000947475433, 0.00518099871, -0.330499917, 0.943791747, 0.0226029959, -0.943524718, -0.330530465, 0.999731123, 0.0230449978, 0.00258188788))
  474. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  475. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  476. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.433823705, -0.128046513, 0.000943422318, 0.00917700212, -0.495446116, 0.868590176, 0.0212949999, -0.868333042, -0.495524406, 0.999731123, 0.0230440535, 0.0025818313))
  477. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  478. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  479. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.202691078, 0.236404181, -0.000970125198, 0.013772998, -0.500411928, -0.865677893, 0.0186630134, -0.865480542, 0.500594795, -0.999731004, -0.0230508503, -0.00258106645))
  480. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  481. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  482. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.3990345, 0.020886898, 0.000944256783, 0.00109700032, -0.158001065, 0.987438381, 0.0231689978, -0.987169862, -0.157983854, 0.999731004, 0.0230512656, 0.00257780077))
  483. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  484. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  485. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.293053627, 0.175671995, -0.00093793869, 0.0101750037, -0.335904121, -0.941841364, 0.0208380055, -0.94161427, 0.336048245, -0.999731123, -0.0230453834, -0.00258135656))
  486. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.35254097, 0.511780918, 0.539928615))
  487. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  488. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-2.09653378, 0.921124935, 0.00156092644, -0.00922600366, 0.497384191, -0.867481291, -0.0212790053, 0.867224157, 0.497463077, 0.999731004, 0.0230487362, 0.00258282758))
  489. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.412663817, 0.337775379, 0.483632803))
  490. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  491. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-2.37360096, 0.238728523, 0.00155556202, -0.00139299966, 0.170776948, -0.985308766, -0.0231480058, 0.985040247, 0.170763135, 0.999731123, 0.0230458044, 0.00258098496))
  492. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.994765878, 0.611578107, 0.483632803))
  493. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  494. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.718416452, -0.357543468, 0.00096476078, 0.0105370013, -0.550507069, 0.834764123, 0.0206600092, -0.834512353, -0.55060184, 0.999731123, 0.023047924, 0.00258022221))
  495. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.131178111, 0.458043963, 0.539928615))
  496. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  497. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.178694248, 0.223734379, -0.000945806503, 0.0120919924, -0.423161775, -0.905973434, 0.019785, -0.905761063, 0.423326671, -0.999731123, -0.0230435468, -0.00258020009))
  498. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  499. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Part",Vector3.new(0.480638713, 0.227520004, 0.227520004))
  500. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-4.97678947, 0.346221924, -0.0168281794, -0.00529499818, 0.157293946, -0.987537622, -0.0225760005, 0.987281024, 0.157374129, 0.999731123, 0.0231279433, -0.00167658285))
  501. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.818849623, 0.483632803))
  502. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  503. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.41035521, -0.250308037, 0.000949859619, 0.0149039924, -0.723893642, 0.689750612, 0.0177659933, -0.689526618, -0.724042475, 0.999731123, 0.0230452269, 0.00258399057))
  504. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.224095836, 0.368482292, 0.539928615))
  505. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  506. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.456976175, 0.38045311, -0.000962734222, 0.013772998, -0.500411928, -0.865677893, 0.0186630134, -0.865480542, 0.500594795, -0.999731004, -0.0230508503, -0.00258106645))
  507. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  508. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  509. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.450300455, -0.352524638, -0.000959277153, -0.0156089962, 0.586448908, 0.809835792, -0.0171499867, 0.809658349, -0.586650908, -0.999731123, -0.0230457038, -0.00258036447))
  510. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.550164521, 0.539928615))
  511. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  512. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.146960616, 0.0245616436, 0.000949859619, 0.0102760075, -0.540166378, 0.841495574, 0.0207859948, -0.841242731, -0.540257931, 0.999731243, 0.0230430178, 0.00258327951))
  513. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.486451745, 0.363364488, 0.539928615))
  514. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  515. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.467025995, -0.0424563885, 0.00094974041, 0.00263699982, -0.00230299984, -0.999993861, -0.0230389945, 0.999731779, -0.00236315047, 0.999731123, 0.0230450835, 0.00258323364))
  516. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  517. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  518. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.307127714, 0.212231159, 0.000961065292, -0.0113119958, 0.581793845, -0.813257694, -0.0202439968, 0.813009739, 0.581898034, 0.999731123, 0.023046013, 0.00258106901))
  519. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  520. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  521. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.237673998, 0.0415439606, 0.000966787338, -0.00238800002, 0.212914005, -0.977068007, -0.0230700001, 0.976799071, 0.212911785, 0.999731004, 0.0230493918, 0.0025793293))
  522. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.972903371, 0.719052315, 0.539928615))
  523. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  524. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.168176413, 0.0198965073, 0.000938415527, 0.00917700212, -0.495446116, 0.868590176, 0.0212949999, -0.868333042, -0.495524406, 0.999731123, 0.0230440535, 0.0025818313))
  525. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.248691723, 0.478515178, 0.539928615))
  526. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.246853709, 0.227520004))
  527. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.511818409, 0.0329166651, 0.00220942497, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521))
  528. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.926444471, 1, 0.529693067))
  529. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  530. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0306186676, 0.0868350863, -0.000949621201, 0.0101750037, -0.335904121, -0.941841364, 0.0208380055, -0.94161427, 0.336048245, -0.999731123, -0.0230453834, -0.00258135656))
  531. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  532. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  533. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.391380072, 0.425030828, -0.00094139576, 0.0156089962, -0.586448908, -0.809835792, 0.0171499867, -0.809658349, 0.586650908, -0.999731123, -0.0230457038, -0.00258036447))
  534. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  535. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  536. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0838096142, 0.0737352371, 0.000957608223, 0.00109700032, -0.158001065, 0.987438381, 0.0231689978, -0.987169862, -0.157983854, 0.999731004, 0.0230512656, 0.00257780077))
  537. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  538. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  539. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.454031229, -0.294082046, -0.000943660736, -0.013772998, 0.500411928, 0.865677893, -0.0186630134, 0.865480542, -0.500594795, -0.999731004, -0.0230508503, -0.00258106645))
  540. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.41813001, 0.437572777, 0.539928615))
  541. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  542. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00931978226, 0.0879127979, -0.000972151756, 0.00632000156, -0.163656041, -0.986497223, 0.0223130044, -0.986248255, 0.163757682, -0.999731123, -0.0230466668, -0.00258143223))
  543. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  544. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  545. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.477165699, -0.1187253, -0.000954985619, -0.00632000156, 0.163656041, 0.986497223, -0.0223130044, 0.986248255, -0.163757682, -0.999731123, -0.0230466668, -0.00258143223))
  546. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  547. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  548. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.52477622, -0.23940593, -0.00094461441, -0.0120919924, 0.423161775, 0.905973434, -0.019785, 0.905761063, -0.423326671, -0.999731123, -0.0230435468, -0.00258020009))
  549. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  550. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.233168885, 0.227520004, 0.227520004))
  551. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.0182247162, 0.055765748, -0.000955581665, 0.013772998, -0.500411928, -0.865677893, 0.0186630134, -0.865480542, 0.500594795, -0.999731004, -0.0230508503, -0.00258106645))
  552. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.568076789, 0.539928615))
  553. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.447131157, 0.227520004))
  554. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.106237829, -0.195704222, 0.00220036507, -0.0207209978, 0.937716901, -0.346781969, -0.0104170041, 0.346635133, 0.937942326, 0.999731123, 0.0230475292, 0.00258557429))
  555. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.464588672, 1, 0.529693067))
  556. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  557. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.111874819, 0.0708091259, -0.000959515572, 0.0120919924, -0.423161775, -0.905973434, 0.019785, -0.905761063, 0.423326671, -0.999731123, -0.0230435468, -0.00258020009))
  558. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.54248786, 0.539928615))
  559. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  560. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.0477313995, 0.083981514, -0.000949859619, 0.00266099907, -0.00343199889, -0.999990642, 0.0230400097, -0.999728501, 0.00349240913, -0.999731004, -0.0230490863, -0.00258120312))
  561. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  562. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  563. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0980541706, 0.0590776205, -0.000954508781, 0.0156089962, -0.586448908, -0.809835792, 0.0171499867, -0.809658349, 0.586650908, -0.999731123, -0.0230457038, -0.00258036447))
  564. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.232294455, 0.465720773, 0.539928615))
  565. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  566. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.406825781, 0.107088566, 0.000961184502, -0.00518099871, 0.330499917, -0.943791747, -0.0226029959, 0.943524718, 0.330530465, 0.999731123, 0.0230449978, 0.00258188788))
  567. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  568. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  569. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.54736948, 0.287725866, -0.000954031944, 0.0101750037, -0.335904121, -0.941841364, 0.0208380055, -0.94161427, 0.336048245, -0.999731123, -0.0230453834, -0.00258135656))
  570. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  571. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  572. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.119778395, 0.0563616753, 0.000943779945, 0.00518099871, -0.330499917, 0.943791747, 0.0226029959, -0.943524718, -0.330530465, 0.999731123, 0.0230449978, 0.00258188788))
  573. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  574. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  575. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.472782373, -0.202789247, -0.000951290131, -0.0101750037, 0.335904121, 0.941841364, -0.0208380055, 0.94161427, -0.336048245, -0.999731123, -0.0230453834, -0.00258135656))
  576. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  577. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  578. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.678820968, -0.344233513, 0.000944972038, 0.0113119958, -0.581793845, 0.813257694, 0.0202439968, -0.813009739, -0.581898034, 0.999731123, 0.023046013, 0.00258106901))
  579. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.147575364, 0.368482292, 0.539928615))
  580. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  581. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.196963429, 0.0552690029, 0.000945448875, 0.00678999862, -0.397292912, 0.917666733, 0.0221750084, -0.917402446, -0.397342563, 0.999731123, 0.0230472237, 0.0025808122))
  582. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.139376774, 0.368482292, 0.539928615))
  583. SphereMesh=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Mid gray","SphereMesh",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  584. SphereMeshweld=weld(m,Handle,SphereMesh,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(1.13015199, -0.550629973, -0.00591373444, -0.015890006, 0.599769235, 0.800015271, -0.0168870036, 0.799841166, -0.599974096, -0.999731123, -0.02304345, -0.00258117542))
  585. mesh("SpecialMesh",SphereMesh,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.863588154, 0.386394709, 0.788142323))
  586. Col_Blade=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0.40000000596046,0,"Lime green","Col_Blade",Vector3.new(0.227520019, 0.347574621, 0.496618122))
  587. Col_Bladeweld=weld(m,Handle,Col_Blade,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0180461407, -1.26677847, 6.9964304, -0.999731123, -0.0231310017, 0.00167600019, 0.0215828046, -0.954393089, -0.29777202, 0.00848732702, -0.297655761, 0.95463562))
  588. mesh("SpecialMesh",Col_Blade,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.478253096, 1, 1))
  589. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  590. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0158740282, -2.40658689, 6.26560688, -0.999731123, -0.0231310017, 0.00167600019, 0.0197811853, -0.888209283, -0.459013164, 0.0121060722, -0.458856583, 0.888427973))
  591. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.73952347, 0.696021676))
  592. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  593. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0158699751, -1.1999898, 4.74725819, -0.999731123, -0.0231310017, 0.00167600019, 0.0215828046, -0.954393089, -0.29777202, 0.00848732702, -0.297655761, 0.95463562))
  594. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.923764706, 0.696021676))
  595. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.270723999, 0.227520004))
  596. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00250005722, 0.138772607, 3.12700987, -0.999731004, -0.0230490007, -0.00257900008, 0.022936672, -0.999038756, 0.0373559929, -0.00343753956, 0.037286792, 0.999298751))
  597. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 1, 0.696021676))
  598. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  599. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0158663988, -2.37215471, 6.13326073, -0.999731123, -0.0231310017, 0.00167600019, 0.0197811853, -0.888209283, -0.459013164, 0.0121060722, -0.458856583, 0.888427973))
  600. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.826526284, 0.696021676))
  601. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.270723999, 0.227520004))
  602. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00249910355, 0.359729767, 2.22145653, -0.999731004, -0.0230490007, -0.00257900008, 0.0223096684, -0.986091614, 0.164698943, -0.00633927621, 0.164597079, 0.986340523))
  603. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 1, 0.696021676))
  604. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.245689243, 0.227520004))
  605. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00249266624, -0.420199752, 3.84987307, -0.999731004, -0.0230490007, -0.00257900008, 0.0231851339, -0.990335763, -0.136738971, 0.000597620849, -0.136761993, 0.990603745))
  606. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 1, 0.696021676))
  607. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  608. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00249576569, -1.88072801, 4.08003235, -0.999731004, -0.0230490007, -0.00257900008, 0.0215824749, -0.883834243, -0.467302114, 0.00849143695, -0.467232049, 0.88409394))
  609. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.923764706, 0.696021676))
  610. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.245689243, 0.227520004))
  611. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00249040127, -1.11661792, 3.93014622, -0.999731004, -0.0230490007, -0.00257900008, 0.0227291323, -0.951542258, -0.306677073, 0.00461457204, -0.306653172, 0.951810181))
  612. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 1, 0.696021676))
  613. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  614. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0158706903, -2.10945272, 4.8715992, -0.999731123, -0.0231310017, 0.00167600019, 0.0197811853, -0.888209283, -0.459013164, 0.0121060722, -0.458856583, 0.888427973))
  615. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.923764706, 0.696021676))
  616. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.270723999, 0.227520004))
  617. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00248420238, 0.168496728, 3.37365294, -0.999731004, -0.0230490007, -0.00257900008, 0.022936672, -0.999038756, 0.0373559929, -0.00343753956, 0.037286792, 0.999298751))
  618. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 1, 0.696021676))
  619. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.270723999, 0.227520004))
  620. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00249803066, 0.528314352, 2.39996815, -0.999731004, -0.0230490007, -0.00257900008, 0.0219913274, -0.977387369, 0.210310072, -0.0073681199, 0.210196793, 0.97763139))
  621. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 1, 0.696021676))
  622. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.270723999, 0.227520004))
  623. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00249683857, 0.643476248, 2.82827663, -0.999731004, -0.0230490007, -0.00257900008, 0.0219913274, -0.977387369, 0.210310072, -0.0073681199, 0.210196793, 0.97763139))
  624. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 1, 0.696021676))
  625. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  626. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0158627033, -3.21234703, 5.15841961, -0.999731123, -0.0231310017, 0.00167600019, 0.0173783638, -0.795031726, -0.606318772, 0.0153572327, -0.606126547, 0.795219898))
  627. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.872586608, 0.696021676))
  628. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.270723999, 0.227520004))
  629. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00250601768, 0.316231132, 2.04038882, -0.999731004, -0.0230490007, -0.00257900008, 0.0223096684, -0.986091614, 0.164698943, -0.00633927621, 0.164597079, 0.986340523))
  630. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 1, 0.696021676))
  631. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  632. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0158740282, -2.99772167, 4.59346294, -0.999731123, -0.0231310017, 0.00167600019, 0.0173783638, -0.795031726, -0.606318772, 0.0153572327, -0.606126547, 0.795219898))
  633. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.872586608, 0.696021676))
  634. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.270723999, 0.227520004))
  635. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00250470638, 0.573800325, 2.60903168, -0.999731004, -0.0230490007, -0.00257900008, 0.0219913274, -0.977387369, 0.210310072, -0.0073681199, 0.210196793, 0.97763139))
  636. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 1, 0.696021676))
  637. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  638. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0158762932, -1.25056052, 4.97859716, -0.999731123, -0.0231310017, 0.00167600019, 0.0215828046, -0.954393089, -0.29777202, 0.00848732702, -0.297655761, 0.95463562))
  639. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.923764706, 0.696021676))
  640. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  641. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00249266624, -0.427483082, 3.58797169, -0.999731004, -0.0230490007, -0.00257900008, 0.0231851339, -0.990335763, -0.136738971, 0.000597620849, -0.136761993, 0.990603745))
  642. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.921205819, 0.696021676))
  643. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.50418663))
  644. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0158628225, -1.18260515, 6.99084663, -0.999731123, -0.0231310017, 0.00167600019, 0.0215828046, -0.954393089, -0.29777202, 0.00848732702, -0.297655761, 0.95463562))
  645. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.823967516, 1))
  646. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  647. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.015879631, -1.28384709, 6.73533154, -0.999731123, -0.0231310017, 0.00167600019, 0.0215828046, -0.954393089, -0.29777202, 0.00848732702, -0.297655761, 0.95463562))
  648. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.596224785, 0.696021676))
  649. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  650. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0158766508, -3.14327979, 4.9542141, -0.999731123, -0.0231310017, 0.00167600019, 0.0173783638, -0.795031726, -0.606318772, 0.0153572327, -0.606126547, 0.795219898))
  651. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.872586608, 0.696021676))
  652. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  653. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0158598423, -1.16744971, 4.53505516, -0.999731123, -0.0231310017, 0.00167600019, 0.0215828046, -0.954393089, -0.29777202, 0.00848732702, -0.297655761, 0.95463562))
  654. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.923764706, 0.696021676))
  655. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.245689243, 0.227520004))
  656. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(-0.00249087811, -1.14021814, 4.148386, -0.999731004, -0.0230490007, -0.00257900008, 0.0227291323, -0.951542258, -0.306677073, 0.00461457204, -0.306653172, 0.951810181))
  657. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 1, 0.696021676))
  658. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  659. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.015873909, -3.27448416, 5.29295826, -0.999731123, -0.0231310017, 0.00167600019, 0.0173783638, -0.795031726, -0.606318772, 0.0153572327, -0.606126547, 0.795219898))
  660. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.872586608, 0.696021676))
  661. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0.40000000596046,0,"Black","Wedge",Vector3.new(0.227520019, 0.227520004, 0.227520004))
  662. Wedgeweld=weld(m,Handle,Wedge,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0158786774, -3.33326268, 5.45228672, -0.999731123, -0.0231310017, 0.00167600019, 0.0173783638, -0.795031726, -0.606318772, 0.0153572327, -0.606126547, 0.795219898))
  663. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.519246161, 0.783024967, 0.696021676))
  664. Hitbox=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,1,1,"Medium stone grey","Hitbox",Vector3.new(0.690000057, 1.08000004, 5.80000019))
  665. Hitboxweld=weld(m,Handle,Hitbox,CFrame.new(0, 0, 0, 0.00264700083, -0.00286800088, -0.999992371, -0.0230410062, 0.999730229, -0.00292823906, 0.999731004, 0.0230485816, 0.00258020521),CFrame.new(0.0325213671, 0.171207666, 4.40657902, 1, 0, 0, 0, 0.992272258, 0.124080032, 0, -0.124080032, 0.992272258))
  666.  
  667. RArm=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Handle",Vector3.new(1.04923391, 1.3986032, 0.93019712))
  668. RArmweld=weld(m,Character["Right Arm"],RArm,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0173950195, 0.239709616, 0.0501570702, 0.0151341362, -0.00132400251, 0.999893725, 0.000670999929, 1.00000358, 0.0013140036, -0.999885261, 0.000651038077, 0.0151348654))
  669. Body=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.20000000298023,0,"Dark green","Body",Vector3.new(0.518696666, 0.514399052, 0.200000003))
  670. Bodyweld=weld(m,RArm,Body,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0204563141, 0.472463369, 0.563453674, 1.00000918, 6.03299122e-006, 1.86264515e-009, -8.38190317e-009, 2.94312485e-008, 1.00000012, 6.03473745e-006, -1.00000918, -1.03991624e-008))
  671. mesh("SpecialMesh",Body,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.100000001, 0.400000006))
  672. Body=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.20000000298023,0,"Dark green","Body",Vector3.new(0.518696666, 0.514399052, 0.200000003))
  673. Bodyweld=weld(m,RArm,Body,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0209598541, 0.472712278, 0.180891991, 1.00000918, 6.03299122e-006, 1.86264515e-009, -8.38190317e-009, 2.94312485e-008, 1.00000012, 6.03473745e-006, -1.00000918, -1.03991624e-008))
  674. mesh("SpecialMesh",Body,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.100000001, 0.400000006))
  675. Body=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.20000000298023,0,"Dark green","Body",Vector3.new(0.518696666, 0.514399052, 0.200000003))
  676. Bodyweld=weld(m,RArm,Body,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0214862823, 0.47297287, -0.219111681, 1.00000918, 6.03299122e-006, 1.86264515e-009, -8.38190317e-009, 2.94312485e-008, 1.00000012, 6.03473745e-006, -1.00000918, -1.03991624e-008))
  677. mesh("SpecialMesh",Body,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.100000001, 0.400000006))
  678. RArm=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark green","RArm",Vector3.new(0.511821449, 0.468603224, 0.52270782))
  679. RArmweld=weld(m,RArm,RArm,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.212046623, -0.997919321, -0.000370025635, 8.63320281e-007, 1.02698448e-006, -1, 4.98958616e-006, 1, 1.0269888e-006, 1, -4.98958707e-006, 8.63315165e-007))
  680. mesh("SpecialMesh",RArm,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 0.5))
  681. RArm=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark green","RArm",Vector3.new(0.511821449, 0.468603224, 0.52270782))
  682. RArmweld=weld(m,RArm,RArm,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.02478957, 0.0572724342, -0.233242035, 5.0047197e-006, 1, 6.51829879e-008, -8.64251604e-007, -6.51786607e-008, 1, 1, -5.0047197e-006, 8.64251263e-007))
  683. mesh("SpecialMesh",RArm,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 0.5))
  684. RArm=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","RArm",Vector3.new(1.04923391, 0.508603275, 0.93019712))
  685. RArmweld=weld(m,RArm,RArm,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00074005127, -1.0038507, -0.000364303589, 1, 4.8694154e-017, 4.65652761e-009, 0, 1, -1.04571818e-008, -4.65652805e-009, 1.04571809e-008, 1))
  686. mesh("SpecialMesh",RArm,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  687. RArm=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark green","RArm",Vector3.new(0.511821449, 0.468603224, 0.52270782))
  688. RArmweld=weld(m,RArm,RArm,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.02416897, 0.0643925667, 0.237155914, 5.0047197e-006, 1, 6.51829879e-008, -8.64251604e-007, -6.51786607e-008, 1, 1, -5.0047197e-006, 8.64251263e-007))
  689. mesh("SpecialMesh",RArm,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 0.5))
  690.  
  691. --[[local mult = 2
  692. ----------------------------------------------------
  693. larm.Size = larm.Size * mult
  694. rarm.Size = rarm.Size * mult
  695. lleg.Size = lleg.Size * mult
  696. rleg.Size = rleg.Size * mult
  697. torso.Size = torso.Size * mult
  698. hed.Size = hed.Size * mult
  699. rutprt.Size = rutprt.Size * mult
  700. ----------------------------------------------------]]
  701. newWeld(law, torso, larm, -1.5, 0.5, 0)
  702. newWeld(raw, torso, rarm, 1.5, 0.5, 0)
  703. newWeld(llw, torso, lleg, -.5, -2, 0)
  704. newWeld(rlw, torso, rleg, .5, -2, 0)
  705. newWeld(hw, torso, hed, 0, 1.5, 0)
  706. local rutwald=Instance.new('Weld',rutprt)
  707. rutwald.Part0=rutprt
  708. rutwald.Part1=torso
  709. rutprt.Weld.C1=CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0)
  710. larm.Weld.C1 = CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),0,0)
  711. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),0,0)
  712. rleg.Weld.C1=CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0)
  713. lleg.Weld.C1=CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0)
  714.  
  715.  
  716.  
  717.  
  718.  
  719.  
  720.  
  721.  
  722.  
  723.  
  724.  
  725.  
  726.  
  727. maus.KeyDown:connect(function(kei)
  728. if string.byte(kei)==48 and not otheranims then
  729. runnin=true
  730. end
  731. if kei=='w' then fldb.w=true end
  732. if kei=='a' then fldb.a=true end
  733. if kei=='s' then fldb.s=true end
  734. if kei=='d' then fldb.d=true end
  735. end)
  736. maus.KeyUp:connect(function(kei)
  737. if string.byte(kei)==48 and not otheranims then
  738. runnin=false
  739. end
  740. if kei=='w' then fldb.w=false end
  741. if kei=='a' then fldb.a=false end
  742. if kei=='s' then fldb.s=false end
  743. if kei=='d' then fldb.d=false end
  744. end)
  745.  
  746.  
  747.  
  748.  
  749.  
  750. game:service'RunService'.RenderStepped:connect(function()
  751. if anim~=lastanim then
  752. runtime=0
  753. end
  754. lastanim=anim
  755. chr.Humanoid.CameraOffset=(rutprt.CFrame:toObjectSpace(hed.CFrame)).p+Vector3.new(0,-1.25,0)
  756. syne=syne+.95
  757. if not otheranims and not swimming then
  758. if (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 1 and not chr.Humanoid.Jump then-- and torso.Velocity.y<5 and torso.Velocity.y>-5
  759. anim="Idling"
  760. elseif (rutprt.Velocity*Vector3.new(1, 0, 1)).magnitude > 1 and (rutprt.Velocity*Vector3.new(1, 0, 1)).magnitude < RunSpeed-10 and not chr.Humanoid.Jump then-- and torso.Velocity.y<5 and torso.Velocity.y>-5
  761. anim="Walking"
  762. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > RunSpeed-10 and not chr.Humanoid.Jump then-- and torso.Velocity.y<5 and torso.Velocity.y>-5
  763. anim="Sprinting"
  764. elseif torso.Velocity.y>5 and chr.Humanoid.Jump then
  765. anim='Jumping'
  766. elseif (torso.Velocity.y < -5) and chr.Humanoid.Jump then
  767. anim='Falling'
  768. end
  769. end
  770.  
  771.  
  772. if anim=="Idling" then
  773. idlesineinc=35
  774. if not armanims then
  775. rarm.Weld.C0=Lerp(rarm.Weld.C0,CFrame.new(1.5,.525+math.cos(syne/idlesineinc)/25,0)*CFrame.Angles(math.rad(30),math.rad(15),math.rad(-10)),.1)
  776. larm.Weld.C0=Lerp(larm.Weld.C0,CFrame.new(-1.5,.525+math.cos(syne/idlesineinc)/25,0)*CFrame.Angles(math.rad(-30),math.rad(15),math.rad(-10)),.1)
  777. end
  778. lleg.Weld.C0=Lerp(lleg.Weld.C0,CFrame.new(-.55,-1.9-math.cos(syne/idlesineinc)/20,-.8+(math.cos(syne/idlesineinc)/35))*CFrame.Angles(--[[-(math.cos(syne/idlesineinc)/35)]]math.rad(20),0,math.rad(-2.5)),.1)
  779. rleg.Weld.C0=Lerp(rleg.Weld.C0,CFrame.new(.55,-1.9-math.cos(syne/idlesineinc)/20,(math.cos(syne/idlesineinc)/35))*CFrame.Angles(--[[-(math.cos(syne/idlesineinc)/35)]]math.rad(-20),0,math.rad(2.5)),.1)
  780. hed.Weld.C0=Lerp(hed.Weld.C0,CFrame.new(0,1.5+math.cos(syne/idlesineinc)/50,0)*CFrame.Angles(math.cos(syne/idlesineinc)/20,0,0),.1)
  781. rutprt.Weld.C0=Lerp(rutprt.Weld.C0,CFrame.new(0,-.2+math.cos(syne/idlesineinc)/20,0)*CFrame.Angles(math.cos(syne/idlesineinc)/35+math.rad(-20),math.rad(0),math.rad(0)),.1)
  782. end
  783.  
  784. if anim=="Walking" then
  785. if not armanims then
  786. rarm.Weld.C0=Lerp(rarm.Weld.C0,CFrame.new(1.5,.525,0)*CFrame.Angles(-math.cos(syne/2.5)/10+math.rad(30),0,math.rad(0)),.1)
  787. larm.Weld.C0=Lerp(larm.Weld.C0,CFrame.new(-1.5,.525,0)* CFrame.Angles(math.rad(-30), math.rad(0), math.rad(40)), 0.3)
  788. end
  789. lleg.Weld.C0=Lerp(lleg.Weld.C0,CFrame.new(-.55,-1.9-math.cos(syne/6)/10,-(math.cos(syne/6)/1.125))*CFrame.Angles(math.cos(syne/6)/1.125,0,math.rad(-2.5)),.1)
  790. rleg.Weld.C0=Lerp(rleg.Weld.C0,CFrame.new(.55,-1.9-math.cos(syne/6)/10,math.cos(syne/6)/1.125)*CFrame.Angles(-(math.cos(syne/6)/1.125),0,math.rad(2.5)),.1)
  791. hed.Weld.C0=Lerp(hed.Weld.C0,CFrame.new(0,1.5+math.cos(syne/20)/50,0)*CFrame.Angles(-math.cos(syne/3)/20,0,0),.1)
  792. rutprt.Weld.C0=Lerp(rutprt.Weld.C0,CFrame.new(0,-.1+math.cos(syne/3.375)/20,math.cos(syne/3)/5)*CFrame.Angles(math.cos(syne/3)/20+math.rad(-3.5),math.cos(syne/6)/10,-math.cos(syne/6)/30+math.sin(rutprt.RotVelocity.y/2)/7.5),.1)
  793. end
  794.  
  795. if anim=="Sprinting" then
  796. if not armanims then
  797. rarm.Weld.C0=Lerp(rarm.Weld.C0,CFrame.new(1.5,.525,0)*CFrame.Angles(-math.cos(syne/2.5)/10+math.rad(55),0,math.rad(12.5)),.1)
  798. larm.Weld.C0=Lerp(larm.Weld.C0,CFrame.new(-1.5,.525,0)* CFrame.Angles(math.rad(-30), math.rad(0), math.rad(40)), 0.3)
  799. end
  800. lleg.Weld.C0=Lerp(lleg.Weld.C0,CFrame.new(-.55,-1.6-math.cos(syne/4)/4,-(math.cos(syne/4)*2)-math.rad(10))*CFrame.Angles(math.cos(syne/4)*2+math.rad(10),0,math.rad(-2.5)),.1)
  801. rleg.Weld.C0=Lerp(rleg.Weld.C0,CFrame.new(.55,-1.6-math.cos(syne/4)/4,math.cos(syne/4)*2-math.rad(10))*CFrame.Angles(-(math.cos(syne/4)*2)+math.rad(10),0,math.rad(2.5)),.1)
  802. hed.Weld.C0=Lerp(hed.Weld.C0,CFrame.new(0,1.55+math.cos(syne/20)/50,0)*CFrame.Angles(-math.cos(syne/2.5)/10+math.rad(20),0,0),.1)
  803. rutprt.Weld.C0=Lerp(rutprt.Weld.C0,CFrame.new(0,-.3+math.cos(syne/2.5)/15,math.cos(syne/2.5))*CFrame.Angles(math.cos(syne/2.5)/10+math.rad(-25),math.cos(syne/2.5)/10,math.cos(syne/4)/20+math.sin(rutprt.RotVelocity.y/2)/4),.1)
  804. end
  805.  
  806. if anim=="Jumping" then
  807. if not armanims then
  808. rarm.Weld.C0=Lerp(rarm.Weld.C0,CFrame.new(1.5,.525,0)*CFrame.Angles(math.rad(10),0,math.rad(50)),.1)
  809. larm.Weld.C0=Lerp(larm.Weld.C0,CFrame.new(-1.5,.525,0)*CFrame.Angles(math.rad(10),0,math.rad(-50)),.1)
  810. end
  811. lleg.Weld.C0=Lerp(lleg.Weld.C0,CFrame.new(-.55,-1.4,0)*CFrame.Angles(math.rad(-17.5),0,math.rad(-2.5)),.1)
  812. rleg.Weld.C0=Lerp(rleg.Weld.C0,CFrame.new(.55,-1.1,-.1)*CFrame.Angles(math.rad(-17.5),0,math.rad(2.5)),.1)
  813. hed.Weld.C0=Lerp(hed.Weld.C0,CFrame.new(0,1.5+math.cos(syne/20)/50,0)*CFrame.Angles(math.cos(syne/20)/40,0,0),.1)
  814. rutprt.Weld.C0=Lerp(rutprt.Weld.C0,CFrame.new(0,-.1+math.cos(syne/20)/20,0)*CFrame.Angles(math.rad(-15),math.rad(0),math.rad(0)),.1)
  815. end
  816.  
  817. if anim=="Falling" then
  818. if not armanims then
  819. rarm.Weld.C0=Lerp(rarm.Weld.C0,CFrame.new(1.5,.525,0)*CFrame.Angles(math.rad(10),0,math.rad(70)),.035)
  820. larm.Weld.C0=Lerp(larm.Weld.C0,CFrame.new(-1.5,.525,0)*CFrame.Angles(math.rad(10),0,math.rad(-70)),.035)
  821. end
  822. lleg.Weld.C0=Lerp(lleg.Weld.C0,CFrame.new(-.55,-1.2,0)*CFrame.Angles(math.rad(-14),0,math.rad(-2.5)),.035)
  823. rleg.Weld.C0=Lerp(rleg.Weld.C0,CFrame.new(.55,-1.9,0)*CFrame.Angles(math.rad(0),0,math.rad(2.5)),.035)
  824. hed.Weld.C0=Lerp(hed.Weld.C0,CFrame.new(0,1.5,-.3)*CFrame.Angles(math.rad(-40),0,0),.035)
  825. rutprt.Weld.C0=Lerp(rutprt.Weld.C0,CFrame.new(0,-.1+math.cos(syne/20)/20,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)),.035)
  826. end
  827.  
  828. if runnin and not otheranims and not swimming then
  829. chr.Humanoid.WalkSpeed=RunSpeed
  830. chr.Humanoid.JumpPower=RunSpeed*8
  831. elseif not runnin and not otheranims and not swimming then
  832. chr.Humanoid.WalkSpeed=WlkSpeed
  833. chr.Humanoid.JumpPower=60
  834. end
  835. end)
  836.  
  837. --[[]]----[[Moves]]----[[]]--
  838. --if just moving arms the debounce should be armanims if anything else then otheranims
  839.  
  840.  
  841. function swait(num)
  842. if num == 0 or num == nil then
  843. game:service'RunService'.Heartbeat:wait(0)
  844. else
  845. for i = 0, num do
  846. game:service'RunService'.Heartbeat:wait(0)
  847. end
  848. end
  849. end
  850.  
  851.  
  852. attackone = function()
  853. attack = true
  854. armanims=true
  855.  
  856. for i = 0, 1, 0.13 do
  857. swait()
  858. end
  859.  
  860. --[[for i = 1,5 do
  861. rutprt.Weld.C0=Lerp(rutprt.Weld.C0,CFrame.new(0,0,0)*CFrame.Angles(6*syne,math.rad(0),math.rad(0)),.1)
  862. end]]
  863.  
  864. local sou = Instance.new("Sound", workspace)
  865. sou.Volume = 10
  866. sou.SoundId = "http://roblox.com/asset/?id=422287669"
  867. sou:Play()
  868.  
  869. armanims=false
  870. attack = false
  871.  
  872. end
  873.  
  874.  
  875.  
  876. attacktwo = function()
  877. attack = true
  878. armanims=true
  879.  
  880. --[[for i = 0, 1, 0.13 do
  881. swait()
  882. rarm.Weld.C0=Lerp(rarm.Weld.C0,CFrame.new(1.5,.650,0)*CFrame.Angles(math.rad(90), math.rad(-20), math.rad(0)),.1)
  883. end]]
  884.  
  885. local sou = Instance.new("Sound", workspace)
  886. sou.Volume = 10
  887. sou.SoundId = "http://roblox.com/asset/?id=731361082"
  888. sou:Play()
  889.  
  890. armanims=false
  891. attack = false
  892.  
  893. end
  894.  
  895.  
  896.  
  897.  
  898. attackthree = function()
  899.  
  900. attack = true
  901. otheranims=true
  902.  
  903. for i = 0, 1, 0.13 do
  904. swait()
  905.  
  906. end
  907.  
  908. for i = 0, 1, 0.1 do
  909. swait()
  910.  
  911. end
  912. otheranims=false
  913. attack = false
  914.  
  915. end
  916.  
  917.  
  918.  
  919.  
  920. attackfour = function()
  921.  
  922. attack = true
  923. otheranims=true
  924.  
  925. for i = 0, 1, 0.13 do
  926. swait()
  927.  
  928. end
  929.  
  930. for i = 0, 1, 0.1 do
  931. swait()
  932.  
  933. end
  934. otheranims=false
  935. attack = false
  936.  
  937. end
  938.  
  939.  
  940.  
  941. --[[]]----[[Moves]]----[[]]--
  942.  
  943.  
  944. maus.KeyDown:connect(function(kei)
  945. if kei=='z' --[[and not attack]] then
  946.  
  947. attackone()
  948.  
  949. elseif kei=='x' --[[and not attack]] then
  950.  
  951. attacktwo()
  952.  
  953. elseif kei=='c' --[[and not attack]] then
  954.  
  955. attackthree()
  956.  
  957. elseif kei=='v' --[[and not attack]] then
  958.  
  959. attackfour()
  960.  
  961. end
  962. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement