Advertisement
SheeityArtist

empooorararararar

Jan 11th, 2018
858
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 339.01 KB | None | 0 0
  1. --------------------------
  2. --Empyr Titan Remastered--
  3. ---------------------------------------------------------
  4. --This edit is by CKbackup (Sugarie Saffron)-------------
  5. --Credits to whoever made the original Ouga Blast Titan--
  6. ---------------------------------------------------------
  7.  
  8. wait(1/60)
  9.  
  10. local p = game:service'Players'.LocalPlayer
  11. local char = p.Character
  12. local mouse = p:GetMouse()
  13. local larm = char["Left Arm"]
  14. local rarm = char["Right Arm"]
  15. local lleg = char["Left Leg"]
  16. local rleg = char["Right Leg"]
  17. local hed = char.Head
  18. local torso = char.Torso
  19. local hum = char:FindFirstChildOfClass("Humanoid")
  20. local cam = workspace.CurrentCamera
  21. local root = char.HumanoidRootPart
  22. local deb = false
  23. local shot = 0
  24. local l = game:service'Lighting'
  25. local stanceToggle = "Assertive"
  26. local CanAttack = true
  27. local Daytime = true
  28. local animpose = "Idle"
  29. local lastanimpose = "Idle"
  30. local nosword=false
  31. RootPart=char.HumanoidRootPart
  32. local Effects={}
  33. local attack=false
  34. idle=0
  35. Anim='Idle'
  36. equipped=true
  37. hum.WalkSpeed=40
  38. colorscheme=BrickColor.new('Black')
  39. it=Instance.new
  40. attacktype=1
  41. vt=Vector3.new
  42. cf=CFrame.new
  43. euler=CFrame.fromEulerAnglesXYZ
  44. angles=CFrame.Angles
  45. m=Instance.new('Model',char)
  46. stance='god'
  47. --game:service'Lighting'.TimeOfDay=24
  48. local mus = Instance.new("Sound",char)
  49. mus.Name = "mus"
  50. mus.SoundId = "rbxassetid://1073318933"
  51. mus.Looped = true
  52. mus.Volume = 1
  53. mus:Play()
  54. Debounces = {
  55. on = false;
  56. ks = false;
  57. CanAttack = true;
  58. CanJoke = true;
  59. NoIdl = false;
  60. Slashing = false;
  61. Slashed = false;
  62. Grabbing =
  63. false;
  64. Grabbed = false;
  65. }
  66. local RbxUtility = LoadLibrary("RbxUtility")
  67. local Create = RbxUtility.Create
  68. wm=Create("Model"){
  69. Parent=char,
  70. Name="Weapon",
  71. }
  72. it=Instance.new
  73. vt=Vector3.new
  74. cf=CFrame.new
  75. euler=CFrame.fromEulerAnglesXYZ
  76. angles=CFrame.Angles
  77.  
  78.  
  79. ArtificialHB = Instance.new("BindableEvent", script)
  80. ArtificialHB.Name = "Heartbeat"
  81. script:WaitForChild("Heartbeat")
  82. frame = 0.015
  83. tf = 0
  84. allowframeloss = false
  85. tossremainder = false
  86. lastframe = tick()
  87. script.Heartbeat:Fire()
  88. game:GetService("RunService").Heartbeat:connect(function(s, p)
  89. tf = tf + s
  90. if tf >= frame then
  91. if allowframeloss then
  92. script.Heartbeat:Fire()
  93. lastframe = tick()
  94. else
  95. for i = 1, math.floor(tf / frame) do
  96. script.Heartbeat:Fire()
  97. end
  98. lastframe = tick()
  99. end
  100. if tossremainder then
  101. tf = 0
  102. else
  103. tf = tf - frame * math.floor(tf / frame)
  104. end
  105. end
  106. end)
  107. function swait(num)
  108. if num == 0 or num == nil then
  109. ArtificialHB.Event:wait(0)
  110. else
  111. for i = 0, num do
  112. ArtificialHB.Event:wait(0)
  113. end
  114. end
  115. end
  116.  
  117. --vvvvv WOW HAVEN'T SEEN THIS ONE BEFORE!
  118. function clerp(a,b,t)
  119. local qa = {QuaternionFromCFrame(a)}
  120. local qb = {QuaternionFromCFrame(b)}
  121. local ax, ay, az = a.x, a.y, a.z
  122. local bx, by, bz = b.x, b.y, b.z
  123. local _t = 1-t
  124. return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t))
  125. end
  126.  
  127. function QuaternionFromCFrame(cf)
  128. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  129. local trace = m00 + m11 + m22
  130. if trace > 0 then
  131. local s = math.sqrt(1 + trace)
  132. local recip = 0.5/s
  133. return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5
  134. else
  135. local i = 0
  136. if m11 > m00 then
  137. i = 1
  138. end
  139. if m22 > (i == 0 and m00 or m11) then
  140. i = 2
  141. end
  142. if i == 0 then
  143. local s = math.sqrt(m00-m11-m22+1)
  144. local recip = 0.5/s
  145. return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip
  146. elseif i == 1 then
  147. local s = math.sqrt(m11-m22-m00+1)
  148. local recip = 0.5/s
  149. return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip
  150. elseif i == 2 then
  151. local s = math.sqrt(m22-m00-m11+1)
  152. local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip
  153. end
  154. end
  155. end
  156.  
  157. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  158. local xs, ys, zs = x + x, y + y, z + z
  159. local wx, wy, wz = w*xs, w*ys, w*zs
  160. local xx = x*xs
  161. local xy = x*ys
  162. local xz = x*zs
  163. local yy = y*ys
  164. local yz = y*zs
  165. local zz = z*zs
  166. return CFrame.new(px, py, pz,1-(yy+zz), xy - wz, xz + wy,xy + wz, 1-(xx+zz), yz - wx, xz - wy, yz + wx, 1-(xx+yy))
  167. end
  168.  
  169. function QuaternionSlerp(a, b, t)
  170. local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4]
  171. local startInterp, finishInterp;
  172. if cosTheta >= 0.0001 then
  173. if (1 - cosTheta) > 0.0001 then
  174. local theta = math.acos(cosTheta)
  175. local invSinTheta = 1/math.sin(theta)
  176. startInterp = math.sin((1-t)*theta)*invSinTheta
  177. finishInterp = math.sin(t*theta)*invSinTheta
  178. else
  179. startInterp = 1-t
  180. finishInterp = t
  181. end
  182. else
  183. if (1+cosTheta) > 0.0001 then
  184. local theta = math.acos(-cosTheta)
  185. local invSinTheta = 1/math.sin(theta)
  186. startInterp = math.sin((t-1)*theta)*invSinTheta
  187. finishInterp = math.sin(t*theta)*invSinTheta
  188. else
  189. startInterp = t-1
  190. finishInterp = t
  191. end
  192. end
  193. return a[1]*startInterp + b[1]*finishInterp, a[2]*startInterp + b[2]*finishInterp, a[3]*startInterp + b[3]*finishInterp, a[4]*startInterp + b[4]*finishInterp
  194. end
  195. -----------
  196. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  197. local wld = Instance.new("Weld", wp1)
  198. wld.Part0 = wp0
  199. wld.Part1 = wp1
  200. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  201. return wld
  202. end
  203.  
  204. larm.Size = larm.Size * 2
  205. rarm.Size = rarm.Size * 2
  206. lleg.Size = lleg.Size * 2
  207. rleg.Size = rleg.Size * 2
  208. torso.Size = torso.Size * 2
  209. hed.Size = hed.Size * 2
  210. root.Size = root.Size * 2
  211. ----------------------------------------------------
  212. newWeld(torso, larm, -3, 0.5, 0)
  213. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  214. newWeld(torso, rarm, 3, 0.5, 0)
  215. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  216. newWeld(torso, hed, 0, 1.5, 0)
  217. hed.Weld.C1 = CFrame.new(0, -1.5, 0)
  218. newWeld(torso, lleg, -0.5, -1, 0)
  219. lleg.Weld.C1 = CFrame.new(.5, 3, 0)
  220. newWeld(torso, rleg, 0.5, -1, 0)
  221. rleg.Weld.C1 = CFrame.new(-.5, 3, 0)
  222. newWeld(root, torso, 0, -1, 0)
  223. torso.Weld.C1 = CFrame.new(0, -1, 0)
  224.  
  225. New = function(Object, Parent, Name, Data)
  226. local Object = Instance.new(Object)
  227. for Index, Value in pairs(Data or {}) do
  228. Object[Index] = Value
  229. end
  230. Object.Parent = Parent
  231. Object.Name = Name
  232. return Object
  233. end
  234.  
  235. chara = char
  236. Chest = New("Model",chara,"Chest",{})
  237. MainPart = New("Part",Chest,"MainPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(4, 4, 2),CFrame = CFrame.new(-13, 5.99998093, -8, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  238. Weld = New("ManualWeld",MainPart,"Weld",{Part0 = MainPart,Part1 = chara.Torso,C1 = CFrame.new(0, -1.8119812e-005, 3.81469727e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  239. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(1.79999995, 0.800000012, 1.20000005),CFrame = CFrame.new(-13.5999966, 7.59997559, -8.09999847, 0, 0, 1, 0, -1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  240. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  241. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, -0),C1 = CFrame.new(-0.599996567, 1.59999466, -0.0999984741, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  242. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(1.79999995, 0.800000012, 1.20000005),CFrame = CFrame.new(-12.3999968, 7.59997511, -8.09999752, 0, 0, -1, 0, -1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  243. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  244. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0),C1 = CFrame.new(0.600003242, 1.59999418, -0.0999975204, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  245. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(4, 0.400000006, 2),CFrame = CFrame.new(-12.999999, 4.19998074, -7.99999905, -1, 0, 0, 0, 1, 0, 0, 0, -1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  246. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  247. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(9.53674316e-007, -1.80000019, 9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  248. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 3.00000024, 0.200000003),CFrame = CFrame.new(-12.999999, 5.89998102, -8.89999866, -1, 0, 0, 0, 1, 0, 0, 0, -1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  249. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  250. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(9.53674316e-007, -0.0999999046, -0.899998665, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  251. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.5999999, 0.600000024, 1),CFrame = CFrame.new(-12.4999971, 7.69997501, -8.1999979, 0, 0, -1, 0, -1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  252. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998),MeshType = Enum.MeshType.Wedge,})
  253. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0),C1 = CFrame.new(0.500002861, 1.69999409, -0.199997902, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  254. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.5999999, 0.600000024, 1),CFrame = CFrame.new(-13.4999962, 7.69997549, -8.19999886, 0, 0, 1, 0, -1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  255. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998),MeshType = Enum.MeshType.Wedge,})
  256. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, -0),C1 = CFrame.new(-0.499996185, 1.69999456, -0.199998856, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  257. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-13, 4.30000114, -5.50000095, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  258. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(0, -1.69997978, 2.49999905, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  259. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-13, 11.6999998, -5.50000095, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  260. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(0, 5.70001888, 2.49999905, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  261. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-16.6999931, 8, -5.5, 0, -1, 0, 1, 0, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  262. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 1, -0, -1, 0, 0, 0, 0, 1),C1 = CFrame.new(-3.69999313, 2.00001907, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  263. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-9.29999638, 7.99999475, -5.5, 0, -1, 0, 1, 0, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  264. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 1, -0, -1, 0, 0, 0, 0, 1),C1 = CFrame.new(3.70000362, 2.00001383, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  265. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-10.3837023, 5.38370228, -5.5, 0.707106829, -0.707106829, 0, 0.707106829, 0.707106829, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  266. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.707106829, 0.707106829, 0, -0.707106829, 0.707106829, 0, 0, 0, 1),C1 = CFrame.new(2.61629772, -0.616278648, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  267. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-15.616292, 10.616291, -5.5, 0.707106829, -0.707106829, 0, 0.707106829, 0.707106829, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  268. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.707106829, 0.707106829, 0, -0.707106829, 0.707106829, 0, 0, 0, 1),C1 = CFrame.new(-2.616292, 4.61631012, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  269. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-15.6162882, 5.38370609, -5.5, -0.707106829, -0.707106829, 0, 0.707106829, -0.707106829, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  270. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.707106829, 0.707106829, 0, -0.707106829, -0.707106829, 0, 0, 0, 1),C1 = CFrame.new(-2.61628819, -0.616274834, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  271. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-10.3836956, 10.6162891, -5.5, -0.707106829, -0.707106829, 0, 0.707106829, -0.707106829, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  272. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.707106829, 0.707106829, 0, -0.707106829, -0.707106829, 0, 0, 0, 1),C1 = CFrame.new(2.6163044, 4.61630821, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  273. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-12.0423679, 4.42607403, -5.5, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  274. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872, 0, 0, 0, 1),C1 = CFrame.new(0.957632065, -1.5739069, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  275. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-13.9576283, 11.5739212, -5.5, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  276. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872, 0, 0, 0, 1),C1 = CFrame.new(-0.95762825, 5.57394028, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  277. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-16.5739136, 7.04236984, -5.5, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  278. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.258818984, 0.965925872, 0, -0.965925872, -0.258818984, 0, 0, 0, 1),C1 = CFrame.new(-3.57391357, 1.04238892, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  279. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-9.42606831, 8.95762348, -5.5, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  280. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.258818984, 0.965925872, 0, -0.965925872, -0.258818984, 0, 0, 0, 1),C1 = CFrame.new(3.57393169, 2.95764256, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  281. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-9.79570007, 6.14999676, -5.5, 0.500000238, -0.866025388, 0, 0.866025388, 0.500000238, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  282. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.500000238, 0.866025388, 0, -0.866025388, 0.500000238, 0, 0, 0, 1),C1 = CFrame.new(3.20429993, 0.150015831, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  283. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-16.2042866, 9.84999371, -5.5, 0.500000238, -0.866025388, 0, 0.866025388, 0.500000238, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  284. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.500000238, 0.866025388, 0, -0.866025388, 0.500000238, 0, 0, 0, 1),C1 = CFrame.new(-3.20428658, 3.85001278, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  285. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-14.8499899, 4.79570675, -5.5, -0.866025388, -0.500000238, 0, 0.500000238, -0.866025388, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  286. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.866025388, 0.500000238, 0, -0.500000238, -0.866025388, 0, 0, 0, 1),C1 = CFrame.new(-1.84998989, -1.20427418, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  287. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-11.1499863, 11.2042866, -5.5, -0.866025388, -0.500000238, 0, 0.500000238, -0.866025388, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  288. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.866025388, 0.500000238, 0, -0.500000238, -0.866025388, 0, 0, 0, 1),C1 = CFrame.new(1.85001373, 5.20430565, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  289. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-11.1499977, 4.79570389, -5.5, 0.866025388, -0.500000238, 0, 0.500000238, 0.866025388, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  290. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.866025388, 0.500000238, 0, -0.500000238, 0.866025388, 0, 0, 0, 1),C1 = CFrame.new(1.85000229, -1.20427704, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  291. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-14.8499956, 11.2042866, -5.5, 0.866025388, -0.500000238, 0, 0.500000238, 0.866025388, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  292. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.866025388, 0.500000238, 0, -0.500000238, 0.866025388, 0, 0, 0, 1),C1 = CFrame.new(-1.84999561, 5.20430565, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  293. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-16.2042828, 6.15000105, -5.5, -0.500000238, -0.866025388, 0, 0.866025388, -0.500000238, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  294. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.500000238, 0.866025388, 0, -0.866025388, -0.500000238, 0, 0, 0, 1),C1 = CFrame.new(-3.20428276, 0.150020123, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  295. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-9.79569817, 9.84999275, -5.5, -0.500000238, -0.866025388, 0, 0.866025388, -0.500000238, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  296. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.500000238, 0.866025388, 0, -0.866025388, -0.500000238, 0, 0, 0, 1),C1 = CFrame.new(3.20430183, 3.85001183, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  297. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-9.4260664, 7.04236507, -5.5, 0.258818984, -0.965925872, 0, 0.965925872, 0.258818984, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  298. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.258818984, 0.965925872, 0, -0.965925872, 0.258818984, 0, 0, 0, 1),C1 = CFrame.new(3.5739336, 1.04238415, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  299. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-16.5739155, 8.95762348, -5.5, 0.258818984, -0.965925872, 0, 0.965925872, 0.258818984, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  300. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.258818984, 0.965925872, 0, -0.965925872, 0.258818984, 0, 0, 0, 1),C1 = CFrame.new(-3.57391548, 2.95764256, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  301. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-13.9576197, 4.42607594, -5.5, -0.965925872, -0.258818984, 0, 0.258818984, -0.965925872, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  302. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.965925872, 0.258818984, 0, -0.258818984, -0.965925872, 0, 0, 0, 1),C1 = CFrame.new(-0.957619667, -1.57390499, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  303. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.600000024, 0.600000024),CFrame = CFrame.new(-12.0423536, 11.5739193, -5.5, -0.965925872, -0.258818984, 0, 0.258818984, -0.965925872, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  304. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.965925872, 0.258818984, 0, -0.258818984, -0.965925872, 0, 0, 0, 1),C1 = CFrame.new(0.95764637, 5.57393837, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  305. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(3, 0.600000024, 0.600000024),CFrame = CFrame.new(-8.55940533, 4.55548334, -5.5, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  306. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872, 0, 0, 0, 1),C1 = CFrame.new(4.44059467, -1.44449759, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  307. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(3, 0.600000024, 0.600000024),CFrame = CFrame.new(-17.4405823, 4.55548525, -5.5, -0.965925872, -0.258818984, 0, 0.258818984, -0.965925872, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  308. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.965925872, 0.258818984, 0, -0.258818984, -0.965925872, 0, 0, 0, 1),C1 = CFrame.new(-4.44058228, -1.44449568, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  309. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(3, 0.600000024, 0.600000024),CFrame = CFrame.new(-18.84058, 6.55548525, -5.5, -0.866025507, -0.499999911, 0, 0.499999911, -0.866025507, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  310. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.866025507, 0.499999911, 0, -0.499999911, -0.866025507, 0, 0, 0, 1),C1 = CFrame.new(-5.84057999, 0.555504322, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  311. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(3, 0.600000024, 0.600000024),CFrame = CFrame.new(-7.15940475, 6.55548334, -5.5, 0.866025507, -0.499999911, 0, 0.499999911, 0.866025507, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  312. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.866025507, 0.499999911, 0, -0.499999911, 0.866025507, 0, 0, 0, 1),C1 = CFrame.new(5.84059525, 0.555502415, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  313. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(3, 0.600000024, 0.600000024),CFrame = CFrame.new(-18.84058, 8.55548573, -5.5, -0.707107067, -0.707106769, 0, 0.707106769, -0.707107067, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  314. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.707107067, 0.707106769, 0, -0.707106769, -0.707107067, 0, 0, 0, 1),C1 = CFrame.new(-5.84057999, 2.5555048, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  315. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(3, 0.600000024, 0.600000024),CFrame = CFrame.new(-7.15940475, 8.55548382, -5.5, 0.707107067, -0.707106769, 0, 0.707106769, 0.707107067, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  316. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.707107067, 0.707106769, 0, -0.707106769, 0.707107067, 0, 0, 0, 1),C1 = CFrame.new(5.84059525, 2.55550289, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  317. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.599999964, 3.20000029, 0.600000024),CFrame = CFrame.new(-21.0326118, 10.7475166, -5.5, 0, -0.707107067, 0.707106709, 0, 0.707106769, 0.707107008, -1.00000012, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  318. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  319. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1.00000012, -0.707107067, 0.707106769, 0, 0.707106709, 0.707107008, 0),C1 = CFrame.new(-8.03261185, 4.74753571, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  320. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.599999964, 3.20000029, 0.600000024),CFrame = CFrame.new(-21.525259, 8.10548496, -5.5, 0, -0.866025686, 0.499999791, 0, 0.499999881, 0.866025627, -1.00000012, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  321. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  322. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1.00000012, -0.866025686, 0.499999881, 0, 0.499999791, 0.866025627, 0),C1 = CFrame.new(-8.52525902, 2.10550404, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  323. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.599999964, 3.20000029, 0.600000024),CFrame = CFrame.new(-20.4349518, 5.35782433, -5.5, 0, -0.965925992, 0.258818924, 0, 0.258819014, 0.965925932, -1.00000012, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  324. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  325. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1.00000012, -0.965925992, 0.258819014, 0, 0.258818924, 0.965925932, 0),C1 = CFrame.new(-7.43495178, -0.642156601, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  326. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.599999964, 3.20000029, 0.600000024),CFrame = CFrame.new(-5.56535196, 5.35782385, -5.5, 0, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  327. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  328. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872, 0),C1 = CFrame.new(7.43464804, -0.642157078, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  329. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.599999964, 3.20000029, 0.600000024),CFrame = CFrame.new(-4.47504997, 8.10548496, -5.5, 0, 0.866025567, -0.499999762, 0, 0.499999762, 0.866025567, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  330. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  331. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0.866025567, 0.499999762, 0, -0.499999762, 0.866025567, 0),C1 = CFrame.new(8.52495003, 2.10550404, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  332. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.599999964, 3.20000029, 0.600000024),CFrame = CFrame.new(-4.96769905, 10.7475166, -5.5, 0, 0.707106829, -0.707106829, 0, 0.707106829, 0.707106829, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  333. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  334. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0.707106829, 0.707106829, 0, -0.707106829, 0.707106829, 0),C1 = CFrame.new(8.03230095, 4.74753571, 2.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  335. Tail = New("Part",Chest,"Tail",{BrickColor = BrickColor.new("Institutional white"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(2, 1, 1),CFrame = CFrame.new(-12.9999971, 4.26603603, -6.89999485, 1, 4.29369379e-007, 4.29373046e-007, 1.01021019e-013, 0.707109928, -0.707103968, -6.07222375e-007, 0.707103968, 0.707109928),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  336. Mesh = New("SpecialMesh",Tail,"Mesh",{Offset = Vector3.new(0, 0, 3),Scale = Vector3.new(1.5, 1.5, 1.5),MeshId = "rbxassetid://471740614",MeshType = Enum.MeshType.FileMesh,})
  337. Weld = New("ManualWeld",Tail,"Weld",{Part0 = Tail,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 1, 1.01021019e-013, -6.07222375e-007, 4.29369379e-007, 0.707109928, 0.707103968, 4.29373046e-007, -0.707103968, 0.707109928),C1 = CFrame.new(2.86102295e-006, -1.73394489, 1.10000515, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  338. FakeHead = New("Model",chara,"FakeHead",{})
  339. AMainPart = New("Part",FakeHead,"AMainPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(4, 2, 2),CFrame = CFrame.new(-13, 9.1999445, -8, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  340. Mesh = New("SpecialMesh",AMainPart,"Mesh",{Scale = Vector3.new(1.25, 1.25, 1.25),})
  341. Weld = New("ManualWeld",AMainPart,"Weld",{Part0 = AMainPart,Part1 = chara.Head,C1 = CFrame.new(0, 0.199954033, 3.81469727e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  342. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(2, 1.60000002, 2.20000005),CFrame = CFrame.new(-13, 8.79999447, -8.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  343. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  344. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C1 = CFrame.new(0, -0.399950027, -0.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  345. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 2),CFrame = CFrame.new(-11.1999998, 10.2999945, -7.89999962, 0, 0, 1, 0, 1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  346. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  347. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(1.80000019, 1.10004997, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  348. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.799999952),CFrame = CFrame.new(-11.5999975, 10.0999908, -7.89999962, 0, 0, -1, 0, -1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  349. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  350. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0),C1 = CFrame.new(1.40000248, 0.900046349, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  351. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-10.0999975, 10.2999945, -7.89999771, 0, 0, -1, 0, -1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  352. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  353. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0),C1 = CFrame.new(2.90000248, 1.10004997, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  354. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 2),CFrame = CFrame.new(-14.7999964, 10.2999945, -7.89999771, 0, 0, -1, 0, 1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  355. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  356. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(-1.79999638, 1.10004997, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  357. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.799999952),CFrame = CFrame.new(-14.3999958, 10.0999908, -7.89999771, 0, 0, 1, 0, -1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  358. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  359. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, -0),C1 = CFrame.new(-1.3999958, 0.900046349, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  360. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-15.899992, 10.2999945, -7.89999962, 0, 0, 1, 0, -1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  361. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  362. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, -0),C1 = CFrame.new(-2.89999199, 1.10004997, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  363. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.600000024, 0.600000024),CFrame = CFrame.new(-10.4999943, 9.89999485, -7.89999771, 0, 0, -1, 0, -1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  364. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  365. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0),C1 = CFrame.new(2.50000572, 0.700050354, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  366. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 1.00000012),CFrame = CFrame.new(-14.4999981, 9.49999237, -7.89999962, 0, 0, 1, 0, -1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  367. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  368. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, -0),C1 = CFrame.new(-1.49999809, 0.300047874, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  369. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.600000024, 0.600000024),CFrame = CFrame.new(-15.0999975, 9.29999447, -7.89999962, 0, 0, 1, 0, -1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  370. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.899999976, 1),MeshType = Enum.MeshType.Wedge,})
  371. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, -0),C1 = CFrame.new(-2.09999752, 0.100049973, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  372. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.599999964),CFrame = CFrame.new(-14.2999935, 9.29998493, -7.89999771, 0, 0, 1, 0, -1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  373. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  374. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, -0),C1 = CFrame.new(-1.29999352, 0.100040436, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  375. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.600000083, 1.20000005),CFrame = CFrame.new(-14.5999975, 9.89999485, -7.89999962, 0, 0, 1, 0, -1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  376. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  377. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, -0),C1 = CFrame.new(-1.59999752, 0.700050354, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  378. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.600000024, 0.600000024),CFrame = CFrame.new(-15.4999981, 9.89999485, -7.89999962, 0, 0, 1, 0, -1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  379. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  380. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, -0),C1 = CFrame.new(-2.49999809, 0.700050354, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  381. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(-14.1999941, 8.69997883, -7.89999771, 0, 0, 1, 0, -1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  382. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  383. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, -0),C1 = CFrame.new(-1.19999409, -0.499965668, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  384. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.400000006, 0.800000131),CFrame = CFrame.new(-14.399992, 9.19999695, -7.89999771, 0, 0, 1, 0, -1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  385. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  386. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, -0),C1 = CFrame.new(-1.39999199, 5.24520874e-005, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  387. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.600000024),CFrame = CFrame.new(-14.8999958, 8.89997482, -7.89999962, 0, 0, 1, 0, -1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  388. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  389. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, -0),C1 = CFrame.new(-1.8999958, -0.299969673, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  390. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.400000006, 0.600000024),CFrame = CFrame.new(-14.2999964, 8.79999447, -7.89999962, 0, 0, 1, 0, -1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  391. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  392. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, -0),C1 = CFrame.new(-1.29999638, -0.399950027, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  393. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.399999946),CFrame = CFrame.new(-14.399992, 8.89997292, -7.89999771, 0, 0, -1, 0, 1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  394. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  395. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(-1.39999199, -0.299971581, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  396. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 1.19999993),CFrame = CFrame.new(-14.399992, 9.49998093, -7.89999771, 0, 0, -1, 0, 1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  397. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  398. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(-1.39999199, 0.30003643, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  399. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.600000024),CFrame = CFrame.new(-15.2999935, 9.49998283, -7.89999962, 0, 0, 1, 0, -1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  400. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  401. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, -0),C1 = CFrame.new(-2.29999352, 0.300038338, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  402. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.399999946),CFrame = CFrame.new(-11.6000004, 8.89997292, -7.89999962, 0, 0, 1, 0, 1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  403. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  404. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(1.39999962, -0.299971581, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  405. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 1.19999993),CFrame = CFrame.new(-11.6000004, 9.49998283, -7.89999962, 0, 0, 1, 0, 1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  406. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  407. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(1.39999962, 0.300038338, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  408. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.600000024),CFrame = CFrame.new(-11.0999956, 8.89997482, -7.89999771, 0, 0, -1, 0, -1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  409. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  410. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0),C1 = CFrame.new(1.90000439, -0.299969673, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  411. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.400000006, 0.800000131),CFrame = CFrame.new(-11.6000004, 9.19999695, -7.89999962, 0, 0, -1, 0, -1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  412. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  413. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0),C1 = CFrame.new(1.39999962, 5.24520874e-005, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  414. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.600000024),CFrame = CFrame.new(-10.699996, 9.49998474, -7.89999771, 0, 0, -1, 0, -1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  415. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  416. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0),C1 = CFrame.new(2.30000401, 0.300040245, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  417. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.400000006, 0.600000024),CFrame = CFrame.new(-11.6999941, 8.79999447, -7.89999771, 0, 0, -1, 0, -1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  418. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  419. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0),C1 = CFrame.new(1.30000591, -0.399950027, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  420. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(-11.7999983, 8.69997883, -7.89999962, 0, 0, -1, 0, -1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  421. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  422. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0),C1 = CFrame.new(1.20000172, -0.499965668, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  423. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.599999964),CFrame = CFrame.new(-11.6999979, 9.29998493, -7.89999962, 0, 0, -1, 0, -1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  424. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  425. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0),C1 = CFrame.new(1.3000021, 0.100040436, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  426. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.600000024, 0.600000024),CFrame = CFrame.new(-10.8999939, 9.29999447, -7.89999771, 0, 0, -1, 0, -1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  427. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.899999976, 1),MeshType = Enum.MeshType.Wedge,})
  428. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0),C1 = CFrame.new(2.1000061, 0.100049973, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  429. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 1.00000012),CFrame = CFrame.new(-11.4999943, 9.49999237, -7.89999771, 0, 0, -1, 0, -1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  430. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  431. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0),C1 = CFrame.new(1.50000572, 0.300047874, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  432. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.600000083, 1.20000005),CFrame = CFrame.new(-11.3999939, 9.89999485, -7.89999771, 0, 0, -1, 0, -1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  433. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  434. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0),C1 = CFrame.new(1.6000061, 0.700050354, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  435. Horns = New("Part",FakeHead,"Horns",{BrickColor = BrickColor.new("Smoky grey"),FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(2, 2, 2),CFrame = CFrame.new(-13, 9.99999237, -7.59999943, 1, 0, 0, 0, 0.866025388, -0.500000358, 0, 0.500000358, 0.866025388),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  436. Mesh = New("SpecialMesh",Horns,"Mesh",{Offset = Vector3.new(0, 2, 0),Scale = Vector3.new(2, 2, 2),MeshId = "rbxassetid://215680403",MeshType = Enum.MeshType.FileMesh,})
  437. Weld = New("ManualWeld",Horns,"Weld",{Part0 = Horns,Part1 = AMainPart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.866025388, 0.500000358, 0, -0.500000358, 0.866025388),C1 = CFrame.new(0, 0.800047874, 0.400000572, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  438. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(-12.8999996, 9.09999466, -9.40000057, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  439. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.5, 0.5),MeshType = Enum.MeshType.Sphere,})
  440. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C1 = CFrame.new(0.100000381, -0.0999498367, -1.40000057, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  441. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(-13.0999994, 9.09999466, -9.40000057, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  442. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.5, 0.5),MeshType = Enum.MeshType.Sphere,})
  443. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C1 = CFrame.new(-0.0999994278, -0.0999498367, -1.40000057, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  444. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.600000024, 0.400000006),CFrame = CFrame.new(-12.6999998, 9.69999409, -9.20000076, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  445. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.5, 0.25),MeshType = Enum.MeshType.Sphere,})
  446. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C1 = CFrame.new(0.300000191, 0.500049591, -1.20000076, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  447. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.600000024, 0.400000006),CFrame = CFrame.new(-13.2999992, 9.69999409, -9.20000076, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  448. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.5, 0.25),MeshType = Enum.MeshType.Sphere,})
  449. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = AMainPart,C1 = CFrame.new(-0.299999237, 0.500049591, -1.20000076, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  450. LeftArm = New("Model",chara,"LeftArm",{})
  451. MainPart = New("Part",LeftArm,"MainPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(2, 4, 2),CFrame = CFrame.new(-16, 6.00000191, -7.99999905, 1, 0, 0, 0, 1.00001049, 0, 0, 0, 1.00001049),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  452. Weld = New("ManualWeld",MainPart,"Weld",{Part0 = MainPart,Part1 = chara["Left Arm"],C1 = CFrame.new(0, -1.8119812e-005, 3.81469727e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  453. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2.20000005, 0.599999845, 2.4000001),CFrame = CFrame.new(-16.0999966, 7.90002203, -7.99999714, -1, 0, 0, 0, 1.00001049, 0, 0, 0, -1.00001049),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  454. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(-0.0999965668, 1.9000001, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  455. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2.4000001, 0.599999845, 0.400000036),CFrame = CFrame.new(-17.3999977, 7.90002203, -7.99999714, 0, 0, 1, 0, 1.00001049, 0, -1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  456. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  457. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(-1.39999771, 1.9000001, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  458. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2.4000001, 0.599999845, 0.400000036),CFrame = CFrame.new(-14.7999954, 7.90002203, -7.99999714, 0, 0, -1, 0, 1.00001049, 0, 1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  459. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  460. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(1.20000458, 1.9000001, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  461. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.399999857, 2),CFrame = CFrame.new(-15.9999971, 4.60000706, -7.99999714, -1, 0, 0, 0, 1.00001049, 0, 0, 0, -1.00001049),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  462. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  463. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(2.86102295e-006, -1.39998007, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  464. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000036, 0.399999857, 2),CFrame = CFrame.new(-16.7999954, 5.00001049, -7.99999714, -1, 0, 0, 0, 1.00001049, 0, 0, 0, -1.00001049),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  465. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  466. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(-0.799995422, -0.999980927, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  467. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.999999881, 0.399999976),CFrame = CFrame.new(-16.7999954, 5.70001745, -7.99999714, 0, 0, -1, 0, 1.00001049, 0, 1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  468. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  469. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(-0.799995422, -0.299981117, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  470. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.399999857, 0.399999976),CFrame = CFrame.new(-16.3999977, 5.00001144, -7.99999714, 0, 0, -1, 0, 1.00001049, 0, 1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  471. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  472. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(-0.399997711, -0.999979973, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  473. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000036, 0.200000003, 2),CFrame = CFrame.new(-16.1999969, 4.90000963, -7.99999714, -1, 0, 0, 0, 1.00001049, 0, 0, 0, -1.00001049),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  474. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  475. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(-0.199996948, -1.09998083, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  476. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.599999905, 0.399999976),CFrame = CFrame.new(-16.1999969, 5.30001354, -7.99999714, 0, 0, -1, 0, 1.00001049, 0, 1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  477. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  478. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(-0.199996948, -0.699981213, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  479. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.200000003, 0.399999976),CFrame = CFrame.new(-15.7999954, 4.90001059, -7.99999714, 0, 0, -1, 0, 1.00001049, 0, 1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  480. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  481. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(0.200004578, -1.09997988, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  482. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.200000003, 0.200000003),CFrame = CFrame.new(-15.699996, 5.1000123, -7.99999714, 0, 0, -1, 0, 1.00001049, 0, 1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  483. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  484. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(0.300004005, -0.899980068, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  485. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.200000003, 0.399999976),CFrame = CFrame.new(-15.3999958, 4.90001059, -7.99999714, 0, 0, -1, 0, 1.00001049, 0, 1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  486. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  487. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(0.600004196, -1.09997988, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  488. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000033, 0.200000003, 2),CFrame = CFrame.new(-15.699996, 4.90000963, -7.99999714, -1, 0, 0, 0, 1.00001049, 0, 0, 0, -1.00001049),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  489. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  490. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0.300004005, -1.09998083, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  491. LeftLeg = New("Model",chara,"LeftLeg",{})
  492. MainPart = New("Part",LeftLeg,"MainPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(2, 4, 2),CFrame = CFrame.new(-14, 2, -8, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  493. Weld = New("ManualWeld",MainPart,"Weld",{Part0 = MainPart,Part1 = chara["Left Leg"],C1 = CFrame.new(0, -9.53674316e-007, 3.81469727e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  494. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.399999857, 2),CFrame = CFrame.new(-13.999999, 0.60000062, -7.99999809, -1, 0, 0, 0, 1, 0, 0, 0, -1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  495. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  496. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(9.53674316e-007, -1.39999938, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  497. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000036, 0.399999857, 2),CFrame = CFrame.new(-14.7999945, 0.999999523, -7.99999809, -1, 0, 0, 0, 1, 0, 0, 0, -1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  498. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  499. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(-0.799994469, -1.00000048, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  500. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.999999881, 0.399999976),CFrame = CFrame.new(-14.7999945, 1.69999933, -7.99999809, 0, 0, -1, 0, 1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  501. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  502. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(-0.799994469, -0.300000668, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  503. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.399999857, 0.399999976),CFrame = CFrame.new(-14.3999987, 1.00000048, -7.99999809, 0, 0, -1, 0, 1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  504. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  505. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(-0.399998665, -0.999999464, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  506. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000036, 0.200000003, 2),CFrame = CFrame.new(-14.1999989, 0.899999619, -7.99999809, -1, 0, 0, 0, 1, 0, 0, 0, -1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  507. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  508. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(-0.199998856, -1.10000038, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  509. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.599999905, 0.399999976),CFrame = CFrame.new(-14.1999989, 1.29999924, -7.99999809, 0, 0, -1, 0, 1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  510. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  511. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(-0.199998856, -0.700000763, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  512. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.200000003, 0.399999976),CFrame = CFrame.new(-13.7999973, 0.900000572, -7.99999809, 0, 0, -1, 0, 1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  513. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  514. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(0.20000267, -1.09999943, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  515. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.200000003, 0.200000003),CFrame = CFrame.new(-13.6999979, 1.10000038, -7.99999809, 0, 0, -1, 0, 1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  516. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  517. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(0.300002098, -0.899999619, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  518. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.200000003, 0.399999976),CFrame = CFrame.new(-13.3999977, 0.900000572, -7.99999809, 0, 0, -1, 0, 1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  519. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  520. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(0.600002289, -1.09999943, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  521. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000033, 0.200000003, 2),CFrame = CFrame.new(-13.6999979, 0.899999619, -7.99999809, -1, 0, 0, 0, 1, 0, 0, 0, -1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  522. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  523. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0.300002098, -1.10000038, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  524. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.399999917, 1.80000007, 1),CFrame = CFrame.new(-13.4999943, 3.06603575, -8.79999924, 0, 0, 1, 0, 1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  525. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998),MeshType = Enum.MeshType.Wedge,})
  526. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(0.500005722, 1.06603575, -0.799999237, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  527. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.599999905, 1.79999995, 1.20000005),CFrame = CFrame.new(-13.5999956, 3.26603413, -8.69999886, 0, 0, 1, 0, 1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  528. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  529. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(0.400004387, 1.26603413, -0.699998856, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  530. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.399999857, 1.80000007, 1),CFrame = CFrame.new(-13.4999971, 3.06603599, -7.19999504, 0, 0, 1, 0, 1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  531. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998),MeshType = Enum.MeshType.Wedge,})
  532. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(0.500002861, 1.06603599, 0.800004959, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  533. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.599999905, 1.79999995, 1.20000005),CFrame = CFrame.new(-13.5999947, 3.26603389, -7.29999542, 0, 0, 1, 0, 1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  534. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  535. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(0.400005341, 1.26603389, 0.700004578, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  536. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.200000003, 2),CFrame = CFrame.new(-14.499999, 2.49999952, -7.99999809, -1, 0, 0, 0, 1, 0, 0, 0, -1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  537. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  538. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(-0.499999046, 0.499999523, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  539. RightArm = New("Model",chara,"RightArm",{})
  540. MainPart = New("Part",RightArm,"MainPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(2, 4, 2),CFrame = CFrame.new(-9.99999905, 6.00000191, -7.99999905, 1, 0, 0, 0, 1.00001049, 0, 0, 0, 1.00001049),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  541. Weld = New("ManualWeld",MainPart,"Weld",{Part0 = MainPart,Part1 = chara["Right Arm"],C1 = CFrame.new(0, -1.8119812e-005, 3.81469727e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  542. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2.20000005, 0.599999845, 2.4000001),CFrame = CFrame.new(-9.89999866, 7.90002203, -7.99999905, 1, 0, 0, 0, 1.00001049, 0, 0, 0, 1.00001049),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  543. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(0.100000381, 1.9000001, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  544. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2.4000001, 0.599999845, 0.400000036),CFrame = CFrame.new(-8.59999657, 7.90002203, -7.99999905, 0, 0, -1, 0, 1.00001049, 0, 1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  545. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  546. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(1.40000248, 1.9000001, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  547. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2.4000001, 0.599999845, 0.400000036),CFrame = CFrame.new(-11.1999979, 7.90002203, -7.99999905, 0, 0, 1, 0, 1.00001049, 0, -1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  548. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  549. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(-1.19999886, 1.9000001, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  550. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.399999857, 2),CFrame = CFrame.new(-9.99999905, 4.60000753, -7.99999905, 1, 0, 0, 0, 1.00001049, 0, 0, 0, 1.00001049),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  551. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  552. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(0, -1.39997959, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  553. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000036, 0.399999857, 2),CFrame = CFrame.new(-9.19999886, 5.00001097, -7.99999905, 1, 0, 0, 0, 1.00001049, 0, 0, 0, 1.00001049),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  554. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  555. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(0.800000191, -0.99998045, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  556. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.999999881, 0.399999976),CFrame = CFrame.new(-9.19999886, 5.70001793, -7.99999905, 0, 0, 1, 0, 1.00001049, 0, -1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  557. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  558. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(0.800000191, -0.29998064, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  559. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.399999857, 0.399999976),CFrame = CFrame.new(-9.59999847, 5.00001192, -7.99999905, 0, 0, 1, 0, 1.00001049, 0, -1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  560. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  561. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(0.400000572, -0.999979496, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  562. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000036, 0.200000003, 2),CFrame = CFrame.new(-9.79999828, 4.90001011, -7.99999905, 1, 0, 0, 0, 1.00001049, 0, 0, 0, 1.00001049),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  563. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  564. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(0.200000763, -1.09998035, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  565. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.599999905, 0.399999976),CFrame = CFrame.new(-9.79999828, 5.3000145, -7.99999905, 0, 0, 1, 0, 1.00001049, 0, -1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  566. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  567. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(0.200000763, -0.699980259, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  568. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.200000003, 0.399999976),CFrame = CFrame.new(-10.1999979, 4.90001106, -7.99999905, 0, 0, 1, 0, 1.00001049, 0, -1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  569. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  570. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(-0.199998856, -1.0999794, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  571. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.200000003, 0.200000003),CFrame = CFrame.new(-10.2999973, 5.1000123, -7.99999905, 0, 0, 1, 0, 1.00001049, 0, -1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  572. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  573. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(-0.299998283, -0.899980068, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  574. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.200000003, 0.399999976),CFrame = CFrame.new(-10.5999975, 4.90001106, -7.99999905, 0, 0, 1, 0, 1.00001049, 0, -1.00001049, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  575. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  576. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(-0.599998474, -1.0999794, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  577. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000033, 0.200000003, 2),CFrame = CFrame.new(-10.2999973, 4.90001011, -7.99999905, 1, 0, 0, 0, 1.00001049, 0, 0, 0, 1.00001049),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  578. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  579. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(-0.299998283, -1.09998035, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  580. RightLeg = New("Model",chara,"RightLeg",{})
  581. MainPart = New("Part",RightLeg,"MainPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(2, 4, 2),CFrame = CFrame.new(-12, 2, -8, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  582. Weld = New("ManualWeld",MainPart,"Weld",{Part0 = MainPart,Part1 = chara["Right Leg"],C1 = CFrame.new(0, -1.90734863e-006, 3.81469727e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  583. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.399999857, 2),CFrame = CFrame.new(-11.999999, 0.600000978, -7.99999809, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  584. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  585. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(9.53674316e-007, -1.39999902, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  586. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000036, 0.399999857, 2),CFrame = CFrame.new(-11.2000027, 1, -7.99999809, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  587. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  588. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(0.79999733, -1, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  589. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.999999881, 0.399999976),CFrame = CFrame.new(-11.2000027, 1.69999897, -7.99999809, 0, 0, 1, 0, 1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  590. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  591. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(0.79999733, -0.300001025, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  592. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.399999857, 0.399999976),CFrame = CFrame.new(-11.5999985, 1.00000095, -7.99999809, 0, 0, 1, 0, 1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  593. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  594. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(0.400001526, -0.999999046, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  595. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000036, 0.200000003, 2),CFrame = CFrame.new(-11.7999992, 0.899999976, -7.99999809, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  596. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  597. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(0.200000763, -1.10000002, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  598. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.599999905, 0.399999976),CFrame = CFrame.new(-11.7999992, 1.299999, -7.99999809, 0, 0, 1, 0, 1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  599. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  600. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(0.200000763, -0.700001001, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  601. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.200000003, 0.399999976),CFrame = CFrame.new(-12.2000008, 0.90000093, -7.99999809, 0, 0, 1, 0, 1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  602. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  603. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(-0.200000763, -1.09999907, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  604. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.200000003, 0.200000003),CFrame = CFrame.new(-12.2999992, 1.0999999, -7.99999809, 0, 0, 1, 0, 1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  605. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  606. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(-0.299999237, -0.900000095, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  607. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.200000003, 0.399999976),CFrame = CFrame.new(-12.5999985, 0.90000093, -7.99999809, 0, 0, 1, 0, 1, 0, -1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  608. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  609. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(-0.599998474, -1.09999907, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  610. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000033, 0.200000003, 2),CFrame = CFrame.new(-12.2999992, 0.899999976, -7.99999809, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  611. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  612. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(-0.299999237, -1.10000002, 1.90734863e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  613. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.599999905, 1.79999995, 1.20000005),CFrame = CFrame.new(-12.3999958, 3.26603413, -8.69999886, 0, 0, -1, 0, 1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  614. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  615. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(-0.399995804, 1.26603413, -0.699998856, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  616. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.399999857, 1.80000007, 1),CFrame = CFrame.new(-12.4999943, 3.06603575, -8.79999924, 0, 0, -1, 0, 1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  617. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998),MeshType = Enum.MeshType.Wedge,})
  618. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(-0.499994278, 1.06603575, -0.799999237, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  619. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.399999917, 1.80000007, 1),CFrame = CFrame.new(-12.4999952, 3.06603599, -7.19999409, 0, 0, -1, 0, 1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  620. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998),MeshType = Enum.MeshType.Wedge,})
  621. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(-0.499995232, 1.06603599, 0.800005913, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  622. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.599999905, 1.79999995, 1.20000005),CFrame = CFrame.new(-12.3999949, 3.26603389, -7.29999447, 0, 0, -1, 0, 1, 0, 1, 0, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  623. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  624. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(-0.39999485, 1.26603389, 0.700005531, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  625. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.200000003, 2),CFrame = CFrame.new(-11.500001, 2.50000095, -8, -1, 0, 0, 0, 1, 0, 0, 0, -1),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  626. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  627. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0.499999046, 0.500000954, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  628. Sword = New("Model",chara,"Swerdd",{})
  629. HandlePart = New("Part",Sword,"HandlePart",{Transparency = 1,Transparency = 1,Size = Vector3.new(0.400000006, 2.5999999, 0.800000072),CFrame = CFrame.new(-9.79998112, 4, -8.09992218, 1, 0, 0, 0, 0, 1.00001049, 0, -1.00001049, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  630. Mesh = New("BlockMesh",HandlePart,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  631. HWeld = New("ManualWeld",HandlePart,"Weld",{Part0 = HandlePart,Part1 = chara["Right Arm"],C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),C1 = CFrame.new(0.600019455, -2.00004101, -0.0999221802, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  632. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.200000003, 0.800000012),CFrame = CFrame.new(-9.8000021, 3.60003233, -16.7001877, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  633. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  634. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 8.60017395, -0.399963379, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  635. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.200000003, 0.800000012),CFrame = CFrame.new(-9.8000021, 4.4000473, -16.7001877, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  636. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  637. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 8.60017395, 0.400043011, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  638. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-9.8000021, 2.90001202, -11.000042, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  639. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  640. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 2.90008926, -1.09997654, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  641. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 0.200000033),CFrame = CFrame.new(-9.8000021, 5.10007191, -17.2002029, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  642. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  643. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.10018539, 1.10006046, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  644. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 2.00000048, 0.200000003),CFrame = CFrame.new(-9.8000021, 4.10004663, -15.8001614, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  645. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  646. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 7.70015907, 0.100045681, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  647. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.400000006, 0.600000024),CFrame = CFrame.new(-9.8000021, 5.70008373, -17.2002087, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  648. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  649. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.10019112, 1.70006561, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  650. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 2.00000048, 0.200000003),CFrame = CFrame.new(-9.8000021, 3.90004396, -17.8002205, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  651. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  652. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.70019531, -0.0999550819, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  653. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-9.8000021, 2.70000267, -11.0000458, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  654. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  655. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 2.90009308, -1.29998374, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  656. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 2.20000005, 1.39999974),CFrame = CFrame.new(-9.8000021, 4.70006227, -18.7002487, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  657. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  658. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 10.6002159, 0.700055122, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  659. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000095, 0.599999726),CFrame = CFrame.new(-9.8000021, 5.5000782, -17.2002068, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  660. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  661. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.10018921, 1.50006247, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  662. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 0.800000131),CFrame = CFrame.new(-9.79999733, 1.39996743, -9.59999847, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  663. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  664. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 1.50006008, -2.60000539, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  665. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-9.79999733, 0.799952745, -9.9000082, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  666. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  667. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 1.80006695, -3.20001364, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  668. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 1.39999998, 0.200000003),CFrame = CFrame.new(-9.8000021, 4.3000474, -11.1000471, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  669. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  670. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 3.00009346, 0.30004406, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  671. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-9.79999733, 1.19996619, -9.90000534, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  672. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  673. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 1.80006409, -2.80000448, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  674. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 0.600000024),CFrame = CFrame.new(-9.79999733, 2.09998894, -10.6000156, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  675. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  676. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 2.50006771, -1.89999104, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  677. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 6.5999999, 2.4000001),CFrame = CFrame.new(-9.8000021, 4.0000391, -13.7001171, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  678. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  679. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 5.6001358, 3.9100647e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  680. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 3.20000005, 0.200000003),CFrame = CFrame.new(-9.8000021, 3.50002646, -12.0000677, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  681. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  682. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 3.90010452, -0.49996829, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  683. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 1.39999998, 0.200000003),CFrame = CFrame.new(-9.8000021, 3.7000308, -11.1000452, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  684. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  685. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 3.00009155, -0.299966097, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  686. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 5.60000038, 0.200000003),CFrame = CFrame.new(-9.8000021, 3.9000411, -13.200098, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  687. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  688. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 5.10012245, -0.099957943, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  689. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-9.8000021, 5.30007172, -16.4001846, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  690. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  691. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 8.30017662, 1.30005789, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  692. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 3.20000005, 0.200000003),CFrame = CFrame.new(-9.8000021, 4.50005245, -12.0000677, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  693. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  694. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 3.90010452, 0.500047207, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  695. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.200000003, 0.800000012),CFrame = CFrame.new(-9.79999733, 3.60003233, -16.9001961, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  696. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  697. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 8.80018044, -0.399963379, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  698. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 3.20000029, 1.99999988),CFrame = CFrame.new(-9.8000021, 5.00006771, -19.0002556, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  699. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  700. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 10.900219, 1.00005722, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  701. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 2.00000048, 0.200000003),CFrame = CFrame.new(-9.8000021, 4.10004807, -17.8002167, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  702. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  703. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.70019341, 0.100047112, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  704. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 1, 4.4000001),CFrame = CFrame.new(-9.8000021, 4.00004101, -9.90001583, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  705. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 1.80007458, 4.10079956e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  706. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.200000003, 0.800000012),CFrame = CFrame.new(-9.79999733, 4.40005732, -16.9001923, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  707. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  708. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 8.80017662, 0.400053024, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  709. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-9.8000021, 5.60008335, -17.5002136, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  710. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  711. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.40019417, 1.60006666, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  712. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.400000006, 2.60000014),CFrame = CFrame.new(-9.8000021, 4.10004663, -17.2001972, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  713. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  714. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.10017967, 0.100045681, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  715. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-9.8000021, 5.10006762, -16.4001846, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  716. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  717. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 8.30017662, 1.10005617, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  718. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 5.60000038, 0.200000003),CFrame = CFrame.new(-9.8000021, 4.10004568, -13.200098, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  719. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  720. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 5.10012245, 0.100044727, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  721. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 2.00000048, 0.200000003),CFrame = CFrame.new(-9.8000021, 3.9000361, -15.8001633, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  722. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  723. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 7.70016098, -0.0999629498, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  724. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-9.79999733, 0.199937344, -10.9000368, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  725. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  726. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 2.80008507, -3.80002284, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  727. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-9.8000021, 5.10006762, -11.0000439, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  728. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  729. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 2.90009117, 1.10005617, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  730. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Reflectance = 0.20000000298023,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1, 1, 0.400000006),CFrame = CFrame.new(-9.8000021, 4.00004101, -9.90001583, 0, 0, 1, -1.00001574, 4.1723689e-007, 0, -4.1723689e-007, -1.00001574, 0),CanCollide = false,Color = Color3.new(1, 1, 0),})
  731. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.39999998, 1.39999998, 2.5),MeshType = Enum.MeshType.Sphere,})
  732. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 0, -1.00000525, -4.17232513e-007, 0, 4.17232513e-007, -1.00000525, 1, 0, 0),C1 = CFrame.new(-2.0980835e-005, 1.80007458, 4.10079956e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  733. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-9.8000021, 4.00003672, -7.99996376, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  734. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  735. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, -0.0999574661, 3.67164612e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  736. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 0.200000033),CFrame = CFrame.new(-9.8000021, 2.90000677, -17.2002087, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  737. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  738. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.10019112, -1.09998155, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  739. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-9.79999733, 2.90001202, -16.4001846, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  740. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  741. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 8.30017662, -1.09997654, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  742. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-9.79999638, 7.20012188, -9.90000343, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  743. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  744. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 1.80006218, 3.2000885, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  745. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-9.8000021, 4.00003672, -6.79994297, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  746. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  747. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, -1.29996586, 3.67164612e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  748. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.400000006, 2.60000014),CFrame = CFrame.new(-9.8000021, 3.9000411, -17.2001972, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  749. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  750. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.10017967, -0.099957943, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  751. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 2.80000019),CFrame = CFrame.new(-9.8000021, 4.00004387, -17.5002136, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  752. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  753. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.40019226, 4.38690186e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  754. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 0.600000024),CFrame = CFrame.new(-9.79999638, 5.90009212, -10.6000118, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  755. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  756. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.5000639, 1.9000721, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  757. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 0.800000131),CFrame = CFrame.new(-9.79999638, 6.6001091, -9.59999084, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  758. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  759. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 1.50005341, 2.60008192, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  760. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 3.20000029, 1.99999988),CFrame = CFrame.new(-9.79999733, 3.00001597, -19.0002556, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  761. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  762. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 10.900219, -0.999973536, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  763. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 2.20000005, 1.39999974),CFrame = CFrame.new(-9.79999733, 3.30002522, -18.7002525, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  764. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  765. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 10.6002178, -0.699967384, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  766. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-9.8000021, 4.00003576, -7.5999732, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  767. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  768. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, -0.499943733, 3.57627869e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  769. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-9.79999638, 7.80013466, -10.9000292, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  770. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  771. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.80007744, 3.80009508, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  772. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-9.79999733, 0.999960899, -10.3000174, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  773. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  774. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 2.20007229, -3.00000763, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  775. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-9.8000021, 4.00003576, -7.19994068, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  776. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  777. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, -0.899971962, 3.57627869e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  778. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-9.8000021, 4.0000391, -9.20001602, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  779. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  780. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 1.1000824, 3.9100647e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  781. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-9.79999638, 7.40012741, -10.9000292, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  782. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  783. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.80007744, 3.40009165, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  784. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-9.8000021, 4.00003672, -8.39999104, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  785. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  786. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 0.300065994, 3.67164612e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  787. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-9.79999638, 7.00011492, -10.3000135, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  788. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  789. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.20006847, 3.00008345, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  790. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-9.8000021, 5.3000679, -11.0000401, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  791. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  792. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 2.90008736, 1.30005455, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  793. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-9.8000021, 4.00003576, -6.3999157, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  794. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(2, 2, 2),})
  795. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, -1.69998837, 3.57627869e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  796. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-9.8000021, 2.70000982, -16.4001884, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  797. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  798. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 8.30017853, -1.29997659, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  799. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 7, 2),CFrame = CFrame.new(-9.8000021, 4.00004101, -13.9001236, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  800. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  801. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 5.80014038, 4.10079956e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  802. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-9.79999638, 7.4001255, -10.3000078, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  803. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  804. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.20006275, 3.40008974, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  805. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-9.79999638, 6.80010986, -9.90000534, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  806. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  807. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 1.80006409, 2.8000803, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  808. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000095, 0.599999726),CFrame = CFrame.new(-9.79999733, 2.50000238, -17.2002106, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  809. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  810. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 9.10019302, -1.49998188, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  811. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-9.79999733, 2.39999962, -17.5002136, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  812. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  813. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 9.40019417, -1.59998369, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  814. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 1.00000012),CFrame = CFrame.new(-9.79999733, 1.29996228, -10.0000019, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  815. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  816. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 1.9000597, -2.70000935, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  817. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.400000006, 0.600000024),CFrame = CFrame.new(-9.79999733, 2.29999208, -17.2002068, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  818. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  819. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 9.10018921, -1.69999003, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  820. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 1.00000012),CFrame = CFrame.new(-9.79999638, 6.70010948, -10, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  821. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  822. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 1.90005779, 2.70008087, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  823. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-9.79999733, 0.599950552, -10.3000154, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  824. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  825. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 2.20007038, -3.40001369, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  826. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.600000024, 1.4000001),CFrame = CFrame.new(-9.79999638, 6.90011406, -10.5000134, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  827. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  828. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.40006542, 2.90008354, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  829. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-9.8000021, 4.0000391, -8.79999256, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  830. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  831. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 0.700062752, 3.9100647e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  832. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.600000024, 1.4000001),CFrame = CFrame.new(-9.79999733, 1.09996104, -10.5000172, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  833. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  834. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 2.40006924, -2.90000844, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  835. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-9.79999733, 0.599946499, -10.900033, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  836. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  837. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.62124634e-005, 2.80008125, -3.40001774, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  838. Part = New("Part",Sword,"Part",{BrickColor = BrickColor.new("Bright yellow"),Reflectance = 0.20000000298023,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(2, 1, 0.400000036),CFrame = CFrame.new(-9.8000021, 4.00004101, -9.90001583, 0, 0, 1, -1.00001574, 4.1723689e-007, 0, -4.1723689e-007, -1.00001574, 0),CanCollide = false,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  839. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(2, 2, 10),MeshId = "http://www.roblox.com/asset?id=156292343",MeshType = Enum.MeshType.FileMesh,})
  840. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 0, -1.00000525, -4.17232513e-007, 0, 4.17232513e-007, -1.00000525, 1, 0, 0),C1 = CFrame.new(-2.0980835e-005, 1.80007458, 4.10079956e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  841. Hitbox = New("Part",Sword,"Hitbox",{Transparency = 1,Transparency = 1,Size = Vector3.new(0.400000006, 10.1999998, 4),CFrame = CFrame.new(-9.8000021, 4.00004101, -15.5000095, 1, 0, 0, 0, 4.17232513e-007, 1.00000525, 0, -1.00000525, 4.17232513e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  842. Mesh = New("BlockMesh",Hitbox,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  843. Weld = New("ManualWeld",Hitbox,"Weld",{Part0 = Hitbox,Part1 = HandlePart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 7.40001011, 4.10079956e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  844. Sword2 = New("Model",chara,"Swerdd2",{})
  845. Handle2Part = New("Part",Sword2,"Handle2Part",{Transparency = 1,Transparency = 1,Size = Vector3.new(0.400000006, 2.5999999, 0.800000072),CFrame = CFrame.new(-38.3999786, 4.00000095, -0.0999183655, 1, 0, 0, 0, 0, 1.00001049, 0, -1.00001049, 0),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  846. Mesh = New("BlockMesh",Handle2Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  847. H2Weld = New("ManualWeld",Handle2Part,"Weld",{Part0 = Handle2Part,Part1 = chara["Left Arm"],C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),C1 = CFrame.new(-0.399980545, -1.99999905, -0.0999183655, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  848. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.200000003, 0.800000012),CFrame = CFrame.new(-38.4000015, 3.60003328, -8.70018291, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  849. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  850. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 8.60017395, -0.399963379, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  851. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.200000003, 0.800000012),CFrame = CFrame.new(-38.4000015, 4.40004826, -8.70018291, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  852. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  853. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 8.60017395, 0.400043011, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  854. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-38.4000015, 2.90001297, -3.00003815, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  855. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  856. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 2.90008926, -1.09997654, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  857. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 0.200000033),CFrame = CFrame.new(-38.4000015, 5.10007286, -9.20019913, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  858. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  859. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.10018539, 1.10006046, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  860. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 2.00000048, 0.200000003),CFrame = CFrame.new(-38.4000015, 4.10004759, -7.80015802, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  861. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  862. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 7.70015907, 0.100045681, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  863. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.400000006, 0.600000024),CFrame = CFrame.new(-38.4000015, 5.70008469, -9.20020485, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  864. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  865. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.10019112, 1.70006561, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  866. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 2.00000048, 0.200000003),CFrame = CFrame.new(-38.4000015, 3.90004492, -9.80021572, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  867. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  868. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.70019531, -0.0999550819, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  869. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-38.4000015, 2.70000362, -3.00004196, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  870. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  871. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 2.90009308, -1.29998374, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  872. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 2.20000005, 1.39999974),CFrame = CFrame.new(-38.4000015, 4.70006323, -10.7002459, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  873. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  874. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 10.6002159, 0.700055122, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  875. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000095, 0.599999726),CFrame = CFrame.new(-38.4000015, 5.50007915, -9.20020294, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  876. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  877. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.10018921, 1.50006247, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  878. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 0.800000131),CFrame = CFrame.new(-38.3999939, 1.39996839, -1.59999418, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  879. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  880. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 1.50006008, -2.60000539, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  881. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-38.3999939, 0.799953699, -1.90000415, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  882. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  883. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 1.80006695, -3.20001364, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  884. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 1.39999998, 0.200000003),CFrame = CFrame.new(-38.4000015, 4.30004835, -3.1000433, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  885. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  886. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 3.00009346, 0.30004406, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  887. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-38.3999939, 1.19996715, -1.90000129, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  888. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  889. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 1.80006409, -2.80000448, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  890. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 0.600000024),CFrame = CFrame.new(-38.3999939, 2.09998989, -2.6000123, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  891. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  892. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.50006771, -1.89999104, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  893. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 6.5999999, 2.4000001),CFrame = CFrame.new(-38.4000015, 4.00004005, -5.70011282, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  894. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  895. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 5.6001358, 3.9100647e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  896. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 3.20000005, 0.200000003),CFrame = CFrame.new(-38.4000015, 3.50002742, -4.0000639, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  897. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  898. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 3.90010452, -0.49996829, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  899. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 1.39999998, 0.200000003),CFrame = CFrame.new(-38.4000015, 3.70003176, -3.10004139, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  900. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  901. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 3.00009155, -0.299966097, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  902. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 5.60000038, 0.200000003),CFrame = CFrame.new(-38.4000015, 3.90004206, -5.20009422, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  903. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  904. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 5.10012245, -0.099957943, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  905. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-38.4000015, 5.30007267, -8.40018177, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  906. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  907. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 8.30017662, 1.30005789, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  908. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 3.20000005, 0.200000003),CFrame = CFrame.new(-38.4000015, 4.50005341, -4.0000639, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  909. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  910. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 3.90010452, 0.500047207, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  911. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.200000003, 0.800000012),CFrame = CFrame.new(-38.3999939, 3.60003328, -8.90019131, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  912. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  913. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 8.80018044, -0.399963379, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  914. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 3.20000029, 1.99999988),CFrame = CFrame.new(-38.4000015, 5.00006866, -11.0002518, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  915. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  916. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 10.900219, 1.00005722, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  917. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 2.00000048, 0.200000003),CFrame = CFrame.new(-38.4000015, 4.10004902, -9.80021381, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  918. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  919. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.70019341, 0.100047112, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  920. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 1, 4.4000001),CFrame = CFrame.new(-38.4000015, 4.00004196, -1.90001178, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  921. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 1.80007458, 4.10079956e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  922. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.200000003, 0.800000012),CFrame = CFrame.new(-38.3999939, 4.40005827, -8.90018749, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  923. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  924. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 8.80017662, 0.400053024, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  925. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-38.4000015, 5.6000843, -9.50021076, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  926. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  927. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.40019417, 1.60006666, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  928. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.400000006, 2.60000014),CFrame = CFrame.new(-38.4000015, 4.10004759, -9.20019341, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  929. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  930. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.10017967, 0.100045681, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  931. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-38.4000015, 5.10006857, -8.40018177, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  932. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  933. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 8.30017662, 1.10005617, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  934. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 5.60000038, 0.200000003),CFrame = CFrame.new(-38.4000015, 4.10004663, -5.20009422, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  935. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  936. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 5.10012245, 0.100044727, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  937. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 2.00000048, 0.200000003),CFrame = CFrame.new(-38.4000015, 3.90003705, -7.80015993, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  938. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  939. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 7.70016098, -0.0999629498, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  940. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-38.3999939, 0.199938297, -2.90003276, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  941. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  942. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.80008507, -3.80002284, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  943. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-38.4000015, 5.10006857, -3.00004005, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  944. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  945. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 2.90009117, 1.10005617, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  946. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Reflectance = 0.20000000298023,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1, 1, 0.400000006),CFrame = CFrame.new(-38.4000015, 4.00004196, -1.90001178, 0, 0, 1, -1.00001574, 4.1723689e-007, 0, -4.1723689e-007, -1.00001574, 0),CanCollide = false,Color = Color3.new(1, 1, 0),})
  947. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.39999998, 1.39999998, 2.5),MeshType = Enum.MeshType.Sphere,})
  948. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 0, -1.00000525, -4.17232513e-007, 0, 4.17232513e-007, -1.00000525, 1, 0, 0),C1 = CFrame.new(-2.0980835e-005, 1.80007458, 4.10079956e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  949. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-38.4000015, 4.00003767, 4.01511788e-005, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  950. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  951. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, -0.0999574661, 3.67164612e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  952. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 0.200000033),CFrame = CFrame.new(-38.4000015, 2.90000772, -9.20020485, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  953. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  954. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.10019112, -1.09998155, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  955. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-38.3999939, 2.90001297, -8.40018177, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  956. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  957. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 8.30017662, -1.09997654, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  958. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-38.3999939, 7.20012283, -1.89999938, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  959. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  960. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 1.80006218, 3.2000885, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  961. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-38.4000015, 4.00003767, 1.20006108, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  962. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  963. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, -1.29996586, 3.67164612e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  964. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.400000006, 2.60000014),CFrame = CFrame.new(-38.4000015, 3.90004206, -9.20019341, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  965. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  966. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.10017967, -0.099957943, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  967. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 2.80000019),CFrame = CFrame.new(-38.4000015, 4.00004482, -9.50020885, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  968. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  969. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 9.40019226, 4.38690186e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  970. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 0.600000024),CFrame = CFrame.new(-38.3999939, 5.90009308, -2.60000849, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  971. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  972. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.5000639, 1.9000721, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  973. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 0.800000131),CFrame = CFrame.new(-38.3999939, 6.60011005, -1.59998751, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  974. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  975. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 1.50005341, 2.60008192, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  976. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 3.20000029, 1.99999988),CFrame = CFrame.new(-38.3999939, 3.00001693, -11.0002518, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  977. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  978. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 10.900219, -0.999973536, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  979. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 2.20000005, 1.39999974),CFrame = CFrame.new(-38.3999939, 3.30002618, -10.7002478, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  980. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  981. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 10.6002178, -0.699967384, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  982. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-38.4000015, 4.00003672, 0.400030613, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  983. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  984. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, -0.499943733, 3.57627869e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  985. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-38.3999939, 7.80013561, -2.90002513, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  986. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  987. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.80007744, 3.80009508, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  988. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-38.3999939, 0.999961853, -2.30001378, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  989. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  990. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.20007229, -3.00000763, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  991. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-38.4000015, 4.00003672, 0.800063014, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  992. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  993. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, -0.899971962, 3.57627869e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  994. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-38.4000015, 4.00004005, -1.20001233, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  995. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  996. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 1.1000824, 3.9100647e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  997. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-38.3999939, 7.40012836, -2.90002513, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  998. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  999. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.80007744, 3.40009165, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1000. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-38.4000015, 4.00003767, -0.399987519, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1001. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  1002. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 0.300065994, 3.67164612e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1003. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-38.3999939, 7.00011587, -2.30000997, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  1004. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  1005. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.20006847, 3.00008345, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1006. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-38.4000015, 5.30006886, -3.00003624, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  1007. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  1008. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 2.90008736, 1.30005455, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1009. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-38.4000015, 4.00003672, 1.60008788, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  1010. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(2, 2, 2),})
  1011. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, -1.69998837, 3.57627869e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1012. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 1.20000005, 0.200000003),CFrame = CFrame.new(-38.4000015, 2.70001078, -8.40018368, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  1013. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  1014. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 8.30017853, -1.29997659, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1015. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 7, 2),CFrame = CFrame.new(-38.4000015, 4.00004196, -5.90011978, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1016. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  1017. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 5.80014038, 4.10079956e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1018. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-38.3999939, 7.40012646, -2.30000424, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  1019. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  1020. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.20006275, 3.40008974, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1021. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-38.3999939, 6.80011082, -1.90000129, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  1022. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  1023. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 1.80006409, 2.8000803, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1024. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000095, 0.599999726),CFrame = CFrame.new(-38.3999939, 2.50000334, -9.20020676, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1025. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  1026. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 9.10019302, -1.49998188, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1027. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-38.3999939, 2.40000057, -9.50021076, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1028. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  1029. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 9.40019417, -1.59998369, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1030. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 1.00000012),CFrame = CFrame.new(-38.3999939, 1.29996324, -1.99999797, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  1031. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  1032. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 1.9000597, -2.70000935, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1033. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("New Yeller"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.400000006, 0.600000024),CFrame = CFrame.new(-38.3999939, 2.29999304, -9.20020294, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(1, 1, 0),})
  1034. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  1035. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 9.10018921, -1.69999003, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1036. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.400000006, 1.00000012),CFrame = CFrame.new(-38.3999939, 6.70011044, -1.99999607, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  1037. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  1038. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 1.90005779, 2.70008087, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1039. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-38.3999939, 0.599951506, -2.30001187, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  1040. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  1041. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.20007038, -3.40001369, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1042. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.600000024, 1.4000001),CFrame = CFrame.new(-38.3999939, 6.90011501, -2.50000906, 1, 0, 0, 0, -4.1723689e-007, -1.00001574, 0, 1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  1043. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  1044. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.40006542, 2.90008354, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1045. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 0.400000006, 2),CFrame = CFrame.new(-38.4000015, 4.00004005, -0.799988449, 1, 0, 0, 0, 4.1723689e-007, 1.00001574, 0, -1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  1046. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  1047. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 0.700062752, 3.9100647e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1048. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.600000024, 1.4000001),CFrame = CFrame.new(-38.3999939, 1.099962, -2.50001287, -1, 0, 0, 0, -4.1723689e-007, 1.00001574, 0, 1.00001574, 4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  1049. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  1050. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -4.17232513e-007, 1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.40006924, -2.90000844, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1051. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(-38.3999939, 0.599947453, -2.90002894, -1, 0, 0, 0, 4.1723689e-007, -1.00001574, 0, -1.00001574, -4.1723689e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  1052. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  1053. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, -1.00000525, -4.17232513e-007),C1 = CFrame.new(-1.52587891e-005, 2.80008125, -3.40001774, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1054. Part = New("Part",Sword2,"Part",{BrickColor = BrickColor.new("Bright yellow"),Reflectance = 0.20000000298023,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(2, 1, 0.400000036),CFrame = CFrame.new(-38.4000015, 4.00004196, -1.90001178, 0, 0, 1, -1.00001574, 4.1723689e-007, 0, -4.1723689e-007, -1.00001574, 0),CanCollide = false,Color = Color3.new(0.960784, 0.803922, 0.188235),})
  1055. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(2, 2, 10),MeshId = "http://www.roblox.com/asset?id=156292343",MeshType = Enum.MeshType.FileMesh,})
  1056. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 0, -1.00000525, -4.17232513e-007, 0, 4.17232513e-007, -1.00000525, 1, 0, 0),C1 = CFrame.new(-2.0980835e-005, 1.80007458, 4.10079956e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1057. Hitbox2 = New("Part",Sword2,"Hitbox2",{Transparency = 1,Transparency = 1,Size = Vector3.new(0.400000006, 10.1999998, 4),CFrame = CFrame.new(-38.4000015, 4.00004196, -7.50000572, 1, 0, 0, 0, 4.17232513e-007, 1.00000525, 0, -1.00000525, 4.17232513e-007),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  1058. Mesh = New("BlockMesh",Hitbox2,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  1059. Weld = New("ManualWeld",Hitbox2,"Weld",{Part0 = Hitbox2,Part1 = Handle2Part,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 4.17232513e-007, -1.00000525, 0, 1.00000525, 4.17232513e-007),C1 = CFrame.new(-2.0980835e-005, 7.40001011, 4.10079956e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  1060.  
  1061. local att1 = Instance.new("Attachment",Hitbox)
  1062. att1.Position = Vector3.new(0,Hitbox.Size.Y/2,0)
  1063. local att2 = Instance.new("Attachment",Hitbox)
  1064. att2.Position = Vector3.new(0,-Hitbox.Size.Y/2,0)
  1065. local tr1 = Instance.new("Trail",Hitbox)
  1066. tr1.Color = ColorSequence.new(Color3.new(1,1,0))
  1067. tr1.Transparency = NumberSequence.new(0,1)
  1068. tr1.Lifetime = .5
  1069. tr1.Enabled = false
  1070. tr1.LightEmission = 1
  1071. tr1.Attachment0 = att1
  1072. tr1.Attachment1 = att2
  1073. local att3 = Instance.new("Attachment",Hitbox2)
  1074. att3.Position = Vector3.new(0,Hitbox2.Size.Y/2,0)
  1075. local att4 = Instance.new("Attachment",Hitbox2)
  1076. att4.Position = Vector3.new(0,-Hitbox2.Size.Y/2,0)
  1077. local tr2 = Instance.new("Trail",Hitbox2)
  1078. tr2.Color = ColorSequence.new(Color3.new(1,1,0))
  1079. tr2.Transparency = NumberSequence.new(0,1)
  1080. tr2.Lifetime = .5
  1081. tr2.Enabled = false
  1082. tr2.LightEmission = 1
  1083. tr2.Attachment0 = att3
  1084. tr2.Attachment1 = att4
  1085.  
  1086. Player=game:GetService('Players').LocalPlayer
  1087. Character=Player.Character
  1088. Mouse=Player:GetMouse()
  1089. m=Instance.new('Model',Character)
  1090.  
  1091. local function weldBetween(a, b)
  1092. local weldd = Instance.new("ManualWeld")
  1093. weldd.Part0 = a
  1094. weldd.Part1 = b
  1095. weldd.C0 = CFrame.new()
  1096. weldd.C1 = b.CFrame:inverse() * a.CFrame
  1097. weldd.Parent = a
  1098. return weldd
  1099. end
  1100.  
  1101. it=Instance.new
  1102.  
  1103. function nooutline(part)
  1104. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  1105. end
  1106.  
  1107. function paart(formfactor,parent,reflectance,transparency,brickcolor,name,size)
  1108. local fp=it("Part")
  1109. fp.formFactor=formfactor
  1110. fp.Parent=parent
  1111. fp.Reflectance=reflectance
  1112. fp.Transparency=transparency
  1113. fp.CanCollide=false
  1114. fp.Locked=true
  1115. fp.BrickColor=brickcolor
  1116. fp.Name=name
  1117. fp.Size=size
  1118. fp.Position=torso.Position
  1119. nooutline(fp)
  1120. fp.Material="SmoothPlastic"
  1121. fp:BreakJoints()
  1122. return fp
  1123. end
  1124.  
  1125.  
  1126. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  1127. local fp=it("Part")
  1128. fp.formFactor=formfactor
  1129. fp.Parent=parent
  1130. fp.Reflectance=reflectance
  1131. fp.Transparency=transparency
  1132. fp.CanCollide=false
  1133. fp.Locked=true
  1134. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  1135. fp.Name=name
  1136. fp.Size=size
  1137. fp.Position=Character.Torso.Position
  1138. nooutline(fp)
  1139. fp.Material=material
  1140. fp:BreakJoints()
  1141. return fp
  1142. end
  1143.  
  1144. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  1145. local mesh=it(Mesh)
  1146. mesh.Parent=part
  1147. if Mesh=="SpecialMesh" then
  1148. mesh.MeshType=meshtype
  1149. mesh.MeshId=meshid
  1150. end
  1151. mesh.Offset=offset
  1152. mesh.Scale=scale
  1153. return mesh
  1154. end
  1155.  
  1156. function weld(parent,part0,part1,c0,c1)
  1157. local weld=it("Weld")
  1158. weld.Parent=parent
  1159. weld.Part0=part0
  1160. weld.Part1=part1
  1161. weld.C0=c0
  1162. weld.C1=c1
  1163. return weld
  1164. end
  1165.  
  1166. function rayCast(Pos, Dir, Max, Ignore) -- Origin Position , Direction, MaxDistance , IgnoreDescendants
  1167. return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore)
  1168. end
  1169.  
  1170. so = function(id,par,vol,pit)
  1171. coroutine.resume(coroutine.create(function()
  1172. local sou = Instance.new("Sound",par or workspace)
  1173. sou.Volume=vol
  1174. sou.Pitch=pit or 1
  1175. sou.SoundId=id
  1176. sou.PlayOnRemove = true
  1177. sou:Destroy()
  1178. end))
  1179. end
  1180.  
  1181. Face=hed.face
  1182.  
  1183. function Cloak()
  1184. so("http://roblox.com/asset/?id=2767090",torso,1,1.1)
  1185. Face.Parent=nil
  1186. cloaked=true
  1187. for _,v in pairs(torso.Parent:children()) do
  1188. if v.className=="Part" and v.Name~="HumanoidRootPart" then
  1189. coroutine.resume(coroutine.create(function()
  1190. for i=0,1,0.2 do
  1191. swait()
  1192. v.Transparency=i
  1193. end
  1194. v.Transparency=1
  1195. end))
  1196. end
  1197. if v.className=="Hat" then
  1198. hatp=v.Handle
  1199. coroutine.resume(coroutine.create(function(derp)
  1200. for i=0,1,0.2 do
  1201. swait()
  1202. derp.Transparency=i
  1203. end
  1204. derp.Transparency=1
  1205. end),hatp)
  1206. end
  1207. end
  1208. for _,v in pairs(m:children()) do
  1209. if v.className=="Part" then
  1210. coroutine.resume(coroutine.create(function()
  1211. for i=0,1,0.2 do
  1212. swait()
  1213. v.Transparency=i
  1214. end
  1215. v.Transparency=1
  1216. end))
  1217. end
  1218. end
  1219. end
  1220. magix=true
  1221. function UnCloak()
  1222. so("http://roblox.com/asset/?id=2767090",torso,1,1.1)
  1223. Face.Parent=hed
  1224. cloaked=false
  1225. for _,v in pairs(torso.Parent:children()) do
  1226. if v.className=="Part" and v.Name~="HumanoidRootPart" then
  1227. coroutine.resume(coroutine.create(function()
  1228. for i=0,1,0.1 do
  1229. swait()
  1230. v.Transparency=v.Transparency-0.1
  1231. end
  1232. v.Transparency=0
  1233. end))
  1234. end
  1235. --[[if v.className~="Hat" then
  1236. hatp=v.Handle
  1237. coroutine.resume(coroutine.create(function(derp)
  1238. for i=0,1,0.1 do
  1239. swait()
  1240. derp.Transparency=derp.Transparency-0.1
  1241. end
  1242. derp.Transparency=0
  1243. end),hatp)
  1244. end]]
  1245. end
  1246. if magix==false then
  1247. for _,v in pairs(m:children()) do
  1248. if v.className=="Part" and v.Name~="hitbox" and v.Name~='tip' and v.Name~='hat' then
  1249. coroutine.resume(coroutine.create(function()
  1250. for i=0,1,0.1 do
  1251. swait()
  1252. v.Transparency=v.Transparency-0.1
  1253. end
  1254. v.Transparency=0
  1255. end))
  1256. v.Transparency=0
  1257. end
  1258. end
  1259. else
  1260. for _,v in pairs(m:children()) do
  1261. if v.className=="Part" and v.ClassName~='Weld' and v.Name~="hitbox" and v.Name~='tip' and v.Name~='hat'then
  1262. coroutine.resume(coroutine.create(function()
  1263. for i=0,1,0.1 do
  1264. swait()
  1265. v.Transparency=v.Transparency-0.1
  1266. end
  1267. v.Transparency=0
  1268. end))
  1269. v.Transparency=0
  1270. end
  1271. end
  1272. end
  1273. end
  1274.  
  1275.  
  1276. Damagefuncy=function(Part,hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
  1277. if hit.Parent==nil then
  1278. return
  1279. end
  1280. local h=hit.Parent:FindFirstChildOfClass("Humanoid")
  1281. for _,v in pairs(hit.Parent:children()) do
  1282. if v:IsA("Humanoid") then
  1283. h=v
  1284. end
  1285. end
  1286. if hit.Parent.Parent:FindFirstChild("Head")~=nil then
  1287. h=hit.Parent.Parent:FindFirstChildOfClass("Humanoid")
  1288. end
  1289. if hit.Parent:IsA("Accoutrement") then
  1290. hit=hit.Parent.Parent:findFirstChild("Head")
  1291. end
  1292. if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Head")~=nil then
  1293. if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end
  1294. --[[ if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then
  1295. return
  1296. end]]
  1297. -- hs(hit,1.2)
  1298. local c=Instance.new("ObjectValue")
  1299. c.Name="creator"
  1300. c.Value=game:service("Players").LocalPlayer
  1301. c.Parent=h
  1302. game:GetService("Debris"):AddItem(c,.5)
  1303. local Damage=math.random(minim,maxim)
  1304. -- h:TakeDamage(Damage)
  1305. local blocked=false
  1306. local block=hit.Parent:findFirstChild("Block")
  1307. if block~=nil then
  1308. print(block.className)
  1309. if block.className=="NumberValue" then
  1310. if block.Value>0 then
  1311. blocked=true
  1312. if decreaseblock==nil then
  1313. block.Value=block.Value-1
  1314. end
  1315. end
  1316. end
  1317. if block.className=="IntValue" then
  1318. if block.Value>0 then
  1319. blocked=true
  1320. if decreaseblock~=nil then
  1321. block.Value=block.Value-1
  1322. end
  1323. end
  1324. end
  1325. end
  1326. if h.Health == math.huge then
  1327. -- h:TakeDamage(Damage)
  1328. h.Parent:BreakJoints()
  1329. ShowDamage(h.Parent, "DEATH", 1.5, 0)
  1330. else
  1331. h.MaxHealth = 100
  1332. h.Health=h.Health-Damage
  1333. ShowDamage(h.Parent, -Damage, 1.5, 0)
  1334. end
  1335. if Type=="Knockdown" then
  1336. local hum=hit.Parent:FindFirstChildOfClass("Humanoid")
  1337. hum.PlatformStand=true
  1338. coroutine.resume(coroutine.create(function(HHumanoid)
  1339. swait(1)
  1340. HHumanoid.PlatformStand=false
  1341. end),hum)
  1342. local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
  1343. --hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
  1344. local bodvol=Instance.new("BodyVelocity")
  1345. bodvol.velocity=angle*knockback
  1346. bodvol.P=5000
  1347. bodvol.maxForce=Vector3.new(500000,500000,50000)
  1348. bodvol.Parent=hit
  1349. local rl=Instance.new("BodyAngularVelocity")
  1350. rl.P=3000
  1351. rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
  1352. rl.angularvelocity=Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
  1353. rl.Parent=hit
  1354. game:GetService("Debris"):AddItem(bodvol,.5)
  1355. game:GetService("Debris"):AddItem(rl,.5)
  1356. elseif Type=="Normal" then
  1357. local vp=Instance.new("BodyVelocity")
  1358. vp.P=500
  1359. vp.maxForce=Vector3.new(math.huge,0,math.huge)
  1360. -- vp.velocity=Character.Torso.CFrame.lookVector*Knockback
  1361. if KnockbackType==1 then
  1362. vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
  1363. elseif KnockbackType==2 then
  1364. vp.velocity=Property.CFrame.lookVector*knockback
  1365. end
  1366. if knockback>0 then
  1367. vp.Parent=hit.Parent.Head
  1368. end
  1369. game:GetService("Debris"):AddItem(vp,.5)
  1370. elseif Type=="Up" then
  1371. local bodyVelocity=Instance.new("BodyVelocity")
  1372. bodyVelocity.velocity=vt(0,60,0)
  1373. bodyVelocity.P=5000
  1374. bodyVelocity.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  1375. bodyVelocity.Parent=hit
  1376. game:GetService("Debris"):AddItem(bodyVelocity,1)
  1377. local rl=Instance.new("BodyAngularVelocity")
  1378. rl.P=3000
  1379. rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
  1380. rl.angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
  1381. rl.Parent=hit
  1382. game:GetService("Debris"):AddItem(rl,.5)
  1383. elseif Type=="Snare" then
  1384. local bp=Instance.new("BodyPosition")
  1385. bp.P=2000
  1386. bp.D=100
  1387. bp.maxForce=Vector3.new(math.huge,math.huge,math.huge)
  1388. bp.position=hit.Parent.Head.Position
  1389. bp.Parent=hit.Parent.Head
  1390. game:GetService("Debris"):AddItem(bp,1)
  1391. elseif Type=="Target" then
  1392. local Targetting = false
  1393. if Targetting==false then
  1394. ZTarget=hit.Parent.Head
  1395. coroutine.resume(coroutine.create(function(Part)
  1396. so("rbxassetid://15666462",Part,1,1.5)
  1397. swait(5)
  1398. so("rbxassetid://15666462",Part,1,1.5)
  1399. end),ZTarget)
  1400. local TargHum=ZTarget.Parent:FindFirstChildOfClass("Humanoid")
  1401. local targetgui=Instance.new("BillboardGui")
  1402. targetgui.Parent=ZTarget
  1403. targetgui.Size=UDim2.new(10,100,10,100)
  1404. local targ=Instance.new("ImageLabel")
  1405. targ.Parent=targetgui
  1406. targ.BackgroundTransparency=1
  1407. targ.Image="rbxassetid://4834067"
  1408. targ.Size=UDim2.new(1,0,1,0)
  1409. cam.CameraType="Scriptable"
  1410. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  1411. local dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  1412. workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  1413. Targetting=true
  1414. RocketTarget=ZTarget
  1415. for i=1,Property do
  1416. --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do
  1417. if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then
  1418. swait()
  1419. end
  1420. --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100)
  1421. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  1422. dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  1423. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0)
  1424. end
  1425. Targetting=false
  1426. RocketTarget=nil
  1427. targetgui.Parent=nil
  1428. cam.CameraType="Custom"
  1429. end
  1430. end
  1431. local debounce=Instance.new("BoolValue")
  1432. debounce.Name="DebounceHit"
  1433. debounce.Parent=hit.Parent
  1434. debounce.Value=true
  1435. game:GetService("Debris"):AddItem(debounce,Delay)
  1436. c=Instance.new("ObjectValue")
  1437. c.Name="creator"
  1438. c.Value=Player
  1439. c.Parent=h
  1440. game:GetService("Debris"):AddItem(c,.5)
  1441. end
  1442. end
  1443.  
  1444.  
  1445. function ShowDamage(Dude, Text, Time, Color)
  1446. coroutine.resume(coroutine.create(function()
  1447. local naeeym2 = Instance.new("BillboardGui",Dude)
  1448. naeeym2.Size = UDim2.new(0,100,0,40)
  1449. naeeym2.StudsOffset = Vector3.new(0,3,0)
  1450. naeeym2.Adornee = Dude.Head
  1451. naeeym2.Name = "TalkingBillBoard"
  1452. local tecks2 = Instance.new("TextLabel",naeeym2)
  1453. tecks2.BackgroundTransparency = 1
  1454. tecks2.BorderSizePixel = 0
  1455. tecks2.Text = Text
  1456. tecks2.Font = "Fantasy"
  1457. tecks2.TextSize = 24
  1458. tecks2.TextStrokeTransparency = 0
  1459. tecks2.TextColor3 = Color3.new(1,1,0)
  1460. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  1461. tecks2.Size = UDim2.new(1,0,0.5,0)
  1462. swait(10)
  1463. for i = 0,1,.05 do
  1464. swait()
  1465. tecks2.Position = tecks2.Position - UDim2.new(0,0,.005,0)
  1466. tecks2.TextStrokeTransparency = i
  1467. tecks2.TextTransparency = i
  1468. end
  1469. naeeym2:Destroy()
  1470. end))
  1471. end
  1472.  
  1473. handle=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Deep orange","Handle",Vector3.new(0,0,0))
  1474. handleweld=weld(m,Character["Right Arm"],handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.01841354, -0.0695610046, 0.049372673, -6.61965621e-012, -0.999999523, -1.12313298e-010, 0.00563658308, 1.10681131e-010, -0.999983788, 0.999983311, -8.65419195e-012, 0.00563658029))
  1475.  
  1476. hitsounds={"444667824","444667844","444667859"}
  1477.  
  1478. function MagniDamage(Part,dis,mind,maxd,force,knock)
  1479. for _,c in pairs(workspace:GetDescendants()) do
  1480. local huma=c:FindFirstChildOfClass("Humanoid")
  1481. if huma~=nil then
  1482. local head=c:findFirstChild("Head")
  1483. if head~=nil then
  1484. local targ=head.Position-Part.Position
  1485. local mag=targ.magnitude
  1486. if mag<=dis and c.Name~=Character.Name then
  1487. Damagefuncy(Part,huma.Parent.Head,mind,maxd,force,knock,RootPart,.2,1)
  1488. end
  1489. end
  1490. end
  1491. end
  1492. end
  1493.  
  1494. -----------------------------------------------------------------------------------------------------------------------------------------------------------
  1495. pt = {0.7, 0.8, 0.9}
  1496. mouse.KeyDown:connect(function(key)
  1497.  
  1498. if key == "h" then
  1499. if Debounces.CanJoke == true then
  1500. Debounces.CanJoke = false
  1501. u = Instance.new("Sound")
  1502. u.SoundId = "rbxassetid://138199573"
  1503. u.Parent = char
  1504. u.Looped = false
  1505. u.Pitch = pt[math.random(1,#pt)]
  1506. u.Volume = 1
  1507.  
  1508. u2 = Instance.new("Sound")
  1509. u2.SoundId = "rbxassetid://138199573"
  1510.  
  1511. u2.Parent = char
  1512. u2.Looped = false
  1513. u2.Pitch = u.Pitch
  1514. u2.Volume = 1
  1515.  
  1516. swait(.01)
  1517. u:Play()
  1518. u2:Play()
  1519. swait(6)
  1520. u:Destroy()
  1521.  
  1522. u2:Destroy()
  1523. if Debounces.CanJoke == false then
  1524. Debounces.CanJoke = true
  1525.  
  1526. end
  1527. end
  1528. end
  1529. end)
  1530. -----------------------------------------------------------------------------------------------------------------------------------------------------------
  1531. mouse.KeyDown:connect(function(key)
  1532. if key == "j" then
  1533. if Debounces.CanJoke == true then
  1534.  
  1535. Debounces.CanJoke = false
  1536. z = Instance.new("Sound",char)
  1537. z.SoundId = "rbxassetid://135017755"
  1538. z.Pitch = .76
  1539. z.Volume = 1
  1540.  
  1541. swait()
  1542. z:Play()
  1543. swait(6)
  1544.  
  1545. z:Destroy()
  1546. if Debounces.CanJoke == false then
  1547. Debounces.CanJoke = true
  1548. end
  1549. end
  1550. end
  1551. end)
  1552. -----------------------------------------------------------------------------------------------------------------------------------------------------------
  1553. mouse.KeyDown:connect(function(key)
  1554. if key == "k" then
  1555.  
  1556. if Debounces.CanJoke == true then
  1557. Debounces.CanJoke = false
  1558.  
  1559. z = Instance.new("Sound",char)
  1560. z.SoundId = "rbxassetid://135017578"
  1561. z.Pitch = .76
  1562. z.Volume = 1
  1563. swait()
  1564.  
  1565. z:Play()
  1566. swait(4)
  1567. z:Destroy()
  1568. if Debounces.CanJoke == false then
  1569. Debounces.CanJoke = true
  1570. end
  1571.  
  1572. end
  1573. end
  1574. end)
  1575. -----------------------------------------------------------------------------------------------------------------------------------------------------------
  1576. function FindNearestTorso(Position,Distance,SinglePlayer)
  1577.  
  1578. if SinglePlayer then return(SinglePlayer.Head.CFrame.p -Position).magnitude < Distance end
  1579. local
  1580. List = {}
  1581. for i,v in pairs(workspace:GetDescendants())do
  1582. if v:IsA("Model")then
  1583.  
  1584. if v:findFirstChild("Head")then
  1585. if v ~= char then
  1586. if (v.Head.Position -Position).magnitude <= Distance then
  1587. table.insert(List,v)
  1588.  
  1589. end
  1590. end
  1591. end
  1592. end
  1593. end
  1594. return List
  1595. end
  1596.  
  1597. mod3 = Instance.new("Model",rleg)
  1598. function Pound()
  1599. local part=Instance.new('Part',mod3)
  1600. part.Anchored=true
  1601.  
  1602. part.CanCollide=false
  1603. part.FormFactor='Custom'
  1604. part.Size=Vector3.new(.2,.2,.2)
  1605.  
  1606. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  1607. part.Transparency=.7
  1608.  
  1609. part.BrickColor=BrickColor.new('Bright green')
  1610. local mesh=Instance.new('SpecialMesh',part)
  1611.  
  1612. mesh.MeshId='rbxassetid://3270017'
  1613. mesh.Scale=Vector3.new(25,25,25)
  1614. part2=part:clone()
  1615. part2.Parent=mod3
  1616. part2.BrickColor=BrickColor.new('Bright green')
  1617. mesh2=mesh:clone()
  1618.  
  1619. mesh2.Parent=part2
  1620. mesh2.Scale=Vector3.new(15,15,15)
  1621. part3=part:clone()
  1622. part3.Parent=mod3
  1623.  
  1624. part3.TopSurface=0
  1625. part3.BottomSurface=0
  1626. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  1627.  
  1628. mesh3=Instance.new('SpecialMesh',part3)
  1629. mesh3.MeshType = 3
  1630. mesh3.Scale=Vector3.new(12,12,12)
  1631. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  1632. if v:FindFirstChildOfClass('Humanoid') then
  1633.  
  1634. v:FindFirstChildOfClass("Humanoid"):TakeDamage(math.random(50,120))
  1635. v:FindFirstChildOfClass("Humanoid").PlatformStand = true
  1636.  
  1637. v:FindFirstChild("Head").Velocity = hed.CFrame.lookVector * 100
  1638. end
  1639. end
  1640. coroutine.resume(coroutine.create(function()
  1641. for i=0,3.8,0.05 do
  1642. swait()
  1643. part.CFrame=part.CFrame
  1644.  
  1645. part.Transparency=i
  1646. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  1647.  
  1648. part2.CFrame=part2.CFrame
  1649. part2.Transparency=i
  1650. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1651. part3.CFrame=part3.CFrame
  1652. part3.Transparency=i
  1653.  
  1654. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  1655. end
  1656. end))
  1657. end
  1658.  
  1659. -----------------------------------------------------------------------------------------------------------------------------------------------------------
  1660. sidz = {"231917888", "231917845", "231917806"}
  1661. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  1662. -----------------------------------------------------------------------------------------------------------------------------------------------------
  1663. function attackone()
  1664. attack = true
  1665. tr1.Enabled = true
  1666. local bounce=false
  1667. local con=Hitbox.Touched:connect(function(hit) Damagefuncy(Hitbox,hit,30,35,20,"Normal",RootPart,.2,1) end)
  1668. local fx=Hitbox.Touched:connect(function(part)
  1669. local human=part.Parent:FindFirstChildOfClass("Humanoid")
  1670. if human~=nil and bounce==false then
  1671. local rndm=math.random(1,#hitsounds)
  1672. local r=rndm
  1673. so("rbxassetid://"..hitsounds[r],part,1,1.1)
  1674. bounce=true
  1675. end
  1676. end)
  1677. for i = 0,1,0.05 do
  1678. swait()
  1679. torso.Weld.C0 = clerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.2)
  1680. hed.Weld.C0 = clerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0)), 0.2)
  1681. rarm.Weld.C0 = clerp(rarm.Weld.C0, CFrame.new(3, 1, -1)*CFrame.Angles(math.rad(0),math.rad(-120),math.rad(-120)), 0.2)
  1682. larm.Weld.C0 = clerp(larm.Weld.C0, CFrame.new(-3, 0.5, 0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-30)), 0.2)
  1683. lleg.Weld.C0 = clerp(lleg.Weld.C0, CFrame.new(-.5, -1, -.5) * CFrame.Angles(math.rad(0), math.rad(50), math.rad(0)), 0.2)
  1684. rleg.Weld.C0 = clerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.2)
  1685. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1686. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1687. end
  1688. so("rbxassetid://200633108",Hitbox,1,1)
  1689. for i = 0,1,0.05 do
  1690. swait()
  1691. torso.Weld.C0 = clerp(torso.Weld.C0, CFrame.new(0, -2, 0) * CFrame.Angles(math.rad(-20), math.rad(90), math.rad(0)), 0.2)
  1692. hed.Weld.C0 = clerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(20), math.rad(-80), math.rad(20)), 0.2)
  1693. rarm.Weld.C0 = clerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, -0.5)*CFrame.Angles(math.rad(0),math.rad(-20),math.rad(-70)), 0.2)
  1694. larm.Weld.C0 = clerp(larm.Weld.C0, CFrame.new(-3, 0.5, 0)*CFrame.Angles(math.rad(-30),math.rad(0),math.rad(-40)), 0.2)
  1695. lleg.Weld.C0 = clerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0)), 0.2)
  1696. rleg.Weld.C0 = clerp(rleg.Weld.C0, CFrame.new(.5, -.2, 0) * CFrame.Angles(math.rad(20), math.rad(-40), math.rad(0)), 0.2)
  1697. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1698. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1699. torso.Velocity=hed.CFrame.lookVector*50
  1700. end
  1701. bounce = false
  1702. attack = false
  1703. tr1.Enabled = false
  1704. con:disconnect()
  1705. fx:disconnect()
  1706. end
  1707.  
  1708. function attacktwo()
  1709. attack = true
  1710. tr2.Enabled = true
  1711. local bounce=false
  1712. local con=Hitbox2.Touched:connect(function(hit) Damagefuncy(Hitbox,hit,30,35,20,"Normal",RootPart,.2,1) end)
  1713. local fx=Hitbox2.Touched:connect(function(part)
  1714. local human=part.Parent:FindFirstChildOfClass("Humanoid")
  1715. if human~=nil and bounce==false then
  1716. local rndm=math.random(1,#hitsounds)
  1717. local r=rndm
  1718. so("rbxassetid://"..hitsounds[r],part,1,1.1)
  1719. bounce=true
  1720. end
  1721. end)
  1722. for i = 0,1,0.05 do
  1723. swait()
  1724. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -1, 0, 0.76604414, 0, 0.642788053, 0, 1, 0, -0.642788053, 0, 0.76604414),0.2)
  1725. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.49999762, 0, 0.76604414, 0, -0.642788053, 0, 1, 0, 0.642788053, 0, 0.76604414),0.2)
  1726. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(2.67101336, 0.819152713, 0.469846457, 0.819151878, -0.328989595, -0.469846994, 0, 0.819152713, -0.573575556, 0.573576689, 0.469845504, 0.671010554),0.2)
  1727. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-2.79609966, 1.34204602, 0.312001765, 0.342020601, 0.813796937, -0.469847471, 0.163174942, -0.543839157, -0.82317251, -0.925416648, 0.204874605, -0.318795472),0.2)
  1728. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.458770216, -1.03755641, -0.145027742, 0.962250113, -0.0841860771, -0.258819669, 0.0871560052, 0.99619472, 5.72622014e-07, 0.257834792, -0.0225582384, 0.965925813),0.2)
  1729. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.342570782, -1.0462718, 0.0575165227, 0.992403865, 0.086824283, -0.0871561468, -0.0871559754, 0.99619472, -5.15848114e-07, 0.0868244767, 0.00759669393, 0.99619478),0.2)
  1730. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1731. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1732. end
  1733. so("rbxassetid://200633108",Hitbox2,1,1.2)
  1734. for i = 0,1,0.05 do
  1735. swait()
  1736. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(-0.203827426, -1.21008384, -0.0384389758, 0.819151819, 0.196174368, -0.538986087, 0.196174949, 0.787200034, 0.58466363, 0.538985908, -0.584663749, 0.606351912),0.2)
  1737. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0.122252293, 1.31853759, -0.276165873, 0.819151819, 2.5331974e-07, 0.573576927, 0.196174368, 0.939692736, -0.280166209, -0.538986087, 0.342019737, 0.769751072),0.2)
  1738. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(2.59442329, 0.707103193, 0.579228044, 0.819152713, -0.405579627, -0.405578852, 1.49011612e-07, 0.707106292, -0.707107306, 0.573575735, 0.57922864, 0.579228103),0.2)
  1739. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-1.74495482, 0.833990872, -1.27550232, 0.381696373, -0.816034853, 0.434045017, 0.915826738, 0.270512044, -0.29679063, 0.124777108, 0.510793924, 0.850600123),0.2)
  1740. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.281859696, -0.866708279, -0.129601955, 0.984807611, -1.93715096e-07, 0.173648983, 0.0593913645, 0.939693272, -0.336822629, -0.163176626, 0.342018783, 0.925417125),0.2)
  1741. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.500005782, -0.999995232, 3.7848954e-06, 1.00000012, 0, 5.96046448e-08, 0, 1, 0, 5.96046448e-08, 0, 1.00000024),0.2)
  1742. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1743. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1744. end
  1745. bounce = false
  1746. attack = false
  1747. tr2.Enabled = false
  1748. con:disconnect()
  1749. fx:disconnect()
  1750. end
  1751.  
  1752. function attackthree()
  1753. attack = true
  1754. tr1.Enabled = true
  1755. tr2.Enabled = true
  1756. local bounce=false
  1757. local con=Hitbox.Touched:connect(function(hit) Damagefuncy(Hitbox,hit,30,35,0,"Normal",RootPart,.2,1) end)
  1758. local fx=Hitbox.Touched:connect(function(part)
  1759. local human=part.Parent:FindFirstChildOfClass("Humanoid")
  1760. if human~=nil and bounce==false then
  1761. local rndm=math.random(1,#hitsounds)
  1762. local r=rndm
  1763. so("rbxassetid://"..hitsounds[r],part,1,1.1)
  1764. bounce=true
  1765. end
  1766. end)
  1767. local con2=Hitbox2.Touched:connect(function(hit) Damagefuncy(Hitbox2,hit,30,35,0,"Normal",RootPart,.2,1) end)
  1768. local fx2=Hitbox2.Touched:connect(function(part)
  1769. local human=part.Parent:FindFirstChildOfClass("Humanoid")
  1770. if human~=nil and bounce==false then
  1771. local rndm=math.random(1,#hitsounds)
  1772. local r=rndm
  1773. so("rbxassetid://"..hitsounds[r],part,1,1.1)
  1774. bounce=true
  1775. end
  1776. end)
  1777. for i = 0,1,0.05 do
  1778. swait()
  1779. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -0.981089413, -0.0405538678, 1, 0, 0, 0, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849),0.2)
  1780. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.49999237, 1.90734886e-06, 1, 0, 0, 0, 1.00000012, 0, 0, 0, 1.00000012),0.2)
  1781. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(3.00000381, 1.66030884, 0.157980233, 1, 0, 0, 0, -0.939692676, 0.342020601, -0, -0.342020601, -0.939692676),0.2)
  1782. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-3.00000381, 1.66030884, 0.157980233, 1, 0, 0, 0, -0.939692676, 0.342020601, -0, -0.342020601, -0.939692676),0.2)
  1783. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.500003815, -0.958749056, -0.0285422206, 1, 0, 0, 0, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849),0.2)
  1784. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.500003815, -0.0491099358, -1.20436454, 1, 0, 0, 0, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849),0.2)
  1785. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1786. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1787. end
  1788. so("rbxassetid://200633108",Hitbox,1,.8)
  1789. so("rbxassetid://200633108",Hitbox2,1,.8)
  1790. hum.WalkSpeed = 0
  1791. for i = 0,1,0.05 do
  1792. swait()
  1793. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -2.40777826, -2.10689402, 1, 0, 0, 0, 0.707106352, 0.707107365, 0, -0.707107365, 0.707106352),0.2)
  1794. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.49999464, -9.53674544e-07, 1, 0, 0, 0, 1.00000024, 0, 0, 0, 1.00000024),0.2)
  1795. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(3.00000381, 0.878923059, -0.513975859, 1, 0, 0, 0, 0.258819491, -0.965925813, 0, 0.965925813, 0.258819491),0.2)
  1796. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-3.00000381, 0.878923059, -0.513975859, 1, 0, 0, 0, 0.258819491, -0.965925813, 0, 0.965925813, 0.258819491),0.2)
  1797. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.500003815, -0.958748817, -0.0285497308, 1, 0, 0, 0, 0.984807849, 0.173648387, 0, -0.173648387, 0.984807849),0.2)
  1798. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.500003815, 0.602716327, 0.377233386, 1, 0, 0, 0, 0.707106352, -0.707107365, 0, 0.707107365, 0.707106352),0.2)
  1799. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(140),0,0),0.2)
  1800. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(140),0,0),0.2)
  1801. end
  1802. local prt=part(3,workspace,"SmoothPlastic",0,0,"Light stone grey","Effect",vt(0.5,0.5,0.5))
  1803. prt.Anchored=true
  1804. prt.CFrame=RootPart.CFrame * CFrame.new(0,-6,-15)
  1805. msh=mesh("SpecialMesh",prt,"FileMesh","rbxassetid://20329976",vt(0,0,0),vt(1,1,1))
  1806. game:GetService("Debris"):AddItem(prt,2)
  1807. so("rbxassetid://133680244",prt,1,1)
  1808. MagniDamage(prt,10,30,40,50,"Normal")
  1809. coroutine.resume(coroutine.create(function(Part,Mesh)
  1810. for i=0,1,.025 do
  1811. swait()
  1812. Part.CFrame=Part.CFrame
  1813. Part.Transparency=i
  1814. Mesh.Scale=vt(20*i,30*i,20*i)
  1815. end
  1816. Part:Destroy()
  1817. end),prt,msh)
  1818. swait(30)
  1819. hum.WalkSpeed = 40
  1820. bounce = false
  1821. attack = false
  1822. tr1.Enabled = false
  1823. tr2.Enabled = false
  1824. con:disconnect()
  1825. fx:disconnect()
  1826. con2:disconnect()
  1827. fx2:disconnect()
  1828. end
  1829.  
  1830. function WaveEffect2(brickcolor,cframe,x1,y1,z1,x3,y3,z3,delay)
  1831. local prt=part(3,workspace,"SmoothPlastic",0,0,brickcolor,"Effect",vt(0.5,0.5,0.5))
  1832. prt.Anchored=true
  1833. prt.CFrame=cframe
  1834. msh=mesh("SpecialMesh",prt,"FileMesh","rbxassetid://20329976",vt(0,0,0),vt(x1,y1,z1))
  1835. game:GetService("Debris"):AddItem(prt,2)
  1836. coroutine.resume(coroutine.create(function(Part,Mesh)
  1837. for i=0,1,delay do
  1838. swait()
  1839. Part.CFrame=Part.CFrame
  1840. Part.Transparency=i
  1841. Mesh.Scale=Mesh.Scale+vt(x3,y3,z3)
  1842. end
  1843. Part.Parent=nil
  1844. end),prt,msh)
  1845. end
  1846. --example: WaveEffect2(BrickColor.new(""),ExamplePart.CFrame,0,0,0,0,0,0,0.02)
  1847.  
  1848. function Stomp()
  1849. attack = true
  1850. hum.WalkSpeed = 40
  1851. local con=lleg.Touched:connect(function(hit) Damagefuncy(Hitbox,hit,50,90,math.random(50,100),"Normal",RootPart,.2,1) end)
  1852. for i = 0,1,0.02 do
  1853. swait()
  1854. torso.Weld.C0 = clerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  1855. hed.Weld.C0 = clerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  1856. rarm.Weld.C0 = clerp(rarm.Weld.C0, CFrame.new(3, 1, -0.5)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  1857. larm.Weld.C0 = clerp(larm.Weld.C0, CFrame.new(-3, 0.5, 0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-20)), 0.2)
  1858. lleg.Weld.C0 = clerp(lleg.Weld.C0, CFrame.new(-.5, .5, -2) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  1859. rleg.Weld.C0 = clerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-20), math.rad(0)), 0.2)
  1860. handleweld.C0=clerp(handleweld.C0,cf(0,0,.8)*angles(math.rad(80),math.rad(0),math.rad(0)),.2)
  1861. end
  1862. so("http://roblox.com/asset/?id=200632875",lleg,1,.8)
  1863. MagniDamage(lleg,30,30,50,math.random(50,100),"Knockdown")
  1864. for i = 0,1,0.02 do
  1865. swait()
  1866. torso.Weld.C0 = clerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  1867. hed.Weld.C0 = clerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0)), 0.2)
  1868. rarm.Weld.C0 = clerp(rarm.Weld.C0, CFrame.new(3, 1, -0.5)*CFrame.Angles(math.rad(100),math.rad(0),math.rad(30)), 0.2)
  1869. larm.Weld.C0 = clerp(larm.Weld.C0, CFrame.new(-3, 0.8, 0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-40)), 0.2)
  1870. lleg.Weld.C0 = clerp(lleg.Weld.C0, CFrame.new(-.5, -1, -1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  1871. rleg.Weld.C0 = clerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-20), math.rad(0)), 0.2)
  1872. handleweld.C0=clerp(handleweld.C0,cf(0,0,.8)*angles(math.rad(80),math.rad(0),math.rad(0)),.2)
  1873. end
  1874. hum.WalkSpeed = 40
  1875. attack = false
  1876. con:disconnect()
  1877. end
  1878.  
  1879. function jumpcrash()
  1880. attack = true
  1881. local totrans = {}
  1882. for i, v in pairs(chara:GetDescendants()) do
  1883. if v:IsA("BasePart") and v.Transparency~=1 and (v.Parent.Name == "Swerdd" or v.Parent.Name == "Swerdd2") then
  1884. table.insert(totrans,v)
  1885. end
  1886. end
  1887. for i = 0,1,0.05 do
  1888. swait()
  1889. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -2.07938623, -0.215961874, 1, 0, 0, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736),0.2)
  1890. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.49999332, -1.95205189e-06, 1, 0, 0, 0, 1, -2.98023224e-08, 0, -2.98023224e-08, 1),0.2)
  1891. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(2.87674665, 1.40883017, -2.1907972e-06, 0.642787933, -0.766044259, 5.83090468e-07, 0.766044259, 0.642787993, 3.57627869e-07, -6.55651093e-07, 2.08616257e-07, 1),0.2)
  1892. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-2.9700532, 1.28027523, -1.7319386e-06, 0.76604414, 0.642788053, -1.47465983e-07, -0.642788172, 0.76604414, 9.53674316e-07, 7.59959221e-07, -6.70552254e-07, 1),0.2)
  1893. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.500003815, -0.382654905, -0.418883741, 1, 0, 0, 0, 0.965926051, 0.258818388, 0, -0.258818418, 0.965926051),0.2)
  1894. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.500003815, 0.427898169, -1.05957127, 1, 0, 0, 0, 0.939692736, -0.342019916, 0, 0.342019886, 0.939692736),0.2)
  1895. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1896. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1897. end
  1898. for i = 0,1,.1 do
  1899. swait()
  1900. for a=1,#totrans do
  1901. totrans[a].Transparency = i
  1902. end
  1903. end
  1904. for a=1,#totrans do
  1905. totrans[a].Transparency = 1
  1906. end
  1907. hum.Jump = true
  1908. torso.Velocity=Vector3.new(0,250,0)
  1909. so("rbxassetid://169445602",torso,1,.8)
  1910. WaveEffect2(BrickColor.new("Light stone grey"),RootPart.CFrame*CFrame.new(0,-6,0),0,2,0,1,.1,1,0.02)
  1911. for i = 0,1,0.05 do
  1912. swait()
  1913. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),0.2)
  1914. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.5904572, -0.513034284, 1, 0, 0, 0, 0.939691663, -0.342022896, 0, 0.342022866, 0.939691663),0.2)
  1915. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(3.00000381, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),0.2)
  1916. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-3.00000381, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),0.2)
  1917. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.500003815, -0.999994755, -0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),0.2)
  1918. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.500003815, -0.253982782, -2.45407104, 1, 0, 0, 0, 0.819151819, 0.573576868, 0, -0.573576868, 0.819151819),0.2)
  1919. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1920. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1921. end
  1922. repeat swait() until torso.Velocity.Y < 0
  1923. for i = 0,1,0.05 do
  1924. swait()
  1925. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -0.718287945, -0.117925644, 1, 0, 0, 0, -1, 0, 0, 0, -1),0.2)
  1926. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.59045744, -0.513035238, 1, 0, 0, 0, 0.939691663, -0.342022896, 0, 0.342022866, 0.939691663),0.2)
  1927. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(2.90000343, 1.70000029, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1),0.2)
  1928. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-2.84641528, 1.06602693, 0, 0.866025388, 0.500000238, 0, -0.500000238, 0.866025388, 0, 0, 0, 1),0.2)
  1929. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.500003815, -0.999994278, -0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),0.2)
  1930. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.500003815, -0.253981829, -2.45406961, 1, 0, 0, 0, 0.819151819, 0.573576868, 0, -0.573576868, 0.819151819),0.2)
  1931. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1932. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1933. end
  1934. local hit, hitpos
  1935. repeat swait() hit,hitpos = rayCast(rarm.Position,Vector3.new(0,-1,0),3,chara) until hit
  1936. hum.WalkSpeed = 0
  1937. so("rbxassetid://168586621",torso,1,.5)
  1938. MagniDamage(RootPart,50,60,70,100,"Knockdown")
  1939. WaveEffect2(BrickColor.new("Light stone grey"),CFrame.new(hitpos),0,0,0,5,1,5,0.01)
  1940. WaveEffect2(BrickColor.new("Light stone grey"),CFrame.new(hitpos),0,0,0,1,3,1,0.01)
  1941. for i = 1, 8 do
  1942. local size = math.random(5,8)
  1943. local p = Instance.new("Part",workspace)
  1944. p.BrickColor = hit.BrickColor
  1945. p.Material = hit.Material
  1946. p.Size = Vector3.new(size,size,size)
  1947. p.CFrame = cf(hitpos) * CFrame.fromEulerAnglesXYZ(math.rad(math.random(0,360)),math.rad(math.random(0,360)),math.rad(math.random(0,360)))
  1948. p.CanCollide = false
  1949. p.Velocity = Vector3.new(math.random(-30,30),100,math.random(-30,30))
  1950. coroutine.resume(coroutine.create(function()
  1951. swait(10)
  1952. p.CanCollide = true
  1953. swait(290)
  1954. for i = 1, 20 do
  1955. swait()
  1956. p.Transparency = i/20
  1957. end
  1958. p:Destroy()
  1959. end))
  1960. end
  1961. for i = 1, 15 do
  1962. local size = math.random(6,10)
  1963. local gtrace = Instance.new("Part",game.Workspace)
  1964. gtrace.BrickColor = hit.BrickColor
  1965. gtrace.Material = hit.Material
  1966. gtrace.Size = Vector3.new(size,size,size)
  1967. gtrace.Anchored = true
  1968. gtrace.CanCollide = false
  1969. gtrace.CFrame = (CFrame.new(hitpos) + Vector3.new(math.random(-40,40),0,math.random(-40,40))) * CFrame.fromEulerAnglesXYZ(math.random(0,math.rad(359)),math.random(0,math.rad(359)),math.random(0,math.rad(359)))
  1970. coroutine.wrap(function()
  1971. swait(300)
  1972. for i = 0,1,.02 do
  1973. swait()
  1974. gtrace.Transparency = i
  1975. end
  1976. gtrace:Destroy()
  1977. end)()
  1978. end
  1979. for i = 0,1,0.05 do
  1980. swait()
  1981. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -2.40777755, 0.0931118727, 1, 0, 0, 0, 0.707106352, 0.707107365, 0, -0.707107365, 0.707106352),0.2)
  1982. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.49999464, -3.81469818e-06, 1, 0, 0, 0, 1.00000024, 0, 0, 0, 1.00000024),0.2)
  1983. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(2.69854689, 1.15486741, 0.515881181, -0.422619194, -0.906307399, 1.245813e-06, 0.234567285, -0.109382153, -0.965926468, 0.875426412, -0.408218771, 0.258817047),0.2)
  1984. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-2.63207531, 1.10876274, 0.343787134, -0.342020005, 0.939692676, 9.03882267e-07, -0.243212283, -0.0885210633, -0.965925455, -0.907672942, -0.330366075, 0.258820832),0.2)
  1985. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.500003815, -0.958748817, -0.0285506546, 1, 0, 0, 0, 0.984807849, 0.173648387, 0, -0.173648387, 0.984807849),0.2)
  1986. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.500003815, 0.602716327, 0.377233386, 1, 0, 0, 0, 0.707106352, -0.707107365, 0, 0.707107365, 0.707106352),0.2)
  1987. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1988. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  1989. end
  1990. swait(50)
  1991. for i = 0,1,.1 do
  1992. swait()
  1993. for a=1,#totrans do
  1994. totrans[a].Transparency = 1-i
  1995. end
  1996. end
  1997. for a=1,#totrans do
  1998. totrans[a].Transparency = 0
  1999. end
  2000. hum.WalkSpeed = 40
  2001. attack = false
  2002. end
  2003.  
  2004. function stompu()
  2005. attack = true
  2006. hum.WalkSpeed = 0
  2007. for i = 0,1,0.05 do
  2008. swait()
  2009. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -1.20757937, 0.0385264456, 1, 0, 0, 0, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872),0.2)
  2010. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.49998856, -1.90734863e-06, 1, 0, 0, 0, 1, 0, 0, 0, 1),0.2)
  2011. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(2.74660301, 1.21556783, 0.522809684, -0.422619998, -0.234569043, -0.875425518, 0.234569445, 0.904702783, -0.355654538, 0.875425339, -0.355654776, -0.327322811),0.2)
  2012. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-2.96072102, 0.871414125, 0.531216323, -0.342019916, 0.243210256, 0.907673538, -0.243210316, 0.910101831, -0.335504889, -0.907673538, -0.335504889, -0.252121687),0.2)
  2013. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.500003815, -0.958748579, -0.0285462439, 1, 0, 0, 0, 0.984807789, 0.173647881, 0, -0.173647881, 0.984807789),0.2)
  2014. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.500003815, 1.43582165, -2.26503468, 1, 0, 0, 0, 0.984807789, 0.173647881, 0, -0.173647881, 0.984807789),0.2)
  2015. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2016. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2017. end
  2018. swait(30)
  2019. so("rbxassetid://142070127",torso,1,.8)
  2020. local hit,hitpos = rayCast(RootPart.Position,Vector3.new(0,-1,0),999,char)
  2021. hitpos = hitpos + RootPart.CFrame.lookVector*5
  2022. MagniDamage(RootPart,20,40,50,100,"Knockdown")
  2023. WaveEffect2(BrickColor.new("Light stone grey"),CFrame.new(hitpos),0,0,0,1,.5,1,0.025)
  2024. WaveEffect2(BrickColor.new("Light stone grey"),CFrame.new(hitpos),0,0,0,.5,1,.5,0.025)
  2025. for i = 1, 4 do
  2026. local size = math.random(5,6)
  2027. local p = Instance.new("Part",workspace)
  2028. p.BrickColor = hit.BrickColor
  2029. p.Material = hit.Material
  2030. p.Size = Vector3.new(size,size,size)
  2031. p.CFrame = cf(hitpos) * CFrame.fromEulerAnglesXYZ(math.rad(math.random(0,360)),math.rad(math.random(0,360)),math.rad(math.random(0,360)))
  2032. p.CanCollide = false
  2033. p.Velocity = Vector3.new(math.random(-30,30),100,math.random(-30,30))
  2034. coroutine.resume(coroutine.create(function()
  2035. swait(10)
  2036. p.CanCollide = true
  2037. swait(290)
  2038. for i = 1, 20 do
  2039. swait()
  2040. p.Transparency = i/20
  2041. end
  2042. p:Destroy()
  2043. end))
  2044. end
  2045. for i = 1, 10 do
  2046. local size = math.random(4,6)
  2047. local gtrace = Instance.new("Part",game.Workspace)
  2048. gtrace.BrickColor = hit.BrickColor
  2049. gtrace.Material = hit.Material
  2050. gtrace.Size = Vector3.new(size,size,size)
  2051. gtrace.Anchored = true
  2052. gtrace.CanCollide = false
  2053. gtrace.CFrame = (CFrame.new(hitpos) + Vector3.new(math.random(-20,20),0,math.random(-20,20))) * CFrame.fromEulerAnglesXYZ(math.random(0,math.rad(359)),math.random(0,math.rad(359)),math.random(0,math.rad(359)))
  2054. coroutine.wrap(function()
  2055. swait(300)
  2056. for i = 0,1,.02 do
  2057. swait()
  2058. gtrace.Transparency = i
  2059. end
  2060. gtrace:Destroy()
  2061. end)()
  2062. end
  2063. for i = 0,1,0.05 do
  2064. swait()
  2065. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -2.40777826, -3.20689249, 1, 0, 0, 0, 0.707106352, 0.707107365, 0, -0.707107365, 0.707106352),0.2)
  2066. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.49999273, 9.53674544e-07, 1, 0, 0, 0, 1.00000024, 0, 0, 0, 1.00000024),0.2)
  2067. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(2.69854784, 1.15486526, 0.515879989, -0.422619194, -0.906307399, 1.245813e-06, 0.234567285, -0.109382153, -0.965926468, 0.875426412, -0.408218771, 0.258817047),0.2)
  2068. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-2.63207531, 1.10876179, 0.343787372, -0.342020005, 0.939692676, 9.03882267e-07, -0.243212283, -0.0885210633, -0.965925455, -0.907672942, -0.330366075, 0.258820832),0.2)
  2069. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.500003815, -0.958748817, -0.0285506546, 1, 0, 0, 0, 0.984807849, 0.173648387, 0, -0.173648387, 0.984807849),0.2)
  2070. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.500003815, 0.602716327, 0.377233386, 1, 0, 0, 0, 0.707106352, -0.707107365, 0, 0.707107365, 0.707106352),0.2)
  2071. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2072. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2073. end
  2074. swait(30)
  2075. hum.WalkSpeed = 40
  2076. attack = false
  2077. end
  2078.  
  2079. function bashdash()
  2080. attack = true
  2081. hum.WalkSpeed = 0
  2082. WaveEffect2(BrickColor.new("Light stone grey"),RootPart.CFrame*CFrame.new(0,0,-3)*CFrame.Angles(math.rad(90),0,0),0,0,0,1,.5,1,0.025)
  2083. WaveEffect2(BrickColor.new("Light stone grey"),RootPart.CFrame*CFrame.new(0,0,-3)*CFrame.Angles(math.rad(90),0,0),0,0,0,.5,1,.5,0.025)
  2084. local v = Instance.new("BodyVelocity", torso)
  2085. v.P = 6000
  2086. v.maxForce = Vector3.new(5000, 0, 5000) * 5000000000
  2087. v.velocity = RootPart.CFrame.lookVector*100
  2088. game:GetService("Debris"):AddItem(v,.3)
  2089. so("rbxassetid://168586621",torso,1,1)
  2090. for i = 0,1,0.05 do
  2091. swait()
  2092. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),0.2)
  2093. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.49999714, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),0.2)
  2094. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(2.53463364, 0.658357203, 0, 0.422617137, -0.906308293, 0, 0.906308293, 0.422617137, 0, 0, 0, 1),0.2)
  2095. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-1.93510604, 0.799999714, -0.745648682, 0.573575675, -0.819152594, 0, 0, 0, -1, 0.819152594, 0.573575675, 0),0.2)
  2096. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(-0.240189195, -1.25192213, 0, 0.866025388, -0.500000238, 0, 0.500000238, 0.866025388, 0, 0, 0, 1),0.2)
  2097. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-1.70495462, -1.07543659, 0, 0.819151819, -0.573576868, 0, 0.573576868, 0.819151819, 0, 0, 0, 1),0.2)
  2098. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2099. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2100. MagniDamage(RootPart,10,20,25,100,"Knockdown")
  2101. end
  2102. swait(30)
  2103. hum.WalkSpeed = 40
  2104. attack = false
  2105. end
  2106.  
  2107. function heavenbolts()
  2108. attack = true
  2109. hum.WalkSpeed = 0
  2110. local totrans = {}
  2111. for i, v in pairs(chara:GetDescendants()) do
  2112. if v:IsA("BasePart") and v.Transparency~=1 and (v.Parent.Name == "Swerdd" or v.Parent.Name == "Swerdd2") then
  2113. table.insert(totrans,v)
  2114. end
  2115. end
  2116. local function hands()
  2117. local pt1 = Instance.new("Part",char)
  2118. pt1.BrickColor = BrickColor.new("New Yeller")
  2119. pt1.Material = "Neon"
  2120. pt1.Anchored = true
  2121. pt1.CanCollide = false
  2122. pt1.Size = Vector3.new(2,4,2)
  2123. pt1.CFrame = larm.CFrame
  2124. local pt2 = Instance.new("Part",char)
  2125. pt2.BrickColor = BrickColor.new("New Yeller")
  2126. pt2.Material = "Neon"
  2127. pt2.Anchored = true
  2128. pt2.CanCollide = false
  2129. pt2.Size = Vector3.new(2,4,2)
  2130. pt2.CFrame = rarm.CFrame
  2131. coroutine.wrap(function()
  2132. for i=0,1,.02 do
  2133. swait()
  2134. pt1.Transparency = i
  2135. pt2.Transparency = i
  2136. end
  2137. pt1:Destroy()
  2138. pt2:Destroy()
  2139. end)()
  2140. end
  2141. for i = 0,1,0.05 do
  2142. swait()
  2143. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),0.2)
  2144. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.38697028, -0.102228999, 1, 0, 0, 0, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872),0.2)
  2145. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(2.40000105, 2.4839201, -0.316729307, 0, 0.499999881, 0.866025448, 0.342019916, -0.813797832, 0.469846249, 0.939692736, 0.296197951, -0.171009898),0.2)
  2146. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-2.22261667, 2.31789613, -0.362717718, 0, -0.422618061, -0.906307876, -0.342019916, -0.851651013, 0.397131056, -0.939692736, 0.309975356, -0.144543782),0.2)
  2147. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.517040253, -0.999995232, -0.129409254, 0.965925872, 0, -0.258818984, 0, 1, 0, 0.258818984, 0, 0.965925872),0.2)
  2148. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.517040253, -0.999995232, -0.129409254, 0.965925872, 0, 0.258818984, 0, 1, 0, -0.258818984, 0, 0.965925872),0.2)
  2149. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2150. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2151. end
  2152. for i = 0,1,.1 do
  2153. swait()
  2154. for a=1,#totrans do
  2155. totrans[a].Transparency = i
  2156. end
  2157. end
  2158. for a=1,#totrans do
  2159. totrans[a].Transparency = 1
  2160. end
  2161. so("rbxassetid://137463716",torso,1,1)
  2162. for i = 0,1,0.1 do
  2163. swait(1)
  2164. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),0.1)
  2165. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.43585825, 0.0860004425, 1, 0, 0, 0, 1, 0, 0, 0, 1),0.1)
  2166. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(3.00000381, 0.999999046, 0, 0, -1, 0, 0, 0, -1, 1, 0, 0),0.1)
  2167. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-2.90000725, 0.999998569, 0, 0, 1, 0, 0, 0, -1, -1, 0, 0),0.1)
  2168. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.517040253, -0.999995232, -0.129409254, 0.965925872, 0, -0.258818984, 0, 1, 0, 0.258818984, 0, 0.965925872),0.1)
  2169. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.517040253, -0.999995232, -0.129409254, 0.965925872, 0, 0.258818984, 0, 1, 0, -0.258818984, 0, 0.965925872),0.1)
  2170. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.1)
  2171. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.1)
  2172. hands()
  2173. end
  2174. for i = 0,1,0.1 do
  2175. swait(1)
  2176. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),0.1)
  2177. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.61804795, -0.00885254145, 1, 0, 0, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872),0.1)
  2178. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(2.40000272, 0.328016698, -0.238193214, 0, 0.50000006, 0.866025388, 0.642785966, 0.663415134, -0.383022994, -0.766045868, 0.556668937, -0.321393013),0.1)
  2179. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-2.22261906, 0.371198297, -0.0714126229, -0, -0.422618151, -0.906307876, -0.642785966, 0.694273412, -0.323744893, 0.766045868, 0.58256197, -0.271653026),0.1)
  2180. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.517040253, -0.999995232, -0.129409254, 0.965925872, 0, -0.258818984, 0, 1, 0, 0.258818984, 0, 0.965925872),0.1)
  2181. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.517040253, -0.999995232, -0.129409254, 0.965925872, 0, 0.258818984, 0, 1, 0, -0.258818984, 0, 0.965925872),0.1)
  2182. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.1)
  2183. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.1)
  2184. hands()
  2185. end
  2186. for i = 0,1,0.1 do
  2187. swait(1)
  2188. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),0.1)
  2189. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.61804795, -0.00885254145, 1, 0, 0, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872),0.1)
  2190. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(2.41602826, 0.728627682, -0.977563798, 0, 0.866025984, 0.499998987, 1, 0, 0, 0, 0.499998987, -0.866025984),0.1)
  2191. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-2.3701961, 0.628623962, -0.905765355, 0, -0.866025984, -0.499998987, -1, 0, 0, 0, 0.499998987, -0.866025984),0.1)
  2192. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.517040253, -0.999995232, -0.129409254, 0.965925872, 0, -0.258818984, 0, 1, 0, 0.258818984, 0, 0.965925872),0.1)
  2193. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.517040253, -0.999995232, -0.129409254, 0.965925872, 0, 0.258818984, 0, 1, 0, -0.258818984, 0, 0.965925872),0.1)
  2194. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.1)
  2195. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.1)
  2196. hands()
  2197. end
  2198. swait(50)
  2199. for i = 0,1.5,0.05 do
  2200. swait()
  2201. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -4.00750542, -0.0206088424, 1, 0, 0, 0, 0.766043186, 0.642789185, 0, -0.642789185, 0.766043186),0.2)
  2202. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.43585587, 0.0860042647, 1, 0, 0, 0, 1.00000012, 0, 0, 0, 1.00000012),0.2)
  2203. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(2.53899002, 0.786841691, -4.0475602e-06, 0.342020124, -0.939692676, -1.5634414e-06, 0.939692795, 0.342020094, 4.76837158e-07, 8.94069672e-08, -1.62422657e-06, 1.00000012),0.2)
  2204. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-2.03950191, 1.14999986, -1.33743811, 0.984807849, -0.150383085, -0.0868251622, -1.5348196e-06, 0.499998808, -0.866026163, 0.173648179, 0.852869511, 0.492402375),0.2)
  2205. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.704302311, 2.59778404, -0.828305006, 0.965927243, -0.0669888109, -0.249994501, 2.75671482e-06, 0.965925634, -0.258819908, 0.258814156, 0.250000477, 0.933013916),0.2)
  2206. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.500003815, -1.07576871, -1.46251345, 1, 0, 0, 0, 0.642789185, 0.766043186, 0, -0.766043186, 0.642789185),0.2)
  2207. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.1)
  2208. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.1)
  2209. local pt1 = Instance.new("Part",char)
  2210. pt1.BrickColor = BrickColor.new("New Yeller")
  2211. pt1.Material = "Neon"
  2212. pt1.Anchored = true
  2213. pt1.CanCollide = false
  2214. pt1.Size = Vector3.new(2.5,2.5,2.5)
  2215. pt1.CFrame = larm.CFrame*CFrame.new(0,-2,0)*CFrame.Angles(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  2216. coroutine.wrap(function()
  2217. for i=0,1,.02 do
  2218. swait()
  2219. pt1.Transparency = i
  2220. pt1.CFrame = pt1.CFrame*CFrame.Angles(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  2221. end
  2222. pt1:Destroy()
  2223. end)()
  2224. end
  2225. for i = 1, 60 do
  2226. local pt1 = Instance.new("Part",char)
  2227. pt1.BrickColor = BrickColor.new("New Yeller")
  2228. pt1.Material = "Neon"
  2229. pt1.Anchored = true
  2230. pt1.CanCollide = false
  2231. pt1.Size = Vector3.new(2.5,2.5,2.5)
  2232. pt1.CFrame = larm.CFrame*CFrame.new(0,-2,0)*CFrame.Angles(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  2233. coroutine.wrap(function()
  2234. for i=0,1,.02 do
  2235. swait()
  2236. pt1.Transparency = i
  2237. pt1.CFrame = pt1.CFrame*CFrame.Angles(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  2238. end
  2239. pt1:Destroy()
  2240. end)()
  2241. swait(1)
  2242. local hitpt = Instance.new("Part",workspace)
  2243. hitpt.Size = Vector3.new(1,1,1)
  2244. hitpt.Anchored = true
  2245. hitpt.CanCollide = false
  2246. hitpt.BrickColor = BrickColor.new("New Yeller")
  2247. hitpt.CFrame = (RootPart.CFrame*CFrame.new(0,-6,0) + Vector3.new(math.random(-50,50),0,math.random(-50,50)))*CFrame.Angles(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  2248. so("rbxassetid://183763487",hitpt,1,1)
  2249. MagniDamage(hitpt,10,30,35,10,"Normal")
  2250. local hitb = Instance.new("Part",workspace)
  2251. hitb.Size = Vector3.new(1,1,1)
  2252. hitb.Anchored = true
  2253. hitb.CanCollide = false
  2254. hitb.BrickColor = BrickColor.new("New Yeller")
  2255. hitb.Material = "Neon"
  2256. hitb.CFrame = CFrame.new(hitpt.Position) * CFrame.Angles(math.random(math.rad(-20),math.rad(20)),math.random(math.rad(-20),math.rad(20)),math.random(math.rad(-20),math.rad(20)))
  2257. local hitb2 = Instance.new("Part",workspace)
  2258. hitb2.Size = Vector3.new(1,1,1)
  2259. hitb2.Anchored = true
  2260. hitb2.CanCollide = false
  2261. hitb2.BrickColor = BrickColor.new("New Yeller")
  2262. hitb2.Material = "Neon"
  2263. hitb2.CFrame = hitpt.CFrame
  2264. local hitbm = Instance.new("CylinderMesh",hitb)
  2265. hitbm.Scale = Vector3.new(0,1000,0)
  2266. local hitm = Instance.new("SpecialMesh",hitpt)
  2267. hitm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2268. hitm.Scale = Vector3.new(0,0,0)
  2269. local hitm2 = Instance.new("SpecialMesh",hitb2)
  2270. hitm2.MeshType = "Sphere"
  2271. hitm2.Scale = Vector3.new(0,0,0)
  2272. coroutine.wrap(function()
  2273. for i = 0,1,.02 do
  2274. swait()
  2275. hitpt.Transparency = i
  2276. hitb.Transparency = i
  2277. hitb2.Transparency = i
  2278. hitm.Scale = Vector3.new(15*i,15*i,15*i)
  2279. hitbm.Scale = Vector3.new(3*i,1000,3*i)
  2280. hitm2.Scale = Vector3.new(6*i,6*i,6*i)
  2281. end
  2282. hitpt:Destroy()
  2283. hitb:Destroy()
  2284. hitb2:Destroy()
  2285. end)()
  2286. end
  2287. for i = 0,1,.1 do
  2288. swait()
  2289. for a=1,#totrans do
  2290. totrans[a].Transparency = 1-i
  2291. end
  2292. end
  2293. for a=1,#totrans do
  2294. totrans[a].Transparency = 0
  2295. end
  2296. hum.WalkSpeed = 40
  2297. attack = false
  2298. end
  2299.  
  2300.  
  2301. function BlockEffect(brickcolor,cframe,x1,y1,z1,x3,y3,z3,delay)
  2302. local prt=part(3,workspace,"SmoothPlastic",0,0,brickcolor,"Effect",vt())
  2303. prt.Anchored=true
  2304. prt.CFrame=cframe
  2305. local msh=mesh("BlockMesh",prt,"","",vt(0,0,0),vt(x1,y1,z1))
  2306. game:GetService("Debris"):AddItem(prt,5)
  2307. table.insert(Effects,{prt,"Block1",delay,x3,y3,z3}) --part, type, delay
  2308. end
  2309.  
  2310. function WaveEffect(Part,cframe1,cframe2,Damage,Size)
  2311. coroutine.resume(coroutine.create(function()
  2312. local wave=part(1,workspace,"SmoothPlastic",0,0,BrickColor.new("Lime green"),"Effect",vt(3,3,10))
  2313. wave.Anchored=true
  2314. wave.CFrame=Part.CFrame*cframe1
  2315. so("rbxassetid://278596476",wave,1,1.3)
  2316. MagniDamage(wave,20,30,50,10,"Knockdown")
  2317. local Msh = Create("SpecialMesh"){
  2318. Parent = wave,
  2319. MeshType = "Sphere"
  2320. }
  2321. BlockEffect(BrickColor.new("Lime green"),wave.CFrame,1,1,1,3,3,3,0.05)
  2322. so("http://roblox.com/asset/?id=200632875",wave,1,1.3)
  2323. for i=0,1,0.2 do
  2324. swait()
  2325. local dir = wave.CFrame.lookVector*-1
  2326. local pos = rayCast(wave.Position,dir,5,Character)
  2327. wave.CFrame=wave.CFrame*cframe2
  2328. Effects[#Effects+1]={wave,"Cylinder",0.01,.03,.03,.03}
  2329. end
  2330. end))
  2331. end
  2332.  
  2333. function Wave()
  2334. attack = true
  2335. hum.WalkSpeed = 40
  2336. for i = 0,1,0.02 do
  2337. swait()
  2338. torso.Weld.C0 = clerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(5), math.rad(0), math.rad(0)), 0.2)
  2339. hed.Weld.C0 = clerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.2)
  2340. rarm.Weld.C0 = clerp(rarm.Weld.C0, CFrame.new(2, 2, -2)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-50)), 0.2)
  2341. larm.Weld.C0 = clerp(larm.Weld.C0, CFrame.new(-2, 2, -2)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(50)), 0.2)
  2342. lleg.Weld.C0 = clerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-5), math.rad(0), math.rad(0)) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-2)), 0.2)
  2343. rleg.Weld.C0 = clerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(-5), math.rad(0), math.rad(0)) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(2)), 0.2)
  2344. handleweld.C0=clerp(handleweld.C0,cf(-1,-1.5,-1.5)*angles(math.rad(-20),math.rad(-20),math.rad(50)),.2)
  2345. end
  2346. so("http://roblox.com/asset/?id=234365573",Hitbox,1,.8)
  2347. local inc=-10
  2348. for i=1,5 do
  2349. WaveEffect(torso,CFrame.new(0,-10,inc)*CFrame.fromEulerAnglesXYZ(-2,0,1.57),CFrame.new(0,0,0.8),10,5)
  2350. inc=inc-7
  2351. end
  2352. for i = 0,1,0.02 do
  2353. swait()
  2354. torso.Weld.C0 = clerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0)), 0.2)
  2355. hed.Weld.C0 = clerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
  2356. rarm.Weld.C0 = clerp(rarm.Weld.C0, CFrame.new(2, .5, -1)*CFrame.Angles(math.rad(50),math.rad(0),math.rad(-50)), 0.4)
  2357. larm.Weld.C0 = clerp(larm.Weld.C0, CFrame.new(-2, .5, -1)*CFrame.Angles(math.rad(50),math.rad(0),math.rad(50)), 0.4)
  2358. lleg.Weld.C0 = clerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(35), math.rad(0), math.rad(0)) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-2)), 0.2)
  2359. rleg.Weld.C0 = clerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(2)), 0.2)
  2360. handleweld.C0=clerp(handleweld.C0,cf(-1,-1.5,-1.5)*angles(math.rad(-20),math.rad(-20),math.rad(50)),.2)
  2361. end
  2362. attack = false
  2363. hum.WalkSpeed = 40
  2364. end
  2365.  
  2366. function Cloak()
  2367.  
  2368. end
  2369.  
  2370. mouse.Button1Down:connect(function()
  2371. if attack==false then
  2372. if attacktype==1 then
  2373. attacktype = 2
  2374. attackone()
  2375. elseif attacktype==2 then
  2376. attacktype = 3
  2377. attacktwo()
  2378. elseif attacktype==3 then
  2379. attacktype = 1
  2380. attackthree()
  2381. end
  2382. end
  2383. end)
  2384.  
  2385. mouse.KeyDown:connect(function(k)
  2386. k=k:lower()
  2387. if k=='m' then
  2388. if Character:FindFirstChild("mus")~=nil then
  2389. if mus.IsPlaying == true then
  2390. mus:Stop()
  2391. elseif mus.IsPaused == true then
  2392. mus:Play()
  2393. end
  2394. elseif Character:FindFirstChild("mus")==nil then
  2395. local mus = Instance.new("Sound",char)
  2396. mus.Name = "mus"
  2397. mus.SoundId = "rbxassetid://1073318933"
  2398. mus.Looped = true
  2399. mus.Volume = 1
  2400. mus:Play()
  2401. end
  2402. end
  2403. if attack == false then
  2404. if k == 'z' then
  2405. bashdash()
  2406. elseif k == 'x' then
  2407. stompu()
  2408. elseif k == 'c' then
  2409. jumpcrash()
  2410. elseif k == 'v' then
  2411. heavenbolts()
  2412. end
  2413. end
  2414. end)
  2415.  
  2416. bc=char['Body Colors']
  2417. coloras=BrickColor.new('Institutional white')
  2418. bc.LeftLegColor,bc.LeftArmColor,bc.TorsoColor,bc.HeadColor,bc.RightArmColor,bc.RightLegColor=coloras,coloras,coloras,coloras,coloras,coloras
  2419.  
  2420. pcall(function()
  2421. if char:FindFirstChild'FaysG' then
  2422. char.FaysG:Destroy()
  2423. end
  2424. for i,v in pairs(char:GetChildren()) do
  2425. if v:IsA("BasePart") then
  2426. v.Transparency = 1
  2427. end
  2428. end
  2429. hum.MaxHealth = 1000000
  2430. hum.Health = 1000000
  2431. end)
  2432.  
  2433. --game:service'InsertService':LoadAsset(181238309):children()[1].Parent = Character
  2434. --game:service'InsertService':LoadAsset(181241666):children()[1].Parent = Character
  2435.  
  2436. local prevState = "None"
  2437. local fallSpeed = 0
  2438.  
  2439. local sRunning = Instance.new("Sound",torso) sRunning.SoundId = "http://roblox.com/asset/?id=135062807"
  2440. local sLanding = Instance.new("Sound",torso) sLanding.SoundId = "http://roblox.com/asset/?id=180683823"
  2441.  
  2442. function onRunning(speed)
  2443. if (prevState == "FreeFall" and fallSpeed > 0.1) then
  2444. local vol = math.min(1.0, math.max(0.0, (fallSpeed - 50) / 110))
  2445. sLanding.Volume = vol
  2446. sLanding:Play()
  2447. fallSpeed = 0
  2448. end
  2449. if speed>0.5 then
  2450. sRunning:Play()
  2451. sRunning.Looped = true
  2452. sRunning.Pitch = 1
  2453. else
  2454. sRunning:Stop()
  2455. end
  2456. prevState = "Run"
  2457. end
  2458.  
  2459. Character:FindFirstChildOfClass("Humanoid").Running:connect(onRunning)
  2460.  
  2461. local sine = 0
  2462. local change = 1
  2463. local val = 0
  2464.  
  2465. while true do
  2466. swait()
  2467. sine = sine + change
  2468. local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude
  2469. local velderp=RootPart.Velocity.y
  2470. hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,10,0))).lookVector,10,char)
  2471. if equipped==true or equipped==false or stanceToggle=="Normal" then
  2472. if RootPart.Velocity.y > 1 and hitfloor==nil then
  2473. Anim="Jump"
  2474. if attack==false then
  2475. torso.Weld.C0 = clerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  2476. hed.Weld.C0 = clerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.2)
  2477. rarm.Weld.C0 = clerp(rarm.Weld.C0, CFrame.new(3, 1, -0.5)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  2478. larm.Weld.C0 = clerp(larm.Weld.C0, CFrame.new(-3, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-30)), 0.2)
  2479. lleg.Weld.C0 = clerp(lleg.Weld.C0, CFrame.new(-.5, -.5, -.5) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  2480. rleg.Weld.C0 = clerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.2)
  2481. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2482. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2483. end
  2484. elseif RootPart.Velocity.y < -1 and hitfloor==nil then
  2485. Anim="Fall"
  2486. if attack==false then
  2487. torso.Weld.C0 = clerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  2488. hed.Weld.C0 = clerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  2489. rarm.Weld.C0 = clerp(rarm.Weld.C0, CFrame.new(3, 1, -0.5)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(20)), 0.2)
  2490. larm.Weld.C0 = clerp(larm.Weld.C0, CFrame.new(-3, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-50)), 0.2)
  2491. lleg.Weld.C0 = clerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), math.rad(0)), 0.2)
  2492. rleg.Weld.C0 = clerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  2493. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2494. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2495. end
  2496. elseif torvel<1 and hitfloor~=nil then
  2497. Anim="Idle"
  2498. if attack==false then
  2499. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(-0.167815924, -1.00000048, 0.00730992854, 0.866025388, 0, -0.500000238, 0, 1, 0, 0.500000238, 0, 0.866025388),0.2)
  2500. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0.141678572, 1.4999938, -0.0902378634, 0.866025388, 0, 0.500000238, 0, 1, 0, -0.500000238, 0, 0.866025388),0.2)
  2501. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(2.6015451, 0.958485007, 0.287290752, 0.899958789, -0.257833809, -0.351562411, 0.272002965, 0.962250412, -0.00941289868, 0.340718091, -0.0871548057, 0.936117232),0.2)
  2502. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-2.64207578, 0.93936938, 0.281909496, 0.907673717, 0.258818597, 0.330366075, -0.243210092, 0.965925932, -0.0885206982, -0.342019975, -4.54485416e-07, 0.939692855),0.2)
  2503. rleg.Weld.C0 = clerp(rleg.Weld.C0,CFrame.new(0.517043233, -0.999995947, -0.12940824, 0.965925932, 0, -0.25881958, 0, 1, 0, 0.25881958, 0, 0.965925932),0.2)
  2504. lleg.Weld.C0 = clerp(lleg.Weld.C0,CFrame.new(-0.507598519, -0.999995947, -0.0868241191, 0.984807789, 0, 0.173648715, 0, 1, 0, -0.173648685, 0, 0.984807789),0.2)
  2505. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2506. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2507. end
  2508. elseif torvel>2 and hitfloor~=nil then
  2509. Anim="Walk"
  2510. if attack==false then
  2511. torso.Weld.C0 = clerp(torso.Weld.C0,CFrame.new(0, -0.95609957, -0.0139732957, 1, 0, 0, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872),0.2)
  2512. hed.Weld.C0 = clerp(hed.Weld.C0,CFrame.new(0, 1.50570309, -0.130731732, 1, 0, 0, 0, 0.99619478, -0.0871558785, 0, 0.0871558785, 0.99619478),0.2)
  2513. rarm.Weld.C0 = clerp(rarm.Weld.C0,CFrame.new(2.785501, 1.09704924, 0.0216811895, 0.376865149, -0.576859891, -0.724710584, 0.0554149896, 0.795038223, -0.604022801, 0.924609005, 0.187475324, 0.331588924),0.2)
  2514. larm.Weld.C0 = clerp(larm.Weld.C0,CFrame.new(-2.74938369, 1.14604354, 0.183790624, 0.160009071, 0.694109261, 0.701861501, -0.146403059, 0.719846249, -0.678518772, -0.976198494, 0.0058144927, 0.216801643),0.2)
  2515. lleg.Weld.C0 = clerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(50*math.cos(sine/6)), math.rad(0), math.rad(0)), 0.2)
  2516. rleg.Weld.C0 = clerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(-50*math.cos(sine/6)), math.rad(0), math.rad(0)), 0.2)
  2517. HWeld.C0 = clerp(HWeld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2518. H2Weld.C0 = clerp(H2Weld.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0),0.2)
  2519. end
  2520. end
  2521. end
  2522. if #Effects>0 then
  2523. for e=1,#Effects do
  2524. if Effects[e]~=nil then
  2525. local Thing=Effects[e]
  2526. if Thing~=nil then
  2527. local Part=Thing[1]
  2528. local Mode=Thing[2]
  2529. local Delay=Thing[3]
  2530. local IncX=Thing[4]
  2531. local IncY=Thing[5]
  2532. local IncZ=Thing[6]
  2533. if Thing[1].Transparency<=1 then
  2534. if Thing[2]=="Block1" then
  2535. Thing[1].CFrame=Thing[1].CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  2536. Mesh=Thing[1].Mesh
  2537. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  2538. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  2539. elseif Thing[2]=="Cylinder" then
  2540. Mesh=Thing[1].Mesh
  2541. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  2542. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  2543. elseif Thing[2]=="Blood" then
  2544. Mesh=Thing[7]
  2545. Thing[1].CFrame=Thing[1].CFrame*cf(0,.5,0)
  2546. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  2547. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  2548. elseif Thing[2]=="Elec" then
  2549. Mesh=Thing[1].Mesh
  2550. Mesh.Scale=Mesh.Scale+vt(Thing[7],Thing[8],Thing[9])
  2551. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  2552. elseif Thing[2]=="Disappear" then
  2553. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  2554. end
  2555. else
  2556. Part.Parent=nil
  2557. table.remove(Effects,e)
  2558. end
  2559. end
  2560. end
  2561. end
  2562. end
  2563. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement