ThatOneGuy561

Untitled

Jun 14th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 143.02 KB | None | 0 0
  1. local mult = 1
  2.  
  3. local plr = game.Players.LocalPlayer
  4. local chr = plr.Character
  5. local maus = plr:GetMouse()
  6. local PGui=plr.PlayerGui
  7. local lleg = chr["Left Leg"]
  8. local rleg = chr["Right Leg"]
  9. local larm = chr["Left Arm"]
  10. local rarm = chr["Right Arm"]
  11. local hed = chr.Head
  12. local rutprt = chr.HumanoidRootPart
  13. local torso = chr.Torso
  14. local otheranims=false
  15. local swimming=false
  16. chr.Animate.Disabled=true
  17. local fldb={['w']=false,['a']=false,['s']=false,['d']=false}
  18. local RunSpeed=70
  19. local WlkSpeed=20
  20. local SwimSpeed=14
  21. local SwimDashSpeed=28
  22. local anim = "Idling"
  23. local lastanim = "Idling"
  24. local val = 0
  25. local syne = 0
  26. local num = 0
  27. local runtime = 0
  28.  
  29.  
  30. coroutine.wrap(function()
  31. for i,x in pairs(hed:GetChildren()) do if x:IsA('Sound') then x:Destroy() end end end)()
  32. function Lerp(a, b, i)
  33. local com1 = {a.X, a.Y, a.Z, a:toEulerAnglesXYZ()}
  34. local com2 = {b.X * mult, b.Y * mult, b.Z * mult, b:toEulerAnglesXYZ()}
  35. local calx = com1[1] + (com2[1] - com1[1]) * i
  36. local caly = com1[2] + (com2[2] - com1[2]) * i
  37. local calz = com1[3] + (com2[3] - com1[3]) * i
  38. local cala = com1[4] + (com2[4] - com1[4]) * i
  39. local calb = com1[5] + (com2[5] - com1[5]) * i
  40. local calc = com1[6] + (com2[6] - com1[6]) * i
  41. return CFrame.new(calx, caly, calz) * CFrame.Angles(cala, calb, calc)
  42. end
  43. function TwnSingleNumber(s,f,m)
  44. local wot=s+(f-s)*m
  45. return wot
  46. end
  47. function TwnVector3(q,w,e)
  48. local begin={q.x,q.y,q.z}
  49. local ending={w.x,w.y,w.z}
  50. local bgx=begin[1]+(ending[1]-begin[1])*e
  51. local bgy=begin[2]+(ending[2]-begin[2])*e
  52. local bgz=begin[3]+(ending[3]-begin[3])*e
  53. return Vector3.new(bgx,bgy,bgz)
  54. end
  55. newWeld = function(wld, wp0, wp1, wc0x, wc0y, wc0z)
  56. wld = Instance.new("Weld", wp1)
  57. wld.Part0 = wp0
  58. wld.Part1 = wp1
  59. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  60. end
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68. ----------------------------------------------------
  69. larm.Size = larm.Size * mult
  70. rarm.Size = rarm.Size * mult
  71. lleg.Size = lleg.Size * mult
  72. rleg.Size = rleg.Size * mult
  73. torso.Size = torso.Size * mult
  74. hed.Size = hed.Size * mult
  75. rutprt.Size = rutprt.Size * mult
  76. ----------------------------------------------------
  77. newWeld(law, torso, larm, -1.5 * mult, 0.5 * mult, 0 * mult)
  78. newWeld(raw, torso, rarm, 1.5 * mult, 0.5 * mult, 0 * mult)
  79. newWeld(llw, torso, lleg, -.5 * mult, -2 * mult, 0 * mult)
  80. newWeld(rlw, torso, rleg, .5 * mult, -2 * mult, 0 * mult)
  81. newWeld(hw, torso, hed, 0 * mult, 1.5 * mult, 0 * mult)
  82. local rutwald=Instance.new('Weld',rutprt)
  83. rutwald.Part0=rutprt
  84. rutwald.Part1=torso
  85. rutprt.Weld.C1=CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0)
  86. larm.Weld.C1 = CFrame.new(0, 0.5 * mult, 0)*CFrame.Angles(math.rad(0),0,0)
  87. rarm.Weld.C1 = CFrame.new(0, 0.5 * mult, 0)*CFrame.Angles(math.rad(0),0,0)
  88. rleg.Weld.C1=CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0)
  89. lleg.Weld.C1=CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0)
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96. Player=game:GetService('Players').LocalPlayer
  97. Character=Player.Character
  98. Mouse=Player:GetMouse()
  99. m=Instance.new('Model',Character)
  100. it=Instance.new
  101. function nooutline(part)
  102. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  103. end
  104. function part(shape,parent,material,reflectance,transparency,brickcolor,name,size)
  105. local fp=it("Part")
  106. fp.Shape=shape
  107. fp.Parent=parent
  108. fp.Reflectance=reflectance
  109. fp.Transparency=transparency
  110. fp.CanCollide=false
  111. fp.Locked=true
  112. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  113. fp.Name=name
  114. fp.Size=size
  115. fp.Position=Character.Torso.Position
  116. nooutline(fp)
  117. fp.Material=material
  118. fp:BreakJoints()
  119. return fp
  120. end
  121. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  122. local mesh=it(Mesh)
  123. mesh.Parent=part
  124. if Mesh=="SpecialMesh" then
  125. mesh.MeshType=meshtype
  126. mesh.MeshId=meshid
  127. end
  128. mesh.Offset=offset
  129. mesh.Scale=scale
  130. return mesh
  131. end
  132. function weld(parent,part0,part1,c0,c1)
  133. local weld=it("Weld")
  134. weld.Parent=parent
  135. weld.Part0=part0
  136. weld.Part1=part1
  137. weld.C0=c0
  138. weld.C1=c1
  139. return weld
  140. end
  141.  
  142. SW_Handle=part(Enum.PartType.Cylinder,m,Enum.Material.Metal,0,0,"Dark stone grey","Handle",Vector3.new(2.57058787, 0.321323544, 0.321323276))
  143. SW_Handleweld=weld(m,Character["Right Arm"],SW_Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1),CFrame.new(-0.703036308, -0.0239830017, -1.03511274, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  144. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.266130805, 0.266130626))
  145. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(1.36059093, 3.81469727e-006, -2.38418579e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  146. mesh("SpecialMesh",Col_Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.640945494, 1, 1))
  147. Col_Part=part(Enum.PartType.Ball,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.353455842, 0.353455842, 0.353455842))
  148. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(1.11820889, -1.90734863e-005, -0.77118206, 2.62108097e-005, -4.56741844e-008, 1, 1.00000191, 1.86264515e-007, -2.62111062e-005, 8.1062326e-006, 1.0000006, 4.54267592e-008))
  149. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.56163228, 0.338032365, 0.25705868))
  150. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(0, -3.81469727e-006, -1.51665401, 8.16583633e-006, 1.0000006, -9.12223186e-010, 1.00000203, 2.5331974e-007, -2.62107151e-005, -2.62104186e-005, -6.65265842e-010, -1))
  151. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.22380136, 0.399195969))
  152. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(0.279406428, -0.069152832, 7.73077869, -8.16584725e-006, -1.0000006, -4.01401849e-007, 1.00000203, 2.5331974e-007, -2.62107187e-005, 2.6210424e-005, -4.01650993e-007, 1))
  153. mesh("SpecialMesh",Col_Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.832397103, 0.594569266, 1))
  154. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.55520582, 0.349600047, 0.349599779))
  155. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(1.04904175e-005, -1.52587891e-005, -1.11821175, 8.16583633e-006, 1.0000006, -9.12223186e-010, 1.00000203, 2.5331974e-007, -2.62107151e-005, -2.62104186e-005, -6.65265842e-010, -1))
  156. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.321352929, 0.32135275))
  157. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(0.400527, -1.14440918e-005, -4.64916229e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  158. mesh("SpecialMesh",Col_Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.682566166, 1, 1))
  159. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.321352929, 0.32135275))
  160. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(0.879567146, -3.81469727e-006, -2.02655792e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  161. mesh("SpecialMesh",Col_Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.682566166, 1, 1))
  162. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.321352929, 0.32135275))
  163. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(0.560211182, 3.81469727e-006, -4.88758087e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  164. mesh("SpecialMesh",Col_Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.682566166, 1, 1))
  165. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.22380136, 0.399195969))
  166. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(0.279511213, -0.0679321289, 7.7307806, 8.16592001e-006, 1.0000006, 3.20276718e-006, -1.00000203, -2.5331974e-007, 2.62107151e-005, 2.62103949e-005, -3.2030166e-006, 1))
  167. mesh("SpecialMesh",Col_Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.832397103, 0.594569266, 1))
  168. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.22380136, 0.399195969))
  169. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.279386163, -0.0679130554, 7.73078632, 8.16592001e-006, 1.0000006, 3.20276718e-006, -1.00000203, -2.5331974e-007, 2.62107151e-005, 2.62103949e-005, -3.2030166e-006, 1))
  170. mesh("SpecialMesh",Col_Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.832397103, 0.594569266, 1))
  171. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.321352929, 0.32135275))
  172. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(0.71988678, -7.62939453e-006, -5.60283661e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  173. mesh("SpecialMesh",Col_Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.682566166, 1, 1))
  174. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.321352929, 0.32135275))
  175. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.0785093307, 7.62939453e-006, -5.36441803e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  176. mesh("SpecialMesh",Col_Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.682566166, 1, 1))
  177. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.321352929, 0.32135275))
  178. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.717223167, 7.62939453e-006, 8.46385956e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  179. mesh("SpecialMesh",Col_Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.682566166, 1, 1))
  180. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.321352929, 0.32135275))
  181. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.238186836, 3.81469727e-006, 2.86102295e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  182. mesh("SpecialMesh",Col_Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.682566166, 1, 1))
  183. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.321352929, 0.32135275))
  184. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.557545662, 7.62939453e-006, 0, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  185. mesh("SpecialMesh",Col_Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.682566166, 1, 1))
  186. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.321352929, 0.32135275))
  187. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.397867203, -3.81469727e-006, 2.38418579e-007, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  188. mesh("SpecialMesh",Col_Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.682566166, 1, 1))
  189. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.321352929, 0.32135275))
  190. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(0.240849495, 0, 4.76837158e-007, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  191. mesh("SpecialMesh",Col_Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.682566166, 1, 1))
  192. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.321352929, 0.32135275))
  193. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(1.19892597, -1.90734863e-005, -1.02519989e-005, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  194. mesh("SpecialMesh",Col_Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.682566166, 1, 1))
  195. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.269911736, 0.340602905, 0.334176242))
  196. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.925415039, 3.81469727e-006, -3.81469727e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  197. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.22380136, 0.399195969))
  198. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.279488683, -0.0691452026, 7.73078632, -8.16584725e-006, -1.0000006, -4.01401849e-007, 1.00000203, 2.5331974e-007, -2.62107187e-005, 2.6210424e-005, -4.01650993e-007, 1))
  199. mesh("SpecialMesh",Col_Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.832397103, 0.594569266, 1))
  200. Col_Part=part(Enum.PartType.Ball,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.353455842, 0.353455842, 0.353455842))
  201. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(1.11821175, -7.62939453e-006, 0.771200776, 2.62108097e-005, -4.56741844e-008, 1, 1.00000191, 1.86264515e-007, -2.62111062e-005, 8.1062326e-006, 1.0000006, 4.54267592e-008))
  202. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.321352929, 0.32135275))
  203. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(0.0811748505, -7.62939453e-006, -5.12599945e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  204. mesh("SpecialMesh",Col_Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.682566166, 1, 1))
  205. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.527424157, 0.349600047, 0.349599779))
  206. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(1.38192177, 3.81469727e-006, -0.771190643, 2.62108097e-005, -4.56741844e-008, 1, 1.00000191, 1.86264515e-007, -2.62111062e-005, 8.1062326e-006, 1.0000006, 4.54267592e-008))
  207. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.527424157, 0.349600047, 0.349599779))
  208. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(1.38192749, -3.81469727e-006, 0.771199942, 2.62108097e-005, -4.56741844e-008, 1, 1.00000191, 1.86264515e-007, -2.62111062e-005, 8.1062326e-006, 1.0000006, 4.54267592e-008))
  209. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.731859684, 0.268792093, 5.89479399))
  210. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(2.74181366e-005, 3.43322754e-005, -4.58378029, 8.16583633e-006, 1.0000006, -9.12223186e-010, 1.00000203, 2.5331974e-007, -2.62107151e-005, -2.62104186e-005, -6.65265842e-010, -1))
  211. Col_Part=part(Enum.PartType.Cylinder,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.22380136, 0.321352929, 0.32135275))
  212. Col_Partweld=weld(m,SW_Handle,Col_Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(1.03924656, -1.14440918e-005, -7.51018524e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  213. mesh("SpecialMesh",Col_Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.682566166, 1, 1))
  214. Part=part(Enum.PartType.Block,m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(5.88149071, 0.22380136, 0.585487127))
  215. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-4.5904274, -0.0665016174, 0.652019143, -2.62108406e-005, -3.09850611e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10615074e-006, -1.0000006, 3.0987519e-006))
  216. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.594569266, 1))
  217. Part=part(Enum.PartType.Cylinder,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.22380136, 0.321619093, 0.321618915))
  218. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(0.881558418, -3.81469727e-006, -2.38418579e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  219. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.640945494, 1, 1))
  220. Part=part(Enum.PartType.Cylinder,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.22380136, 0.321619093, 0.321618915))
  221. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.55555439, 0, 3.69548798e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  222. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.640945494, 1, 1))
  223. Part=part(Enum.PartType.Cylinder,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.22380136, 0.321619093, 0.321618915))
  224. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.0765180588, 3.81469727e-006, -6.07967377e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  225. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.640945494, 1, 1))
  226. Part=part(Enum.PartType.Cylinder,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.22380136, 0.321619093, 0.321618915))
  227. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.236195564, 3.81469727e-006, 2.86102295e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  228. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.640945494, 1, 1))
  229. Part=part(Enum.PartType.Cylinder,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.22380136, 0.321619093, 0.321618915))
  230. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(0.562199593, 3.81469727e-006, -4.88758087e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  231. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.640945494, 1, 1))
  232. Part=part(Enum.PartType.Cylinder,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.22380136, 0.321619093, 0.321618915))
  233. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(0.721879005, -7.62939453e-006, -4.64916229e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  234. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.640945494, 1, 1))
  235. Part=part(Enum.PartType.Block,m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.37258321, 0.22380136, 0.399195969))
  236. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-3.94582748e-005, -0.0691490173, 7.73078251, -8.16584725e-006, -1.0000006, -4.01401849e-007, 1.00000203, 2.5331974e-007, -2.62107187e-005, 2.6210424e-005, -4.01650993e-007, 1))
  237. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.594569266, 1))
  238. Part=part(Enum.PartType.Cylinder,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.22380136, 0.321619093, 0.321618915))
  239. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.715229034, 3.81469727e-006, 1.10864639e-005, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  240. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.640945494, 1, 1))
  241. Part=part(Enum.PartType.Cylinder,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.22380136, 0.321619093, 0.321618915))
  242. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.395875931, -3.81469727e-006, 1.43051147e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  243. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.640945494, 1, 1))
  244. Part=part(Enum.PartType.Cylinder,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.22380136, 0.321619093, 0.321618915))
  245. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(0.0831661224, -7.62939453e-006, -5.12599945e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  246. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.640945494, 1, 1))
  247. Part=part(Enum.PartType.Cylinder,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.22380136, 0.321619093, 0.321618915))
  248. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(1.20091343, -3.81469727e-006, -6.43730164e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  249. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.640945494, 1, 1))
  250. Part=part(Enum.PartType.Block,m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.37258321, 0.22380136, 0.399195969))
  251. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-3.55243683e-005, -0.0639152527, 7.73078728, 3.82436156e-005, 1.0000006, -8.15938984e-006, -1.00000203, 2.99140811e-005, 2.73374098e-005, 2.73374262e-005, 8.158323e-006, 1))
  252. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.594569266, 1))
  253. Part=part(Enum.PartType.Cylinder,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.22380136, 0.321619093, 0.321618915))
  254. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(0.242840767, 0, -2.38418579e-007, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  255. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.640945494, 1, 1))
  256. Part=part(Enum.PartType.Cylinder,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.22380136, 0.321619093, 0.321618915))
  257. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(0.402519226, -7.62939453e-006, -1.07288361e-005, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  258. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.640945494, 1, 1))
  259. Part=part(Enum.PartType.Block,m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.585487723, 0.399196237, 0.22380133))
  260. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.658618331, -7.7307806, -0.0666046143, 1.09524681e-005, 1.0000006, 4.37902372e-006, -2.32603197e-005, 4.37933795e-006, -1, -1.00000203, 2.61515379e-006, 2.32606708e-005))
  261. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"rbxassetid://552212360",Vector3.new(0, 0, 0),Vector3.new(0.585487723, 0.399196237, 0.133065313))
  262. Part=part(Enum.PartType.Cylinder,m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.3792364, 0.37617588, 0.362869143))
  263. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(1.33468342, -1.14440918e-005, -0.777832508, 2.62108097e-005, -4.56741844e-008, 1, 1.00000191, 1.86264515e-007, -2.62111062e-005, 8.1062326e-006, 1.0000006, 4.54267592e-008))
  264. Part=part(Enum.PartType.Cylinder,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.22380136, 0.399196237, 0.399195969))
  265. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(1.34728527, 0, -3.21865082e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  266. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.640945494, 1, 1))
  267. Part=part(Enum.PartType.Block,m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.364066929, 0.343308777, 0.22380133))
  268. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(2.05039978e-005, -0.00194549561, -1.58646011, 8.16583633e-006, 1.0000006, -9.12223186e-010, 1.00000203, 2.5331974e-007, -2.62107151e-005, -2.62104186e-005, -6.65265842e-010, -1))
  269. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.564840496))
  270. Part=part(Enum.PartType.Block,m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.585487723, 0.22380136, 0.399195969))
  271. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.658622622, -0.0665206909, -7.73078632, 1.09524681e-005, 1.0000006, 4.37915469e-006, 1.00000203, -2.61515379e-006, -3.08033013e-005, -3.08029703e-005, 4.37948711e-006, -1))
  272. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"rbxassetid://552212360",Vector3.new(0, 0, 0),Vector3.new(0.585487723, 0.133065403, 0.399195969))
  273. Part=part(Enum.PartType.Block,m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.585487723, 0.399196237, 0.22380133))
  274. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.658747315, -7.73077679, -0.0664787292, -8.16592001e-006, -1.0000006, -3.20276718e-006, -2.62107824e-005, 3.20301569e-006, -1, 1.00000203, 2.5331974e-007, -2.62111043e-005))
  275. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"rbxassetid://552212360",Vector3.new(0, 0, 0),Vector3.new(0.585487723, 0.399196237, 0.133065313))
  276. Part=part(Enum.PartType.Block,m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(1.5616554, 0.347300708, 0.399195969))
  277. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(1.07288361e-005, 0.00331497192, -1.32604313, 8.16583633e-006, 1.0000006, -9.12223186e-010, 1.00000203, 2.5331974e-007, -2.62107151e-005, -2.62104186e-005, -6.65265842e-010, -1))
  278. Part=part(Enum.PartType.Cylinder,m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.3792364, 0.37617588, 0.362869143))
  279. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(1.33468819, 7.62939453e-006, 0.777850986, 2.62108097e-005, -4.56741844e-008, 1, 1.00000191, 1.86264515e-007, -2.62111062e-005, 8.1062326e-006, 1.0000006, 4.54267592e-008))
  280. Part=part(Enum.PartType.Block,m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(5.88149071, 0.22380136, 0.572180688))
  281. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-4.59043503, -0.0665779114, 0.658702016, -2.62108406e-005, -3.09850611e-006, -1, -1.00000191, -1.86264515e-007, 2.62111098e-005, 8.10615074e-006, 1.0000006, -3.0987519e-006))
  282. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.594569266, 1))
  283. Part=part(Enum.PartType.Block,m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(5.88149071, 0.22380136, 0.572180688))
  284. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(4.59041595, -0.0666236877, 0.652015328, 1.40365428e-005, 3.09850361e-006, 1, -1.00000191, -1.86264529e-007, 1.40368393e-005, -8.10615074e-006, -1.0000006, 3.09875281e-006))
  285. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.594569266, 1))
  286. Part=part(Enum.PartType.Block,m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.365929842, 0.27145341, 6.01455355))
  287. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(2.57492065e-005, 5.34057617e-005, -4.52390099, 8.16583633e-006, 1.0000006, -9.12223186e-010, 1.00000203, 2.5331974e-007, -2.62107151e-005, -2.62104186e-005, -6.65265842e-010, -1))
  288. Part=part(Enum.PartType.Block,m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(0.572181225, 0.22380136, 0.399195969))
  289. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(-0.665411949, -0.0665855408, -7.73078442, -8.16592001e-006, -1.0000006, -3.20276718e-006, -1.00000203, -2.5331974e-007, 2.62107151e-005, -2.62103949e-005, 3.2030166e-006, -1))
  290. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"rbxassetid://552212360",Vector3.new(0, 0, 0),Vector3.new(0.572181225, 0.133065403, 0.399195969))
  291. Part=part(Enum.PartType.Block,m,Enum.Material.Metal,0,0,"Really black","Part",Vector3.new(5.88149071, 0.22380136, 0.585487127))
  292. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(4.59042931, -0.0664825439, 0.652045727, 2.62108406e-005, 3.09850611e-006, 1, 1.00000191, 1.86264515e-007, -2.62111098e-005, 8.10615074e-006, 1.0000006, -3.0987519e-006))
  293. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.594569266, 1))
  294. Part=part(Enum.PartType.Cylinder,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.22380136, 0.321619093, 0.321618915))
  295. Partweld=weld(m,SW_Handle,Part,CFrame.new(0, 0, 0, -2.62108533e-005, -4.8866732e-006, -1, 1.00000191, 1.86264458e-007, -2.62111098e-005, -8.10610345e-006, -1.00000036, 4.88691694e-006),CFrame.new(1.04123402, -1.14440918e-005, -7.51018524e-006, -2.62108533e-005, -4.88667411e-006, -1, 1.00000191, 1.86264515e-007, -2.62111098e-005, -8.10610345e-006, -1.0000006, 4.88691694e-006))
  296. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.640945494, 1, 1))
  297.  
  298.  
  299.  
  300. RA_Handle=part(Enum.PartType.Block,m,Enum.Material.SmoothPlastic,1,1,"Medium stone grey","Handle",Vector3.new(1.09791517, 2.19582868, 1.09791434))
  301. RA_Handleweld=weld(m,Character["Right Arm"],RA_Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1),CFrame.new(0.00505638123, 0.0498468876, -0.011177063, -0.000618032704, -3.1239364e-005, -1.00000215, -3.1024596e-005, 0.999999046, -3.12096636e-005, 1.00000203, 3.10041614e-005, -0.00061776262))
  302. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.200000018))
  303. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.112066269, -1.55068827, -0.321792603, -0.117575765, -0.321409583, -0.939614773, 0.321199417, 0.883007407, -0.342240334, 0.939686894, -0.342040986, -0.000583447923))
  304. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.867352843, 0.219582841, 0.219582841))
  305. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.300828516))
  306. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(0.614871979, -0.958118439, -0.897199631, -0.000607436348, -1.12411872e-005, -1.00000119, -0.866058767, 0.499943674, 0.000520342146, 0.499944389, 0.866057575, -0.000313343189))
  307. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  308. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(1.23405659, 0.200000018, 0.200000018))
  309. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(0.0208778381, -0.708271027, 0.591868401, -0.00064916932, -4.3240263e-005, -1.00000429, 0.984824181, -0.173575625, -0.000638743164, -0.173576698, -0.984817863, 0.000155811882))
  310. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 0.219582841))
  311. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.531390488))
  312. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.575263023, -0.971702576, 0.854995728, -0.000649258262, -4.34132708e-005, -1.00000858, 0.984814465, 0.173657253, -0.000638701313, 0.173659518, -0.98480171, -6.95699637e-005))
  313. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  314. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(1.10450268, 0.200000018, 1.10889339))
  315. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.00107097626, -0.447946787, 0.00107574463, -0.000618169201, -3.12402917e-005, -1.00000429, -3.10256255e-005, 0.999997854, -3.12087723e-005, 1.00000417, 3.10031683e-005, -0.000617628917))
  316. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  317. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.786106527))
  318. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(1.25040698, -0.853574753, -0.0689849854, -6.96727802e-005, -0.984816909, -0.173573554, -0.000639315112, 0.173572391, -0.984823287, 1.00000417, 4.30031359e-005, -0.000648629037))
  319. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  320. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.200000018))
  321. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(0.141683102, -1.56565857, -0.313415527, 0.116386414, 0.321378469, -0.939773381, 0.321602464, 0.88302964, 0.341804445, 0.939697027, -0.342012972, -0.000583181565))
  322. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.867352843, 0.219582841, 0.219582841))
  323. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.309611827))
  324. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(0.617105484, -0.708065033, 0.751437664, -0.000631409639, -5.60119115e-005, -1.00000215, 0.984817863, -0.173602417, -0.000611833239, -0.173602924, -0.984814882, 0.000164718411))
  325. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  326. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.531390488))
  327. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(0.61710453, -0.971721649, 0.85498333, -0.000641345512, -4.24129357e-005, -1.00000644, 0.9848122, 0.173657432, -0.000638011668, 0.173659101, -0.984802663, -6.94062255e-005))
  328. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  329. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(0.558840752, 0.335304081, 0.235849097))
  330. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(0.013220787, -1.40386605, -0.0725021362, -0.000618169201, -3.12402917e-005, -1.00000429, -3.10256255e-005, 0.999997854, -3.12087723e-005, 1.00000417, 3.10031683e-005, -0.000617628917))
  331. mesh("SpecialMesh",Col_Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.383722216, 0.383721918, 0.383721918))
  332. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(1.10441566, 0.302241743, 1.1132853))
  333. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.00110912323, 0.397445202, -0.00328063965, -0.000618169201, -3.12402917e-005, -1.00000429, -3.10256255e-005, 0.999997854, -3.12087723e-005, 1.00000417, 3.10031683e-005, -0.000617628917))
  334. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.309611827))
  335. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.573064804, -0.708011627, 0.751449585, -0.000648997782, -4.42254604e-005, -1.00000429, 0.984818816, -0.173609078, -0.000623906148, -0.173610151, -0.984812558, 0.000154044246))
  336. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  337. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.379878342))
  338. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(0.246690273, -1.57053661, -0.146656036, 0.116374291, 0.321423382, -0.939757288, 0.321593344, 0.883009315, 0.341844231, 0.939699829, -0.34199962, -0.00061444554))
  339. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  340. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.300828516))
  341. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.575283051, -0.958122253, -0.897201538, -0.000607169175, -1.12403368e-005, -1.00000429, -0.866058588, 0.499946892, 0.000519633875, 0.499950081, 0.866053164, -0.000313478842))
  342. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  343. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.783910751))
  344. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(1.24427319, -0.888159752, 0.0688552856, 6.97402211e-005, -0.984805167, 0.173661351, 0.000639302947, 0.173661083, 0.984806716, -1.00000107, 4.23415331e-005, 0.000641564315))
  345. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  346. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.384269983))
  347. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.206106186, -1.55359221, -0.149517059, -0.117612302, -0.321426421, -0.939603031, 0.321203709, 0.88298732, -0.342269182, 0.939679921, -0.342056245, -0.000600517029))
  348. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  349. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Teal","Col_Part",Vector3.new(1.10441566, 0.302241743, 1.1132853))
  350. Col_Partweld=weld(m,RA_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.00109195709, -0.12735033, -0.00329589844, -0.000618169201, -3.12402917e-005, -1.00000429, -3.10256255e-005, 0.999997854, -3.12087723e-005, 1.00000417, 3.10031683e-005, -0.000617628917))
  351. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.338158071, 0.200000018, 0.783910751))
  352. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(1.00217056, -0.482435226, -0.0689506531, 0.00015574017, -0.984805644, 0.173660219, -0.000639305275, -0.173660293, -0.984805405, 0.999999762, 4.2351865e-005, -0.000656637305))
  353. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  354. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.31310642, 0.200000018, 0.783910751))
  355. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(0.0209026337, -1.37605834, -0.0689620972, -0.000618169201, -3.12402917e-005, -1.00000429, -3.10256255e-005, 0.999997854, -3.12087723e-005, 1.00000417, 3.10031683e-005, -0.000617628917))
  356. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  357. Part=part(Enum.PartType.Block,m,Enum.Material.SmoothPlastic,0.10000000149012,0,"Really black","Part",Vector3.new(1.12856996, 0.203429461, 1.13304746))
  358. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.00110816956, 0.397445202, -0.00548171997, -0.000618169201, -3.12402917e-005, -1.00000429, -3.10256255e-005, 0.999997854, -3.12087723e-005, 1.00000417, 3.10031683e-005, -0.000617628917))
  359. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.12637389, 0.25832513, 1.12646019))
  360. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.0011100769, 0.397445202, -0.00657653809, -0.000618169201, -3.12402917e-005, -1.00000429, -3.10256255e-005, 0.999997854, -3.12087723e-005, 1.00000417, 3.10031683e-005, -0.000617628917))
  361. Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(1.09782839, 0.322004199, 1.10669744))
  362. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.00110912323, 0.397445202, -0.00218582153, -0.000618169201, -3.12402917e-005, -1.00000429, -3.10256255e-005, 0.999997854, -3.12087723e-005, 1.00000417, 3.10031683e-005, -0.000617628917))
  363. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.338158071, 0.200000018, 0.783910751))
  364. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(1.08633947, -0.886254311, 0.0688591003, 6.97402211e-005, -0.984805167, 0.173661351, 0.000639302947, 0.173661083, 0.984806716, -1.00000107, 4.23415331e-005, 0.000641564315))
  365. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  366. Part=part(Enum.PartType.Block,m,Enum.Material.SmoothPlastic,0.10000000149012,0,"Really black","Part",Vector3.new(1.12856996, 0.203429461, 1.13304746))
  367. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.00109291077, -0.12735033, -0.00549697876, -0.000618169201, -3.12402917e-005, -1.00000429, -3.10256255e-005, 0.999997854, -3.12087723e-005, 1.00000417, 3.10031683e-005, -0.000617628917))
  368. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.200000018, 0.346940905, 0.200000018))
  369. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.339216232, -0.794765472, 0.742957115, -0.00064916932, -4.3240263e-005, -1.00000429, 0.984810054, 0.173657626, -0.000638813421, 0.173658744, -0.984803855, -6.9414149e-005))
  370. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.384270221, 1, 0.384269953))
  371. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.10450268, 0.623615265, 1.10889339))
  372. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.00107192993, -0.788292885, 0.00107574463, -0.000618440914, -3.12411757e-005, -1.00000858, -3.10267242e-005, 0.99999547, -3.12079501e-005, 1.00000846, 3.10021314e-005, -0.000617362326))
  373. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.200000018, 0.200000018, 0.346940905))
  374. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(0.142020702, -1.56476593, -0.127197266, 0.116386414, 0.321378469, -0.939773381, 0.321602464, 0.88302964, 0.341804445, 0.939697027, -0.342012972, -0.000583181565))
  375. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.867352843, 0.219582841, 1))
  376. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.14841926, 0.200000018, 0.531390488))
  377. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(0.0209312439, -0.971733093, 0.854979515, -0.000641610473, -4.24133432e-005, -0.999999881, 0.984806418, 0.173655257, -0.000639227452, 0.173655242, -0.984806538, -6.96500865e-005))
  378. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  379. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.338158071, 0.200000018, 0.783910751))
  380. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(1.09247541, -0.851680756, -0.068977356, -6.96727802e-005, -0.984816909, -0.173573554, -0.000639315112, 0.173572391, -0.984823287, 1.00000417, 4.30031359e-005, -0.000648629037))
  381. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  382. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.200000018, 0.346940905, 0.200000018))
  383. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(0.37224102, -0.794776917, 0.74292469, -0.00064916932, -4.3240263e-005, -1.00000429, 0.984810054, 0.173657626, -0.000638813421, 0.173658744, -0.984803855, -6.9414149e-005))
  384. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.384270221, 1, 0.384269953))
  385. Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(1.09782839, 0.322004199, 1.10669744))
  386. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.00109291077, -0.12735033, -0.00220108032, -0.000618169201, -3.12402917e-005, -1.00000429, -3.10256255e-005, 0.999997854, -3.12087723e-005, 1.00000417, 3.10031683e-005, -0.000617628917))
  387. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.200000018, 0.256911933, 0.200000018))
  388. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.341300011, -1.30371094, -0.099193573, -0.0006417564, -0.000104735613, -1.00000215, 0.342019081, 0.939692378, -0.000317809463, 0.93969512, -0.342018127, -0.000566981384))
  389. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.384270221, 1, 0.384269953))
  390. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.14841926, 0.200000018, 0.300828516))
  391. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(0.0208950043, -0.958126068, -0.897182465, -0.000606486399, -1.17091931e-005, -1.00000215, -0.866057158, 0.499947667, 0.000519167457, 0.499949157, 0.866054595, -0.000313207827))
  392. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  393. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.14841926, 0.200000018, 0.346940905))
  394. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(0.0210180283, -1.4523716, -0.12776947, -0.000642289291, -0.000104737337, -0.999999762, 0.342023373, 0.939691424, -0.000318098813, 0.939691305, -0.342023492, -0.000567731215))
  395. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  396. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.200000018, 0.200000018, 0.346940905))
  397. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.0979175568, -1.55092287, -0.126422882, -0.117562592, -0.321447253, -0.939601421, 0.32116273, 0.883009434, -0.342270315, 0.939698637, -0.342003137, -0.000571994868))
  398. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.867352843, 0.219582841, 1))
  399. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.12637389, 0.25832513, 1.12646019))
  400. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(-0.00109291077, -0.12735033, -0.00659179688, -0.000618169201, -3.12402917e-005, -1.00000429, -3.10256255e-005, 0.999997854, -3.12087723e-005, 1.00000417, 3.10031683e-005, -0.000617628917))
  401. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.338158071, 0.200000018, 0.783910751))
  402. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(1.00823617, -0.51690197, 0.0689506531, -6.97240612e-005, -0.984808922, -0.17365256, 0.000639309932, -0.173660383, 0.9848153, -1.00000417, -4.30031359e-005, 0.000648629037))
  403. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  404. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.200000018, 0.256911933, 0.200000018))
  405. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(0.372354507, -1.30370617, -0.0992050171, -0.000642025669, -0.000104737308, -1.00000644, 0.342020571, 0.939690113, -0.000317717902, 0.939699173, -0.342017293, -0.000566734059))
  406. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.384270221, 1, 0.384269953))
  407. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.14841926, 0.200000018, 0.309611827))
  408. Partweld=weld(m,RA_Handle,Part,CFrame.new(0, 0, 0, -0.000618032704, -3.12393568e-005, -1.00000215, -3.1024596e-005, 0.999998808, -3.12096636e-005, 1.00000203, 3.10041542e-005, -0.00061776262),CFrame.new(0.020983696, -0.708045959, 0.751407623, -0.000681642327, -6.87651554e-005, -0.999999762, 0.984816074, -0.173599765, -0.000659354904, -0.17359969, -0.984816372, 0.000186054007))
  409. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  410.  
  411.  
  412.  
  413. LA_Handle=part(Enum.PartType.Block,m,Enum.Material.SmoothPlastic,1,1,"Medium stone grey","Handle",Vector3.new(1.09791517, 2.19582868, 1.09791434))
  414. LA_Handleweld=weld(m,Character["Left Arm"],LA_Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1),CFrame.new(-0.0463504791, 0.0698471069, 0.0206680298, 0.000618032704, 3.1239364e-005, 1.00000215, 3.09755305e-005, 0.999999046, -3.12498887e-005, -1.00000203, 3.09957759e-005, 0.000617762562))
  415. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.01008201, 0.200000018, 0.75756079))
  416. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(1.52587891e-005, 0.657640219, -0.176750183, 0.000617634971, 3.12417251e-005, 1.00000644, 3.09770803e-005, 0.999996662, -3.12543452e-005, -1.00000632, 3.09990392e-005, 0.000616830308))
  417. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  418. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.346940905, 0.75756079))
  419. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.484208107, 0.853058338, -0.176750183, 0.000617898244, 3.12403608e-005, 0.999999881, 3.09764109e-005, 1, -3.12595039e-005, -0.999999881, 3.09957213e-005, 0.000617897254))
  420. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 1, 1))
  421. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.783910751))
  422. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(1.2443347, -0.888046265, 0.0688400269, -6.96724383e-005, -0.984816909, -0.173573554, -0.000639313192, 0.173572391, -0.984823287, 1.00000417, 4.30031323e-005, -0.000648630958))
  423. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  424. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.23405659, 0.200000018, 0.200000018))
  425. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.0208997726, -0.708236694, 0.591923714, 0.00069216761, 2.38435433e-007, 1.00000441, -0.984815121, -0.173660621, 0.000681819161, 0.173652738, -0.984808862, -0.000112408889))
  426. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 0.219582841))
  427. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.300828516))
  428. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.575367928, -0.958110809, -0.897212982, 0.000638432452, 4.22369703e-005, 1.00000119, 0.866066396, 0.499930501, -0.00057391735, -0.499931157, 0.866065145, 0.000282532361))
  429. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  430. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.558840752, 0.335304081, 0.235849097))
  431. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.0306873322, -1.40386581, 0.0524559021, -0.00061816728, -3.12383709e-005, -1.00000429, -3.10256255e-005, 0.999997854, -3.12106931e-005, 1.00000417, 3.10031683e-005, -0.000617630896))
  432. mesh("SpecialMesh",Col_Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.383722216, 0.383721918, 0.383721918))
  433. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.346940905, 0.75756079))
  434. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.48416996, 0.853081226, -0.176742554, 0.00061816728, 3.12383709e-005, 1.00000429, 3.09746356e-005, 0.999997854, -3.1250911e-005, -1.00000417, 3.09967036e-005, 0.00061763078))
  435. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 1, 1))
  436. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.786106527))
  437. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(1.25034285, -0.85368824, -0.0689659119, 6.97398864e-005, -0.984805167, 0.173661351, 0.000639301026, 0.173661083, 0.984806716, -1.00000107, 4.23415404e-005, 0.000641562394))
  438. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  439. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.200000018))
  440. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.14158392, -1.56569672, -0.313392639, -0.116400488, 0.321436524, 0.93975389, -0.321607441, 0.88300401, -0.341864258, -0.939695954, -0.342021286, 0.000593592646))
  441. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.867352843, 0.219582841, 0.219582841))
  442. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.384269983))
  443. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.20621109, -1.5536108, -0.149539948, 0.117602855, -0.321377814, 0.939620078, -0.321213692, 0.883010805, 0.342218846, -0.939676166, -0.342064798, 0.000613634067))
  444. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  445. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.200000018))
  446. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.112138748, -1.55073166, -0.321773529, 0.117572695, -0.321357071, 0.939636827, -0.32120809, 0.883022487, 0.342191696, -0.939688325, -0.342047632, 0.000596115482))
  447. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.867352843, 0.219582841, 0.219582841))
  448. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.309611827))
  449. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.617016792, -0.708049774, 0.75144577, 0.000596620841, -5.89209822e-006, 1.00000215, -0.98481667, -0.173609093, 0.000586271402, 0.173609614, -0.984813631, -0.000109343411))
  450. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  451. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.531390488))
  452. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.617007256, -0.971694946, 0.855010033, 0.000606284768, 7.70781389e-006, 1.00000215, -0.98480922, 0.173651159, 0.000595471589, -0.173651665, -0.98480624, 0.000112817557))
  453. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  454. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.558840752, 0.335304081, 0.235849097))
  455. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.0131473541, -0.165450096, 0.430175781, -0.00061816728, -3.12383709e-005, -1.00000429, -3.10256255e-005, 0.999997854, -3.12106931e-005, 1.00000417, 3.10031683e-005, -0.000617630896))
  456. mesh("SpecialMesh",Col_Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.383722216, 0.383721918, 0.383721918))
  457. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.346940905, 0.75756079))
  458. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.484121323, 0.176765442, 0.723545551, 0.000472364656, 3.12534903e-005, 1.00000226, 1.00000215, -7.39935713e-005, -0.000472093205, 7.3978008e-005, 0.999999046, -3.12798002e-005))
  459. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 1, 1))
  460. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.01008189, 0.200000018, 0.75756079))
  461. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-6.00814819e-005, 0.372203827, 0.72354126, 0.000472633983, 3.12524571e-005, 1.00000656, 1.00000644, -7.39943498e-005, -0.000471827952, 7.39773532e-005, 0.999996662, -3.12808697e-005))
  462. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  463. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.379878342))
  464. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.246608734, -1.5705719, -0.146656036, -0.11638356, 0.321485013, 0.939743221, -0.321603894, 0.882988036, -0.34190625, -0.939703822, -0.342009842, 0.000624356384))
  465. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  466. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.01008189, 0.200000018, 0.75756079))
  467. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(1.43051147e-005, 1.04850078, -0.176746368, 0.000617365062, 3.12427583e-005, 1.00000215, 3.0977917e-005, 0.999999046, -3.12532648e-005, -1.00000203, 3.09981406e-005, 0.000617094978))
  468. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  469. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.10450268, 0.200000018, 1.10889339))
  470. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.00111293793, 0.131752968, 0.00108718872, 0.000618437072, 3.1237334e-005, 1.00000858, 3.09737952e-005, 0.99999547, -3.12519951e-005, -1.00000846, 3.09975985e-005, 0.000617366168))
  471. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.285457671, 1))
  472. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.531390488))
  473. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.575341225, -0.971698761, 0.855003357, 0.000606282498, 7.70821043e-006, 1.00000215, -0.98480922, 0.173651159, 0.000595469319, -0.173651665, -0.98480624, 0.000112817557))
  474. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  475. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.01008201, 0.200000018, 0.75756079))
  476. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-6.00814819e-005, -0.0186576843, 0.723536491, 0.000472898071, 3.12510856e-005, 0.999999881, 0.999999881, -7.39943789e-005, -0.000472895772, 7.39795942e-005, 1, -3.1286072e-005))
  477. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  478. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.309611827))
  479. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.573147774, -0.708015442, 0.751444817, 0.000606298447, 6.8943732e-006, 1.00000215, -0.984815478, -0.173615947, 0.000598021317, 0.173616499, -0.984812438, -9.84353683e-005))
  480. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  481. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.200000018, 0.300828516))
  482. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.614795685, -0.958114624, -0.897209167, 0.000638432452, 4.22369703e-005, 1.00000119, 0.866066396, 0.499930501, -0.00057391735, -0.499931157, 0.866065145, 0.000282532361))
  483. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 0.219582841, 1))
  484. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.10450268, 0.200000018, 1.10889339))
  485. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.00111293793, -0.452331543, 0.00108718872, 0.000617365062, 3.12427583e-005, 1.00000215, 3.0977917e-005, 0.999999046, -3.12532648e-005, -1.00000203, 3.09981406e-005, 0.000617094978))
  486. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.285457671, 1))
  487. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.346940905, 0.75756079))
  488. Col_Partweld=weld(m,LA_Handle,Col_Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.484258652, 0.176765442, 0.72354722, 0.000473435794, 3.12457851e-005, 1.0000087, 1.00000858, -7.39928655e-005, -0.000472363521, 7.3974159e-005, 0.99999547, -3.12785414e-005))
  489. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 1, 1))
  490. Part=part(Enum.PartType.Block,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.10230672, 0.300828516, 1.10669744))
  491. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(1.43051147e-005, 0.457829714, 1.90734863e-005, 0.00061816728, 3.12383709e-005, 1.00000429, 3.09746356e-005, 0.999997854, -3.1250911e-005, -1.00000417, 3.09967036e-005, 0.00061763078))
  492. Part=part(Enum.PartType.Block,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.10230672, 0.49406141, 0.755364954))
  493. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(1.43051147e-005, 0.853066683, -0.17565918, 0.000618437072, 3.1237334e-005, 1.00000858, 3.09737952e-005, 0.99999547, -3.12519951e-005, -1.00000846, 3.09975985e-005, 0.000617366168))
  494. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.200000018, 0.256911933, 0.200000018))
  495. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.341490746, -1.30373764, -0.0992164612, 0.000595007325, 3.60506488e-006, 1.00000215, -0.341970056, 0.939710259, 0.000200002658, -0.939713001, -0.341969013, 0.000560111832))
  496. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.384270221, 1, 0.384269953))
  497. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.14841926, 0.200000018, 0.309611827))
  498. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.0208711624, -0.70803833, 0.751455307, 0.000617912039, -5.82747234e-005, 1.00000215, -0.98482281, -0.173574567, 0.000598151062, 0.173575088, -0.98481977, -0.000164606128))
  499. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  500. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.14841926, 0.200000018, 0.300828516))
  501. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.0208120346, -0.958106995, -0.897212982, 0.000638167257, 4.22383382e-005, 1.00000429, 0.866066635, 0.499933958, -0.000572870718, -0.499937117, 0.866061151, 0.000282073335))
  502. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  503. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.10450268, 0.623615265, 1.10889339))
  504. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.0011138916, -0.788295507, 0.00109100342, 0.00061816728, 3.12383709e-005, 1.00000429, 3.09746356e-005, 0.999997854, -3.1250911e-005, -1.00000417, 3.09967036e-005, 0.00061763078))
  505. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.200000018, 0.256911933, 0.200000018))
  506. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.372163773, -1.30374146, -0.0992240906, 0.000595007325, 3.60506488e-006, 1.00000215, -0.341970056, 0.939710259, 0.000200002658, -0.939713001, -0.341969013, 0.000560111832))
  507. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.384270221, 1, 0.384269953))
  508. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.338158071, 0.200000018, 0.783910751))
  509. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(1.08640242, -0.88615036, 0.0688476563, -6.96724383e-005, -0.984816909, -0.173573554, -0.000639313192, 0.173572391, -0.984823287, 1.00000417, 4.30031323e-005, -0.000648630958))
  510. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  511. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.200000018, 0.346940905, 0.200000018))
  512. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.372174263, -0.794776917, 0.742950916, 0.000606165326, 2.3843225e-007, 1.00000119, -0.984808445, 0.173650444, 0.000596782484, -0.173650667, -0.984806955, 0.000105462539))
  513. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.384270221, 1, 0.384269953))
  514. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.14841926, 0.200000018, 0.531390488))
  515. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.0208330154, -0.971687317, 0.855015755, 0.000606165326, 2.3843225e-007, 1.00000119, -0.984808445, 0.173650444, 0.000596782484, -0.173650667, -0.984806955, 0.000105462539))
  516. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  517. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.924444735, 0.346940905, 0.75756079))
  518. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(1.43051147e-005, 0.853073597, -0.176753998, 0.000618437072, 3.1237334e-005, 1.00000858, 3.09737952e-005, 0.99999547, -3.12519951e-005, -1.00000846, 3.09975985e-005, 0.000617366168))
  519. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.338158071, 0.200000018, 0.783910751))
  520. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(1.00216079, -0.482429504, -0.0688781738, -6.97237265e-005, -0.984808922, -0.17365256, 0.000639308011, -0.173660383, 0.9848153, -1.00000417, -4.30031323e-005, 0.000648630958))
  521. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  522. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.14841926, 0.200000018, 0.346940905))
  523. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.020825386, -1.45241737, -0.127788544, 0.000595005986, 3.6045808e-006, 1.00000215, -0.341970056, 0.939710259, 0.000200002658, -0.939713001, -0.341969013, 0.000560110435))
  524. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  525. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.924444735, 0.346940905, 0.75756079))
  526. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-6.00814819e-005, 0.176773071, 0.723530293, 0.000471562904, 3.12569828e-005, 1.00000226, 1.00000215, -7.39958414e-005, -0.000471291452, 7.39803072e-005, 0.999999046, -3.12832417e-005))
  527. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.10450268, 0.524803042, 1.10889339))
  528. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.00111293793, -0.159192324, 0.00108718872, 0.000618437072, 3.1237334e-005, 1.00000858, 3.09737952e-005, 0.99999547, -3.12519951e-005, -1.00000846, 3.09975985e-005, 0.000617366168))
  529. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.200000018, 0.200000018, 0.346940905))
  530. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.14193821, -1.56479836, -0.127185822, -0.116400912, 0.321436197, 0.939751923, -0.321606457, 0.883005202, -0.341863751, -0.939693868, -0.342021644, 0.000593090313))
  531. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.867352843, 0.219582841, 1))
  532. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.338158071, 0.200000018, 0.783910751))
  533. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(1.00825214, -0.516908646, 0.0688743591, 0.000155739821, -0.984805644, 0.173660219, -0.000639303413, -0.173660293, -0.984805405, 0.999999762, 4.23518359e-005, -0.000656635442))
  534. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  535. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.338158071, 0.200000018, 0.783910751))
  536. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(1.09241009, -0.851778984, -0.0689620972, 6.97398864e-005, -0.984805167, 0.173661351, 0.000639301026, 0.173661083, 0.984806716, -1.00000107, 4.23415404e-005, 0.000641562394))
  537. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  538. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.200000018, 0.200000018, 0.346940905))
  539. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.0980129242, -1.55095291, -0.126422882, 0.117552571, -0.321395636, 0.939622462, -0.321175635, 0.883024156, 0.342219293, -0.939697921, -0.342010707, 0.000577090774))
  540. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.867352843, 0.219582841, 1))
  541. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.200000018, 0.346940905, 0.200000018))
  542. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(-0.339277267, -0.794746399, 0.742950916, 0.000606165326, 2.3843225e-007, 1.00000119, -0.984808445, 0.173650444, 0.000596782484, -0.173650667, -0.984806955, 0.000105462539))
  543. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.384270221, 1, 0.384269953))
  544. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.31310642, 0.200000018, 0.783910751))
  545. Partweld=weld(m,LA_Handle,Part,CFrame.new(0, 0, 0, 0.000618032704, 3.12393568e-005, 1.00000215, 3.09755305e-005, 0.999998808, -3.12498887e-005, -1.00000203, 3.09957686e-005, 0.000617762562),CFrame.new(0.020813942, -1.37605429, -0.0689468384, 0.00061816728, 3.12383709e-005, 1.00000429, 3.09746356e-005, 0.999997854, -3.1250911e-005, -1.00000417, 3.09967036e-005, 0.00061763078))
  546. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  547.  
  548.  
  549.  
  550. RL_Handle=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Handle",Vector3.new(1.10450268, 1.02367795, 1.10230589))
  551. RL_Handleweld=weld(m,Character["Right Leg"],RL_Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1),CFrame.new(0.0266160965, -0.5316782, 0.0166893005, -0.00061803608, -3.12379671e-005, -1.00000119, -3.10223477e-005, 0.999999642, -3.12091761e-005, 1.00000107, 3.10029282e-005, -0.000617901096))
  552. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.02764845, 0.200000018, 0.357920051))
  553. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-0.0396022797, 0.870681286, 4.57763672e-005, -0.000618842605, -3.12677766e-005, -1.00000119, -3.10254145e-005, 0.999999642, -3.12389529e-005, 1.00000107, 3.10059513e-005, -0.000618707563))
  554. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  555. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.02764845, 0.200000018, 0.357920051))
  556. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-0.0396032333, 0.607180417, 4.19616699e-005, -0.000619112689, -3.12772499e-005, -1.00000119, -3.10256837e-005, 0.999999642, -3.12484226e-005, 1.00000107, 3.1006206e-005, -0.000618977589))
  557. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  558. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.02764845, 0.468133092, 0.200000018))
  559. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-0.0395898819, 0.741113663, 4.95910645e-005, -0.000618842605, -3.12677766e-005, -1.00000119, -3.10254145e-005, 0.999999642, -3.12389529e-005, 1.00000107, 3.10059513e-005, -0.000618707563))
  560. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.548957109))
  561. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11548173, 0.200000018, 1.11328506))
  562. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-0.00333404541, 2.46763229e-005, 2.28881836e-005, -0.000618842605, -3.12677766e-005, -1.00000119, -3.10254145e-005, 0.999999642, -3.12389529e-005, 1.00000107, 3.10059513e-005, -0.000618707563))
  563. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.605961919, 1))
  564. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11987329, 0.200000018, 1.11328506))
  565. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(0.00101852417, 1.14183855, 5.7220459e-005, -0.000618031248, -3.12383709e-005, -1.00000119, -3.10236464e-005, 0.999999642, -3.12095763e-005, 1.00000107, 3.10042269e-005, -0.000617896265))
  566. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.928017497, 1))
  567. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.21648967, 0.386887372, 1.10669744))
  568. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-0.0538873672, 1.50196373, 6.86645508e-005, -0.000618842605, -3.12677766e-005, -1.00000119, -3.10254145e-005, 0.999999642, -3.12389529e-005, 1.00000107, 3.10059513e-005, -0.000618707563))
  569. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Medium stone grey","Part",Vector3.new(1.10889423, 0.342970848, 1.10889339))
  570. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-7.72476196e-005, 1.14184833, 5.7220459e-005, -0.000618842605, -3.12677766e-005, -1.00000119, -3.10254145e-005, 0.999999642, -3.12389529e-005, 1.00000107, 3.10059513e-005, -0.000618707563))
  571. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.02764845, 0.200000018, 0.357920051))
  572. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-0.0396032333, 0.519345403, 3.81469727e-005, -0.000618031248, -3.12383709e-005, -1.00000119, -3.10236464e-005, 0.999999642, -3.12095763e-005, 1.00000107, 3.10042269e-005, -0.000617896265))
  573. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  574. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.10669839, 0.468133092, 0.377682477))
  575. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-7.91549683e-005, 0.741119027, 0.364559174, -0.00061830139, -3.12478514e-005, -1.00000119, -3.1023912e-005, 0.999999642, -3.12190532e-005, 1.00000107, 3.10044779e-005, -0.000618166348))
  576. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(0.200000018, 0.468133092, 0.366703361))
  577. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(0.531333923, 0.741131485, 2.67028809e-005, -0.000618842605, -3.12677766e-005, -1.00000119, -3.10254145e-005, 0.999999642, -3.12389529e-005, 1.00000107, 3.10059513e-005, -0.000618707563))
  578. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 1, 1))
  579. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.02764845, 0.200000018, 0.357920051))
  580. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-0.0396022797, 0.695008576, 3.81469727e-005, -0.00061830139, -3.12478514e-005, -1.00000119, -3.1023912e-005, 0.999999642, -3.12190532e-005, 1.00000107, 3.10044779e-005, -0.000618166348))
  581. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  582. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.02764845, 0.200000018, 0.357920051))
  583. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-0.039604187, 0.782836676, 3.81469727e-005, -0.000618571474, -3.12573284e-005, -1.00000119, -3.10241812e-005, 0.999999642, -3.12285229e-005, 1.00000107, 3.10047326e-005, -0.00061843649))
  584. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  585. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.10669839, 0.468133092, 0.377682477))
  586. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-7.72476196e-005, 0.741109252, -0.36447525, -0.000617220881, -3.12099291e-005, -1.00000119, -3.10228461e-005, 0.999999642, -3.118116e-005, 1.00000107, 3.10034702e-005, -0.000617085898))
  587. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.10669839, 0.342970848, 1.10669744))
  588. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-7.72476196e-005, 1.14184833, 5.7220459e-005, -0.000618842605, -3.12677766e-005, -1.00000119, -3.10254145e-005, 0.999999642, -3.12389529e-005, 1.00000107, 3.10059513e-005, -0.000618707563))
  589. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.849786222, 0.560358047, 0.663140237))
  590. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-0.160340309, 1.87158585e-005, 2.67028809e-005, -0.000618842605, -3.12677766e-005, -1.00000119, -3.10254145e-005, 0.999999642, -3.12389529e-005, 1.00000107, 3.10059513e-005, -0.000618707563))
  591. Part=part(Enum.PartType.Block,m,Enum.Material.SmoothPlastic,0,0,"Medium stone grey","Part",Vector3.new(1.09791517, 2.19582868, 1.09791434))
  592. Partweld=weld(m,RL_Handle,Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-0.00109672546, 0.587379396, -7.62939453e-006, -0.000617770769, -3.12287302e-005, -1.00000894, -3.10219657e-005, 0.999996543, -3.11712902e-005, 1.00000846, 3.10020478e-005, -0.000616690901))
  593. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.10450268, 1.18177736, 1.10230589))
  594. Col_Partweld=weld(m,RL_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(0, 1.10229635, -3.81469727e-006, -0.000618306221, -3.12474476e-005, -1.00000119, -3.10226133e-005, 0.999999642, -3.12186494e-005, 1.00000107, 3.10031792e-005, -0.00061817118))
  595. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.821240425, 0.733828545, 0.876135528))
  596. Col_Partweld=weld(m,RL_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-0.146066666, 2.03847885e-005, 2.67028809e-005, -0.000618842605, -3.12677766e-005, -1.00000119, -3.10254145e-005, 0.999999642, -3.12389529e-005, 1.00000107, 3.10059513e-005, -0.000618707563))
  597. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.11548173, 0.200000018, 1.11328506))
  598. Col_Partweld=weld(m,RL_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-0.00117778778, 1.25545442, 5.7220459e-005, -0.000618842605, -3.12677766e-005, -1.00000119, -3.10254145e-005, 0.999999642, -3.12389529e-005, 1.00000107, 3.10059513e-005, -0.000618707563))
  599. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  600. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.11767745, 0.200000018, 1.11328506))
  601. Col_Partweld=weld(m,RL_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00061803608, -3.12379598e-005, -1.00000119, -3.10223477e-005, 0.999999404, -3.12091761e-005, 1.00000107, 3.10029209e-005, -0.000617901096),CFrame.new(-7.82012939e-005, 1.02927923, 6.10351563e-005, -0.000619112689, -3.12772499e-005, -1.00000119, -3.10256837e-005, 0.999999642, -3.12484226e-005, 1.00000107, 3.1006206e-005, -0.000618977589))
  602. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  603.  
  604.  
  605.  
  606. LL_Handle=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Handle",Vector3.new(1.10450268, 1.02367795, 1.10230589))
  607. LL_Handleweld=weld(m,Character["Left Leg"],LL_Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1),CFrame.new(0.0269613266, -0.531655192, 0.0465583801, -0.000618305639, -3.12412085e-005, -1.00000644, -3.10266551e-005, 0.999996662, -3.12078773e-005, 1.00000632, 3.10021678e-005, -0.000617495098))
  608. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.11767745, 0.200000018, 1.11328506))
  609. Col_Partweld=weld(m,LL_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-3.81469727e-006, 1.02925551, 3.81469727e-006, -0.00061844202, -3.12421362e-005, -1.00000858, -3.10276846e-005, 0.99999547, -3.12069933e-005, 1.00000846, 3.1001171e-005, -0.000617361336))
  610. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  611. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.10450268, 1.18177736, 1.10230589))
  612. Col_Partweld=weld(m,LL_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-1.90734863e-006, 1.10229516, 3.81469727e-006, -0.000618570775, -3.12417651e-005, -0.999999881, -3.10279429e-005, 1, -3.12225748e-005, 0.999999881, 3.10086252e-005, -0.000618571765))
  613. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.11548173, 0.200000018, 1.11328506))
  614. Col_Partweld=weld(m,LL_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-0.00110149384, 1.25540769, 3.81469727e-006, -0.000617632235, -3.12388365e-005, -1.00000644, -3.10232426e-005, 0.999996662, -3.12055345e-005, 1.00000632, 3.09987772e-005, -0.000616821635))
  615. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  616. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.821240425, 0.733828545, 0.876135528))
  617. Col_Partweld=weld(m,LL_Handle,Col_Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-0.145993233, -7.9870224e-006, -2.67028809e-005, -0.00061844202, -3.12421362e-005, -1.00000858, -3.10276846e-005, 0.99999547, -3.12069933e-005, 1.00000846, 3.1001171e-005, -0.000617361336))
  618. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.02764845, 0.468133092, 0.200000018))
  619. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-0.0395154953, 0.741083801, -3.81469727e-006, -0.00061844202, -3.12421362e-005, -1.00000858, -3.10276846e-005, 0.99999547, -3.12069933e-005, 1.00000846, 3.1001171e-005, -0.000617361336))
  620. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.548957109))
  621. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.02764845, 0.200000018, 0.357920051))
  622. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-0.0395288467, 0.78281939, -7.62939453e-006, -0.00061844202, -3.12421362e-005, -1.00000858, -3.10276846e-005, 0.99999547, -3.12069933e-005, 1.00000846, 3.1001171e-005, -0.000617361336))
  623. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  624. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(0.200000018, 0.468133092, 0.366703361))
  625. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(0.531407356, 0.741101623, -2.67028809e-005, -0.00061844202, -3.12421362e-005, -1.00000858, -3.10276846e-005, 0.99999547, -3.12069933e-005, 1.00000846, 3.1001171e-005, -0.000617361336))
  626. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.21958299, 1, 1))
  627. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.10669839, 0.468133092, 0.377682477))
  628. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-2.86102295e-006, 0.741070867, -0.364528656, -0.000616824662, -3.12365664e-005, -1.00000644, -3.10197174e-005, 0.999996662, -3.12032826e-005, 1.00000632, 3.09952848e-005, -0.00061601412))
  629. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.10669839, 0.468133092, 0.377682477))
  630. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(2.19345093e-005, 0.741073012, 0.364505768, -0.00061844202, -3.12421362e-005, -1.00000858, -3.10276846e-005, 0.99999547, -3.12069933e-005, 1.00000846, 3.1001171e-005, -0.000617361336))
  631. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11987329, 0.200000018, 1.11328506))
  632. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(0.00109386444, 1.14181376, 3.81469727e-006, -0.000618706632, -3.124266e-005, -1.00000119, -3.10289906e-005, 0.999999642, -3.12138436e-005, 1.00000107, 3.10095456e-005, -0.00061857159))
  633. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.928017497, 1))
  634. Part=part(Enum.PartType.Block,m,Enum.Material.SmoothPlastic,0,0,"Medium stone grey","Part",Vector3.new(1.09791517, 2.19582868, 1.09791434))
  635. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-0.0010843277, 0.58738035, -1.52587891e-005, -0.000618169201, -3.12402917e-005, -1.00000429, -3.10256255e-005, 0.999997854, -3.12087723e-005, 1.00000417, 3.10031683e-005, -0.000617628917))
  636. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.10669839, 0.342970848, 1.10669744))
  637. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-2.86102295e-006, 1.14181745, 3.81469727e-006, -0.00061844202, -3.12421362e-005, -1.00000858, -3.10276846e-005, 0.99999547, -3.12069933e-005, 1.00000846, 3.1001171e-005, -0.000617361336))
  638. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.02764845, 0.200000018, 0.357920051))
  639. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-0.0395298004, 0.694969594, -1.14440918e-005, -0.000618167338, -3.12401935e-005, -1.00000119, -3.10256764e-005, 0.999999642, -3.12113916e-005, 1.00000107, 3.1006246e-005, -0.000618032296))
  640. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  641. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.849786222, 0.560358047, 0.663140237))
  642. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-0.160266876, -8.22544098e-006, -2.67028809e-005, -0.00061844202, -3.12421362e-005, -1.00000858, -3.10276846e-005, 0.99999547, -3.12069933e-005, 1.00000846, 3.1001171e-005, -0.000617361336))
  643. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11548173, 0.200000018, 1.11328506))
  644. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-0.00326156616, -2.62260437e-006, -2.67028809e-005, -0.00061844202, -3.12421362e-005, -1.00000858, -3.10276846e-005, 0.99999547, -3.12069933e-005, 1.00000846, 3.1001171e-005, -0.000617361336))
  645. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.605961919, 1))
  646. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.02764845, 0.200000018, 0.357920051))
  647. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-0.0395278931, 0.519318342, -1.14440918e-005, -0.000618706632, -3.124266e-005, -1.00000119, -3.10289906e-005, 0.999999642, -3.12138436e-005, 1.00000107, 3.10095456e-005, -0.00061857159))
  648. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  649. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Medium stone grey","Part",Vector3.new(1.10889423, 0.342970848, 1.10889339))
  650. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-2.86102295e-006, 1.14181745, 3.81469727e-006, -0.00061844202, -3.12421362e-005, -1.00000858, -3.10276846e-005, 0.99999547, -3.12069933e-005, 1.00000846, 3.1001171e-005, -0.000617361336))
  651. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.21648967, 0.386887372, 1.10669744))
  652. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-0.0538139343, 1.50193095, 1.90734863e-005, -0.00061844202, -3.12421362e-005, -1.00000858, -3.10276846e-005, 0.99999547, -3.12069933e-005, 1.00000846, 3.1001171e-005, -0.000617361336))
  653. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.02764845, 0.200000018, 0.357920051))
  654. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-0.0395288467, 0.607142985, -1.52587891e-005, -0.000617897313, -3.12394004e-005, -0.999999881, -3.10245232e-005, 1, -3.12202355e-005, 0.999999881, 3.10052274e-005, -0.000617898302))
  655. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  656. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Black","Part",Vector3.new(1.02764845, 0.200000018, 0.357920051))
  657. Partweld=weld(m,LL_Handle,Part,CFrame.new(0, 0, 0, -0.000618305639, -3.12412012e-005, -1.00000644, -3.10266551e-005, 0.999996424, -3.12078773e-005, 1.00000632, 3.10021605e-005, -0.000617495098),CFrame.new(-0.0395288467, 0.870642662, -7.62939453e-006, -0.000617632235, -3.12388365e-005, -1.00000644, -3.10232426e-005, 0.999996662, -3.12055345e-005, 1.00000632, 3.09987772e-005, -0.000616821635))
  658. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  659.  
  660.  
  661.  
  662. TO_Handle=part(Enum.PartType.Block,m,Enum.Material.Plastic,1,1,"Medium stone grey","Handle",Vector3.new(0.878332019, 2.19582868, 2.17386985))
  663. TO_Handleweld=weld(m,Character["Torso"],TO_Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0147485733, -0.0885226727, -0.00841903687, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165))
  664. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.472103685, 0.537977993, 0.200000018))
  665. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(0.33302021, 0.0608863831, 0.555683136, 0.000607170223, 1.12490497e-005, 1.00000453, -0.866019666, 0.500016272, 0.000519612688, -0.500019133, -0.866014659, 0.00031351592))
  666. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.219582841))
  667. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.11328614, 0.937618792, 0.200000018))
  668. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.0123758316, -0.940483093, 0.306049347, -0.000611170195, -2.12490322e-005, -1.00000453, -0.528116226, 0.849169672, 0.000304362271, 0.8491745, 0.528113246, -0.000529912242))
  669. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.219582841))
  670. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.11328602, 0.937618792, 0.200000018))
  671. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(0.0124120712, -0.943929672, 0.311561584, 0.000628171023, 3.8249007e-005, 1.00000453, 0.52812922, 0.849164665, -0.000363744621, -0.849169552, 0.528126299, 0.000512676255))
  672. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.219582841))
  673. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.11548173, 0.200000018, 0.200000018))
  674. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.0112571716, -1.0508213, 1.0012207, -0.000618170598, -3.12490192e-005, -1.00000465, -3.10247415e-005, 0.99999845, -3.12000666e-005, 1.00000429, 3.10040778e-005, -0.00061762851))
  675. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.241541132, 0.219582841))
  676. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.472103685, 0.777323246, 0.200000018))
  677. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.333034515, 0.26807785, -0.812781334, -0.000606170448, -2.49066147e-007, -1.00000453, -0.984823167, 0.173572734, 0.000595742895, 0.173573747, 0.984817445, -0.000112800939))
  678. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.219582841))
  679. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.11548173, 2.05529499, 0.200000018))
  680. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.0113182068, -0.0494923592, 0.0328865051, -0.000618170598, -3.12490192e-005, -1.00000465, -3.10247415e-005, 0.99999845, -3.12000666e-005, 1.00000429, 3.10040778e-005, -0.00061762851))
  681. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.219582841))
  682. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.11328614, 0.27667436, 0.200000018))
  683. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(0.0124435425, -0.113171101, 0.51587677, 0.000618445803, 3.1258638e-005, 1.00000918, -3.10249452e-005, 0.999996781, -3.11905351e-005, -1.00000858, -3.10039577e-005, 0.000617358426))
  684. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.219582841))
  685. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.558840752, 0.335304081, 0.235849097))
  686. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.479012489, -0.669905186, -0.00825881958, -0.000618170598, -3.12490192e-005, -1.00000465, -3.10247415e-005, 0.99999845, -3.12000666e-005, 1.00000429, 3.10040778e-005, -0.00061762851))
  687. mesh("SpecialMesh",Col_Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.383722216, 0.383721918, 0.383721918))
  688. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.11767745, 0.27667436, 0.200000018))
  689. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.0102481842, -0.113171577, 0.509418488, -0.000618445803, -3.1258638e-005, -1.00000918, -3.10249452e-005, 0.999996781, -3.11905351e-005, 1.00000858, 3.10039577e-005, -0.000617358426))
  690. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.219582841))
  691. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.11548173, 2.0596869, 0.200000018))
  692. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.0113191605, -0.0451014042, -0.0395774841, -0.000618170598, -3.12490192e-005, -1.00000465, -3.10247415e-005, 0.99999845, -3.12000666e-005, 1.00000429, 3.10040778e-005, -0.00061762851))
  693. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.219582841))
  694. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.472103685, 0.537977993, 0.200000018))
  695. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.332990646, 0.0683021545, 0.559970856, -0.000638170633, -4.22490011e-005, -1.00000453, 0.866016686, 0.500014246, -0.000572830962, 0.500017107, -0.866011679, -0.000282132736))
  696. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.219582841))
  697. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.472103685, 0.777323246, 0.200000018))
  698. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(0.332982063, 0.263839722, -0.812044144, 0.000649170601, 4.32490015e-005, 1.00000453, 0.984826148, 0.173566729, -0.000638821919, -0.173567772, 0.984820426, 6.9363552e-005))
  699. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.219582841))
  700. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.11767745, 0.869548142, 0.200000018))
  701. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.0102214813, 0.300645828, 0.491214752, -0.000614170509, -2.62490266e-005, -1.00000453, -0.28842625, 0.957501531, 0.000151869768, 0.957506955, 0.288424581, -0.000595126068))
  702. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.219582841))
  703. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.11767781, 0.865156412, 0.200000018))
  704. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(0.0102472305, 0.296572685, 0.497451782, 0.000623170345, 3.52490206e-005, 1.00000453, 0.288434207, 0.957498491, -0.000213296735, -0.957503974, 0.288432568, 0.000585998001))
  705. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.219582841))
  706. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.11328614, 0.200000018, 0.200000018))
  707. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.0124168396, -1.05075932, -1.0101738, -0.000618170598, -3.12490192e-005, -1.00000465, -3.10247415e-005, 0.99999845, -3.12000666e-005, 1.00000429, 3.10040778e-005, -0.00061762851))
  708. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.241541132, 0.219582841))
  709. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.12206924, 0.200000018, 2.20022035))
  710. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.00695514679, 0.835012436, -0.00164794922, -0.000618170598, -3.12490192e-005, -1.00000465, -3.10247415e-005, 0.99999845, -3.12000666e-005, 1.00000429, 3.10040778e-005, -0.00061762851))
  711. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  712. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.380612671, 0.228367507, 0.200000018))
  713. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.479063034, 0.984305859, -0.00162124634, -0.000618170598, -3.12490192e-005, -1.00000465, -3.10247415e-005, 0.99999845, -3.12000666e-005, 1.00000429, 3.10040778e-005, -0.00061762851))
  714. mesh("SpecialMesh",Col_Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.261343986, 0.261343539, 0.273348123))
  715. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.200000018, 0.529194653, 0.386465818))
  716. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.578925133, -0.663657427, -0.0104560852, -0.000618170598, -3.12490192e-005, -1.00000465, -3.10247415e-005, 0.99999845, -3.12000666e-005, 1.00000429, 3.10040778e-005, -0.00061762851))
  717. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.428186804, 1, 1))
  718. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.69607842, 0.200000018, 0.373291045))
  719. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.219944, 0.991992354, 0.488033295, -0.000618170598, -3.12490192e-005, -1.00000465, -3.10247415e-005, 0.99999845, -3.12000666e-005, 1.00000429, 3.10040778e-005, -0.00061762851))
  720. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.461123914, 1))
  721. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(0.69607842, 0.200000018, 0.373291045))
  722. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.219973564, 0.992023587, -0.497901917, -0.000618170598, -3.12490192e-005, -1.00000465, -3.10247415e-005, 0.99999845, -3.12000666e-005, 1.00000429, 3.10040778e-005, -0.00061762851))
  723. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.461123914, 1))
  724. Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(1.10889423, 0.200000018, 2.20241618))
  725. Partweld=weld(m,TO_Handle,Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.00915050507, 1.10399401, -0.00164031982, -0.000617362617, -3.12191332e-005, -1.00000238, -3.10217001e-005, 0.999999285, -3.11807453e-005, 1.00000215, 3.10021896e-005, -0.000617091602))
  726. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  727. Part=part(Enum.PartType.Block,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.11109006, 0.200000018, 2.20241618))
  728. Partweld=weld(m,TO_Handle,Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.00805282593, 0.99200809, -0.00164031982, -0.000618443475, -3.1258638e-005, -1.00000918, -3.10249452e-005, 0.999996781, -3.11905351e-005, 1.00000858, 3.10039577e-005, -0.000617360754))
  729. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.922247767, 1))
  730. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.693882525, 0.200000018, 0.373291045))
  731. Partweld=weld(m,TO_Handle,Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.218919754, 0.991982341, -0.497940063, -0.000587441958, -6.22598673e-005, -1.00000906, 2.3956356e-005, 0.999996781, -6.22235239e-005, 1.00000858, -2.39948931e-005, -0.000586356095))
  732. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.713644266, 1))
  733. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.10230672, 1.10450184, 1.10011017))
  734. Partweld=weld(m,TO_Handle,Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.00910949707, -0.518713236, -0.002784729, -0.000618170598, -3.12490192e-005, -1.00000465, -3.10247415e-005, 0.99999845, -3.12000666e-005, 1.00000429, 3.10040778e-005, -0.00061762851))
  735. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.200000018, 0.373290837, 0.371095031))
  736. Partweld=weld(m,TO_Handle,Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.569040298, -0.666952372, -0.00936126709, -0.000618170598, -3.12490192e-005, -1.00000465, -3.10247415e-005, 0.99999845, -3.12000666e-005, 1.00000429, 3.10040778e-005, -0.00061762851))
  737. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.59287405, 1, 1))
  738. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.10011101, 0.278870225, 2.20022035))
  739. Partweld=weld(m,TO_Handle,Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.00915050507, 0.994202495, -0.00164031982, -0.000618443475, -3.1258638e-005, -1.00000918, -3.10249452e-005, 0.999996781, -3.11905351e-005, 1.00000858, 3.10039577e-005, -0.000617360754))
  740. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(1.10230672, 0.83002317, 0.660944343))
  741. Partweld=weld(m,TO_Handle,Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.00915145874, 0.44195652, -0.00273895264, -0.000617360289, -3.12191332e-005, -1.00000238, -3.10217001e-005, 0.999999285, -3.11807453e-005, 1.00000215, 3.10021896e-005, -0.000617089274))
  742. Part=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.693882525, 0.200000018, 0.373291045))
  743. Partweld=weld(m,TO_Handle,Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.218883514, 0.991994381, 0.488079071, -0.000629361719, -6.22214138e-005, -1.00000226, -5.30399338e-005, 0.999999285, -6.2168896e-005, 1.00000203, 5.30004836e-005, -0.000629092683))
  744. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.713644266, 1))
  745. Col_Part=part(Enum.PartType.Block,m,Enum.Material.Neon,0,0,"Toothpaste","Col_Part",Vector3.new(1.10889423, 0.200000018, 2.20241618))
  746. Col_Partweld=weld(m,TO_Handle,Col_Part,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.00915050507, 0.875627995, -0.00164413452, -0.000618443475, -3.1258638e-005, -1.00000918, -3.10249452e-005, 0.999996781, -3.11905351e-005, 1.00000858, 3.10039577e-005, -0.000617360754))
  747. mesh("BlockMesh",Col_Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.219582841, 1))
  748. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10450268, 0.200000018, 0.200000018))
  749. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(0.0124864578, -0.754970551, 1.02498984, 0.000630442984, 6.22575899e-005, 1.00000906, 1.00000846, 5.30021789e-005, -0.000629362767, -5.30442994e-005, 0.999996781, -6.21788859e-005))
  750. mesh("BlockMesh",Wedge,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.713644266, 0.384269953))
  751. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10450268, 0.200000018, 0.200000018))
  752. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.0123825073, 0.230976105, -0.953584194, -0.000544444192, -2.55115935e-007, -1.00000918, 1.00000858, 9.00500345e-006, -0.00054336054, 9.00557279e-006, -0.999996781, 2.02195196e-007))
  753. mesh("BlockMesh",Wedge,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.713644266, 0.329374254))
  754. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10669839, 0.772931635, 0.219582841))
  755. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.00695514679, -0.41341114, 0.442085266, -0.000617632235, -3.12287557e-005, -1.00000679, 3.10219111e-005, -0.999997616, 3.11712247e-005, -1.00000632, -3.10020696e-005, 0.000616821519))
  756. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10450268, 0.200000018, 0.200000018))
  757. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(0.0124998093, 0.241081238, -0.953632951, 0.000606442336, 6.22568477e-005, 1.00000906, -1.00000846, -0.000115005387, 0.000605364854, 0.000115044822, -0.999996781, 6.21373183e-005))
  758. mesh("BlockMesh",Wedge,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.713644266, 0.329374254))
  759. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10450268, 0.200000018, 0.200000018))
  760. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(0.0124607086, -0.744869232, -0.953519702, 0.000606442336, 6.22568477e-005, 1.00000906, -1.00000846, -0.000115005387, 0.000605364854, 0.000115044822, -0.999996781, 6.21373183e-005))
  761. mesh("BlockMesh",Wedge,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.713644266, 0.329374254))
  762. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10450268, 0.200000018, 0.200000018))
  763. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.0124931335, 0.241188049, 1.02493513, -0.000630442984, -6.22602529e-005, -1.00000906, -1.00000846, -9.00231862e-006, 0.000629358052, -9.04391709e-006, 0.999996781, -6.22027583e-005))
  764. mesh("BlockMesh",Wedge,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.713644266, 0.384269953))
  765. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10450268, 0.77512747, 0.329374254))
  766. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(0.00805187225, 0.713279724, -0.648366213, 0.000618443475, 3.1258638e-005, 1.00000918, -1.00000858, -3.10039577e-005, 0.000617360754, 3.10249452e-005, -0.999996781, 3.11905351e-005))
  767. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10450268, 0.200000018, 0.200000018))
  768. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.0124845505, -0.754974365, -0.953592777, -0.000544444192, -2.55115935e-007, -1.00000918, 1.00000858, 9.00500345e-006, -0.00054336054, 9.00557279e-006, -0.999996781, 2.02195196e-007))
  769. mesh("BlockMesh",Wedge,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.713644266, 0.329374254))
  770. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10230672, 0.880527258, 0.548957169))
  771. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.0091714859, 0.628469229, 0.826408386, -0.000618171005, 3.07508817e-005, -1.00000465, 3.09844872e-005, -0.99999845, -3.08002054e-005, -1.00000429, -3.10040778e-005, 0.00061762851))
  772. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10450268, 0.772931635, 0.219582841))
  773. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(0.00805282593, -0.413411379, 0.436264038, 0.000617632235, 3.12287557e-005, 1.00000679, 3.10219111e-005, -0.999997616, 3.11712247e-005, 1.00000632, 3.10020696e-005, -0.000616821519))
  774. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10450268, 0.200000018, 0.200000018))
  775. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(0.0124721527, 0.230983734, 1.02493775, 0.000630442984, 6.22575899e-005, 1.00000906, 1.00000846, 5.30021789e-005, -0.000629362767, -5.30442994e-005, 0.999996781, -6.21788859e-005))
  776. mesh("BlockMesh",Wedge,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.713644266, 0.384269953))
  777. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10230672, 0.667532086, 0.55334872))
  778. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.00912857056, -0.741609335, -0.824207306, -0.000618170598, -3.12490192e-005, -1.00000465, -3.10247415e-005, 0.99999845, -3.12000666e-005, 1.00000429, 3.10040778e-005, -0.00061762851))
  779. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10230672, 0.882723093, 0.548957169))
  780. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(0.00913143158, 0.62962079, 0.820476532, 0.000680170138, 3.12490192e-005, 1.00000453, 3.10247415e-005, -0.99999845, 3.12000666e-005, 1.00000417, 3.10040559e-005, -0.000679628167))
  781. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10450268, 0.200000018, 0.200000018))
  782. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.0124759674, -0.74477005, 1.02492499, -0.000630442984, -6.22602529e-005, -1.00000906, -1.00000846, -9.00231862e-006, 0.000629358052, -9.04391709e-006, 0.999996781, -6.22027583e-005))
  783. mesh("BlockMesh",Wedge,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.713644266, 0.384269953))
  784. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10450268, 0.77512747, 0.329374254))
  785. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(-0.0080537796, 0.709651947, -0.648366213, -0.000618443475, -3.1258638e-005, -1.00000918, 1.00000858, 3.10039577e-005, -0.000617360754, 3.10249452e-005, -0.999996781, 3.11905351e-005))
  786. Wedge=part(Enum.PartType.Block,m,Enum.Material.Slate,0,0,"Dark stone grey","Wedge",Vector3.new(1.10230672, 0.667532086, 0.55334872))
  787. Wedgeweld=weld(m,TO_Handle,Wedge,CFrame.new(0, 0, 0, -0.00734306173, -3.94235258e-006, -0.999975562, 9.76307929e-005, -0.999999285, 3.20621825e-006, -0.999975324, -9.76040319e-005, 0.00734279165),CFrame.new(0.00907707214, -0.741609573, -0.822727203, 0.000618170598, 3.12490192e-005, 1.00000465, 3.09755123e-005, 0.99999845, -3.12402844e-005, -1.00000417, 3.09958377e-005, 0.000617628044))
  788.  
  789.  
  790.  
  791.  
  792.  
  793.  
  794. maus.KeyDown:connect(function(kei)
  795. if string.byte(kei)==48 and not otheranims then
  796. runnin=true
  797. end
  798. if kei=='w' then fldb.w=true end
  799. if kei=='a' then fldb.a=true end
  800. if kei=='s' then fldb.s=true end
  801. if kei=='d' then fldb.d=true end
  802. end)
  803. maus.KeyUp:connect(function(kei)
  804. if string.byte(kei)==48 and not otheranims then
  805. runnin=false
  806. end
  807. if kei=='w' then fldb.w=false end
  808. if kei=='a' then fldb.a=false end
  809. if kei=='s' then fldb.s=false end
  810. if kei=='d' then fldb.d=false end
  811. end)
  812.  
  813.  
  814.  
  815.  
  816.  
  817. game:service'RunService'.RenderStepped:connect(function()
  818. if anim~=lastanim then
  819. runtime=0
  820. end
  821. lastanim=anim
  822. chr.Humanoid.CameraOffset=(rutprt.CFrame:toObjectSpace(hed.CFrame)).p+Vector3.new(0,-1.25,0)
  823. syne=syne+.95
  824. if not otheranims and not swimming then
  825. 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
  826. anim="Idling"
  827. 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
  828. anim="Walking"
  829. 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
  830. anim="Sprinting"
  831. elseif torso.Velocity.y>5 and chr.Humanoid.Jump then
  832. anim='Jumping'
  833. elseif (torso.Velocity.y < -5) and chr.Humanoid.Jump then
  834. anim='Falling'
  835. end
  836. end
  837.  
  838. if anim ~= "Idling" then
  839. SW_Handleweld.C0=Lerp(SW_Handleweld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),.1)
  840. end
  841.  
  842. if anim=="Idling" then
  843. idlesineinc=35
  844. SW_Handleweld.C0=Lerp(SW_Handleweld.C0,CFrame.new(0, -.5, .46)*CFrame.Angles(math.rad(75),math.rad(0),math.rad(0)),.1)
  845. rarm.Weld.C0=Lerp(rarm.Weld.C0,CFrame.new(1.5,.525+math.cos(syne/idlesineinc)/25,0)*CFrame.Angles(math.rad(76),math.rad(12),math.rad(20)),.1)
  846. larm.Weld.C0=Lerp(larm.Weld.C0,CFrame.new(-1.5 ,.525 +math.cos(syne/idlesineinc)/25 ,0 )*CFrame.Angles(0,0,math.rad(-3)),.1)
  847. lleg.Weld.C0=Lerp(lleg.Weld.C0,CFrame.new(-.55 ,-1.9 -math.cos(syne/idlesineinc)/20 ,(math.cos(syne/idlesineinc)/35))*CFrame.Angles(-(math.cos(syne/idlesineinc)/35),0,math.rad(-2.5)),.1)
  848. 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),0,math.rad(2.5)),.1)
  849. hed.Weld.C0=Lerp(hed.Weld.C0,CFrame.new(0 ,1.5 +math.cos(syne/idlesineinc)/50 ,0)*CFrame.Angles(math.cos(syne/idlesineinc)/40,0,0),.1)
  850.  
  851.  
  852.  
  853. rutprt.Weld.C0=Lerp(rutprt.Weld.C0,CFrame.new(0 ,-.1 +math.cos(syne/idlesineinc)/20 ,0 )*CFrame.Angles(math.cos(syne/idlesineinc)/35+math.rad(0),math.rad(0),math.rad(0)),.1)
  854. end
  855.  
  856. if anim=="Walking" then
  857. rarm.Weld.C0=Lerp(rarm.Weld.C0,CFrame.new(1.5 ,.525 +math.cos(syne/15 )/25 ,0 )*CFrame.Angles(math.cos(syne/6)/1.25,math.rad(5),-(math.cos(syne/6.75)/15)+math.rad(3)),.1)
  858. larm.Weld.C0=Lerp(larm.Weld.C0,CFrame.new(-1.5 ,.525 +math.cos(syne/15 )/25 ,0 )*CFrame.Angles(-(math.cos(syne/6)/1.25),0,-(math.cos(syne/6.75)/15)-math.rad(3)),.1)
  859. 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)
  860. 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)
  861. 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)
  862.  
  863.  
  864. 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)
  865. end
  866.  
  867. if anim=="Sprinting" then
  868. 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)
  869. larm.Weld.C0=Lerp(larm.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)
  870. 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)
  871. 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)
  872. 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)
  873.  
  874.  
  875. 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)
  876. end
  877.  
  878. if anim=="Jumping" then
  879. rarm.Weld.C0=Lerp(rarm.Weld.C0,CFrame.new(1.5 ,.525 ,0 )*CFrame.Angles(math.rad(10),0,math.rad(50)),.1)
  880. larm.Weld.C0=Lerp(larm.Weld.C0,CFrame.new(-1.5 ,.525 ,0 )*CFrame.Angles(math.rad(10),0,math.rad(-50)),.1)
  881. 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)
  882. rleg.Weld.C0=Lerp(rleg.Weld.C0,CFrame.new(.55 ,-1.4 ,0 )*CFrame.Angles(math.rad(-17.5),0,math.rad(2.5)),.1)
  883. 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)
  884.  
  885.  
  886. 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)
  887. end
  888.  
  889. if anim=="Falling" then
  890. rarm.Weld.C0=Lerp(rarm.Weld.C0,CFrame.new(1.5 ,.525 ,0 )*CFrame.Angles(math.rad(10),0,math.rad(70)),.035)
  891. larm.Weld.C0=Lerp(larm.Weld.C0,CFrame.new(-1.5 ,.525 ,0 )*CFrame.Angles(math.rad(10),0,math.rad(-70)),.035)
  892. lleg.Weld.C0=Lerp(lleg.Weld.C0,CFrame.new(-.55 ,-1.2 ,0 )*CFrame.Angles(math.rad(-14),0,math.rad(-2.5)),.035)
  893. rleg.Weld.C0=Lerp(rleg.Weld.C0,CFrame.new(.55 ,-1.2 ,0 )*CFrame.Angles(math.rad(0),0,math.rad(2.5)),.035)
  894. hed.Weld.C0=Lerp(hed.Weld.C0,CFrame.new(0 ,1.5 ,-.3 )*CFrame.Angles(math.rad(-40),0,0),.035)
  895.  
  896.  
  897. 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)
  898. end
  899.  
  900. if runnin and not otheranims and not swimming then
  901. chr.Humanoid.WalkSpeed=RunSpeed
  902. elseif not runnin and not otheranims and not swimming then
  903. chr.Humanoid.WalkSpeed=WlkSpeed
  904. end
  905. end)
Add Comment
Please, Sign In to add comment