coolgoldboy166

some shit

Nov 1st, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 213.46 KB | None | 0 0
  1. --[[Nocturna_A._Alteriano_Night.Owl.Inc]]--
  2. wait(1 / 60)
  3. Effects = { }
  4. local Player = game.Players.localPlayer
  5. local Character = Player.Character
  6. local Humanoid = Character.Humanoid
  7. local Mouse = Player:GetMouse()
  8. local LeftArm = Character["Left Arm"]
  9. local RightArm = Character["Right Arm"]
  10. local LeftLeg = Character["Left Leg"]
  11. local RightLeg = Character["Right Leg"]
  12. local Head = Character.Head
  13. local Torso = Character.Torso
  14. local Camera = game.Workspace.CurrentCamera
  15. local RootPart = Character.HumanoidRootPart
  16. local RootJoint = RootPart.RootJoint
  17. local mouse, Mouse = Player:GetMouse(), Player:GetMouse()
  18. local attack = false
  19. local Anim = 'Idle'
  20. local attacktype = 1
  21. local Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  22. local velocity = RootPart.Velocity.y
  23. local sine = 0
  24. local change = 1
  25. local Create = LoadLibrary("RbxUtility").Create
  26.  
  27. local m = Create("Model"){
  28. Parent = Character,
  29. Name = "WeaponModel",
  30. }
  31.  
  32. Humanoid.Animator.Parent = nil
  33. Character.Animate.Parent = nil
  34.  
  35. local newMotor = function(part0, part1, c0, c1)
  36. local w = Create('Motor'){
  37. Parent = part0,
  38. Part0 = part0,
  39. Part1 = part1,
  40. C0 = c0,
  41. C1 = c1,
  42. }
  43. return w
  44. end
  45.  
  46. function clerp(a, b, t)
  47. return a:lerp(b, t)
  48. end
  49.  
  50. RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  51. NeckCF = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  52.  
  53. local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
  54. local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
  55. local RH = newMotor(Torso, RightLeg, CFrame.new(.5, -2, 0), CFrame.new(0, 0, 0))
  56. local LH = newMotor(Torso, LeftLeg, CFrame.new(-.5, -2, 0), CFrame.new(0, 0, 0))
  57. RootJoint.C1 = CFrame.new(0, 0, 0)
  58. RootJoint.C0 = CFrame.new(0, 0, 0)
  59. Torso.Neck.C1 = CFrame.new(0, 0, 0)
  60. Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
  61.  
  62. local rarmc1 = RW.C1
  63. local larmc1 = LW.C1
  64. local rlegc1 = RH.C1
  65. local llegc1 = LH.C1
  66.  
  67. local resetc1 = false
  68.  
  69. function PlayAnimationFromTable(table, speed, bool)
  70. RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
  71. Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
  72. RW.C0 = clerp(RW.C0, table[3], speed)
  73. LW.C0 = clerp(LW.C0, table[4], speed)
  74. RH.C0 = clerp(RH.C0, table[5], speed)
  75. LH.C0 = clerp(LH.C0, table[6], speed)
  76. if bool == true then
  77. if resetc1 == false then
  78. resetc1 = true
  79. RootJoint.C1 = RootJoint.C1
  80. Torso.Neck.C1 = Torso.Neck.C1
  81. RW.C1 = rarmc1
  82. LW.C1 = larmc1
  83. RH.C1 = rlegc1
  84. LH.C1 = llegc1
  85. end
  86. end
  87. end
  88.  
  89. ArtificialHB = Create("BindableEvent", script){
  90. Parent = script,
  91. Name = "Heartbeat",
  92. }
  93.  
  94. script:WaitForChild("Heartbeat")
  95.  
  96. frame = 1 / 30
  97. tf = 0
  98. allowframeloss = false
  99. tossremainder = false
  100. lastframe = tick()
  101. script.Heartbeat:Fire()
  102.  
  103. game:GetService("RunService").Heartbeat:connect(function(s, p)
  104. tf = tf + s
  105. if tf >= frame then
  106. if allowframeloss then
  107. script.Heartbeat:Fire()
  108. lastframe = tick()
  109. else
  110. for i = 1, math.floor(tf / frame) do
  111. script.Heartbeat:Fire()
  112. end
  113. lastframe = tick()
  114. end
  115. if tossremainder then
  116. tf = 0
  117. else
  118. tf = tf - frame * math.floor(tf / frame)
  119. end
  120. end
  121. end)
  122.  
  123. function swait(num)
  124. if num == 0 or num == nil then
  125. ArtificialHB.Event:wait()
  126. else
  127. for i = 0, num do
  128. ArtificialHB.Event:wait()
  129. end
  130. end
  131. end
  132.  
  133. function RemoveOutlines(part)
  134. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  135. end
  136.  
  137. CFuncs = {
  138. ["Part"] = {
  139. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  140. local Part = Create("Part"){
  141. Parent = Parent,
  142. Reflectance = Reflectance,
  143. Transparency = Transparency,
  144. CanCollide = false,
  145. Locked = true,
  146. BrickColor = BrickColor.new(tostring(BColor)),
  147. Name = Name,
  148. Size = Size,
  149. Material = Material,
  150. }
  151. RemoveOutlines(Part)
  152. return Part
  153. end;
  154. };
  155.  
  156. ["Mesh"] = {
  157. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  158. local Msh = Create(Mesh){
  159. Parent = Part,
  160. Offset = OffSet,
  161. Scale = Scale,
  162. }
  163. if Mesh == "SpecialMesh" then
  164. Msh.MeshType = MeshType
  165. Msh.MeshId = MeshId
  166. end
  167. return Msh
  168. end;
  169. };
  170.  
  171. ["Mesh"] = {
  172. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  173. local Msh = Create(Mesh){
  174. Parent = Part,
  175. Offset = OffSet,
  176. Scale = Scale,
  177. }
  178. if Mesh == "SpecialMesh" then
  179. Msh.MeshType = MeshType
  180. Msh.MeshId = MeshId
  181. end
  182. return Msh
  183. end;
  184. };
  185.  
  186. ["Weld"] = {
  187. Create = function(Parent, Part0, Part1, C0, C1)
  188. local Weld = Create("Weld"){
  189. Parent = Parent,
  190. Part0 = Part0,
  191. Part1 = Part1,
  192. C0 = C0,
  193. C1 = C1,
  194. }
  195. return Weld
  196. end;
  197. };
  198.  
  199. ["Sound"] = {
  200. Create = function(id, par, vol, pit)
  201. coroutine.resume(coroutine.create(function()
  202. local S = Create("Sound"){
  203. Volume = vol,
  204. Pitch = pit or 1,
  205. SoundId = id,
  206. Parent = par or workspace,
  207. }
  208. wait()
  209. S:play()
  210. game:GetService("Debris"):AddItem(S, 6)
  211. end))
  212. end;
  213. };
  214.  
  215. ["ParticleEmitter"] = {
  216. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  217. local fp = Create("ParticleEmitter"){
  218. Parent = Parent,
  219. Color = ColorSequence.new(Color1, Color2),
  220. LightEmission = LightEmission,
  221. Size = Size,
  222. Texture = Texture,
  223. Transparency = Transparency,
  224. ZOffset = ZOffset,
  225. Acceleration = Accel,
  226. Drag = Drag,
  227. LockedToPart = LockedToPart,
  228. VelocityInheritance = VelocityInheritance,
  229. EmissionDirection = EmissionDirection,
  230. Enabled = Enabled,
  231. Lifetime = LifeTime,
  232. Rate = Rate,
  233. Rotation = Rotation,
  234. RotSpeed = RotSpeed,
  235. Speed = Speed,
  236. VelocitySpread = VelocitySpread,
  237. }
  238. return fp
  239. end;
  240. };
  241.  
  242. CreateTemplate = {
  243.  
  244. };
  245. }
  246.  
  247. New = function(Object, Parent, Name, Data)
  248. local Object = Instance.new(Object)
  249. for Index, Value in pairs(Data or {}) do
  250. Object[Index] = Value
  251. end
  252. Object.Parent = Parent
  253. Object.Name = Name
  254. return Object
  255. end
  256.  
  257. HeavenGlacier = New("Model",Character,"HeavenGlacier",{})
  258. Handle = New("Part",HeavenGlacier,"Handle",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(3, 0.5, 0.5),CFrame = CFrame.new(-1.12, 1.68000042, 15.7099447, -4.37113883e-08, 0, 1, 0, 1.00001001, 0, -1.00001001, 0, -4.37118288e-08),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  259. moter = New("Motor",Handle,"mot",{Part0 =RightArm, Part1 = Handle,})
  260. Mesh = New("SpecialMesh",Handle,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  261. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(2, 0.300000012, 0.300000012),CFrame = CFrame.new(-1.12, 1.04999423, 15.7099447, -4.37113883e-08, 0, 1, 0, 1.00001001, 0, -1.00001001, 0, -4.37118288e-08),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  262. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  263. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0, -0.629999876, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  264. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(2, 0.300000012, 0.300000012),CFrame = CFrame.new(-1.12, 1.04999423, 15.7099447, -4.37113883e-08, 0, 1, 0, 1.00001001, 0, -1.00001001, 0, -4.37118288e-08),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  265. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  266. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(0, -0.629999876, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  267. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.300000012, 0.300000012, 0.300000012),CFrame = CFrame.new(-1.12, 1.04999423, 16.6999588, -4.37113883e-08, 0, 1, 0, 1.00001001, 0, -1.00001001, 0, -4.37118288e-08),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  268. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  269. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.990004539, -0.629999876, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  270. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.769999981, 0.300000012, 0.300000012),CFrame = CFrame.new(-1.12, 1.43999791, 16.8349552, 1.49501957e-08, 4.10754808e-08, 1, 0.93970114, -0.342026263, 1.86520802e-13, 0.342026383, 0.939701021, -4.37120313e-08),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  271. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  272. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 1.49501957e-08, 0.939691722, 0.342022955, 4.10754808e-08, -0.342022836, 0.939691603, 1, 1.86518932e-13, -4.37115908e-08),C1 = CFrame.new(-1.12499905, -0.240000129, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  273. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.769999981, 0.300000012, 0.300000012),CFrame = CFrame.new(-1.12, 1.43999791, 16.4149475, -1.13125775e-08, 4.22227018e-08, 1, 0.965940118, 0.258806378, -2.33221754e-13, -0.258806378, 0.965940118, -4.37123298e-08),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  274. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  275. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1.13125775e-08, 0.965930462, -0.258803785, 4.22227018e-08, 0.258803785, 0.965930462, 1, -2.33219423e-13, -4.37118892e-08),C1 = CFrame.new(-0.704995155, -0.240000129, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  276. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.300000012, 0.300000012, 0.300000012),CFrame = CFrame.new(-1.11999691, 1.04999423, 14.7033796, 0, 0, -1, 0, 1.00001001, 0, 1.00001001, 0, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  277. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  278. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),C1 = CFrame.new(1.0065546, -0.629999876, 3.09944153e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  279. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.769999981, 0.300000012, 0.300000012),CFrame = CFrame.new(-1.12000084, 1.43999827, 14.5683746, 0, 0, -1, 0.939701438, -0.342025429, 0, -0.342025429, -0.939701438, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  280. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  281. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.93969202, -0.342022002, 0, -0.342022002, -0.93969202, -1, 0, 0),C1 = CFrame.new(1.14155865, -0.239999771, -8.34465027e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  282. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.769999981, 0.300000012, 0.300000012),CFrame = CFrame.new(-1.11999583, 1.43999827, 14.9883919, 0, 0, -1, 0.965939522, 0.258806556, 0, 0.258806556, -0.965939522, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  283. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  284. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.965929866, 0.258803964, 0, 0.258803964, -0.965929866, -1, 0, 0),C1 = CFrame.new(0.721545219, -0.239999771, 4.17232513e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  285. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.5, 0.5, 0.5),CFrame = CFrame.new(-1.11999702, 1.68000019, 14.2233753, 0, 0, -1, 0, 1.00001001, 0, 1.00001001, 0, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  286. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  287. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),C1 = CFrame.new(1.48655415, -2.38418579e-07, 3.09944153e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  288. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.5, 0.5, 0.5),CFrame = CFrame.new(-1.11999691, 1.68000019, 17.1934071, 0, 0, -1, 0, 1.00001001, 0, 1.00001001, 0, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  289. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  290. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),C1 = CFrame.new(-1.48344707, -2.38418579e-07, 2.98023224e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  291. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.699999988, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.11999691, 1.68000019, 17.4634094, 0, 0, -1, 0, 1.00001001, 0, 1.00001001, 0, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  292. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  293. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),C1 = CFrame.new(-1.75344753, -2.38418579e-07, 2.98023224e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  294. Nail = New("Part",HeavenGlacier,"Nail",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.12, 0.486254811, 16.2027893, 0, 0, -1, -0.0871568397, -0.996204615, 0, -0.996204615, 0.0871568397, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  295. Mesh = New("SpecialMesh",Nail,"Mesh",{Scale = Vector3.new(0.100000001, 0.5, 0.100000001),MeshId = "rbxassetid://1033714",MeshType = Enum.MeshType.FileMesh,})
  296. mot = New("Motor",Nail,"mot",{Part0 = Nail,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.087155968, -0.996194661, 0, -0.996194661, 0.087155968, -1, 0, 0),C1 = CFrame.new(-0.49283886, -1.19373369, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  297. Nail = New("Part",HeavenGlacier,"Nail",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.520000041, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.10650289, 15.3668566, 0, 0, -1, -0.965935767, 0.258820623, 0, 0.258820623, 0.965935767, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  298. Mesh = New("SpecialMesh",Nail,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  299. mot = New("Motor",Nail,"mot",{Part0 = Nail,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.965926111, 0.25881803, 0, 0.25881803, 0.965926111, -1, 0, 0),C1 = CFrame.new(0.343084335, -0.573491812, 2.98023224e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  300. Nail = New("Part",HeavenGlacier,"Nail",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.12, 0.676544547, 15.4816008, 0, 0, -1, -0.258821577, -0.965935528, 0, -0.965935528, 0.258821577, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  301. Mesh = New("SpecialMesh",Nail,"Mesh",{Scale = Vector3.new(0.100000001, 0.5, 0.100000001),MeshId = "rbxassetid://1033714",MeshType = Enum.MeshType.FileMesh,})
  302. mot = New("Motor",Nail,"mot",{Part0 = Nail,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.258818984, -0.965925872, 0, -0.965925872, 0.258818984, -1, 0, 0),C1 = CFrame.new(0.228342056, -1.00344586, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  303. Nail = New("Part",HeavenGlacier,"Nail",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.5, 0.200000003, 0.5),CFrame = CFrame.new(-1.11999702, 1.33832717, 15.3047409, 0, 0, -1, 0.258821577, 0.965935528, 0, 0.965935528, -0.258821577, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  304. Mesh = New("SpecialMesh",Nail,"Mesh",{Scale = Vector3.new(1, 0.5, 1),MeshType = Enum.MeshType.Sphere,})
  305. mot = New("Motor",Nail,"mot",{Part0 = Nail,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, -1, 0, 0),C1 = CFrame.new(0.405200005, -0.341669798, 2.98023224e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  306. Nail = New("Part",HeavenGlacier,"Nail",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.520000041, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.21145892, 15.8421755, 0, 0, -1, -0.819160044, -0.57358259, 0, -0.57358259, 0.819160044, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  307. Mesh = New("SpecialMesh",Nail,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  308. mot = New("Motor",Nail,"mot",{Part0 = Nail,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.819151819, -0.573576868, 0, -0.573576868, 0.819151819, -1, 0, 0),C1 = CFrame.new(-0.132229805, -0.468536854, 2.98023224e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  309. Nail = New("Part",HeavenGlacier,"Nail",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.5, 0.200000003, 0.5),CFrame = CFrame.new(-1.11999702, 1.40805781, 15.9798346, 0, 0, -1, -0.57358259, 0.819160044, 0, 0.819160044, 0.57358259, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  310. Mesh = New("SpecialMesh",Nail,"Mesh",{Scale = Vector3.new(1, 0.5, 1),MeshType = Enum.MeshType.Sphere,})
  311. mot = New("Motor",Nail,"mot",{Part0 = Nail,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.573576868, 0.819151819, 0, 0.819151819, 0.573576868, -1, 0, 0),C1 = CFrame.new(-0.269886971, -0.271939874, 2.98023224e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  312. Nail = New("Part",HeavenGlacier,"Nail",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.12, 0.847188234, 15.586565, 0, 0, -1, 0.57358259, -0.819160044, 0, -0.819160044, -0.57358259, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  313. Mesh = New("SpecialMesh",Nail,"Mesh",{Scale = Vector3.new(0.100000001, 0.5, 0.100000001),MeshId = "rbxassetid://1033714",MeshType = Enum.MeshType.FileMesh,})
  314. mot = New("Motor",Nail,"mot",{Part0 = Nail,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.573576868, -0.819151819, 0, -0.819151819, -0.573576868, -1, 0, 0),C1 = CFrame.new(0.123378754, -0.832803845, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  315. Nail = New("Part",HeavenGlacier,"Nail",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.5, 0.200000003, 0.5),CFrame = CFrame.new(-1.11999702, 1.16869247, 16.143528, 0, 0, -1, 0.0871568397, 0.996204615, 0, 0.996204615, -0.0871568397, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  316. Mesh = New("SpecialMesh",Nail,"Mesh",{Scale = Vector3.new(1, 0.5, 1),MeshType = Enum.MeshType.Sphere,})
  317. mot = New("Motor",Nail,"mot",{Part0 = Nail,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.087155968, 0.996194661, 0, 0.996194661, -0.087155968, -1, 0, 0),C1 = CFrame.new(-0.433579445, -0.511302829, 2.98023224e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  318. Nail = New("Part",HeavenGlacier,"Nail",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.520000041, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.11999702, 0.929604113, 16.1644516, 0, 0, -1, -0.996204615, 0.0871568397, 0, 0.0871568397, 0.996204615, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  319. Mesh = New("SpecialMesh",Nail,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  320. mot = New("Motor",Nail,"mot",{Part0 = Nail,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.996194661, 0.087155968, 0, 0.087155968, 0.996194661, -1, 0, 0),C1 = CFrame.new(-0.454503059, -0.750388801, 2.98023224e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  321. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.300000012, 0.5, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.68000019, 17.9134235, 0, 0, -1, 0, 1.00001001, 0, 1.00001001, 0, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  322. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  323. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),C1 = CFrame.new(-2.20345592, -2.38418579e-07, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  324. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.300000012, 0.5, 0.200000003),CFrame = CFrame.new(-1.12, 1.19999647, 17.8929672, 0, 0, -1, -0.0871568099, 0.996204257, 0, 0.996204257, 0.0871568099, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  325. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  326. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.0871559381, 0.996194303, 0, 0.996194303, 0.0871559381, -1, 0, 0),C1 = CFrame.new(-2.18299961, -0.479999185, -1.1920929e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  327. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.300000012, 0.5, 0.200000003),CFrame = CFrame.new(-1.12, 2.16000557, 17.8929672, 0, 0, -1, 0.0871568397, 0.996204615, 0, 0.996204615, -0.0871568397, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  328. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  329. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.087155968, 0.996194661, 0, 0.996194661, -0.087155968, -1, 0, 0),C1 = CFrame.new(-2.18299961, 0.480000257, -1.1920929e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  330. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.349999994, 0.200000003),CFrame = CFrame.new(-1.12, 2.50472331, 17.7664261, 0, 0, -1, 0.0871568397, 0.996204615, 0, 0.996204615, -0.0871568397, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  331. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  332. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.087155968, 0.996194661, 0, 0.996194661, -0.087155968, -1, 0, 0),C1 = CFrame.new(-2.05646038, 0.824714661, -1.1920929e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  333. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.349999994, 0.200000003),CFrame = CFrame.new(-1.12, 2.50500894, 17.9659672, 0, 0, -1, 0.0871568397, 0.996204615, 0, 0.996204615, -0.0871568397, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  334. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  335. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.087155968, 0.996194661, 0, 0.996194661, -0.087155968, -1, 0, 0),C1 = CFrame.new(-2.25599957, 0.825000286, -1.1920929e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  336. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.349999994, 0.200000003),CFrame = CFrame.new(-1.12, 0.944993258, 17.8759651, 0, 0, -1, -0.0871568099, 0.996204257, 0, 0.996204257, 0.0871568099, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  337. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  338. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.0871559381, 0.996194303, 0, 0.996194303, 0.0871559381, -1, 0, 0),C1 = CFrame.new(-2.16599941, -0.734999835, -1.1920929e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  339. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.349999994, 0.200000003),CFrame = CFrame.new(-1.12, 0.734991312, 17.9959698, 0, 0, -1, -0.7071141, -0.707113743, 0, -0.7071141, 0.707113743, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  340. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  341. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.707107008, -0.707107008, 0, -0.70710665, 0.70710665, -1, 0, 0),C1 = CFrame.new(-2.28600216, -0.944999635, -1.1920929e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  342. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.349999994, 0.200000003),CFrame = CFrame.new(-1.12, 0.524989367, 18.0259705, 0, 0, -1, 0.573579371, -0.819154978, 0, -0.819154978, -0.573579371, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  343. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  344. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.573573649, -0.819146752, 0, -0.819146752, -0.573573649, -1, 0, 0),C1 = CFrame.new(-2.31600285, -1.15499949, -1.1920929e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  345. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.349999994, 0.200000003),CFrame = CFrame.new(-1.12, 0.734991133, 17.7460175, 0, 0, 1, -0.707113922, -0.707113922, 0, 0.707113922, -0.707113922, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  346. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  347. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.707106829, 0.707106829, 0, -0.707106829, -0.707106829, 1, 0, 0),C1 = CFrame.new(-2.03605175, -0.944999814, -1.1920929e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  348. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.349999994, 0.200000003),CFrame = CFrame.new(-1.12000084, 0.524989009, 17.7160149, 0, 0, 1, 0.57358259, -0.819160044, 0, 0.819160044, 0.57358259, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  349. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  350. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.573576868, 0.819151819, 0, -0.819151819, 0.573576868, 1, 0, 0),C1 = CFrame.new(-2.00605106, -1.15499985, -9.53674316e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  351. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.12, 0.404987812, 17.870966, 0, 0, 1, -1.00000954, -3.65082116e-07, 0, 3.65082116e-07, -1.00000954, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  352. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  353. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.999999523, 3.65078449e-07, 0, -3.65078449e-07, -0.999999523, 1, 0, 0),C1 = CFrame.new(-2.16100025, -1.27499986, -1.1920929e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  354. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.349999994, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.12, 0.599989653, 17.870966, 0, 0, 1, -1.00000954, -3.65082116e-07, 0, 3.65082116e-07, -1.00000954, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  355. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  356. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.999999523, 3.65078449e-07, 0, -3.65078449e-07, -0.999999523, 1, 0, 0),C1 = CFrame.new(-2.16100025, -1.07999992, -1.1920929e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  357. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.289999992, 0.200000003),CFrame = CFrame.new(-1.12, 0.614989877, 17.9159679, 0, 0, 1, -1.00000954, -3.65082116e-07, 0, 3.65082116e-07, -1.00000954, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  358. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  359. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.999999523, 3.65078449e-07, 0, -3.65078449e-07, -0.999999523, 1, 0, 0),C1 = CFrame.new(-2.20600033, -1.06499994, -1.1920929e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  360. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.379999995, 0.200000003),CFrame = CFrame.new(-1.12, 0.614989877, 17.870966, 0, 0, 1, -1.00000954, -3.65082116e-07, 0, 3.65082116e-07, -1.00000954, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  361. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  362. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.999999523, 3.65078449e-07, 0, -3.65078449e-07, -0.999999523, 1, 0, 0),C1 = CFrame.new(-2.16100025, -1.06499994, -1.1920929e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  363. Nail = New("Part",HeavenGlacier,"Nail",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.5, 0.200000003, 0.5),CFrame = CFrame.new(-1.11999702, 2.17615199, 18.1842308, 0, 0, -1, -0.965935528, 0.258821577, 0, 0.258821577, 0.965935528, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  364. Mesh = New("SpecialMesh",Nail,"Mesh",{Scale = Vector3.new(1, 0.5, 1),MeshType = Enum.MeshType.Sphere,})
  365. mot = New("Motor",Nail,"mot",{Part0 = Nail,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.965925872, 0.258818984, 0, 0.258818984, 0.965925872, -1, 0, 0),C1 = CFrame.new(-2.47426128, 0.496146679, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  366. Nail = New("Part",HeavenGlacier,"Nail",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.11999989, 1.99928749, 17.5224457, 0, 0, -1, 0.965935528, -0.258821577, 0, -0.258821577, -0.965935528, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  367. Mesh = New("SpecialMesh",Nail,"Mesh",{Scale = Vector3.new(0.100000001, 0.5, 0.100000001),MeshId = "rbxassetid://1033714",MeshType = Enum.MeshType.FileMesh,})
  368. mot = New("Motor",Nail,"mot",{Part0 = Nail,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.965925872, -0.258818984, 0, -0.258818984, -0.965925872, -1, 0, 0),C1 = CFrame.new(-1.81248379, 0.319283843, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  369. Nail = New("Part",HeavenGlacier,"Nail",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.520000041, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.11999702, 2.11403465, 17.9524021, 0, 0, -1, -0.258821577, -0.965935528, 0, -0.965935528, 0.258821577, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  370. Mesh = New("SpecialMesh",Nail,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  371. mot = New("Motor",Nail,"mot",{Part0 = Nail,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.258818984, -0.965925872, 0, -0.965925872, 0.258818984, -1, 0, 0),C1 = CFrame.new(-2.2424345, 0.434029818, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  372. Nail = New("Part",HeavenGlacier,"Nail",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.5, 0.200000003, 0.5),CFrame = CFrame.new(-1.11999702, 1.06884933, 18.1842308, 0, 0, -1, -0.965935528, -0.258821577, 0, -0.258821577, 0.965935528, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  373. Mesh = New("SpecialMesh",Nail,"Mesh",{Scale = Vector3.new(1, 0.5, 1),MeshType = Enum.MeshType.Sphere,})
  374. mot = New("Motor",Nail,"mot",{Part0 = Nail,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.965925872, -0.258818984, 0, -0.258818984, 0.965925872, -1, 0, 0),C1 = CFrame.new(-2.47426128, -0.61114502, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  375. Nail = New("Part",HeavenGlacier,"Nail",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.11999989, 1.24657297, 17.5226784, 0, 0, -1, 0.965935528, 0.258821577, 0, 0.258821577, -0.965935528, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  376. Mesh = New("SpecialMesh",Nail,"Mesh",{Scale = Vector3.new(0.100000001, 0.5, 0.100000001),MeshId = "rbxassetid://1033714",MeshType = Enum.MeshType.FileMesh,})
  377. mot = New("Motor",Nail,"mot",{Part0 = Nail,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.965925872, 0.258818984, 0, 0.258818984, -0.965925872, -1, 0, 0),C1 = CFrame.new(-1.81271458, -0.433423162, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  378. Nail = New("Part",HeavenGlacier,"Nail",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.520000041, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.13096881, 17.952404, 0, 0, -1, 0.258821577, -0.965935528, 0, -0.965935528, -0.258821577, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  379. Mesh = New("SpecialMesh",Nail,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  380. mot = New("Motor",Nail,"mot",{Part0 = Nail,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.258818984, -0.965925872, 0, -0.965925872, -0.258818984, -1, 0, 0),C1 = CFrame.new(-2.24243641, -0.549026132, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  381. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.319999993, 0.200000003),CFrame = CFrame.new(-1.11999989, 2.58200979, 17.6579647, 0, 0, -1, 0.766056538, -0.642788768, 0, -0.642788768, -0.766056538, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  382. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  383. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.766048849, -0.642782331, 0, -0.642782331, -0.766048849, -1, 0, 0),C1 = CFrame.new(-1.94800091, 0.902000189, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  384. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.319999993, 0.200000003),CFrame = CFrame.new(-1.11999989, 2.37200785, 17.5979633, 0, 0, -1, -0.342017293, -0.939703941, 0, -0.939703941, 0.342017293, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  385. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  386. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.342013866, -0.939694524, 0, -0.939694524, 0.342013866, -1, 0, 0),C1 = CFrame.new(-1.88799953, 0.692000389, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  387. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.319999993, 0.200000003),CFrame = CFrame.new(-1.11999989, 2.28200698, 17.537962, 0, 0, -1, 0.939699531, 0.342030674, 0, 0.342030674, -0.939699531, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  388. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  389. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.939690113, 0.342027247, 0, 0.342027247, -0.939690113, -1, 0, 0),C1 = CFrame.new(-1.82799816, 0.602000475, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  390. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.319999993, 0.200000003),CFrame = CFrame.new(-1.11999989, 2.46200848, 17.3579559, 0, 0, -1, 0.422614902, 0.906320572, 0, 0.906320572, -0.422614902, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  391. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  392. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.42261067, 0.906311512, 0, 0.906311512, -0.42261067, -1, 0, 0),C1 = CFrame.new(-1.64799404, 0.782000303, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  393. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.319999993, 0.200000003),CFrame = CFrame.new(-1.119995, 2.99710345, 18.1327572, 0, 0, 1, -0.939699173, -0.34203133, 0, 0.34203133, -0.939699173, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  394. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  395. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.939689755, 0.342027903, 0, -0.342027903, -0.939689755, 1, 0, 0),C1 = CFrame.new(-2.42278767, 1.3170898, 4.88758087e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  396. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.319999993, 0.200000003),CFrame = CFrame.new(-1.11999905, 3.05014777, 17.9208927, 0, 0, 1, -0.642792404, 0.766053557, 0, -0.766053557, -0.642792404, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  397. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  398. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.642785966, -0.766045868, 0, 0.766045868, -0.642785966, 1, 0, 0),C1 = CFrame.new(-2.2109251, 1.37013364, 8.34465027e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  399. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.319999993, 0.200000003),CFrame = CFrame.new(-1.11999798, 3.04318476, 17.8129444, 0, 0, 1, -0.173649728, -0.984817684, 0, 0.984817684, -0.173649728, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  400. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  401. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.173647985, 0.984807849, 0, -0.984807849, -0.173647985, 1, 0, 0),C1 = CFrame.new(-2.10297871, 1.36317062, 1.90734863e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  402. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.319999993, 0.200000003),CFrame = CFrame.new(-1.12000203, 2.79729223, 17.87883, 0, 0, 1, 0.573580801, -0.819161355, 0, 0.819161355, 0.573580801, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  403. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),MeshType = Enum.MeshType.Brick,})
  404. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.573575079, 0.81915313, 0, -0.81915313, 0.573575079, 1, 0, 0),C1 = CFrame.new(-2.16886425, 1.11728072, -2.14576721e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  405. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.300000012, 0.5, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.68000019, 18.153429, 0, 0, -1, -0.866034985, 0.500003278, 0, 0.500003278, 0.866034985, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  406. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  407. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.866026342, 0.499998271, 0, 0.499998271, 0.866026342, -1, 0, 0),C1 = CFrame.new(-2.44345951, -2.38418579e-07, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  408. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.300000012, 1.19000006, 0.200000003),CFrame = CFrame.new(-1.11999702, 2.24878454, 18.6259346, 0, 0, -1, -0.500005484, 0.866033733, 0, 0.866033733, 0.500005484, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  409. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  410. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.500000477, 0.86602509, 0, 0.86602509, 0.500000477, -1, 0, 0),C1 = CFrame.new(-2.91596127, 0.568778276, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  411. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.300000012, 1.94000006, 0.200000003),CFrame = CFrame.new(-1.11999702, 2.33030438, 19.6258087, 0, 0, -1, -0.906307518, -0.422619104, 0, -0.422619104, 0.906307518, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  412. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  413. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.906298459, -0.422614872, 0, -0.422614872, 0.906298459, -1, 0, 0),C1 = CFrame.new(-3.91582584, 0.650297403, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  414. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.300000012, 1.94000006, 0.200000003),CFrame = CFrame.new(-1.12, 1.85000229, 21.4220028, 0, 0, -1, -0.996205151, -0.0871572793, 0, -0.0871572793, 0.996205151, 3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  415. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  416. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.996195197, -0.0871564075, 0, -0.0871564075, 0.996195197, -1, 0, 0),C1 = CFrame.new(-5.71200085, 0.170000196, -2.38418579e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  417. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.200000003, 1.85000002, 0.289999992),CFrame = CFrame.new(-1.11999905, 1.76500142, 23.2970219, 1, 8.74377548e-08, 2.24637279e-05, 2.24639534e-05, -4.36849703e-08, -1.00001001, -8.74376553e-08, 1.00001001, -4.3686935e-08),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  418. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.201000005, 1, 1),MeshType = Enum.MeshType.Wedge,})
  419. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 1, 2.24637279e-05, -8.74367743e-08, 8.74377548e-08, -4.36845333e-08, 1, 2.24637279e-05, -1, -4.3686498e-08),C1 = CFrame.new(-7.58700085, 0.0850001574, 5.96046448e-07, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  420. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.300000012, 0.5, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.57127941, 18.153429, 0, 0, 1, 0.866035342, -0.500002861, 0, 0.500002801, 0.866035402, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  421. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  422. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.8660267, 0.499997824, 0, -0.499997854, 0.866026759, 1, 0, 0),C1 = CFrame.new(-2.44345951, -0.108719945, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  423. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.300000012, 1.19000006, 0.200000003),CFrame = CFrame.new(-1.119995, 1.00249612, 18.6259346, 0, 0, 1, 0.50000596, -0.866033494, 0, 0.866033494, 0.50000596, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  424. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  425. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.500000954, 0.866024852, 0, -0.866024852, 0.500000954, 1, 0, 0),C1 = CFrame.new(-2.91596127, -0.677497506, 4.88758087e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  426. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.300000012, 1.94000006, 0.200000003),CFrame = CFrame.new(-1.11999595, 0.920973361, 19.6258087, 0, 0, 1, 0.906316638, 0.422623008, 0, -0.422623008, 0.906316638, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  427. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  428. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.906307578, -0.422618777, 0, 0.422618777, 0.906307578, 1, 0, 0),C1 = CFrame.new(-3.91582584, -0.759019434, 3.93390656e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  429. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.300000012, 1.94000006, 0.200000003),CFrame = CFrame.new(-1.11998904, 1.40127373, 21.4220028, 0, 0, 1, 0.996204615, 0.0871568397, 0, -0.0871568397, 0.996204615, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  430. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  431. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, 0.996194661, -0.087155968, 0, 0.087155968, 0.996194661, 1, 0, 0),C1 = CFrame.new(-5.71200085, -0.278723955, 1.07288361e-05, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  432. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.200000003, 1.85000002, 0.289999992),CFrame = CFrame.new(-1.11998999, 1.48627853, 23.2970219, -1, 0, -2.40000008e-05, -2.4000241e-05, 0, 1.00001001, 3.55271368e-15, 1.00001001, 0),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  433. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.201000005, 1, 1),MeshType = Enum.MeshType.Wedge,})
  434. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1, -2.40000008e-05, 0, 0, 0, 1, -2.40000008e-05, 1, 0),C1 = CFrame.new(-7.58700085, -0.193719983, 9.65595245e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  435. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.300000012, 0.5, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.57127941, 18.4834328, 0, 0, 1, -0.0871673152, -0.996205151, 0, 0.996205866, -0.0871668383, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  436. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  437. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.0871664435, 0.996195912, 0, -0.996195197, -0.0871659666, 1, 0, 0),C1 = CFrame.new(-2.77345943, -0.108719945, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  438. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.300000012, 0.5, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.87128222, 18.6634331, 0, 0, 1, -0.0871673152, -0.996205151, 0, 0.996205866, -0.0871668383, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  439. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  440. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.0871664435, 0.996195912, 0, -0.996195197, -0.0871659666, 1, 0, 0),C1 = CFrame.new(-2.95345974, 0.191279888, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  441. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.300000012, 0.5, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.45127809, 18.6634331, 0, 0, 1, -0.0871673152, -0.996205151, 0, 0.996205866, -0.0871668383, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  442. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  443. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.0871664435, 0.996195912, 0, -0.996195197, -0.0871659666, 1, 0, 0),C1 = CFrame.new(-2.95345974, -0.228720069, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  444. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.300000012, 1.81999993, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.74877012, 18.8409691, 0, 0, 1, -0.0871673152, -0.996205151, 0, 0.996205866, -0.0871668383, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  445. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  446. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.0871664435, 0.996195912, 0, -0.996195197, -0.0871659666, 1, 0, 0),C1 = CFrame.new(-3.13099194, 0.0687689781, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  447. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.300000012, 1.99999988, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.56842589, 19.0588188, 0, 0, 1, -0.0871673152, -0.996205151, 0, 0.996205866, -0.0871668383, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  448. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  449. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.0871664435, 0.996195912, 0, -0.996195197, -0.0871659666, 1, 0, 0),C1 = CFrame.new(-3.34883976, -0.111573458, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  450. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.720000029, 1.51999986, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.61661708, 19.4222374, 0, 0, 1, -0.0871673152, -0.996205151, 0, 0.996205866, -0.0871668383, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  451. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  452. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.0871664435, 0.996195912, 0, -0.996195197, -0.0871659666, 1, 0, 0),C1 = CFrame.new(-3.71225452, -0.0633827448, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  453. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.210000038, 1.7299999, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.53424311, 19.15905, 0, 0, 1, -0.0871673152, -0.996205151, 0, 0.996205866, -0.0871668383, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  454. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  455. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -0.0871664435, 0.996195912, 0, -0.996195197, -0.0871659666, 1, 0, 0),C1 = CFrame.new(-3.44907093, -0.145755887, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  456. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.210000038, 4.03999996, 0.200000003),CFrame = CFrame.new(-1.11999691, 1.59423304, 20.3140678, 0, 0, 1, -1.00001502, 8.93333527e-06, 0, -8.93333527e-06, -1.00001502, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  457. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  458. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -1.00000501, -8.93324614e-06, 0, 8.93324614e-06, -1.00000501, 1, 0, 0),C1 = CFrame.new(-4.60407734, -0.0857665539, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  459. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.210000038, 3.04999995, 0.200000003),CFrame = CFrame.new(-1.11999691, 1.71423852, 19.8190613, 0, 0, 1, -1.00001502, 8.93333527e-06, 0, -8.93333527e-06, -1.00001502, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  460. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  461. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -1.00000501, -8.93324614e-06, 0, 8.93324614e-06, -1.00000501, 1, 0, 0),C1 = CFrame.new(-4.10907459, 0.0342377424, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  462. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.50999999, 0.680000067, 0.200000003),CFrame = CFrame.new(-1.11999691, 1.86423922, 19.984066, 0, 0, 1, -1.00001502, 8.93333527e-06, 0, -8.93333527e-06, -1.00001502, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  463. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  464. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -1.00000501, -8.93324614e-06, 0, 8.93324614e-06, -1.00000501, 1, 0, 0),C1 = CFrame.new(-4.27407742, 0.184236884, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  465. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.329999983, 1.85000002, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.77423251, 20.5690727, 0, 0, 1, -1.00001502, 8.93333527e-06, 0, -8.93333527e-06, -1.00001502, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  466. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  467. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -1.00000501, -8.93324614e-06, 0, 8.93324614e-06, -1.00000501, 1, 0, 0),C1 = CFrame.new(-4.85908031, 0.0942311287, 2.74181366e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  468. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.329999983, 1.85000002, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.77423251, 20.5690727, 0, 0, 1, -1.00001502, 8.93333527e-06, 0, -8.93333527e-06, -1.00001502, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  469. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  470. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -1.00000501, -8.93324614e-06, 0, 8.93324614e-06, -1.00000501, 1, 0, 0),C1 = CFrame.new(-4.85908031, 0.0942311287, 2.74181366e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  471. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.779999971, 0.710000038, 0.200000003),CFrame = CFrame.new(-1.11999691, 1.54923427, 19.9990616, 0, 0, 1, -1.00001502, 8.93333527e-06, 0, -8.93333527e-06, -1.00001502, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  472. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  473. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -1.00000501, -8.93324614e-06, 0, 8.93324614e-06, -1.00000501, 1, 0, 0),C1 = CFrame.new(-4.2890749, -0.130764842, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  474. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.239999995, 1.19000006, 0.200000003),CFrame = CFrame.new(-1.11999691, 1.48923123, 20.2390652, 0, 0, 1, -1.00001502, 8.93333527e-06, 0, -8.93333527e-06, -1.00001502, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  475. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  476. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -1.00000501, -8.93324614e-06, 0, 8.93324614e-06, -1.00000501, 1, 0, 0),C1 = CFrame.new(-4.52907467, -0.190767288, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  477. Part = New("Part",HeavenGlacier,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.98999995, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.11999702, 1.44423497, 19.7440567, 0, 0, 1, -1.00001502, 8.93333527e-06, 0, -8.93333527e-06, -1.00001502, -3.55271368e-15),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  478. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  479. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -1.00000501, -8.93324614e-06, 0, 8.93324614e-06, -1.00000501, 1, 0, 0),C1 = CFrame.new(-4.03407192, -0.235763073, 2.86102295e-06, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  480. SwordHitox = New("Part",HeavenGlacier,"SwordHitox",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Transparency = 1,Transparency = 1,Size = Vector3.new(2.6099999, 5.99000025, 0.379999995),CFrame = CFrame.new(-1.08999705, 1.62422431, 21.2290821, 0, 0, 1, -1.00000501, 8.93324614e-06, 0, -8.93324614e-06, -1.00000501, 0),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  481. Mesh = New("SpecialMesh",SwordHitox,"Mesh",{Scale = Vector3.new(1, 1, 0.201000005),MeshType = Enum.MeshType.Brick,})
  482. mot = New("Motor",SwordHitox,"mot",{Part0 = SwordHitox,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0, -1.00000501, -8.93324614e-06, 0, 8.93324614e-06, -1.00000501, 1, 0, 0),C1 = CFrame.new(-5.51908207, -0.0557755232, 0.0300027132, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08),})
  483.  
  484. HeavenGun = New("Model",Character,"HeavenGun",{})
  485. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.00999999, 1, 1.00999999),CFrame = CFrame.new(1.02016187, 3.37697101, 16.9195328, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  486. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  487. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150009155, 5.14984131e-05, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  488. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.00999999, 0.200000003, 1.00999999),CFrame = CFrame.new(0.0970092416, 3.59309435, 17.4574184, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  489. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  490. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, -0.940033913, 5.14984131e-05, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  491. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.200000003, 1, 1.00999999),CFrame = CFrame.new(0.449567795, 3.33619952, 17.0510387, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  492. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  493. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(0.230046272, -0.390011787, 5.24520874e-05, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  494. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.200000003, 1, 1.00999999),CFrame = CFrame.new(0.695770264, 3.65759349, 17.34445, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  495. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  496. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(-0.269953728, -0.390011787, 5.24520874e-05, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  497. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.00999999, 1, 0.200000003),CFrame = CFrame.new(0.604997635, 3.32864451, 17.3208332, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  498. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  499. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, -0.390011787, 0.210059166, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  500. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.00999999, 1, 0.200000003),CFrame = CFrame.new(0.514616966, 3.6616385, 17.0319214, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  501. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  502. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, -0.390012741, -0.239958763, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  503. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.00999999, 1, 1.00999999),CFrame = CFrame.new(1.12861705, 2.97738028, 17.2662277, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  504. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  505. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.57763672e-05, 0.150008202, 0.540071487, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  506. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.01999998, 1, 0.810000002),CFrame = CFrame.new(1.12861705, 2.97738028, 17.2662277, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  507. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  508. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.57763672e-05, 0.150008202, 0.540071487, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  509. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.01999998, 1, 0.670000017),CFrame = CFrame.new(1.08041489, 3.15497589, 17.1121407, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  510. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  511. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150009155, 0.30006218, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  512. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.01999998, 1, 0.670000017),CFrame = CFrame.new(1.07438946, 3.177176, 17.0928783, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  513. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  514. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150009155, 0.270060539, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  515. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.01999998, 1, 0.670000017),CFrame = CFrame.new(1.06233823, 3.22157454, 17.0543594, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  516. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  517. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150008202, 0.210059166, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  518. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.01999998, 1, 0.670000017),CFrame = CFrame.new(1.06836402, 3.19937587, 17.0736179, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  519. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  520. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150009155, 0.240058899, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  521. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.01999998, 1, 0.670000017),CFrame = CFrame.new(1.06233823, 3.22157454, 17.0543594, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  522. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  523. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150008202, 0.210059166, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  524. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.01999998, 1, 0.670000017),CFrame = CFrame.new(1.05631304, 3.24377584, 17.0350971, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  525. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  526. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.57763672e-05, 0.150008202, 0.180056572, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  527. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.01999998, 1, 0.670000017),CFrame = CFrame.new(1.0502882, 3.26597404, 17.0158367, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  528. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  529. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150009155, 0.150055885, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  530. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.01999998, 1, 0.670000017),CFrame = CFrame.new(1.04426301, 3.28817344, 16.9965744, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  531. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  532. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150009155, 0.120055199, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  533. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.01999998, 1, 0.670000017),CFrame = CFrame.new(1.0382365, 3.31037426, 16.977314, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  534. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  535. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150008202, 0.0900526047, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  536. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.01999998, 1, 0.670000017),CFrame = CFrame.new(1.0322113, 3.33257341, 16.9580536, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  537. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  538. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150008202, 0.060051918, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  539. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.01999998, 1, 0.670000017),CFrame = CFrame.new(1.0261867, 3.35477304, 16.9387913, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  540. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  541. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150009155, 0.0300502777, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  542. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.01999998, 1, 0.670000017),CFrame = CFrame.new(1.02016091, 3.37697172, 16.9195328, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  543. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  544. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150008202, 5.05447388e-05, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  545. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Fossil"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.01900005, 1, 0.670000017),CFrame = CFrame.new(1.00810945, 3.42137384, 16.8810081, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.623529, 0.631373, 0.67451),})
  546. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  547. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150008202, -0.0599555969, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  548. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Pearl"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.02100003, 1, 0.469999999),CFrame = CFrame.new(1.00810945, 3.42137384, 16.8810081, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.905882, 0.905882, 0.92549),})
  549. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  550. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150008202, -0.0599555969, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  551. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Lily white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.02100003, 1, 0.270000011),CFrame = CFrame.new(1.12861681, 2.97738171, 17.2662258, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.929412, 0.917647, 0.917647),})
  552. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  553. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150009155, 0.540068626, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  554. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.0201, 0.200000003, 0.670000017),CFrame = CFrame.new(1.05330038, 3.2548759, 17.025465, -0.492404997, 0.846895695, 0.200836226, -0.642787874, -0.19827053, -0.739956677, -0.586822987, -0.493453324, 0.642003596),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  555. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  556. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786503, -0.586830497, 0.846882939, -0.198257551, -0.4934403, 0.200833201, -0.739945531, 0.64198643),C1 = CFrame.new(4.67300415e-05, 0.150009155, 0.165054321, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  557. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.0201, 0.200000003, 0.370000035),CFrame = CFrame.new(1.26184952, 2.81524038, 17.3320332, -0.492404997, 0.633014262, 0.597377896, -0.642787933, 0.198272005, -0.73995626, -0.586822927, -0.748345375, 0.309263796),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  558. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  559. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786562, -0.586830497, 0.633004725, 0.198277667, -0.748325527, 0.597368956, -0.739940166, 0.309255481),C1 = CFrame.new(4.67300415e-05, 0.262513161, 0.729045868, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  560. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.0201, 0.200000003, 0.370000035),CFrame = CFrame.new(1.05858636, 2.86282802, 17.4504681, -0.492404968, 0.83385098, -0.249519691, -0.642787874, -0.541686296, -0.541685343, -0.586822987, -0.1063402, 0.802718282),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  561. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  562. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786562, -0.586830556, 0.833838463, -0.541669548, -0.106337503, -0.249515966, -0.541682124, 0.802696943),C1 = CFrame.new(4.57763672e-05, 0.0225028992, 0.729045868, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  563. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.02199996, 0.200000003, 0.349999994),CFrame = CFrame.new(0.994051576, 3.473171, 16.8360672, -0.492404997, 0.200833276, -0.846896291, -0.642787933, -0.739955962, 0.198273063, -0.586822927, 0.642005384, 0.493451029),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  564. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.200000003, 1),MeshType = Enum.MeshType.Brick,})
  565. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786562, -0.586830437, 0.200830266, -0.739944816, 0.641988218, -0.846883595, 0.198260143, 0.493438065),C1 = CFrame.new(4.67300415e-05, 0.150009155, -0.129956245, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  566. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.02199996, 0.200000003, 0.200000003),CFrame = CFrame.new(1.00911319, 3.41767263, 16.8842201, -0.49240455, -0.846897066, -0.200831607, -0.642787814, 0.198274076, 0.739955783, -0.586823344, 0.493449599, -0.64200604),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  567. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.200000003, 1),MeshType = Enum.MeshType.Brick,})
  568. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397219, -0.642786503, -0.586830974, -0.846884251, 0.198261127, 0.493436575, -0.200828597, 0.739944696, -0.641988933),C1 = CFrame.new(4.67300415e-05, 0.150007248, -0.0549535751, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  569. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.02199996, 0.200000003, 0.349999994),CFrame = CFrame.new(1.02417779, 3.36217427, 16.9323711, -0.492404997, 0.200833276, -0.846896291, -0.642787933, -0.739955962, 0.198273063, -0.586822927, 0.642005384, 0.493451029),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  570. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.200000003, 1),MeshType = Enum.MeshType.Brick,})
  571. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786562, -0.586830437, 0.200830266, -0.739944816, 0.641988218, -0.846883595, 0.198260143, 0.493438065),C1 = CFrame.new(4.57763672e-05, 0.150008202, 0.0200490952, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  572. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00899994, 0.200000003, 0.909999967),CFrame = CFrame.new(0.560680509, 3.08671093, 17.6230259, -0.492404908, 0.321241975, 0.808932066, -0.642787874, 0.492415309, -0.586834133, -0.586822987, -0.808931708, -0.035977155),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  573. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  574. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397577, -0.642786562, -0.586830556, 0.321237147, 0.49241358, -0.808910191, 0.808919907, -0.586817145, -0.0359763242),C1 = CFrame.new(4.67300415e-05, -0.528688431, 0.574173927, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  575. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.005, 0.300000012, 0.910000026),CFrame = CFrame.new(0.560680509, 3.08671093, 17.6230259, -0.492404908, 0.321241975, 0.808932066, -0.642787874, 0.492415309, -0.586834133, -0.586822987, -0.808931708, -0.035977155),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  576. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.700999975, 1, 1),MeshType = Enum.MeshType.Brick,})
  577. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397577, -0.642786562, -0.586830556, 0.321237147, 0.49241358, -0.808910191, 0.808919907, -0.586817145, -0.0359763242),C1 = CFrame.new(4.67300415e-05, -0.528688431, 0.574173927, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  578. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.01499999, 0.310000002, 0.949999988),CFrame = CFrame.new(0.560680509, 3.08671093, 17.6230259, -0.492404908, 0.321241975, 0.808932066, -0.642787874, 0.492415309, -0.586834133, -0.586822987, -0.808931708, -0.035977155),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  579. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.300999999, 1, 1),MeshType = Enum.MeshType.Brick,})
  580. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397577, -0.642786562, -0.586830556, 0.321237147, 0.49241358, -0.808910191, 0.808919907, -0.586817145, -0.0359763242),C1 = CFrame.new(4.67300415e-05, -0.528688431, 0.574173927, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  581. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.00999999, 0.439999998, 0.470000029),CFrame = CFrame.new(-0.0132607818, 3.4733851, 17.6810722, -0.492405623, 0.852424741, -0.17589505, -0.642788112, -0.492414594, -0.586834669, -0.586822331, -0.1758973, 0.790395916),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  582. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  583. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492398262, -0.642786741, -0.586829841, 0.852411866, -0.492398113, -0.17589274, -0.175892398, -0.58683002, 0.790374875),C1 = CFrame.new(4.67300415e-05, -1.12004185, 0.210062981, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  584. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.00999999, 0.200000003, 0.919999957),CFrame = CFrame.new(-0.362538099, 3.4660573, 17.9821777, -0.492401302, 0.597376823, -0.633018196, -0.642787278, -0.739956439, -0.198273852, -0.586826801, 0.309265792, 0.74834156),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  585. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  586. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492393941, -0.642785907, -0.586834371, 0.597367823, -0.739940286, 0.309257418, -0.633008659, -0.19827947, 0.748321712),C1 = CFrame.new(4.67300415e-05, -1.5629549, 0.338644028, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  587. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.00999999, 1.10000002, 0.200000003),CFrame = CFrame.new(-0.074714303, 3.139009, 18.0989037, -0.492401302, 0.597376823, -0.633018196, -0.642787278, -0.739956439, -0.198273852, -0.586826801, 0.309265792, 0.74834156),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  588. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  589. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492393941, -0.642785907, -0.586834371, 0.597367823, -0.739940286, 0.309257418, -0.633008659, -0.19827947, 0.748321712),C1 = CFrame.new(4.57763672e-05, -1.31196308, 0.713375092, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  590. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.00999999, 0.920000017, 0.680000007),CFrame = CFrame.new(0.244930029, 3.15568709, 17.8124237, -0.492412329, 0.597378433, -0.633019805, -0.642789245, -0.739965916, -0.198261499, -0.586815476, 0.309272051, 0.748356521),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  591. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  592. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492404968, -0.642787874, -0.586822987, 0.597369432, -0.739949763, 0.309263706, -0.633010268, -0.198267177, 0.748336673),C1 = CFrame.new(4.48226929e-05, -0.903215408, 0.581313133, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  593. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.00999999, 0.920000017, 0.439999998),CFrame = CFrame.new(-0.210867882, 3.01293015, 18.3512421, 0.492401391, 0.597364008, 0.633030057, 0.642783046, -0.739962637, 0.198264152, 0.586831272, 0.309275448, -0.748333991),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  594. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  595. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 0.49239403, 0.642781675, 0.586838782, 0.597355008, -0.739946485, 0.309267133, 0.63302052, 0.198269799, -0.748314142),C1 = CFrame.new(5.24520874e-05, -1.52678204, 0.941316605, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  596. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.00999999, 0.25999999, 0.919999957),CFrame = CFrame.new(-0.356513023, 3.44385886, 18.0014381, -0.492404908, 0.200829417, -0.846897304, -0.642786026, -0.739957035, 0.198274896, -0.586825013, 0.642005265, 0.493448764),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  597. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  598. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397577, -0.642784715, -0.586832583, 0.200826392, -0.739945889, 0.641988158, -0.846884549, 0.198261946, 0.49343574),C1 = CFrame.new(4.67300415e-05, -1.5629549, 0.368643761, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  599. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.290000021, 0.319999993, 0.920000017),CFrame = CFrame.new(-0.559556007, 3.48592305, 18.1257362, 0.200836256, 0.492404997, -0.846895695, -0.739956677, 0.642788053, 0.198270515, 0.642003596, 0.586822927, 0.493453354),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.356863, 0.364706, 0.411765),})
  600. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  601. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 0.200833246, -0.739945531, 0.641986489, 0.492397606, 0.642786622, 0.586830497, -0.846882939, 0.198257565, 0.49344033),C1 = CFrame.new(4.67300415e-05, -1.80457687, 0.37653923, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  602. Barrel = New("Part",HeavenGun,"Barrel",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.32099998, 0.219999999, 0.920000017),CFrame = CFrame.new(-0.55654335, 3.47482347, 18.1353664, 0.200836256, 0.492404997, -0.846895695, -0.739956677, 0.642788053, 0.198270515, 0.642003596, 0.586822927, 0.493453354),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  603. Mesh = New("SpecialMesh",Barrel,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  604. mot = New("Motor",Barrel,"mot",{Part0 = Barrel,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 0.200833246, -0.739945531, 0.641986489, 0.492397606, 0.642786622, 0.586830497, -0.846882939, 0.198257565, 0.49344033),C1 = CFrame.new(4.67300415e-05, -1.80457687, 0.391539574, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  605. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.40000000596046,Size = Vector3.new(0.200000003, 0.209999993, 0.930000007),CFrame = CFrame.new(-0.362538099, 3.4660573, 17.9821777, -0.492401302, 0.597376823, -0.633018196, -0.642787278, -0.739956439, -0.198273852, -0.586826801, 0.309265792, 0.74834156),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  606. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  607. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492393941, -0.642785907, -0.586834371, 0.597367823, -0.739940286, 0.309257418, -0.633008659, -0.19827947, 0.748321712),C1 = CFrame.new(4.67300415e-05, -1.5629549, 0.338644028, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  608. Knife = New("Part",HeavenGun,"Knife",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.200000003, 0.649999976, 0.200000003),CFrame = CFrame.new(-0.00589764118, 3.58113384, 17.5483494, -0.492403746, 0.650273919, -0.578543484, -0.642787695, -0.719860554, -0.262007803, -0.586824179, 0.242866993, 0.77244997),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  609. Mesh = New("SpecialMesh",Knife,"Mesh",{MeshType = Enum.MeshType.Brick,})
  610. mot = New("Motor",Knife,"mot",{Part0 = Knife,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492396384, -0.642786324, -0.586831748, 0.650264144, -0.719843984, 0.242860407, -0.578534722, -0.262012064, 0.772429466),C1 = CFrame.new(0.00504589081, -1.06967926, 0.0466108322, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  611. Knife = New("Part",HeavenGun,"Knife",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.200000003, 0.649999976, 0.200000003),CFrame = CFrame.new(-0.298370838, 4.02415705, 17.3084888, -0.492405057, 0.344843805, -0.799155831, -0.642787695, -0.763144433, 0.0667689443, -0.586823225, 0.546564877, 0.597437322),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  612. Mesh = New("SpecialMesh",Knife,"Mesh",{MeshType = Enum.MeshType.Brick,})
  613. mot = New("Motor",Knife,"mot",{Part0 = Knife,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786324, -0.586830795, 0.344838619, -0.763131201, 0.546550274, -0.799143851, 0.0667581409, 0.597421527),C1 = CFrame.new(0.00504684448, -1.2868433, -0.493916512, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  614. Knife = New("Part",HeavenGun,"Knife",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.200000003, 0.649999976, 0.200000003),CFrame = CFrame.new(-0.412175059, 4.27600765, 17.1281128, -0.492405057, 0.344843805, -0.799155831, -0.642787695, -0.763144433, 0.0667689443, -0.586823225, 0.546564877, 0.597437322),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  615. Mesh = New("SpecialMesh",Knife,"Mesh",{Scale = Vector3.new(0.200000003, 0.5, 0.200000003),MeshId = "rbxassetid://9756362",MeshType = Enum.MeshType.FileMesh,})
  616. mot = New("Motor",Knife,"mot",{Part0 = Knife,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786324, -0.586830795, 0.344838619, -0.763131201, 0.546550274, -0.799143851, 0.0667581409, 0.597421527),C1 = CFrame.new(0.00504684448, -1.34414864, -0.818920135, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  617. Knife = New("Part",HeavenGun,"Knife",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.200000003, 0.649999976, 0.200000003),CFrame = CFrame.new(0.171368718, 3.81253695, 17.7596054, -0.492403746, 0.650273919, -0.578543484, -0.642787695, -0.719860554, -0.262007803, -0.586824179, 0.242866993, 0.77244997),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  618. Mesh = New("SpecialMesh",Knife,"Mesh",{MeshType = Enum.MeshType.Brick,})
  619. mot = New("Motor",Knife,"mot",{Part0 = Knife,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492396384, -0.642786324, -0.586831748, 0.650264144, -0.719843984, 0.242860407, -0.578534722, -0.262012064, 0.772429466),C1 = CFrame.new(-0.354953766, -1.06967831, 0.0466108322, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  620. Knife = New("Part",HeavenGun,"Knife",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.200000003, 0.649999976, 0.200000003),CFrame = CFrame.new(-0.121105552, 4.25556135, 17.5197449, -0.492405057, 0.344843805, -0.799155831, -0.642787695, -0.763144433, 0.0667689443, -0.586823225, 0.546564877, 0.597437322),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  621. Mesh = New("SpecialMesh",Knife,"Mesh",{MeshType = Enum.MeshType.Brick,})
  622. mot = New("Motor",Knife,"mot",{Part0 = Knife,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786324, -0.586830795, 0.344838619, -0.763131201, 0.546550274, -0.799143851, 0.0667581409, 0.597421527),C1 = CFrame.new(-0.354952812, -1.2868433, -0.493917465, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  623. Knife = New("Part",HeavenGun,"Knife",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.200000003, 0.649999976, 0.200000003),CFrame = CFrame.new(-0.23491025, 4.50741196, 17.3393688, -0.492405057, 0.344843805, -0.799155831, -0.642787695, -0.763144433, 0.0667689443, -0.586823225, 0.546564877, 0.597437322),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  624. Mesh = New("SpecialMesh",Knife,"Mesh",{Scale = Vector3.new(0.200000003, 0.5, 0.200000003),MeshId = "rbxassetid://9756362",MeshType = Enum.MeshType.FileMesh,})
  625. mot = New("Motor",Knife,"mot",{Part0 = Knife,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786324, -0.586830795, 0.344838619, -0.763131201, 0.546550274, -0.799143851, 0.0667581409, 0.597421527),C1 = CFrame.new(-0.354952812, -1.34414959, -0.818920612, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  626. Knife = New("Part",HeavenGun,"Knife",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.200000003, 0.649999976, 0.200000003),CFrame = CFrame.new(-0.168391109, 3.36901379, 17.3546963, -0.492403746, 0.650273919, -0.578543484, -0.642787695, -0.719860554, -0.262007803, -0.586824179, 0.242866993, 0.77244997),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  627. Mesh = New("SpecialMesh",Knife,"Mesh",{MeshType = Enum.MeshType.Brick,})
  628. mot = New("Motor",Knife,"mot",{Part0 = Knife,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492396384, -0.642786324, -0.586831748, 0.650264144, -0.719843984, 0.242860407, -0.578534722, -0.262012064, 0.772429466),C1 = CFrame.new(0.335046768, -1.06967831, 0.0466098785, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  629. Knife = New("Part",HeavenGun,"Knife",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.200000003, 0.649999976, 0.200000003),CFrame = CFrame.new(-0.46086514, 3.81203747, 17.1148376, -0.492405057, 0.344843805, -0.799155831, -0.642787695, -0.763144433, 0.0667689443, -0.586823225, 0.546564877, 0.597437322),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  630. Mesh = New("SpecialMesh",Knife,"Mesh",{MeshType = Enum.MeshType.Brick,})
  631. mot = New("Motor",Knife,"mot",{Part0 = Knife,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786324, -0.586830795, 0.344838619, -0.763131201, 0.546550274, -0.799143851, 0.0667581409, 0.597421527),C1 = CFrame.new(0.335046768, -1.28684425, -0.493916512, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  632. Knife = New("Part",HeavenGun,"Knife",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(0.200000003, 0.649999976, 0.200000003),CFrame = CFrame.new(-0.574669003, 4.06388855, 16.9344616, -0.492405057, 0.344843805, -0.799155831, -0.642787695, -0.763144433, 0.0667689443, -0.586823225, 0.546564877, 0.597437322),BackSurface = Enum.SurfaceType.SmoothNoOutlines,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),})
  633. Mesh = New("SpecialMesh",Knife,"Mesh",{Scale = Vector3.new(0.200000003, 0.5, 0.200000003),MeshId = "rbxassetid://9756362",MeshType = Enum.MeshType.FileMesh,})
  634. mot = New("Motor",Knife,"mot",{Part0 = Knife,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397636, -0.642786324, -0.586830795, 0.344838619, -0.763131201, 0.546550274, -0.799143851, 0.0667581409, 0.597421527),C1 = CFrame.new(0.335045815, -1.34414959, -0.818920135, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  635. Hitbox = New("Part",HeavenGun,"Hitbox",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Transparency = 1,Transparency = 1,Size = Vector3.new(0.979999959, 0.629999995, 1.38),CFrame = CFrame.new(-0.335607648, 4.05419254, 17.366478, -0.492404938, 0.846895695, 0.200836331, -0.642788053, -0.198270485, -0.739956558, -0.586822927, -0.493453294, 0.642003715),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  636. Mesh = New("SpecialMesh",Hitbox,"Mesh",{MeshType = Enum.MeshType.Brick,})
  637. mot = New("Motor",Hitbox,"mot",{Part0 = Hitbox,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492397577, -0.642786682, -0.586830437, 0.846882939, -0.198257536, -0.4934403, 0.200833291, -0.739945412, 0.641986549),C1 = CFrame.new(-0.0299530029, -1.35294628, -0.486391068, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  638. Part = New("Part",HeavenGun,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Reflectance = 1,Size = Vector3.new(1.00999999, 1.31000006, 0.200000003),CFrame = CFrame.new(0.750816345, 2.80596828, 17.7709961, -0.492412329, 0.846891701, 0.200835153, -0.642789245, -0.198279515, -0.73995316, -0.586815476, -0.493456602, 0.642008007),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  639. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  640. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.492404968, -0.642787874, -0.586822987, 0.846878946, -0.198266551, -0.493443578, 0.200832143, -0.739942014, 0.6419909),C1 = CFrame.new(4.86373901e-05, -0.385022163, 0.915081024, -0.492397606, -0.642786622, -0.586830497, 0.846882939, -0.198257565, -0.4934403, 0.200833246, -0.739945531, 0.641986489),})
  641.  
  642. for i,v in pairs(HeavenGlacier:children'') do
  643. if v:IsA("Part") then
  644. v.CanCollide=false
  645. end
  646. end
  647.  
  648. for i,v in pairs(HeavenGun:children'') do
  649. if v:IsA("Part") then
  650. v.CanCollide=false
  651. end
  652. end
  653.  
  654. function rayCast(Position, Direction, Range, Ignore)
  655. return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  656. end
  657.  
  658. FindNearestTorso = function(pos)
  659. local list = (game.Workspace:children())
  660. local torso = nil
  661. local dist = 1000
  662. local temp, human, temp2 = nil, nil, nil
  663. for x = 1, #list do
  664. temp2 = list[x]
  665. if temp2.className == "Model" and temp2.Name ~= Character.Name then
  666. temp = temp2:findFirstChild("Torso")
  667. human = temp2:findFirstChild("Humanoid")
  668. if temp ~= nil and human ~= nil and human.Health > 0 and (temp.Position - pos).magnitude < dist then
  669. local dohit = true
  670. if dohit == true then
  671. torso = temp
  672. dist = (temp.Position - pos).magnitude
  673. end
  674. end
  675. end
  676. end
  677. return torso, dist
  678. end
  679.  
  680. function Damage(Part, hit, minim, maxim, knockback, Type, Property, Delay, HitSound, HitPitch)
  681. if hit.Parent == nil then
  682. return
  683. end
  684. local h = hit.Parent:FindFirstChild("Humanoid")
  685. for _, v in pairs(hit.Parent:children()) do
  686. if v:IsA("Humanoid") then
  687. h = v
  688. end
  689. end
  690. if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("Torso") ~= nil then
  691. if hit.Parent:findFirstChild("DebounceHit") ~= nil then
  692. if hit.Parent.DebounceHit.Value == true then
  693. return
  694. end
  695. end
  696. local c = Create("ObjectValue"){
  697. Name = "creator",
  698. Value = game:service("Players").LocalPlayer,
  699. Parent = h,
  700. }
  701. game:GetService("Debris"):AddItem(c, .5)
  702. if HitSound ~= nil and HitPitch ~= nil then
  703. CFuncs.Sound.Create(HitSound, hit, 1, HitPitch)
  704. end
  705. local Damage = math.random(minim, maxim)
  706. local blocked = false
  707. local block = hit.Parent:findFirstChild("Block")
  708. if block ~= nil then
  709. if block.className == "IntValue" then
  710. if block.Value > 0 then
  711. blocked = true
  712. block.Value = block.Value - 1
  713. print(block.Value)
  714. end
  715. end
  716. end
  717. if blocked == false then
  718. h.Health = h.Health - Damage
  719. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Really black").Color)
  720. else
  721. h.Health = h.Health - (Damage / 2)
  722. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Really black").Color)
  723. end
  724. if Type == "Knockdown" then
  725. local hum = hit.Parent.Humanoid
  726. hum.PlatformStand = true
  727. coroutine.resume(coroutine.create(function(HHumanoid)
  728. swait(1)
  729. HHumanoid.PlatformStand = false
  730. end), hum)
  731. local angle = (hit.Position - (Property.Position + Vector3.new(0, 0, 0))).unit
  732. local bodvol = Create("BodyVelocity"){
  733. velocity = angle * knockback,
  734. P = 5000,
  735. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  736. Parent = hit,
  737. }
  738. local rl = Create("BodyAngularVelocity"){
  739. P = 3000,
  740. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  741. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  742. Parent = hit,
  743. }
  744. game:GetService("Debris"):AddItem(bodvol, .5)
  745. game:GetService("Debris"):AddItem(rl, .5)
  746. elseif Type == "Normal" then
  747. local vp = Create("BodyVelocity"){
  748. P = 500,
  749. maxForce = Vector3.new(math.huge, 0, math.huge),
  750. velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05,
  751. }
  752. if knockback > 0 then
  753. vp.Parent = hit.Parent.Torso
  754. end
  755. game:GetService("Debris"):AddItem(vp, .5)
  756. elseif Type == "Up" then
  757. local bodyVelocity = Create("BodyVelocity"){
  758. velocity = Vector3.new(0, 20, 0),
  759. P = 5000,
  760. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  761. Parent = hit,
  762. }
  763. game:GetService("Debris"):AddItem(bodyVelocity, .5)
  764. elseif Type == "DarkUp" then
  765. coroutine.resume(coroutine.create(function()
  766. for i = 0, 1, 0.1 do
  767. swait()
  768. Effects.Block.Create(BrickColor.new("Black"), hit.Parent.Torso.CFrame, 5, 5, 5, 1, 1, 1, .08, 1)
  769. end
  770. end))
  771. local bodyVelocity = Create("BodyVelocity"){
  772. velocity = Vector3.new(0, 20, 0),
  773. P = 5000,
  774. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  775. Parent = hit,
  776. }
  777. game:GetService("Debris"):AddItem(bodyVelocity, 1)
  778. elseif Type == "Snare" then
  779. local bp = Create("BodyPosition"){
  780. P = 2000,
  781. D = 100,
  782. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  783. position = hit.Parent.Torso.Position,
  784. Parent = hit.Parent.Torso,
  785. }
  786. game:GetService("Debris"):AddItem(bp, 1)
  787. elseif Type == "Freeze" then
  788. local BodPos = Create("BodyPosition"){
  789. P = 50000,
  790. D = 1000,
  791. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  792. position = hit.Parent.Torso.Position,
  793. Parent = hit.Parent.Torso,
  794. }
  795. local BodGy = Create("BodyGyro") {
  796. maxTorque = Vector3.new(4e+005, 4e+005, 4e+005) * math.huge ,
  797. P = 20e+003,
  798. Parent = hit.Parent.Torso,
  799. cframe = hit.Parent.Torso.CFrame,
  800. }
  801. hit.Parent.Torso.Anchored = true
  802. coroutine.resume(coroutine.create(function(Part)
  803. swait(1.5)
  804. Part.Anchored = false
  805. end), hit.Parent.Torso)
  806. game:GetService("Debris"):AddItem(BodPos, 3)
  807. game:GetService("Debris"):AddItem(BodGy, 3)
  808. end
  809. local debounce = Create("BoolValue"){
  810. Name = "DebounceHit",
  811. Parent = hit.Parent,
  812. Value = true,
  813. }
  814. game:GetService("Debris"):AddItem(debounce, Delay)
  815. c = Create("ObjectValue"){
  816. Name = "creator",
  817. Value = Player,
  818. Parent = h,
  819. }
  820. game:GetService("Debris"):AddItem(c, .5)
  821. end
  822. end
  823.  
  824. function ShowDamage(Pos, Text, Time, Color)
  825. local Rate = (1 / 30)
  826. local Pos = (Pos or Vector3.new(0, 0, 0))
  827. local Text = (Text or "")
  828. local Time = (Time or 2)
  829. local Color = (Color or Color3.new(1, 0, 1))
  830. local EffectPart = CFuncs.Part.Create(workspace, "SmoothPlastic", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  831. EffectPart.Anchored = true
  832. local BillboardGui = Create("BillboardGui"){
  833. Size = UDim2.new(3, 0, 3, 0),
  834. Adornee = EffectPart,
  835. Parent = EffectPart,
  836. }
  837. local TextLabel = Create("TextLabel"){
  838. BackgroundTransparency = 1,
  839. Size = UDim2.new(1, 0, 1, 0),
  840. Text = Text,
  841. Font = "SciFi",
  842. TextColor3 = Color,
  843. TextScaled = true,
  844. Parent = BillboardGui,
  845. }
  846. game.Debris:AddItem(EffectPart, (Time))
  847. EffectPart.Parent = game:GetService("Workspace")
  848. delay(0, function()
  849. local Frames = (Time / Rate)
  850. for Frame = 1, Frames do
  851. wait(Rate)
  852. local Percent = (Frame / Frames)
  853. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  854. TextLabel.TextTransparency = Percent
  855. end
  856. if EffectPart and EffectPart.Parent then
  857. EffectPart:Destroy()
  858. end
  859. end)
  860. end
  861.  
  862. function MagnitudeDamage(Part, Magnitude, MinimumDamage, MaximumDamage, KnockBack, Type, HitSound, HitPitch)
  863. for _, c in pairs(workspace:children()) do
  864. local hum = c:findFirstChild("Humanoid")
  865. if hum ~= nil then
  866. local head = c:findFirstChild("Torso")
  867. if head ~= nil then
  868. local targ = head.Position - Part.Position
  869. local mag = targ.magnitude
  870. if mag <= Magnitude and c.Name ~= Player.Name then
  871. Damage(head, head, MinimumDamage, MaximumDamage, KnockBack, Type, RootPart, .1, "rbxassetid://" .. HitSound, HitPitch)
  872. end
  873. end
  874. end
  875. end
  876. end
  877.  
  878. EffectModel = Create("Model"){
  879. Parent = Character,
  880. Name = "Effects",
  881. }
  882.  
  883. Effects = {
  884. Block = {
  885. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type)
  886. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  887. prt.Anchored = true
  888. prt.CFrame = cframe
  889. local msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  890. game:GetService("Debris"):AddItem(prt, 10)
  891. if Type == 1 or Type == nil then
  892. table.insert(Effects, {
  893. prt,
  894. "Block1",
  895. delay,
  896. x3,
  897. y3,
  898. z3,
  899. msh
  900. })
  901. elseif Type == 2 then
  902. table.insert(Effects, {
  903. prt,
  904. "Block2",
  905. delay,
  906. x3,
  907. y3,
  908. z3,
  909. msh
  910. })
  911. end
  912. end;
  913. };
  914.  
  915. Cylinder = {
  916. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  917. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  918. prt.Anchored = true
  919. prt.CFrame = cframe
  920. local msh = CFuncs.Mesh.Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  921. game:GetService("Debris"):AddItem(prt, 10)
  922. table.insert(Effects, {
  923. prt,
  924. "Cylinder",
  925. delay,
  926. x3,
  927. y3,
  928. z3,
  929. msh
  930. })
  931. end;
  932. };
  933. Head = {
  934. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  935. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  936. prt.Anchored = true
  937. prt.CFrame = cframe
  938. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Head", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  939. game:GetService("Debris"):AddItem(prt, 10)
  940. table.insert(Effects, {
  941. prt,
  942. "Cylinder",
  943. delay,
  944. x3,
  945. y3,
  946. z3,
  947. msh
  948. })
  949. end;
  950. };
  951.  
  952. Sphere = {
  953. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  954. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  955. prt.Anchored = true
  956. prt.CFrame = cframe
  957. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  958. game:GetService("Debris"):AddItem(prt, 10)
  959. table.insert(Effects, {
  960. prt,
  961. "Cylinder",
  962. delay,
  963. x3,
  964. y3,
  965. z3,
  966. msh
  967. })
  968. end;
  969. };
  970.  
  971. Elect = {
  972. Create = function(cff, x, y, z)
  973. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, BrickColor.new("Lime green"), "Part", Vector3.new(1, 1, 1))
  974. prt.Anchored = true
  975. prt.CFrame = cff * CFrame.new(math.random(-x, x), math.random(-y, y), math.random(-z, z))
  976. prt.CFrame = CFrame.new(prt.Position)
  977. game:GetService("Debris"):AddItem(prt, 2)
  978. local xval = math.random() / 2
  979. local yval = math.random() / 2
  980. local zval = math.random() / 2
  981. local msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(xval, yval, zval))
  982. table.insert(Effects, {
  983. prt,
  984. "Elec",
  985. 0.1,
  986. x,
  987. y,
  988. z,
  989. xval,
  990. yval,
  991. zval
  992. })
  993. end;
  994.  
  995. };
  996.  
  997. Ring = {
  998. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  999. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  1000. prt.Anchored = true
  1001. prt.CFrame = cframe
  1002. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://3270017", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1003. game:GetService("Debris"):AddItem(prt, 10)
  1004. table.insert(Effects, {
  1005. prt,
  1006. "Cylinder",
  1007. delay,
  1008. x3,
  1009. y3,
  1010. z3,
  1011. msh
  1012. })
  1013. end;
  1014. };
  1015.  
  1016.  
  1017. Wave = {
  1018. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  1019. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  1020. prt.Anchored = true
  1021. prt.CFrame = cframe
  1022. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1023. game:GetService("Debris"):AddItem(prt, 10)
  1024. table.insert(Effects, {
  1025. prt,
  1026. "Cylinder",
  1027. delay,
  1028. x3,
  1029. y3,
  1030. z3,
  1031. msh
  1032. })
  1033. end;
  1034. };
  1035.  
  1036. Break = {
  1037. Create = function(brickcolor, cframe, x1, y1, z1)
  1038. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  1039. prt.Anchored = true
  1040. prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1041. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1042. local num = math.random(10, 50) / 1000
  1043. game:GetService("Debris"):AddItem(prt, 10)
  1044. table.insert(Effects, {
  1045. prt,
  1046. "Shatter",
  1047. num,
  1048. prt.CFrame,
  1049. math.random() - math.random(),
  1050. 0,
  1051. math.random(50, 100) / 100
  1052. })
  1053. end;
  1054. };
  1055.  
  1056. Fire = {
  1057. Create = function(brickcolor, cframe, x1, y1, z1, delay)
  1058. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  1059. prt.Anchored = true
  1060. prt.CFrame = cframe
  1061. msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1062. game:GetService("Debris"):AddItem(prt, 10)
  1063. table.insert(Effects, {
  1064. prt,
  1065. "Fire",
  1066. delay,
  1067. 1,
  1068. 1,
  1069. 1,
  1070. msh
  1071. })
  1072. end;
  1073. };
  1074.  
  1075. FireWave = {
  1076. Create = function(brickcolor, cframe, x1, y1, z1)
  1077. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 1, brickcolor, "Effect", Vector3.new())
  1078. prt.Anchored = true
  1079. prt.CFrame = cframe
  1080. msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1081. local d = Create("Decal"){
  1082. Parent = prt,
  1083. Texture = "rbxassetid://26356434",
  1084. Face = "Top",
  1085. }
  1086. local d = Create("Decal"){
  1087. Parent = prt,
  1088. Texture = "rbxassetid://26356434",
  1089. Face = "Bottom",
  1090. }
  1091. game:GetService("Debris"):AddItem(prt, 10)
  1092. table.insert(Effects, {
  1093. prt,
  1094. "FireWave",
  1095. 1,
  1096. 30,
  1097. math.random(400, 600) / 100,
  1098. msh
  1099. })
  1100. end;
  1101. };
  1102.  
  1103. Lightning = {
  1104. Create = function(p0, p1, tym, ofs, col, th, tra, last)
  1105. local magz = (p0 - p1).magnitude
  1106. local curpos = p0
  1107. local trz = {
  1108. -ofs,
  1109. ofs
  1110. }
  1111. for i = 1, tym do
  1112. local li = CFuncs.Part.Create(EffectModel, "Neon", 0, tra or 0.4, col, "Ref", Vector3.new(th, th, magz / tym))
  1113. local ofz = Vector3.new(trz[math.random(1, 2)], trz[math.random(1, 2)], trz[math.random(1, 2)])
  1114. local trolpos = CFrame.new(curpos, p1) * CFrame.new(0, 0, magz / tym).p + ofz
  1115. li.Material = "Neon"
  1116. li.Anchored=true
  1117. li.CanCollide=false
  1118. if tym == i then
  1119. local magz2 = (curpos - p1).magnitude
  1120. li.Size = Vector3.new(th, th, magz2)
  1121. li.CFrame = CFrame.new(curpos, p1) * CFrame.new(0, 0, -magz2 / 2)
  1122. table.insert(Effects, {
  1123. li,
  1124. "Disappear",
  1125. last
  1126. })
  1127. else
  1128. do
  1129. do
  1130. li.CFrame = CFrame.new(curpos, trolpos) * CFrame.new(0, 0, magz / tym / 2)
  1131. curpos = li.CFrame * CFrame.new(0, 0, magz / tym / 2).p
  1132. game.Debris:AddItem(li, 10)
  1133. table.insert(Effects, {
  1134. li,
  1135. "Disappear",
  1136. last
  1137. })
  1138. end
  1139. end
  1140. end
  1141. end
  1142. end
  1143. };
  1144.  
  1145. EffectTemplate = {
  1146.  
  1147. };
  1148. }
  1149.  
  1150. Laser = function(brickcolor, reflect, cframe, x1, y1, z1, x3, y3, z3, delay)
  1151.  
  1152. local prt = CFuncs.Part.Create(EffectModel, "Neon", reflect, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  1153. prt.Anchored = true
  1154. prt.CFrame = cframe
  1155. prt.Material = "Neon"
  1156. local msh = CFuncs.Mesh.Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1157. game:GetService("Debris"):AddItem(prt, 10)
  1158. coroutine.resume(coroutine.create(function(Part, Mesh)
  1159.  
  1160. for i = 0, 1, delay do
  1161. swait()
  1162. Part.Transparency = i
  1163. Mesh.Scale = Mesh.Scale + Vector3.new(x3, y3, z3)
  1164. end
  1165. Part.Parent = nil
  1166. end
  1167. ), prt, msh)
  1168. end
  1169.  
  1170.  
  1171. shoottrail = function(mouse, partt, SpreadAmount, multiply)
  1172.  
  1173. local SpreadVectors = Vector3.new(math.random(-SpreadAmount, SpreadAmount), math.random(-SpreadAmount, SpreadAmount), math.random(-SpreadAmount, SpreadAmount))
  1174. local MainPos = partt.Position
  1175. local MainPos2 = mouse.Hit.p + SpreadVectors
  1176. local MouseLook = CFrame.new((MainPos + MainPos2) / 2, MainPos2)
  1177. local speed = 100
  1178. local num = 20
  1179. CFuncs.Sound.Create("http://www.roblox.com/asset/?id=274538143", partt, 1, 1)
  1180. coroutine.resume(coroutine.create(function()
  1181.  
  1182. repeat
  1183. swait()
  1184. local hit, pos = rayCast(MainPos, MouseLook.lookVector, speed, RootPart.Parent)
  1185. local mag = (MainPos - pos).magnitude
  1186. Laser(BrickColor.new("White"), 0.35, CFrame.new((MainPos + pos) / 2, pos) * CFrame.Angles(1.57, 0, 0), 1, mag * (speed / (speed / 2)), 1, -0.5, 0, -0.5, 0.15)
  1187. MainPos = MainPos + MouseLook.lookVector * speed
  1188. num = num - 1
  1189. MouseLook = MouseLook * CFrame.Angles(math.rad(-1), 0, 0)
  1190. if hit ~= nil then
  1191. num = 0
  1192. local refpart = CFuncs.Part.Create(effect, "SmoothPlastic", 0, 1, "Really black", "Effect", Vector3.new())
  1193. refpart.Anchored = true
  1194. refpart.CFrame = CFrame.new(pos)
  1195. game:GetService("Debris"):AddItem(refpart, 2)
  1196. end
  1197. do
  1198. if num <= 0 then
  1199. local refpart = CFuncs.Part.Create(effect, "SmoothPlastic", 0, 1, "Really black", "Effect", Vector3.new())
  1200. refpart.Anchored = true
  1201. refpart.CFrame = CFrame.new(pos)
  1202. Effects.Block.Create(BrickColor.new('White'), refpart.CFrame, 10, 10, 10, 5, 5, 5, .1)
  1203. if hit ~= nil then
  1204. MagnitudeDamage(refpart, 5, 5 * multiply, 15 * multiply, 0, "Normal", "231917784", 1)
  1205. end
  1206. game:GetService("Debris"):AddItem(refpart, 0)
  1207. end
  1208. end
  1209. until num <= 0
  1210. end
  1211. ))
  1212. end
  1213.  
  1214. function attackone()
  1215. attack = true
  1216. local con = SwordHitox.Touched:connect(function(hit)
  1217. Damage(SwordHitox, hit, 10, 15, math.random(1, 5), "Normal", RootPart, .2, "rbxassetid://199149221", 1)
  1218. end)
  1219. for i = 0, 1, 0.1 do
  1220. swait()
  1221. PlayAnimationFromTable({
  1222. CFrame.new(0, -0, -0, 0.766043127, 0, -0.642787158, 0, 1, 0, 0.642787158, 0, 0.766043127) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1223. CFrame.new(-1.86264515e-07, 1.49997556, -1.78813934e-07, 0.81893754, -0.0560224541, 0.571136296, 0.00759614911, 0.996189773, 0.0868238658, -0.573830128, -0.0667648911, 0.816242933) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1224. CFrame.new(1.99700952, 0.699694633, -0.0711452365, 0.668815315, -0.628374934, 0.397281051, 0.388454586, -0.160257012, -0.907424867, 0.63387394, 0.761222541, 0.136912927) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1225. CFrame.new(-1.54351091, 0.0795850754, 0.99892807, 0.761870623, 0.324235588, -0.560733318, 0.442282796, 0.37205267, 0.816065431, 0.473219752, -0.869738996, 0.14005217) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1226. CFrame.new(0.98079735, -1.99995041, 0.391022205, 0.766035736, -0.271652013, 0.582562745, 0, 0.906297982, 0.422616959, -0.64278096, -0.323741943, 0.694270492) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1227. CFrame.new(-0.942244291, -1.99996769, -0.345070362, 0.766038597, 0.111618668, 0.633021712, 0, 0.98480171, -0.173648268, -0.642783344, 0.133021817, 0.754405081) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1228. }, .3, false)
  1229. moter.C0 = clerp(moter.C0, CFrame.new(0.41166988, -0.197343752, 0.191555321, 0.230297491, -0.898480713, -0.373781204, 0.963494539, 0.2644521, -0.042052988, 0.136630088, -0.350445271, 0.926567078) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1230. end
  1231. CFuncs.Sound.Create("rbxassetid://588693922", Torso, 2, 1)
  1232. for i = 0, 1, 0.1 do
  1233. swait()
  1234. PlayAnimationFromTable({
  1235. CFrame.new(1.20498953e-06, -1.97412646e-07, 1.81214682e-06, 0.918391109, -0.308295369, 0.248016074, 0.229111701, 0.92539376, 0.301917881, -0.322592407, -0.220455289, 0.920507312) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1236. CFrame.new(0.0230989009, 1.54404306, 0.0193786174, 0.863307476, 0.245004103, -0.441218525, -0.317964196, 0.942970395, -0.0985210538, 0.391917706, 0.225345641, 0.891975522) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1237. CFrame.new(-0.146338314, 0.605888784, -0.819643438, 0.0728637055, 0.971035719, -0.227555394, 0.985080898, -0.105736226, -0.135778069, -0.155906141, -0.214267224, -0.964252532) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1238. CFrame.new(-1.41421938, -0.0534927845, 1.11830389, 0.39334473, 0.150026724, -0.907068014, 0.421012044, 0.847682774, 0.322773993, 0.81733036, -0.508847892, 0.27026841) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1239. CFrame.new(-0.0667736307, -2.05123448, -0.286527216, 0.918391109, 0.229112536, -0.322593361, -0.308295369, 0.9253968, -0.220455691, 0.248016074, 0.301918536, 0.920510411) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1240. CFrame.new(-1.19119942, -1.86066484, 0.0820529461, 0.880896628, 0.346001387, -0.322962821, -0.377738327, 0.925080895, -0.0392258465, 0.285194933, 0.15654923, 0.945597827) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1241. }, .3, false)
  1242. moter.C0 = clerp(moter.C0, CFrame.new(-0.134322524, -0.807522893, 0.129918456, 0.409307241, -0.341753811, -0.845975816, 0.756882966, 0.644963622, 0.10565041, 0.509516716, -0.683547616, 0.522649944) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1243. end
  1244. con:Disconnect()
  1245. attack = false
  1246. end
  1247.  
  1248. function attacktwo()
  1249. attack = true
  1250. for i = 0, 1, 0.1 do
  1251. swait()
  1252. PlayAnimationFromTable({
  1253. CFrame.new(7.62367165e-07, -9.13237841e-08, 2.15738214e-06, 0.996645033, -0.0526937582, -0.0626791418, 0.0726975054, 0.921660542, 0.381145149, 0.0376866944, -0.384427667, 0.922387779) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1254. CFrame.new(0.0201719217, 1.48263705, 0.0316431224, 0.99210012, 0.0596868284, -0.110370934, -0.0904738009, 0.949774265, -0.299605429, 0.0869450942, 0.307218254, 0.947658896) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1255. CFrame.new(1.50675511, -0.125898004, -0.11495769, 0.631026685, -0.612534165, -0.476040393, 0.0832271874, 0.663560271, -0.743492246, 0.77128619, 0.429536164, 0.46969831) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1256. CFrame.new(-1.69191098, 0.323131979, -0.186771095, 0.625639737, 0.693933189, 0.356424332, -0.250914633, 0.611609042, -0.750330448, -0.738660395, 0.379998922, 0.556759536) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1257. CFrame.new(0.360840946, -1.9503938, -0.599930882, 0.996645033, 0.0314645469, 0.075598985, -0.0526937582, 0.953137398, 0.297949672, -0.0626791418, -0.300931484, 0.951583982) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1258. CFrame.new(-0.605358183, -2.15836573, 0.165971816, 0.990695119, 0.104296446, 0.0874765515, -0.132983863, 0.878843069, 0.458224624, -0.0290851146, -0.465589404, 0.884522557) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1259. }, .3, false)
  1260. moter.C0 = clerp(moter.C0, CFrame.new(-0.0180286765, -0.960338235, 0.418859065, 0.489875734, 0.364072651, -0.792137027, 0.41196996, 0.704114676, 0.578372061, 0.768328667, -0.609666646, 0.194932729) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1261. end
  1262. MagnitudeDamage(Hitbox, 5, 10, 15, 10, "Normal", "199149221", 1)
  1263. CFuncs.Sound.Create("rbxassetid://338586331", Torso, 2, 1)
  1264. for i = 0, 1, 0.5 do
  1265. swait()
  1266. PlayAnimationFromTable({
  1267. CFrame.new(1.77501056e-06, 5.03024694e-07, 2.38563689e-06, 0.780447781, -0.400496036, -0.48010987, 0.278166115, 0.910138428, -0.307038754, 0.559934258, 0.106077239, 0.821718752) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1268. CFrame.new(0.111763768, 1.50981748, -0.0155027658, 0.833088338, 0.3744075, 0.40718019, -0.439336836, 0.895121157, 0.0757978484, -0.33609587, -0.242032051, 0.910206556) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1269. CFrame.new(1.92282224, 0.158898637, -0.163519144, 0.860219359, -0.255387872, -0.441362798, 0.13026005, 0.946882188, -0.294020385, 0.493007123, 0.195429787, 0.84779191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1270. CFrame.new(-0.850434542, 0.451469213, -1.05771554, -0.152089298, -0.675747216, -0.721273959, -0.977655947, -0.0042904783, 0.210170612, -0.145116553, 0.737121463, -0.6599949) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1271. CFrame.new(0.153052896, -1.96005619, 0.842398226, 0.780447781, 0.12376526, 0.61285007, -0.400496036, 0.851671159, 0.3380256, -0.48010987, -0.509254456, 0.714251161) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1272. CFrame.new(-1.46763277, -1.56439388, -0.0393124521, 0.794843614, 0.447999924, 0.409299493, -0.448525012, 0.888045609, -0.101000622, -0.408721805, -0.103299409, 0.906801045) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1273. }, .5, false)
  1274. moter.C0 = clerp(moter.C0, CFrame.new(0.135190979, -0.707416952, 0.614945173, 0.301008523, 0.251730561, -0.919797182, 0.339724928, 0.872947514, 0.350082278, 0.891061425, -0.417855591, 0.177244008) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1275. end
  1276. for i = 0, 1, 0.1 do
  1277. swait()
  1278. PlayAnimationFromTable({
  1279. CFrame.new(9.60651846e-07, 3.72998329e-07, 1.88211379e-06, 0.780449033, -0.440817267, -0.443377256, 0.278166234, 0.879916012, -0.385194361, 0.559934974, 0.177291363, 0.809346557) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1280. CFrame.new(0.145362288, 1.51335704, -0.098476395, 0.885443509, 0.224054068, 0.40717864, -0.308679104, 0.938481212, 0.154837027, -0.34743616, -0.262785912, 0.900128722) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1281. CFrame.new(1.71720529, 0.104626209, -0.025857091, 0.860220492, -0.255388498, -0.441363394, 0.172732905, 0.960313201, -0.219011664, 0.479778171, 0.112159684, 0.870191336) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1282. CFrame.new(-0.443589151, 0.239677221, -1.4630295, -0.287868083, -0.77474761, -0.562940955, -0.951762617, 0.296647459, 0.0784380436, 0.106225058, 0.558363438, -0.822767556) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1283. CFrame.new(0.59790951, -2.13044596, 0.757298112, 0.780449033, 0.1237652, 0.612850845, -0.440817267, 0.804046869, 0.398990959, -0.443377256, -0.581544757, 0.682072282) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1284. CFrame.new(-1.09301734, -1.77346218, -0.115637511, 0.794844925, 0.448000312, 0.409300089, -0.482441634, 0.875664353, -0.0215833485, -0.368074834, -0.180304825, 0.912153125) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1285. }, .3, false)
  1286. moter.C0 = clerp(moter.C0, CFrame.new(0.143212378, -0.557460964, 0.555368483, 0.301008523, 0.251730561, -0.919797182, 0.339724928, 0.872947514, 0.350082278, 0.891061425, -0.417855591, 0.177244008) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1287. end
  1288. attack = false
  1289. end
  1290. local slashpitches = {2.5, 2, 1.5, 1.45, 1.38}
  1291. function attackthree()
  1292. attack = true
  1293. for i = 0, 1, 0.1 do
  1294. swait()
  1295. PlayAnimationFromTable({
  1296. CFrame.new(1.61614491e-06, -6.08034583e-08, 1.41021167e-06, 0.946458638, -0.204875484, -0.249485344, 0.168866202, 0.972848117, -0.158277422, 0.275138229, 0.107673362, 0.955356002) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1297. CFrame.new(0.154475749, 1.56128609, -0.0948493481, 0.980794787, 0.137164891, 0.1386666, -0.164743707, 0.963175356, 0.212495476, -0.104413554, -0.23125875, 0.967273176) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1298. CFrame.new(1.56750441, 0.457664251, -0.503912747, -0.217589766, -0.26708129, 0.938788831, 0.872353673, 0.378197312, 0.309786886, -0.43778491, 0.886361241, 0.150696695) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1299. CFrame.new(-1.37477493, 0.543153405, 0.771634936, 0.680146575, -0.317663729, -0.66067487, 0.675166965, 0.622523963, 0.395745605, 0.285571337, -0.715229988, 0.637883186) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1300. CFrame.new(0.193272963, -2.02552795, 0.392434865, 0.946458638, 0.168866649, 0.275139183, -0.204875484, 0.972851217, 0.107674047, -0.249485344, -0.158278257, 0.955359042) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1301. CFrame.new(-1.08653855, -1.92389405, -0.537920356, 0.949406505, 0.287766099, 0.125773519, -0.257414311, 0.942476213, -0.213254943, -0.17990616, 0.170089409, 0.968867064) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1302. }, .3, false)
  1303. moter.C0 = clerp(moter.C0, CFrame.new(-0.188175246, -0.63202554, 0.260205716, -0.326423675, 0.269065827, -0.906120539, 0.782076478, 0.615272582, -0.0990360007, 0.530863166, -0.740982771, -0.411264837) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1304. end
  1305. CFuncs.Sound.Create("rbxassetid://588693922", Torso, 2, 0.8)
  1306. Spawn(function()
  1307. ref = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 1, "White", "Reference", Vector3.new())
  1308. ref.Anchored=true
  1309. ref.CFrame = RootPart.CFrame * CFrame.new(0, 0, -5)
  1310. for i = 1, 20 do
  1311. swait()
  1312. CFuncs.Sound.Create("rbxassetid://338586331", ref, 7.5, slashpitches[math.random(1,#slashpitches)])
  1313. MagnitudeDamage(ref, 5, 5, 10, 5, "Normal", "199149221", 1)
  1314. ref.CFrame = ref.CFrame * CFrame.new(0, 0, -3)
  1315. Effects.Wave.Create(BrickColor.new('White'), ref.CFrame * CFrame.Angles(1.57, 0, 0), 4.5, 5, 4.5, -.2, 1, -.2, .1)
  1316. Effects.Block.Create(BrickColor.new('White'), ref.CFrame * CFrame.Angles(1.57, math.random(-50, 50), 0), 12, 30, 12, -.5, -.01, -.5, .045, 2)
  1317. Effects.Sphere.Create(BrickColor.new('White'), ref.CFrame * CFrame.new(math.random(-3, 3), math.random(-0, 3.5), math.random(-3, 3)) * CFrame.Angles(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 5, 20, 5, -.3, 5, -.3, .1)
  1318. end
  1319. game:GetService("Debris"):AddItem(ref, 1)
  1320. end)
  1321. for i = 0, 1, 0.1 do
  1322. swait()
  1323. PlayAnimationFromTable({
  1324. CFrame.new(1.20498953e-06, -1.97412646e-07, 1.81214682e-06, 0.918391109, -0.308295369, 0.248016074, 0.229111701, 0.92539376, 0.301917881, -0.322592407, -0.220455289, 0.920507312) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1325. CFrame.new(0.0134208761, 1.53742933, 0.0469944403, 0.863307476, 0.245004103, -0.441218525, -0.317964196, 0.942970395, -0.0985210538, 0.391917706, 0.225345641, 0.891975522) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1326. CFrame.new(1.70189929, 0.41195187, -1.13091421, 0.0728657916, -0.204162806, 0.9762187, 0.985081732, 0.167737633, -0.0384437144, -0.155899435, 0.96445632, 0.213338763) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1327. CFrame.new(-1.52549005, 0.312692016, 0.775921106, 0.39334473, 0.150026724, -0.907068014, 0.421012044, 0.847682774, 0.322773993, 0.81733036, -0.508847892, 0.27026841) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1328. CFrame.new(0.292093873, -1.97445321, -0.794193506, 0.918391109, 0.229112536, -0.322593361, -0.308295369, 0.9253968, -0.220455691, 0.248016074, 0.301918536, 0.920510411) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1329. CFrame.new(-1.19119942, -1.86066484, 0.0820529461, 0.880896628, 0.346001387, -0.322962821, -0.377738327, 0.925080895, -0.0392258465, 0.285194933, 0.15654923, 0.945597827) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1330. }, .3, false)
  1331. moter.C0 = clerp(moter.C0, CFrame.new(0.228098199, -0.430507123, -0.303704888, -0.326424062, 0.269065708, -0.906119823, 0.945126474, 0.0789937824, -0.317016721, -0.0137216449, -0.959878623, -0.280086666) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1332. end
  1333. attack = false
  1334. end
  1335.  
  1336. function attackfour()
  1337. attack = true
  1338. for i = 0, 1, 0.1 do
  1339. swait()
  1340. PlayAnimationFromTable({
  1341. CFrame.new(2.18801665e-06, -2.38418579e-07, 3.12481893e-06, 0.573575437, 0, -0.819152534, 0, 1, 0, 0.819152534, 0, 0.573575437) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1342. CFrame.new(-0.181866765, 1.43999052, -0.0540962033, 0.691548884, -0.0707412511, 0.718857288, 0.0218787175, 0.996787906, 0.0770442709, -0.721998215, -0.0375521667, 0.690875113) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1343. CFrame.new(1.63037956, 0.099693656, -0.708515048, 0.109442145, -0.226873964, 0.967755258, 0.389631301, 0.905479133, 0.168211475, -0.914445043, 0.358658314, 0.187494785) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1344. CFrame.new(-1.79202819, 1.2001183, 0.093275696, -0.480996579, 0.24906373, 0.84060055, 0.0297129955, -0.953617334, 0.299551666, 0.876218677, 0.169060096, 0.451286227) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1345. CFrame.new(1.15183747, -1.99999297, -0.0236004218, 0.573575437, -0.280167043, 0.76975143, 0, 0.939692438, 0.342020601, -0.819152534, -0.196174622, 0.538984478) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1346. CFrame.new(-0.974880576, -1.96999454, -0.0722279847, 0.621875405, 0.0369007774, 0.782246292, -0.0616279021, 0.998097658, 0.00191029161, -0.780687511, -0.0493961424, 0.622966349) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1347. }, .3, false)
  1348. moter.C0 = clerp(moter.C0, CFrame.new(-0.771033525, -0.748981595, 0.0237837806, -0.89558953, 0.44240725, -0.0469610095, 0.433668703, 0.89167887, 0.129808724, 0.0993023217, 0.0958897918, -0.990427494) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1349. end
  1350. shoottrail(mouse, Barrel, 0, 1.5)
  1351. for i = 0, 1, 0.1 do
  1352. swait()
  1353. PlayAnimationFromTable({
  1354. CFrame.new(2.20226934e-06, -1.92827628e-07, 3.14517388e-06, 0.564861536, 0.0996011123, -0.819152713, -0.173649549, 0.984807551, -1.13821592e-08, 0.806707799, 0.142245486, 0.573575616) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1355. CFrame.new(0.0307139456, 1.46762455, -0.0933552682, 0.716995955, 0.181923389, 0.67291981, -0.114083596, 0.982954144, -0.144184917, -0.68768096, 0.0266107768, 0.725526035) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1356. CFrame.new(1.72863746, 0.406038731, -0.388992876, -0.124514833, -0.361953795, 0.923842967, 0.725194871, 0.602272749, 0.333706558, -0.677191734, 0.711517453, 0.187495172) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1357. CFrame.new(-1.16897976, 1.40404952, 0.712693572, -0.468479365, -0.00235304236, 0.88347137, -0.111598656, -0.99182874, -0.0618191957, 0.876397669, -0.127555251, 0.464388669) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1358. CFrame.new(1.48163581, -1.76959217, -0.0235995874, 0.564861536, -0.439087838, 0.6986655, 0.0996011123, 0.87676537, 0.470491469, -0.819152713, -0.196174696, 0.538984656) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1359. CFrame.new(-0.61798197, -2.10935307, -0.0722272694, 0.623129368, -0.136979043, 0.770030558, 0.047296755, 0.989341915, 0.137717992, -0.78068769, -0.0493961647, 0.622966528) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1360. }, .3, false)
  1361. moter.C0 = clerp(moter.C0, CFrame.new(-0.641260266, -0.563137949, 0.125743032, -0.933111727, 0.359390765, 0.0122999847, 0.357581943, 0.923710406, 0.137494594, 0.0380530357, 0.132695779, -0.990428925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1362. end
  1363. attack = false
  1364. end
  1365.  
  1366. local electric = {3, 2.5, 2, 1.5, 1}
  1367.  
  1368. function move1()
  1369. attack = true
  1370. for i = 0, 1, 0.1 do
  1371. swait()
  1372. PlayAnimationFromTable({
  1373. CFrame.new(2.59705189e-06, -1.8409321e-07, 2.86102318e-06, 0.939691782, 0.34202078, -8.7422805e-08, -0.34202078, 0.939691782, 1.58531533e-14, 8.21504287e-08, 2.99004128e-08, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1374. CFrame.new(-0.238791585, 1.44549167, 0.0899938941, 0.938931465, -0.320104122, -0.126253709, 0.266561151, 0.908647299, -0.321409523, 0.217604861, 0.268127471, 0.93848598) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1375. CFrame.new(1.7025131, 1.33233964, -0.210854888, -0.94113785, -0.109631062, 0.319748819, 0.208951846, -0.932247639, 0.295385838, 0.26570189, 0.34481141, 0.900281966) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1376. CFrame.new(-1.58636129, -0.0124716386, 0.0732742995, -0.986557305, 0.0874817893, 0.138024226, 0.124389142, 0.949786842, 0.28710857, -0.105976939, 0.300418079, -0.947901785) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1377. CFrame.new(0.815593481, -1.83149445, 0.29999581, 0.939691782, -0.321394384, -0.116978079, 0.34202078, 0.883021235, 0.321393967, -8.7422805e-08, -0.342020601, 0.939692438) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1378. CFrame.new(-0.190740228, -2.16584778, -0.120002396, 0.957194269, -0.283458471, -0.0585638471, 0.282808125, 0.958982348, -0.019282667, 0.0616275892, 0.00189494551, 0.998097539) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1379. }, .3, false)
  1380. moter.C0 = clerp(moter.C0, CFrame.new(-0.910995066, -0.106950581, 0.350644141, -0.5505898, 0.780307233, -0.296629071, 0.828262866, 0.466292709, -0.310758621, -0.104170695, -0.416782588, -0.903023779) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1381. end
  1382. for i = 0, 1, 0.1 do
  1383. swait()
  1384. PlayAnimationFromTable({
  1385. CFrame.new(2.51881647e-06, -4.00557667e-08, 2.86102318e-06, 0.984808087, -0.173649162, -8.74225705e-08, 0.173649162, 0.984808087, -2.61266323e-13, 8.60944809e-08, -1.51805697e-08, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1386. CFrame.new(0.102329187, 1.44416094, 0.0899927914, 0.966354668, 0.160175905, -0.201256916, -0.218953237, 0.922861516, -0.316838503, 0.134982228, 0.350243568, 0.926882505) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1387. CFrame.new(1.42439365, 1.76922989, -0.210856318, -0.899183571, 0.105720781, 0.424609363, -0.071426712, -0.992821813, 0.0959379822, 0.431703597, 0.055937361, 0.900279403) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1388. CFrame.new(-1.85791135, 0.318310142, 0.073274225, -0.792188883, 0.550656855, 0.263087362, 0.601004839, 0.778798461, 0.17963092, -0.105976939, 0.300418079, -0.947901785) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1389. CFrame.new(0.322369993, -2.08768988, 0.29999575, 0.984808087, 0.163176775, 0.0593916737, -0.173649162, 0.925416708, 0.336824656, -8.74225705e-08, -0.342020601, 0.939692438) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1390. CFrame.new(-1.01176047, -1.82198429, -0.120002434, 0.970359206, 0.234010935, -0.0603591502, -0.233680069, 0.972232938, 0.0125827668, 0.0616275892, 0.00189494551, 0.998097539) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1391. }, .3, false)
  1392. moter.C0 = clerp(moter.C0, CFrame.new(-0.190198779, -0.527186632, 0.164778858, 0.196349159, 0.881475687, -0.429493189, 0.974994719, -0.222047269, -0.00998960808, -0.104172826, -0.416787535, -0.903021276) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1393. end
  1394. reff = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 1, "White", "Reference", Vector3.new())
  1395. reff.Anchored=true
  1396. reff.CFrame = RootPart.CFrame * CFrame.new(1.5, 300, 0)
  1397. CFuncs.Sound.Create("rbxassetid://238319531", Torso, 3, 1)
  1398. for i = 1, 50 do
  1399. swait()
  1400. Effects.Sphere.Create(BrickColor.new('Toothpaste'), reff.CFrame, 100, 100, 100, 5, 5, 5, .1)
  1401. Effects.Lightning.Create(SwordHitox.Position, reff.Position, 5, 3, "Toothpaste", 0.5, 0.4, 0.045)
  1402. end
  1403. reff:Remove()
  1404. for i = 0, 1, 0.1 do
  1405. swait()
  1406. PlayAnimationFromTable({
  1407. CFrame.new(2.62117373e-06, -4.4887031e-07, 3.71534202e-06, 0.984811962, -0.171011701, 0.0301538818, 0.173649848, 0.969850242, -0.171010733, 8.48942037e-08, 0.173649102, 0.984807611) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1408. CFrame.new(0.102329716, 1.4951576, 0.16283676, 0.966358423, 0.16017653, -0.201257706, -0.192188129, 0.969664097, -0.151073828, 0.170952499, 0.18466875, 0.967819571) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1409. CFrame.new(1.42439938, 1.78388643, -0.0717126727, -0.994388461, 0.0778978989, 0.0716434121, -0.10181313, -0.888922751, -0.446608067, 0.0288954563, -0.451391757, 0.891857862) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1410. CFrame.new(-1.84755158, 0.436197162, 0.302126735, -0.834470153, 0.537115812, 0.123187758, 0.283486038, 0.610116363, -0.739866436, -0.472548842, -0.582469642, -0.661382437) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1411. CFrame.new(0.322371274, -2.0038867, 0.657962918, 0.984811962, 0.163177416, 0.0593919046, -0.171011701, 0.851969361, 0.494885504, 0.0301538818, -0.497521967, 0.866927087) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1412. CFrame.new(-1.01176441, -1.81514931, 0.198206067, 0.970363081, 0.234011859, -0.0603593886, -0.21942924, 0.957795143, 0.185710415, 0.10126958, -0.16696091, 0.980749071) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1413. }, .3, false)
  1414. moter.C0 = clerp(moter.C0, CFrame.new(0.221902654, -0.289366543, -0.485730886, 0.163965896, 0.168477625, 0.971972942, 0.878969669, 0.422337443, -0.221480519, -0.447814733, 0.890650392, -0.0788367987) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1415. end
  1416. for i = 0, 1, 0.5 do
  1417. swait()
  1418. PlayAnimationFromTable({
  1419. CFrame.new(2.76975334e-06, -1.31130219e-06, -0.239994586, 0.98480767, -0.133022249, -0.11161983, 0.17364876, 0.754405499, 0.633023143, 4.68355921e-07, -0.64278847, 0.766043723) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1420. CFrame.new(0.0398143828, 1.54821014, -0.149915248, 0.978235424, 0.0545853488, 0.200213879, -0.131641567, 0.909047246, 0.395353884, -0.160423666, -0.413101494, 0.896447062) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1421. CFrame.new(1.21958077, 0.534495056, -0.766653657, -0.925181091, 0.3688564, -0.0893569961, -0.0933997035, 0.00691860914, 0.995604515, 0.367853254, 0.929460943, 0.0280486047) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1422. CFrame.new(-1.78831589, 0.419530213, 0.60924238, -0.926461518, 0.371154457, 0.06255804, 0.0958980992, 0.393484712, -0.914315581, -0.363968015, -0.841079235, -0.400141537) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1423. CFrame.new(0.322370887, -1.94635999, -0.928284705, 0.98480767, 0.163176268, 0.0593918934, -0.133022249, 0.928756058, -0.346001238, -0.11161983, 0.332844347, 0.936352432) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1424. CFrame.new(-1.01175928, -1.4728502, -1.0792284, 0.970358849, 0.234010518, -0.0603587478, -0.218622088, 0.743554294, -0.631926656, -0.102997504, 0.62639153, 0.772674382) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1425. }, .3, false)
  1426. moter.C0 = clerp(moter.C0, CFrame.new(-0.076716952, 0.269194394, -0.2057475, -0.0156444907, -0.121525258, 0.992469668, 0.997635841, 0.0646012723, 0.0236356258, -0.0669886172, 0.99048686, 0.120226532) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1427. end
  1428. Spawn(function()
  1429. skybox = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 1, "White", "Reference", Vector3.new())
  1430. skybox.Anchored=true
  1431. skybox.CFrame = RootPart.CFrame * CFrame.new(0, 300, -5)
  1432. groundhit = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 1, "White", "Reference", Vector3.new())
  1433. groundhit.Anchored=true
  1434. groundhit.CFrame = RootPart.CFrame * CFrame.new(0, -1, -5)
  1435. for i = 1, 23 do
  1436. swait()
  1437. CFuncs.Sound.Create("rbxassetid://379557765", groundhit, 10, electric[math.random(1,#electric)])
  1438. MagnitudeDamage(groundhit, 10, 10, 15, 5, "Normal", "0", 1)
  1439. skybox.CFrame = skybox.CFrame * CFrame.new(0, 0, -4.8)
  1440. groundhit.CFrame = groundhit.CFrame * CFrame.new(0, 0, -4.8)
  1441. Effects.Sphere.Create(BrickColor.new('Toothpaste'), skybox.CFrame, 50, 50, 50, 10, 10, 10, .1)
  1442. Effects.Sphere.Create(BrickColor.new('Toothpaste'), skybox.CFrame * CFrame.Angles(1.57, 0, 0), 45, 150, 0, 4, 5, 0, .01)
  1443. Effects.Lightning.Create(skybox.Position, groundhit.Position, 3, 5, "Toothpaste", 3, 0.4, 0.45)
  1444. Effects.Block.Create(BrickColor.new('Toothpaste'), groundhit.CFrame, 10, 10, 10, 3, 3, 3, .07 - i * 0.002)
  1445. Effects.Block.Create(BrickColor.new('Toothpaste'), groundhit.CFrame, 17, 17, 17, 3, 3, 3, .07 - i * 0.002)
  1446. end
  1447. groundhit:Remove()
  1448. skybox:Remove()
  1449. end)
  1450. for i = 0, 1, 0.1 do
  1451. swait()
  1452. PlayAnimationFromTable({
  1453. CFrame.new(2.61887908e-06, -0.300000429, -0.239994332, 0.98480767, -0.133022249, -0.11161983, 0.17364876, 0.754405499, 0.633023143, 4.68355921e-07, -0.64278847, 0.766043723) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1454. CFrame.new(0.0398143306, 1.54820919, -0.149914891, 0.978235424, 0.0545853488, 0.200213879, -0.131641567, 0.909047246, 0.395353884, -0.160423666, -0.413101494, 0.896447062) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1455. CFrame.new(1.21958125, 0.534494162, -0.766653836, -0.925181091, 0.3688564, -0.0893569961, -0.0933997035, 0.00691860914, 0.995604515, 0.367853254, 0.929460943, 0.0280486047) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1456. CFrame.new(-1.78831589, 0.419530213, 0.60924238, -0.926461518, 0.371154457, 0.06255804, 0.0958980992, 0.393484712, -0.914315581, -0.363968015, -0.841079235, -0.400141537) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1457. CFrame.new(0.369256198, -2.07049203, -0.366688102, 0.98480767, 0.163176268, 0.0593918934, -0.133022249, 0.928756058, -0.346001238, -0.11161983, 0.332844347, 0.936352432) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1458. CFrame.new(-1.0117594, -1.29929614, -1.28606176, 0.970358849, 0.234010518, -0.0603587478, -0.218622088, 0.743554294, -0.631926656, -0.102997504, 0.62639153, 0.772674382) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1459. }, .3, false)
  1460. moter.C0 = clerp(moter.C0, CFrame.new(-0.0761944503, 0.46648854, 0.0202528723, -0.0156444907, -0.121525258, 0.992469668, 0.997635841, 0.0646012723, 0.0236356258, -0.0669886172, 0.99048686, 0.120226532) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1461. end
  1462. attack = false
  1463. end
  1464.  
  1465. function move2()
  1466. attack = true
  1467. for i = 0, 1, 0.1 do
  1468. swait()
  1469. PlayAnimationFromTable({
  1470. CFrame.new(2.58398063e-06, 0.0599996671, -0.239993006, 1, -4.10425081e-08, -7.71897248e-08, 0, 0.882947564, -0.469471574, 8.74227766e-08, 0.469471574, 0.882947564) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1471. CFrame.new(-2.20560469e-06, 1.47700667, 0.0300969481, 0.998786569, 0.0490833446, -0.00402365811, -0.0453331918, 0.884396791, -0.464529872, -0.0192421675, 0.464149177, 0.885547996) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1472. CFrame.new(1.75552714, 1.3325727, -0.709525943, -0.746040165, -0.276920408, 0.605589926, 0.276462525, -0.956153035, -0.0966431499, 0.605799019, 0.0953232348, 0.789886773) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1473. CFrame.new(-1.88495779, 1.40125191, -0.325618923, -0.884517014, 0.40705505, 0.227894545, -0.399328709, -0.913202763, 0.0812248886, 0.241176888, -0.0191600621, 0.970292032) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1474. CFrame.new(0.679997444, -1.56303036, 1.00095034, 1, -1.51808059e-08, 8.60946088e-08, -4.10425081e-08, 0.788010478, 0.615661383, -7.71897248e-08, -0.615661383, 0.788010478) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1475. CFrame.new(-0.860002518, -2.0402112, 0.167407811, 0.876811564, 0.444669753, -0.182949036, -0.395914167, 0.883572757, 0.250102222, 0.27286166, -0.146860391, 0.950777888) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1476. }, .3, false)
  1477. moter.Part0 = RootPart
  1478. moter.C0 = clerp(moter.C0, CFrame.new(0.0108643994, 9.1815691, 1.36222458, 0.0299435854, 0.998545706, -0.0449541993, -0.999469995, 0.0293190144, -0.0144895529, -0.0131504843, 0.0453642122, 0.998885036) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1479. end
  1480. CFuncs.Sound.Create("rbxassetid://231917975", Torso, 3, 2)
  1481. for i = 1, 50 do
  1482. swait()
  1483. Effects.Lightning.Create(RootPart.Position, Torso.Position, 1, 3, "Toothpaste", 0.5, 0.4, 0.45)
  1484. Effects.Lightning.Create(Torso.Position, Head.Position, 1, 3, "Toothpaste", 0.5, 0.4, 0.45)
  1485. Effects.Lightning.Create(Torso.Position, LeftArm.Position, 1, 3, "Toothpaste", 0.5, 0.4, 0.45)
  1486. Effects.Lightning.Create(Torso.Position, RightArm.Position, 1, 3, "Toothpaste", 0.5, 0.4, 0.45)
  1487. Effects.Lightning.Create(Torso.Position, LeftLeg.Position, 1, 3, "Toothpaste", 0.5, 0.4, 0.45)
  1488. Effects.Lightning.Create(Torso.Position, RightLeg.Position, 1, 3, "Toothpaste", 0.5, 0.4, 0.45)
  1489. Effects.Lightning.Create(RootPart.Position, SwordHitox.Position, 1, 3, "Toothpaste", 1, 0.4, 0.48)
  1490. end
  1491. for i = 0, 1, 0.1 do
  1492. swait()
  1493. PlayAnimationFromTable({
  1494. CFrame.new(2.58398063e-06, 0.0599996671, -0.239993006, 1, -4.10425081e-08, -7.71897248e-08, 0, 0.882947564, -0.469471574, 8.74227766e-08, 0.469471574, 0.882947564) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1495. CFrame.new(-2.20560469e-06, 1.47700667, 0.0300969481, 0.998786569, 0.0490833446, -0.00402365811, -0.0453331918, 0.884396791, -0.464529872, -0.0192421675, 0.464149177, 0.885547996) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1496. CFrame.new(1.75552714, 1.3325727, -0.709525943, -0.746040165, -0.276920408, 0.605589926, 0.276462525, -0.956153035, -0.0966431499, 0.605799019, 0.0953232348, 0.789886773) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1497. CFrame.new(-1.88495779, 1.40125191, -0.325618923, -0.884517014, 0.40705505, 0.227894545, -0.399328709, -0.913202763, 0.0812248886, 0.241176888, -0.0191600621, 0.970292032) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1498. CFrame.new(0.679997444, -1.56303036, 1.00095034, 1, -1.51808059e-08, 8.60946088e-08, -4.10425081e-08, 0.788010478, 0.615661383, -7.71897248e-08, -0.615661383, 0.788010478) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1499. CFrame.new(-0.860002518, -2.0402112, 0.167407811, 0.876811564, 0.444669753, -0.182949036, -0.395914167, 0.883572757, 0.250102222, 0.27286166, -0.146860391, 0.950777888) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1500. }, .3, false)
  1501. moter.Part0 = RootPart
  1502. moter.C0 = clerp(moter.C0, CFrame.new(-0.271605492, 13.9554033, 4.49347925, -0.0534103028, 0.998544455, -0.008147127, 0.409267068, 0.0293315612, 0.911944151, 0.91085577, 0.0453728475, -0.410233855) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1503. end
  1504. ref=CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 1, "White", "hot", Vector3.new())
  1505. ref.Anchored=true
  1506. ref.CFrame = CFrame.new(Mouse.Hit.p)
  1507. MagnitudeDamage(ref, 13, 20, 30, 10, "Normal", "0", 1)
  1508. Effects.Lightning.Create(SwordHitox.Position, Mouse.Hit.p, 1, 3, "Toothpaste", 3, 0.4, 0.48)
  1509. Effects.Cylinder.Create(BrickColor.new('White'), CFrame.new(Mouse.Hit.p), 30, 1000000, 30, 3, 0, 3, .038)
  1510. Effects.Block.Create(BrickColor.new('White'), CFrame.new(Mouse.Hit.p), 40, 40, 40, 5, 5, 5, .045)
  1511. Effects.Ring.Create(BrickColor.new('White'), CFrame.new(Mouse.Hit.p) * CFrame.Angles(1.57, 0, 0), 10, 10, 35, 3, 3, 1, .058)
  1512. game:GetService("Debris"):AddItem(ref, 0.1)
  1513. for i = 0, 1, 0.1 do
  1514. swait()
  1515. PlayAnimationFromTable({
  1516. CFrame.new(2.58398063e-06, 0.0599996671, -0.239993006, 1, -4.10425081e-08, -7.71897248e-08, 0, 0.882947564, -0.469471574, 8.74227766e-08, 0.469471574, 0.882947564) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1517. CFrame.new(-2.20560469e-06, 1.47700667, 0.0300969481, 0.998786569, 0.0490833446, -0.00402365811, -0.0453331918, 0.884396791, -0.464529872, -0.0192421675, 0.464149177, 0.885547996) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1518. CFrame.new(1.75552714, 1.3325727, -0.709525943, -0.746040165, -0.276920408, 0.605589926, 0.276462525, -0.956153035, -0.0966431499, 0.605799019, 0.0953232348, 0.789886773) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1519. CFrame.new(-1.88495779, 1.40125191, -0.325618923, -0.884517014, 0.40705505, 0.227894545, -0.399328709, -0.913202763, 0.0812248886, 0.241176888, -0.0191600621, 0.970292032) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1520. CFrame.new(0.679997444, -1.56303036, 1.00095034, 1, -1.51808059e-08, 8.60946088e-08, -4.10425081e-08, 0.788010478, 0.615661383, -7.71897248e-08, -0.615661383, 0.788010478) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1521. CFrame.new(-0.860002518, -2.0402112, 0.167407811, 0.876811564, 0.444669753, -0.182949036, -0.395914167, 0.883572757, 0.250102222, 0.27286166, -0.146860391, 0.950777888) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1522. }, .3, false)
  1523. moter.Part0 = RootPart
  1524. moter.C0 = clerp(moter.C0, CFrame.new(-0.199065, 11.3639097, 8.14229584, -0.0320075862, 0.998544633, -0.0435214415, -0.355452299, 0.0293251667, 0.934234977, 0.93415159, 0.0453724042, 0.35399279) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1525. end
  1526. moter.Part0 = RightArm
  1527. attack = false
  1528. end
  1529.  
  1530. function move3()
  1531. attack = true
  1532. CFuncs.Sound.Create("rbxassetid://238319531", Torso, 5, 1)
  1533. for i = 0, 1, 0.03 do
  1534. swait()
  1535. PlayAnimationFromTable({
  1536. CFrame.new(1.94758172e-06, -2.54076213e-07, 2.69882844e-06, 0.610045791, -0.308295846, 0.729929864, 0.014507737, 0.92539531, 0.378727496, -0.792233169, -0.220451757, 0.569005311) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1537. CFrame.new(0.00781102479, 1.54404449, 0.0291194767, 0.482385486, 0.071446009, -0.873040557, -0.317964077, 0.942971647, -0.0985173732, 0.816212654, 0.325118631, 0.47759214) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1538. CFrame.new(1.12589324, 0.399810791, -0.915236115, 0.149117365, 0.46778667, 0.871177793, 0.985084772, 0.00627576746, -0.171982855, -0.0859194845, 0.883819044, -0.459876597) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1539. CFrame.new(-1.79989338, -0.0534870625, 0.104899883, -0.146589637, 0.414759874, -0.898045421, 0.421014845, 0.847681403, 0.322776347, 0.895129919, -0.330774248, -0.298881263) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1540. CFrame.new(0.751359463, -1.87266815, -0.733906269, 0.610045791, 0.0145080555, -0.792235732, -0.308295846, 0.92539835, -0.22045216, 0.729929864, 0.378728509, 0.569007277) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1541. CFrame.new(-1.0228436, -1.86066437, -0.616024554, 0.558007061, 0.193638086, -0.806927383, -0.377738684, 0.925081789, -0.0392220765, 0.738879263, 0.326693445, 0.589345455) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1542. }, .1, false)
  1543. moter.C0 = clerp(moter.C0, CFrame.new(-0.28194201, -0.909986377, 0.0722831041, 0.409311801, -0.341753155, -0.845978856, 0.252293229, 0.933447659, -0.255017936, 0.876833975, -0.109055817, 0.468287706) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1544. end
  1545. for i = 0, 5 do
  1546. swait()
  1547. CFuncs.Sound.Create("rbxassetid://231917845", Torso, 5, 1)
  1548. Effects.Sphere.Create(BrickColor.new('White'), RootPart.CFrame, 50, 50, 50, 5, 5, 5, .1)
  1549. for i = 0, 1, 0.05 do
  1550. swait()
  1551. RootPart.Velocity = RootPart.CFrame.lookVector * 50
  1552. Effects.Block.Create(BrickColor.new('White'), RootPart.CFrame * CFrame.Angles(1.57, math.random(-50, 90), 0), 45, 50, 45, -1, 1, -1, .035, 2)
  1553. Effects.Sphere.Create(BrickColor.new('White'), RootPart.CFrame * CFrame.Angles(0, 0, math.random(-50, 50)), 30, 100, 30, -2, 5, -2, .055)
  1554. Effects.Wave.Create(BrickColor.new('White'), RootPart.CFrame * CFrame.Angles(-1.57, 0, 0), 7, 7, 7, -.7, 2, -.7, .1)
  1555. Effects.Wave.Create(BrickColor.new('White'), RootPart.CFrame * CFrame.Angles(1.57, math.rad(0 + i * 10), 0), 12, 5, 12, .1, -.1, .1, .075)
  1556. PlayAnimationFromTable({
  1557. CFrame.new(1.49529239e-06, -2.37104302e-07, 3.40259908e-06, 0.24440974, -0.308294475, 0.919357598, -0.146907821, 0.925395548, 0.349373996, -0.958478868, -0.220451251, 0.180885166) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1558. CFrame.new(-0.0184111595, 1.51627922, -0.0740143806, 0.078232795, -0.0875648856, -0.993087173, -0.149385631, 0.983863711, -0.0985192209, 0.985678434, 0.156058788, 0.0638885796) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1559. CFrame.new(1.82612932, 0.343072653, -0.0272253156, 0.171455204, -0.826859891, 0.53563571, 0.98508054, 0.152082771, -0.0805512965, -0.014856495, 0.541455269, 0.840598345) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1560. CFrame.new(-1.85796142, 0.183365881, 0.327650279, 0.0990049541, 0.461300611, -0.881702662, 0.726783335, 0.571699679, 0.380718678, 0.679694414, -0.678499818, -0.278663933) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1561. CFrame.new(1.27865982, -1.80652308, -0.401866823, 0.24440974, 0.106171533, -0.963842034, -0.308294475, 0.950920522, 0.0265714228, 0.919357598, 0.290652603, 0.265146643) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1562. CFrame.new(-0.586016953, -1.9624095, -0.687191129, 0.875381231, 0.037430346, -0.481986165, -0.2127617, 0.925083876, -0.314573765, 0.43410328, 0.377919257, 0.817762494) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1563. }, .3, false)
  1564. moter.C0 = clerp(moter.C0, CFrame.new(0.121677816, -1.28749275, -0.0993465111, -0.439696491, -0.136782899, 0.88767159, 0.854406357, 0.240992755, 0.460349232, -0.276890248, 0.96084547, 0.0109044071) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1565. end
  1566. end
  1567. attack = false
  1568. end
  1569.  
  1570. function move4()
  1571. attack = true
  1572. for i = 0, 1, 0.1 do
  1573. swait()
  1574. PlayAnimationFromTable({
  1575. CFrame.new(2.61887908e-06, -0.300000429, -0.239994332, 0.98480767, -0.133022249, -0.11161983, 0.17364876, 0.754405499, 0.633023143, 4.68355921e-07, -0.64278847, 0.766043723) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1576. CFrame.new(0.0398143306, 1.54820919, -0.149914891, 0.978235424, 0.0545853488, 0.200213879, -0.131641567, 0.909047246, 0.395353884, -0.160423666, -0.413101494, 0.896447062) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1577. CFrame.new(1.25240624, 1.77707434, -0.0764808059, 0.850291133, 0.228750572, -0.474002421, 0.127803475, -0.963395536, -0.235666782, -0.510558605, 0.139806658, -0.848400891) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1578. CFrame.new(-1.71391153, 0.920630336, 0.668521166, -0.951966822, 0.262418002, 0.157784984, -0.250124454, -0.369193971, -0.895060539, -0.176626712, -0.89153409, 0.417097718) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1579. CFrame.new(0.369256139, -1.91622174, -0.550539136, 0.98480767, 0.171010524, 0.0301542524, -0.133022249, 0.854563236, -0.50202179, -0.11161983, 0.490383834, 0.864328921) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1580. CFrame.new(-1.0117594, -1.29929614, -1.28606176, 0.970358849, 0.234010518, -0.0603587478, -0.218622088, 0.743554294, -0.631926656, -0.102997504, 0.62639153, 0.772674382) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1581. }, .3, false)
  1582. moter.C0 = clerp(moter.C0, CFrame.new(0.185979143, -1.98563027, -0.501139581, 0.0532040596, 0.200100586, -0.97833401, -0.681117296, -0.709184825, -0.182091743, -0.730259538, 0.6760391, 0.0985588431) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1583. end
  1584. badabing = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 1, "White", "Reference", Vector3.new())
  1585. badabing.Anchored=true
  1586. badabing.CFrame = RootPart.CFrame * CFrame.new(0, 300, 0)
  1587. randomizer = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 1, "White", "groundref", Vector3.new())
  1588. randomizer.Anchored=true
  1589. randomizer.CFrame = RootPart.CFrame * CFrame.new(0, -1.3, 0)
  1590. for i = 1, 2 do
  1591. swait()
  1592. Effects.Block.Create(BrickColor.new('White'), badabing.CFrame * CFrame.Angles(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 150 + i * 30, 150 + i * 30, 150 + i * 30, 1, 1, 1, .025, 2)
  1593. end
  1594. CFuncs.Sound.Create("rbxassetid://231917975", Torso, 3, 1)
  1595. for i = 1, 100 do
  1596. swait(.0001)
  1597. randomizer.CFrame = RootPart.CFrame * CFrame.new(math.random(-200, 200), -1.3, math.random(-200, 200))
  1598. Effects.Lightning.Create(Barrel.Position, badabing.Position, 10, 6, "White", 0.5, 0.35, 1)
  1599. Effects.Lightning.Create(badabing.Position, randomizer.Position, 5, 8, "White", 3.5, 0.4, 0.058)
  1600. Effects.Sphere.Create(BrickColor.new('White'), randomizer.CFrame, 50, 50, 50, 1, 1, 1, .1)
  1601. Effects.Block.Create(BrickColor.new('White'), randomizer.CFrame, 45, 45, 45, 1.85, 1.85, 1.85, .09)
  1602. end
  1603. CFuncs.Sound.Create("rbxassetid://231917833", Torso, 4, 1)
  1604. Effects.Sphere.Create(BrickColor.new('White'), RootPart.CFrame, 200, 200, 200, 1, 1, 1, .01)
  1605. Effects.Block.Create(BrickColor.new('White'), RootPart.CFrame, 150, 150, 150, 1.85, 1.85, 1.85, .025)
  1606. MagnitudeDamage(Torso, 20, 20, 45, 15, "Normal", "0", 1)
  1607. for i = 1, 30 do
  1608. swait()
  1609. MagnitudeDamage(Torso, 20, 3, 5, 0, "Normal", "0", 1)
  1610. Effects.Block.Create(BrickColor.new('White'), badabing.CFrame * CFrame.Angles(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 150, 150, 150, -30, -30, -30, .1, 2)
  1611. Effects.Lightning.Create(RootPart.Position, badabing.Position, 5, 3, "White", 13.8, 0.4, 0.05)
  1612. end
  1613. badabing:Remove()
  1614. randomizer:Remove()
  1615. attack = false
  1616. end
  1617.  
  1618. Mouse.Button1Down:connect(function()
  1619. if attack == false and attacktype == 1 then
  1620. attacktype = 2
  1621. attackone()
  1622. elseif attack == false and attacktype == 2 then
  1623. attacktype = 3
  1624. attacktwo()
  1625. elseif attack == false and attacktype == 3 then
  1626. attacktype = 4
  1627. attackthree()
  1628. elseif attack == false and attacktype == 4 then
  1629. attacktype = 1
  1630. attackfour()
  1631. end
  1632. end)
  1633.  
  1634. Mouse.KeyDown:connect(function(k)
  1635. k = k:lower()
  1636. if attack == false and k == 'z' then
  1637. move1()
  1638. elseif attack == false and k == 'x' then
  1639. move2()
  1640. elseif attack == false and k == 'c' then
  1641. move3()
  1642. elseif attack == false and k == 'v' then
  1643. move4()
  1644. end
  1645. end)
  1646.  
  1647. while true do
  1648. swait()
  1649. for i, v in pairs(Character:GetChildren()) do
  1650. if v:IsA("Part") then
  1651. v.Material = "SmoothPlastic"
  1652. elseif v:IsA("Accessory") then
  1653. v:WaitForChild("Handle").Material = "SmoothPlastic"
  1654. end
  1655. end
  1656. Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  1657. velocity = RootPart.Velocity.y
  1658. sine = sine + change
  1659. local hit, pos = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, Character)
  1660. if RootPart.Velocity.y > 1 and hit == nil then
  1661. Anim = "Jump"
  1662. if attack == false then
  1663. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1664. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1665. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1666. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1667. RH.C0 = clerp(RH.C0, CFrame.new(.5, -2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1668. LH.C0 = clerp(LH.C0, CFrame.new(-.5, -2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1669. end
  1670. elseif RootPart.Velocity.y < -1 and hit == nil then
  1671. Anim = "Fall"
  1672. if attack == false then
  1673. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1674. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1675. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1676. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1677. RH.C0 = clerp(RH.C0, CFrame.new(.5, -2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1678. LH.C0 = clerp(LH.C0, CFrame.new(-.5, -2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1679. end
  1680. elseif Torsovelocity < 1 and hit ~= nil then
  1681. Anim = "Idle"
  1682. if attack == false then
  1683. change = 1
  1684. PlayAnimationFromTable({
  1685. CFrame.new(0, -0, -0, 0.90630573, 0, -0.422618568, 0, 1, 0, 0.422618568, 0, 0.90630573) * CFrame.new(0, 0 + 0.1 * math.cos(sine/25), 0) * CFrame.Angles(0, 0, 0),
  1686. CFrame.new(-5.40200311e-08, 1.49999022, 2.51900296e-08, 0.90630573, 0, 0.422618568, 0, 1, 0, -0.422618568, 0, 0.90630573) * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0 - 3 * math.cos(sine/25)), 0, 0),
  1687. CFrame.new(1.52794802, 0.0300002098, -0.414584756, 0.916487992, -0.0304624438, -0.398896724, -0.195064873, 0.836510956, -0.512054086, 0.349279851, 0.547102213, 0.760709882) * CFrame.new(0, 0 + 0.1 * math.cos(sine/25), 0) * CFrame.Angles(0, 0, 0),
  1688. CFrame.new(-1.00743818, 0.556779504, -0.946425557, 0.694271684, -0.558992743, -0.453332722, -0.642787933, -0.198266521, -0.739942014, 0.323741496, 0.805117488, -0.496964663) * CFrame.new(0, 0 + 0.1 * math.cos(sine/25), 0) * CFrame.Angles(0, 0, 0),
  1689. CFrame.new(0.643331051, -1.99999285, 0.196528137, 0.902856946, -0.0789899528, 0.422618568, 0.087155968, 0.996194661, 0, -0.421010375, 0.0368337296, 0.90630573) * CFrame.new(0, 0 - 0.1 * math.cos(sine/25), 0) * CFrame.Angles(0, 0, 0),
  1690. CFrame.new(-0.694047332, -1.99999285, -0.305289, 0.892536759, 0.157378733, 0.422618568, -0.173648611, 0.984807611, 0, -0.416197985, -0.0733871236, 0.90630573) * CFrame.new(0, 0 - 0.1 * math.cos(sine/25), 0) * CFrame.Angles(0, 0, 0),
  1691. }, .3, false)
  1692. moter.C0 = clerp(moter.C0, CFrame.new(0.0218752474, -0.937192261, 0.589669049, 0.0647832751, -0.209503546, -0.975659847, 0.673458457, 0.730670929, -0.112178534, 0.73638773, -0.64979893, 0.188425303) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1693. end
  1694. elseif Torsovelocity > 2 and hit ~= nil then
  1695. Anim = "Walk"
  1696. if attack == false then
  1697. PlayAnimationFromTable({
  1698. CFrame.new(0, -0, -0, 0.642786801, 0, -0.766044974, 0, 1, 0, 0.766044974, 0, 0.642786801) * CFrame.new(0, 0 + 0.1 * math.cos(sine/25), 0) * CFrame.Angles(0, 0, 0),
  1699. CFrame.new(-4.76837158e-07, 1.49998999, -3.12924385e-07, 0.642786801, -0.19826749, 0.739942312, 0, 0.965925455, 0.25881964, -0.766044974, -0.166365847, 0.62088412) * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0 - 3 * math.cos(sine/25)), 0, 0),
  1700. CFrame.new(1.22152948, -0.0503109246, 0.456440061, 0.768722296, 0.0506263077, -0.637575269, 0.388457239, 0.754975975, 0.528310359, 0.508100152, -0.653795183, 0.560701132) * CFrame.new(0, 0 + 0.1 * math.cos(sine/25), 0) * CFrame.Angles(0, 0, 0),
  1701. CFrame.new(-1.26083648, 0.54606849, -0.833577394, -0.138305098, -0.575013936, -0.806368649, -0.986687362, 0.150333554, 0.0620311871, 0.085555464, 0.804212987, -0.588150859) * CFrame.new(0, 0 + 0.1 * math.cos(sine/25), 0) * CFrame.Angles(0, 0, 0),
  1702. CFrame.new(0.781019092, -1.99999249, 0.00264877081, 0.642786741, 0, 0.766044974, 0, 0.999999881, 0, -0.766044855, 0, 0.642786801) * CFrame.new(0, 0 - 0.1 * math.cos(sine/25), 0 + 1.2 * math.cos(sine/3)) * CFrame.Angles(math.rad(0 - 55 * math.cos(sine/3)), 0, 0),
  1703. CFrame.new(-0.758042097, -1.99999011, 0.0166307688, 0.642786384, 0, 0.766044974, 0, 0.999999344, 0, -0.766044497, 0, 0.642786801) * CFrame.new(0, 0 - 0.1 * math.cos(sine/25), 0 - 1.2 * math.cos(sine/3)) * CFrame.Angles(math.rad(0 + 55 * math.cos(sine/3)), 0, 0),
  1704. }, .3, false)
  1705. moter.C0 = clerp(moter.C0, CFrame.new(-0.109847426, -0.76796627, -0.287964582, 0.366671145, 0.241443589, -0.898476064, -0.440686703, 0.895603955, 0.0608255863, 0.819364786, 0.373643309, 0.434788704) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1706. end
  1707. end
  1708. if 0 < #Effects then
  1709. for e = 1, #Effects do
  1710. if Effects[e] ~= nil then
  1711. local Thing = Effects[e]
  1712. if Thing ~= nil then
  1713. local Part = Thing[1]
  1714. local Mode = Thing[2]
  1715. local Delay = Thing[3]
  1716. local IncX = Thing[4]
  1717. local IncY = Thing[5]
  1718. local IncZ = Thing[6]
  1719. if Thing[2] == "Shoot" then
  1720. local Look = Thing[1]
  1721. local move = 30
  1722. if Thing[8] == 3 then
  1723. move = 10
  1724. end
  1725. local hit, pos = rayCast(Thing[4], Thing[1], move, m)
  1726. if Thing[10] ~= nil then
  1727. da = pos
  1728. cf2 = CFrame.new(Thing[4], Thing[10].Position)
  1729. cfa = CFrame.new(Thing[4], pos)
  1730. tehCF = cfa:lerp(cf2, 0.2)
  1731. Thing[1] = tehCF.lookVector
  1732. end
  1733. local mag = (Thing[4] - pos).magnitude
  1734. Effects["Head"].Create(Torso.BrickColor, CFrame.new((Thing[4] + pos) / 2, pos) * CFrame.Angles(1.57, 0, 0), 1, mag * 5, 1, 0.5, 0, 0.5, 0.2)
  1735. if Thing[8] == 2 then
  1736. Effects["Ring"].Create(Torso.BrickColor, CFrame.new((Thing[4] + pos) / 2, pos) * CFrame.Angles(1.57, 0, 0) * CFrame.fromEulerAnglesXYZ(1.57, 0, 0), 1, 1, 0.1, 0.5, 0.5, 0.1, 0.1, 1)
  1737. end
  1738. Thing[4] = Thing[4] + Look * move
  1739. Thing[3] = Thing[3] - 1
  1740. if 2 < Thing[5] then
  1741. Thing[5] = Thing[5] - 0.3
  1742. Thing[6] = Thing[6] - 0.3
  1743. end
  1744. if hit ~= nil then
  1745. Thing[3] = 0
  1746. if Thing[8] == 1 or Thing[8] == 3 then
  1747. Damage(hit, hit, Thing[5], Thing[6], Thing[7], "Normal", RootPart, 0, "", 1)
  1748. else
  1749. if Thing[8] == 2 then
  1750. Damage(hit, hit, Thing[5], Thing[6], Thing[7], "Normal", RootPart, 0, "", 1)
  1751. if (hit.Parent:findFirstChild("Humanoid")) ~= nil or (hit.Parent.Parent:findFirstChild("Humanoid")) ~= nil then
  1752. ref = CFuncs.Part.Create(workspace, "Neon", 0, 1, BrickColor.new("Really red"), "Reference", Vector3.new())
  1753. ref.Anchored = true
  1754. ref.CFrame = CFrame.new(pos)
  1755. CFuncs["Sound"].Create("161006093", ref, 1, 1.2)
  1756. game:GetService("Debris"):AddItem(ref, 0.2)
  1757. Effects["Block"].Create(Torso.BrickColor, CFrame.new(ref.Position) * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 1, 1, 1, 10, 10, 10, 0.1, 2)
  1758. Effects["Ring"].Create(BrickColor.new("Bright yellow"), CFrame.new(ref.Position) * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 1, 1, 0.1, 4, 4, 0.1, 0.1)
  1759. MagnitudeDamage(ref, 15, Thing[5] / 1.5, Thing[6] / 1.5, 0, "Normal", "", 1)
  1760. end
  1761. end
  1762. end
  1763. ref = CFuncs.Part.Create(workspace, "Neon", 0, 1, BrickColor.new("Really red"), "Reference", Vector3.new())
  1764. ref.Anchored = true
  1765. ref.CFrame = CFrame.new(pos)
  1766. Effects["Sphere"].Create(Torso.BrickColor, CFrame.new(pos), 5, 5, 5, 1, 1, 1, 0.07)
  1767. game:GetService("Debris"):AddItem(ref, 1)
  1768. end
  1769. if Thing[3] <= 0 then
  1770. table.remove(Effects, e)
  1771. end
  1772. end
  1773. do
  1774. do
  1775. if Thing[2] == "FireWave" then
  1776. if Thing[3] <= Thing[4] then
  1777. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(0, 1, 0)
  1778. Thing[3] = Thing[3] + 1
  1779. Thing[6].Scale = Thing[6].Scale + Vector3.new(Thing[5], 0, Thing[5])
  1780. else
  1781. Part.Parent = nil
  1782. table.remove(Effects, e)
  1783. end
  1784. end
  1785. if Thing[2] ~= "Shoot" and Thing[2] ~= "Wave" and Thing[2] ~= "FireWave" then
  1786. if Thing[1].Transparency <= 1 then
  1787. if Thing[2] == "Block1" then
  1788. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1789. Mesh = Thing[7]
  1790. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1791. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1792. else
  1793. if Thing[2] == "Block2" then
  1794. Thing[1].CFrame = Thing[1].CFrame
  1795. Mesh = Thing[7]
  1796. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1797. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1798. else
  1799. if Thing[2] == "Fire" then
  1800. Thing[1].CFrame = CFrame.new(Thing[1].Position) + Vector3.new(0, 0.2, 0)
  1801. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1802. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1803. else
  1804. if Thing[2] == "Cylinder" then
  1805. Mesh = Thing[7]
  1806. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1807. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1808. else
  1809. if Thing[2] == "Blood" then
  1810. Mesh = Thing[7]
  1811. Thing[1].CFrame = Thing[1].CFrame * CFrame.new(0, 0.5, 0)
  1812. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1813. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1814. else
  1815. if Thing[2] == "Elec" then
  1816. Mesh = Thing[10]
  1817. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[7], Thing[8], Thing[9])
  1818. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1819. else
  1820. if Thing[2] == "Disappear" then
  1821. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1822. else
  1823. if Thing[2] == "Shatter" then
  1824. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1825. Thing[4] = Thing[4] * CFrame.new(0, Thing[7], 0)
  1826. Thing[1].CFrame = Thing[4] * CFrame.fromEulerAnglesXYZ(Thing[6], 0, 0)
  1827. Thing[6] = Thing[6] + Thing[5]
  1828. end
  1829. end
  1830. end
  1831. end
  1832. end
  1833. end
  1834. end
  1835. end
  1836. else
  1837. Part.Parent = nil
  1838. table.remove(Effects, e)
  1839. end
  1840. end
  1841. end
  1842. end
  1843. end
  1844. end
  1845. end
  1846. end
  1847. end
Add Comment
Please, Sign In to add comment