Advertisement
rcubed1003

Empyr fe ver

Sep 17th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 288.95 KB | None | 0 0
  1. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  2. local Player,Mouse,mouse,UserInputService,ContextActionService = owner
  3. do
  4. print("FE Compatibility code by Mokiros")
  5. script.Parent = Player.Character
  6.  
  7. --RemoteEvent for communicating
  8. local Event = Instance.new("RemoteEvent")
  9. Event.Name = "UserInput_Event"
  10.  
  11. --Fake event to make stuff like Mouse.KeyDown work
  12. local function fakeEvent()
  13. local t = {_fakeEvent=true,Connect=function(self,f)self.Function=f end}
  14. t.connect = t.Connect
  15. return t
  16. end
  17.  
  18. --Creating fake input objects with fake variables
  19. local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
  20. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  21. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  22. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  23. end}
  24. --Merged 2 functions into one by checking amount of arguments
  25. CAS.UnbindAction = CAS.BindAction
  26.  
  27. --This function will trigger the events that have been :Connect()'ed
  28. local function te(self,ev,...)
  29. local t = m[ev]
  30. if t and t._fakeEvent and t.Function then
  31. t.Function(...)
  32. end
  33. end
  34. m.TrigEvent = te
  35. UIS.TrigEvent = te
  36.  
  37. Event.OnServerEvent:Connect(function(plr,io)
  38. if plr~=Player then return end
  39. if io.isMouse then
  40. m.Target = io.Target
  41. m.Hit = io.Hit
  42. else
  43. local b = io.UserInputState == Enum.UserInputState.Begin
  44. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  45. return m:TrigEvent(b and "Button1Down" or "Button1Up")
  46. end
  47. for _,t in pairs(CAS.Actions) do
  48. for _,k in pairs(t.Keys) do
  49. if k==io.KeyCode then
  50. t.Function(t.Name,io.UserInputState,io)
  51. end
  52. end
  53. end
  54. m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  55. UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
  56. end
  57. end)
  58. Event.Parent = NLS([==[
  59. local Player = game:GetService("Players").LocalPlayer
  60. local Event = script:WaitForChild("UserInput_Event")
  61.  
  62. local UIS = game:GetService("UserInputService")
  63. local input = function(io,a)
  64. if a then return end
  65. --Since InputObject is a client-side instance, we create and pass table instead
  66. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState})
  67. end
  68. UIS.InputBegan:Connect(input)
  69. UIS.InputEnded:Connect(input)
  70.  
  71. local Mouse = Player:GetMouse()
  72. local h,t
  73. --Give the server mouse data 30 times every second, but only if the values changed
  74. --If player is not moving their mouse, client won't fire events
  75. while wait(1/30) do
  76. if h~=Mouse.Hit or t~=Mouse.Target then
  77. h,t=Mouse.Hit,Mouse.Target
  78. Event:FireServer({isMouse=true,Target=t,Hit=h})
  79. end
  80. end]==],Player.Character)
  81. Mouse,mouse,UserInputService,ContextActionService = m,m,UIS,CAS
  82. end
  83. --Empyr--
  84. -------------
  85. --By --
  86. --CKbackup --
  87. -------------
  88.  
  89. wait(2)
  90.  
  91. local player = owner
  92. local chara = player.Character
  93. local debby = game.Debris
  94. local Mouse = player:GetMouse()
  95.  
  96. --Outfit--
  97.  
  98. local foundObjectList = {}
  99. local foundObjectIndex = 1
  100. local function findObjectHelper(model, objectName, className, listOfFoundObjects)
  101. if not model then return end
  102. local findStart, findEnd = string.find(model.Name, objectName)
  103. if findStart == 1 and findEnd == #(model.Name) then -- must match entire name
  104. if not className or model.className == className or (pcall(model.IsA, model, className) and model:IsA(className)) then
  105. table.insert(listOfFoundObjects, model)
  106. end
  107. end
  108. if pcall(model.GetChildren, model) then
  109. local modelChildren = model:GetChildren()
  110. for i = 1, #modelChildren do
  111. -- make sure not to resize tools, things tend to get complicated if we do
  112. if not (pcall(modelChildren[i].IsA, modelChildren[i], 'Tool') and modelChildren[i]:IsA('Tool')) then
  113. findObjectHelper(modelChildren[i], objectName, className, listOfFoundObjects)
  114. end
  115. end
  116. end
  117. end
  118.  
  119. local function resizeModelInternal(model, resizeFactor)
  120. local modelCFrame = model:GetModelCFrame()
  121. local modelSize = model:GetModelSize()
  122. local baseParts = {}
  123. local basePartCFrames = {}
  124. local joints = {}
  125. local jointParents = {}
  126. local meshes = {}
  127.  
  128. findObjectHelper(model, ".*", "BasePart", baseParts)
  129. findObjectHelper(model, ".*", "JointInstance", joints)
  130.  
  131. -- meshes don't inherit from anything accessible?
  132. findObjectHelper(model, ".*", "FileMesh", meshes) -- base class for SpecialMesh and FileMesh
  133. findObjectHelper(model, ".*", "CylinderMesh", meshes)
  134. findObjectHelper(model, ".*", "BlockMesh", meshes)
  135.  
  136. -- store the CFrames, so our other changes don't rearrange stuff
  137. for _, basePart in pairs(baseParts) do
  138. basePartCFrames[basePart] = basePart.CFrame
  139. end
  140.  
  141. -- scale meshes
  142. for _,mesh in pairs(meshes) do
  143. -- This is a nasty hack because head meshes scale relative to the part's size
  144. -- thus scaling the mesh and the head gives u 2x the size
  145. if mesh.Parent.Name ~= "Head" then
  146. mesh.Scale = mesh.Scale * resizeFactor
  147. end
  148. end
  149.  
  150. -- scale joints
  151. for _, joint in pairs(joints) do
  152. joint.C0 = joint.C0 + (joint.C0.p) * (resizeFactor - 1)
  153. joint.C1 = joint.C1 + (joint.C1.p) * (resizeFactor - 1)
  154. jointParents[joint] = joint.Parent
  155. end
  156.  
  157. -- scale parts and reposition them within the model
  158. for _, basePart in pairs(baseParts) do
  159. if pcall(function() basePart.FormFactor = "Custom" end) then basePart.FormFactor = "Custom" end
  160. basePart.Size = basePart.Size * resizeFactor
  161. local oldCFrame = basePartCFrames[basePart]
  162. local oldPositionInModel = modelCFrame:pointToObjectSpace(oldCFrame.p)
  163. local distanceFromCorner = oldPositionInModel + modelSize/2
  164. distanceFromCorner = distanceFromCorner * resizeFactor
  165.  
  166. local newPositionInSpace = modelCFrame:pointToWorldSpace(distanceFromCorner - modelSize/2)
  167. basePart.CFrame = oldCFrame - oldCFrame.p + newPositionInSpace
  168. end
  169.  
  170. -- pop the joints back, because they prolly got borked
  171. for _, joint in pairs(joints) do
  172. joint.Parent = jointParents[joint]
  173. end
  174.  
  175. return model
  176. end
  177.  
  178. local function resizeImplementation(modelList, resizeFactor)
  179. if type(modelList) ~= "table" then modelList = {modelList} end
  180.  
  181. for _, model in pairs(modelList) do
  182. --if model.Name ~= "BackPack" then
  183. resizeModelInternal(model, resizeFactor)
  184. --end
  185. end
  186. return modelList
  187. end
  188.  
  189. resizeImplementation(chara,2)
  190.  
  191. New = function(Object, Parent, Name, Data)
  192. local Object = Instance.new(Object)
  193. for Index, Value in pairs(Data or {}) do
  194. Object[Index] = Value
  195. end
  196. Object.Parent = Parent
  197. Object.Name = Name
  198. return Object
  199. end
  200.  
  201. Chest = New("Model",chara,"Chest",{})
  202. 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),})
  203. 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),})
  204. 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),})
  205. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  206. 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),})
  207. 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),})
  208. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  209. 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),})
  210. 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),})
  211. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  212. 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),})
  213. 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),})
  214. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  215. 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),})
  216. 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),})
  217. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998),MeshType = Enum.MeshType.Wedge,})
  218. 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),})
  219. 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),})
  220. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998),MeshType = Enum.MeshType.Wedge,})
  221. 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),})
  222. 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),})
  223. 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),})
  224. 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),})
  225. 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),})
  226. 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),})
  227. 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),})
  228. 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),})
  229. 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),})
  230. 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),})
  231. 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),})
  232. 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),})
  233. 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),})
  234. 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),})
  235. 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),})
  236. 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),})
  237. 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),})
  238. 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),})
  239. 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),})
  240. 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),})
  241. 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),})
  242. 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),})
  243. 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),})
  244. 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),})
  245. 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),})
  246. 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),})
  247. 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),})
  248. 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),})
  249. 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),})
  250. 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),})
  251. 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),})
  252. 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),})
  253. 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),})
  254. 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),})
  255. 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),})
  256. 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),})
  257. 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),})
  258. 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),})
  259. 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),})
  260. 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),})
  261. 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),})
  262. 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),})
  263. 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),})
  264. 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),})
  265. 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),})
  266. 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),})
  267. 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),})
  268. 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),})
  269. 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),})
  270. 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),})
  271. 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),})
  272. 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),})
  273. 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),})
  274. 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),})
  275. 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),})
  276. 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),})
  277. 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),})
  278. 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),})
  279. 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),})
  280. 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),})
  281. 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),})
  282. 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),})
  283. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  284. 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),})
  285. 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),})
  286. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  287. 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),})
  288. 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),})
  289. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  290. 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),})
  291. 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),})
  292. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  293. 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),})
  294. 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),})
  295. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  296. 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),})
  297. 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),})
  298. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  299. 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),})
  300. 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),})
  301. Mesh = New("SpecialMesh",Tail,"Mesh",{Offset = Vector3.new(0, 0, 3),Scale = Vector3.new(1.5, 1.5, 1.5),MeshId = "http://www.roblox.com/asset/?id=471740614",MeshType = Enum.MeshType.FileMesh,})
  302. 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),})
  303. FakeHead = New("Model",chara,"FakeHead",{})
  304. 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),})
  305. Mesh = New("SpecialMesh",AMainPart,"Mesh",{Scale = Vector3.new(1.25, 1.25, 1.25),})
  306. 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),})
  307. 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),})
  308. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  309. 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),})
  310. 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),})
  311. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  312. 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),})
  313. 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),})
  314. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  315. 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),})
  316. 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),})
  317. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  318. 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),})
  319. 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),})
  320. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  321. 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),})
  322. 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),})
  323. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  324. 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),})
  325. 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),})
  326. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  327. 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),})
  328. 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),})
  329. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  330. 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),})
  331. 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),})
  332. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  333. 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),})
  334. 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),})
  335. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.899999976, 1),MeshType = Enum.MeshType.Wedge,})
  336. 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),})
  337. 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),})
  338. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  339. 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),})
  340. 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),})
  341. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  342. 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),})
  343. 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),})
  344. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  345. 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),})
  346. 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),})
  347. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  348. 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),})
  349. 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),})
  350. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  351. 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),})
  352. 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),})
  353. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  354. 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),})
  355. 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),})
  356. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  357. 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),})
  358. 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),})
  359. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  360. 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),})
  361. 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),})
  362. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  363. 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),})
  364. 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),})
  365. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  366. 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),})
  367. 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),})
  368. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  369. 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),})
  370. 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),})
  371. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  372. 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),})
  373. 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),})
  374. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  375. 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),})
  376. 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),})
  377. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  378. 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),})
  379. 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),})
  380. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  381. 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),})
  382. 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),})
  383. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  384. 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),})
  385. 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),})
  386. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  387. 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),})
  388. 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),})
  389. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  390. 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),})
  391. 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),})
  392. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.899999976, 1),MeshType = Enum.MeshType.Wedge,})
  393. 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),})
  394. 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),})
  395. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  396. 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),})
  397. 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),})
  398. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  399. 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),})
  400. 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),})
  401. Mesh = New("SpecialMesh",Horns,"Mesh",{Offset = Vector3.new(0, 2, 0),Scale = Vector3.new(2, 2, 2),MeshId = "rbxassetid://215680403",MeshType = Enum.MeshType.FileMesh,})
  402. 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),})
  403. 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),})
  404. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.5, 0.5),MeshType = Enum.MeshType.Sphere,})
  405. 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),})
  406. 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),})
  407. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.5, 0.5),MeshType = Enum.MeshType.Sphere,})
  408. 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),})
  409. 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),})
  410. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.5, 0.25),MeshType = Enum.MeshType.Sphere,})
  411. 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),})
  412. 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),})
  413. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.5, 0.25),MeshType = Enum.MeshType.Sphere,})
  414. 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),})
  415. LeftArm = New("Model",chara,"LeftArm",{})
  416. 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),})
  417. 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),})
  418. 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),})
  419. 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),})
  420. 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),})
  421. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  422. 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),})
  423. 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),})
  424. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  425. 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),})
  426. 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),})
  427. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  428. 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),})
  429. 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),})
  430. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  431. 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),})
  432. 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),})
  433. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  434. 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),})
  435. 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),})
  436. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  437. 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),})
  438. 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),})
  439. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  440. 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),})
  441. 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),})
  442. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  443. 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),})
  444. 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),})
  445. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  446. 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),})
  447. 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),})
  448. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  449. 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),})
  450. 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),})
  451. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  452. 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),})
  453. 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),})
  454. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  455. 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),})
  456. LeftLeg = New("Model",chara,"LeftLeg",{})
  457. 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),})
  458. 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),})
  459. 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),})
  460. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  461. 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),})
  462. 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),})
  463. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  464. 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),})
  465. 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),})
  466. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  467. 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),})
  468. 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),})
  469. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  470. 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),})
  471. 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),})
  472. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  473. 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),})
  474. 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),})
  475. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  476. 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),})
  477. 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),})
  478. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  479. 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),})
  480. 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),})
  481. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  482. 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),})
  483. 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),})
  484. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  485. 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),})
  486. 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),})
  487. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  488. 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),})
  489. 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),})
  490. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998),MeshType = Enum.MeshType.Wedge,})
  491. 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),})
  492. 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),})
  493. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  494. 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),})
  495. 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),})
  496. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998),MeshType = Enum.MeshType.Wedge,})
  497. 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),})
  498. 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),})
  499. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  500. 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),})
  501. 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),})
  502. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  503. 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),})
  504. RightArm = New("Model",chara,"RightArm",{})
  505. 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),})
  506. 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),})
  507. 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),})
  508. 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),})
  509. 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),})
  510. Mesh = New("SpecialMesh",Part,"Mesh",{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(1.40000248, 1.9000001, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  512. 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),})
  513. Mesh = New("SpecialMesh",Part,"Mesh",{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(-1.19999886, 1.9000001, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  515. 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),})
  516. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  517. 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),})
  518. 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),})
  519. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  520. 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),})
  521. 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),})
  522. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  523. 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),})
  524. 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),})
  525. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),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.400000572, -0.999979496, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  527. 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),})
  528. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  529. 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),})
  530. 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),})
  531. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),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.200000763, -0.699980259, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  533. 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),})
  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.199998856, -1.0999794, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  536. 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),})
  537. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  538. 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),})
  539. 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),})
  540. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  541. 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),})
  542. 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),})
  543. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  544. 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),})
  545. RightLeg = New("Model",chara,"RightLeg",{})
  546. 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),})
  547. 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),})
  548. 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),})
  549. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  550. 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),})
  551. 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),})
  552. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  553. 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),})
  554. 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),})
  555. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  556. 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),})
  557. 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),})
  558. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  559. 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),})
  560. 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),})
  561. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  562. 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),})
  563. 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),})
  564. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  565. 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),})
  566. 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),})
  567. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  568. 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),})
  569. 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),})
  570. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  571. 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),})
  572. 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),})
  573. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  574. 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),})
  575. 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),})
  576. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  577. 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),})
  578. 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),})
  579. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  580. 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),})
  581. 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),})
  582. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998),MeshType = Enum.MeshType.Wedge,})
  583. 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),})
  584. 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),})
  585. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998),MeshType = Enum.MeshType.Wedge,})
  586. 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),})
  587. 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),})
  588. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  589. 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),})
  590. 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),})
  591. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  592. 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),})
  593. Sword = New("Model",chara,"Sword",{})
  594. 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,})
  595. Mesh = New("BlockMesh",HandlePart,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  596. Weld = 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),})
  597. 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),})
  598. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  599. 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),})
  600. 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),})
  601. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  602. 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),})
  603. 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),})
  604. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  605. 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),})
  606. 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),})
  607. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  608. 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),})
  609. 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),})
  610. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  611. 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),})
  612. 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),})
  613. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  614. 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),})
  615. 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),})
  616. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  617. 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),})
  618. 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),})
  619. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  620. 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),})
  621. 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),})
  622. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  623. 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),})
  624. 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),})
  625. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  626. 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),})
  627. 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),})
  628. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  629. 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),})
  630. 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),})
  631. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  632. 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),})
  633. 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),})
  634. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  635. 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),})
  636. 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),})
  637. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  638. 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),})
  639. 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),})
  640. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  641. 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),})
  642. 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),})
  643. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  644. 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),})
  645. 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),})
  646. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  647. 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),})
  648. 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),})
  649. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  650. 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),})
  651. 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),})
  652. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  653. 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),})
  654. 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),})
  655. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  656. 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),})
  657. 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),})
  658. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  659. 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),})
  660. 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),})
  661. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  662. 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),})
  663. 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),})
  664. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  665. 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),})
  666. 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),})
  667. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  668. 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),})
  669. 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),})
  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, 1.80007458, 4.10079956e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  671. 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),})
  672. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),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, 8.80017662, 0.400053024, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  674. 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),})
  675. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),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(-2.0980835e-005, 9.40019417, 1.60006666, 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, 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),})
  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, 9.10017967, 0.100045681, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  680. 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),})
  681. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 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, 8.30017662, 1.10005617, 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, 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),})
  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, 5.10012245, 0.100044727, 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, 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),})
  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, 7.70016098, -0.0999629498, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  689. 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),})
  690. Mesh = New("SpecialMesh",Part,"Mesh",{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(-1.62124634e-005, 2.80008507, -3.80002284, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  692. 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),})
  693. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 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, 2.90009117, 1.10005617, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  695. 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),})
  696. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.39999998, 1.39999998, 2.5),MeshType = Enum.MeshType.Sphere,})
  697. 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),})
  698. 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),})
  699. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  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, -0.0999574661, 3.67164612e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  701. 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),})
  702. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  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.10019112, -1.09998155, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  704. 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),})
  705. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  706. 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),})
  707. 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),})
  708. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  709. 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),})
  710. 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),})
  711. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  712. 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),})
  713. 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),})
  714. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  715. 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),})
  716. 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),})
  717. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  718. 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),})
  719. 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),})
  720. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  721. 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),})
  722. 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),})
  723. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  724. 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),})
  725. 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),})
  726. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  727. 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),})
  728. 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),})
  729. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  730. 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),})
  731. 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),})
  732. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  733. 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),})
  734. 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),})
  735. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  736. 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),})
  737. 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),})
  738. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  739. 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),})
  740. 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),})
  741. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  742. 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),})
  743. 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),})
  744. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  745. 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),})
  746. 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),})
  747. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  748. 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),})
  749. 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),})
  750. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  751. 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),})
  752. 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),})
  753. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  754. 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),})
  755. 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),})
  756. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  757. 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),})
  758. 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),})
  759. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(2, 2, 2),})
  760. 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),})
  761. 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),})
  762. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  763. 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),})
  764. 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),})
  765. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  766. 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),})
  767. 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),})
  768. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  769. 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),})
  770. 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),})
  771. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  772. 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),})
  773. 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),})
  774. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  775. 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),})
  776. 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),})
  777. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  778. 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),})
  779. 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),})
  780. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  781. 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),})
  782. 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),})
  783. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  784. 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),})
  785. 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),})
  786. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  787. 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),})
  788. 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),})
  789. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  790. 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),})
  791. 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),})
  792. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  793. 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),})
  794. 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),})
  795. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  796. 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),})
  797. 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),})
  798. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  799. 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),})
  800. 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),})
  801. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  802. 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),})
  803. 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),})
  804. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(2, 2, 10),MeshId = "http://www.roblox.com/asset?id=156292343",MeshType = Enum.MeshType.FileMesh,})
  805. 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),})
  806. 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,})
  807. Mesh = New("BlockMesh",Hitbox,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  808. 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),})
  809. Sword2 = New("Model",chara,"Sword2",{})
  810. 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,})
  811. Mesh = New("BlockMesh",Handle2Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  812. Weld = 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),})
  813. 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),})
  814. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  815. 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),})
  816. 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),})
  817. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  818. 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),})
  819. 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),})
  820. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  821. 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),})
  822. 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),})
  823. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  824. 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),})
  825. 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),})
  826. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  827. 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),})
  828. 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),})
  829. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  830. 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),})
  831. 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),})
  832. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  833. 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),})
  834. 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),})
  835. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  836. 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),})
  837. 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),})
  838. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  839. 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),})
  840. 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),})
  841. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  842. 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),})
  843. 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),})
  844. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  845. 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),})
  846. 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),})
  847. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  848. 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),})
  849. 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),})
  850. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  851. 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),})
  852. 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),})
  853. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  854. 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),})
  855. 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),})
  856. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  857. 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),})
  858. 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),})
  859. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  860. 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),})
  861. 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),})
  862. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  863. 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),})
  864. 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),})
  865. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  866. 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),})
  867. 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),})
  868. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  869. 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),})
  870. 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),})
  871. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  872. 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),})
  873. 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),})
  874. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  875. 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),})
  876. 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),})
  877. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  878. 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),})
  879. 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),})
  880. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  881. 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),})
  882. 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),})
  883. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),MeshType = Enum.MeshType.Wedge,})
  884. 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),})
  885. 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),})
  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, 1.80007458, 4.10079956e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  887. 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),})
  888. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 1, 1),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, 8.80017662, 0.400053024, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  890. 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),})
  891. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),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(-2.0980835e-005, 9.40019417, 1.60006666, 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, 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),})
  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, 9.10017967, 0.100045681, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  896. 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),})
  897. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 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, 8.30017662, 1.10005617, 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, 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),})
  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, 5.10012245, 0.100044727, 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, 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),})
  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, 7.70016098, -0.0999629498, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  905. 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),})
  906. Mesh = New("SpecialMesh",Part,"Mesh",{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(-1.52587891e-005, 2.80008507, -3.80002284, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  908. 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),})
  909. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 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, 2.90009117, 1.10005617, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  911. 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),})
  912. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.39999998, 1.39999998, 2.5),MeshType = Enum.MeshType.Sphere,})
  913. 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),})
  914. 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),})
  915. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  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, -0.0999574661, 3.67164612e-005, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  917. 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),})
  918. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  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.10019112, -1.09998155, 1, 0, 0, 0, 0, -1, 0, 1, 0),})
  920. 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),})
  921. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  922. 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),})
  923. 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),})
  924. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  925. 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),})
  926. 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),})
  927. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  928. 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),})
  929. 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),})
  930. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),})
  931. 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),})
  932. 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),})
  933. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  934. 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),})
  935. 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),})
  936. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  937. 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),})
  938. 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),})
  939. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  940. 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),})
  941. 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),})
  942. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  943. 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),})
  944. 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),})
  945. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  946. 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),})
  947. 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),})
  948. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  949. 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),})
  950. 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),})
  951. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  952. 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),})
  953. 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),})
  954. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  955. 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),})
  956. 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),})
  957. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  958. 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),})
  959. 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),})
  960. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  961. 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),})
  962. 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),})
  963. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  964. 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),})
  965. 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),})
  966. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  967. 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),})
  968. 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),})
  969. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  970. 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),})
  971. 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),})
  972. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  973. 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),})
  974. 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),})
  975. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(2, 2, 2),})
  976. 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),})
  977. 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),})
  978. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  979. 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),})
  980. 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),})
  981. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  982. 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),})
  983. 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),})
  984. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  985. 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),})
  986. 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),})
  987. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  988. 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),})
  989. 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),})
  990. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  991. 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),})
  992. 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),})
  993. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),MeshType = Enum.MeshType.Wedge,})
  994. 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),})
  995. 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),})
  996. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  997. 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),})
  998. 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),})
  999. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 1, 1),MeshType = Enum.MeshType.Wedge,})
  1000. 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),})
  1001. 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),})
  1002. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  1003. 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),})
  1004. 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),})
  1005. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  1006. 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),})
  1007. 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),})
  1008. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  1009. 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),})
  1010. 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),})
  1011. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005),})
  1012. 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),})
  1013. 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),})
  1014. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  1015. 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),})
  1016. 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),})
  1017. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  1018. 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),})
  1019. 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),})
  1020. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(2, 2, 10),MeshId = "http://www.roblox.com/asset?id=156292343",MeshType = Enum.MeshType.FileMesh,})
  1021. 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),})
  1022. 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,})
  1023. Mesh = New("BlockMesh",Hitbox2,"Mesh",{Scale = Vector3.new(0.600000024, 1, 1),})
  1024. 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),})
  1025.  
  1026. lap = LeftArm:GetChildren()
  1027. rap = RightArm:GetChildren()
  1028. llp = LeftLeg:GetChildren()
  1029. rlp = RightLeg:GetChildren()
  1030. chp = Chest:GetChildren()
  1031. hdp = FakeHead:GetChildren()
  1032. s1p = Sword:GetChildren()
  1033. s2p = Sword2:GetChildren()
  1034.  
  1035. ch = chara:GetChildren()
  1036. for i = 1, #ch do
  1037. if ch[i].ClassName == "Part" then
  1038. ch[i].Transparency = 1
  1039. if ch[i].Name == "Torso" then
  1040. ch[i].roblox.Transparency = 1
  1041. end
  1042. if ch[i].Name == "Head" then
  1043. ch[i].face.Transparency = 1
  1044. end
  1045. elseif ch[i].ClassName == "Accessory" then
  1046. ch[i]:Destroy()
  1047. end
  1048. end
  1049.  
  1050. --Animations--
  1051. function LoadAnim(id)
  1052. local anim = New("Animation",chara,"Animation",{AnimationId = "rbxassetid://"..id})
  1053. local realanim = chara.Humanoid:LoadAnimation(anim)
  1054. return realanim
  1055. end
  1056. HoldA = LoadAnim(69427262)
  1057. SwingA = LoadAnim(74909569)
  1058. Swing2A = LoadAnim(74909528)
  1059. RaiseA = LoadAnim(83994319)
  1060. RiseA = LoadAnim(169638954)
  1061. StompA = LoadAnim(204328711)
  1062. SmashA = LoadAnim(184574340)
  1063. HoldA:Play()
  1064.  
  1065. --Sounds--
  1066. function LoadSnd(id,loop,vol,pit)
  1067. local snd = New("Sound",chara,"Sound",{SoundId = "rbxassetid://"..id,Looped = loop,Volume = vol,Pitch = pit})
  1068. return snd
  1069. end
  1070. Music = LoadSnd(144043274,true,1,1)
  1071. SwingSnd = LoadSnd(200633108,false,1,1)
  1072. HitSnd = LoadSnd(566593606,false,1,1)
  1073. HitPunchSnd = LoadSnd(137579113,false,1,1)
  1074. DodgeSnd = LoadSnd(232210079,false,1,1)
  1075. ExpSnd = LoadSnd(142070127,false,1,1)
  1076. FlySnd = LoadSnd(169445602,false,1,1)
  1077. BExpSnd = LoadSnd(168586621,false,1,.5)
  1078. deathex = LoadSnd(11984351,false,5,1)
  1079. ChargeSnd = LoadSnd(137463716,false,1,1)
  1080. LasSnd = LoadSnd(162246701,false,1,1)
  1081. LasLoopSnd = LoadSnd(162246683,true,1,1)
  1082. SkyBeamSnd = LoadSnd(183763487,false,1,1)
  1083.  
  1084. Music:Play()
  1085.  
  1086. --Name Tag--
  1087. --local naeeym = Instance.new("BillboardGui",chara)
  1088. --naeeym.Size = UDim2.new(0,100,0,40)
  1089. --naeeym.StudsOffset = Vector3.new(0,4,0)
  1090. --naeeym.Adornee = chara.Head
  1091. --local tecks = Instance.new("TextLabel",naeeym)
  1092. --tecks.BackgroundTransparency = 1
  1093. --tecks.BorderSizePixel = 0
  1094. --tecks.Text = "Empyr the Holy Dragon"
  1095. --tecks.Font = "Fantasy"
  1096. --tecks.FontSize = "Size24"
  1097. --tecks.TextStrokeTransparency = 0
  1098. --tecks.TextStrokeColor3 = Color3.new(1,1,0)
  1099. --tecks.TextColor3 = BrickColor.new("White").Color
  1100. --tecks.Size = UDim2.new(1,0,0.5,0)
  1101.  
  1102. --Play Sound in Part--
  1103. function PlaySnd(snd,part)
  1104. local sound = snd:Clone()
  1105. sound.PlayOnRemove = true
  1106. sound.Parent = Part
  1107. sound:Destroy()
  1108. end
  1109.  
  1110. --Damage Function--
  1111. function dealdmg(dude,damage,env,toim)
  1112. hurt = coroutine.wrap(function(dude2,damage2,env2,toim2)
  1113. if dude ~= chara and dude:FindFirstChild("IsHit") == nil then
  1114. dude.Humanoid.MaxHealth = 100
  1115. finaldmg = damage + math.random(-env,env)
  1116. dude.Humanoid.Health = dude.Humanoid.Health - finaldmg
  1117. local vall = Instance.new("ObjectValue",dude)
  1118. vall.Name = "IsHit"
  1119. debby:AddItem(vall,toim)
  1120. local naeeym2 = Instance.new("BillboardGui",dude)
  1121. naeeym2.Size = UDim2.new(0,100,0,40)
  1122. naeeym2.StudsOffset = Vector3.new(0,3,0)
  1123. naeeym2.Adornee = dude.Head
  1124. naeeym2.Name = "TalkingBillBoard"
  1125. local tecks2 = Instance.new("TextLabel",naeeym2)
  1126. tecks2.BackgroundTransparency = 1
  1127. tecks2.BorderSizePixel = 0
  1128. tecks2.Text = "-"..finaldmg
  1129. tecks2.Font = "Fantasy"
  1130. tecks2.FontSize = "Size24"
  1131. tecks2.TextStrokeTransparency = 0
  1132. tecks2.TextColor3 = Color3.new(1,0.6,0)
  1133. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  1134. tecks2.Size = UDim2.new(1,0,0.5,0)
  1135. for i = 1, 5 do
  1136. wait(.1)
  1137. tecks2.Position = tecks2.Position - UDim2.new(0,0,.05,0)
  1138. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.2
  1139. tecks2.TextTransparency = tecks2.TextTransparency + .2
  1140. end
  1141. naeeym2:Destroy()
  1142. end
  1143. end)
  1144. hurt(dude,damage,env,toim)
  1145. end
  1146.  
  1147. --Explode Hitbox--
  1148. function ExHitbox(rad,pos,damage,env,toim)
  1149. local E = Instance.new("Explosion")
  1150. E.Position = pos
  1151. E.Parent = game.Workspace
  1152. E.BlastRadius = rad
  1153. E.BlastPressure = 0
  1154. E.Visible = false
  1155. E.Hit:connect(function(hit)
  1156. if hit.Parent:FindFirstChild("Humanoid")~=nil then
  1157. dealdmg(hit.Parent,damage,env,toim)
  1158. end
  1159. end)
  1160. end
  1161.  
  1162. --Blade Touch--
  1163. bladeactive = false
  1164. function bladehit(hit)
  1165. if bladeactive == true then
  1166. if hit.Parent:FindFirstChild("Humanoid") ~= nil and hit.Parent:FindFirstChild("IsHit") == nil then
  1167. dealdmg(hit.Parent,40,5,.5)
  1168. PlaySnd(HitSnd,hit.Parent.Head)
  1169. end
  1170. end
  1171. end
  1172. Hitbox.Touched:connect(bladehit)
  1173. Hitbox2.Touched:connect(bladehit)
  1174.  
  1175. --Material Return--
  1176. gprop = {}
  1177. function materialhit(hit)
  1178. if hit.Parent ~= chara and hit.Parent.Parent ~= chara and hit.Name ~= "Trace" and hit.Parent:FindFirstChild("Humanoid") == nil then
  1179. gprop = {hit.BrickColor,hit.Material}
  1180. end
  1181. end
  1182. chara["Left Leg"].Touched:connect(materialhit)
  1183. chara["Right Leg"].Touched:connect(materialhit)
  1184.  
  1185. --Bash Dash--
  1186. function BashDash()
  1187. del = true
  1188. FlySnd:Play()
  1189. RiseA:Play()
  1190. local jtrace = Instance.new("Part",game.Workspace)
  1191. jtrace.Name = "Trace"
  1192. jtrace.Size = Vector3.new(0,0,0)
  1193. jtrace.Position = chara.HumanoidRootPart.Position - Vector3.new(0,6,0)
  1194. jtrace.CFrame = chara.HumanoidRootPart.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(90),0,0)
  1195. jtrace.Anchored = true
  1196. jtrace.CanCollide = false
  1197. ExHitbox(15,chara.Torso.Position,30,5,.2)
  1198. local tmesh = Instance.new("SpecialMesh",jtrace)
  1199. tmesh.MeshId = "http://www.roblox.com/asset/?id=20329976"
  1200. tmesh.Scale = Vector3.new(1,1,1)
  1201. tmesh.Offset = Vector3.new(0,0,-.125)
  1202. local bodf = Instance.new("BodyVelocity",chara.Torso)
  1203. bodf.Velocity = chara.HumanoidRootPart.CFrame.lookVector * 100
  1204. bodf.MaxForce = chara.HumanoidRootPart.CFrame.lookVector * 100000
  1205. local bpos = Instance.new("BodyPosition",chara.Torso)
  1206. bpos.Position = chara.HumanoidRootPart.Position + Vector3.new(0,1,0)
  1207. bpos.MaxForce = Vector3.new(0,20000,0)
  1208. for i = 1, 9 do
  1209. wait(.02)
  1210. ExHitbox(15,chara.Torso.Position,30,5,.2)
  1211. jtrace.Transparency = jtrace.Transparency + .1
  1212. tmesh.Scale = tmesh.Scale + Vector3.new(1,.05,1)
  1213. bodf.Velocity = chara.HumanoidRootPart.CFrame.lookVector * 1000
  1214. bodf.MaxForce = chara.HumanoidRootPart.CFrame.lookVector * 100000
  1215. end
  1216. wait(.02)
  1217. bodf:Destroy()
  1218. jtrace:Destroy()
  1219. bpos:Destroy()
  1220. RiseA:Stop()
  1221. del = false
  1222. end
  1223.  
  1224. --Super Jump--
  1225. function SuperJump()
  1226. del = true
  1227. local jtrace = Instance.new("Part",game.Workspace)
  1228. jtrace.Name = "Trace"
  1229. jtrace.Size = Vector3.new(0,0,0)
  1230. jtrace.Position = chara.Torso.Position
  1231. jtrace.CFrame = chara.Torso.CFrame - Vector3.new(0,2,0)
  1232. jtrace.Anchored = true
  1233. jtrace.BrickColor = BrickColor.new("New Yeller")
  1234. FlySnd:Play()
  1235. RiseA:Play()
  1236. local tmesh = Instance.new("SpecialMesh",jtrace)
  1237. tmesh.MeshId = "http://www.roblox.com/asset/?id=1125478"
  1238. tmesh.Scale = Vector3.new(0,0,0)
  1239. local origpos = chara.Torso.Position
  1240. local bdf = Instance.new("BodyPosition",chara.Torso)
  1241. bdf.MaxForce = Vector3.new(100000,100000,100000)
  1242. bdf.Position = origpos + Vector3.new(0,400,0)
  1243. for i = 1, 10 do
  1244. wait(.01)
  1245. jtrace.Transparency = jtrace.Transparency + .1
  1246. tmesh.Scale = tmesh.Scale + Vector3.new(2,.05,2)
  1247. end
  1248. jtrace:Destroy()
  1249. wait(1)
  1250. bdf.Position = origpos
  1251. bdf.D = 100
  1252. wait(1.5)
  1253. bdf:Destroy()
  1254. for i = 1, 15 do
  1255. local gtrace = Instance.new("Part",game.Workspace)
  1256. gtrace.BrickColor = gprop[1]
  1257. gtrace.Material = gprop[2]
  1258. gtrace.Size = Vector3.new(6,6,6)
  1259. gtrace.Anchored = true
  1260. gtrace.CanCollide = false
  1261. gtrace.CFrame = (CFrame.new(origpos.x,origpos.y,origpos.z) + Vector3.new(math.random(-40,40),-6,math.random(-40,40))) * CFrame.fromEulerAnglesXYZ(math.random(0,math.rad(359)),math.random(0,math.rad(359)),math.random(0,math.rad(359)))
  1262. local gdisp = coroutine.wrap(function()
  1263. wait(3)
  1264. for i = 1, 9 do
  1265. wait(.1)
  1266. gtrace.Transparency = gtrace.Transparency + .1
  1267. end
  1268. gtrace:Destroy()
  1269. end)
  1270. gdisp()
  1271. end
  1272. local trace = Instance.new("Part",game.Workspace)
  1273. trace.Size = Vector3.new(0,0,0)
  1274. trace.CFrame = CFrame.new(origpos.x,origpos.y,origpos.z)
  1275. trace.CanCollide = false
  1276. trace.Anchored = true
  1277. trace.Material = "Neon"
  1278. trace.BrickColor = BrickColor.new("New Yeller")
  1279. local tmesh2 = Instance.new("SpecialMesh",trace)
  1280. tmesh2.MeshType = "Sphere"
  1281. BExpSnd:Play()
  1282. ExHitbox(40,origpos,50,3,.5)
  1283. tracegrow = coroutine.wrap(function()
  1284. for i = 1, 9 do
  1285. wait(.01)
  1286. trace.Transparency = trace.Transparency + .1
  1287. tmesh2.Scale = tmesh2.Scale + Vector3.new(40,40,40)
  1288. end
  1289. trace:Destroy()
  1290. end)
  1291. tracegrow()
  1292. RiseA:Stop()
  1293. wait(1)
  1294. --Laugh2Snd:Play()
  1295. del = false
  1296. end
  1297.  
  1298.  
  1299. --Stomp--
  1300. function Stomp()
  1301. del = true
  1302. StompA:Play()
  1303. wait(.25)
  1304. for i = 1, 4 do
  1305. wait(.25)
  1306. ExpSnd:Play()
  1307. local jtrace = Instance.new("Part",game.Workspace)
  1308. jtrace.Name = "Trace"
  1309. jtrace.Size = Vector3.new(0,0,0)
  1310. jtrace.Position = chara.HumanoidRootPart.Position - Vector3.new(0,6,0)
  1311. jtrace.CFrame = chara.HumanoidRootPart.CFrame - Vector3.new(0,6,0)
  1312. jtrace.Anchored = true
  1313. ExHitbox(10,jtrace.Position,30,5,.3)
  1314. local tmesh = Instance.new("SpecialMesh",jtrace)
  1315. tmesh.MeshId = "http://www.roblox.com/asset/?id=20329976"
  1316. tmesh.Scale = Vector3.new(1,1,1)
  1317. tmesh.Offset = Vector3.new(0,0,-.125)
  1318. for i = 1, 9 do
  1319. wait(.02)
  1320. jtrace.Transparency = jtrace.Transparency + .1
  1321. tmesh.Scale = tmesh.Scale + Vector3.new(1,.05,1)
  1322. end
  1323. wait(.02)
  1324. jtrace:Destroy()
  1325. end
  1326. wait(.1)
  1327. StompA:Stop()
  1328. SmashA:Play()
  1329. wait(1)
  1330. for i = 1, 15 do
  1331. local gtrace = Instance.new("Part",game.Workspace)
  1332. gtrace.BrickColor = gprop[1]
  1333. gtrace.Material = gprop[2]
  1334. gtrace.Size = Vector3.new(6,6,6)
  1335. gtrace.Anchored = true
  1336. gtrace.CanCollide = false
  1337. gtrace.CFrame = (chara.HumanoidRootPart.CFrame + Vector3.new(math.random(-20,20),-6,math.random(-20,20))) * CFrame.fromEulerAnglesXYZ(math.random(0,math.rad(359)),math.random(0,math.rad(359)),math.random(0,math.rad(359)))
  1338. local gdisp = coroutine.wrap(function()
  1339. wait(3)
  1340. for i = 1, 9 do
  1341. wait(.1)
  1342. gtrace.Transparency = gtrace.Transparency + .1
  1343. end
  1344. gtrace:Destroy()
  1345. end)
  1346. gdisp()
  1347. end
  1348. BExpSnd:Play()
  1349. local jtrace = Instance.new("Part",game.Workspace)
  1350. jtrace.Size = Vector3.new(0,0,0)
  1351. jtrace.Position = chara.HumanoidRootPart.Position - Vector3.new(0,6,0)
  1352. jtrace.CFrame = chara.HumanoidRootPart.CFrame - Vector3.new(0,6,0)
  1353. jtrace.Anchored = true
  1354. ExHitbox(20,jtrace.Position,40,5,.3)
  1355. local tmesh = Instance.new("SpecialMesh",jtrace)
  1356. tmesh.MeshId = "http://www.roblox.com/asset/?id=20329976"
  1357. tmesh.Scale = Vector3.new(1,1,1)
  1358. tmesh.Offset = Vector3.new(0,0,-.125)
  1359. for i = 1, 9 do
  1360. wait(.01)
  1361. jtrace.Transparency = jtrace.Transparency + .1
  1362. tmesh.Scale = tmesh.Scale + Vector3.new(4,.05,4)
  1363. end
  1364. jtrace:Destroy()
  1365. wait(2)
  1366. SmashA:Stop()
  1367. del = false
  1368. end
  1369.  
  1370. --Sky Beams--
  1371. function SkyBeams()
  1372. del = true
  1373. RaiseA:Play()
  1374. local hitpos = Mouse.Hit
  1375. wait(.1)
  1376. for i = 1, 50 do
  1377. wait(.01)
  1378. local hitpt = Instance.new("Part",game.Workspace)
  1379. hitpt.Size = Vector3.new(1,1,1)
  1380. hitpt.Anchored = true
  1381. hitpt.CanCollide = false
  1382. hitpt.BrickColor = BrickColor.new("New Yeller")
  1383. hitpt.CFrame = (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)))
  1384. ExHitbox(5,hitpt.Position,30,2,.2)
  1385. PlaySnd(SkyBeamSnd,hitpt)
  1386. local hitb = Instance.new("Part",game.Workspace)
  1387. hitb.Size = Vector3.new(1,1,1)
  1388. hitb.Anchored = true
  1389. hitb.CanCollide = false
  1390. hitb.BrickColor = BrickColor.new("New Yeller")
  1391. hitb.Material = "Neon"
  1392. hitb.CFrame = CFrame.new(hitpt.Position.x,hitpt.Position.y,hitpt.Position.z)* CFrame.fromEulerAnglesXYZ(math.random(math.rad(-30),math.rad(30)),math.random(math.rad(-30),math.rad(30)),math.random(math.rad(-30),math.rad(30)))
  1393. local hitbm = Instance.new("CylinderMesh",hitb)
  1394. hitbm.Scale = Vector3.new(1,1000,1)
  1395. local hitm = Instance.new("SpecialMesh",hitpt)
  1396. hitm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1397. hpt = coroutine.wrap(function()
  1398. for i = 1, 9 do
  1399. wait(.05)
  1400. hitpt.Transparency = hitpt.Transparency + .1
  1401. hitm.Scale = hitm.Scale + Vector3.new(.5,.5,.5)
  1402. hitb.Transparency = hitb.Transparency + .1
  1403. end
  1404. hitpt:Destroy()
  1405. hitb:Destroy()
  1406. end)
  1407. hpt()
  1408. end
  1409. wait(1)
  1410. RaiseA:Stop()
  1411. del = false
  1412. end
  1413.  
  1414. --Huger Sky Beams--
  1415. function HugeSkyBeams()
  1416. del = true
  1417. RaiseA:Play()
  1418. ChargeSnd:Play()
  1419. local hitpos = Mouse.Hit
  1420. wait(2)
  1421. for i = 1, 30 do
  1422. wait(.1)
  1423. local hitpt = Instance.new("Part",game.Workspace)
  1424. hitpt.Size = Vector3.new(1,1,1)
  1425. hitpt.Anchored = true
  1426. hitpt.CanCollide = false
  1427. hitpt.BrickColor = BrickColor.new("New Yeller")
  1428. hitpt.CFrame = (hitpos + Vector3.new(math.random(-100,100),0,math.random(-100,100))) * CFrame.fromEulerAnglesXYZ(math.random(0,math.rad(359)),math.random(0,math.rad(359)),math.random(0,math.rad(359)))
  1429. ExHitbox(30,hitpt.Position,50,2,.2)
  1430. PlaySnd(ExpSnd,hitpt)
  1431. local hitb = Instance.new("Part",game.Workspace)
  1432. hitb.Size = Vector3.new(1,1,1)
  1433. hitb.Anchored = true
  1434. hitb.CanCollide = false
  1435. hitb.BrickColor = BrickColor.new("New Yeller")
  1436. hitb.Material = "Neon"
  1437. hitb.CFrame = CFrame.new(hitpt.Position.x,hitpt.Position.y,hitpt.Position.z)* CFrame.fromEulerAnglesXYZ(math.random(math.rad(-20),math.rad(20)),math.random(math.rad(-20),math.rad(20)),math.random(math.rad(-20),math.rad(20)))
  1438. local hitbm = Instance.new("CylinderMesh",hitb)
  1439. hitbm.Scale = Vector3.new(5,1000,5)
  1440. local hitm = Instance.new("SpecialMesh",hitpt)
  1441. hitm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1442. hpt = coroutine.wrap(function()
  1443. for i = 1, 9 do
  1444. wait(.05)
  1445. hitpt.Transparency = hitpt.Transparency + .1
  1446. hitm.Scale = hitm.Scale + Vector3.new(3,3,3)
  1447. hitb.Transparency = hitb.Transparency + .1
  1448. end
  1449. hitpt:Destroy()
  1450. hitb:Destroy()
  1451. end)
  1452. hpt()
  1453. end
  1454. wait(1)
  1455. RaiseA:Stop()
  1456. del = false
  1457. end
  1458.  
  1459. --Solar Destruction--
  1460. function SolarDestruction()
  1461. del = true
  1462. ChargeSnd:Play()
  1463. local spellcircle = Instance.new("Part",chara)
  1464. spellcircle.Anchored = true
  1465. spellcircle.Size = Vector3.new(1,1,1)
  1466. spellcircle.CFrame = CFrame.new(Mouse.Hit.x,Mouse.Hit.y,Mouse.Hit.z)
  1467. spellcircle.Transparency = 1
  1468. spellcircle.CanCollide = false
  1469. local blkm = Instance.new("BlockMesh",spellcircle)
  1470. blkm.Scale = Vector3.new(0,1,0)
  1471. local dec = Instance.new("Decal",spellcircle)
  1472. dec.Color3 = Color3.new(1,1,0)
  1473. dec.Texture = "rbxassetid://78036587"
  1474. dec.Transparency = 1
  1475. dec.Face = "Top"
  1476. local ptl = Instance.new("PointLight",spellcircle)
  1477. ptl.Range = 0
  1478. ptl.Color = Color3.new(1,1,0)
  1479. RaiseA:Play()
  1480. spellc = coroutine.wrap(function()
  1481. while spellcircle ~= nil do
  1482. wait(.01)
  1483. spellcircle.CFrame = spellcircle.CFrame * CFrame.fromEulerAnglesXYZ(0,math.rad(10),0)
  1484. end
  1485. end)
  1486. spellc()
  1487. for i = 1, 10 do
  1488. wait(.01)
  1489. ptl.Range = ptl.Range + 1
  1490. dec.Transparency = dec.Transparency - .1
  1491. blkm.Scale = blkm.Scale + Vector3.new(10,0,10)
  1492. end
  1493. wait(2)
  1494. local dir = game.Lighting:GetSunDirection()
  1495. local pos = spellcircle.Position + (dir*1400)
  1496. local particle = Instance.new("Part",chara)
  1497. particle.Transparency = 1
  1498. particle.Size = Vector3.new(1,1,1)
  1499. particle.Position = pos
  1500. particle.BrickColor = BrickColor.new("Institutional white")
  1501. particle.Material = "Neon"
  1502. particle.CanCollide = false
  1503. particle.Anchored = true
  1504. particle.CFrame = CFrame.new(pos,spellcircle.Position)
  1505. local mehs = Instance.new("BlockMesh",particle)
  1506. mehs.Scale = Vector3.new(50,50,3000)
  1507. wait(1)
  1508. LasLoopSnd:Play()
  1509. LasSnd:Play()
  1510. particle.Transparency = 0
  1511. for i = 1, 100 do
  1512. ExHitbox(60,spellcircle.Position,50,5,.2)
  1513. wait(.01)
  1514. local trace = coroutine.wrap(function()
  1515. local tr = Instance.new("Part",game.Workspace)
  1516. tr.Name = "Trace"
  1517. tr.Size = Vector3.new(0,0,0)
  1518. tr.CanCollide = false
  1519. tr.Material = "Neon"
  1520. tr.Anchored = true
  1521. tr.BrickColor = BrickColor.new("Cool yellow")
  1522. tr.CFrame = spellcircle.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(math.random(0,359)),math.rad(math.random(0,359)),math.rad(math.random(0,359)))
  1523. local trm = Instance.new("BlockMesh",tr)
  1524. for i = 1, 4 do
  1525. wait(.01)
  1526. tr.Transparency = tr.Transparency + .2
  1527. trm.Scale = trm.Scale + Vector3.new(200,200,200)
  1528. end
  1529. tr:Destroy()
  1530. end)
  1531. trace()
  1532. end
  1533. for i = 1, 9 do
  1534. particle.Transparency = particle.Transparency + .1
  1535. wait(.01)
  1536. end
  1537. particle:Destroy()
  1538. LasLoopSnd:Stop()
  1539. for i = 1, 10 do
  1540. wait(.01)
  1541. ptl.Range = ptl.Range - 1
  1542. dec.Transparency = dec.Transparency + .1
  1543. blkm.Scale = blkm.Scale - Vector3.new(10,0,10)
  1544. end
  1545. RaiseA:Stop()
  1546. spellcircle:Destroy()
  1547. del = false
  1548. end
  1549.  
  1550. --Mouse Functions--
  1551. del = false
  1552. combo = 0
  1553. function onKeyDown(key)
  1554. if del == false then
  1555. if key == "z" then
  1556. BashDash()
  1557. elseif key == "x" then
  1558. SuperJump()
  1559. elseif key == "c" then
  1560. Stomp()
  1561. elseif key == "v" then
  1562. SkyBeams()
  1563. elseif key == "b" then
  1564. HugeSkyBeams()
  1565. elseif key == "n" then
  1566. SolarDestruction()
  1567. elseif key == "m" then
  1568. if Music.IsPlaying == true then
  1569. Music:Stop()
  1570. elseif Music.IsPlaying == false then
  1571. Music:Play()
  1572. end
  1573. end
  1574. end
  1575. end
  1576. function onButton1Down()
  1577. if del == false then
  1578. if combo == 0 then
  1579. del = true
  1580. bladeactive = true
  1581. SwingA:Play()
  1582. SwingSnd:Play()
  1583. wait(.5)
  1584. SwingA:Stop()
  1585. bladeactive = false
  1586. combo = 1
  1587. del = false
  1588. elseif combo == 1 then
  1589. del = true
  1590. bladeactive = true
  1591. Swing2A:Play()
  1592. SwingSnd:Play()
  1593. wait(.5)
  1594. Swing2A:Stop()
  1595. bladeactive = false
  1596. combo = 0
  1597. del = false
  1598. combo = 0
  1599. end
  1600. end
  1601. end
  1602.  
  1603. --Mouse Activation--
  1604. if Mouse then
  1605. Mouse.KeyDown:connect(onKeyDown)
  1606. Mouse.Button1Down:connect(onButton1Down)
  1607. end
  1608.  
  1609.  
  1610.  
  1611. --Loop--
  1612. while true do
  1613. wait(.1)
  1614. chara.Humanoid.MaxHealth = math.huge
  1615. chara.Humanoid.Health = math.huge
  1616. chara.Humanoid.WalkSpeed = 32
  1617. for i = 1, #lap do
  1618. lap[i].Anchored = false
  1619. end
  1620. for i = 1, #s1p do
  1621. s1p[i].Anchored = false
  1622. end
  1623. for i = 1, #s2p do
  1624. s2p[i].Anchored = false
  1625. end
  1626. for i = 1, #rap do
  1627. rap[i].Anchored = false
  1628. end
  1629. for i = 1, #llp do
  1630. llp[i].Anchored = false
  1631. end
  1632. for i = 1, #rlp do
  1633. rlp[i].Anchored = false
  1634. end
  1635. for i = 1, #chp do
  1636. chp[i].Anchored = false
  1637. end
  1638. for i = 1, #hdp do
  1639. hdp[i].Anchored = false
  1640. end
  1641. for i = 1, #ch do
  1642. if ch[i].ClassName == "Part" then
  1643. ch[i].Anchored = false
  1644. end
  1645. end
  1646. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement