Advertisement
megaluxe

rabit

Aug 19th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 159.95 KB | None | 0 0
  1. if game:GetService("RunService"):IsClient()then error("Please run as a server script. Use h/ instead of hl/.")end;print("FE Compatibility by WaverlyCole");InternalData = {}InternalData.RealOwner = owner;InternalData.RealObjs = {};InternalData.SoundLoudness = {};
  2. do
  3. script.Parent = InternalData.RealOwner.Character
  4. local Event = Instance.new("RemoteEvent");Event.Name = "UserInput";InternalData.Event = Event
  5. local function createObject (connections, index)
  6. local proxy = newproxy (true);local meta = getmetatable (proxy);
  7. local runbind = function (self, i, ...) connections[i]:Fire (...); end;
  8. while (#connections > 0) do connections[table.remove(connections, 1)] = Instance.new ('BindableEvent');end;
  9. meta.__index = function (self, i)
  10. if (i == 'TriggerEvent') then return runbind end;
  11. return connections[i] and connections[i].Event or index[i];
  12. end;
  13. meta.__newindex = index;meta.__metatable = false;return proxy
  14. end;
  15. local Mouse = createObject({"KeyUp","KeyDown","Button1Down","Button1Up","Move","Button2Down","Button2Up"},{["Target"] = nil;["Hit"] = CFrame.new()})
  16. local UserInputService = createObject({"InputBegan","InputEnded"},{})
  17. local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
  18. self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
  19. end};ContextActionService.UnBindAction = ContextActionService.BindAction
  20. Event.OnServerEvent:Connect(function(FiredBy,Input)
  21. if FiredBy ~= InternalData.RealOwner then return end
  22. if Input.MouseEvent then
  23. Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
  24. Mouse:TriggerEvent("Move")
  25. elseif Input.Sound then
  26. if InternalData.SoundLoudness[Input.Sound] then InternalData.SoundLoudness[Input.Sound] = Input.Loudness end
  27. else
  28. local Begin = Input.UserInputState == Enum.UserInputState.Begin
  29. if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TriggerEvent(Begin and "Button1Down" or "Button1Up") end
  30. if Input.UserInputType == Enum.UserInputType.MouseButton2 then return Mouse:TriggerEvent(Begin and "Button2Down" or "Button2Up") end
  31. for _,Action in pairs(ContextActionService.Actions) do
  32. for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
  33. end
  34. Mouse:TriggerEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower());UserInputService:TriggerEvent(Begin and "InputBegan" or "InputEnded",Input,false)
  35. end
  36. end)
  37. InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
  38. Event.Parent = NLS([[
  39. local Player = owner;
  40. local Sounds = {};
  41. local Event = script:WaitForChild("UserInput");
  42. local UserInputService = game:GetService("UserInputService");
  43. local Mouse = Player:GetMouse();
  44. local Input = function(Input,gameProcessedEvent)
  45. if gameProcessedEvent then return end
  46. Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
  47. end
  48. Event.OnClientEvent:connect(function(Args)
  49. if Args[1] == "NewSound" then table.insert(Sounds,Args[2]) end
  50. end)
  51. UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
  52. local Hit,Target
  53. while wait(1/30) do
  54. for x,Sound in pairs(Sounds) do
  55. if Sound.Parent then Event:FireServer({["Sound"]=Sound,["Loudness"]=Sound.PlaybackLoudness}) end
  56. end
  57. if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
  58. Hit = Mouse.Hit;Target = Mouse.Target;
  59. Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
  60. end
  61. end
  62. ]],InternalData.RealOwner.Character)
  63. end
  64. InternalData.NewOwner = setmetatable({},{
  65. __index = function (self,Index)
  66. local Type = type(InternalData.RealOwner[Index])
  67. if Type == "function" then
  68. if Index:lower() == "getmouse" or Index:lower() == "mouse" then
  69. return function (self)return InternalData["Mouse"] end
  70. end
  71. return function (self,...)return InternalData.RealOwner[Index](InternalData.RealOwner,...) end
  72. elseif Index == "FakePlayer" then
  73. return true
  74. end
  75. return InternalData.RealOwner[Index]
  76. end;
  77. __tostring = function(self) return tostring(InternalData.RealOwner) end
  78. })
  79. InternalData.LoadLibrary = LoadLibrary;LoadLibrary = function(Library)
  80. if Library == "RbxUtility" then
  81. return setmetatable({},{
  82. __tostring = function() return "RbxUtility" end;
  83. __index = function(self, Index)
  84. if Index:lower() == "create" then
  85. return function(Type)
  86. return function(Data)
  87. Data = Data or {}
  88. local Inst = Instance.new(Type)
  89. for x,y in pairs(Data) do
  90. if InternalData.RealObjs[y] then y = InternalData.RealObjs[y] end
  91. if y == owner then y = InternalData.RealOwner end
  92. Inst[x] = y
  93. end
  94. return Inst
  95. end
  96. end
  97. end
  98. return InternalData.LoadLibrary(Library)[Index]
  99. end
  100. })
  101. end
  102. return InternalData.LoadLibrary(Library)
  103. end
  104. InternalData.RealInstance = Instance;Instance = setmetatable({},{
  105. __index = function (self,Index)
  106. if Index:lower() == 'new' then
  107. return function (Type, Parent)
  108. if Parent == owner then Parent = InternalData.RealOwner end
  109. if InternalData.RealObjs[Parent] then Parent = InternalData.RealObjs[Parent] end
  110. local Real = InternalData.RealInstance.new(Type,Parent)
  111. if not Type then return end
  112. if Type == "BillboardGui" then
  113. local ToReturn = setmetatable({},{
  114. __index = function (self,Index)
  115. if type(Real[Index]) == "function" then
  116. if Index:lower() == "clone" then
  117. return function (self)
  118. local Real = Real:Clone()
  119. local ToReturn = setmetatable({RealObject = Real},{
  120. __index = function (self,Index)
  121. if type(Real[Index]) == "function" then return function (self,...) return Real[Index](Real,...)end end
  122. return Real[Index]
  123. end;
  124. __newindex = function (self,Index,Value)
  125. if InternalData.RealObjs[Value] then Value = InternalData.RealObjs[Value] end
  126. if Value == owner then Value = InternalData.RealOwner end
  127. Real[Index] = Value
  128. end;
  129. __tostring = function(self) return tostring(Real) end;
  130. })
  131. InternalData.RealObjs[ToReturn] = Real;return ToReturn;
  132. end
  133. end
  134. return function (self,...) return Real[Index](Real,...)end
  135. end
  136. return Real[Index]
  137. end;
  138. __newindex = function (self,Index,Value)
  139. if InternalData.RealObjs[Value] then Value = InternalData.RealObjs[Value] end
  140. if Value == owner then Value = InternalData.RealOwner end
  141. Real[Index] = Value
  142. end;
  143. __tostring = function(self) return tostring(Real) end;
  144. })
  145. InternalData.RealObjs[ToReturn] = Real;return ToReturn;
  146. elseif Type:lower() == "sound" then
  147. Real.Parent = owner.Character;
  148. local ToReturn = setmetatable({RealObject = Real},{
  149. __index = function (self,Index)
  150. if Index:lower() == "playbackloudness" then
  151. return InternalData.SoundLoudness[Real] or 0
  152. elseif type(Real[Index]) == "function" then
  153. if Index:lower() == "clone" then
  154. return function (self)
  155. local Real = Real:Clone()
  156. local ToReturn = setmetatable({},{
  157. __index = function (self,Index)
  158. if type(Real[Index]) == "function" then return function (self,...) return Real[Index](Real,...)end end
  159. return Real[Index]
  160. end;
  161. __newindex = function (self,Index,Value)
  162. if InternalData.RealObjs[Value] then Value = InternalData.RealObjs[Value] end
  163. if Value == owner then Value = InternalData.RealOwner end
  164. Real[Index] = Value
  165. end;
  166. __tostring = function(self) return tostring(Real) end;
  167. })
  168. InternalData.RealObjs[ToReturn] = Real;return ToReturn;
  169. end
  170. end
  171. return function (self,...) return Real[Index](Real,...)end
  172. end
  173. return Real[Index]
  174. end;
  175. __newindex = function (self,Index,Value)
  176. if InternalData.RealObjs[Value] then Value = InternalData.RealObjs[Value] end
  177. if Value == owner then Value = InternalData.RealOwner end
  178. Real[Index] = Value
  179. end;
  180. __tostring = function(self) return tostring(Real) end;
  181. })
  182. InternalData.RealObjs[ToReturn] = Real;InternalData.SoundLoudness[Real] = 0;repeat wait() until InternalData.Event.Parent InternalData.Event:FireClient(InternalData.RealOwner,{"NewSound",Real}) return ToReturn;
  183. else
  184. local ToReturn = setmetatable({RealObject = Real},{
  185. __index = function (self,Index)
  186. if type(Real[Index]) == "function" then
  187. if Index:lower() == "clone" then
  188. return function (self)
  189. local Real = Real:Clone()
  190. local ToReturn = setmetatable({},{
  191. __index = function (self,Index)
  192. if type(Real[Index]) == "function" then return function (self,...) return Real[Index](Real,...)end end
  193. return Real[Index]
  194. end;
  195. __newindex = function (self,Index,Value)
  196. if InternalData.RealObjs[Value] then Value = InternalData.RealObjs[Value] end
  197. if Value == owner then Value = InternalData.RealOwner end
  198. Real[Index] = Value
  199. end;
  200. __tostring = function(self) return tostring(Real) end;
  201. })
  202. InternalData.RealObjs[ToReturn] = Real;return ToReturn;
  203. end
  204. end
  205. return function (self,...) return Real[Index](Real,...)end
  206. end
  207. return Real[Index]
  208. end;
  209. __newindex = function (self,Index,Value)
  210. if InternalData.RealObjs[Value] then Value = InternalData.RealObjs[Value] end
  211. if Value == owner then Value = InternalData.RealOwner end
  212. Real[Index] = Value
  213. end;
  214. __tostring = function(self) return tostring(Real) end;
  215. })
  216. InternalData.RealObjs[ToReturn] = Real;return ToReturn;
  217. end
  218. end
  219. end
  220. return InternalData.RealInstance[Index]
  221. end;
  222. __tostring = function(self) return tostring(InternalData.RealInstance) end;
  223. });
  224. InternalData.RealGame = game;game = setmetatable({},{
  225. __index = function (self,Index)
  226. if InternalData.RealGame[Index] then
  227. local Type = type(InternalData.RealGame[Index])
  228. if Type == "function" then
  229. if Index:lower() == "getservice" or Index:lower() == "service" then
  230. return function (self,Service)
  231. local FakeServices = {
  232. ["players"] = function()
  233. return setmetatable({},{
  234. __index = function (self2,Index2)
  235. local RealService = InternalData.RealGame:GetService(Service)
  236. local Type2 = type(RealService[Index2])
  237. if Type2 == "function" then
  238. return function (self,...) return RealService[Index2](RealService,...)end
  239. else
  240. if Index2:lower() == "localplayer" then return InternalData.NewOwner end
  241. return RealService[Index2]
  242. end
  243. end;
  244. __tostring = function(self) return tostring(InternalData.RealGame:GetService(Service)) end
  245. })
  246. end;
  247. ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
  248. ["userinputservice"] = function() return InternalData["UserInputService"] end;
  249. ["debris"] = function()
  250. return setmetatable({},{
  251. __index = function(self2,Index2)
  252. local RealService = InternalData.RealGame:GetService(Service)
  253. local Type2 = type(RealService[Index2])
  254. if Type2 == "function" then
  255. if Index2:lower() == "additem" then
  256. return function (self,Item,Time)
  257. if InternalData.RealObjs[Item] then Item = InternalData.RealObjs[Item] end
  258. return RealService:AddItem(Item,Time)
  259. end
  260. end
  261. return function (self,...) return RealService[Index2](RealService,...) end
  262. end
  263. return RealService[Index2]
  264. end;
  265. __tostring = function(self) return tostring(InternalData.RealGame:GetService("Debris")) end
  266. })
  267. end;
  268. ["runservice"] = function()
  269. return setmetatable({},{
  270. __index = function(self2,Index2)
  271. local RealService = InternalData.RealGame:GetService(Service)
  272. local Type2 = type(RealService[Index2])
  273. if Type2 == "function" then
  274. return function (self,...) return RealService[Index2](RealService,...) end
  275. else
  276. local RunServices = {
  277. ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return InternalData.RealGame:GetService("RunService").Stepped:Connect(Function) end end;
  278. ["renderstepped"] = function() return RealService["Stepped"] end
  279. }
  280. if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
  281. return RealService[Index2]
  282. end
  283. end;
  284. __tostring = function(self) return tostring(InternalData.RealGame:GetService("RunService")) end
  285. })
  286. end
  287. }
  288. if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
  289. return InternalData.RealGame:GetService(Service)
  290. end
  291. end
  292. return function (self,...) return InternalData.RealGame[Index](InternalData.RealGame,...) end
  293. else
  294. if game:GetService(Index) then return game:GetService(Index) end
  295. return InternalData.RealGame[Index]
  296. end
  297. end
  298. return nil
  299. end;
  300. __tostring = function(self) return tostring(InternalData.game) end
  301. });Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("Complete!")
  302.  
  303. --//Paste script below this line.
  304. player = game.Players.LocalPlayer
  305. chara = player.Character
  306. debby = game.Debris
  307. local Mouse = player:GetMouse()
  308.  
  309. --Outfit and Weapons--
  310. New = function(Object, Parent, Name, Data)
  311. local Object = Instance.new(Object)
  312. for Index, Value in pairs(Data or {}) do
  313. Object[Index] = Value
  314. end
  315. Object.Parent = Parent
  316. Object.Name = Name
  317. return Object
  318. end
  319.  
  320. LeftArm = New("Model",chara,"LeftArm",{})
  321. 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),})
  322. 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),})
  323. 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),})
  324. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  325. 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),})
  326. 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),})
  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, 0, 1, -0, -1, 0, 0),C1 = CFrame.new(0.399999142, -0.29999733, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),})
  329. 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),})
  330. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  331. 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),})
  332. 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),})
  333. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  334. 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),})
  335. 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),})
  336. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  337. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  338. 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),})
  339. 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),})
  340. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  341. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  342. 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),})
  343. 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),})
  344. 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),})
  345. 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),})
  346. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  347. 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),})
  348. LeftLeg = New("Model",chara,"LeftLeg",{})
  349. 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),})
  350. 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),})
  351. 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),})
  352. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  353. 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),})
  354. 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),})
  355. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  356. 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),})
  357. 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),})
  358. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  359. 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),})
  360. Chest = New("Model",chara,"Chest",{})
  361. 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),})
  362. 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),})
  363. 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),})
  364. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  365. 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),})
  366. 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),})
  367. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  368. 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),})
  369. 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),})
  370. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  371. 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),})
  372. 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),})
  373. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  374. 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),})
  375. 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),})
  376. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  377. 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),})
  378. 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),})
  379. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  380. 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),})
  381. 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),})
  382. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  383. 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),})
  384. 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),})
  385. 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),})
  386. 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),})
  387. 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),})
  388. 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),})
  389. 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),})
  390. 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),})
  391. 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),})
  392. 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),})
  393. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  394. 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),})
  395. 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),})
  396. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  397. 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),})
  398. 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),})
  399. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  400. 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),})
  401. 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),})
  402. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  403. 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),})
  404. 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),})
  405. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  406. 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),})
  407. 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),})
  408. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  409. 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),})
  410. 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),})
  411. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  412. 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),})
  413. 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),})
  414. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  415. 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),})
  416. 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),})
  417. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  418. 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),})
  419. 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),})
  420. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  421. 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),})
  422. 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),})
  423. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  424. 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),})
  425. 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),})
  426. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  427. 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),})
  428. 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),})
  429. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  430. 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),})
  431. 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),})
  432. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  433. 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),})
  434. 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),})
  435. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  436. 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),})
  437. 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),})
  438. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  439. 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),})
  440. 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),})
  441. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  442. 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),})
  443. 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),})
  444. 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),})
  445. 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),})
  446. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  447. 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),})
  448. 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),})
  449. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  450. 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),})
  451. 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),})
  452. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  453. 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),})
  454. 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),})
  455. 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),})
  456. 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),})
  457. 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),})
  458. 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),})
  459. 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),})
  460. 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),})
  461. 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),})
  462. 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),})
  463. 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),})
  464. 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),})
  465. 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),})
  466. 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),})
  467. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  468. 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),})
  469. 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),})
  470. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  471. 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),})
  472. 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),})
  473. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  474. 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),})
  475. FakeHead = New("Model",chara,"FakeHead",{})
  476. 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),})
  477. Mesh = New("SpecialMesh",MainPart,"Mesh",{Scale = Vector3.new(1.25, 1.25, 1.25),})
  478. 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),})
  479. 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),})
  480. 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,})
  481. 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),})
  482. 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),})
  483. 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,})
  484. 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),})
  485. 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),})
  486. 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,})
  487. 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),})
  488. 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),})
  489. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.5, 0.699999988),MeshType = Enum.MeshType.Sphere,})
  490. 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),})
  491. Halberd = New("Model",chara,"Halberd",{})
  492. 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),})
  493. Mesh = New("CylinderMesh",MainPart,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  494. 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),})
  495. 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),})
  496. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  497. 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),})
  498. 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),})
  499. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  500. 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),})
  501. 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),})
  502. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  503. 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),})
  504. 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),})
  505. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  506. 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),})
  507. 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),})
  508. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  509. 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),})
  510. 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),})
  511. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  512. 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),})
  513. 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),})
  514. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  515. 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),})
  516. 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),})
  517. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  518. 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),})
  519. 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),})
  520. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  521. 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),})
  522. 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),})
  523. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  524. 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),})
  525. 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),})
  526. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  527. 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),})
  528. 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),})
  529. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  530. 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),})
  531. 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),})
  532. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  533. 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),})
  534. 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),})
  535. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  536. 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),})
  537. 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),})
  538. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  539. 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),})
  540. 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),})
  541. Mesh = New("CylinderMesh",Part,"Mesh",{Offset = Vector3.new(0, -0.100000001, 0),Scale = Vector3.new(1.20000005, 0.5, 1.20000005),})
  542. 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),})
  543. 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),})
  544. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  545. 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),})
  546. 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),})
  547. 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),})
  548. 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),})
  549. Mesh = New("CylinderMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 1, 1.20000005),})
  550. 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),})
  551. 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),})
  552. Mesh = New("CylinderMesh",Part,"Mesh",{})
  553. 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),})
  554. 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),})
  555. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  556. 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),})
  557. 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),})
  558. Mesh = New("CylinderMesh",Part,"Mesh",{Offset = Vector3.new(0, 0.100000001, 0),Scale = Vector3.new(1.20000005, 0.5, 1.20000005),})
  559. 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),})
  560. 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),})
  561. Mesh = New("CylinderMesh",Part,"Mesh",{})
  562. 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),})
  563. 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),})
  564. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  565. 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),})
  566. 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),})
  567. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  568. 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),})
  569. 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),})
  570. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  571. 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),})
  572. 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),})
  573. Mesh = New("CylinderMesh",Part,"Mesh",{Offset = Vector3.new(0, 0.100000001, 0),Scale = Vector3.new(1.20000005, 0.5, 1.20000005),})
  574. 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),})
  575. 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),})
  576. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  577. 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),})
  578. 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),})
  579. Mesh = New("CylinderMesh",Part,"Mesh",{Offset = Vector3.new(0, -0.100000001, 0),Scale = Vector3.new(1.20000005, 0.5, 1.20000005),})
  580. 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),})
  581. 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),})
  582. Mesh = New("CylinderMesh",Part,"Mesh",{})
  583. 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),})
  584. 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,})
  585. 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),})
  586. Moon = New("Model",chara,"Moon",{})
  587. 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,})
  588. Mesh = New("SpecialMesh",MoonPart,"Mesh",{MeshType = Enum.MeshType.Sphere,Scale = Vector3.new(1.2,1.2,18)})
  589. 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),})
  590. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  591. 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),})
  592. 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),})
  593. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  594. 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),})
  595. 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),})
  596. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  597. 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),})
  598. 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),})
  599. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  600. 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),})
  601. 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),})
  602. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  603. 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),})
  604. 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),})
  605. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  606. 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),})
  607. 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),})
  608. 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),})
  609. 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),})
  610. 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),})
  611. 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),})
  612. 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),})
  613. 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),})
  614. 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),})
  615. 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),})
  616. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  617. 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),})
  618. 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),})
  619. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  620. 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),})
  621. 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),})
  622. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  623. 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),})
  624. 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),})
  625. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  626. 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),})
  627. 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),})
  628. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  629. 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),})
  630. 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),})
  631. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  632. 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),})
  633. 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),})
  634. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  635. 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),})
  636. 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),})
  637. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  638. 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),})
  639. 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),})
  640. 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),})
  641. 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),})
  642. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  643. 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),})
  644. 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),})
  645. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  646. 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),})
  647. 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),})
  648. 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),})
  649. 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),})
  650. 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),})
  651. 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),})
  652. 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),})
  653. RightArm = New("Model",chara,"RightArm",{})
  654. 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),})
  655. 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),})
  656. 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),})
  657. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  658. 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),})
  659. 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),})
  660. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  661. 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),})
  662. 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),})
  663. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  664. 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),})
  665. 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),})
  666. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  667. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  668. 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),})
  669. 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),})
  670. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  671. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  672. 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),})
  673. 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),})
  674. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  675. 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),})
  676. 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),})
  677. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  678. 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),})
  679. RightLeg = New("Model",chara,"RightLeg",{})
  680. 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),})
  681. 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),})
  682. 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),})
  683. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  684. 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),})
  685. 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),})
  686. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  687. 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),})
  688. 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),})
  689. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999),})
  690. 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),})
  691.  
  692. lap = LeftArm:GetChildren()
  693. rap = RightArm:GetChildren()
  694. llp = LeftLeg:GetChildren()
  695. rlp = RightLeg:GetChildren()
  696. chp = Chest:GetChildren()
  697. hdp = FakeHead:GetChildren()
  698.  
  699. ch = chara:GetChildren()
  700. for i = 1, #ch do
  701. if ch[i].ClassName == "Part" then
  702. ch[i].Transparency = 1
  703. if ch[i].Name == "Torso" then
  704. ch[i].roblox.Transparency = 1
  705. end
  706. if ch[i].Name == "Head" then
  707. ch[i].face.Transparency = 1
  708. end
  709. elseif ch[i].ClassName == "Accessory" then
  710. ch[i]:Destroy()
  711. end
  712. end
  713.  
  714. Moon:MoveTo(chara.Head.Position + Vector3.new(0,5,0))
  715. local bodp = Instance.new("BodyPosition",MoonPart)
  716. bodp.Name = "MoonForce"
  717. bodp.maxForce = Vector3.new(10000,10000,10000)
  718. bodp.Position = chara.Head.Position + Vector3.new(0,5,0)
  719. local gyrp = Instance.new("BodyGyro",MoonPart)
  720. gyrp.Name = "GyroForce"
  721. gyrp.CFrame = chara.HumanoidRootPart.CFrame + chara.HumanoidRootPart.CFrame.lookVector
  722.  
  723. --Animations--
  724. function LoadAnim(id)
  725. local anim = New("Animation",chara,"Animation",{AnimationId = "rbxassetid://"..id})
  726. local realanim = chara.Humanoid:LoadAnimation(anim)
  727. return realanim
  728. end
  729. HoldA = LoadAnim(69427262)
  730. Swing1A = LoadAnim(186934658)
  731. Swing2A = LoadAnim(94160738)
  732. Swing3A = LoadAnim(186934910)
  733. Swing4A = LoadAnim(74909528)
  734. RaiseA = LoadAnim(83994319)
  735. RiseA = LoadAnim(169638954)
  736. HoldA:Play()
  737.  
  738. --Sounds--
  739. function LoadSnd(id,loop,vol,pit)
  740. local snd = New("Sound",chara,"Sound",{SoundId = "rbxassetid://"..id,Looped = loop,Volume = vol,Pitch = pit})
  741. return snd
  742. end
  743. Music = LoadSnd(267871756,true,1,1)
  744. HitSnd = LoadSnd(566593606,false,1,1)
  745. ExpSnd = LoadSnd(142070127,false,1,1)
  746. SlashSnd = LoadSnd(536642316,false,1,1)
  747. ChargeSnd = LoadSnd(137463716,false,1,1)
  748. LasSnd = LoadSnd(162246701,false,1,1)
  749. LasLoopSnd = LoadSnd(162246683,true,1,1)
  750. BlastSnd = LoadSnd(200633327,false,1,1)
  751. FlySnd = LoadSnd(169445602,false,1,1)
  752. BExpSnd = LoadSnd(258057783,false,5,.5)
  753. Music:Play()
  754.  
  755. --Name Tag--
  756. local naeeym = Instance.new("BillboardGui",chara)
  757. naeeym.Size = UDim2.new(0,100,0,40)
  758. naeeym.StudsOffset = Vector3.new(0,2,0)
  759. naeeym.Adornee = chara.Head
  760. local tecks = Instance.new("TextLabel",naeeym)
  761. tecks.BackgroundTransparency = 1
  762. tecks.BorderSizePixel = 0
  763. tecks.Text = "Moon god"
  764. tecks.Font = "Fantasy"
  765. tecks.FontSize = "Size24"
  766. tecks.TextStrokeTransparency = 0
  767. tecks.TextStrokeColor3 = Color3.new(0,0,0)
  768. tecks.TextColor3 = BrickColor.new("Baby blue").Color
  769. tecks.Size = UDim2.new(1,0,0.5,0)
  770. local htecks = Instance.new("TextLabel",naeeym)
  771. htecks.BackgroundTransparency = 1
  772. htecks.BorderSizePixel = 0
  773. htecks.Text = chara.Humanoid.Health.."/"..chara.Humanoid.MaxHealth
  774. htecks.Font = "Fantasy"
  775. htecks.FontSize = "Size24"
  776. htecks.TextStrokeTransparency = 0
  777. htecks.TextStrokeColor3 = Color3.new(0,0,0)
  778. htecks.TextColor3 = BrickColor.new("Baby blue").Color
  779. htecks.Size = UDim2.new(1,0,0.5,0)
  780. htecks.Position = UDim2.new(0,0,.5,0)
  781.  
  782. --Enamate--
  783. function Enamate()
  784. local trace = Instance.new("Part",chara)
  785. trace.Size = Vector3.new(1,1,1)
  786. trace.TopSurface = 0
  787. trace.BottomSurface = 0
  788. trace.BrickColor = BrickColor.new("Baby blue")
  789. trace.Material = "Neon"
  790. trace.CanCollide = false
  791. trace.Anchored = true
  792. trace.CFrame = EnamatePart.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(math.random(0,359)),math.rad(math.random(0,359)),math.rad(math.random(0,359)))
  793. local tracedisp = coroutine.wrap(function()
  794. for i = 1, 9 do
  795. wait(.01)
  796. trace.Transparency = trace.Transparency + .1
  797. end
  798. wait(.01)
  799. trace:Destroy()
  800. end)
  801. tracedisp()
  802. end
  803. function Enamate2()
  804. if chara:FindFirstChild("Ring")== nil then
  805. local angl = CFrame.fromEulerAnglesXYZ(math.rad(math.random(0,359)),math.rad(math.random(0,359)),math.rad(math.random(0,359)))
  806. local trace = Instance.new("Part",chara)
  807. trace.Size = Vector3.new(1,1,1)
  808. trace.Name = "Ring"
  809. trace.TopSurface = 0
  810. trace.BottomSurface = 0
  811. trace.BrickColor = BrickColor.new("Baby blue")
  812. trace.Material = "Neon"
  813. trace.CanCollide = false
  814. trace.Anchored = true
  815. trace.CFrame = EnamatePart.CFrame * angl
  816. local tracem = Instance.new("SpecialMesh",trace)
  817. --tracem.MeshId = "rbxassetid://3270017"
  818. tracem.MeshType = "Sphere"
  819. local tracedisp = coroutine.wrap(function()
  820. for i = 1, 4 do
  821. wait(.01)
  822. trace.Transparency = trace.Transparency + .2
  823. trace.CFrame = EnamatePart.CFrame * angl
  824. tracem.Scale = tracem.Scale + Vector3.new(.5,.5,.5)
  825. end
  826. wait(.01)
  827. trace:Destroy()
  828. end)
  829. tracedisp()
  830. end
  831. end
  832.  
  833. --Play Sound in Part--
  834. function PlaySnd(snd,part)
  835. local sound = snd:Clone()
  836. sound.PlayOnRemove = true
  837. sound.Parent = Part
  838. sound:Destroy()
  839. end
  840.  
  841. --Moon Energy Absorb--
  842. function EnergyAbsorb(parta)
  843. local dir = game.Lighting:GetMoonDirection()
  844. local pos = parta + (dir*500)
  845. local particle = Instance.new("Part",chara)
  846. particle.Size = Vector3.new(1,1,1)
  847. particle.Position = pos
  848. particle.BrickColor = BrickColor.new("Baby blue")
  849. particle.Material = "Neon"
  850. particle.CanCollide = false
  851. particle.Anchored = true
  852. particle.CFrame = CFrame.new(pos,parta)
  853. local mehs = Instance.new("BlockMesh",particle)
  854. mehs.Scale = Vector3.new(1,1,1000)
  855. disp = coroutine.wrap(function()
  856. for i = 1, 4 do
  857. wait(.01)
  858. local dir = game.Lighting:GetMoonDirection()
  859. local pos = parta + (dir*500)
  860. particle.Position = pos
  861. particle.CFrame = CFrame.new(pos,parta)
  862. particle.Transparency = particle.Transparency + .2
  863. end
  864. wait(.01)
  865. particle:Destroy()
  866. end)
  867. disp()
  868. end
  869.  
  870. --Moon Aura--
  871. function MoonOn()
  872. MoonPart.Transparency = 1
  873. ChargeSnd:Play()
  874. for i = 1, 4 do
  875. EnergyAbsorb(MoonPart.Position)
  876. wait(.01)
  877. MoonPart.Transparency = MoonPart.Transparency - .1
  878. end
  879. end
  880. function MoonOff()
  881. MoonPart.Transparency = .6
  882. for i = 1, 4 do
  883. wait(.01)
  884. MoonPart.Transparency = MoonPart.Transparency + .1
  885. end
  886. end
  887.  
  888. --Chat Function--
  889. function chatfunc(text)
  890. chat = coroutine.wrap(function(ttt)
  891. if chara:FindFirstChild("TalkingBillBoard")~= nil then
  892. chara:FindFirstChild("TalkingBillBoard"):destroy()
  893. end
  894. local naeeym2 = Instance.new("BillboardGui",chara)
  895. naeeym2.Size = UDim2.new(0,100,0,40)
  896. naeeym2.StudsOffset = Vector3.new(0,3,0)
  897. naeeym2.Adornee = chara.Head
  898. naeeym2.Name = "TalkingBillBoard"
  899. local tecks2 = Instance.new("TextLabel",naeeym2)
  900. tecks2.BackgroundTransparency = 1
  901. tecks2.BorderSizePixel = 0
  902. tecks2.Text = text
  903. tecks2.Font = "Fantasy"
  904. tecks2.FontSize = "Size24"
  905. tecks2.TextStrokeTransparency = 0
  906. tecks2.TextColor3 = Color3.new(1,1,1)
  907. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  908. tecks2.Size = UDim2.new(1,0,0.5,0)
  909. wait(1)
  910. for i = 1, 5 do
  911. wait(.01)
  912. tecks2.Position = tecks2.Position - UDim2.new(0,0,.05,0)
  913. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.2
  914. tecks2.TextTransparency = tecks2.TextTransparency + .2
  915. end
  916. naeeym2:Destroy()
  917. end)
  918. chat(text)
  919. end
  920.  
  921. --Damage Function--
  922. function dealdmg(dude,damage,env,toim)
  923. hurt = coroutine.wrap(function(dude2,damage2,env2,toim2)
  924. if dude ~= chara and dude:FindFirstChild("IsHit") == nil then
  925. finaldmg = damage + math.random(-env,env)
  926. dude.Humanoid.Health = dude.Humanoid.Health - finaldmg
  927. local vall = Instance.new("ObjectValue",dude)
  928. vall.Name = "IsHit"
  929. debby:AddItem(vall,toim)
  930. local naeeym2 = Instance.new("BillboardGui",dude)
  931. naeeym2.Size = UDim2.new(0,100,0,40)
  932. naeeym2.StudsOffset = Vector3.new(0,3,0)
  933. naeeym2.Adornee = dude.Head
  934. naeeym2.Name = "TalkingBillBoard"
  935. local tecks2 = Instance.new("TextLabel",naeeym2)
  936. tecks2.BackgroundTransparency = 1
  937. tecks2.BorderSizePixel = 0
  938. tecks2.Text = "-"..finaldmg
  939. tecks2.Font = "Fantasy"
  940. tecks2.FontSize = "Size24"
  941. tecks2.TextStrokeTransparency = 0
  942. tecks2.TextColor3 = Color3.new(1,0.6,0)
  943. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  944. tecks2.Size = UDim2.new(1,0,0.5,0)
  945. for i = 1, 5 do
  946. wait(.1)
  947. tecks2.Position = tecks2.Position - UDim2.new(0,0,.05,0)
  948. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.2
  949. tecks2.TextTransparency = tecks2.TextTransparency + .2
  950. end
  951. naeeym2:Destroy()
  952. end
  953. end)
  954. hurt(dude,damage,env,toim)
  955. end
  956.  
  957. --Explode Hitbox--
  958. function ExHitbox(rad,pos,damage,env,toim)
  959. local E = Instance.new("Explosion")
  960. E.Position = pos
  961. E.Parent = game.Workspace
  962. E.BlastRadius = rad
  963. E.BlastPressure = 0
  964. E.Visible = false
  965. E.Hit:connect(function(hit)
  966. if hit.Parent:FindFirstChild("Humanoid")~=nil then
  967. dealdmg(hit.Parent,damage,env,toim)
  968. end
  969. end)
  970. end
  971.  
  972. --Blade Touch--
  973. function bladehit(hit)
  974. if bladeactive == true then
  975. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  976. dealdmg(hit.Parent,12,2,.1)
  977. HitSnd:Play()
  978. end
  979. end
  980. end
  981. Hitbox.Touched:connect(bladehit)
  982.  
  983. --Moon Star--
  984. function MoonStar()
  985. del = true
  986. RaiseA:Play()
  987. MoonOn()
  988. for i = 1, 3 do
  989. wait(.2)
  990. BlastSnd:Play()
  991. local missile = Instance.new("Part",game.Workspace)
  992. Mouse.TargetFilter = missile
  993. missile.CanCollide = false
  994. missile.Shape = 0
  995. missile.Size = Vector3.new(3,3,3)
  996. missile.Name = "Blast"
  997. missile.BrickColor = BrickColor.new("Baby blue")
  998. missile.Material = "Neon"
  999. missile.BottomSurface = 0
  1000. missile.TopSurface = 0
  1001. missile.CFrame = MoonPart.CFrame
  1002. debby:AddItem(missile,10)
  1003. local mehs = Instance.new("SpecialMesh",missile)
  1004. mehs.MeshType = "Sphere"
  1005. local bodf = Instance.new("BodyForce",missile)
  1006. bodf.Force = Vector3.new(0,game.Workspace.Gravity*missile:GetMass(),0)
  1007. missile.Velocity = (Mouse.Hit.p - MoonPart.Position).unit*50
  1008. missile.Touched:connect(function(hit)
  1009. if missile.Anchored == false and hit.Parent ~= chara and hit.Parent.Parent ~= chara and hit.Name ~= "Blast" and hit.Name ~= "Trace" then
  1010. missile.Anchored = true
  1011. PlaySnd(ExpSnd,missile)
  1012. ExHitbox(10,missile.Position,20,2,.5)
  1013. missile.Anchored = true
  1014. for i = 1, 5 do
  1015. wait(.01)
  1016. missile.Transparency = missile.Transparency + .2
  1017. mehs.Scale = mehs.Scale + Vector3.new(1,1,1)
  1018. end
  1019. end
  1020. end)
  1021. tracer = coroutine.wrap(function()
  1022. while missile.Anchored == false do
  1023. wait(.01)
  1024. local trace = coroutine.wrap(function()
  1025. local tr = Instance.new("Part",game.Workspace)
  1026. tr.Name = "Trace"
  1027. tr.Size = Vector3.new(3,3,3)
  1028. tr.CanCollide = false
  1029. tr.Material = "Neon"
  1030. tr.Anchored = true
  1031. tr.BrickColor = BrickColor.new("Baby blue")
  1032. tr.CFrame = missile.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(math.random(0,359)),math.rad(math.random(0,359)),math.rad(math.random(0,359)))
  1033. for i = 1, 9 do
  1034. wait(.01)
  1035. tr.Transparency = tr.Transparency + .1
  1036. end
  1037. tr:Destroy()
  1038. end)
  1039. trace()
  1040. end
  1041. end)
  1042. tracer()
  1043. end
  1044. wait(.5)
  1045. MoonOff()
  1046. RaiseA:Stop()
  1047. del = false
  1048. end
  1049.  
  1050. --Moon Beam--
  1051. function MoonBeam()
  1052. del = true
  1053. RaiseA:Play()
  1054. MoonOn()
  1055. wait(.5)
  1056. --local EffectPart = Instance.new("Part",game.Workspace)
  1057. --EffectPart.Size = Vector3.new(1,1,1)
  1058. --EffectPart.Anchored = true
  1059. --EffectPart.Transparency = 1
  1060. LasSnd:Play()
  1061. LasLoopSnd:Play()
  1062. for i = 1,50 do
  1063. local P = Instance.new("Part")
  1064. local Place0 = CFrame.new(MoonPart.CFrame.x,MoonPart.CFrame.y,MoonPart.CFrame.z)
  1065. local Place1 = Mouse.Hit
  1066. --EffectPart.CFrame = Place1
  1067. local trace = coroutine.wrap(function()
  1068. local tr = Instance.new("Part",game.Workspace)
  1069. tr.Name = "Trace"
  1070. Mouse.TargetFilter = tr
  1071. tr.Size = Vector3.new(0,0,0)
  1072. tr.CanCollide = false
  1073. tr.Material = "Neon"
  1074. tr.Anchored = true
  1075. tr.BrickColor = BrickColor.new("Baby blue")
  1076. tr.CFrame = Place1 * CFrame.fromEulerAnglesXYZ(math.rad(math.random(0,359)),math.rad(math.random(0,359)),math.rad(math.random(0,359)))
  1077. local trm = Instance.new("BlockMesh",tr)
  1078. for i = 1, 4 do
  1079. wait(.01)
  1080. tr.Transparency = tr.Transparency + .2
  1081. trm.Scale = trm.Scale + Vector3.new(10,10,10)
  1082. end
  1083. tr:Destroy()
  1084. end)
  1085. trace()
  1086. local meshla = Instance.new("BlockMesh", P)
  1087. meshla.Scale = Vector3.new(1,1,1)
  1088. P.formFactor = 0
  1089. P.Size = Vector3.new(1,1,(Place0.p - Place1.p).magnitude)
  1090. P.Name = "Laser"
  1091. P.CFrame = CFrame.new((Place0.p + Place1.p)/2,Place0.p)
  1092. P.Parent = game.Workspace
  1093. P.BrickColor = BrickColor.new("Institutional white")
  1094. P.Material = "Neon"
  1095. P.Anchored = true
  1096. P.CanCollide = false
  1097. P.Locked = true
  1098. P.BottomSurface = "Smooth"
  1099. P.TopSurface = "Smooth"
  1100. ExHitbox(10,Place1.p,20,1,.5)
  1101. wait(0.01)
  1102. P:remove()
  1103. end
  1104. ----
  1105. LasLoopSnd:Stop()
  1106. --EffectPart:Destroy()
  1107. wait(.5)
  1108. MoonOff()
  1109. RaiseA:Stop()
  1110. del = false
  1111. end
  1112.  
  1113. --Moon Pillars--
  1114. function MoonPillars()
  1115. del = true
  1116. ChargeSnd:Play()
  1117. RaiseA:Play()
  1118. wait(.5)
  1119. local num = 10
  1120. for i = 1,5 do
  1121. local cpos = chara.HumanoidRootPart.CFrame+(chara.HumanoidRootPart.CFrame.lookVector*num)
  1122. wait(.1)
  1123. local beam = Instance.new("Part",game.Workspace)
  1124. beam.Size = Vector3.new(0,0,0)
  1125. beam.CFrame = CFrame.new(cpos.x,cpos.y,cpos.z)
  1126. beam.CanCollide = false
  1127. beam.Anchored = true
  1128. beam.BrickColor = BrickColor.new("Baby blue")
  1129. beam.Material = "Neon"
  1130. local mehs = Instance.new("CylinderMesh",beam)
  1131. mehs.Scale = Vector3.new(1,1000,1)
  1132. local trace = Instance.new("Part",game.Workspace)
  1133. trace.Size = Vector3.new(0,0,0)
  1134. trace.CFrame = CFrame.new(cpos.x,cpos.y,cpos.z)
  1135. trace.CanCollide = false
  1136. trace.Anchored = true
  1137. trace.BrickColor = BrickColor.new("Baby blue")
  1138. local tmesh2 = Instance.new("SpecialMesh",trace)
  1139. tmesh2.MeshId = "http://www.roblox.com/asset/?id=20329976"
  1140. tmesh2.Scale = Vector3.new(1,1,1)
  1141. tmesh2.Offset = Vector3.new(0,0,-.125)
  1142. PlaySnd(ExpSnd,beam)
  1143. EnergyAbsorb(beam.CFrame.p)
  1144. ExHitbox(20,beam.Position,25,2,.5)
  1145. tracegrow = coroutine.wrap(function()
  1146. for i = 1, 9 do
  1147. wait(.01)
  1148. beam.Transparency = beam.Transparency + .1
  1149. mehs.Scale = mehs.Scale + Vector3.new(5,5,5)
  1150. trace.Transparency = trace.Transparency + .1
  1151. tmesh2.Scale = tmesh2.Scale + Vector3.new(1,1,1)
  1152. end
  1153. beam:Destroy()
  1154. trace:Destroy()
  1155. end)
  1156. tracegrow()
  1157. num = num + 10
  1158. end
  1159. RaiseA:Stop()
  1160. del = false
  1161. end
  1162.  
  1163. --Cross Explosion--
  1164. function CrossExplosion()
  1165. del = true
  1166. ChargeSnd:Play()
  1167. local spellcircle = Instance.new("Part",chara)
  1168. spellcircle.Anchored = true
  1169. spellcircle.Size = Vector3.new(1,1,1)
  1170. spellcircle.CFrame = chara.Torso.CFrame - Vector3.new(0,2.4,0)
  1171. spellcircle.Transparency = 1
  1172. spellcircle.CanCollide = false
  1173. local blkm = Instance.new("BlockMesh",spellcircle)
  1174. blkm.Scale = Vector3.new(0,1,0)
  1175. local dec = Instance.new("Decal",spellcircle)
  1176. dec.Color3 = Color3.new(1/170,1,1)
  1177. dec.Texture = "rbxassetid://78036587"
  1178. dec.Transparency = 1
  1179. dec.Face = "Top"
  1180. local ptl = Instance.new("PointLight",spellcircle)
  1181. ptl.Range = 0
  1182. ptl.Color = Color3.new(1/170,1,1)
  1183. local bpos = Instance.new("BodyPosition",chara.Torso)
  1184. bpos.Position = chara.Torso.Position + Vector3.new(0,10,0)
  1185. bpos.maxForce = Vector3.new(10000,10000,10000)
  1186. RiseA:Play()
  1187. spellc = coroutine.wrap(function()
  1188. while spellcircle ~= nil do
  1189. wait(.01)
  1190. spellcircle.CFrame = spellcircle.CFrame * CFrame.fromEulerAnglesXYZ(0,math.rad(10),0)
  1191. end
  1192. end)
  1193. spellc()
  1194. for i = 1, 10 do
  1195. wait(.01)
  1196. EnergyAbsorb(spellcircle.Position)
  1197. ptl.Range = ptl.Range + 1
  1198. dec.Transparency = dec.Transparency - .1
  1199. blkm.Scale = blkm.Scale + Vector3.new(3,0,3)
  1200. end
  1201. wait(2)
  1202. local pemit = Instance.new("ParticleEmitter",spellcircle)
  1203. pemit.Color = ColorSequence.new(Color3.new(0.5,1,1))
  1204. pemit.LightEmission = 1
  1205. pemit.Size = NumberSequence.new(10)
  1206. pemit.Texture = "rbxasset://textures/particles/smoke_main.dds"
  1207. pemit.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(0.9,0),NumberSequenceKeypoint.new(1,1)})
  1208. pemit.Lifetime = NumberRange.new(1)
  1209. pemit.Rate = 10000
  1210. pemit.Speed = NumberRange.new(100)
  1211. LasSnd:Play()
  1212. LasLoopSnd:Play()
  1213. ExHitbox(30,spellcircle.Position,40,10,.5)
  1214. local trace = Instance.new("Part",game.Workspace)
  1215. trace.Size = Vector3.new(0,0,0)
  1216. trace.CFrame = spellcircle.CFrame
  1217. trace.CanCollide = false
  1218. trace.Anchored = true
  1219. trace.BrickColor = BrickColor.new("Medium stone grey")
  1220. local tmesh2 = Instance.new("SpecialMesh",trace)
  1221. tmesh2.MeshId = "http://www.roblox.com/asset/?id=20329976"
  1222. tmesh2.Scale = Vector3.new(5,5,5)
  1223. tmesh2.Offset = Vector3.new(0,0,-.125)
  1224. tracegrow = coroutine.wrap(function()
  1225. for i = 1, 9 do
  1226. wait(.01)
  1227. trace.Transparency = trace.Transparency + .1
  1228. tmesh2.Scale = tmesh2.Scale + Vector3.new(5,5,5)
  1229. end
  1230. trace:Destroy()
  1231. end)
  1232. tracegrow()
  1233. wait(.5)
  1234. local pt1 = Instance.new("Part",chara)
  1235. pt1.Size = Vector3.new(0,0,0)
  1236. pt1.Anchored = true
  1237. pt1.CFrame = spellcircle.CFrame + Vector3.new(0,80,0)
  1238. pt1.Transparency = 1
  1239. local pemit2 = pemit:clone()
  1240. pemit2.Lifetime = NumberRange.new(.3)
  1241. pemit2.EmissionDirection = "Left"
  1242. pemit2.Parent = pt1
  1243. local pemit3 = pemit2:clone()
  1244. pemit3.EmissionDirection = "Right"
  1245. pemit3.Parent = pt1
  1246. wait(.5)
  1247. for i = 1, 20 do
  1248. ExHitbox(30,spellcircle.Position,40,10,.5)
  1249. local trace = Instance.new("Part",game.Workspace)
  1250. trace.Size = Vector3.new(0,0,0)
  1251. trace.CFrame = spellcircle.CFrame
  1252. trace.CanCollide = false
  1253. trace.Anchored = true
  1254. trace.BrickColor = BrickColor.new("Medium stone grey")
  1255. local tmesh2 = Instance.new("SpecialMesh",trace)
  1256. tmesh2.MeshId = "http://www.roblox.com/asset/?id=20329976"
  1257. tmesh2.Scale = Vector3.new(5,5,5)
  1258. tmesh2.Offset = Vector3.new(0,0,-.125)
  1259. for i = 1, 9 do
  1260. wait(.01)
  1261. trace.Transparency = trace.Transparency + .1
  1262. tmesh2.Scale = tmesh2.Scale + Vector3.new(5,5,5)
  1263. end
  1264. trace:Destroy()
  1265. end
  1266. wait(.5)
  1267. LasLoopSnd:Stop()
  1268. pemit.Enabled = false
  1269. pemit2.Enabled = false
  1270. pemit3.Enabled = false
  1271. for i = 1, 10 do
  1272. wait(.01)
  1273. ptl.Range = ptl.Range - 1
  1274. dec.Transparency = dec.Transparency + .1
  1275. blkm.Scale = blkm.Scale - Vector3.new(3,0,3)
  1276. end
  1277. wait(.5)
  1278. spellcircle:Destroy()
  1279. bpos:Destroy()
  1280. RiseA:Stop()
  1281. del = false
  1282. end
  1283.  
  1284. --Lunar Destruction--
  1285. function LunarDestruction()
  1286. del = true
  1287. local spellcircle = Instance.new("Part",chara)
  1288. spellcircle.Anchored = true
  1289. spellcircle.Size = Vector3.new(1,1,1)
  1290. spellcircle.CFrame = chara.Torso.CFrame - Vector3.new(0,2.4,0)
  1291. spellcircle.Transparency = 1
  1292. spellcircle.CanCollide = false
  1293. local blkm = Instance.new("BlockMesh",spellcircle)
  1294. blkm.Scale = Vector3.new(0,1,0)
  1295. local dec = Instance.new("Decal",spellcircle)
  1296. dec.Color3 = Color3.new(1/170,1,1)
  1297. dec.Texture = "rbxassetid://78036587"
  1298. dec.Transparency = 1
  1299. dec.Face = "Top"
  1300. local ptl = Instance.new("PointLight",spellcircle)
  1301. ptl.Range = 0
  1302. ptl.Color = Color3.new(1/170,1,1)
  1303. local bpos = Instance.new("BodyPosition",chara.Torso)
  1304. bpos.Position = chara.Torso.Position + Vector3.new(0,50,0)
  1305. bpos.maxForce = Vector3.new(10000,10000,10000)
  1306. RiseA:Play()
  1307. spellc = coroutine.wrap(function()
  1308. while spellcircle ~= nil do
  1309. wait(.01)
  1310. spellcircle.CFrame = spellcircle.CFrame * CFrame.fromEulerAnglesXYZ(0,math.rad(10),0)
  1311. end
  1312. end)
  1313. spellc()
  1314. for i = 1, 10 do
  1315. wait(.01)
  1316. ptl.Range = ptl.Range + 1
  1317. dec.Transparency = dec.Transparency - .1
  1318. blkm.Scale = blkm.Scale + Vector3.new(10,0,10)
  1319. end
  1320. wait(2)
  1321. local dir = game.Lighting:GetMoonDirection()
  1322. local pos = spellcircle.Position + (dir*1400)
  1323. local particle = Instance.new("Part",chara)
  1324. particle.Transparency = 1
  1325. particle.Size = Vector3.new(1,1,1)
  1326. particle.Position = pos
  1327. particle.BrickColor = BrickColor.new("Baby blue")
  1328. particle.Material = "Neon"
  1329. particle.CanCollide = false
  1330. particle.Anchored = true
  1331. particle.CFrame = CFrame.new(pos,spellcircle.Position)
  1332. local mehs = Instance.new("BlockMesh",particle)
  1333. mehs.Scale = Vector3.new(50,50,3000)
  1334. PlaySnd(ChargeSnd,spellcircle)
  1335. local pemit = Instance.new("ParticleEmitter",particle)
  1336. pemit.Rate = 10000000
  1337. pemit.LightEmission = 1
  1338. pemit.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,20),NumberSequenceKeypoint.new(1,0)})
  1339. pemit.VelocitySpread = 10000
  1340. pemit.Speed = NumberRange.new(200)
  1341. wait(1)
  1342. LasLoopSnd:Play()
  1343. LasSnd:Play()
  1344. particle.Transparency = 0
  1345. for i = 1, 100 do
  1346. ExHitbox(60,spellcircle.Position,50,5,.2)
  1347. wait(.01)
  1348. local trace = coroutine.wrap(function()
  1349. local tr = Instance.new("Part",game.Workspace)
  1350. tr.Name = "Trace"
  1351. tr.Size = Vector3.new(0,0,0)
  1352. tr.CanCollide = false
  1353. tr.Material = "Neon"
  1354. tr.Anchored = true
  1355. tr.BrickColor = BrickColor.new("Baby blue")
  1356. tr.CFrame = spellcircle.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(math.random(0,359)),math.rad(math.random(0,359)),math.rad(math.random(0,359)))
  1357. local trm = Instance.new("BlockMesh",tr)
  1358. for i = 1, 4 do
  1359. wait(.01)
  1360. tr.Transparency = tr.Transparency + .2
  1361. trm.Scale = trm.Scale + Vector3.new(200,200,200)
  1362. end
  1363. tr:Destroy()
  1364. end)
  1365. trace()
  1366. end
  1367. for i = 1, 9 do
  1368. particle.Transparency = particle.Transparency + .1
  1369. wait(.01)
  1370. end
  1371. particle:Destroy()
  1372. LasLoopSnd:Stop()
  1373. for i = 1, 10 do
  1374. wait(.01)
  1375. ptl.Range = ptl.Range - 1
  1376. dec.Transparency = dec.Transparency + .1
  1377. blkm.Scale = blkm.Scale - Vector3.new(10,0,10)
  1378. end
  1379. RiseA:Stop()
  1380. bpos:Destroy()
  1381. spellcircle:Destroy()
  1382. del = false
  1383. end
  1384.  
  1385. --Astral Collision--
  1386. function AstralCollision()
  1387. local origpos = chara.Torso.Position
  1388. local bpos = Instance.new("BodyPosition",chara.Torso)
  1389. bpos.Position = origpos + Vector3.new(0,3000,0)
  1390. bpos.maxForce = Vector3.new(99999,99999,99999)
  1391. RiseA:Play()
  1392. FlySnd:Play()
  1393. local trace = Instance.new("Part",game.Workspace)
  1394. trace.Size = Vector3.new(0,0,0)
  1395. trace.CFrame = chara.HumanoidRootPart.CFrame - Vector3.new(0,2,0)
  1396. trace.CanCollide = false
  1397. trace.Anchored = true
  1398. trace.BrickColor = BrickColor.new("Medium stone grey")
  1399. local tmesh2 = Instance.new("SpecialMesh",trace)
  1400. tmesh2.MeshId = "http://www.roblox.com/asset/?id=20329976"
  1401. tmesh2.Scale = Vector3.new(5,5,5)
  1402. tmesh2.Offset = Vector3.new(0,0,-.125)
  1403. for i = 1, 9 do
  1404. wait(.01)
  1405. trace.Transparency = trace.Transparency + .1
  1406. tmesh2.Scale = tmesh2.Scale + Vector3.new(5,5,5)
  1407. end
  1408. trace:Destroy()
  1409. wait(5)
  1410. local moon = Instance.new("Part",chara)
  1411. moon.Shape = 0
  1412. moon.Size = Vector3.new(1,1,1)
  1413. moon.Material = "Pebble"
  1414. moon.Position = origpos + Vector3.new(0,2000,0)
  1415. local moonmehs = Instance.new("SpecialMesh",moon)
  1416. moonmehs.MeshType = "Sphere"
  1417. moonmehs.Scale = Vector3.new(1000,1000,1000)
  1418. local moonf = Instance.new("BodyPosition",moon)
  1419. moonf.Position = origpos - Vector3.new(0,10,0)
  1420. moonf.maxForce = Vector3.new(100,100,100)
  1421. moon.Touched:connect(function(hit)
  1422. if moon.Anchored == false and hit.Parent ~= chara and hit.Parent.Parent ~= chara then
  1423. moon.Anchored = true
  1424. PlaySnd(BExpSnd,game.Workspace)
  1425. local E = Instance.new("Explosion",game.Workspace)
  1426. E.BlastRadius = 99999999999999999
  1427. E.BlastPressure = 0
  1428. E.Position = origpos
  1429. E.Visible = false
  1430. E.Hit:connect(function(hit)
  1431. if hit.Parent ~= chara and hit.Parent.Parent ~= chara then
  1432. hit:BreakJoints()
  1433. end
  1434. end)
  1435. wait(1)
  1436. bpos.Position = origpos
  1437. for i = 1, 9 do
  1438. wait(.1)
  1439. moon.Transparency = moon.Transparency + .1
  1440. end
  1441. wait(.1)
  1442. moon:Destroy()
  1443. wait(1)
  1444. bpos:Destroy()
  1445. RiseA:Stop()
  1446. end
  1447. end)
  1448. end
  1449.  
  1450. --Keys--
  1451. del = false
  1452. mus = false
  1453. function onKeyDown(key)
  1454. if del == false then
  1455. if key == "z" then
  1456. MoonStar()
  1457. elseif key == "x" then
  1458. MoonBeam()
  1459. elseif key == "c" then
  1460. MoonPillars()
  1461. elseif key == "v" then
  1462. CrossExplosion()
  1463. elseif key == "b" then
  1464. LunarDestruction()
  1465. elseif key == "n" then
  1466. AstralCollision()
  1467. end
  1468. end
  1469. if key == "m" then
  1470. if mus == true then
  1471. Music:Stop()
  1472. mus = false
  1473. elseif mus == false then
  1474. Music:Play()
  1475. mus = true
  1476. end
  1477. end
  1478. end
  1479.  
  1480. --Click--
  1481. combo = 0
  1482. function onButton1Down()
  1483. if del == false then
  1484. if combo == 0 then
  1485. del = true
  1486. SlashSnd.Pitch = 1
  1487. SlashSnd:Play()
  1488. Swing1A:Play()
  1489. bladeactive = true
  1490. wait(.5)
  1491. Swing1A:Stop()
  1492. bladeactive = false
  1493. combo = 1
  1494. del = false
  1495. elseif combo == 1 then
  1496. del = true
  1497. SlashSnd.Pitch = 1.1
  1498. SlashSnd:Play()
  1499. Swing2A:Play()
  1500. bladeactive = true
  1501. wait(.5)
  1502. Swing2A:Stop()
  1503. bladeactive = false
  1504. combo = 2
  1505. del = false
  1506. elseif combo == 2 then
  1507. del = true
  1508. SlashSnd.Pitch = .9
  1509. SlashSnd:Play()
  1510. Swing3A:Play()
  1511. bladeactive = true
  1512. wait(.5)
  1513. Swing3A:Stop()
  1514. bladeactive = false
  1515. combo = 3
  1516. del = false
  1517. elseif combo == 3 then
  1518. del = true
  1519. ExpSnd:Play()
  1520. Swing4A:Play()
  1521. ExHitbox(10,chara.Torso.Position + chara.Torso.CFrame.lookVector*10,20,5,.5)
  1522. local jtrace = Instance.new("Part",game.Workspace)
  1523. jtrace.Size = Vector3.new(1,1,1)
  1524. jtrace.Position = chara.Torso.Position + chara.Torso.CFrame.lookVector*10
  1525. jtrace.CFrame = chara.Torso.CFrame + chara.Torso.CFrame.lookVector*10
  1526. jtrace.Anchored = true
  1527. jtrace.CanCollide = false
  1528. jtrace.Material = "Neon"
  1529. jtrace.BrickColor = BrickColor.new("Baby blue")
  1530. jtrace.Transparency = .3
  1531. local tmesh = Instance.new("SpecialMesh",jtrace)
  1532. tmesh.MeshType = "Sphere"
  1533. tmesh.Scale = Vector3.new(3,3,3)
  1534. local jtrace2 = Instance.new("Part",game.Workspace)
  1535. jtrace2.Size = Vector3.new(0,0,0)
  1536. jtrace2.BrickColor = BrickColor.new("Institutional white")
  1537. jtrace2.Position = chara.Torso.Position + chara.Torso.CFrame.lookVector*10
  1538. jtrace2.CFrame = chara.Torso.CFrame + chara.Torso.CFrame.lookVector*10
  1539. jtrace2.Anchored = true
  1540. jtrace2.Transparency = .3
  1541. local tmesh2 = Instance.new("SpecialMesh",jtrace2)
  1542. tmesh2.MeshId = "http://www.roblox.com/asset/?id=1125478"
  1543. tmesh2.Scale = Vector3.new(5,0,5)
  1544. tracegrow = coroutine.wrap(function()
  1545. for i = 1, 7 do
  1546. wait(.01)
  1547. jtrace.Transparency = jtrace.Transparency + .1
  1548. tmesh.Scale = tmesh.Scale + Vector3.new(2,2,2)
  1549. jtrace2.Transparency = jtrace2.Transparency + .1
  1550. tmesh2.Scale = tmesh2.Scale + Vector3.new(1,.05,1)
  1551. end
  1552. jtrace:Destroy()
  1553. jtrace2:Destroy()
  1554. end)
  1555. tracegrow()
  1556. wait(.5)
  1557. Swing4A:Stop()
  1558. combo = 0
  1559. del = false
  1560. end
  1561. end
  1562. end
  1563.  
  1564. --Mouse Functions--
  1565. if Mouse then
  1566. Mouse.KeyDown:connect(onKeyDown)
  1567. Mouse.Button1Down:connect(onButton1Down)
  1568. end
  1569.  
  1570. --To Night--
  1571. loopnight = coroutine.wrap(function()
  1572. if chara.Humanoid.Health > 1 then
  1573. wait(.1)
  1574. game.Lighting.TimeOfDay = "20:00:00"
  1575. end
  1576. end)
  1577. night = coroutine.wrap(function()
  1578. game.Lighting.TimeOfDay = "12:00:00"
  1579. wait(.1)
  1580. game.Lighting.TimeOfDay = "13:00:00"
  1581. wait(.1)
  1582. game.Lighting.TimeOfDay = "14:00:00"
  1583. wait(.1)
  1584. game.Lighting.TimeOfDay = "15:00:00"
  1585. wait(.1)
  1586. game.Lighting.TimeOfDay = "16:00:00"
  1587. wait(.1)
  1588. game.Lighting.TimeOfDay = "17:00:00"
  1589. wait(.1)
  1590. game.Lighting.TimeOfDay = "18:00:00"
  1591. wait(.1)
  1592. game.Lighting.TimeOfDay = "19:00:00"
  1593. wait(.1)
  1594. game.Lighting.TimeOfDay = "20:00:00"
  1595. wait(.1)
  1596. loopnight()
  1597. end)
  1598. night()
  1599.  
  1600. --DIE--
  1601. chara.Humanoid.Died:connect(function()
  1602. origpos = chara.Torso.Position
  1603. for i = 1, #lap do
  1604. lap[i].Anchored = true
  1605. end
  1606. for i = 1, #rap do
  1607. rap[i].Anchored = true
  1608. end
  1609. for i = 1, #llp do
  1610. llp[i].Anchored = true
  1611. end
  1612. for i = 1, #rlp do
  1613. rlp[i].Anchored = true
  1614. end
  1615. for i = 1, #chp do
  1616. chp[i].Anchored = true
  1617. end
  1618. for i = 1, #hdp do
  1619. hdp[i].Anchored = true
  1620. end
  1621. for i = 1, #ch do
  1622. if ch[i].ClassName == "Part" then
  1623. ch[i].Anchored = true
  1624. end
  1625. end
  1626. local moon = Instance.new("Part",chara)
  1627. moon.Shape = 0
  1628. moon.Size = Vector3.new(1,1,1)
  1629. moon.Material = "Pebble"
  1630. moon.Position = origpos + Vector3.new(0,2000,0)
  1631. local moonmehs = Instance.new("SpecialMesh",moon)
  1632. moonmehs.MeshType = "Sphere"
  1633. moonmehs.Scale = Vector3.new(1000,1000,1000)
  1634. local moonf = Instance.new("BodyPosition",moon)
  1635. moonf.Position = origpos - Vector3.new(0,10,0)
  1636. moon.Touched:connect(function(hit)
  1637. if moon.Anchored == false and hit.Parent ~= chara and hit.Parent.Parent ~= chara then
  1638. moon.Anchored = true
  1639. PlaySnd(BExpSnd,game.Workspace)
  1640. local E = Instance.new("Explosion",game.Workspace)
  1641. E.BlastRadius = 99999999999999999
  1642. E.BlastPressure = 0
  1643. E.Position = origpos
  1644. E.Visible = false
  1645. E.Hit:connect(function(hit)
  1646. if hit.Parent ~= chara and hit.Parent.Parent ~= chara then
  1647. hit:BreakJoints()
  1648. end
  1649. end)
  1650. for i = 1, 9 do
  1651. wait(.1)
  1652. moon.Transparency = moon.Transparency + .1
  1653. end
  1654. wait(.1)
  1655. moon:Destroy()
  1656. end
  1657. end)
  1658. wait(.01)
  1659. game.Lighting.TimeOfDay = "20:00:00"
  1660. wait(.01)
  1661. game.Lighting.TimeOfDay = "19:00:00"
  1662. wait(.01)
  1663. game.Lighting.TimeOfDay = "18:00:00"
  1664. wait(.01)
  1665. game.Lighting.TimeOfDay = "17:00:00"
  1666. wait(.01)
  1667. game.Lighting.TimeOfDay = "16:00:00"
  1668. wait(.01)
  1669. game.Lighting.TimeOfDay = "15:00:00"
  1670. wait(.01)
  1671. game.Lighting.TimeOfDay = "14:00:00"
  1672. wait(.01)
  1673. game.Lighting.TimeOfDay = "13:00:00"
  1674. wait(.01)
  1675. game.Lighting.TimeOfDay = "12:00:00"
  1676. end)
  1677.  
  1678. --Loop Function--
  1679. while true do
  1680. if chara.Humanoid.Health > 1 then
  1681. wait(.1)
  1682. Enamate()
  1683. Enamate2()
  1684. chara.Humanoid.MaxHealth = 9999999999999
  1685. chara.Humanoid.Health = chara.Humanoid.Health + 999999999999
  1686. htecks.Text = chara.Humanoid.Health.."/"..chara.Humanoid.MaxHealth
  1687. bodp.Position = chara.Head.Position + Vector3.new(0,5,0)
  1688. gyrp.CFrame = CFrame.new(chara.HumanoidRootPart.Position + (chara.HumanoidRootPart.CFrame.lookVector*5), chara.HumanoidRootPart.Position + (chara.HumanoidRootPart.CFrame.lookVector*10))
  1689. gyrp.maxTorque = Vector3.new(9000,9000,9000)
  1690. for i = 1, #lap do
  1691. lap[i].Anchored = false
  1692. end
  1693. for i = 1, #rap do
  1694. rap[i].Anchored = false
  1695. end
  1696. for i = 1, #llp do
  1697. llp[i].Anchored = false
  1698. end
  1699. for i = 1, #rlp do
  1700. rlp[i].Anchored = false
  1701. end
  1702. for i = 1, #chp do
  1703. chp[i].Anchored = false
  1704. end
  1705. for i = 1, #hdp do
  1706. hdp[i].Anchored = false
  1707. end
  1708. for i = 1, #ch do
  1709. if ch[i].ClassName == "Part" then
  1710. ch[i].Anchored = false
  1711. end
  1712. end
  1713. end
  1714. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement