Advertisement
PixelDerpIsUber2

Untitled

Oct 19th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 151.67 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,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152. ------------
  153. --Lunarine--
  154. ------------
  155. --By --
  156. --CKbackup--
  157. ------------
  158.  
  159. wait(2)
  160.  
  161. player = game.Players.LocalPlayer
  162. chara = player.Character
  163. debby = game.Debris
  164. local Mouse = player:GetMouse()
  165.  
  166. --Outfit and Weapons--
  167. New = function(Object, Parent, Name, Data)
  168. local Object = Instance.new(Object)
  169. for Index, Value in pairs(Data or {}) do
  170. Object[Index] = Value
  171. end
  172. Object.Parent = Parent
  173. Object.Name = Name
  174. return Object
  175. end
  176.  
  177. LeftArm = New("Model",chara,"LeftArm",{})
  178. MainPart = New("Part",LeftArm,"MainPart",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1, 2.00000024, 1),CFrame = CFrame.new(4.5, 3.00005722, -4.50000048, -1, 0, 0, 0, 1.00001287, 0, 0, 0, -1.00001287),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.705882, 0.823529, 0.894118),})
  179. Weld = New("ManualWeld",MainPart,"Weld",{Part0 = MainPart,Part1 = chara["Left Arm"],C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1.00000429, 0, 0, 0, -1.00000429),C1 = CFrame.new(0, 7.62939453e-006, 1.23977661e-005, 1, 0, 0, 0, 1.00000429, 0, 0, 0, 1.00000429),})
  180. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 1),CFrame = CFrame.new(4.9000001, 3.90006065, -4.50000048, -1, 0, 0, 0, 1.00001287, 0, 0, 0, -1.00001287),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  181. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  182. 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.400000095, 0.899991989, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),})
  183. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.200000003, 0.200000003),CFrame = CFrame.new(4.10000086, 2.70005608, -4.50000048, 0, 0, -1, 0, 1.00001287, 0, 1.00001287, 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.321569, 0.486275, 0.682353),})
  184. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  185. 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.399999142, -0.29999733, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),})
  186. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.200000003, 1),CFrame = CFrame.new(4.5, 2.50004888, -4.50000048, -1, 0, 0, 0, 1.00001287, 0, 0, 0, -1.00001287),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  187. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  188. 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, -0.500001907, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),})
  189. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(4.30000114, 4.00006056, -4.50000048, -1, 0, 0, 0, 1.00001287, 0, 0, 0, -1.00001287),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  190. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  191. 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.199999094, 0.999990463, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),})
  192. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.200000003, 0.200000003),CFrame = CFrame.new(4.9000001, 4.10006046, -4.50000048, 0, 0, -1, 0, 1.00001287, 0, 1.00001287, 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.321569, 0.486275, 0.682353),})
  193. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  194. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  195. 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.400000095, 1.09998894, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),})
  196. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.400000006, 0.400000006),CFrame = CFrame.new(3.60000014, 4.00006056, -4.50000048, 0, 0, 1, 0, 1.00001287, 0, -1.00001287, 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.321569, 0.486275, 0.682353),})
  197. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  198. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  199. 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.899999857, 0.999990463, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),})
  200. EnamatePart = New("Part",LeftArm,"EnamatePart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Transparency = 1,Transparency = 1,Size = Vector3.new(1, 0.400000036, 1),CFrame = CFrame.new(4.5, 2.00003481, -4.50000906, 1, 0, 0, 0, 1.00001287, 0, 0, 0, 1.00001287),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  201. Weld = New("ManualWeld",EnamatePart,"Weld",{Part0 = EnamatePart,Part1 = MainPart,C1 = CFrame.new(-2.38418579e-007, -1.00000954, 8.58306885e-006, -1, 0, 0, 0, 1, 0, 0, 0, -1),})
  202. Part = New("Part",LeftArm,"Part",{BrickColor = BrickColor.new("Fog"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1, 0.400000036, 1),CFrame = CFrame.new(4.49999952, 2.20003057, -4.50001335, 1, 0, 0, 0, 1.00002146, 0, 0, 0, 1.00002146),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.780392, 0.831373, 0.894118),})
  203. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  204. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1.00000429, 0, 0, 0, 1.00000429),C1 = CFrame.new(4.76837158e-007, -0.800016403, 1.28746033e-005, -1, 0, 0, 0, 1.00000429, 0, 0, 0, -1.00000429),})
  205. LeftLeg = New("Model",chara,"LeftLeg",{})
  206. MainPart = New("Part",LeftLeg,"MainPart",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1, 2.00000024, 1),CFrame = CFrame.new(5.5, 1.00003695, -4.5, -1, 0, 0, 0, 1.00000501, 0, 0, 0, -1.00000501),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.705882, 0.823529, 0.894118),})
  207. Weld = New("ManualWeld",MainPart,"Weld",{Part0 = MainPart,Part1 = chara["Left Leg"],C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1.00000572, 0, 0, 0, -1.00000572),C1 = CFrame.new(0, -1.90734863e-006, 1.09672546e-005, 1, 0, 0, 0, 1.00000501, 0, 0, 0, 1.00000501),})
  208. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.200000003, 1),CFrame = CFrame.new(5.5, 0.500034451, -4.5, -1, 0, 0, 0, 1.00000501, 0, 0, 0, -1.00000501),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  209. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  210. 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, -0.5, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),})
  211. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.200000003, 0.200000003),CFrame = CFrame.new(5.10000229, 0.700036228, -4.5, 0, 0, -1, 0, 1.00000501, 0, 1.00000501, 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.321569, 0.486275, 0.682353),})
  212. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  213. 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.39999795, -0.299999237, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),})
  214. Part = New("Part",LeftLeg,"Part",{BrickColor = BrickColor.new("Fog"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1, 0.400000036, 1),CFrame = CFrame.new(5.5, 0.199991405, -4.50000048, 1, 0, 0, 0, 1.00001073, 0, 0, 0, 1.00001073),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.780392, 0.831373, 0.894118),})
  215. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  216. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(0, -0.800041556, 4.76837158e-007, -1, 0, 0, 0, 1.00000572, 0, 0, 0, -1.00000572),})
  217. Chest = New("Model",chara,"Chest",{})
  218. MainPart = New("Part",Chest,"MainPart",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(2, 2.00000024, 1),CFrame = CFrame.new(6, 3.00006342, -4.50004101, 1, 0, 0, 0, 1.00001383, 5.96046448e-008, 0, -5.96046448e-008, 1.00001383),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.705882, 0.823529, 0.894118),})
  219. Weld = New("ManualWeld",MainPart,"Weld",{Part0 = MainPart,Part1 = chara.Torso,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),C1 = CFrame.new(0, 1.28746033e-005, -2.43186951e-005, 1, 0, 0, 0, 1.00000715, -1.19209332e-007, 0, 1.19209332e-007, 1.00000715),})
  220. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.600000024, 0.399999976, 0.200000003),CFrame = CFrame.new(6, 2.16866231, -2.16859388, 5.96039591e-008, -1, 0, 0.707123756, 4.21473736e-008, 0.707122982, -0.707122982, -4.21473274e-008, 0.707123756),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  221. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  222. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 5.96039591e-008, 0.707110584, -0.707109809, -1, 4.21465884e-008, -4.21465423e-008, 0, 0.707109809, 0.707110584),C1 = CFrame.new(0, -0.831389666, 2.33141494, 1, 0, 0, 0, 1.00000477, -5.96046448e-008, 0, 5.96046448e-008, 1.00000477),})
  223. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(2, 0.200000003, 1),CFrame = CFrame.new(6, 2.10003901, -4.50004339, 1, 0, 0, 0, 1.00002372, 5.96052345e-008, 0, -5.96052345e-008, 1.00002372),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  224. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  225. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1.00000513, -5.96046661e-008, 0, 5.96046661e-008, 1.00000513),C1 = CFrame.new(0, -0.900012016, -2.38418579e-006, 1, 0, 0, 0, 1.00000477, -5.96046448e-008, 0, 5.96046448e-008, 1.00000477),})
  226. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(5.69999981, 3.70007658, -4.90005064, 0, 0, 1, 5.96052345e-008, -1.00002372, 0, 1.00002372, 5.96052345e-008, 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.321569, 0.486275, 0.682353),})
  227. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  228. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 5.96046661e-008, 1.00000513, 0, -1.00000513, 5.96046661e-008, 1, 0, 0),C1 = CFrame.new(-0.300000191, 0.700003624, -0.40000391, 1, 0, 0, 0, 1.00000477, -5.96046448e-008, 0, 5.96046448e-008, 1.00000477),})
  229. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.600000024),CFrame = CFrame.new(6.5, 3.90008974, -4.50004339, 1, 0, 0, 0, 1.00002372, 5.96052345e-008, 0, -5.96052345e-008, 1.00002372),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  230. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  231. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1.00000513, -5.96046661e-008, 0, 5.96046661e-008, 1.00000513),C1 = CFrame.new(0.5, 0.900013924, -2.38418579e-006, 1, 0, 0, 0, 1.00000477, -5.96046448e-008, 0, 5.96046448e-008, 1.00000477),})
  232. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(5.69999981, 3.90008211, -4.90005064, 0, 0, -1, 5.96052345e-008, 1.00002372, 0, 1.00002372, -5.96052345e-008, 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.321569, 0.486275, 0.682353),})
  233. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  234. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 5.96046661e-008, 1.00000513, 0, 1.00000513, -5.96046661e-008, -1, 0, 0),C1 = CFrame.new(-0.300000191, 0.900006294, -0.40000391, 1, 0, 0, 0, 1.00000477, -5.96046448e-008, 0, 5.96046448e-008, 1.00000477),})
  235. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(5.50000095, 3.90008783, -4.90005064, 0, 0, 1, 5.96052345e-008, -1.00002372, 0, 1.00002372, 5.96052345e-008, 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.321569, 0.486275, 0.682353),})
  236. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  237. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 5.96046661e-008, 1.00000513, 0, -1.00000513, 5.96046661e-008, 1, 0, 0),C1 = CFrame.new(-0.499999046, 0.900012016, -0.40000391, 1, 0, 0, 0, 1.00000477, -5.96046448e-008, 0, 5.96046448e-008, 1.00000477),})
  238. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.399999857, 0.400000006),CFrame = CFrame.new(5.5999999, 2.52222896, -2.52216196, 0, 0, -1, 0.707122922, 0.707123816, 0, 0.707123816, -0.707122922, 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.321569, 0.486275, 0.682353),})
  239. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  240. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0.707109749, 0.707110643, 0, 0.707110643, -0.707109749, -1, 0, 0),C1 = CFrame.new(-0.400000095, -0.477828026, 1.97785163, 1, 0, 0, 0, 1.00000477, -5.96046448e-008, 0, 5.96046448e-008, 1.00000477),})
  241. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 1.80000007, 2),CFrame = CFrame.new(6.00000906, 1.30002105, -3.70002818, -1.59710094e-008, -7.10542736e-015, -1, 0.500011683, 0.866046011, -7.98569921e-009, 0.866046011, -0.500011683, -1.38316274e-008),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.705882, 0.823529, 0.894118),})
  242. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1.59710094e-008, 0.500002384, 0.866029918, -7.10542736e-015, 0.866029918, -0.500002384, -1, -7.98555089e-009, -1.38313707e-008),C1 = CFrame.new(9.05990601e-006, -1.70001888, 0.800001621, 1, 0, 0, 0, 1.00000477, -5.96046448e-008, 0, 5.96046448e-008, 1.00000477),})
  243. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.799999893, 1.80000019, 0.200000003),CFrame = CFrame.new(7.30000591, 1.30002677, -4.60004044, 0, -0.500000894, -0.866024911, 5.96052345e-008, 0.866045415, -0.500012755, 1.00002372, -5.16196152e-008, 2.98026706e-008),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.705882, 0.823529, 0.894118),})
  244. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 5.96046661e-008, 1.00000513, -0.500000894, 0.866029322, -5.1619125e-008, -0.866024911, -0.500003457, 2.98023863e-008),C1 = CFrame.new(1.30000591, -1.70001316, -0.0999979973, 1, 0, 0, 0, 1.00000477, -5.96046448e-008, 0, 5.96046448e-008, 1.00000477),})
  245. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.799999893, 1.80000019, 0.200000003),CFrame = CFrame.new(4.70000601, 1.30002677, -4.60004044, 0, 0.499999017, -0.866026223, 5.96052345e-008, 0.866046727, 0.500010848, 1.00002372, -5.16196934e-008, -2.98025569e-008),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.705882, 0.823529, 0.894118),})
  246. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 5.96046661e-008, 1.00000513, 0.499999017, 0.866030633, -5.16192031e-008, -0.866026223, 0.50000155, -2.98022744e-008),C1 = CFrame.new(-1.29999399, -1.70001316, -0.0999979973, 1, 0, 0, 0, 1.00000477, -5.96046448e-008, 0, 5.96046448e-008, 1.00000477),})
  247. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 4.4000001, 2),CFrame = CFrame.new(6, 2.38080931, -2.38075256, 0, 0, -1, 0.707109869, 0.707110107, 0, 0.707110107, -0.707109869, 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.705882, 0.823529, 0.894118),})
  248. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0.707109869, 0.707110107, 0, 0.707110107, -0.707109869, -1, 0, 0),C1 = CFrame.new(0, -0.619245529, 2.11925912, 1, 0, 0, 0, 1.00000477, -5.96046448e-008, 0, 5.96046448e-008, 1.00000477),})
  249. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 1.4000001, 0.200000003),CFrame = CFrame.new(6, 2.90004635, -4.9000144, 1, 0, 0, 0, 1.00001895, 5.96054903e-008, 0, -5.96054903e-008, 1.00001895),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  250. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  251. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1.00000513, -5.96046661e-008, 0, 5.96046661e-008, 1.00000513),C1 = CFrame.new(0, -0.10001564, -0.39996767, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  252. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 3.60000014, 0.200000003),CFrame = CFrame.new(6, 0.895817995, -0.895722628, 5.96046412e-008, -0.99999994, 0, 0.707120538, 4.21476685e-008, 0.707119763, -0.707119763, -4.21476223e-008, 0.707120538),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  253. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  254. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 5.96046412e-008, 0.707110763, -0.707109988, -0.99999994, 4.21470858e-008, -4.21470396e-008, 0, 0.707109988, 0.707110763),C1 = CFrame.new(0, -2.10421658, 3.60426831, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  255. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.400000066, 0.400000006),CFrame = CFrame.new(6.4000001, 2.52221155, -2.52209997, 0, 0, 1, -0.707120538, 0.707119405, 0, -0.707119405, -0.707120538, 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.321569, 0.486275, 0.682353),})
  256. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  257. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -0.707110763, -0.70710963, 0, 0.70710963, -0.707110763, 1, 0, 0),C1 = CFrame.new(0.400000095, -0.47784543, 1.97791362, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  258. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 1.60000002, 0.200000003),CFrame = CFrame.new(4.47727203, 1.5081805, -1.50808311, 9.39882394e-009, 0.178885445, -0.983869851, 0.707119942, 0.695714474, 0.126493514, 0.707120419, -0.695713997, -0.126493424),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  259. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  260. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 9.39882394e-009, 0.707110167, 0.707110643, 0.178885445, 0.695704877, -0.695704401, -0.983869851, 0.12649177, -0.126491681),C1 = CFrame.new(-1.52272797, -1.49186242, 2.99191642, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  261. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 1, 0.400000006),CFrame = CFrame.new(6.80000019, 2.73435283, -2.73424101, 1.98723757e-008, 2.98020062e-008, -1, 0.707119763, 0.70712024, 3.51257512e-008, 0.70712024, -0.707119763, -7.02143277e-009),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  262. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  263. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 1.98723757e-008, 0.707109988, 0.707110465, 2.98020062e-008, 0.707110465, -0.707109988, -1, 3.51252645e-008, -7.02133551e-009),C1 = CFrame.new(0.800000191, -0.265707016, 1.76577568, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  264. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 1, 0.400000006),CFrame = CFrame.new(5.19999981, 2.73435235, -2.73424149, 0, 0, 1, -0.707120538, 0.707119405, 0, -0.707119405, -0.707120538, 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.321569, 0.486275, 0.682353),})
  265. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  266. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -0.707110763, -0.70710963, 0, 0.70710963, -0.707110763, 1, 0, 0),C1 = CFrame.new(-0.800000191, -0.265707493, 1.7657752, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  267. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 1.60000002, 0.200000003),CFrame = CFrame.new(7.52272892, 1.50817478, -1.50807929, -6.16093132e-008, -0.178884313, 0.983862221, -0.707114697, 0.695709288, 0.126492739, -0.707116783, -0.695710361, -0.126493022),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  268. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  269. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -6.16093132e-008, -0.707104921, -0.707107008, -0.178884313, 0.695699692, -0.695700765, 0.983862221, 0.126490995, -0.126491278),C1 = CFrame.new(1.52272892, -1.49186814, 2.99192023, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  270. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000033, 1.60000002, 0.200000003),CFrame = CFrame.new(7.25000572, 1.38660395, -4.90001011, 0.866024911, -0.500000834, 0, 0.500010312, 0.866041303, 5.96054903e-008, -2.98027949e-008, -5.16198391e-008, 1.00001895),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  271. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  272. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.866024911, 0.500003397, -2.98023828e-008, -0.500000834, 0.866029322, -5.1619125e-008, 0, 5.96046661e-008, 1.00000513),C1 = CFrame.new(1.25000572, -1.61343718, -0.399963856, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  273. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(6.0999999, 3.700068, -4.9000144, 0, 0, 1, -5.96054903e-008, 1.00001895, 0, -1.00001895, -5.96054903e-008, 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.321569, 0.486275, 0.682353),})
  274. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  275. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -5.96046661e-008, -1.00000513, 0, 1.00000513, -5.96046661e-008, 1, 0, 0),C1 = CFrame.new(0.0999999046, 0.699994802, -0.39996767, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  276. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000033, 1.60000002, 0.200000003),CFrame = CFrame.new(4.75000572, 1.38660395, -4.90001011, -0.866026044, -0.499998868, 0, 0.500008345, -0.866042435, 5.96054903e-008, -2.98026777e-008, 5.16199066e-008, 1.00001895),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  277. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  278. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.866026044, 0.500001431, -2.98022655e-008, -0.499998868, -0.866030455, 5.16191925e-008, 0, 5.96046661e-008, 1.00000513),C1 = CFrame.new(-1.24999428, -1.61343718, -0.399963856, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  279. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.600000024),CFrame = CFrame.new(5.5, 3.9000864, -4.50000381, 1, 0, 0, 0, 1.00001895, 5.96054903e-008, 0, -5.96054903e-008, 1.00001895),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  280. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  281. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1.00000513, -5.96046661e-008, 0, 5.96046661e-008, 1.00000513),C1 = CFrame.new(-0.5, 0.900010586, 3.71932983e-005, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  282. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(6.30000019, 3.70007372, -4.9000144, 0, 0, -1, -5.96054903e-008, -1.00001895, 0, -1.00001895, 5.96054903e-008, 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.321569, 0.486275, 0.682353),})
  283. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  284. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -5.96046661e-008, -1.00000513, 0, -1.00000513, 5.96046661e-008, -1, 0, 0),C1 = CFrame.new(0.300000191, 0.700000525, -0.39996767, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  285. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(6.30000019, 3.90008068, -4.9000144, 0, 0, 1, -5.96054903e-008, 1.00001895, 0, -1.00001895, -5.96054903e-008, 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.321569, 0.486275, 0.682353),})
  286. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  287. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -5.96046661e-008, -1.00000513, 0, 1.00000513, -5.96046661e-008, 1, 0, 0),C1 = CFrame.new(0.300000191, 0.900004864, -0.39996767, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  288. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1.20000005, 0.200000003, 0.200000003),CFrame = CFrame.new(6, 3.9000864, -4.09998798, 1, 0, 0, 0, 1.00001895, 5.96054903e-008, 0, -5.96054903e-008, 1.00001895),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  289. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  290. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1.00000513, -5.96046661e-008, 0, 5.96046661e-008, 1.00000513),C1 = CFrame.new(0, 0.900010586, 0.400047302, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  291. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(5.90000105, 3.70007181, -4.9000144, 0, 0, -1, 5.96054903e-008, 1.00001895, 0, 1.00001895, -5.96054903e-008, 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.321569, 0.486275, 0.682353),})
  292. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  293. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 5.96046661e-008, 1.00000513, 0, 1.00000513, -5.96046661e-008, -1, 0, 0),C1 = CFrame.new(-0.099998951, 0.699998617, -0.39996767, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  294. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(6.5, 3.9000864, -4.9000144, 0, 0, -1, -5.96054903e-008, -1.00001895, 0, -1.00001895, 5.96054903e-008, 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.321569, 0.486275, 0.682353),})
  295. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  296. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -5.96046661e-008, -1.00000513, 0, -1.00000513, 5.96046661e-008, -1, 0, 0),C1 = CFrame.new(0.5, 0.900010586, -0.39996767, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  297. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 3.5999999),CFrame = CFrame.new(6.00000906, 0.607151985, -3.29996657, 4.27941371e-009, -1.59710094e-008, 1, 0.866041899, 0.500009298, 4.27950164e-009, -0.500009298, 0.866041899, 1.59713149e-008),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  298. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  299. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 4.27941371e-009, 0.866029978, -0.500002384, -1.59710094e-008, 0.500002384, 0.866029978, 1, 4.27944258e-009, 1.59710947e-008),C1 = CFrame.new(9.05990601e-006, -2.39287829, 1.20005774, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  300. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 2),CFrame = CFrame.new(6, 3.90008068, -3.89998055, 0, 0, -1, 5.96054903e-008, 1.00001895, 0, 1.00001895, -5.96054903e-008, 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.705882, 0.823529, 0.894118),})
  301. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 5.96046661e-008, 1.00000513, 0, 1.00000513, -5.96046661e-008, -1, 0, 0),C1 = CFrame.new(0, 0.900004864, 0.600052118, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  302. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 1.79999995),CFrame = CFrame.new(4.30000687, 0.6071558, -4.09998417, 0.499998927, -0.866026044, 0, 0.866042435, 0.500008404, 5.96054903e-008, -5.16199066e-008, -2.98026812e-008, 1.00001895),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  303. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  304. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.499998927, 0.866030455, -5.16191925e-008, -0.866026044, 0.50000149, -2.98022691e-008, 0, 5.96046661e-008, 1.00000513),C1 = CFrame.new(-1.69999313, -2.39287448, 0.400051117, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  305. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 1.79999995),CFrame = CFrame.new(7.70000648, 0.6071558, -4.09998417, 0.866024911, -0.500000834, 0, 0.500010312, 0.866041303, 5.96054903e-008, -2.98027949e-008, -5.16198391e-008, 1.00001895),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  306. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  307. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0.866024911, 0.500003397, -2.98023828e-008, -0.500000834, 0.866029322, -5.1619125e-008, 0, 5.96046661e-008, 1.00000513),C1 = CFrame.new(1.70000648, -2.39287448, 0.400051117, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  308. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.600000083, 0.799999952),CFrame = CFrame.new(5.4000001, 2.16864324, -2.16853142, 0, 0, 1, 0.707123935, -0.707122922, 0, 0.707122922, 0.707123935, 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.321569, 0.486275, 0.682353),})
  309. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  310. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0.70711416, 0.707113147, 0, -0.707113147, 0.70711416, 1, 0, 0),C1 = CFrame.new(-0.599999905, -0.831408739, 2.3314774, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  311. Part = New("WedgePart",Chest,"Part",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 4.4000001, 0.800000012),CFrame = CFrame.new(7.4000001, 2.38079023, -2.38069153, 0, 0, -0.99999994, 0.707119942, 0.707120359, 0, 0.707120359, -0.707119942, 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.705882, 0.823529, 0.894118),})
  312. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0.707110167, 0.707110584, 0, 0.707110584, -0.707110167, -0.99999994, 0, 0),C1 = CFrame.new(1.4000001, -0.619264603, 2.11932015, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  313. Part = New("WedgePart",Chest,"Part",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 1.79999995, 0.800000012),CFrame = CFrame.new(7.40000916, 1.29999423, -3.69998121, 0, 0, -1.00000024, 0.500009537, 0.866042197, 0, 0.866041958, -0.500009656, 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.705882, 0.823529, 0.894118),})
  314. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0.500002623, 0.866030037, 0, 0.866030276, -0.500002742, -1.00000024, 0, 0),C1 = CFrame.new(1.40000916, -1.7000457, 0.80004859, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  315. Part = New("WedgePart",Chest,"Part",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 1.79999995, 1),CFrame = CFrame.new(4.70000601, 1.29999804, -3.69996977, -0.866025984, 0.499998987, 0, 0.500008464, 0.866042376, -5.96054903e-008, -2.98026848e-008, -5.1619903e-008, -1.00001895),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.705882, 0.823529, 0.894118),})
  316. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.866025984, 0.50000155, -2.98022726e-008, 0.499998987, 0.866030395, -5.16191889e-008, 0, -5.96046661e-008, -1.00000513),C1 = CFrame.new(-1.29999399, -1.70004189, 0.800060034, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  317. Part = New("WedgePart",Chest,"Part",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 1.79999995, 1),CFrame = CFrame.new(7.30000591, 1.29999804, -3.69996977, -0.866026938, -0.500001907, 0, -0.500011384, 0.866043329, -5.96054903e-008, 2.98028588e-008, -5.16199599e-008, -1.00001895),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.705882, 0.823529, 0.894118),})
  318. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -0.866026938, -0.50000447, 2.98024467e-008, -0.500001907, 0.866031349, -5.16192458e-008, 0, -5.96046661e-008, -1.00000513),C1 = CFrame.new(1.30000591, -1.70004189, 0.800060034, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  319. Part = New("WedgePart",Chest,"Part",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 4.4000001, 0.800000012),CFrame = CFrame.new(4.5999999, 2.38079023, -2.38069153, 0, 0, 1, -0.707119942, 0.707120538, 0, -0.707120538, -0.707119942, 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.705882, 0.823529, 0.894118),})
  320. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -0.707110167, -0.707110763, 0, 0.707110763, -0.707110167, 1, 0, 0),C1 = CFrame.new(-1.4000001, -0.619264603, 2.11932015, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  321. Part = New("WedgePart",Chest,"Part",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 1.79999995, 0.800000012),CFrame = CFrame.new(4.60000896, 1.29999423, -3.69998121, 0, 0, 1, -0.500009418, 0.86604178, 0, -0.86604178, -0.500009418, 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.705882, 0.823529, 0.894118),})
  322. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -0.500002503, -0.866029859, 0, 0.866029859, -0.500002503, 1, 0, 0),C1 = CFrame.new(-1.39999104, -1.7000457, 0.80004859, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  323. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.600000083, 0.800000012),CFrame = CFrame.new(6.5999999, 2.16864347, -2.16853189, 0, 0, -1, -0.707122922, -0.707123935, 0, -0.707123935, 0.707122922, 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.321569, 0.486275, 0.682353),})
  324. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  325. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -0.707113147, -0.70711416, 0, -0.70711416, 0.707113147, -1, 0, 0),C1 = CFrame.new(0.599999905, -0.831408501, 2.33147693, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  326. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Fog"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.400000006, 0.400000006),CFrame = CFrame.new(6.19999838, 3.80007887, -4.90001774, 0, 0, -1, 0, -1.00002337, 0, -1.00002337, 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.780392, 0.831373, 0.894118),})
  327. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  328. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1.00000954, 0, -1.00000954, 0, -1, 0, 0),C1 = CFrame.new(0.199998379, 0.800004244, -0.399971008, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  329. Part = New("Part",Chest,"Part",{BrickColor = BrickColor.new("Fog"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.400000006, 0.400000006),CFrame = CFrame.new(5.79999971, 3.80007887, -4.90001774, 0, 0, 1, 5.96051848e-008, -1.00001383, 0, 1.00001383, 5.96051848e-008, 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.780392, 0.831373, 0.894118),})
  330. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  331. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 5.96043606e-008, 1, 0, -1, 5.96043606e-008, 1, 0, 0),C1 = CFrame.new(-0.200000286, 0.800004482, -0.399971008, 1, 0, 0, 0, 1, -5.96038205e-008, 0, 5.96038205e-008, 1),})
  332. FakeHead = New("Model",chara,"FakeHead",{})
  333. MainPart = New("Part",FakeHead,"MainPart",{BrickColor = BrickColor.new("Fog"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(2, 1.00000024, 1),CFrame = CFrame.new(6, 4.50005817, -4.5, 1, 0, 0, 0, 1.00000501, 0, 0, 0, 1.00000501),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.780392, 0.831373, 0.894118),})
  334. Mesh = New("SpecialMesh",MainPart,"Mesh",{Scale = Vector3.new(1.25, 1.25, 1.25),})
  335. Weld = New("ManualWeld",MainPart,"Weld",{Part0 = MainPart,Part1 = chara.Head,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1.00000501, 0, 0, 0, 1.00000501),C1 = CFrame.new(0, 1.90734863e-006, 1.09672546e-005, 1, 0, 0, 0, 1.00000501, 0, 0, 0, 1.00000501),})
  336. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Fog"),FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(1.20000005, 1, 0.600000024),CFrame = CFrame.new(6, 5.50007153, -4.69999933, 1, 0, 0, 0, 1.00001001, 0, 0, 0, 1.00001001),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.780392, 0.831373, 0.894118),})
  337. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.800000012, 0.800000012, 0.800000012),MeshId = "http://www.roblox.com/asset/?id=101176852 ",MeshType = Enum.MeshType.FileMesh,})
  338. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(0, 1.00000811, -0.199998379, 1, 0, 0, 0, 1.00000501, 0, 0, 0, 1.00000501),})
  339. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Toothpaste"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(5.89999962, 4.70005989, -5.00000763, -1, 0, 0, 0, 1.00000501, 0, 0, 0, -1.00000501),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0, 1, 1),})
  340. Mesh = New("SpecialMesh",Part,"Mesh",{Offset = Vector3.new(0.0799999982, 0.0299999993, 0.0399999991),Scale = Vector3.new(0.400000006, 1.5, 0.200000003),MeshType = Enum.MeshType.Sphere,})
  341. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1.00000501, 0, 0, 0, -1.00000501),C1 = CFrame.new(-0.100000381, 0.200000763, -0.500005245, 1, 0, 0, 0, 1.00000501, 0, 0, 0, 1.00000501),})
  342. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Toothpaste"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(6.0999999, 4.70005989, -5.00000763, 1, 0, 0, 0, 1.00000501, 0, 0, 0, 1.00000501),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0, 1, 1),})
  343. Mesh = New("SpecialMesh",Part,"Mesh",{Offset = Vector3.new(0.0799999982, 0.0299999993, -0.0399999991),Scale = Vector3.new(0.400000006, 1.5, 0.200000003),MeshType = Enum.MeshType.Sphere,})
  344. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1.00000501, 0, 0, 0, 1.00000501),C1 = CFrame.new(0.0999999046, 0.200000763, -0.500005245, 1, 0, 0, 0, 1.00000501, 0, 0, 0, 1.00000501),})
  345. Part = New("Part",FakeHead,"Part",{BrickColor = BrickColor.new("Medium red"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 0.200000003, 0.400000006),CFrame = CFrame.new(6, 4.50007915, -5.00000763, 1, 0, 0, 0, 1.00000501, 0, 0, 0, 1.00000501),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.854902, 0.52549, 0.478431),})
  346. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.5, 0.699999988),MeshType = Enum.MeshType.Sphere,})
  347. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1.00000501, 0, 0, 0, 1.00000501),C1 = CFrame.new(0, 2.0980835e-005, -0.500005245, 1, 0, 0, 0, 1.00000501, 0, 0, 0, 1.00000501),})
  348. Halberd = New("Model",chara,"Halberd",{})
  349. MainPart = New("Part",Halberd,"MainPart",{BrickColor = BrickColor.new("Pastel light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 2, 0.200000003),CFrame = CFrame.new(7.5, 2, -4.80002117, 0, 0, -1, -1, 0, 0, 0, 1, 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.686275, 0.866667, 1),})
  350. Mesh = New("CylinderMesh",MainPart,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  351. Weld = New("ManualWeld",MainPart,"Weld",{Part0 = MainPart,Part1 = chara["Right Arm"],C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),C1 = CFrame.new(0, -1.00004983, -0.300009251, 1, 0, 0, 0, 1.00000429, 0, 0, 0, 1.00000429),})
  352. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(7.49998522, 2.0999589, -8.10000324, 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.321569, 0.486275, 0.682353),})
  353. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  354. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(-0.0999588966, -3.29998207, 1.47819519e-005, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  355. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(7.49998522, 1.8999629, -8.10000324, -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.321569, 0.486275, 0.682353),})
  356. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  357. 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.100037098, -3.29998207, 1.47819519e-005, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  358. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 1),CFrame = CFrame.new(7.49998522, 2.0999589, -8.90000439, 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.321569, 0.486275, 0.682353),})
  359. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  360. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(-0.0999588966, -4.09998322, 1.47819519e-005, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  361. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.400000006, 0.400000006),CFrame = CFrame.new(7.49998522, 1.79997587, -8.20000648, 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.321569, 0.486275, 0.682353),})
  362. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  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.200024068, -3.39998531, 1.47819519e-005, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  364. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(7.49998522, 1.8999759, -7.90000439, 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.321569, 0.486275, 0.682353),})
  365. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  366. 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.100024104, -3.09998322, 1.47819519e-005, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  367. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 1),CFrame = CFrame.new(7.49998522, 1.8999629, -8.90000439, -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.321569, 0.486275, 0.682353),})
  368. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  369. 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.100037098, -4.09998322, 1.47819519e-005, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  370. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(7.49998522, 2.09997296, -7.90000439, 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.321569, 0.486275, 0.682353),})
  371. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  372. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(-0.0999729633, -3.09998322, 1.47819519e-005, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  373. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.400000006, 0.400000006),CFrame = CFrame.new(7.49998522, 2.19997191, -8.20000648, -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.321569, 0.486275, 0.682353),})
  374. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  375. 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.199971914, -3.39998531, 1.47819519e-005, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  376. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(7.49998522, 2.09997296, -7.90000439, -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.321569, 0.486275, 0.682353),})
  377. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  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.0999729633, -3.09998322, 1.47819519e-005, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  379. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(7.49998522, 1.8999759, -7.90000439, -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.321569, 0.486275, 0.682353),})
  380. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  381. 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.100024104, -3.09998322, 1.47819519e-005, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  382. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(7.49998522, 1.89998794, -7.70000648, 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.321569, 0.486275, 0.682353),})
  383. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  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(0.100012064, -2.89998531, 1.47819519e-005, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  385. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(7.49999475, 1.899966, -1.80001593, 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.321569, 0.486275, 0.682353),})
  386. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  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.100033998, 3.00000525, 5.24520874e-006, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  388. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(7.49999475, 2.0999639, -1.80001593, -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.321569, 0.486275, 0.682353),})
  389. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  390. 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.0999639034, 3.00000525, 5.24520874e-006, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  391. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(7.5, 2.0999999, -2.10002279, 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.321569, 0.486275, 0.682353),})
  392. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  393. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(-0.0999999046, 2.69999838, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  394. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(7.49998522, 2.09998703, -7.70000648, -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.321569, 0.486275, 0.682353),})
  395. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  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.0999869108, -2.89998531, 1.47819519e-005, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  397. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.200000003, 0.200000003),CFrame = CFrame.new(7.5, 2.00002384, -3.7000227, 0, 0, -1, -1, 0, 0, 0, 1, 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.321569, 0.486275, 0.682353),})
  398. Mesh = New("CylinderMesh",Part,"Mesh",{Offset = Vector3.new(0, -0.100000001, 0),Scale = Vector3.new(1.20000005, 0.5, 1.20000005),})
  399. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),C1 = CFrame.new(-2.39610672e-005, 1.09999847, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  400. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.600000024, 1),CFrame = CFrame.new(7.5, 1.10002398, -7.50001907, 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.321569, 0.486275, 0.682353),})
  401. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  402. 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.899976015, -2.6999979, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  403. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(7.5, 1.50002396, -7.10002041, 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.321569, 0.486275, 0.682353),})
  404. 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.499976039, -2.29999924, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  405. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.200000003, 0.200000003),CFrame = CFrame.new(7.5, 2, -7.10002041, 0, 0, -1, -1, 0, 0, 0, 1, 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.321569, 0.486275, 0.682353),})
  406. Mesh = New("CylinderMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1, 1.20000005),})
  407. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),C1 = CFrame.new(0, -2.29999924, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  408. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.400000006, 0.200000003),CFrame = CFrame.new(7.5, 1.80002391, -7.10002041, 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.321569, 0.486275, 0.682353),})
  409. Mesh = New("CylinderMesh",Part,"Mesh",{})
  410. 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.199976087, -2.29999924, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  411. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(7.5, 1.50002396, -6.90001869, 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.321569, 0.486275, 0.682353),})
  412. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  413. 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.499976039, -2.09999752, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  414. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.200000003, 0.200000003),CFrame = CFrame.new(7.5, 2, -2.30002165, 0, 0, -1, -1, 0, 0, 0, 1, 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.321569, 0.486275, 0.682353),})
  415. Mesh = New("CylinderMesh",Part,"Mesh",{Offset = Vector3.new(0, 0.100000001, 0),Scale = Vector3.new(1.20000005, 0.5, 1.20000005),})
  416. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),C1 = CFrame.new(0, 2.49999952, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  417. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.200000003, 0.200000003),CFrame = CFrame.new(7.5, 2, -2.30002165, 0, 0, -1, -1, 0, 0, 0, 1, 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.321569, 0.486275, 0.682353),})
  418. Mesh = New("CylinderMesh",Part,"Mesh",{})
  419. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),C1 = CFrame.new(0, 2.49999952, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  420. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(7.5, 1.30002296, -8.20001888, 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.321569, 0.486275, 0.682353),})
  421. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  422. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(0.69997704, -3.39999771, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  423. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.600000024),CFrame = CFrame.new(7.5, 1.50002289, -7.50001907, 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.321569, 0.486275, 0.682353),})
  424. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  425. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(0.499977052, -2.6999979, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  426. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.400000036, 1.80000007),CFrame = CFrame.new(7.5, 1.00002289, -8.90001869, -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.321569, 0.486275, 0.682353),})
  427. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  428. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, 1),C1 = CFrame.new(0.999977052, -4.09999752, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  429. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.200000003, 0.200000003),CFrame = CFrame.new(7.5, 2.00000095, -5.9000206, 0, 0, -1, -1, 0, 0, 0, 1, 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.321569, 0.486275, 0.682353),})
  430. Mesh = New("CylinderMesh",Part,"Mesh",{Offset = Vector3.new(0, 0.100000001, 0),Scale = Vector3.new(1.20000005, 0.5, 1.20000005),})
  431. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),C1 = CFrame.new(-9.53674316e-007, -1.09999943, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  432. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(7.5, 1.90000093, -2.10002279, -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.321569, 0.486275, 0.682353),})
  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, -1, 0, 0, 0, -1, 0, 0, 0, 1),C1 = CFrame.new(0.0999990702, 2.69999838, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  435. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000006, 0.200000003, 0.200000003),CFrame = CFrame.new(7.5, 2, -2.30002165, 0, 0, -1, -1, 0, 0, 0, 1, 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.321569, 0.486275, 0.682353),})
  436. Mesh = New("CylinderMesh",Part,"Mesh",{Offset = Vector3.new(0, -0.100000001, 0),Scale = Vector3.new(1.20000005, 0.5, 1.20000005),})
  437. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),C1 = CFrame.new(0, 2.49999952, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  438. Part = New("Part",Halberd,"Part",{BrickColor = BrickColor.new("Pastel Blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.400000006, 5.4000001, 0.200000003),CFrame = CFrame.new(7.5, 2, -5.10002041, 0, 0, -1, -1, 0, 0, 0, 1, 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.501961, 0.733333, 0.858824),})
  439. Mesh = New("CylinderMesh",Part,"Mesh",{})
  440. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),C1 = CFrame.new(0, -0.299999237, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  441. Hitbox = New("Part",Halberd,"Hitbox",{Transparency = 1,Transparency = 1,Size = Vector3.new(0.200000003, 1.60000002, 3.00000024),CFrame = CFrame.new(7.5, 1.60002398, -8.30001926, -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,})
  442. Weld = New("ManualWeld",Hitbox,"Weld",{Part0 = Hitbox,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, 1),C1 = CFrame.new(0.399976075, -3.49999809, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0),})
  443. Moon = New("Model",chara,"Moon",{})
  444. MoonPart = New("Part",Moon,"MoonPart",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Transparency = 1,Transparency = 1,Size = Vector3.new(3.00000024, 3, 0.200000003),CFrame = CFrame.new(6.10001802, 9.10006809, -4.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,})
  445. Mesh = New("SpecialMesh",MoonPart,"Mesh",{MeshType = Enum.MeshType.Sphere,Scale = Vector3.new(1.2,1.2,18)})
  446. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(4.90001678, 8.30006599, -4.50000191, 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.321569, 0.486275, 0.682353),})
  447. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  448. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),C1 = CFrame.new(-1.20000124, -0.800002098, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  449. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.400000036, 0.400000036),CFrame = CFrame.new(7.20001698, 8.00006676, -4.50000191, 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.321569, 0.486275, 0.682353),})
  450. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  451. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0),C1 = CFrame.new(1.09999895, -1.10000134, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  452. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(4.90001678, 8.10006618, -4.50000191, 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.321569, 0.486275, 0.682353),})
  453. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  454. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, 0),C1 = CFrame.new(-1.20000124, -1.00000191, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  455. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.800000012, 0.200000003),CFrame = CFrame.new(7.50001717, 8.60006809, -4.50000095, 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.321569, 0.486275, 0.682353),})
  456. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  457. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0),C1 = CFrame.new(1.39999914, -0.5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  458. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.600000143),CFrame = CFrame.new(6.30001783, 8.10006523, -4.50000191, 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.321569, 0.486275, 0.682353),})
  459. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  460. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(0.199999809, -1.00000286, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  461. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.600000024, 0.400000006),CFrame = CFrame.new(7.40001726, 9.90007114, -4.50000191, 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.321569, 0.486275, 0.682353),})
  462. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  463. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),C1 = CFrame.new(1.29999924, 0.800003052, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  464. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.400000036, 0.200000003),CFrame = CFrame.new(6.90001678, 8.20006371, -4.50000191, 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.321569, 0.486275, 0.682353),})
  465. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C1 = CFrame.new(0.79999876, -0.900004387, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  466. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000155, 0.200000003, 0.200000003),CFrame = CFrame.new(6.00001669, 7.70006275, -4.50000191, 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.321569, 0.486275, 0.682353),})
  467. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C1 = CFrame.new(-0.100001335, -1.40000534, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  468. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.600000262, 0.600000024, 0.200000003),CFrame = CFrame.new(7.30001783, 9.30006981, -4.50000191, 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.321569, 0.486275, 0.682353),})
  469. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C1 = CFrame.new(1.19999981, 0.200001717, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  470. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1.80000019, 0.200000003, 0.200000003),CFrame = CFrame.new(6.10001659, 7.90006399, -4.50000191, 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.321569, 0.486275, 0.682353),})
  471. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C1 = CFrame.new(-1.43051147e-006, -1.2000041, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  472. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.400000036, 0.600000024),CFrame = CFrame.new(6.90001726, 10.400074, -4.50000191, 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.321569, 0.486275, 0.682353),})
  473. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  474. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),C1 = CFrame.new(0.799999237, 1.30000591, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  475. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000063),CFrame = CFrame.new(6.50001717, 10.3000755, -4.50000191, 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.321569, 0.486275, 0.682353),})
  476. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  477. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, 0),C1 = CFrame.new(0.399999142, 1.20000744, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  478. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.600000024, 0.400000006),CFrame = CFrame.new(6.80001783, 9.90007114, -4.50000191, 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.321569, 0.486275, 0.682353),})
  479. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  480. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, 0),C1 = CFrame.new(0.699999809, 0.800003052, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  481. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(5.20001698, 8.10006618, -4.50000095, 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.321569, 0.486275, 0.682353),})
  482. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  483. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),C1 = CFrame.new(-0.900001049, -1.00000191, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  484. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.400000036, 0.200000003),CFrame = CFrame.new(6.90001678, 8.60006618, -4.50000191, 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.321569, 0.486275, 0.682353),})
  485. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  486. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(0.79999876, -0.500001907, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  487. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.800000012, 0.200000003),CFrame = CFrame.new(6.60001802, 7.70006275, -4.50000095, 0, 1, 0, 0, 0, 1, 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.321569, 0.486275, 0.682353),})
  488. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  489. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0),C1 = CFrame.new(0.5, -1.40000534, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  490. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.600000083),CFrame = CFrame.new(6.10001707, 10.5000744, -4.50000191, 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.321569, 0.486275, 0.682353),})
  491. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  492. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, 0),C1 = CFrame.new(-9.53674316e-007, 1.40000629, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  493. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.600000024),CFrame = CFrame.new(5.50001669, 7.70006514, -4.50000191, 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.321569, 0.486275, 0.682353),})
  494. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  495. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, 0),C1 = CFrame.new(-0.600001335, -1.40000296, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  496. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(6.50001717, 10.5000744, -4.50000191, 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.321569, 0.486275, 0.682353),})
  497. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C1 = CFrame.new(0.399999142, 1.40000629, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  498. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(6.70001698, 8.30006695, -4.50000191, 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.321569, 0.486275, 0.682353),})
  499. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  500. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(0.599998951, -0.800001144, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  501. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(5.10001659, 7.90006399, -4.50000191, 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.321569, 0.486275, 0.682353),})
  502. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  503. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, -1, 0, 1, 0, 0),C1 = CFrame.new(-1.00000143, -1.2000041, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  504. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.600000024, 0.200000003),CFrame = CFrame.new(7.10001707, 9.90007114, -4.50000191, 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.321569, 0.486275, 0.682353),})
  505. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C1 = CFrame.new(0.999999046, 0.800003052, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  506. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.400000215, 0.800000012, 0.200000003),CFrame = CFrame.new(7.20001698, 8.60006618, -4.50000191, 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.321569, 0.486275, 0.682353),})
  507. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C1 = CFrame.new(1.09999895, -0.500001907, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  508. Part = New("Part",Moon,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(6.70001698, 8.10006523, -4.50000191, 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.321569, 0.486275, 0.682353),})
  509. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MoonPart,C1 = CFrame.new(0.599998951, -1.00000286, -9.53674316e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  510. RightArm = New("Model",chara,"RightArm",{})
  511. MainPart = New("Part",RightArm,"MainPart",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1, 2.00000024, 1),CFrame = CFrame.new(7.5, 3.00005794, -4.49999809, 1, 0, 0, 0, 1.00001287, 0, 0, 0, 1.00001287),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.705882, 0.823529, 0.894118),})
  512. Weld = New("ManualWeld",MainPart,"Weld",{Part0 = MainPart,Part1 = chara["Right Arm"],C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1.00000429, 0, 0, 0, 1.00000429),C1 = CFrame.new(0, 3.81469727e-006, 1.23977661e-005, 1, 0, 0, 0, 1.00000429, 0, 0, 0, 1.00000429),})
  513. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.200000003, 0.200000003),CFrame = CFrame.new(7.9000001, 2.70005298, -4.49999809, 0, 0, 1, 0, 1.00001287, 0, -1.00001287, 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.321569, 0.486275, 0.682353),})
  514. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  515. 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.399999946, -0.300001144, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  516. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.200000003, 1),CFrame = CFrame.new(7.5, 2.5000515, -4.49999809, 1, 0, 0, 0, 1.00001287, 0, 0, 0, 1.00001287),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  517. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  518. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(-5.96046448e-008, -0.5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  519. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(7.69999981, 4.00007057, -4.49999809, 1, 0, 0, 0, 1.00001287, 0, 0, 0, 1.00001287),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  520. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  521. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(0.199999988, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  522. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.400000006, 0.400000006),CFrame = CFrame.new(8.39999962, 4.00007057, -4.49999809, 0, 0, -1, 0, 1.00001287, 0, 1.00001287, 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.321569, 0.486275, 0.682353),})
  523. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  524. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  525. 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.899999976, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  526. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.200000003, 0.200000003),CFrame = CFrame.new(7.0999999, 4.10007238, -4.49999809, 0, 0, 1, 0, 1.00001287, 0, -1.00001287, 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.321569, 0.486275, 0.682353),})
  527. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  528. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  529. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(-0.400000095, 1.10000038, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  530. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 1),CFrame = CFrame.new(7.0999999, 3.90006924, -4.49999809, 1, 0, 0, 0, 1.00001287, 0, 0, 0, 1.00001287),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  531. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  532. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(-0.400000036, 0.899999619, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  533. Part = New("Part",RightArm,"Part",{BrickColor = BrickColor.new("Fog"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1, 0.400000036, 1),CFrame = CFrame.new(7.5, 2.20003915, -4.50001097, 1, 0, 0, 0, 1.00002146, 0, 0, 0, 1.00002146),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.780392, 0.831373, 0.894118),})
  534. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  535. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1.00000429, 0, 0, 0, 1.00000429),C1 = CFrame.new(0, -0.800008535, -1.28746033e-005, 1, 0, 0, 0, 1.00000429, 0, 0, 0, 1.00000429),})
  536. RightLeg = New("Model",chara,"RightLeg",{})
  537. MainPart = New("Part",RightLeg,"MainPart",{BrickColor = BrickColor.new("Light blue"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1, 2.00000024, 1),CFrame = CFrame.new(6.5, 1.00003695, -4.5, 1, 0, 0, 0, 1.00000501, 0, 0, 0, 1.00000501),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.705882, 0.823529, 0.894118),})
  538. Weld = New("ManualWeld",MainPart,"Weld",{Part0 = MainPart,Part1 = chara["Right Leg"],C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1.00000572, 0, 0, 0, 1.00000572),C1 = CFrame.new(0, -1.90734863e-006, 1.09672546e-005, 1, 0, 0, 0, 1.00000501, 0, 0, 0, 1.00000501),})
  539. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.200000003, 0.200000003),CFrame = CFrame.new(6.9000001, 0.700036228, -4.5, 0, 0, 1, 0, 1.00000501, 0, -1.00000501, 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.321569, 0.486275, 0.682353),})
  540. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  541. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C0 = CFrame.new(0, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),C1 = CFrame.new(0.400000095, -0.299999237, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  542. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("Steel blue"),Material = Enum.Material.Neon,Size = Vector3.new(1, 0.200000003, 1),CFrame = CFrame.new(6.5, 0.500034451, -4.5, 1, 0, 0, 0, 1.00000501, 0, 0, 0, 1.00000501),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.321569, 0.486275, 0.682353),})
  543. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  544. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(0, -0.5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  545. Part = New("Part",RightLeg,"Part",{BrickColor = BrickColor.new("Fog"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1, 0.400000036, 1),CFrame = CFrame.new(6.5, 0.199991465, -4.50000048, 1, 0, 0, 0, 1.00001073, 0, 0, 0, 1.00001073),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.780392, 0.831373, 0.894118),})
  546. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  547. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = MainPart,C1 = CFrame.new(0, -0.800041497, -4.76837158e-007, 1, 0, 0, 0, 1.00000572, 0, 0, 0, 1.00000572),})
  548.  
  549. lap = LeftArm:GetChildren()
  550. rap = RightArm:GetChildren()
  551. llp = LeftLeg:GetChildren()
  552. rlp = RightLeg:GetChildren()
  553. chp = Chest:GetChildren()
  554. hdp = FakeHead:GetChildren()
  555.  
  556. ch = chara:GetChildren()
  557. for i = 1, #ch do
  558. if ch[i].ClassName == "Part" then
  559. ch[i].Transparency = 1
  560. if ch[i].Name == "Torso" then
  561. ch[i].roblox.Transparency = 1
  562. end
  563. if ch[i].Name == "Head" then
  564. ch[i].face.Transparency = 1
  565. end
  566. elseif ch[i].ClassName == "Accessory" then
  567. ch[i]:Destroy()
  568. end
  569. end
  570.  
  571. Moon:MoveTo(chara.Head.Position + Vector3.new(0,5,0))
  572. local bodp = Instance.new("BodyPosition",MoonPart)
  573. bodp.Name = "MoonForce"
  574. bodp.maxForce = Vector3.new(10000,10000,10000)
  575. bodp.Position = chara.Head.Position + Vector3.new(0,5,0)
  576. local gyrp = Instance.new("BodyGyro",MoonPart)
  577. gyrp.Name = "GyroForce"
  578. gyrp.CFrame = chara.HumanoidRootPart.CFrame + chara.HumanoidRootPart.CFrame.lookVector
  579.  
  580. --Animations--
  581. function LoadAnim(id)
  582. local anim = New("Animation",chara,"Animation",{AnimationId = "rbxassetid://"..id})
  583. local realanim = chara.Humanoid:LoadAnimation(anim)
  584. return realanim
  585. end
  586. HoldA = LoadAnim(69427262)
  587. Swing1A = LoadAnim(186934658)
  588. Swing2A = LoadAnim(94160738)
  589. Swing3A = LoadAnim(186934910)
  590. Swing4A = LoadAnim(74909528)
  591. RaiseA = LoadAnim(83994319)
  592. RiseA = LoadAnim(169638954)
  593. HoldA:Play()
  594.  
  595. --Sounds--
  596. function LoadSnd(id,loop,vol,pit)
  597. local snd = New("Sound",chara,"Sound",{SoundId = "rbxassetid://"..id,Looped = loop,Volume = vol,Pitch = pit})
  598. return snd
  599. end
  600. Music = LoadSnd(996980700,true,1,1)
  601. HitSnd = LoadSnd(566593606,false,1,1)
  602. ExpSnd = LoadSnd(142070127,false,1,1)
  603. SlashSnd = LoadSnd(536642316,false,1,1)
  604. ChargeSnd = LoadSnd(137463716,false,1,1)
  605. LasSnd = LoadSnd(162246701,false,1,1)
  606. LasLoopSnd = LoadSnd(162246683,true,1,1)
  607. BlastSnd = LoadSnd(200633327,false,1,1)
  608. FlySnd = LoadSnd(169445602,false,1,1)
  609. BExpSnd = LoadSnd(258057783,false,5,.5)
  610. Music:Play()
  611.  
  612. --Name Tag--
  613. local naeeym = Instance.new("BillboardGui",chara)
  614. naeeym.Size = UDim2.new(0,100,0,40)
  615. naeeym.StudsOffset = Vector3.new(0,2,0)
  616. naeeym.Adornee = chara.Head
  617. local tecks = Instance.new("TextLabel",naeeym)
  618. tecks.BackgroundTransparency = 1
  619. tecks.BorderSizePixel = 0
  620. tecks.Text = "Lunarine the Moon Rabbit"
  621. tecks.Font = "Fantasy"
  622. tecks.FontSize = "Size24"
  623. tecks.TextStrokeTransparency = 0
  624. tecks.TextStrokeColor3 = Color3.new(0,0,0)
  625. tecks.TextColor3 = BrickColor.new("Baby blue").Color
  626. tecks.Size = UDim2.new(1,0,0.5,0)
  627. local htecks = Instance.new("TextLabel",naeeym)
  628. htecks.BackgroundTransparency = 1
  629. htecks.BorderSizePixel = 0
  630. htecks.Text = chara.Humanoid.Health.."/"..chara.Humanoid.MaxHealth
  631. htecks.Font = "Fantasy"
  632. htecks.FontSize = "Size24"
  633. htecks.TextStrokeTransparency = 0
  634. htecks.TextStrokeColor3 = Color3.new(0,0,0)
  635. htecks.TextColor3 = BrickColor.new("Baby blue").Color
  636. htecks.Size = UDim2.new(1,0,0.5,0)
  637. htecks.Position = UDim2.new(0,0,.5,0)
  638.  
  639. --Enamate--
  640. function Enamate()
  641. local trace = Instance.new("Part",chara)
  642. trace.Size = Vector3.new(1,1,1)
  643. trace.TopSurface = 0
  644. trace.BottomSurface = 0
  645. trace.BrickColor = BrickColor.new("Baby blue")
  646. trace.Material = "Neon"
  647. trace.CanCollide = false
  648. trace.Anchored = true
  649. trace.CFrame = EnamatePart.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(math.random(0,359)),math.rad(math.random(0,359)),math.rad(math.random(0,359)))
  650. local tracedisp = coroutine.wrap(function()
  651. for i = 1, 9 do
  652. wait(.01)
  653. trace.Transparency = trace.Transparency + .1
  654. end
  655. wait(.01)
  656. trace:Destroy()
  657. end)
  658. tracedisp()
  659. end
  660. function Enamate2()
  661. if chara:FindFirstChild("Ring")== nil then
  662. local angl = CFrame.fromEulerAnglesXYZ(math.rad(math.random(0,359)),math.rad(math.random(0,359)),math.rad(math.random(0,359)))
  663. local trace = Instance.new("Part",chara)
  664. trace.Size = Vector3.new(1,1,1)
  665. trace.Name = "Ring"
  666. trace.TopSurface = 0
  667. trace.BottomSurface = 0
  668. trace.BrickColor = BrickColor.new("Baby blue")
  669. trace.Material = "Neon"
  670. trace.CanCollide = false
  671. trace.Anchored = true
  672. trace.CFrame = EnamatePart.CFrame * angl
  673. local tracem = Instance.new("SpecialMesh",trace)
  674. --tracem.MeshId = "rbxassetid://3270017"
  675. tracem.MeshType = "Sphere"
  676. local tracedisp = coroutine.wrap(function()
  677. for i = 1, 4 do
  678. wait(.01)
  679. trace.Transparency = trace.Transparency + .2
  680. trace.CFrame = EnamatePart.CFrame * angl
  681. tracem.Scale = tracem.Scale + Vector3.new(.5,.5,.5)
  682. end
  683. wait(.01)
  684. trace:Destroy()
  685. end)
  686. tracedisp()
  687. end
  688. end
  689.  
  690. --Play Sound in Part--
  691. function PlaySnd(snd,part)
  692. local sound = snd:Clone()
  693. sound.PlayOnRemove = true
  694. sound.Parent = Part
  695. sound:Destroy()
  696. end
  697.  
  698. --Moon Energy Absorb--
  699. function EnergyAbsorb(parta)
  700. local dir = game.Lighting:GetMoonDirection()
  701. local pos = parta + (dir*500)
  702. local particle = Instance.new("Part",chara)
  703. particle.Size = Vector3.new(1,1,1)
  704. particle.Position = pos
  705. particle.BrickColor = BrickColor.new("Baby blue")
  706. particle.Material = "Neon"
  707. particle.CanCollide = false
  708. particle.Anchored = true
  709. particle.CFrame = CFrame.new(pos,parta)
  710. local mehs = Instance.new("BlockMesh",particle)
  711. mehs.Scale = Vector3.new(1,1,1000)
  712. disp = coroutine.wrap(function()
  713. for i = 1, 4 do
  714. wait(.01)
  715. local dir = game.Lighting:GetMoonDirection()
  716. local pos = parta + (dir*500)
  717. particle.Position = pos
  718. particle.CFrame = CFrame.new(pos,parta)
  719. particle.Transparency = particle.Transparency + .2
  720. end
  721. wait(.01)
  722. particle:Destroy()
  723. end)
  724. disp()
  725. end
  726.  
  727. --Moon Aura--
  728. function MoonOn()
  729. MoonPart.Transparency = 1
  730. ChargeSnd:Play()
  731. for i = 1, 4 do
  732. EnergyAbsorb(MoonPart.Position)
  733. wait(.01)
  734. MoonPart.Transparency = MoonPart.Transparency - .1
  735. end
  736. end
  737. function MoonOff()
  738. MoonPart.Transparency = .6
  739. for i = 1, 4 do
  740. wait(.01)
  741. MoonPart.Transparency = MoonPart.Transparency + .1
  742. end
  743. end
  744.  
  745. --Chat Function--
  746. function chatfunc(text)
  747. chat = coroutine.wrap(function(ttt)
  748. if chara:FindFirstChild("TalkingBillBoard")~= nil then
  749. chara:FindFirstChild("TalkingBillBoard"):destroy()
  750. end
  751. local naeeym2 = Instance.new("BillboardGui",chara)
  752. naeeym2.Size = UDim2.new(0,100,0,40)
  753. naeeym2.StudsOffset = Vector3.new(0,3,0)
  754. naeeym2.Adornee = chara.Head
  755. naeeym2.Name = "TalkingBillBoard"
  756. local tecks2 = Instance.new("TextLabel",naeeym2)
  757. tecks2.BackgroundTransparency = 1
  758. tecks2.BorderSizePixel = 0
  759. tecks2.Text = text
  760. tecks2.Font = "Fantasy"
  761. tecks2.FontSize = "Size24"
  762. tecks2.TextStrokeTransparency = 0
  763. tecks2.TextColor3 = Color3.new(1,1,1)
  764. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  765. tecks2.Size = UDim2.new(1,0,0.5,0)
  766. wait(1)
  767. for i = 1, 5 do
  768. wait(.01)
  769. tecks2.Position = tecks2.Position - UDim2.new(0,0,.05,0)
  770. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.2
  771. tecks2.TextTransparency = tecks2.TextTransparency + .2
  772. end
  773. naeeym2:Destroy()
  774. end)
  775. chat(text)
  776. end
  777.  
  778. --Damage Function--
  779. function dealdmg(dude,damage,env,toim)
  780. hurt = coroutine.wrap(function(dude2,damage2,env2,toim2)
  781. if dude ~= chara and dude:FindFirstChild("IsHit") == nil then
  782. finaldmg = damage + math.random(-env,env)
  783. dude.Humanoid.Health = dude.Humanoid.Health - finaldmg
  784. local vall = Instance.new("ObjectValue",dude)
  785. vall.Name = "IsHit"
  786. debby:AddItem(vall,toim)
  787. local naeeym2 = Instance.new("BillboardGui",dude)
  788. naeeym2.Size = UDim2.new(0,100,0,40)
  789. naeeym2.StudsOffset = Vector3.new(0,3,0)
  790. naeeym2.Adornee = dude.Head
  791. naeeym2.Name = "TalkingBillBoard"
  792. local tecks2 = Instance.new("TextLabel",naeeym2)
  793. tecks2.BackgroundTransparency = 1
  794. tecks2.BorderSizePixel = 0
  795. tecks2.Text = "-"..finaldmg
  796. tecks2.Font = "Fantasy"
  797. tecks2.FontSize = "Size24"
  798. tecks2.TextStrokeTransparency = 0
  799. tecks2.TextColor3 = Color3.new(1,0.6,0)
  800. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  801. tecks2.Size = UDim2.new(1,0,0.5,0)
  802. for i = 1, 5 do
  803. wait(.1)
  804. tecks2.Position = tecks2.Position - UDim2.new(0,0,.05,0)
  805. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.2
  806. tecks2.TextTransparency = tecks2.TextTransparency + .2
  807. end
  808. naeeym2:Destroy()
  809. end
  810. end)
  811. hurt(dude,damage,env,toim)
  812. end
  813.  
  814. --Explode Hitbox--
  815. function ExHitbox(rad,pos,damage,env,toim)
  816. local E = Instance.new("Explosion")
  817. E.Position = pos
  818. E.Parent = game.Workspace
  819. E.BlastRadius = rad
  820. E.BlastPressure = 0
  821. E.Visible = false
  822. E.Hit:connect(function(hit)
  823. if hit.Parent:FindFirstChild("Humanoid")~=nil then
  824. dealdmg(hit.Parent,damage,env,toim)
  825. end
  826. end)
  827. end
  828.  
  829. --Blade Touch--
  830. function bladehit(hit)
  831. if bladeactive == true then
  832. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  833. dealdmg(hit.Parent,12,2,.1)
  834. HitSnd:Play()
  835. end
  836. end
  837. end
  838. Hitbox.Touched:connect(bladehit)
  839.  
  840. --Moon Star--
  841. function MoonStar()
  842. del = true
  843. RaiseA:Play()
  844. MoonOn()
  845. for i = 1, 3 do
  846. wait(.2)
  847. BlastSnd:Play()
  848. local missile = Instance.new("Part",game.Workspace)
  849. Mouse.TargetFilter = missile
  850. missile.CanCollide = false
  851. missile.Shape = 0
  852. missile.Size = Vector3.new(3,3,3)
  853. missile.Name = "Blast"
  854. missile.BrickColor = BrickColor.new("Baby blue")
  855. missile.Material = "Neon"
  856. missile.BottomSurface = 0
  857. missile.TopSurface = 0
  858. missile.CFrame = MoonPart.CFrame
  859. debby:AddItem(missile,10)
  860. local mehs = Instance.new("SpecialMesh",missile)
  861. mehs.MeshType = "Sphere"
  862. local bodf = Instance.new("BodyForce",missile)
  863. bodf.Force = Vector3.new(0,game.Workspace.Gravity*missile:GetMass(),0)
  864. missile.Velocity = (Mouse.Hit.p - MoonPart.Position).unit*50
  865. missile.Touched:connect(function(hit)
  866. if missile.Anchored == false and hit.Parent ~= chara and hit.Parent.Parent ~= chara and hit.Name ~= "Blast" and hit.Name ~= "Trace" then
  867. missile.Anchored = true
  868. PlaySnd(ExpSnd,missile)
  869. ExHitbox(10,missile.Position,20,2,.5)
  870. missile.Anchored = true
  871. for i = 1, 5 do
  872. wait(.01)
  873. missile.Transparency = missile.Transparency + .2
  874. mehs.Scale = mehs.Scale + Vector3.new(1,1,1)
  875. end
  876. end
  877. end)
  878. tracer = coroutine.wrap(function()
  879. while missile.Anchored == false do
  880. wait(.01)
  881. local trace = coroutine.wrap(function()
  882. local tr = Instance.new("Part",game.Workspace)
  883. tr.Name = "Trace"
  884. tr.Size = Vector3.new(3,3,3)
  885. tr.CanCollide = false
  886. tr.Material = "Neon"
  887. tr.Anchored = true
  888. tr.BrickColor = BrickColor.new("Baby blue")
  889. tr.CFrame = missile.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(math.random(0,359)),math.rad(math.random(0,359)),math.rad(math.random(0,359)))
  890. for i = 1, 9 do
  891. wait(.01)
  892. tr.Transparency = tr.Transparency + .1
  893. end
  894. tr:Destroy()
  895. end)
  896. trace()
  897. end
  898. end)
  899. tracer()
  900. end
  901. wait(.5)
  902. MoonOff()
  903. RaiseA:Stop()
  904. del = false
  905. end
  906.  
  907. --Moon Beam--
  908. function MoonBeam()
  909. del = true
  910. RaiseA:Play()
  911. MoonOn()
  912. wait(.5)
  913. --local EffectPart = Instance.new("Part",game.Workspace)
  914. --EffectPart.Size = Vector3.new(1,1,1)
  915. --EffectPart.Anchored = true
  916. --EffectPart.Transparency = 1
  917. LasSnd:Play()
  918. LasLoopSnd:Play()
  919. for i = 1,50 do
  920. local P = Instance.new("Part")
  921. local Place0 = CFrame.new(MoonPart.CFrame.x,MoonPart.CFrame.y,MoonPart.CFrame.z)
  922. local Place1 = Mouse.Hit
  923. --EffectPart.CFrame = Place1
  924. local trace = coroutine.wrap(function()
  925. local tr = Instance.new("Part",game.Workspace)
  926. tr.Name = "Trace"
  927. Mouse.TargetFilter = tr
  928. tr.Size = Vector3.new(0,0,0)
  929. tr.CanCollide = false
  930. tr.Material = "Neon"
  931. tr.Anchored = true
  932. tr.BrickColor = BrickColor.new("Baby blue")
  933. tr.CFrame = Place1 * CFrame.fromEulerAnglesXYZ(math.rad(math.random(0,359)),math.rad(math.random(0,359)),math.rad(math.random(0,359)))
  934. local trm = Instance.new("BlockMesh",tr)
  935. for i = 1, 4 do
  936. wait(.01)
  937. tr.Transparency = tr.Transparency + .2
  938. trm.Scale = trm.Scale + Vector3.new(10,10,10)
  939. end
  940. tr:Destroy()
  941. end)
  942. trace()
  943. local meshla = Instance.new("BlockMesh", P)
  944. meshla.Scale = Vector3.new(1,1,1)
  945. P.formFactor = 0
  946. P.Size = Vector3.new(1,1,(Place0.p - Place1.p).magnitude)
  947. P.Name = "Laser"
  948. P.CFrame = CFrame.new((Place0.p + Place1.p)/2,Place0.p)
  949. P.Parent = game.Workspace
  950. P.BrickColor = BrickColor.new("Institutional white")
  951. P.Material = "Neon"
  952. P.Anchored = true
  953. P.CanCollide = false
  954. P.Locked = true
  955. P.BottomSurface = "Smooth"
  956. P.TopSurface = "Smooth"
  957. ExHitbox(10,Place1.p,20,1,.5)
  958. wait(0.01)
  959. P:remove()
  960. end
  961. ----
  962. LasLoopSnd:Stop()
  963. --EffectPart:Destroy()
  964. wait(.5)
  965. MoonOff()
  966. RaiseA:Stop()
  967. del = false
  968. end
  969.  
  970. --Moon Pillars--
  971. function MoonPillars()
  972. del = true
  973. ChargeSnd:Play()
  974. RaiseA:Play()
  975. wait(.5)
  976. local num = 10
  977. for i = 1,5 do
  978. local cpos = chara.HumanoidRootPart.CFrame+(chara.HumanoidRootPart.CFrame.lookVector*num)
  979. wait(.1)
  980. local beam = Instance.new("Part",game.Workspace)
  981. beam.Size = Vector3.new(0,0,0)
  982. beam.CFrame = CFrame.new(cpos.x,cpos.y,cpos.z)
  983. beam.CanCollide = false
  984. beam.Anchored = true
  985. beam.BrickColor = BrickColor.new("Baby blue")
  986. beam.Material = "Neon"
  987. local mehs = Instance.new("CylinderMesh",beam)
  988. mehs.Scale = Vector3.new(1,1000,1)
  989. local trace = Instance.new("Part",game.Workspace)
  990. trace.Size = Vector3.new(0,0,0)
  991. trace.CFrame = CFrame.new(cpos.x,cpos.y,cpos.z)
  992. trace.CanCollide = false
  993. trace.Anchored = true
  994. trace.BrickColor = BrickColor.new("Baby blue")
  995. local tmesh2 = Instance.new("SpecialMesh",trace)
  996. tmesh2.MeshId = "http://www.roblox.com/asset/?id=20329976"
  997. tmesh2.Scale = Vector3.new(1,1,1)
  998. tmesh2.Offset = Vector3.new(0,0,-.125)
  999. PlaySnd(ExpSnd,beam)
  1000. EnergyAbsorb(beam.CFrame.p)
  1001. ExHitbox(20,beam.Position,25,2,.5)
  1002. tracegrow = coroutine.wrap(function()
  1003. for i = 1, 9 do
  1004. wait(.01)
  1005. beam.Transparency = beam.Transparency + .1
  1006. mehs.Scale = mehs.Scale + Vector3.new(5,5,5)
  1007. trace.Transparency = trace.Transparency + .1
  1008. tmesh2.Scale = tmesh2.Scale + Vector3.new(1,1,1)
  1009. end
  1010. beam:Destroy()
  1011. trace:Destroy()
  1012. end)
  1013. tracegrow()
  1014. num = num + 10
  1015. end
  1016. RaiseA:Stop()
  1017. del = false
  1018. end
  1019.  
  1020. --Cross Explosion--
  1021. function CrossExplosion()
  1022. del = true
  1023. ChargeSnd:Play()
  1024. local spellcircle = Instance.new("Part",chara)
  1025. spellcircle.Anchored = true
  1026. spellcircle.Size = Vector3.new(1,1,1)
  1027. spellcircle.CFrame = chara.Torso.CFrame - Vector3.new(0,2.4,0)
  1028. spellcircle.Transparency = 1
  1029. spellcircle.CanCollide = false
  1030. local blkm = Instance.new("BlockMesh",spellcircle)
  1031. blkm.Scale = Vector3.new(0,1,0)
  1032. local dec = Instance.new("Decal",spellcircle)
  1033. dec.Color3 = Color3.new(1/170,1,1)
  1034. dec.Texture = "rbxassetid://78036587"
  1035. dec.Transparency = 1
  1036. dec.Face = "Top"
  1037. local ptl = Instance.new("PointLight",spellcircle)
  1038. ptl.Range = 0
  1039. ptl.Color = Color3.new(1/170,1,1)
  1040. local bpos = Instance.new("BodyPosition",chara.Torso)
  1041. bpos.Position = chara.Torso.Position + Vector3.new(0,10,0)
  1042. bpos.maxForce = Vector3.new(10000,10000,10000)
  1043. RiseA:Play()
  1044. spellc = coroutine.wrap(function()
  1045. while spellcircle ~= nil do
  1046. wait(.01)
  1047. spellcircle.CFrame = spellcircle.CFrame * CFrame.fromEulerAnglesXYZ(0,math.rad(10),0)
  1048. end
  1049. end)
  1050. spellc()
  1051. for i = 1, 10 do
  1052. wait(.01)
  1053. EnergyAbsorb(spellcircle.Position)
  1054. ptl.Range = ptl.Range + 1
  1055. dec.Transparency = dec.Transparency - .1
  1056. blkm.Scale = blkm.Scale + Vector3.new(3,0,3)
  1057. end
  1058. wait(2)
  1059. local pemit = Instance.new("ParticleEmitter",spellcircle)
  1060. pemit.Color = ColorSequence.new(Color3.new(0.5,1,1))
  1061. pemit.LightEmission = 1
  1062. pemit.Size = NumberSequence.new(10)
  1063. pemit.Texture = "rbxasset://textures/particles/smoke_main.dds"
  1064. pemit.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(0.9,0),NumberSequenceKeypoint.new(1,1)})
  1065. pemit.Lifetime = NumberRange.new(1)
  1066. pemit.Rate = 10000
  1067. pemit.Speed = NumberRange.new(100)
  1068. LasSnd:Play()
  1069. LasLoopSnd:Play()
  1070. ExHitbox(30,spellcircle.Position,40,10,.5)
  1071. local trace = Instance.new("Part",game.Workspace)
  1072. trace.Size = Vector3.new(0,0,0)
  1073. trace.CFrame = spellcircle.CFrame
  1074. trace.CanCollide = false
  1075. trace.Anchored = true
  1076. trace.BrickColor = BrickColor.new("Medium stone grey")
  1077. local tmesh2 = Instance.new("SpecialMesh",trace)
  1078. tmesh2.MeshId = "http://www.roblox.com/asset/?id=20329976"
  1079. tmesh2.Scale = Vector3.new(5,5,5)
  1080. tmesh2.Offset = Vector3.new(0,0,-.125)
  1081. tracegrow = coroutine.wrap(function()
  1082. for i = 1, 9 do
  1083. wait(.01)
  1084. trace.Transparency = trace.Transparency + .1
  1085. tmesh2.Scale = tmesh2.Scale + Vector3.new(5,5,5)
  1086. end
  1087. trace:Destroy()
  1088. end)
  1089. tracegrow()
  1090. wait(.5)
  1091. local pt1 = Instance.new("Part",chara)
  1092. pt1.Size = Vector3.new(0,0,0)
  1093. pt1.Anchored = true
  1094. pt1.CFrame = spellcircle.CFrame + Vector3.new(0,80,0)
  1095. pt1.Transparency = 1
  1096. local pemit2 = pemit:clone()
  1097. pemit2.Lifetime = NumberRange.new(.3)
  1098. pemit2.EmissionDirection = "Left"
  1099. pemit2.Parent = pt1
  1100. local pemit3 = pemit2:clone()
  1101. pemit3.EmissionDirection = "Right"
  1102. pemit3.Parent = pt1
  1103. wait(.5)
  1104. for i = 1, 20 do
  1105. ExHitbox(30,spellcircle.Position,40,10,.5)
  1106. local trace = Instance.new("Part",game.Workspace)
  1107. trace.Size = Vector3.new(0,0,0)
  1108. trace.CFrame = spellcircle.CFrame
  1109. trace.CanCollide = false
  1110. trace.Anchored = true
  1111. trace.BrickColor = BrickColor.new("Medium stone grey")
  1112. local tmesh2 = Instance.new("SpecialMesh",trace)
  1113. tmesh2.MeshId = "http://www.roblox.com/asset/?id=20329976"
  1114. tmesh2.Scale = Vector3.new(5,5,5)
  1115. tmesh2.Offset = Vector3.new(0,0,-.125)
  1116. for i = 1, 9 do
  1117. wait(.01)
  1118. trace.Transparency = trace.Transparency + .1
  1119. tmesh2.Scale = tmesh2.Scale + Vector3.new(5,5,5)
  1120. end
  1121. trace:Destroy()
  1122. end
  1123. wait(.5)
  1124. LasLoopSnd:Stop()
  1125. pemit.Enabled = false
  1126. pemit2.Enabled = false
  1127. pemit3.Enabled = false
  1128. for i = 1, 10 do
  1129. wait(.01)
  1130. ptl.Range = ptl.Range - 1
  1131. dec.Transparency = dec.Transparency + .1
  1132. blkm.Scale = blkm.Scale - Vector3.new(3,0,3)
  1133. end
  1134. wait(.5)
  1135. spellcircle:Destroy()
  1136. bpos:Destroy()
  1137. RiseA:Stop()
  1138. del = false
  1139. end
  1140.  
  1141. --Lunar Destruction--
  1142. function LunarDestruction()
  1143. del = true
  1144. local spellcircle = Instance.new("Part",chara)
  1145. spellcircle.Anchored = true
  1146. spellcircle.Size = Vector3.new(1,1,1)
  1147. spellcircle.CFrame = chara.Torso.CFrame - Vector3.new(0,2.4,0)
  1148. spellcircle.Transparency = 1
  1149. spellcircle.CanCollide = false
  1150. local blkm = Instance.new("BlockMesh",spellcircle)
  1151. blkm.Scale = Vector3.new(0,1,0)
  1152. local dec = Instance.new("Decal",spellcircle)
  1153. dec.Color3 = Color3.new(1/170,1,1)
  1154. dec.Texture = "rbxassetid://78036587"
  1155. dec.Transparency = 1
  1156. dec.Face = "Top"
  1157. local ptl = Instance.new("PointLight",spellcircle)
  1158. ptl.Range = 0
  1159. ptl.Color = Color3.new(1/170,1,1)
  1160. local bpos = Instance.new("BodyPosition",chara.Torso)
  1161. bpos.Position = chara.Torso.Position + Vector3.new(0,50,0)
  1162. bpos.maxForce = Vector3.new(10000,10000,10000)
  1163. RiseA:Play()
  1164. spellc = coroutine.wrap(function()
  1165. while spellcircle ~= nil do
  1166. wait(.01)
  1167. spellcircle.CFrame = spellcircle.CFrame * CFrame.fromEulerAnglesXYZ(0,math.rad(10),0)
  1168. end
  1169. end)
  1170. spellc()
  1171. for i = 1, 10 do
  1172. wait(.01)
  1173. ptl.Range = ptl.Range + 1
  1174. dec.Transparency = dec.Transparency - .1
  1175. blkm.Scale = blkm.Scale + Vector3.new(10,0,10)
  1176. end
  1177. wait(2)
  1178. local dir = game.Lighting:GetMoonDirection()
  1179. local pos = spellcircle.Position + (dir*1400)
  1180. local particle = Instance.new("Part",chara)
  1181. particle.Transparency = 1
  1182. particle.Size = Vector3.new(1,1,1)
  1183. particle.Position = pos
  1184. particle.BrickColor = BrickColor.new("Baby blue")
  1185. particle.Material = "Neon"
  1186. particle.CanCollide = false
  1187. particle.Anchored = true
  1188. particle.CFrame = CFrame.new(pos,spellcircle.Position)
  1189. local mehs = Instance.new("BlockMesh",particle)
  1190. mehs.Scale = Vector3.new(50,50,3000)
  1191. PlaySnd(ChargeSnd,spellcircle)
  1192. local pemit = Instance.new("ParticleEmitter",particle)
  1193. pemit.Rate = 10000000
  1194. pemit.LightEmission = 1
  1195. pemit.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,20),NumberSequenceKeypoint.new(1,0)})
  1196. pemit.VelocitySpread = 10000
  1197. pemit.Speed = NumberRange.new(200)
  1198. wait(1)
  1199. LasLoopSnd:Play()
  1200. LasSnd:Play()
  1201. particle.Transparency = 0
  1202. for i = 1, 100 do
  1203. ExHitbox(60,spellcircle.Position,50,5,.2)
  1204. wait(.01)
  1205. local trace = coroutine.wrap(function()
  1206. local tr = Instance.new("Part",game.Workspace)
  1207. tr.Name = "Trace"
  1208. tr.Size = Vector3.new(0,0,0)
  1209. tr.CanCollide = false
  1210. tr.Material = "Neon"
  1211. tr.Anchored = true
  1212. tr.BrickColor = BrickColor.new("Baby blue")
  1213. tr.CFrame = spellcircle.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(math.random(0,359)),math.rad(math.random(0,359)),math.rad(math.random(0,359)))
  1214. local trm = Instance.new("BlockMesh",tr)
  1215. for i = 1, 4 do
  1216. wait(.01)
  1217. tr.Transparency = tr.Transparency + .2
  1218. trm.Scale = trm.Scale + Vector3.new(200,200,200)
  1219. end
  1220. tr:Destroy()
  1221. end)
  1222. trace()
  1223. end
  1224. for i = 1, 9 do
  1225. particle.Transparency = particle.Transparency + .1
  1226. wait(.01)
  1227. end
  1228. particle:Destroy()
  1229. LasLoopSnd:Stop()
  1230. for i = 1, 10 do
  1231. wait(.01)
  1232. ptl.Range = ptl.Range - 1
  1233. dec.Transparency = dec.Transparency + .1
  1234. blkm.Scale = blkm.Scale - Vector3.new(10,0,10)
  1235. end
  1236. RiseA:Stop()
  1237. bpos:Destroy()
  1238. spellcircle:Destroy()
  1239. del = false
  1240. end
  1241.  
  1242. --Astral Collision--
  1243. function AstralCollision()
  1244. local origpos = chara.Torso.Position
  1245. local bpos = Instance.new("BodyPosition",chara.Torso)
  1246. bpos.Position = origpos + Vector3.new(0,3000,0)
  1247. bpos.maxForce = Vector3.new(99999,99999,99999)
  1248. RiseA:Play()
  1249. FlySnd:Play()
  1250. local trace = Instance.new("Part",game.Workspace)
  1251. trace.Size = Vector3.new(0,0,0)
  1252. trace.CFrame = chara.HumanoidRootPart.CFrame - Vector3.new(0,2,0)
  1253. trace.CanCollide = false
  1254. trace.Anchored = true
  1255. trace.BrickColor = BrickColor.new("Medium stone grey")
  1256. local tmesh2 = Instance.new("SpecialMesh",trace)
  1257. tmesh2.MeshId = "http://www.roblox.com/asset/?id=20329976"
  1258. tmesh2.Scale = Vector3.new(5,5,5)
  1259. tmesh2.Offset = Vector3.new(0,0,-.125)
  1260. for i = 1, 9 do
  1261. wait(.01)
  1262. trace.Transparency = trace.Transparency + .1
  1263. tmesh2.Scale = tmesh2.Scale + Vector3.new(5,5,5)
  1264. end
  1265. trace:Destroy()
  1266. wait(5)
  1267. local moon = Instance.new("Part",chara)
  1268. moon.Shape = 0
  1269. moon.Size = Vector3.new(1,1,1)
  1270. moon.Material = "Pebble"
  1271. moon.Position = origpos + Vector3.new(0,2000,0)
  1272. local moonmehs = Instance.new("SpecialMesh",moon)
  1273. moonmehs.MeshType = "Sphere"
  1274. moonmehs.Scale = Vector3.new(1000,1000,1000)
  1275. local moonf = Instance.new("BodyPosition",moon)
  1276. moonf.Position = origpos - Vector3.new(0,10,0)
  1277. moonf.maxForce = Vector3.new(100,100,100)
  1278. moon.Touched:connect(function(hit)
  1279. if moon.Anchored == false and hit.Parent ~= chara and hit.Parent.Parent ~= chara then
  1280. moon.Anchored = true
  1281. PlaySnd(BExpSnd,game.Workspace)
  1282. local E = Instance.new("Explosion",game.Workspace)
  1283. E.BlastRadius = 99999999999999999
  1284. E.BlastPressure = 0
  1285. E.Position = origpos
  1286. E.Visible = false
  1287. E.Hit:connect(function(hit)
  1288. if hit.Parent ~= chara and hit.Parent.Parent ~= chara then
  1289. hit:BreakJoints()
  1290. end
  1291. end)
  1292. wait(1)
  1293. bpos.Position = origpos
  1294. for i = 1, 9 do
  1295. wait(.1)
  1296. moon.Transparency = moon.Transparency + .1
  1297. end
  1298. wait(.1)
  1299. moon:Destroy()
  1300. wait(1)
  1301. bpos:Destroy()
  1302. RiseA:Stop()
  1303. end
  1304. end)
  1305. end
  1306.  
  1307. --Keys--
  1308. del = false
  1309. mus = false
  1310. function onKeyDown(key)
  1311. if del == false then
  1312. if key == "z" then
  1313. MoonStar()
  1314. elseif key == "x" then
  1315. MoonBeam()
  1316. elseif key == "c" then
  1317. MoonPillars()
  1318. elseif key == "v" then
  1319. CrossExplosion()
  1320. elseif key == "b" then
  1321. LunarDestruction()
  1322. elseif key == "n" then
  1323. AstralCollision()
  1324. end
  1325. end
  1326. if key == "m" then
  1327. if mus == true then
  1328. Music:Stop()
  1329. mus = false
  1330. elseif mus == false then
  1331. Music:Play()
  1332. mus = true
  1333. end
  1334. end
  1335. end
  1336.  
  1337. --Click--
  1338. combo = 0
  1339. function onButton1Down()
  1340. if del == false then
  1341. if combo == 0 then
  1342. del = true
  1343. SlashSnd.Pitch = 1
  1344. SlashSnd:Play()
  1345. Swing1A:Play()
  1346. bladeactive = true
  1347. wait(.5)
  1348. Swing1A:Stop()
  1349. bladeactive = false
  1350. combo = 1
  1351. del = false
  1352. elseif combo == 1 then
  1353. del = true
  1354. SlashSnd.Pitch = 1.1
  1355. SlashSnd:Play()
  1356. Swing2A:Play()
  1357. bladeactive = true
  1358. wait(.5)
  1359. Swing2A:Stop()
  1360. bladeactive = false
  1361. combo = 2
  1362. del = false
  1363. elseif combo == 2 then
  1364. del = true
  1365. SlashSnd.Pitch = .9
  1366. SlashSnd:Play()
  1367. Swing3A:Play()
  1368. bladeactive = true
  1369. wait(.5)
  1370. Swing3A:Stop()
  1371. bladeactive = false
  1372. combo = 3
  1373. del = false
  1374. elseif combo == 3 then
  1375. del = true
  1376. ExpSnd:Play()
  1377. Swing4A:Play()
  1378. ExHitbox(10,chara.Torso.Position + chara.Torso.CFrame.lookVector*10,20,5,.5)
  1379. local jtrace = Instance.new("Part",game.Workspace)
  1380. jtrace.Size = Vector3.new(1,1,1)
  1381. jtrace.Position = chara.Torso.Position + chara.Torso.CFrame.lookVector*10
  1382. jtrace.CFrame = chara.Torso.CFrame + chara.Torso.CFrame.lookVector*10
  1383. jtrace.Anchored = true
  1384. jtrace.CanCollide = false
  1385. jtrace.Material = "Neon"
  1386. jtrace.BrickColor = BrickColor.new("Baby blue")
  1387. jtrace.Transparency = .3
  1388. local tmesh = Instance.new("SpecialMesh",jtrace)
  1389. tmesh.MeshType = "Sphere"
  1390. tmesh.Scale = Vector3.new(3,3,3)
  1391. local jtrace2 = Instance.new("Part",game.Workspace)
  1392. jtrace2.Size = Vector3.new(0,0,0)
  1393. jtrace2.BrickColor = BrickColor.new("Institutional white")
  1394. jtrace2.Position = chara.Torso.Position + chara.Torso.CFrame.lookVector*10
  1395. jtrace2.CFrame = chara.Torso.CFrame + chara.Torso.CFrame.lookVector*10
  1396. jtrace2.Anchored = true
  1397. jtrace2.Transparency = .3
  1398. local tmesh2 = Instance.new("SpecialMesh",jtrace2)
  1399. tmesh2.MeshId = "http://www.roblox.com/asset/?id=1125478"
  1400. tmesh2.Scale = Vector3.new(5,0,5)
  1401. tracegrow = coroutine.wrap(function()
  1402. for i = 1, 7 do
  1403. wait(.01)
  1404. jtrace.Transparency = jtrace.Transparency + .1
  1405. tmesh.Scale = tmesh.Scale + Vector3.new(2,2,2)
  1406. jtrace2.Transparency = jtrace2.Transparency + .1
  1407. tmesh2.Scale = tmesh2.Scale + Vector3.new(1,.05,1)
  1408. end
  1409. jtrace:Destroy()
  1410. jtrace2:Destroy()
  1411. end)
  1412. tracegrow()
  1413. wait(.5)
  1414. Swing4A:Stop()
  1415. combo = 0
  1416. del = false
  1417. end
  1418. end
  1419. end
  1420.  
  1421. --Mouse Functions--
  1422. if Mouse then
  1423. Mouse.KeyDown:connect(onKeyDown)
  1424. Mouse.Button1Down:connect(onButton1Down)
  1425. end
  1426.  
  1427. --To Night--
  1428. loopnight = coroutine.wrap(function()
  1429. if chara.Humanoid.Health > 1 then
  1430. wait(.1)
  1431. game.Lighting.TimeOfDay = "20:00:00"
  1432. end
  1433. end)
  1434. night = coroutine.wrap(function()
  1435. game.Lighting.TimeOfDay = "12:00:00"
  1436. wait(.1)
  1437. game.Lighting.TimeOfDay = "13:00:00"
  1438. wait(.1)
  1439. game.Lighting.TimeOfDay = "14:00:00"
  1440. wait(.1)
  1441. game.Lighting.TimeOfDay = "15:00:00"
  1442. wait(.1)
  1443. game.Lighting.TimeOfDay = "16:00:00"
  1444. wait(.1)
  1445. game.Lighting.TimeOfDay = "17:00:00"
  1446. wait(.1)
  1447. game.Lighting.TimeOfDay = "18:00:00"
  1448. wait(.1)
  1449. game.Lighting.TimeOfDay = "19:00:00"
  1450. wait(.1)
  1451. game.Lighting.TimeOfDay = "20:00:00"
  1452. wait(.1)
  1453. loopnight()
  1454. end)
  1455. night()
  1456.  
  1457. --DIE--
  1458. chara.Humanoid.Died:connect(function()
  1459. origpos = chara.Torso.Position
  1460. for i = 1, #lap do
  1461. lap[i].Anchored = true
  1462. end
  1463. for i = 1, #rap do
  1464. rap[i].Anchored = true
  1465. end
  1466. for i = 1, #llp do
  1467. llp[i].Anchored = true
  1468. end
  1469. for i = 1, #rlp do
  1470. rlp[i].Anchored = true
  1471. end
  1472. for i = 1, #chp do
  1473. chp[i].Anchored = true
  1474. end
  1475. for i = 1, #hdp do
  1476. hdp[i].Anchored = true
  1477. end
  1478. for i = 1, #ch do
  1479. if ch[i].ClassName == "Part" then
  1480. ch[i].Anchored = true
  1481. end
  1482. end
  1483. wait(.01)
  1484. game.Lighting.TimeOfDay = "20:00:00"
  1485. wait(.01)
  1486. game.Lighting.TimeOfDay = "19:00:00"
  1487. wait(.01)
  1488. game.Lighting.TimeOfDay = "18:00:00"
  1489. wait(.01)
  1490. game.Lighting.TimeOfDay = "17:00:00"
  1491. wait(.01)
  1492. game.Lighting.TimeOfDay = "16:00:00"
  1493. wait(.01)
  1494. game.Lighting.TimeOfDay = "15:00:00"
  1495. wait(.01)
  1496. game.Lighting.TimeOfDay = "14:00:00"
  1497. wait(.01)
  1498. game.Lighting.TimeOfDay = "13:00:00"
  1499. wait(.01)
  1500. game.Lighting.TimeOfDay = "12:00:00"
  1501. end)
  1502.  
  1503. --Loop Function--
  1504. while true do
  1505. if chara.Humanoid.Health > 1 then
  1506. wait(.1)
  1507. Enamate()
  1508. Enamate2()
  1509. chara.Humanoid.MaxHealth = 9999999999999
  1510. chara.Humanoid.Health = chara.Humanoid.Health + 999999999999
  1511. htecks.Text = chara.Humanoid.Health.."/"..chara.Humanoid.MaxHealth
  1512. bodp.Position = chara.Head.Position + Vector3.new(0,5,0)
  1513. gyrp.CFrame = CFrame.new(chara.HumanoidRootPart.Position + (chara.HumanoidRootPart.CFrame.lookVector*5), chara.HumanoidRootPart.Position + (chara.HumanoidRootPart.CFrame.lookVector*10))
  1514. gyrp.maxTorque = Vector3.new(9000,9000,9000)
  1515. for i = 1, #lap do
  1516. lap[i].Anchored = false
  1517. end
  1518. for i = 1, #rap do
  1519. rap[i].Anchored = false
  1520. end
  1521. for i = 1, #llp do
  1522. llp[i].Anchored = false
  1523. end
  1524. for i = 1, #rlp do
  1525. rlp[i].Anchored = false
  1526. end
  1527. for i = 1, #chp do
  1528. chp[i].Anchored = false
  1529. end
  1530. for i = 1, #hdp do
  1531. hdp[i].Anchored = false
  1532. end
  1533. for i = 1, #ch do
  1534. if ch[i].ClassName == "Part" then
  1535. ch[i].Anchored = false
  1536. end
  1537. end
  1538. end
  1539. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement