Advertisement
lafur

Untitled

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