Dark_EccentricYT

Untitled

Mar 31st, 2018 (edited)
940
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 185.17 KB | None | 0 0
  1. --[[ The Dark Slayer ]]-- --[[ Made By TheStarRevenant ]]--
  2. local p = game.Players.LocalPlayer
  3. local char = p.Character
  4. local mouse = p:GetMouse()
  5. local larm = char["Left Arm"]
  6. local rarm = char["Right Arm"]
  7. local lleg = char["Left Leg"]
  8. local rleg = char["Right Leg"]
  9. local hed = char.Head
  10. local torso = char.Torso
  11. local hum = char.Humanoid
  12. local cam = game.Workspace.CurrentCamera
  13. local root = char.HumanoidRootPart
  14. local deb = false
  15. local shot = 0
  16. local l = game:GetService("Lighting")
  17. local rs = game:GetService("RunService").RenderStepped
  18. local stanceToggle = "Normal"
  19. math.randomseed(os.time())
  20. hum.WalkSpeed = 7
  21. char.Health:Destroy()
  22. hum.MaxHealth = 50000
  23. wait(0.1)
  24. hum.Health = 50000
  25. ----------------------------------------------------
  26. Debounces = {
  27. on = false;
  28. ks = false;
  29. CanAttack = true;
  30. CanJoke = true;
  31. NoIdl = false;
  32. Slashing = false;
  33. Slashed = false;
  34. Grabbing = false;
  35. Grabbed = false;
  36. }
  37. local Touche = {char.Name, }
  38. ----------------------------------------------------
  39. function lerp(a, b, t) -- Linear interpolation
  40. return a + (b - a)*t
  41. end
  42.  
  43. function slerp(a, b, t) --Spherical interpolation
  44. dot = a:Dot(b)
  45. if dot > 0.99999 or dot < -0.99999 then
  46. return t <= 0.5 and a or b
  47. else
  48. r = math.acos(dot)
  49. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  50. end
  51. end
  52.  
  53. function matrixInterpolate(a, b, t)
  54. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  55. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  56. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  57. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  58. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  59. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  60. local t = v1:Dot(v2)
  61. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  62. return CFrame.new()
  63. end
  64. return CFrame.new(
  65. v0.x, v0.y, v0.z,
  66. v1.x, v1.y, v1.z,
  67. v2.x, v2.y, v2.z,
  68. v3.x, v3.y, v3.z)
  69. end
  70. ----------------------------------------------------
  71. function genWeld(a,b)
  72. local w = Instance.new("Weld",a)
  73. w.Part0 = a
  74. w.Part1 = b
  75. return w
  76. end
  77. function weld(a, b)
  78. local weld = Instance.new("Weld")
  79. weld.Name = "W"
  80. weld.Part0 = a
  81. weld.Part1 = b
  82. weld.C0 = a.CFrame:inverse() * b.CFrame
  83. weld.Parent = a
  84. return weld;
  85. end
  86. ----------------------------------------------------
  87. function Lerp(c1,c2,al)
  88. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  89. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  90. for i,v in pairs(com1) do
  91. com1[i] = v+(com2[i]-v)*al
  92. end
  93. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  94. end
  95. ----------------------------------------------------
  96. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  97. local wld = Instance.new("Weld", wp1)
  98. wld.Part0 = wp0
  99. wld.Part1 = wp1
  100. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  101. end
  102. ----------------------------------------------------
  103. --[[for i,v in pairs(char:children()) do
  104. if v:IsA("Hat") then
  105. v:Destroy()
  106. end
  107. end ]]
  108. for i,v in pairs(hed:children()) do
  109. if v:IsA("Sound") then
  110. v:Destroy()
  111. end
  112. end
  113. ----------------------------------------------------
  114. function HasntTouched(plrname)
  115. local ret = true
  116. for _, v in pairs(Touche) do
  117. if v == plrname then
  118. ret = false
  119. end
  120. end
  121. return ret
  122. end
  123. ----------------------------------------------------
  124. --[[larm.Size = larm.Size * 2
  125. rarm.Size = rarm.Size * 2
  126. lleg.Size = lleg.Size * 2
  127. rleg.Size = rleg.Size * 2
  128. torso.Size = torso.Size * 2
  129. hed.Size = hed.Size * 2
  130. root.Size = root.Size * 2 ]]
  131. ----------------------------------------------------
  132. local RbxUtility = LoadLibrary("RbxUtility")
  133. local Create = RbxUtility.Create
  134.  
  135. function RemoveOutlines(part)
  136. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  137. end
  138.  
  139. function CreatePart(FormFactor, Parent, Material, Reflectance, Transparency, BC, Name, Size)
  140. local Part = Create("Part"){
  141. formFactor = FormFactor,
  142. Parent = Parent,
  143. Reflectance = Reflectance,
  144. Transparency = Transparency,
  145. CanCollide = false,
  146. Locked = true,
  147. BrickColor = BrickColor.new(tostring(BC)),
  148. Name = Name,
  149. Size = Size,
  150. Material = Material,
  151. }
  152. RemoveOutlines(Part)
  153. return Part
  154. end
  155.  
  156. function CreateMesh(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  157. local Msh = Create(Mesh){
  158. Parent = Part,
  159. Offset = OffSet,
  160. Scale = Scale,
  161. }
  162. if Mesh == "SpecialMesh" then
  163. Msh.MeshType = MeshType
  164. Msh.MeshId = MeshId
  165. end
  166. return Msh
  167. end
  168.  
  169. function CreateWeld(Parent, P0, P1, c0, c1)
  170. local W = Create("Weld"){
  171. Parent = Parent,
  172. Part0 = P0,
  173. Part1 = P1,
  174. C0 = c0,
  175. C1 = c1,
  176. }
  177. return W
  178. end
  179. ----------------------------------------------------
  180. newWeld(torso, larm, -1.5, 0.5, 0)
  181. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  182. newWeld(torso, rarm, 1.5, 0.5, 0)
  183. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  184. newWeld(torso, hed, 0, 1.5, 0)
  185. newWeld(torso, lleg, -0.5, -1, 0)
  186. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  187. newWeld(torso, rleg, 0.5, -1, 0)
  188. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  189. newWeld(root, torso, 0, -1, 0)
  190. torso.Weld.C1 = CFrame.new(0, -1, 0)
  191. ----------------------------------------------------
  192. ----------------------------------------------------
  193. Handle=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Royal purple","Handle",Vector3.new(0.301632881, 2.05244946, 0.301632911))
  194. Handleweld=CreateWeld(m,char["Right Arm"],Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.900724411, 0.0686532855, 0.100441933, -9.87591953e-013, -0.999999881, 4.85088272e-012, 5.21260915e-007, -4.85088272e-012, -1, 1, -9.87589351e-013, 5.21260915e-007))
  195. CreateMesh("CylinderMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  196. FakeHandle=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Royal purple","FakeHandle",Vector3.new(0.301632881, 1.05244946, 0.301632911))
  197. FakeHandleweld=CreateWeld(m,Handle,FakeHandle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.100000024, 0, 1, 0, 3.49105374e-020, 0, 1, 0, 3.49105374e-020, 0, 1))
  198. CreateMesh("CylinderMesh",FakeHandle,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  199. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.5,"Royal purple","Part",Vector3.new(0.200000003, 0.904898763, 1.50816441))
  200. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000781536102, 0.000250577927, 6.81403255, -1.49028878e-008, 9.31697571e-007, -0.999994278, 0.999994278, 1.89689118e-007, -1.49028523e-008, 1.89689047e-007, -0.999999702, -1.03599632e-006))
  201. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.123669446, 1, 1))
  202. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.452449292, 0.200000003, 0.301632941))
  203. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000460863113, -0.000703811646, 5.1551156, 0.999994278, -2.56082499e-011, -8.24284271e-013, 7.24824226e-013, 6.13397333e-010, 0.999994278, -2.4641773e-011, -0.999999702, -1.0368808e-007))
  204. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904898703, 1))
  205. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 0.603265822, 1.05571508))
  206. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000776290894, 0.00021648407, 6.58780527, -1.49040176e-008, 1.66174368e-006, -0.999994278, 0.999994278, 1.89681401e-007, -1.4903847e-008, 1.89681316e-007, -0.999999702, -1.76603862e-006))
  207. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 1))
  208. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 4.67530966, 0.200000003))
  209. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000900506973, -3.72235155, -0.000814437866, 0.999994278, -9.57904242e-011, -5.90481917e-012, 9.48240444e-011, 0.999999702, 7.09023971e-006, 5.73459726e-012, -6.98597478e-006, 0.999994278))
  210. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 0.829490483))
  211. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.452449292, 0.200000003, 0.301632941))
  212. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000506877899, -0.000769615173, 4.40096092, 0.999994278, -7.22328586e-011, -4.83882639e-012, 4.68256814e-012, -4.27471787e-006, 0.999994278, -7.12533782e-011, -0.999999702, -4.37899871e-006))
  213. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904898703, 1))
  214. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  215. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000766277313, -0.226443529, -3.57149124, 1.48977106e-008, 6.26339715e-006, -0.999994278, -0.999994278, -1.93668285e-007, -1.48987827e-008, -1.93668299e-007, 0.999999702, 6.36766708e-006))
  216. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  217. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 4.67530966, 0.200000003))
  218. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000900506973, -3.72235155, -0.000761985779, 0.999994278, -9.81090348e-011, -6.22590998e-012, 9.71359521e-011, 0.999999702, 7.29890962e-006, 6.05515291e-012, -7.19464515e-006, 0.999994278))
  219. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.120653138, 1, 0.837031305))
  220. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.603265882, 0.200000003))
  221. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.22638917, -3.94854045, -0.000765800476, 0.999994278, -7.93771299e-011, -4.7180081e-012, 7.83965046e-011, 0.999999702, 5.94327139e-006, 4.55733238e-012, -5.83899919e-006, 0.999994278))
  222. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 0.754082263))
  223. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 1.65898108, 0.200000003))
  224. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.22638917, -5.2304635, -0.000760555267, 0.999994278, -6.92162577e-011, -4.20806055e-012, 6.8235681e-011, 0.999999702, 5.52625534e-006, 4.04747373e-012, -5.42198086e-006, 0.999994278))
  225. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 0.754082263))
  226. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  227. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000786304474, 0.226445198, -4.32553482, -1.48974175e-008, -5.79835444e-007, 0.999994278, 0.999994278, -1.89793411e-007, 1.4897128e-008, 1.89791407e-007, 0.999999702, 6.84136694e-007))
  228. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  229. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  230. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000786304474, 0.226443529, 3.57149148, -1.49031347e-008, 8.27100678e-007, -0.999994278, 0.999994278, 1.89686276e-007, -1.49031187e-008, 1.89686205e-007, -0.999999702, -9.31400564e-007))
  231. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  232. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.452449292, 0.200000003, 0.200000003))
  233. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000460863113, 0.00170040131, 3.48783398, 0.999994278, -6.29633429e-011, -4.78628595e-012, 4.66688624e-012, -3.23251811e-006, 0.999994278, -6.19969701e-011, -0.999999702, -3.33680305e-006))
  234. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.942602754, 0.754082263))
  235. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.452449292, 0.200000003, 0.200000003))
  236. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000460863113, 0.00170660019, 5.14681053, 0.999994278, -6.29633429e-011, -4.78628595e-012, 4.66688624e-012, -3.23251811e-006, 0.999994278, -6.19969701e-011, -0.999999702, -3.33680305e-006))
  237. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.942602754, 0.754082263))
  238. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.301632881, 4.67530966, 0.200000003))
  239. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000160694122, -3.72235155, -0.00077009201, 0.999994278, -7.02250896e-011, -3.89532287e-012, 6.9244506e-011, 0.999999702, 5.10900372e-006, 3.73475946e-012, -5.00472652e-006, 0.999994278))
  240. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.754082263))
  241. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.452449292, 0.200000003, 0.200000003))
  242. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000460863113, 0.00170373917, 4.3927021, 0.999994278, -6.29633429e-011, -4.78628595e-012, 4.66688624e-012, -3.23251811e-006, 0.999994278, -6.19969701e-011, -0.999999702, -3.33680305e-006))
  243. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.942602754, 0.754082263))
  244. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  245. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000761985779, -0.226445198, 4.32553482, 1.49031258e-008, -6.22759217e-006, 0.999994278, -0.999994278, 1.9377616e-007, 1.49045132e-008, -1.93774227e-007, -0.999999702, -6.3318621e-006))
  246. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  247. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  248. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000786304474, -0.226062298, -3.57149124, 7.45085771e-008, -9.02447312e-007, 0.999994278, 0.999994278, -1.29337536e-007, -7.45088684e-008, 1.2933593e-007, 0.999999702, 1.00674674e-006))
  249. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  250. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  251. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000760555267, 0.226063848, -4.32552719, -7.45085771e-008, 6.58613544e-006, -0.999994278, -0.999994278, -2.54132573e-007, 7.45070352e-008, -2.54131749e-007, 0.999999702, 6.69040401e-006))
  252. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  253. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.452449352, 0.301632941, 0.301632911))
  254. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.40486073, 2.28881836e-005, 4.76837158e-007, -7.4510659e-008, 0.999999642, -5.19771334e-007, -0.999999464, 8.94021142e-008, -4.55381871e-010, 1.08580016e-008, 4.77549349e-007, 0.999999642))
  255. CreateMesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.463006377, 0.473563731, 1.8791728))
  256. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Part",Vector3.new(0.301632881, 0.452449381, 0.301632911))
  257. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.5, 4.76837158e-007, 1, 0, 3.49105374e-020, 0, 1, 0, 3.49105374e-020, 0, 1))
  258. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  259. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  260. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000160694122, -0.706498325, -0.000161170959, 0.999994278, -8.12544892e-011, -4.6401741e-012, 8.02827874e-011, 0.999999702, 5.73445595e-006, 4.46345478e-012, -5.63018284e-006, 0.999994278))
  261. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  262. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  263. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000784397125, -0.226063848, 4.32552719, -7.45085771e-008, 9.38253208e-007, -0.999994278, 0.999994278, 2.58115534e-007, -7.45084705e-008, 2.5811508e-007, -0.999999702, -1.04255219e-006))
  264. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  265. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Part",Vector3.new(0.301632881, 0.452449381, 0.301632911))
  266. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000160694122, -0.404852629, -0.000162601471, 0.999994278, -8.12544892e-011, -4.6401741e-012, 8.02827874e-011, 0.999999702, 5.73445595e-006, 4.46345478e-012, -5.63018284e-006, 0.999994278))
  267. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  268. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  269. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.2649765e-005, 0.952409267, -5.24520874e-006, 1, -2.90482699e-012, -6.25005202e-013, 2.90482742e-012, 1, 3.1322088e-007, 6.25004334e-013, -3.13220937e-007, 1))
  270. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  271. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  272. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000160694122, 0.198386788, -0.000166416168, 0.999994278, -8.12544892e-011, -4.6401741e-012, 8.02827874e-011, 0.999999702, 5.73445595e-006, 4.46345478e-012, -5.63018284e-006, 0.999994278))
  273. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  274. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.603265882, 0.200000003))
  275. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.226004839, -3.94852328, 0.000782966614, -0.999994278, -6.44144791e-008, 7.45087902e-008, -6.44149978e-008, 0.999999702, 1.63986601e-006, -7.45087405e-008, 1.53557016e-006, -0.999994278))
  276. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 0.754082263))
  277. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 1.65898108, 0.200000003))
  278. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.226004839, -5.23044777, 0.000778198242, -0.999994278, -6.44043041e-008, 7.45087902e-008, -6.44047944e-008, 0.999999702, 2.05687343e-006, -7.45087618e-008, 1.95257962e-006, -0.999994278))
  279. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 0.754082263))
  280. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632822, 0.301632911, 0.301632941))
  281. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000160694122, -1.23431873, -0.000158309937, 0.999994278, -7.58783383e-011, -4.41249901e-012, 7.49053597e-011, 0.999999702, 5.52591155e-006, 4.24203684e-012, -5.42163707e-006, 0.999994278))
  282. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  283. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.2649765e-005, 0.801642776, -5.24520874e-006, 1, -2.90482699e-012, -6.25005202e-013, 2.90482742e-012, 1, 3.1322088e-007, 6.25004334e-013, -3.13220937e-007, 1))
  284. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  285. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  286. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000160694122, 0.047641933, -0.000165462494, 0.999994278, -8.12544892e-011, -4.6401741e-012, 8.02827874e-011, 0.999999702, 5.73445595e-006, 4.46345478e-012, -5.63018284e-006, 0.999994278))
  287. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  288. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  289. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000116825104, 1.10333133, -0.000106334686, 1, -8.73691189e-011, -7.57409153e-012, 8.73691744e-011, 1, 7.19496757e-006, 7.57346269e-012, -7.19496757e-006, 1))
  290. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  291. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  292. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000766277313, 0.226062536, 3.57149148, 7.45085771e-008, -6.33886475e-006, 0.999994278, -0.999994278, 1.25355314e-007, 7.45095434e-008, -1.25354148e-007, -0.999999702, -6.44313423e-006))
  293. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  294. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.452449292, 0.200000003, 0.301632941))
  295. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000506877899, -0.000774383545, 3.49609566, 0.999994278, -7.31991967e-011, -4.93830194e-012, 4.78204325e-012, -4.1704161e-006, 0.999994278, -7.22190502e-011, -0.999999702, -4.27469786e-006))
  296. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904898703, 1))
  297. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.5,"Royal purple","Part",Vector3.new(0.904898703, 4.67530966, 0.200000003))
  298. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000299930573, -3.72235155, 0.000774860382, -0.999994278, -6.44028191e-008, 7.45117816e-008, -6.44031601e-008, 0.999999702, 3.93397568e-006, -7.45118669e-008, 3.82969256e-006, -0.999994278))
  299. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.0980306864))
  300. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.452449292, 0.200000003, 0.301632941))
  301. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000506877899, -0.000778675079, 2.74198365, 0.999994278, -7.27333055e-011, -4.87426852e-012, 4.67926956e-012, -3.96196538e-006, 0.999994278, -7.17527218e-011, -0.999999702, -4.06624804e-006))
  302. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904898703, 1))
  303. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.301632911, 0.452449381))
  304. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000200271606, 1.23434317, 0.376773, 1.23888171e-008, 3.24624557e-006, -0.999994278, -8.94632066e-008, -0.999999702, -3.35053187e-006, -0.999994278, 8.94646988e-008, -1.23883597e-008))
  305. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  306. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.301632911, 0.603265882))
  307. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000160217285, -0.301415563, -1.08350956, -1.19206696e-007, -3.91693493e-006, 0.999994278, 0.999994278, 2.97053617e-008, 1.19206646e-007, -2.97066389e-008, 0.999999702, 4.02121714e-006))
  308. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  309. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.452449381, 0.301632911))
  310. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000160217285, 1.00810027, 0.301787853, -2.97987164e-008, -4.72161719e-006, 0.999994278, -7.00291214e-011, -0.999999702, -4.8258953e-006, 0.999994278, -7.11414885e-011, 2.9798553e-008))
  311. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  312. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.200000003, 1.20653164))
  313. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(9.15527344e-005, -0.376680851, 1.98807502, 6.10957045e-007, 2.30473438e-006, -0.999994278, 0.999994278, -5.97264247e-008, 6.10956761e-007, -5.97237104e-008, -0.999999702, -2.40902614e-006))
  314. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  315. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632822, 0.316714555, 0.301632941))
  316. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.452566624, -0.000160217285, 1.23431873, 0.999994278, -6.81050077e-011, -3.46748129e-012, 3.30411198e-012, -3.64876109e-006, 0.999994278, -6.71349226e-011, -0.999999702, -3.75304512e-006))
  317. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  318. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.200000003, 1.20653164))
  319. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000101566315, 0.225869298, 1.98805106, -5.51343817e-007, 2.41004295e-006, 0.999994278, -0.999994278, -5.97035381e-008, -5.51343476e-007, 5.97028773e-008, -0.999999702, 2.30572573e-006))
  320. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  321. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.301632911))
  322. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.22638917, -1.30971909, -0.000157833099, 0.999994278, -7.5721332e-011, -4.24837986e-012, 7.47407344e-011, 0.999999702, 5.4216589e-006, 4.08776485e-012, -5.31738306e-006, 0.999994278))
  323. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 1))
  324. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 2.11143041, 0.200000003))
  325. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.226004958, -2.44035769, 0.000785827637, -0.999994278, -6.44114166e-008, 7.45090389e-008, -6.44119211e-008, 0.999999702, 1.84849864e-006, -7.45090034e-008, 1.7442037e-006, -0.999994278))
  326. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 0.754082263))
  327. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.452449292, 0.200000003, 0.200000003))
  328. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000460863113, 0.00169754028, 2.73375678, 0.999994278, -6.29633429e-011, -4.78628595e-012, 4.66688624e-012, -3.23251811e-006, 0.999994278, -6.19969701e-011, -0.999999702, -3.33680305e-006))
  329. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.942602754, 0.754082263))
  330. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  331. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000160694122, -1.00806975, -0.000158786774, 0.999994278, -8.51322832e-011, -5.37915415e-012, 8.41605743e-011, 0.999999702, 6.15139652e-006, 5.21480515e-012, -6.04712568e-006, 0.999994278))
  332. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  333. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.301632822, 0.331796169, 0.200000003))
  334. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.452520609, -9.58442688e-005, 1.23446751, 0.999994278, -5.5805336e-011, -2.06513279e-012, 1.90487188e-012, -8.32826402e-007, 0.999994278, -5.48248356e-011, -0.999999702, -9.37126288e-007))
  335. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.754082322))
  336. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  337. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000160694122, -0.857257009, -0.000160217285, 0.999994278, -8.12544892e-011, -4.6401741e-012, 8.02827874e-011, 0.999999702, 5.73445595e-006, 4.46345478e-012, -5.63018284e-006, 0.999994278))
  338. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  339. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 2.11143041, 0.200000003))
  340. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.22638917, -2.44035769, -0.000775337219, 0.999994278, -7.71317871e-011, -4.71892274e-012, 7.61511756e-011, 0.999999702, 6.04763136e-006, 4.55825265e-012, -5.94335961e-006, 0.999994278))
  341. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 0.754082263))
  342. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Part",Vector3.new(0.301632881, 0.301632911, 0.200000003))
  343. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.2649765e-005, -4.76837158e-007, -1.40486121, -1, -4.85088315e-012, -9.87589459e-013, 9.87591953e-013, -5.21260915e-007, -1, 4.85088272e-012, -1, 5.21260915e-007))
  344. CreateMesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0935061872, 0.18248795, 0.334812433))
  345. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  346. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000160694122, -0.103231549, -0.00016450882, 0.999994278, -8.12544892e-011, -4.6401741e-012, 8.02827874e-011, 0.999999702, 5.73445595e-006, 4.46345478e-012, -5.63018284e-006, 0.999994278))
  347. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  348. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.301632911, 0.452449381))
  349. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000157356262, -0.452600718, 1.46049201, 3.77276812e-012, -5.00457736e-006, 0.999994278, -0.999994278, 2.98778282e-008, 4.08561423e-012, -2.98766878e-008, -0.999999702, -5.10885457e-006))
  350. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  351. Hitbox=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,1,"Royal purple","Hitbox",Vector3.new(0.904898703, 6.27530956, 0.200000003))
  352. Hitboxweld=CreateWeld(m,FakeHandle,Hitbox,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000299930573, -4.52235365, 0.000774860382, -0.999994278, -6.44028191e-008, 7.45117816e-008, -6.44031601e-008, 0.999999702, 3.93397568e-006, -7.45118669e-008, 3.82969256e-006, -0.999994278))
  353. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.452449381))
  354. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00029706955, 0.00348496437, 6.28616476, -1.49025681e-008, 4.09715824e-007, -0.999994278, 0.999994278, 1.89689203e-007, -1.49026409e-008, 1.89689132e-007, -0.999999702, -5.14017074e-007))
  355. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.791786313, 0.754082263, 1))
  356. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  357. Partweld=CreateWeld(m,FakeHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00029706955, 0.00348496437, 6.13534832, -1.49025681e-008, 4.0970491e-007, -0.999994278, 0.999994278, 1.89689203e-007, -1.49026409e-008, 1.89689132e-007, -0.999999702, -5.1400616e-007))
  358. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.806038439, 0.102555193, 0.754082263))
  359. ----------------------------------------------------
  360. z = Instance.new("Sound", char)
  361. z.SoundId = "rbxassetid://435603951" --242463565
  362. z.Looped = true
  363. z.Pitch = 1
  364. z.Volume = 1
  365. wait(.01)
  366. z:Play()
  367. ----------------------------------------------------
  368. local m = Instance.new("Model")
  369. m.Name = "Absolution"
  370. --[[p1 = Instance.new("Part", m)
  371. p1.BrickColor = BrickColor.new("Bright blue")
  372. p1.FormFactor = Enum.FormFactor.Custom
  373. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  374. p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
  375. p1.CanCollide = false
  376. p1.Locked = true
  377. p1.Elasticity = 0
  378. p1.BottomSurface = Enum.SurfaceType.Smooth
  379. p1.TopSurface = Enum.SurfaceType.Smooth
  380. b1 = Instance.new("SpecialMesh", p1)
  381. b1.MeshType = Enum.MeshType.Wedge
  382. b1.Name = "Mesh"
  383. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  384. p2 = Instance.new("Part", m)
  385. p2.BrickColor = BrickColor.new("Really black")
  386. p2.FormFactor = Enum.FormFactor.Custom
  387. p2.Size = Vector3.new(1, 2.9000001, 1)
  388. p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
  389. p2.CanCollide = false
  390. p2.Locked = true
  391. p2.Elasticity = 0
  392. p2.BottomSurface = Enum.SurfaceType.Smooth
  393. p2.TopSurface = Enum.SurfaceType.Smooth
  394. b2 = Instance.new("BlockMesh", p2)
  395. b2.Name = "Mesh"
  396. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  397. p3 = Instance.new("Part", m)
  398. p3.BrickColor = BrickColor.new("Bright blue")
  399. p3.FormFactor = Enum.FormFactor.Custom
  400. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  401. p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
  402. p3.CanCollide = false
  403. p3.Locked = true
  404. p3.Elasticity = 0
  405. p3.BottomSurface = Enum.SurfaceType.Smooth
  406. p3.TopSurface = Enum.SurfaceType.Smooth
  407. b3 = Instance.new("SpecialMesh", p3)
  408. b3.MeshType = Enum.MeshType.Wedge
  409. b3.Name = "Mesh"
  410. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  411. p4 = Instance.new("Part", m)
  412. p4.BrickColor = BrickColor.new("Bright blue")
  413. p4.FormFactor = Enum.FormFactor.Custom
  414. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  415. p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
  416. p4.CanCollide = false
  417. p4.Locked = true
  418. p4.Elasticity = 0
  419. p4.BottomSurface = Enum.SurfaceType.Smooth
  420. p4.TopSurface = Enum.SurfaceType.Smooth
  421. b4 = Instance.new("SpecialMesh", p4)
  422. b4.MeshType = Enum.MeshType.Wedge
  423. b4.Name = "Mesh"
  424. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  425. p5 = Instance.new("Part", m)
  426. p5.BrickColor = BrickColor.new("Bright blue")
  427. p5.FormFactor = Enum.FormFactor.Custom
  428. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  429. p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
  430. p5.CanCollide = false
  431. p5.Locked = true
  432. p5.Elasticity = 0
  433. p5.BottomSurface = Enum.SurfaceType.Smooth
  434. p5.TopSurface = Enum.SurfaceType.Smooth
  435. b5 = Instance.new("SpecialMesh", p5)
  436. b5.MeshType = Enum.MeshType.Wedge
  437. b5.Name = "Mesh"
  438. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  439. p6 = Instance.new("Part", m)
  440. p6.Name = "Handle"
  441. p6.BrickColor = BrickColor.new("Really black")
  442. p6.FormFactor = Enum.FormFactor.Custom
  443. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  444. p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
  445. p6.CanCollide = false
  446. p6.Locked = true
  447. p6.Elasticity = 0
  448. p6.BottomSurface = Enum.SurfaceType.Smooth
  449. p6.TopSurface = Enum.SurfaceType.Smooth
  450. b6 = Instance.new("BlockMesh", p6)
  451. b6.Name = "Mesh"
  452. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  453. p7 = Instance.new("Part", m)
  454. p7.BrickColor = BrickColor.new("Bright blue")
  455. p7.FormFactor = Enum.FormFactor.Custom
  456. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  457. p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
  458. p7.CanCollide = false
  459. p7.Locked = true
  460. p7.Elasticity = 0
  461. p7.BottomSurface = Enum.SurfaceType.Smooth
  462. p7.TopSurface = Enum.SurfaceType.Smooth
  463. b7 = Instance.new("SpecialMesh", p7)
  464. b7.MeshType = Enum.MeshType.Wedge
  465. b7.Name = "Mesh"
  466. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  467. p8 = Instance.new("Part", m)
  468. p8.BrickColor = BrickColor.new("Bright blue")
  469. p8.FormFactor = Enum.FormFactor.Custom
  470. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  471. p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
  472. p8.CanCollide = false
  473. p8.Locked = true
  474. p8.Elasticity = 0
  475. p8.BottomSurface = Enum.SurfaceType.Smooth
  476. p8.TopSurface = Enum.SurfaceType.Smooth
  477. b8 = Instance.new("SpecialMesh", p8)
  478. b8.MeshType = Enum.MeshType.Wedge
  479. b8.Name = "Mesh"
  480. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  481. p9 = Instance.new("Part", m)
  482. p9.BrickColor = BrickColor.new("Really black")
  483. p9.FormFactor = Enum.FormFactor.Custom
  484. p9.Size = Vector3.new(1, 1.07999957, 1)
  485. p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
  486. p9.CanCollide = false
  487. p9.Locked = true
  488. p9.Elasticity = 0
  489. p9.BottomSurface = Enum.SurfaceType.Smooth
  490. p9.TopSurface = Enum.SurfaceType.Smooth
  491. b9 = Instance.new("BlockMesh", p9)
  492. b9.Name = "Mesh"
  493. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  494. p10 = Instance.new("Part", m)
  495. p10.BrickColor = BrickColor.new("Really black")
  496. p10.FormFactor = Enum.FormFactor.Custom
  497. p10.Size = Vector3.new(1, 1.41999948, 1)
  498. p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
  499. p10.CanCollide = false
  500. p10.Locked = true
  501. p10.Elasticity = 0
  502. p10.BottomSurface = Enum.SurfaceType.Smooth
  503. p10.TopSurface = Enum.SurfaceType.Smooth
  504. b10 = Instance.new("BlockMesh", p10)
  505. b10.Name = "Mesh"
  506. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  507. p11 = Instance.new("Part", m)
  508. p11.BrickColor = BrickColor.new("Really black")
  509. p11.FormFactor = Enum.FormFactor.Custom
  510. p11.Size = Vector3.new(1, 1.50999951, 1)
  511. p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
  512. p11.CanCollide = false
  513. p11.Locked = true
  514. p11.Elasticity = 0
  515. p11.BottomSurface = Enum.SurfaceType.Smooth
  516. p11.TopSurface = Enum.SurfaceType.Smooth
  517. b11 = Instance.new("BlockMesh", p11)
  518. b11.Name = "Mesh"
  519. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  520. p12 = Instance.new("Part", m)
  521. p12.Name = "BladeCenter"
  522. p12.BrickColor = BrickColor.new("Dark stone grey")
  523. p12.Material = Enum.Material.Concrete
  524. p12.FormFactor = Enum.FormFactor.Symmetric
  525. p12.Size = Vector3.new(1, 2, 2)
  526. p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
  527. p12.CanCollide = false
  528. p12.Locked = true
  529. p12.BottomSurface = Enum.SurfaceType.Smooth
  530. p12.TopSurface = Enum.SurfaceType.Smooth
  531. b12 = Instance.new("SpecialMesh", p12)
  532. b12.MeshType = Enum.MeshType.Brick
  533. b12.Name = "Mesh"
  534. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  535. p13 = Instance.new("Part", m)
  536. p13.BrickColor = BrickColor.new("Really black")
  537. p13.FormFactor = Enum.FormFactor.Custom
  538. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  539. p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
  540. p13.CanCollide = false
  541. p13.Locked = true
  542. p13.Elasticity = 0
  543. p13.BottomSurface = Enum.SurfaceType.Smooth
  544. p13.TopSurface = Enum.SurfaceType.Smooth
  545. b13 = Instance.new("BlockMesh", p13)
  546. b13.Name = "Mesh"
  547. b13.Scale = Vector3.new(1, 1, 0.400000006)
  548. p14 = Instance.new("Part", m)
  549. p14.BrickColor = BrickColor.new("Really black")
  550. p14.FormFactor = Enum.FormFactor.Custom
  551. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  552. p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
  553. p14.CanCollide = false
  554. p14.Locked = true
  555. p14.Elasticity = 0
  556. p14.BottomSurface = Enum.SurfaceType.Smooth
  557. p14.TopSurface = Enum.SurfaceType.Smooth
  558. b14 = Instance.new("BlockMesh", p14)
  559. b14.Name = "Mesh"
  560. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  561. p15 = Instance.new("Part", m)
  562. p15.BrickColor = BrickColor.new("Really black")
  563. p15.FormFactor = Enum.FormFactor.Custom
  564. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  565. p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
  566. p15.CanCollide = false
  567. p15.Locked = true
  568. p15.Elasticity = 0
  569. p15.BottomSurface = Enum.SurfaceType.Smooth
  570. p15.TopSurface = Enum.SurfaceType.Smooth
  571. b15 = Instance.new("BlockMesh", p15)
  572. b15.Name = "Mesh"
  573. b15.Scale = Vector3.new(1, 1, 0.400000006)
  574. p16 = Instance.new("Part", m)
  575. p16.BrickColor = BrickColor.new("Really black")
  576. p16.FormFactor = Enum.FormFactor.Custom
  577. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  578. p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
  579. p16.CanCollide = false
  580. p16.Locked = true
  581. p16.Elasticity = 0
  582. p16.BottomSurface = Enum.SurfaceType.Smooth
  583. p16.TopSurface = Enum.SurfaceType.Smooth
  584. b16 = Instance.new("BlockMesh", p16)
  585. b16.Name = "Mesh"
  586. b16.Scale = Vector3.new(1, 1, 0.400000006)
  587. p17 = Instance.new("Part", m)
  588. p17.BrickColor = BrickColor.new("Really black")
  589. p17.FormFactor = Enum.FormFactor.Custom
  590. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  591. p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
  592. p17.CanCollide = false
  593. p17.Locked = true
  594. p17.Elasticity = 0
  595. p17.BottomSurface = Enum.SurfaceType.Smooth
  596. p17.TopSurface = Enum.SurfaceType.Smooth
  597. b17 = Instance.new("BlockMesh", p17)
  598. b17.Name = "Mesh"
  599. b17.Scale = Vector3.new(1, 1, 0.400000006)
  600. p18 = Instance.new("WedgePart", m)
  601. p18.BrickColor = BrickColor.new("Dark stone grey")
  602. p18.Name = "BladePart1"
  603. p18.Material = Enum.Material.Concrete
  604. p18.Name = "Wedge"
  605. p18.FormFactor = Enum.FormFactor.Symmetric
  606. p18.Size = Vector3.new(1, 4, 2)
  607. p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
  608. p18.CanCollide = false
  609. p18.Locked = true
  610. p18.BottomSurface = Enum.SurfaceType.Smooth
  611. p18.TopSurface = Enum.SurfaceType.Smooth
  612. b18 = Instance.new("SpecialMesh", p18)
  613. b18.MeshType = Enum.MeshType.Wedge
  614. b18.Name = "Mesh"
  615. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  616. p19 = Instance.new("WedgePart", m)
  617. p19.BrickColor = BrickColor.new("Dark stone grey")
  618. p19.Name = "BladePart2"
  619. p19.Material = Enum.Material.Concrete
  620. p19.Name = "Wedge"
  621. p19.FormFactor = Enum.FormFactor.Symmetric
  622. p19.Size = Vector3.new(1, 4, 2)
  623. p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
  624. p19.CanCollide = false
  625. p19.Locked = true
  626. p19.BottomSurface = Enum.SurfaceType.Smooth
  627. p19.TopSurface = Enum.SurfaceType.Smooth
  628. b19 = Instance.new("SpecialMesh", p19)
  629. b19.MeshType = Enum.MeshType.Wedge
  630. b19.Name = "Mesh"
  631. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  632. p20 = Instance.new("Part", m)
  633. p20.BrickColor = BrickColor.new("Really black")
  634. p20.FormFactor = Enum.FormFactor.Custom
  635. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  636. p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
  637. p20.CanCollide = false
  638. p20.Locked = true
  639. p20.Elasticity = 0
  640. p20.BottomSurface = Enum.SurfaceType.Smooth
  641. p20.TopSurface = Enum.SurfaceType.Smooth
  642. b20 = Instance.new("BlockMesh", p20)
  643. b20.Name = "Mesh"
  644. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  645. p21 = Instance.new("Part", m)
  646. p21.BrickColor = BrickColor.new("Bright blue")
  647. p21.FormFactor = Enum.FormFactor.Custom
  648. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  649. p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
  650. p21.CanCollide = false
  651. p21.Locked = true
  652. p21.Elasticity = 0
  653. p21.BottomSurface = Enum.SurfaceType.Smooth
  654. p21.TopSurface = Enum.SurfaceType.Smooth
  655. b21 = Instance.new("SpecialMesh", p21)
  656. b21.MeshType = Enum.MeshType.Wedge
  657. b21.Name = "Mesh"
  658. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  659. w1 = Instance.new("Weld", p1)
  660. w1.Name = "Part_Weld"
  661. w1.Part0 = p1
  662. w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  663. w1.Part1 = p2
  664. w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  665. w2 = Instance.new("Weld", p2)
  666. w2.Name = "Part_Weld"
  667. w2.Part0 = p2
  668. w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  669. w2.Part1 = p3
  670. w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  671. w3 = Instance.new("Weld", p3)
  672. w3.Name = "Part_Weld"
  673. w3.Part0 = p3
  674. w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  675. w3.Part1 = p4
  676. w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  677. w4 = Instance.new("Weld", p4)
  678. w4.Name = "Part_Weld"
  679. w4.Part0 = p4
  680. w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  681. w4.Part1 = p5
  682. w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  683. w5 = Instance.new("Weld", p5)
  684. w5.Name = "Part_Weld"
  685. w5.Part0 = p5
  686. w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  687. w5.Part1 = p6
  688. w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  689. w6 = Instance.new("Weld", p6)
  690. w6.Name = "Part_Weld"
  691. w6.Part0 = p6
  692. w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  693. w6.Part1 = p7
  694. w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  695. w7 = Instance.new("Weld", p7)
  696. w7.Name = "Part_Weld"
  697. w7.Part0 = p7
  698. w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  699. w7.Part1 = p8
  700. w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  701. w8 = Instance.new("Weld", p8)
  702. w8.Name = "Part_Weld"
  703. w8.Part0 = p8
  704. w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  705. w8.Part1 = p9
  706. w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  707. w9 = Instance.new("Weld", p9)
  708. w9.Name = "Part_Weld"
  709. w9.Part0 = p9
  710. w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  711. w9.Part1 = p10
  712. w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  713. w10 = Instance.new("Weld", p10)
  714. w10.Name = "Part_Weld"
  715. w10.Part0 = p10
  716. w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  717. w10.Part1 = p11
  718. w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  719. w11 = Instance.new("Weld", p11)
  720. w11.Name = "Part_Weld"
  721. w11.Part0 = p11
  722. w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  723. w11.Part1 = p12
  724. w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  725. w12 = Instance.new("Weld", p12)
  726. w12.Name = "Part_Weld"
  727. w12.Part0 = p12
  728. w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  729. w12.Part1 = p13
  730. w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  731. w13 = Instance.new("Weld", p13)
  732. w13.Name = "Part_Weld"
  733. w13.Part0 = p13
  734. w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  735. w13.Part1 = p14
  736. w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  737. w14 = Instance.new("Weld", p14)
  738. w14.Name = "Part_Weld"
  739. w14.Part0 = p14
  740. w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  741. w14.Part1 = p15
  742. w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  743. w15 = Instance.new("Weld", p15)
  744. w15.Name = "Part_Weld"
  745. w15.Part0 = p15
  746. w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  747. w15.Part1 = p16
  748. w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  749. w16 = Instance.new("Weld", p16)
  750. w16.Name = "Part_Weld"
  751. w16.Part0 = p16
  752. w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  753. w16.Part1 = p17
  754. w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  755. w17 = Instance.new("Weld", p17)
  756. w17.Name = "Wedge_Weld"
  757. w17.Part0 = p17
  758. w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  759. w17.Part1 = p18
  760. w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  761. w18 = Instance.new("Weld", p18)
  762. w18.Name = "Wedge_Weld"
  763. w18.Part0 = p18
  764. w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  765. w18.Part1 = p19
  766. w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  767. w19 = Instance.new("Weld", p19)
  768. w19.Name = "Part_Weld"
  769. w19.Part0 = p19
  770. w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  771. w19.Part1 = p20
  772. w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  773. w20 = Instance.new("Weld", p20)
  774. w20.Name = "Part_Weld"
  775. w20.Part0 = p20
  776. w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  777. w20.Part1 = p21
  778. w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637) ]]
  779. m.Parent = char
  780. m:MakeJoints()
  781. ----------------------------------------------------
  782. local cor = Instance.new("Part", char.Absolution)
  783. cor.Name = "Thingy"
  784. cor.Locked = true
  785. cor.BottomSurface = 0
  786. cor.CanCollide = false
  787. cor.Size = Vector3.new(1, 13, 1)
  788. cor.Transparency = 1
  789. cor.TopSurface = 0
  790. corw = Instance.new("Weld", cor)
  791. corw.Part0 = rarm
  792. corw.Part1 = cor
  793. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  794. corw.C1 = CFrame.new(0, 0, 0)
  795. weld1 = Instance.new("Weld", char.Absolution)
  796. weld1.Part0 = cor
  797. weld1.Part1 = p6
  798. weld1.C0 = CFrame.new(0, 0, 0)
  799. ----------------------------------------------------
  800. hitb = Instance.new("Part", char.Absolution)
  801. hitb.Name = "Thingy2"
  802. hitb.Locked = true
  803. hitb.BottomSurface = 0
  804. hitb.CanCollide = false
  805. hitb.Size = Vector3.new(0, 8, 6)
  806. hitb.Transparency = 1
  807. hitb.TopSurface = 0
  808. weld2 = Instance.new("Weld", char.Absolution)
  809. weld2.Part0 = hitb
  810. weld2.Part1 = p12
  811. weld2.C0 = CFrame.new(0, .6, 1)
  812. ----------------------------------------------------
  813. local m = Instance.new("Model")
  814. m.Name = "Claw"
  815. --[[p1 = Instance.new("Part", m)
  816. p1.BrickColor = BrickColor.new("Really black")
  817. p1.FormFactor = Enum.FormFactor.Custom
  818. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  819. p1.CFrame = CFrame.new(2.91120553, 6.79703379, -19.5339718, -0.205515206, -0.209888965, 0.955883741, 0.52527827, -0.847774804, -0.0732159689, 0.825741529, 0.487057745, 0.284480691)
  820. p1.CanCollide = false
  821. p1.Locked = true
  822. p1.BottomSurface = Enum.SurfaceType.Smooth
  823. p1.TopSurface = Enum.SurfaceType.Smooth
  824. b1 = Instance.new("BlockMesh", p1)
  825. b1.Name = "Mesh"
  826. p2 = Instance.new("WedgePart", m)
  827. p2.BrickColor = BrickColor.new("Really black")
  828. p2.Name = "Wedge"
  829. p2.FormFactor = Enum.FormFactor.Custom
  830. p2.Size = Vector3.new(3, 1, 0.5)
  831. p2.CFrame = CFrame.new(2.94872427, 6.13246727, -16.5004997, -5.96046448e-008, -4.47034836e-008, -1.00000358, -1.3615936e-005, 0.99999994, 4.47034836e-008, 1.00000358, 1.41002238e-005, 0)
  832. p2.CanCollide = false
  833. p2.Locked = true
  834. p2.BottomSurface = Enum.SurfaceType.Smooth
  835. p2.TopSurface = Enum.SurfaceType.Smooth
  836. p3 = Instance.new("Part", m)
  837. p3.BrickColor = BrickColor.new("Really black")
  838. p3.FormFactor = Enum.FormFactor.Custom
  839. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  840. p3.CFrame = CFrame.new(1.84869456, 6.79700661, -18.5422173, -5.06400113e-008, 1.07230136e-007, 1.00000715, -0.499905825, -0.866079628, -1.1125789e-007, 0.86608547, -0.499910295, -2.17476881e-008)
  841. p3.CanCollide = false
  842. p3.Locked = true
  843. p3.BottomSurface = Enum.SurfaceType.Smooth
  844. p3.TopSurface = Enum.SurfaceType.Smooth
  845. b2 = Instance.new("BlockMesh", p3)
  846. b2.Name = "Mesh"
  847. p4 = Instance.new("WedgePart", m)
  848. p4.BrickColor = BrickColor.new("Really black")
  849. p4.Name = "Wedge"
  850. p4.FormFactor = Enum.FormFactor.Custom
  851. p4.Size = Vector3.new(3, 1, 0.5)
  852. p4.CFrame = CFrame.new(0.0487272739, 4.13279819, -16.5004959, -1.62921424e-007, 1.78814929e-007, 1.00001431, -1.2755394e-005, -0.999999762, -1.78813849e-007, 1.00001431, -1.46627426e-005, -7.54998553e-008)
  853. p4.CanCollide = false
  854. p4.Locked = true
  855. p4.BottomSurface = Enum.SurfaceType.Smooth
  856. p4.TopSurface = Enum.SurfaceType.Smooth
  857. p5 = Instance.new("Part", m)
  858. p5.BrickColor = BrickColor.new("Really black")
  859. p5.FormFactor = Enum.FormFactor.Custom
  860. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  861. p5.CFrame = CFrame.new(1.84874606, 6.79701567, -19.6422844, -4.29027068e-007, 1.9046513e-007, 1.00001431, 0.500089467, -0.865973532, 2.18601315e-008, 0.865987122, 0.50009501, 3.78533827e-008)
  862. p5.CanCollide = false
  863. p5.Locked = true
  864. p5.BottomSurface = Enum.SurfaceType.Smooth
  865. p5.TopSurface = Enum.SurfaceType.Smooth
  866. b3 = Instance.new("BlockMesh", p5)
  867. b3.Name = "Mesh"
  868. p6 = Instance.new("Part", m)
  869. p6.BrickColor = BrickColor.new("Really black")
  870. p6.FormFactor = Enum.FormFactor.Custom
  871. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  872. p6.CFrame = CFrame.new(2.61122823, 6.79701757, -18.433939, -0.250001401, 0.0669622123, 0.965941966, -0.491382152, -0.868364573, -0.0669801831, 0.834303975, -0.491393685, 0.249996051)
  873. p6.CanCollide = false
  874. p6.Locked = true
  875. p6.BottomSurface = Enum.SurfaceType.Smooth
  876. p6.TopSurface = Enum.SurfaceType.Smooth
  877. b4 = Instance.new("BlockMesh", p6)
  878. b4.Name = "Mesh"
  879. p7 = Instance.new("Part", m)
  880. p7.BrickColor = BrickColor.new("Really black")
  881. p7.FormFactor = Enum.FormFactor.Custom
  882. p7.Size = Vector3.new(3, 1, 1.20000005)
  883. p7.CFrame = CFrame.new(2.59874034, 5.13276958, -16.5005379, -3.27825546e-007, -3.57627869e-007, -1.00001431, -0.000133868307, 0.99999994, 1.49011612e-008, 1.00001442, 0.000135900453, -5.96046448e-008)
  884. p7.CanCollide = false
  885. p7.Locked = true
  886. p7.BottomSurface = Enum.SurfaceType.Smooth
  887. p7.TopSurface = Enum.SurfaceType.Smooth
  888. b5 = Instance.new("BlockMesh", p7)
  889. b5.Name = "Mesh"
  890. p8 = Instance.new("Part", m)
  891. p8.BrickColor = BrickColor.new("Bright blue")
  892. p8.FormFactor = Enum.FormFactor.Symmetric
  893. p8.Size = Vector3.new(1, 1, 1)
  894. p8.CFrame = CFrame.new(1.84841466, 6.25537968, -20.3997307, -1.42129729e-005, 0.00428489037, -1.00000513, 0.965967655, 0.258660465, 0.00109496934, 0.258668512, -0.965972245, -0.00414247159)
  895. p8.CanCollide = false
  896. p8.Locked = true
  897. b6 = Instance.new("SpecialMesh", p8)
  898. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  899. b6.TextureId = ""
  900. b6.MeshType = Enum.MeshType.FileMesh
  901. b6.Name = "Mesh"
  902. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  903. p9 = Instance.new("Part", m)
  904. p9.BrickColor = BrickColor.new("Really black")
  905. p9.FormFactor = Enum.FormFactor.Custom
  906. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  907. p9.CFrame = CFrame.new(2.79691935, 3.68131566, -18.264101, -0.277095288, -0.561500967, -0.779720128, 0.631033003, 0.505603611, -0.58835566, 0.724593103, -0.655058563, 0.214224264)
  908. p9.CanCollide = false
  909. p9.Locked = true
  910. p9.BottomSurface = Enum.SurfaceType.Smooth
  911. p9.TopSurface = Enum.SurfaceType.Smooth
  912. b7 = Instance.new("BlockMesh", p9)
  913. b7.Name = "Mesh"
  914. p10 = Instance.new("Part", m)
  915. p10.BrickColor = BrickColor.new("Bright blue")
  916. p10.FormFactor = Enum.FormFactor.Symmetric
  917. p10.Size = Vector3.new(1, 1, 1)
  918. p10.CFrame = CFrame.new(3.09846497, 6.25236273, -20.2996788, -0.0669716895, 0.254178405, -0.964850724, 0.96595335, 0.258713901, 0.00110733509, 0.249903828, -0.93192625, -0.262850702)
  919. p10.CanCollide = false
  920. p10.Locked = true
  921. b8 = Instance.new("SpecialMesh", p10)
  922. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  923. b8.TextureId = ""
  924. b8.MeshType = Enum.MeshType.FileMesh
  925. b8.Name = "Mesh"
  926. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  927. p11 = Instance.new("Part", m)
  928. p11.BrickColor = BrickColor.new("Really black")
  929. p11.FormFactor = Enum.FormFactor.Custom
  930. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  931. p11.CFrame = CFrame.new(0.386122227, 6.79699421, -18.533905, 0.250022948, -0.0669473261, 0.965937555, -0.491377324, -0.868365645, 0.0670026764, 0.834300399, -0.491393894, -0.250007868)
  932. p11.CanCollide = false
  933. p11.Locked = true
  934. p11.BottomSurface = Enum.SurfaceType.Smooth
  935. p11.TopSurface = Enum.SurfaceType.Smooth
  936. b9 = Instance.new("BlockMesh", p11)
  937. b9.Name = "Mesh"
  938. p12 = Instance.new("Part", m)
  939. p12.BrickColor = BrickColor.new("Really black")
  940. p12.FormFactor = Enum.FormFactor.Custom
  941. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  942. p12.CFrame = CFrame.new(1.14871967, 6.79700947, -19.6422291, -4.76837158e-007, 2.83122063e-007, 1.00001442, 0.500089884, -0.865973473, 4.47034836e-008, 0.865987122, 0.500095367, 1.49011612e-008)
  943. p12.CanCollide = false
  944. p12.Locked = true
  945. p12.BottomSurface = Enum.SurfaceType.Smooth
  946. p12.TopSurface = Enum.SurfaceType.Smooth
  947. b10 = Instance.new("BlockMesh", p12)
  948. b10.Name = "Mesh"
  949. p13 = Instance.new("Part", m)
  950. p13.BrickColor = BrickColor.new("Really black")
  951. p13.FormFactor = Enum.FormFactor.Custom
  952. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  953. p13.CFrame = CFrame.new(1.14870512, 6.79699612, -18.5421638, -4.63888163e-008, 5.08347114e-007, 1.00001442, -0.499899268, -0.866083562, -2.18518963e-008, 0.866095126, -0.499908328, 3.78581007e-008)
  954. p13.CanCollide = false
  955. p13.Locked = true
  956. p13.BottomSurface = Enum.SurfaceType.Smooth
  957. p13.TopSurface = Enum.SurfaceType.Smooth
  958. b11 = Instance.new("BlockMesh", p13)
  959. b11.Name = "Mesh"
  960. p14 = Instance.new("Part", m)
  961. p14.BrickColor = BrickColor.new("Bright blue")
  962. p14.FormFactor = Enum.FormFactor.Symmetric
  963. p14.Size = Vector3.new(1, 1, 1)
  964. p14.CFrame = CFrame.new(1.14845455, 6.25537348, -20.3996773, -1.42545232e-005, 0.00425684778, -1.00000536, 0.965958476, 0.258694947, 0.00108788908, 0.258703023, -0.965963125, -0.00411536777)
  965. p14.CanCollide = false
  966. p14.Locked = true
  967. b12 = Instance.new("SpecialMesh", p14)
  968. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  969. b12.TextureId = ""
  970. b12.MeshType = Enum.MeshType.FileMesh
  971. b12.Name = "Mesh"
  972. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  973. p15 = Instance.new("Part", m)
  974. p15.BrickColor = BrickColor.new("Medium stone grey")
  975. p15.Transparency = 1
  976. p15.Name = "ArmPart"
  977. p15.FormFactor = Enum.FormFactor.Custom
  978. p15.Size = Vector3.new(2, 1, 1)
  979. p15.CFrame = CFrame.new(1.49875152, 5.13257265, -16.0004654, -2.99420208e-007, 4.39002179e-007, 1.00001442, 0.00011029192, -1, 0, 1.00001454, 0.000108176115, 4.42378223e-008)
  980. p15.CanCollide = false
  981. p15.Locked = true
  982. p15.BottomSurface = Enum.SurfaceType.Smooth
  983. p15.TopSurface = Enum.SurfaceType.Smooth
  984. b13 = Instance.new("BlockMesh", p15)
  985. b13.Name = "Mesh"
  986. p16 = Instance.new("Part", m)
  987. p16.BrickColor = BrickColor.new("Really black")
  988. p16.FormFactor = Enum.FormFactor.Custom
  989. p16.Size = Vector3.new(3, 1, 2.4000001)
  990. p16.CFrame = CFrame.new(1.49872661, 6.13250732, -16.5007095, -2.98894406e-007, 4.39006953e-007, 1.00001442, 0.000110270419, -1, 4.71678729e-012, 1.00001454, 0.000108154614, 4.37120207e-008)
  991. p16.CanCollide = false
  992. p16.Locked = true
  993. p16.BottomSurface = Enum.SurfaceType.Smooth
  994. p16.TopSurface = Enum.SurfaceType.Smooth
  995. b14 = Instance.new("BlockMesh", p16)
  996. b14.Name = "Mesh"
  997. p17 = Instance.new("Part", m)
  998. p17.BrickColor = BrickColor.new("Really black")
  999. p17.FormFactor = Enum.FormFactor.Custom
  1000. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  1001. p17.CFrame = CFrame.new(2.77308726, 3.37837577, -19.2558823, 0.396035522, -0.497440547, -0.771840453, -0.207958207, 0.770127177, -0.603040278, 0.894391596, 0.399337679, 0.201549783)
  1002. p17.CanCollide = false
  1003. p17.Locked = true
  1004. p17.BottomSurface = Enum.SurfaceType.Smooth
  1005. p17.TopSurface = Enum.SurfaceType.Smooth
  1006. b15 = Instance.new("BlockMesh", p17)
  1007. b15.Name = "Mesh"
  1008. p18 = Instance.new("Part", m)
  1009. p18.BrickColor = BrickColor.new("Bright blue")
  1010. p18.FormFactor = Enum.FormFactor.Symmetric
  1011. p18.Size = Vector3.new(1, 1, 1)
  1012. p18.CFrame = CFrame.new(-0.0516102314, 6.25535488, -20.1996384, 0.066943109, -0.245838761, -0.967011333, 0.965954781, 0.258709013, 0.00110003352, 0.249906152, -0.934162259, 0.254788101)
  1013. p18.CanCollide = false
  1014. p18.Locked = true
  1015. b16 = Instance.new("SpecialMesh", p18)
  1016. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1017. b16.TextureId = ""
  1018. b16.MeshType = Enum.MeshType.FileMesh
  1019. b16.Name = "Mesh"
  1020. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1021. p19 = Instance.new("Part", m)
  1022. p19.BrickColor = BrickColor.new("Bright blue")
  1023. p19.FormFactor = Enum.FormFactor.Symmetric
  1024. p19.Size = Vector3.new(1, 1, 1)
  1025. p19.CFrame = CFrame.new(2.43177533, 3.59484506, -20.0301056, 0.559401393, 0.116905749, 0.820629179, -0.685213447, -0.491872638, 0.537163019, 0.466440916, -0.862796843, -0.195047855)
  1026. p19.CanCollide = false
  1027. p19.Locked = true
  1028. b17 = Instance.new("SpecialMesh", p19)
  1029. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1030. b17.TextureId = ""
  1031. b17.MeshType = Enum.MeshType.FileMesh
  1032. b17.Name = "Mesh"
  1033. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1034. p20 = Instance.new("Part", m)
  1035. p20.BrickColor = BrickColor.new("Really black")
  1036. p20.FormFactor = Enum.FormFactor.Custom
  1037. p20.Size = Vector3.new(3, 1, 2.4000001)
  1038. p20.CFrame = CFrame.new(1.49873698, 4.13275099, -16.500618, -2.38418579e-007, -4.47034836e-007, -1.00001454, -0.000133797526, 1.00000024, -2.98023224e-008, 1.00001466, 0.000135831535, -5.96046448e-008)
  1039. p20.CanCollide = false
  1040. p20.Locked = true
  1041. p20.BottomSurface = Enum.SurfaceType.Smooth
  1042. p20.TopSurface = Enum.SurfaceType.Smooth
  1043. b18 = Instance.new("BlockMesh", p20)
  1044. b18.Name = "Mesh"
  1045. p21 = Instance.new("Part", m)
  1046. p21.BrickColor = BrickColor.new("Really black")
  1047. p21.FormFactor = Enum.FormFactor.Custom
  1048. p21.Size = Vector3.new(3, 1, 1.19999993)
  1049. p21.CFrame = CFrame.new(0.398718834, 5.13273239, -16.5005798, -2.22529991e-007, -4.17224015e-007, -1.00001454, -0.000133820766, 1.00000024, 5.9472427e-012, 1.00001466, 0.000135854774, -4.37120207e-008)
  1050. p21.CanCollide = false
  1051. p21.Locked = true
  1052. p21.BottomSurface = Enum.SurfaceType.Smooth
  1053. p21.TopSurface = Enum.SurfaceType.Smooth
  1054. b19 = Instance.new("BlockMesh", p21)
  1055. b19.Name = "Mesh"
  1056. p22 = Instance.new("WedgePart", m)
  1057. p22.BrickColor = BrickColor.new("Really black")
  1058. p22.Name = "Wedge"
  1059. p22.FormFactor = Enum.FormFactor.Custom
  1060. p22.Size = Vector3.new(3, 1, 0.5)
  1061. p22.CFrame = CFrame.new(2.94884443, 4.13282013, -16.5005474, 1.35156796e-007, 4.17202415e-007, -1.00001454, 1.19470278e-005, -1.00000024, -6.07483681e-013, -1.00001466, -1.39792755e-005, 4.37120278e-008)
  1062. p22.CanCollide = false
  1063. p22.Locked = true
  1064. p22.BottomSurface = Enum.SurfaceType.Smooth
  1065. p22.TopSurface = Enum.SurfaceType.Smooth
  1066. p23 = Instance.new("Part", m)
  1067. p23.BrickColor = BrickColor.new("Really black")
  1068. p23.FormFactor = Enum.FormFactor.Custom
  1069. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  1070. p23.CFrame = CFrame.new(0.111123323, 6.79699326, -19.53405, 0.167916089, 0.220654398, 0.960804224, 0.593452632, -0.800862908, 0.0802069977, 0.787171543, 0.556722164, -0.265425682)
  1071. p23.CanCollide = false
  1072. p23.Locked = true
  1073. p23.BottomSurface = Enum.SurfaceType.Smooth
  1074. p23.TopSurface = Enum.SurfaceType.Smooth
  1075. b20 = Instance.new("BlockMesh", p23)
  1076. b20.Name = "Mesh"
  1077. p24 = Instance.new("WedgePart", m)
  1078. p24.BrickColor = BrickColor.new("Really black")
  1079. p24.Name = "Wedge"
  1080. p24.FormFactor = Enum.FormFactor.Custom
  1081. p24.Size = Vector3.new(3, 1, 0.5)
  1082. p24.CFrame = CFrame.new(0.0487362742, 6.13243389, -16.5004158, -0.000165194273, -0.00030361861, 1.00001442, 0.00304524973, 0.999995589, 0.000303655863, -1.00001013, 0.00304720178, -0.000164449215)
  1083. p24.CanCollide = false
  1084. p24.Locked = true
  1085. p24.BottomSurface = Enum.SurfaceType.Smooth
  1086. p24.TopSurface = Enum.SurfaceType.Smooth
  1087. p25 = Instance.new("Part", m)
  1088. p25.BrickColor = BrickColor.new("Bright blue")
  1089. p25.FormFactor = Enum.FormFactor.Symmetric
  1090. p25.Size = Vector3.new(1, 1, 1)
  1091. p25.CFrame = CFrame.new(1.49870086, 5.13261318, -18.0007782, 1.20991026e-005, -1.00001454, -4.94604174e-005, -1.00000024, -1.16155716e-005, -0.000471511274, 0.000469659513, 4.96469293e-005, -1.00001466)
  1092. p25.CanCollide = false
  1093. p25.Locked = true
  1094. p25.BottomSurface = Enum.SurfaceType.Smooth
  1095. p25.TopSurface = Enum.SurfaceType.Smooth
  1096. b21 = Instance.new("SpecialMesh", p25)
  1097. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1098. b21.TextureId = ""
  1099. b21.MeshType = Enum.MeshType.FileMesh
  1100. b21.Name = "Mesh"
  1101. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  1102. p26 = Instance.new("Part", m)
  1103. p26.BrickColor = BrickColor.new("Really black")
  1104. p26.FormFactor = Enum.FormFactor.Symmetric
  1105. p26.Size = Vector3.new(1, 1, 1)
  1106. p26.CFrame = CFrame.new(1.49868095, 5.13287783, -17.5005093, 0.00030383491, 0.000164763711, -1.00001454, -0.999995768, -0.00302907336, -0.000303868263, -0.00303102471, 1.00001025, 0.000164022902)
  1107. p26.CanCollide = false
  1108. p26.Locked = true
  1109. p26.BottomSurface = Enum.SurfaceType.Smooth
  1110. p26.TopSurface = Enum.SurfaceType.Smooth
  1111. b22 = Instance.new("SpecialMesh", p26)
  1112. b22.MeshType = Enum.MeshType.Brick
  1113. b22.Name = "Mesh"
  1114. w1 = Instance.new("Weld", p1)
  1115. w1.Name = "Wedge_Weld"
  1116. w1.Part0 = p1
  1117. w1.C0 = CFrame.new(13.1579618, 15.8875484, 3.27191186, -0.205515206, 0.52527827, 0.825741529, -0.209888965, -0.847774804, 0.487057745, 0.955883741, -0.0732159689, 0.284480691)
  1118. w1.Part1 = p2
  1119. w1.C1 = CFrame.new(16.5005817, -6.13223743, 2.94872212, -4.37113883e-008, -1.38580826e-005, 1, 0, 1, 1.38580826e-005, -1, 6.05756005e-013, -4.37113883e-008)
  1120. w2 = Instance.new("Weld", p2)
  1121. w2.Name = "Part_Weld"
  1122. w2.Part0 = p2
  1123. w2.C0 = CFrame.new(16.5006275, -6.13223362, 2.94873357, -5.96046448e-008, -1.3615936e-005, 1.00000358, -4.47034836e-008, 0.99999994, 1.41002238e-005, -1.00000358, 4.47034836e-008, 0)
  1124. w2.Part1 = p3
  1125. w2.C1 = CFrame.new(19.4568748, -3.38260746, -1.84870064, -4.37113883e-008, -0.499906301, 0.866079509, 0, -0.866079509, -0.499906301, 1, -2.18515979e-008, 3.78575393e-008)
  1126. w3 = Instance.new("Weld", p3)
  1127. w3.Name = "Wedge_Weld"
  1128. w3.Part0 = p3
  1129. w3.C0 = CFrame.new(19.456995, -3.38268948, -1.84870648, -5.06400113e-008, -0.499905825, 0.86608547, 1.07230136e-007, -0.866079628, -0.499910295, 1.00000715, -1.1125789e-007, -2.17476881e-008)
  1130. w3.Part1 = p4
  1131. w3.C1 = CFrame.new(16.5005646, 4.13256884, -0.0487511083, -4.37113883e-008, -1.37408551e-005, 1, 0, -1, -1.37408551e-005, 1, -6.00631849e-013, 4.37113883e-008)
  1132. w4 = Instance.new("Weld", p4)
  1133. w4.Name = "Part_Weld"
  1134. w4.Part0 = p4
  1135. w4.C0 = CFrame.new(16.5007706, 4.13255453, -0.0487275235, -1.62921424e-007, -1.2755394e-005, 1.00001431, 1.78814929e-007, -0.999999762, -1.46627426e-005, 1.00001431, -1.78813849e-007, -7.54998553e-008)
  1136. w4.Part1 = p5
  1137. w4.C1 = CFrame.new(13.6104183, 15.7089605, -1.84869325, -4.37113883e-008, 0.500093758, 0.865971267, 0, -0.865971267, 0.500093758, 1, 2.18597922e-008, 3.78528071e-008)
  1138. w5 = Instance.new("Weld", p5)
  1139. w5.Name = "Part_Weld"
  1140. w5.Part0 = p5
  1141. w5.C0 = CFrame.new(13.6108379, 15.7090359, -1.84877098, -4.29027068e-007, 0.500089467, 0.865987122, 1.9046513e-007, -0.865973532, 0.50009501, 1.00001431, 2.18601315e-008, 3.78533827e-008)
  1142. w5.Part1 = p6
  1143. w5.C1 = CFrame.new(19.3720245, -3.33087778, 2.54137325, -0.249996737, -0.491388977, 0.834289134, 0.0669635162, -0.868360817, -0.491391122, 0.965928316, -0.0669792444, 0.24999252)
  1144. w6 = Instance.new("Weld", p6)
  1145. w6.Name = "Part_Weld"
  1146. w6.Part0 = p6
  1147. w6.C0 = CFrame.new(19.3722382, -3.33087826, 2.54137945, -0.250001401, -0.491382152, 0.834303975, 0.0669622123, -0.868364573, -0.491393685, 0.965941966, -0.0669801831, 0.249996051)
  1148. w6.Part1 = p7
  1149. w6.C1 = CFrame.new(16.5012703, -5.1305232, 2.59873891, -4.37113883e-008, -0.000135861075, 1, 0, 1, 0.000135861075, -1, 5.9386762e-012, -4.37113883e-008)
  1150. w7 = Instance.new("Weld", p7)
  1151. w7.Name = "Part_Weld"
  1152. w7.Part0 = p7
  1153. w7.C0 = CFrame.new(16.5014496, -5.13052464, 2.59877563, -3.27825546e-007, -0.000133868307, 1.00001442, -3.57627869e-007, 0.99999994, 0.000135900453, -1.00001431, 1.49011612e-008, -5.96046448e-008)
  1154. w7.Part1 = p8
  1155. w7.C1 = CFrame.new(-0.765930653, -21.3311157, 1.75706458, -1.37833995e-005, 0.965968609, 0.258659452, 0.00428466033, 0.258657128, -0.965959728, -0.999990821, 0.00109495374, -0.00414241292)
  1156. w8 = Instance.new("Weld", p8)
  1157. w8.Name = "Part_Weld"
  1158. w8.Part0 = p8
  1159. w8.C0 = CFrame.new(-0.765703201, -21.3314991, 1.75706851, -1.42129729e-005, 0.965967655, 0.258668512, 0.00428489037, 0.258660465, -0.965972245, -1.00000513, 0.00109496934, -0.00414247159)
  1160. w8.Part1 = p9
  1161. w8.C1 = CFrame.new(11.6857395, -12.2548676, 8.25926208, -0.277089596, 0.631037474, 0.724577785, -0.561487973, 0.505604029, -0.655054033, -0.779713154, -0.588350415, 0.214222342)
  1162. w9 = Instance.new("Weld", p9)
  1163. w9.Name = "Part_Weld"
  1164. w9.Part0 = p9
  1165. w9.C0 = CFrame.new(11.6860123, -12.254859, 8.25934601, -0.277095288, 0.631033003, 0.724593103, -0.561500967, 0.505603611, -0.655058563, -0.779720128, -0.58835566, 0.214224264)
  1166. w9.Part1 = p10
  1167. w9.C1 = CFrame.new(-0.759226322, -21.3225994, -2.35311079, -0.0669693872, 0.965954244, 0.249894977, 0.254174918, 0.258710593, -0.931914091, -0.964836895, 0.00110732042, -0.262847036)
  1168. w10 = Instance.new("Weld", p10)
  1169. w10.Name = "Part_Weld"
  1170. w10.Part0 = p10
  1171. w10.C0 = CFrame.new(-0.759016514, -21.3229256, -2.3531487, -0.0669716895, 0.96595335, 0.249903828, 0.254178405, 0.258713901, -0.93192625, -0.964850724, 0.00110733509, -0.262850702)
  1172. w10.Part1 = p11
  1173. w10.C1 = CFrame.new(18.7059784, -3.17931223, -5.46201515, 0.250018269, -0.49138394, 0.834285676, -0.0669495314, -0.86836195, -0.491391063, 0.965923727, 0.0670017004, -0.250004292)
  1174. w11 = Instance.new("Weld", p11)
  1175. w11.Name = "Part_Weld"
  1176. w11.Part0 = p11
  1177. w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46200418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868)
  1178. w11.Part1 = p12
  1179. w11.C1 = CFrame.new(13.6104174, 15.708952, -1.1486963, -4.37113883e-008, 0.500093997, 0.865971148, 0, -0.865971148, 0.500093997, 1, 2.18598029e-008, 3.78528e-008)
  1180. w12 = Instance.new("Weld", p12)
  1181. w12.Name = "Part_Weld"
  1182. w12.Part0 = p12
  1183. w12.C0 = CFrame.new(13.6107903, 15.7090092, -1.1487354, -4.76837158e-007, 0.500089884, 0.865987122, 2.83122063e-007, -0.865973473, 0.500095367, 1.00001442, 4.47034836e-008, 1.49011612e-008)
  1184. w12.Part1 = p13
  1185. w12.C1 = CFrame.new(19.4568653, -3.38261366, -1.14870369, -4.37113883e-008, -0.499906093, 0.866079628, 0, -0.866079628, -0.499906093, 1, -2.1851589e-008, 3.78575429e-008)
  1186. w13 = Instance.new("Weld", p13)
  1187. w13.Name = "Part_Weld"
  1188. w13.Part0 = p13
  1189. w13.C0 = CFrame.new(19.457077, -3.38260937, -1.14871991, -4.63888163e-008, -0.499899268, 0.866095126, 5.08347114e-007, -0.866083562, -0.499908328, 1.00001442, -2.18518963e-008, 3.78581007e-008)
  1190. w13.Part1 = p14
  1191. w13.C1 = CFrame.new(-0.765169621, -21.3281136, 1.05768669, -1.37638153e-005, 0.96595937, 0.258693874, 0.00425664661, 0.258691579, -0.965950608, -0.99999094, 0.00108787336, -0.00411530817)
  1192. w14 = Instance.new("Weld", p14)
  1193. w14.Name = "ArmPart_Weld"
  1194. w14.Part0 = p14
  1195. w14.C0 = CFrame.new(-0.764959335, -21.3284416, 1.05770254, -1.42545232e-005, 0.965958476, 0.258703023, 0.00425684778, 0.258694947, -0.965963125, -1.00000536, 0.00108788908, -0.00411536777)
  1196. w14.Part1 = p15
  1197. w14.C1 = CFrame.new(16.0000172, 5.13429213, -1.49874043, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1198. w15 = Instance.new("Weld", p15)
  1199. w15.Name = "Part_Weld"
  1200. w15.Part0 = p15
  1201. w15.C0 = CFrame.new(16.0001163, 5.13430214, -1.49877143, -2.99420208e-007, 0.00011029192, 1.00001454, 4.39002179e-007, -1, 0.000108176115, 1.00001442, 0, 4.42378223e-008)
  1202. w15.Part1 = p16
  1203. w15.C1 = CFrame.new(16.5000153, 6.13429213, -1.49872518, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1204. w16 = Instance.new("Weld", p16)
  1205. w16.Name = "Part_Weld"
  1206. w16.Part0 = p16
  1207. w16.C0 = CFrame.new(16.5002594, 6.1342907, -1.49874651, -2.98894406e-007, 0.000110270419, 1.00001454, 4.39006953e-007, -1, 0.000108154614, 1.00001442, 4.71678729e-012, 4.37120207e-008)
  1208. w16.Part1 = p17
  1209. w16.C1 = CFrame.new(16.8263168, 6.46704865, 8.05857849, 0.396029502, -0.207962677, 0.894378066, -0.497426808, 0.770130157, 0.399332225, -0.771833658, -0.603034973, 0.201548025)
  1210. w17 = Instance.new("Weld", p17)
  1211. w17.Name = "Part_Weld"
  1212. w17.Part0 = p17
  1213. w17.C0 = CFrame.new(16.8266068, 6.46726036, 8.05869198, 0.396035522, -0.207958207, 0.894391596, -0.497440547, 0.770127177, 0.399337679, -0.771840453, -0.603040278, 0.201549783)
  1214. w17.Part1 = p18
  1215. w17.C1 = CFrame.new(-0.991122723, -20.5004215, 5.08983374, 0.0669417754, 0.965955615, 0.249897182, -0.245835528, 0.258705586, -0.9341501, -0.966997266, 0.00110005983, 0.254784435)
  1216. w18 = Instance.new("Weld", p18)
  1217. w18.Name = "Part_Weld"
  1218. w18.Part0 = p18
  1219. w18.C0 = CFrame.new(-0.990923882, -20.5007305, 5.08983374, 0.066943109, 0.965954781, 0.249906152, -0.245838761, 0.258709013, -0.934162259, -0.967011333, 0.00110003352, 0.254788101)
  1220. w18.Part1 = p19
  1221. w18.C1 = CFrame.new(10.4456682, -15.7977238, -7.8332901, 0.559388936, -0.68521893, 0.466432214, 0.116898462, -0.491870552, -0.862785101, 0.820620954, 0.537157655, -0.195045918)
  1222. w19 = Instance.new("Weld", p19)
  1223. w19.Name = "Part_Weld"
  1224. w19.Part0 = p19
  1225. w19.C0 = CFrame.new(10.4457512, -15.7979813, -7.83342838, 0.559401393, -0.685213447, 0.466440916, 0.116905749, -0.491872638, -0.862796843, 0.820629179, 0.537163019, -0.195047855)
  1226. w19.Part1 = p20
  1227. w19.C1 = CFrame.new(16.5012665, -4.13050127, 1.49876332, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1228. w20 = Instance.new("Weld", p20)
  1229. w20.Name = "Part_Weld"
  1230. w20.Part0 = p20
  1231. w20.C0 = CFrame.new(16.5013981, -4.13050938, 1.498757, -2.38418579e-007, -0.000133797526, 1.00001466, -4.47034836e-007, 1.00000024, 0.000135831535, -1.00001454, -2.98023224e-008, -5.96046448e-008)
  1232. w20.Part1 = p21
  1233. w20.C1 = CFrame.new(16.5012627, -5.13048887, 0.39874959, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1234. w21 = Instance.new("Weld", p21)
  1235. w21.Name = "Wedge_Weld"
  1236. w21.Part0 = p21
  1237. w21.C0 = CFrame.new(16.5014935, -5.13049126, 0.398722976, -2.22529991e-007, -0.000133820766, 1.00001466, -4.17224015e-007, 1.00000024, 0.000135854774, -1.00001454, 5.9472427e-012, -4.37120207e-008)
  1238. w21.Part1 = p22
  1239. w21.C1 = CFrame.new(-16.5005875, 4.13259029, 2.94876933, -4.37113883e-008, 1.39792737e-005, -1, 0, -1, -1.39792737e-005, -1, -6.11053471e-013, 4.37113883e-008)
  1240. w22 = Instance.new("Weld", p22)
  1241. w22.Name = "Part_Weld"
  1242. w22.Part0 = p22
  1243. w22.C0 = CFrame.new(-16.500824, 4.13258791, 2.94888711, 1.35156796e-007, 1.19470278e-005, -1.00001466, 4.17202415e-007, -1.00000024, -1.39792755e-005, -1.00001454, -6.07483681e-013, 4.37120278e-008)
  1244. w22.Part1 = p23
  1245. w22.C1 = CFrame.new(11.3238592, 16.2938461, -5.83674097, 0.167913347, 0.593457043, 0.787155509, 0.220650926, -0.800859332, 0.556720257, 0.960790455, 0.0802058354, -0.265421808)
  1246. w23 = Instance.new("Weld", p23)
  1247. w23.Name = "Wedge_Weld"
  1248. w23.Part0 = p23
  1249. w23.C0 = CFrame.new(11.3242846, 16.2939701, -5.83676767, 0.167916089, 0.593452632, 0.787171543, 0.220654398, -0.800862908, 0.556722164, 0.960804224, 0.0802069977, -0.265425682)
  1250. w23.Part1 = p24
  1251. w23.C1 = CFrame.new(-16.5190907, -6.08210278, -0.053311754, -0.000165350299, 0.00304719806, -0.999995351, -0.000303142268, 0.999995351, 0.00304725766, 0.99999994, 0.000303644716, -0.000164425801)
  1252. w24 = Instance.new("Weld", p24)
  1253. w24.Name = "Part_Weld"
  1254. w24.Part0 = p24
  1255. w24.C0 = CFrame.new(-16.5192356, -6.08211088, -0.0533116534, -0.000165194273, 0.00304524973, -1.00001013, -0.00030361861, 0.999995589, 0.00304720178, 1.00001442, 0.000303655863, -0.000164449215)
  1256. w24.Part1 = p25
  1257. w24.C1 = CFrame.new(5.14108515, 1.49960721, -17.9982204, 1.16387992e-005, -0.999999881, 0.000471503939, -1, -1.1615477e-005, 4.94651576e-005, -4.94596788e-005, -0.000471504522, -0.999999881)
  1258. w25 = Instance.new("Weld", p25)
  1259. w25.Name = "Part_Weld"
  1260. w25.Part0 = p25
  1261. w25.C0 = CFrame.new(5.14104986, 1.49967504, -17.9985313, 1.20991026e-005, -1.00000024, 0.000469659513, -1.00001454, -1.16155716e-005, 4.96469293e-005, -4.94604174e-005, -0.000471511274, -1.00001466)
  1262. w25.Part1 = p26
  1263. w25.C1 = CFrame.new(5.07938719, 17.5157299, 1.50311017, 0.00030336561, -0.99999541, -0.00302907825, 0.000164940167, -0.00302901864, 0.999995351, -0.99999994, -0.000303863839, 0.000164020501) ]]
  1264. m.Parent = char
  1265. m:MakeJoints()
  1266. ----------------------------------------------------
  1267. local cor2 = Instance.new("Part", char.Claw)
  1268. cor2.Name = "Thingy"
  1269. cor2.Locked = true
  1270. cor2.BottomSurface = 0
  1271. cor2.CanCollide = false
  1272. cor2.Size = Vector3.new(2, 1, 1)
  1273. cor2.Transparency = 1
  1274. cor2.TopSurface = 0
  1275. corw2 = Instance.new("Weld", cor2)
  1276. corw2.Part0 = larm
  1277. corw2.Part1 = cor2
  1278. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1279. corw2.C1 = CFrame.new(0, 0, 0)
  1280. --[[weld2 = Instance.new("Weld", char.Claw)
  1281. weld2.Part0 = cor2
  1282. weld2.Part1 = char.Claw.ArmPart
  1283. weld2.C0 = CFrame.new(0, 0, 0) ]]
  1284. ----------------------------------------------------
  1285. function weld5(part0, part1, c0, c1)
  1286. weeld=Instance.new("Weld", part0)
  1287. weeld.Part0=part0
  1288. weeld.Part1=part1
  1289. weeld.C0=c0
  1290. weeld.C1=c1
  1291. return weeld
  1292. end
  1293. ----------------------------------------------------
  1294. function newRay(start,face,range,wat)
  1295. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  1296. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  1297. return rey,hit,pos
  1298. end
  1299. ----------------------------------------------------
  1300. mod5 = Instance.new("Model",char)
  1301.  
  1302. function FindNearestTorso(Position,Distance,SinglePlayer)
  1303. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1304. local List = {}
  1305. for i,v in pairs(workspace:GetChildren())do
  1306. if v:IsA("Model")then
  1307. if v:findFirstChild("Torso")then
  1308. if v ~= char then
  1309. if(v.Torso.Position -Position).magnitude <= Distance then
  1310. table.insert(List,v)
  1311. end
  1312. end
  1313. end
  1314. end
  1315. end
  1316. return List
  1317. end
  1318.  
  1319. function Landing()
  1320. part=Instance.new('Part',mod5)
  1321. part.Anchored=true
  1322. part.CanCollide=false
  1323. part.FormFactor='Custom'
  1324. part.Size=Vector3.new(.2,.2,.2)
  1325. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  1326. part.Transparency=.7
  1327. part.BrickColor=BrickColor.new('Really black')
  1328. mesh=Instance.new('SpecialMesh',part)
  1329. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1330. mesh.Scale=Vector3.new(10,5,10)
  1331.  
  1332. for i,v in pairs(FindNearestTorso(torso.CFrame.p,40))do
  1333. if v:FindFirstChild('Humanoid') then
  1334. v.Humanoid:TakeDamage(math.random(20,30))
  1335. v.Humanoid.PlatformStand = true
  1336. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1337. end
  1338. end
  1339.  
  1340. coroutine.resume(coroutine.create(function()
  1341. for i=0,3.8,0.05 do
  1342. wait()
  1343. part.CFrame=part.CFrame
  1344. part.Transparency=i
  1345. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  1346. end
  1347. part.Parent = nil
  1348. end))
  1349. end
  1350. ----------------------------------------------------
  1351. mod4 = Instance.new("Model",char)
  1352.  
  1353. ptez = {0.7, 0.8, 0.9, 1}
  1354.  
  1355. function FindNearestTorso(Position,Distance,SinglePlayer)
  1356. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1357. local List = {}
  1358. for i,v in pairs(workspace:GetChildren())do
  1359. if v:IsA("Model")then
  1360. if v:findFirstChild("Torso")then
  1361. if v ~= char then
  1362. if(v.Torso.Position -Position).magnitude <= Distance then
  1363. table.insert(List,v)
  1364. end
  1365. end
  1366. end
  1367. end
  1368. end
  1369. return List
  1370. end
  1371.  
  1372. function GroundPound()
  1373. part=Instance.new('Part',mod4)
  1374. part.Anchored=true
  1375. part.CanCollide=false
  1376. part.FormFactor='Custom'
  1377. part.Size=Vector3.new(.2,.2,.2)
  1378. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  1379. part.Transparency=.7
  1380. part.BrickColor=BrickColor.new('Really black')
  1381. mesh=Instance.new('SpecialMesh',part)
  1382. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1383. mesh.Scale=Vector3.new(3,3,3)
  1384. part2=Instance.new('Part',mod4)
  1385. part2.Anchored=true
  1386. part2.CanCollide=false
  1387. part2.FormFactor='Custom'
  1388. part2.Size=Vector3.new(.2,.2,.2)
  1389. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  1390. part2.Transparency=.7
  1391. part2.BrickColor=BrickColor.new('Really red')
  1392. mesh2=Instance.new('SpecialMesh',part2)
  1393. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  1394. mesh2.Scale=Vector3.new(3,1.5,3)
  1395. x = Instance.new("Sound",char)
  1396. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  1397. x.Pitch = ptez[math.random(1,#ptez)]
  1398. x.Volume = 1
  1399. wait(.1)
  1400. x:Play()
  1401. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  1402. if v:FindFirstChild('Humanoid') then
  1403. v.Humanoid:TakeDamage(math.random(8,15))
  1404. end
  1405. end
  1406. coroutine.resume(coroutine.create(function()
  1407. for i=0,0.62,0.13 do
  1408. wait()
  1409. part.CFrame=part.CFrame
  1410. part.Transparency=i
  1411. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  1412. part2.CFrame=part2.CFrame
  1413. part2.Transparency=i
  1414. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  1415. end
  1416. part.Parent=nil
  1417. part2.Parent=nil
  1418. x:Destroy()
  1419. end))
  1420. end
  1421. ----------------------------------------------------
  1422. mod=Instance.new('Model',char)
  1423.  
  1424. function charge()
  1425. hed.Velocity=hed.CFrame.lookVector*200
  1426. part=Instance.new('Part',mod)
  1427. part.Anchored=true
  1428. part.CanCollide=false
  1429. part.FormFactor='Custom'
  1430. part.Size=Vector3.new(.2,.2,.2)
  1431. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  1432. part.Transparency=.7
  1433. part.BrickColor=BrickColor.new('Black')
  1434. mesh=Instance.new('SpecialMesh',part)
  1435. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1436. mesh.Scale=Vector3.new(10,5,10)
  1437. part2=part:clone()
  1438. part2.Parent=mod
  1439. part2.BrickColor=BrickColor.new('Bright red')
  1440. mesh2=mesh:clone()
  1441. mesh2.Parent=part2
  1442. mesh2.Scale=Vector3.new(20,10,20)
  1443. part3=part2:clone()
  1444. part3.Parent = mod
  1445. part3.BrickColor=BrickColor.new('Really black')
  1446. mesh3=mesh2:clone()
  1447. mesh2.Parent=part3
  1448. mesh3.Scale=Vector3.new(30,15,30)
  1449. coroutine.resume(coroutine.create(function()
  1450. for i=0,1,0.1 do
  1451. wait()
  1452. part.CFrame=part.CFrame
  1453. part.Transparency=i
  1454. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  1455. part2.CFrame=part2.CFrame
  1456. part2.Transparency=i
  1457. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1458. part3.CFrame=part3.CFrame
  1459. part3.Transparency=i
  1460. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  1461. end
  1462. part.Parent=nil
  1463. part2.Parent=nil
  1464. part3.Parent = nil
  1465. end))
  1466. end
  1467. ----------------------------------------------------
  1468. function FindNearestTorso(Position,Distance,SinglePlayer)
  1469. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1470. local List = {}
  1471. for i,v in pairs(workspace:GetChildren())do
  1472. if v:IsA("Model")then
  1473. if v:findFirstChild("Torso")then
  1474. if v ~= char then
  1475. if(v.Torso.Position -Position).magnitude <= Distance then
  1476. table.insert(List,v)
  1477. end
  1478. end
  1479. end
  1480. end
  1481. end
  1482. return List
  1483. end
  1484.  
  1485. mod3 = Instance.new("Model",rleg)
  1486.  
  1487. function Stomp()
  1488. part=Instance.new('Part',mod3)
  1489. part.Anchored=true
  1490. part.CanCollide=false
  1491. part.FormFactor='Custom'
  1492. part.Size=Vector3.new(.2,.2,.2)
  1493. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  1494. part.Transparency=.7
  1495. part.BrickColor=BrickColor.new('Bright green')
  1496. mesh=Instance.new('SpecialMesh',part)
  1497. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1498. mesh.Scale=Vector3.new(25,25,25)
  1499. part2=part:clone()
  1500. part2.Parent=mod3
  1501. part2.BrickColor=BrickColor.new('Bright green')
  1502. mesh2=mesh:clone()
  1503. mesh2.Parent=part2
  1504. mesh2.Scale=Vector3.new(15,15,15)
  1505. part3=part:clone()
  1506. part3.Parent=mod3
  1507. part3.TopSurface=0
  1508. part3.BottomSurface=0
  1509. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  1510. mesh3=Instance.new('SpecialMesh',part3)
  1511. mesh3.MeshType = 3
  1512. mesh3.Scale=Vector3.new(12,12,12)
  1513. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  1514. if v:FindFirstChild('Humanoid') then
  1515. v.Humanoid:TakeDamage(math.random(20,60))
  1516. v.Humanoid.PlatformStand = true
  1517. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1518. end
  1519. end
  1520. coroutine.resume(coroutine.create(function()
  1521. for i=0,3.8,0.05 do
  1522. wait()
  1523. part.CFrame=part.CFrame
  1524. part.Transparency=i
  1525. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  1526. part2.CFrame=part2.CFrame
  1527. part2.Transparency=i
  1528. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1529. part3.CFrame=part3.CFrame
  1530. part3.Transparency=i
  1531. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  1532. end
  1533. end))
  1534. end
  1535. ----------------------------------------------------
  1536.  
  1537. local acos = math.acos
  1538. local sqrt = math.sqrt
  1539. local Vec3 = Vector3.new
  1540. local fromAxisAngle = CFrame.fromAxisAngle
  1541.  
  1542. local function toAxisAngle(CFr)
  1543. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1544. local Angle = math.acos((R00+R11+R22-1)/2)
  1545. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1546. A = A == 0 and 0.00001 or A
  1547. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1548. B = B == 0 and 0.00001 or B
  1549. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1550. C = C == 0 and 0.00001 or C
  1551. local x = (R21-R12)/sqrt(A)
  1552. local y = (R02-R20)/sqrt(B)
  1553. local z = (R10-R01)/sqrt(C)
  1554. return Vec3(x,y,z),Angle
  1555. end
  1556.  
  1557. function ApplyTrig(Num,Func)
  1558. local Min,Max = Func(0),Func(1)
  1559. local i = Func(Num)
  1560. return (i-Min)/(Max-Min)
  1561. --[[if Func == "sin" then
  1562. return (math.sin((1-Num)*math.pi)+1)/2
  1563. elseif Func == "cos" then
  1564. return (math.cos((1-Num)*math.pi)+1)/2
  1565. end]]
  1566. end
  1567.  
  1568. function LerpCFrame(CFrame1,CFrame2,Num)
  1569. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1570. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1571. end
  1572.  
  1573. function Crater(Torso,Radius)
  1574. Spawn(function()
  1575. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1576. local Ignore = {}
  1577. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1578. if v.Character ~= nil then
  1579. Ignore[#Ignore+1] = v.Character
  1580. end
  1581. end
  1582. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1583. if Hit == nil then return end
  1584. local Parts = {}
  1585. for i = 1,360,10 do
  1586. local P = Instance.new("Part",Torso.Parent)
  1587. P.Anchored = true
  1588. P.FormFactor = "Custom"
  1589. P.BrickColor = Hit.BrickColor
  1590. P.Material = Hit.Material
  1591. P.TopSurface = "Smooth"
  1592. P.BottomSurface = "Smooth"
  1593. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  1594. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,7,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  1595. Parts[#Parts+1] = {P,P.CFrame,((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,1,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius)*CFrame.Angles(math.rad(math.random(-50,-20)),math.rad(math.random(-15,15)),math.rad(math.random(-15,15))),P.Size}
  1596. if math.random(0,5) == 0 then -- rubble
  1597. local P = Instance.new("Part",Torso.Parent)
  1598. P.Anchored = true
  1599. P.FormFactor = "Custom"
  1600. P.BrickColor = Hit.BrickColor
  1601. P.Material = Hit.Material
  1602. P.TopSurface = "Smooth"
  1603. P.BottomSurface = "Smooth"
  1604. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  1605. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,2.5,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  1606. Parts[#Parts+1] = {P,P.CFrame,(CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius-8)*CFrame.Angles(math.rad(math.random(-90,90)),math.rad(math.random(-90,90)),math.rad(math.random(-90,90))),P.Size}
  1607. end
  1608. end
  1609. for i = 0,1,0.05 do
  1610. for i2,v in pairs(Parts) do
  1611. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1612. end
  1613. wait(0.02)
  1614. end
  1615. for i,v in pairs(Parts) do
  1616. if v[1].Size.X > 2.1 then
  1617. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1618. end
  1619. v[1].Anchored = false
  1620. end
  1621. for i = 0,1,0.05 do
  1622. for i2,v in pairs(Parts) do
  1623. v[1].Transparency = i
  1624. if i == 1 then
  1625. v[1]:Destroy()
  1626. elseif i >= 0.25 then
  1627. v[1].CanCollide = false
  1628. end
  1629. end
  1630. wait(0.02)
  1631. end
  1632. Parts = nil
  1633. end)
  1634. end
  1635.  
  1636. ----------------------------------------------------
  1637. mouse.KeyDown:connect(function(key)
  1638. if key == "r" then
  1639. --larm.BrickColor = BrickColor.new("Bright red")
  1640. --rarm.BrickColor = BrickColor.new("Bright red")
  1641. if Debounces.CanAttack == true then
  1642. Debounces.CanAttack = false
  1643. Debounces.on = true
  1644. Debounces.NoIdl = true
  1645. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  1646. hit = ht.Parent
  1647. if ht and hit:IsA("Model") then
  1648. if hit:FindFirstChild("Humanoid") then
  1649. if hit.Name ~= p.Name then
  1650. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1651. Debounces.Slashed = true]]--
  1652. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  1653. wait(1)
  1654. --Debounces.Slashed = false
  1655. --end
  1656. end
  1657. end
  1658. elseif ht and hit:IsA("Hat") then
  1659. if hit.Parent.Name ~= p.Name then
  1660. if hit.Parent:FindFirstChild("Humanoid") then
  1661. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1662. Debounces.Slashed = true]]--
  1663. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  1664. wait(1)
  1665. --Debounces.Slashed = false
  1666. end
  1667. end
  1668. end
  1669. end)
  1670. q = Instance.new("Sound",hed)
  1671. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1672. q.Pitch = 0.85
  1673. q.Looped = false
  1674. q1 = Instance.new("Sound",hed)
  1675. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1676. q1.Pitch = 0.85
  1677. q1.Looped = false
  1678. q:Play()
  1679. q1:Play()
  1680. for i = 1,20 do
  1681. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1682. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1683. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1684. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1685. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1686. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1687. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.5)
  1688. if Debounces.on == false then break end
  1689. wait()
  1690. end
  1691. n = Instance.new("Sound",hed)
  1692. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1693. n.Pitch = 0.94
  1694. n.Looped = false
  1695. n1 = Instance.new("Sound",hed)
  1696. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1697. n1.Pitch = 0.94
  1698. n1.Looped = false
  1699. n:Play()
  1700. n1:Play()
  1701. b = Instance.new("Sound",hed)
  1702. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1703. b.Pitch = 0.94
  1704. b.Looped = false
  1705. b1 = Instance.new("Sound",hed)
  1706. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1707. b1.Pitch = 0.94
  1708. b1.Looped = false
  1709. b:Play()
  1710. b1:Play()
  1711. for i = 1,26 do
  1712. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.5)
  1713. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.5)
  1714. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.5)
  1715. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.5)
  1716. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.5)
  1717. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.5)
  1718. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.5)
  1719. if Debounces.on == false then break end
  1720. wait()
  1721. end
  1722. wait(.5)
  1723. to:disconnect()
  1724. q:Destroy()
  1725. q1:Destroy()
  1726. n:Destroy()
  1727. n1:Destroy()
  1728. --larm.BrickColor = BrickColor.new("Really black")
  1729. --rarm.BrickColor = BrickColor.new("Really black")
  1730. if Debounces.CanAttack == false then
  1731. Debounces.CanAttack = true
  1732. Debounces.on = false
  1733. Debounces.NoIdl = false
  1734. end
  1735. end
  1736. end
  1737. end)
  1738. ----------------------------------------------------
  1739.  
  1740. ----------------------------------------------------
  1741. mouse.KeyDown:connect(function(key)
  1742. if key == "q" then
  1743. if Debounces.CanAttack == true then
  1744. Debounces.CanAttack = false
  1745. Debounces.NoIdl = true
  1746. Debounces.on = true
  1747. function FindNearestTorso(Position,Distance,SinglePlayer)
  1748. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1749. local List = {}
  1750. for i,v in pairs(workspace:GetChildren())do
  1751. if v:IsA("Model")then
  1752. if v:findFirstChild("Torso")then
  1753. if v ~= char then
  1754. if(v.Torso.Position -Position).magnitude <= Distance then
  1755. table.insert(List,v)
  1756. end
  1757. end
  1758. end
  1759. end
  1760. end
  1761. return List
  1762. end
  1763. z = Instance.new("Sound",hed)
  1764. z.SoundId = "rbxassetid://232213955"
  1765. z.Pitch = 1
  1766. z.Volume = 1
  1767. wait(0.2)
  1768. z:Play()
  1769. sp = Instance.new("Part",rarm)
  1770. sp.Anchored = true
  1771. sp.CanCollide = false
  1772. sp.Locked = true
  1773. sp.Transparency = 0
  1774. sp.Material = "Neon"
  1775. sp.Size = Vector3.new(1,1,1)
  1776. sp.TopSurface = "SmoothNoOutlines"
  1777. sp.BottomSurface = "SmoothNoOutlines"
  1778. sp.BrickColor = BrickColor.new("Crimson")
  1779. spm = Instance.new("SpecialMesh",sp)
  1780. spm.MeshType = "Sphere"
  1781. spm.Scale = Vector3.new(21,21,21)
  1782. sp2 = Instance.new("Part", rarm)
  1783. sp2.Name = "Energy"
  1784. sp2.BrickColor = BrickColor.new("Crimson")
  1785. sp2.Size = Vector3.new(1, 1, 1)
  1786. sp2.Shape = "Ball"
  1787. sp2.CanCollide = false
  1788. sp2.Anchored = true
  1789. sp2.Locked = true
  1790. sp2.TopSurface = 0
  1791. sp2.BottomSurface = 0
  1792. sp2.Transparency = 1
  1793. spm2 = Instance.new("SpecialMesh",sp2)
  1794. spm2.MeshId = "rbxassetid://9982590"
  1795. spm2.Scale = Vector3.new(2,2,2)
  1796. for i = 1, 20 do
  1797. spm.Scale = spm.Scale - Vector3.new(1,1,1)
  1798. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  1799. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8)), 0.4)
  1800. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.4)
  1801. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  1802. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  1803. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  1804. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  1805. if Debounces.on == false then break end
  1806. rs:wait()
  1807. end
  1808. for i = 1, 100, 20 do rs:wait()
  1809. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  1810. end
  1811. for i = 1, 20 do
  1812. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  1813. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  1814. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.4)
  1815. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(10),math.rad(-30),0), 0.4)
  1816. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(0, math.rad(40), math.rad(0)), 0.4)
  1817. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  1818. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  1819. if Debounces.on == false then break end
  1820. rs:wait()
  1821. end
  1822. sp.Transparency = 1
  1823. for i = 1, 20 do
  1824. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  1825. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.62,-.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.4)
  1826. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,-3,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.4)
  1827. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(0, math.rad(-50), math.rad(0)), 0.4)
  1828. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  1829. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  1830. if Debounces.on == false then break end
  1831. rs:wait()
  1832. end
  1833. wait(1)
  1834. sp.Transparency = 0
  1835. sp2.Transparency = 0.84
  1836. for i = 1, 20 do
  1837. --spm.Scale = spm.Scale - Vector3.new(1,1,1)
  1838. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  1839. sp2.CFrame = sp.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  1840. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(110),math.rad(-6),math.rad(140)), 0.4)
  1841. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(80),math.rad(6),math.rad(-40)), 0.2)
  1842. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(30),0), 0.2)
  1843. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.3)
  1844. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-14)), 0.2)
  1845. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-16), 0, math.rad(8)), 0.2)
  1846. if Debounces.on == false then break end
  1847. rs:wait()
  1848. end
  1849. for i = 1, 2880, 50 do
  1850. rs:wait()
  1851. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  1852. sp2.CFrame = rarm.CFrame * CFrame.new(0,-1,0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  1853. rs:wait()
  1854. end
  1855. sp:Destroy()
  1856. sp2:Destroy()
  1857. for i = 1, 20 do
  1858. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(70),math.rad(-6),math.rad(-20)), 0.2)
  1859. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.2)
  1860. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  1861. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)), 0.4)
  1862. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-8)), 0.2)
  1863. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-6), 0, math.rad(8)), 0.2)
  1864. if Debounces.on == false then break end
  1865. rs:wait()
  1866. end
  1867. if Debounces.CanAttack == false then
  1868. Debounces.CanAttack = true
  1869. Debounces.NoIdl = false
  1870. Debounces.on = false
  1871. end
  1872. end
  1873. end
  1874. end)
  1875. ----------------------------------------------------
  1876. mouse.KeyDown:connect(function(key)
  1877. if key == "t" then
  1878. if Debounces.CanAttack == true then
  1879. Debounces.CanAttack = false
  1880. Debounces.on = true
  1881. Debounces.NoIdl = true
  1882. for i = 1, 20 do
  1883. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.15,0.55,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1884. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.15,0.55,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1885. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1886. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1887. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, .3) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
  1888. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.6) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
  1889. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  1890. if Debounces.on == false then break end
  1891. wait()
  1892. end
  1893. Spawn(function()
  1894. local Parts = {}
  1895. for Y = -5,5 do
  1896. local P = Instance.new("Part",char)
  1897. P.Anchored = true
  1898. P.FormFactor = "Custom"
  1899. P.CanCollide = false
  1900. P.Size = Vector3.new(1,2,1)
  1901. P.TopSurface = "SmoothNoOutlines"
  1902. P.BottomSurface = "SmoothNoOutlines"
  1903. P.BrickColor = BrickColor.new("Really black")
  1904. P.Name = tostring(Y)
  1905. local i = (Y+5)/(10)
  1906. i = 1-math.cos(math.pi*i-(math.pi/2))
  1907. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  1908. --[[P.Touched:connect(function(ht)
  1909. local hit = ht.Parent
  1910. if hit:FindFirstChild("Humanoid") then
  1911. hit.Humanoid:TakeDamage(math.random(20,50))
  1912. end
  1913. end)]]--
  1914. s = Instance.new("Sound",P)
  1915. s.SoundId = "rbxassetid://228343271"
  1916. s.Volume = .7
  1917. s.Pitch = 0.9
  1918. s:Play()
  1919. P.Touched:connect(function(ht)
  1920. hit = ht.Parent
  1921. if ht and hit:IsA("Model") then
  1922. if hit:FindFirstChild("Humanoid") then
  1923. if hit.Name ~= p.Name then
  1924. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1925. Debounces.Slashed = true]]--
  1926. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  1927. hit:FindFirstChild("Humanoid").PlatformStand = true
  1928. wait(1)
  1929. --Debounces.Slashed = false
  1930. --end
  1931. end
  1932. end
  1933. elseif ht and hit:IsA("Hat") then
  1934. if hit.Parent.Name ~= p.Name then
  1935. if hit.Parent:FindFirstChild("Humanoid") then
  1936. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1937. Debounces.Slashed = true]]--
  1938. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  1939. hit:FindFirstChild("Humanoid").PlatformStand = true
  1940. wait(1)
  1941. --Debounces.Slashed = false
  1942. --end
  1943. end
  1944. end
  1945. end
  1946. end)
  1947. Parts[#Parts+1] = P
  1948. end
  1949. local BREAKIT = false
  1950. local CParts = {}
  1951. local Rocks = {}
  1952. local LastPos = nil
  1953. for i = 1,70 do
  1954. for i2,v in pairs(Parts) do
  1955. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  1956. local cf = v.CFrame
  1957. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  1958. v.CFrame = cf
  1959. v.Transparency = v.Transparency+0.02
  1960. if v.Transparency >= 0.975 then BREAKIT = true end
  1961. if v.Name == "0" then
  1962. local Ignore = {}
  1963. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1964. if v.Character ~= nil then
  1965. Ignore[#Ignore+1] = v.Character
  1966. end
  1967. end
  1968. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  1969. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  1970. if Hit ~= nil then
  1971. if #Rocks == 0 then
  1972. for i = 1,5 do
  1973. local P = Instance.new("Part",char)
  1974. Rocks[#Rocks+1] = P
  1975. P.Anchored = true
  1976. P.FormFactor = "Custom"
  1977. P.BrickColor = Hit.BrickColor
  1978. P.Material = Hit.Material
  1979. P.TopSurface = "Smooth"
  1980. P.BottomSurface = "Smooth"
  1981. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  1982. end
  1983. end
  1984. for i,P in pairs(Rocks) do
  1985. P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  1986. end
  1987. local P = Instance.new("Part",char)
  1988. CParts[#CParts+1] = {P,tick()}
  1989. P.Anchored = true
  1990. P.FormFactor = "Custom"
  1991. P.BrickColor = Hit.BrickColor
  1992. P.Material = Hit.Material
  1993. P.TopSurface = "Smooth"
  1994. P.BottomSurface = "Smooth"
  1995. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  1996. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1997. Pos = Pos.p
  1998. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  1999. local P = P:Clone()
  2000. CParts[#CParts+1] = {P,tick()}
  2001. P.Parent = char
  2002. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  2003. Pos = Pos.p
  2004. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  2005. if LastPos ~= nil then
  2006. local P = P:Clone()
  2007. CParts[#CParts+1] = {P,tick()}
  2008. P.Parent = char
  2009. P.BrickColor = BrickColor.new("Really black")
  2010. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  2011. Pos = Pos.p
  2012. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  2013. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  2014. --P.Velocity = Vector3.new(0,-1000,0)
  2015. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  2016. end
  2017. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  2018. end
  2019. end
  2020. end
  2021. if BREAKIT then break end
  2022. wait(0.002)
  2023. end
  2024. for i,v in pairs(Rocks) do
  2025. CParts[#CParts+1] = {v,tick()}
  2026. end
  2027. for i,v in pairs(Parts) do
  2028. v:Destroy()
  2029. end
  2030. Parts = nil
  2031. while true do
  2032. local t = tick()
  2033. local p = nil
  2034. for i,v in pairs(CParts) do
  2035. if t-v[2] > 4 then
  2036. v[1].Transparency = v[1].Transparency+0.05
  2037. if v[1].Transparency >= 1 then
  2038. v[1]:Destroy()
  2039. CParts[i] = nil
  2040. end
  2041. end
  2042. p = v
  2043. end
  2044. if p == nil then break end
  2045. wait(0.002)
  2046. end
  2047. for i,v in pairs(CParts) do
  2048. v:Destroy()
  2049. end
  2050. CParts = {}
  2051. end)
  2052. for i = 1, 20 do
  2053. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.15,.4,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
  2054. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.15,.4,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
  2055. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
  2056. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  2057. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.5, -0.7) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  2058. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.8, -.45) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  2059. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  2060. if Debounces.on == false then break end
  2061. wait()
  2062. end
  2063. if Debounces.CanAttack == false then
  2064. Debounces.CanAttack = true
  2065. Debounces.on = false
  2066. Debounces.NoIdl = false
  2067. end
  2068. end
  2069. end
  2070. end)
  2071. ----------------------------------------------------
  2072. mouse.KeyDown:connect(function(key)
  2073. if key == "e" then
  2074. --larm.BrickColor = BrickColor.new("Bright red")
  2075. --rarm.BrickColor = BrickColor.new("Bright red")
  2076. if Debounces.CanAttack == true then
  2077. Debounces.CanAttack = false
  2078. Debounces.on = true
  2079. Debounces.NoIdl = true
  2080. for i = 1, 18 do
  2081. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
  2082. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  2083. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  2084. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  2085. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  2086. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  2087. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2088. if Debounces.on == false then break end
  2089. wait()
  2090. end
  2091. local HandCF = CFrame.new(char.Absolution.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2092. local rng = Instance.new("Part", char.Absolution.Handle)
  2093. rng.Anchored = true
  2094. rng.BrickColor = BrickColor.new("Really black")
  2095. rng.CanCollide = true
  2096. rng.FormFactor = 3
  2097. rng.Name = "Ring"
  2098. rng.Size = Vector3.new(1, 1, 1)
  2099. rng.CanCollide = false
  2100. rng.Transparency = 0.35
  2101. rng.TopSurface = 0
  2102. rng.BottomSurface = 0
  2103. rng.CFrame = HandCF
  2104. local rngm = Instance.new("SpecialMesh", rng)
  2105. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2106. rngm.Scale = Vector3.new(1, 1, 2)
  2107. x = Instance.new("Sound", hed)
  2108. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2109. x.Looped = false
  2110. x.Pitch = .7
  2111. x.Volume = 1
  2112. x1 = Instance.new("Sound", hed)
  2113. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2114. x1.Looped = false
  2115. x1.Pitch = .7
  2116. x1.Volume = 1
  2117. x:Play()
  2118. x1:Play()
  2119. rngto = rng.Touched:connect(function(ht)
  2120. hit = ht.Parent
  2121. if ht and hit:IsA("Model") then
  2122. if hit:FindFirstChild("Humanoid") then
  2123. if hit.Name ~= p.Name then
  2124. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2125. Debounces.Slashed = true]]--
  2126. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  2127. hit:FindFirstChild("Humanoid").PlatformStand = true
  2128. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  2129. --Debounces.Slashed = false
  2130. --end
  2131. end
  2132. end
  2133. elseif ht and hit:IsA("Hat") then
  2134. if hit.Parent.Name ~= p.Name then
  2135. if hit.Parent:FindFirstChild("Humanoid") then
  2136. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2137. Debounces.Slashed = true]]--
  2138. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  2139. hit:FindFirstChild("Humanoid").PlatformStand = true
  2140. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  2141. --Debounces.Slashed = false
  2142. end
  2143. end
  2144. end
  2145. end)
  2146. coroutine.wrap(function()
  2147. for i = 1, 60, 2 do
  2148. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2149. rng.Size = rngm.Scale
  2150. rng.CFrame = HandCF
  2151. rng.Transparency = i/60
  2152. wait()
  2153. end
  2154. wait()
  2155. rng:Destroy()
  2156. end)()
  2157. for i = 1, 18 do
  2158. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
  2159. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  2160. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  2161. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  2162. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  2163. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  2164. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2165. if Debounces.on == false then break end
  2166. wait()
  2167. end
  2168. --larm.BrickColor = BrickColor.new("Really black")
  2169. --rarm.BrickColor = BrickColor.new("Really black")
  2170. x:Destroy()
  2171. x1:Destroy()
  2172. if Debounces.CanAttack == false then
  2173. Debounces.CanAttack = true
  2174. Debounces.on = false
  2175. Debounces.NoIdl = false
  2176. end
  2177. end
  2178. end
  2179. end)
  2180. ----------------------------------------------------
  2181. mouse.KeyDown:connect(function(key)
  2182. if key == "y" then
  2183. if Debounces.CanAttack == true then
  2184. Debounces.CanAttack = false
  2185. Debounces.on = true
  2186. Debounces.NoIdl = true
  2187. for i = 1, 15 do
  2188. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,.45,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  2189. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,.45,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.2)
  2190. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  2191. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  2192. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2193. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2194. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2195. if Debounces.on == false then break end
  2196. wait()
  2197. end
  2198. x = Instance.new("Sound",char)
  2199. x.SoundId = "rbxassetid://228343271"
  2200. x.Pitch = 1
  2201. x.Volume = .8
  2202. wait(.1)
  2203. x:Play()
  2204. Debounces.on = false
  2205. Debounces.Here = false
  2206. shot = shot + 1
  2207. local rng = Instance.new("Part", char)
  2208. rng.Anchored = true
  2209. rng.BrickColor = BrickColor.new("Really black")
  2210. rng.CanCollide = false
  2211. rng.FormFactor = 3
  2212. rng.Name = "Ring"
  2213. rng.Size = Vector3.new(.5, .5, .5)
  2214. rng.Transparency = 0.35
  2215. rng.TopSurface = 0
  2216. rng.BottomSurface = 0
  2217. rng2 = rng:clone()
  2218. rng3 = rng2:clone()
  2219. rng4 = rng2:clone()
  2220. local rngm = Instance.new("SpecialMesh", rng)
  2221. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2222. rngm.Scale = Vector3.new(10, 10, 1)
  2223. rngm2 = rngm:clone()
  2224. rngm2.Scale = Vector3.new(5, 5, 1)
  2225. rngm3=rngm2:clone()
  2226. rngm3.Parent = rng3
  2227. rngm3.Scale = Vector3.new(8, 8, 1)
  2228. rngm4 = rngm2:clone()
  2229. rngm4.Parent = rng4
  2230. rngm4.Scale = Vector3.new(6, 6, 1)
  2231. local bem = Instance.new("Part", char)
  2232. bem.Anchored = true
  2233. bem.BrickColor = BrickColor.new("Really black")
  2234. bem.CanCollide = false
  2235. bem.FormFactor = 3
  2236. bem.Name = "Beam" .. shot
  2237. bem.Size = Vector3.new(.5, .5, .5)
  2238. bem.Transparency = 0.35
  2239. bem.TopSurface = 0
  2240. bem.BottomSurface = 0
  2241. local bemm = Instance.new("SpecialMesh", bem)
  2242. bemm.MeshType = 4
  2243. bemm.Scale = Vector3.new(1, 4, 4)
  2244. local out = Instance.new("Part", char)
  2245. out.Anchored = true
  2246. out.BrickColor = BrickColor.new("Really black")
  2247. out.CanCollide = false
  2248. out.FormFactor = 3
  2249. out.Name = "Out"
  2250. out.Size = Vector3.new(4, 4, 4)
  2251. out.Transparency = 0.35
  2252. out.TopSurface = 0
  2253. out.BottomSurface = 0
  2254. local outm = Instance.new("SpecialMesh", out)
  2255. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2256. outm.Scale = Vector3.new(4, 4, 4)
  2257. local bnd = Instance.new("Part", char)
  2258. bnd.Anchored = true
  2259. bnd.BrickColor = BrickColor.new("Really black")
  2260. bnd.CanCollide = false
  2261. bnd.FormFactor = 3
  2262. bnd.Name = "Bend"
  2263. bnd.Size = Vector3.new(1, 1, 1)
  2264. bnd.Transparency = 1
  2265. bnd.TopSurface = 0
  2266. bnd.BottomSurface = 0
  2267. local bndm = Instance.new("SpecialMesh", bnd)
  2268. bndm.MeshType = 3
  2269. bndm.Scale = Vector3.new(8, 8, 8)
  2270. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  2271. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  2272. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  2273. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  2274. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  2275. rng4.CFrame = rng3.CFrame * CFrame.new(0, -.5, 0)
  2276. Debounces.Shewt = true
  2277. coroutine.wrap(function()
  2278. for i = 1, 20, 0.2 do
  2279. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2280. rngm3.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2281. rngm4.Scale = Vector3.new(6 + i*2, 6 + i*2, 1)
  2282. rng.Transparency = i/20
  2283. rng3.Transparency = 1/16
  2284. rng4.Transparency = i/12
  2285. wait()
  2286. end
  2287. wait()
  2288. rng:Destroy()
  2289. end)()
  2290. if Debounces.Shewt == true then
  2291. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  2292. hit = ht.Parent
  2293. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  2294. if HasntTouched(hit.Name) == true and deb == false then
  2295. deb = true
  2296. coroutine.wrap(function()
  2297. hit:FindFirstChild("Humanoid").PlatformStand = true
  2298. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2299. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  2300. end)()
  2301. table.insert(Touche, hit.Name)
  2302. deb = false
  2303. end
  2304. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  2305. if HasntTouched(hit.Parent.Name) == true and deb == false then
  2306. deb = true
  2307. coroutine.wrap(function()
  2308. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  2309. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2310. wait(1)
  2311. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  2312. end)()
  2313. table.insert(Touche, hit.Parent.Name)
  2314. deb = false
  2315. for i, v in pairs(Touche) do
  2316. print(v)
  2317. end
  2318. end
  2319. end
  2320. end)
  2321. end
  2322. for i = 0, 260, 8 do
  2323. bem.Size = Vector3.new(i, 2, 2)
  2324. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  2325. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  2326. bnd.Size = Vector3.new(1,1,1)
  2327. bndm.Scale = Vector3.new(8,8,8)
  2328. if i % 10 == 0 then
  2329. local newRng = rng2:Clone()
  2330. newRng.Parent = char
  2331. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  2332. local newRngm = rngm2:clone()
  2333. newRngm.Parent=newRng
  2334. coroutine.wrap(function()
  2335. for i = 1, 10, 0.2 do
  2336. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2337. newRng.Transparency = i/10
  2338. wait()
  2339. end
  2340. wait()
  2341. newRng:Destroy()
  2342. end)()
  2343. end
  2344. wait()
  2345. end
  2346. wait()
  2347. Debounces.Shewt = false
  2348. bem:Destroy()
  2349. out:Destroy()
  2350. bnd:Destroy()
  2351. Debounces.Ready = false
  2352. for i, v in pairs(Touche) do
  2353. table.remove(Touche, i)
  2354. end
  2355. wait()
  2356. table.insert(Touche, char.Name)
  2357. Debounces.NoIdl = false
  2358. if Debounces.CanAttack == false then
  2359. Debounces.CanAttack = true
  2360. end
  2361. end
  2362. end
  2363. end)
  2364. ----------------------------------------------------
  2365. sidz = {"231917888", "231917845", "231917806"}
  2366. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  2367. mouse.KeyDown:connect(function(key)
  2368. if key == "f" then
  2369. --larm.BrickColor = BrickColor.new("Bright red")
  2370. --rarm.BrickColor = BrickColor.new("Bright red")
  2371. if Debounces.CanAttack == true then
  2372. Debounces.CanAttack = false
  2373. Debounces.on = true
  2374. Debounces.NoIdl = true
  2375. for i = 1, 10 do
  2376. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2, 1.2, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.4)
  2377. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2, 1.2, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.4)
  2378. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2379. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2380. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2381. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2382. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2383. if Debounces.on == false then break end
  2384. wait()
  2385. end
  2386. z = Instance.new("Sound",char)
  2387. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  2388. z.Pitch = ptz[math.random(1,#ptz)]
  2389. z.Volume = 1
  2390. z1 = Instance.new("Sound",char)
  2391. z1.SoundId = z.SoundId
  2392. z1.Pitch = z.Pitch
  2393. z1.Volume = 1
  2394. wait(1)
  2395. z:Play()
  2396. z1:Play()
  2397. Stomp()
  2398. for i = 1, 20 do
  2399. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.45, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.6)
  2400. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.45, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.6)
  2401. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2402. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.6)
  2403. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2404. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2405. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2406. if Debounces.on == false then break end
  2407. wait()
  2408. end
  2409. if Debounces.CanAttack == false then
  2410. Debounces.CanAttack = true
  2411. Debounces.on = false
  2412. Debounces.NoIdl = false
  2413. --larm.BrickColor = BrickColor.new("Really black")
  2414. --rarm.BrickColor = BrickColor.new("Really black")
  2415. end
  2416. end
  2417. end
  2418. end)
  2419. ----------------------------------------------------
  2420. mouse.KeyDown:connect(function(key)
  2421. if key == "g" then
  2422. --larm.BrickColor = BrickColor.new("Bright red")
  2423. --rarm.BrickColor = BrickColor.new("Bright red")
  2424. if Debounces.CanAttack == true then
  2425. Debounces.CanAttack = false
  2426. Debounces.on = true
  2427. Debounces.NoIdl = true
  2428. chrg = lleg.Touched:connect(function(ht)
  2429. hit = ht.Parent
  2430. if ht and hit:IsA("Model") then
  2431. if hit:FindFirstChild("Humanoid") then
  2432. if hit.Name ~= p.Name then
  2433. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2434. Debounces.Slashed = true]]--
  2435. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2436. hit:FindFirstChild("Humanoid").PlatformStand = true
  2437. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2438. --Debounces.Slashed = false
  2439. --end
  2440. end
  2441. end
  2442. elseif ht and hit:IsA("Hat") then
  2443. if hit.Parent.Name ~= p.Name then
  2444. if hit.Parent:FindFirstChild("Humanoid") then
  2445. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2446. Debounces.Slashed = true]]--
  2447. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2448. hit:FindFirstChild("Humanoid").PlatformStand = true
  2449. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2450. --Debounces.Slashed = false
  2451. end
  2452. end
  2453. end
  2454. end)
  2455. for i = 1, 14 do
  2456. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, .45, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.5)
  2457. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3, .45, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.5)
  2458. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.5)
  2459. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
  2460. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2461. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2462. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  2463. if Debounces.on == false then break end
  2464. wait()
  2465. end
  2466. charge()
  2467. z = Instance.new("Sound",char)
  2468. z.SoundId = "rbxassetid://200632875"
  2469. z.Volume = 1
  2470. z.Pitch = .8
  2471. z1 = Instance.new("Sound",char)
  2472. z1.SoundId = "rbxassetid://200632875"
  2473. z1.Volume = 1
  2474. z1.Pitch = .9
  2475. z:Play()
  2476. z1:Play()
  2477. wait(1)
  2478. z:Destroy()
  2479. z1:Destroy()
  2480. chrg:disconnect()
  2481. if Debounces.CanAttack == false then
  2482. Debounces.CanAttack = true
  2483. Debounces.on = false
  2484. Debounces.NoIdl = false
  2485. --larm.BrickColor = BrickColor.new("Really black")
  2486. --rarm.BrickColor = BrickColor.new("Really black")
  2487. end
  2488. end
  2489. end
  2490. end)
  2491. ----------------------------------------------------
  2492. pt = {0.7, 0.8, 0.9}
  2493. mouse.KeyDown:connect(function(key)
  2494. if key == "h" then
  2495. if Debounces.CanJoke == true then
  2496. Debounces.CanJoke = false
  2497. u = Instance.new("Sound")
  2498. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  2499. u.Parent = char
  2500. u.Looped = false
  2501. u.Pitch = pt[math.random(1,#pt)]
  2502. u.Volume = 1
  2503. u2 = Instance.new("Sound")
  2504. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  2505. u2.Parent = char
  2506. u2.Looped = false
  2507. u2.Pitch = u.Pitch
  2508. u2.Volume = 1
  2509. wait(.01)
  2510. u:Play()
  2511. u2:Play()
  2512. wait(6)
  2513. u:Destroy()
  2514. u2:Destroy()
  2515. if Debounces.CanJoke == false then
  2516. Debounces.CanJoke = true
  2517. end
  2518. end
  2519. end
  2520. end)
  2521. ----------------------------------------------------
  2522. mouse.KeyDown:connect(function(key)
  2523. if key == "j" then
  2524. if Debounces.CanJoke == true then
  2525. Debounces.CanJoke = false
  2526. z = Instance.new("Sound",char)
  2527. z.SoundId = "rbxassetid://135017755"
  2528. z.Pitch = .76
  2529. z.Volume = 1
  2530. wait()
  2531. z:Play()
  2532. wait(6)
  2533. z:Destroy()
  2534. if Debounces.CanJoke == false then
  2535. Debounces.CanJoke = true
  2536. end
  2537. end
  2538. end
  2539. end)
  2540. ----------------------------------------------------
  2541. mouse.KeyDown:connect(function(key)
  2542. if key == "k" then
  2543. if Debounces.CanJoke == true then
  2544. Debounces.CanJoke = false
  2545. z = Instance.new("Sound",char)
  2546. z.SoundId = "rbxassetid://135017578"
  2547. z.Pitch = .76
  2548. z.Volume = 1
  2549. wait()
  2550. z:Play()
  2551. wait(4)
  2552. z:Destroy()
  2553. if Debounces.CanJoke == false then
  2554. Debounces.CanJoke = true
  2555. end
  2556. end
  2557. end
  2558. end)
  2559. ----------------------------------------------------
  2560. mouse.KeyDown:connect(function(key)
  2561. if key == "x" then
  2562. if Debounces.CanAttack == true then
  2563. Debounces.CanAttack = false
  2564. Debounces.NoIdl = true
  2565. Debounces.on = true
  2566. Debounces.ks = true
  2567. for i = 1, 10 do
  2568. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.6)
  2569. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.6)
  2570. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2571. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.6)
  2572. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.6)
  2573. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.6)
  2574. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2575. if Debounces.on == false then break end
  2576. wait()
  2577. end
  2578. z = Instance.new("Sound",hed)
  2579. z.SoundId = "rbxassetid://169445092"
  2580. z.Volume = 1
  2581. wait(0.1)
  2582. z:Play()
  2583. kik = rleg.Touched:connect(function(ht)
  2584. hit = ht.Parent
  2585. if ht and hit:IsA("Model") then
  2586. if hit:FindFirstChild("Humanoid") then
  2587. if hit.Name ~= p.Name then
  2588. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2589. Debounces.Slashed = true]]--
  2590. if Debounces.ks==true then
  2591. z = Instance.new("Sound",hed)
  2592. z.SoundId = "rbxassetid://169380525"
  2593. z.Volume = 1
  2594. z:Play()
  2595. Debounces.ks=false
  2596. end
  2597. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2598. hit:FindFirstChild("Humanoid").PlatformStand = true
  2599. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2600. --Debounces.Slashed = false
  2601. --end
  2602. end
  2603. end
  2604. elseif ht and hit:IsA("Hat") then
  2605. if hit.Parent.Name ~= p.Name then
  2606. if hit.Parent:FindFirstChild("Humanoid") then
  2607. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2608. Debounces.Slashed = true]]--
  2609. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2610. hit:FindFirstChild("Humanoid").PlatformStand = true
  2611. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2612. --Debounces.Slashed = false
  2613. --end
  2614. end
  2615. end
  2616. end
  2617. end)
  2618. for i = 1, 8 do
  2619. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2620. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.7)
  2621. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.7)
  2622. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.7)
  2623. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  2624. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.7)
  2625. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2626. if Debounces.on == false then break end
  2627. wait()
  2628. end
  2629. kik:disconnect()
  2630. if Debounces.CanAttack == false then
  2631. Debounces.CanAttack = true
  2632. Debounces.on = false
  2633. Debounces.NoIdl = false
  2634. end
  2635. end
  2636. end
  2637. end)
  2638. ----------------------------------------------------
  2639. mouse.KeyDown:connect(function(key)
  2640. if key == "c" then
  2641. if Debounces.CanAttack == true then
  2642. Debounces.CanAttack = false
  2643. Debounces.NoIdl = true
  2644. Debounces.on = true
  2645. SIDZ = {"231917744", "231917742"}
  2646. PTZ = {0.7, 0.8, 0.9, 1}
  2647. for i = 1, 20 do
  2648. wait()
  2649. for i,v in pairs(char.Absolution:children()) do
  2650. if v:IsA("Part") or v:IsA("WedgePart") then
  2651. v.Transparency = v.Transparency + 0.05
  2652. end
  2653. end
  2654. end
  2655. function FindNearestTorso(Position,Distance,SinglePlayer)
  2656. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2657. local List = {}
  2658. for i,v in pairs(workspace:GetChildren())do
  2659. if v:IsA("Model")then
  2660. if v:findFirstChild("Torso")then
  2661. if v ~= char then
  2662. if(v.Torso.Position -Position).magnitude <= Distance then
  2663. table.insert(List,v)
  2664. end
  2665. end
  2666. end
  2667. end
  2668. end
  2669. return List
  2670. end
  2671. GroundPound()
  2672. for i = 1, 5 do
  2673. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2674. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2675. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2676. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2677. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2678. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2679. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2680. if Debounces.on == false then break end
  2681. wait()
  2682. end
  2683. GroundPound()
  2684. for i = 1, 5 do
  2685. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2686. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2687. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2688. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2689. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2690. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2691. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2692. if Debounces.on == false then break end
  2693. wait()
  2694. end
  2695. GroundPound()
  2696. for i = 1, 5 do
  2697. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2698. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2699. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2700. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2701. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2702. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2703. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2704. if Debounces.on == false then break end
  2705. wait()
  2706. end
  2707. GroundPound()
  2708. for i = 1, 5 do
  2709. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2710. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2711. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2712. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2713. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2714. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2715. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2716. if Debounces.on == false then break end
  2717. wait()
  2718. end
  2719. GroundPound()
  2720. for i = 1, 5 do
  2721. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2722. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2723. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2724. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2725. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2726. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2727. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2728. if Debounces.on == false then break end
  2729. wait()
  2730. end
  2731. GroundPound()
  2732. for i = 1, 5 do
  2733. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2734. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2735. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2736. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2737. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2738. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2739. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2740. if Debounces.on == false then break end
  2741. wait()
  2742. end
  2743. for i = 1, 18 do
  2744. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.4)
  2745. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.4)
  2746. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2747. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2748. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2749. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2750. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2751. if Debounces.on == false then break end
  2752. wait()
  2753. end
  2754. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2755. if v:FindFirstChild('Humanoid') then
  2756. v.Humanoid:TakeDamage(math.random(20,60))
  2757. v.Humanoid.PlatformStand = true
  2758. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2759. end
  2760. end
  2761. x = Instance.new("Sound",char)
  2762. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  2763. x.Pitch = PTZ[math.random(1,#PTZ)]
  2764. x.Volume = 1
  2765. wait(0.1)
  2766. x:Play()
  2767. Crater(hed,20)
  2768. for i = 1, 14 do
  2769. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(-10)), 0.6)
  2770. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(10)), 0.6)
  2771. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  2772. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  2773. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  2774. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  2775. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2776. if Debounces.on == false then break end
  2777. wait()
  2778. end
  2779. if Debounces.CanAttack == false then
  2780. Debounces.CanAttack = true
  2781. Debounces.on = false
  2782. Debounces.NoIdl = false
  2783. for i = 1, 20 do
  2784. wait()
  2785. for i,v in pairs(char.Absolution:children()) do
  2786. if v:IsA("Part") or v:IsA("WedgePart") then
  2787. v.Transparency = v.Transparency - 0.05
  2788. end
  2789. end
  2790. end
  2791. end
  2792. end
  2793. end
  2794. end)
  2795. ----------------------------------------------------176349813
  2796. mouse.KeyDown:connect(function(key)
  2797. if key == "b" then
  2798. hum.WalkSpeed = 0.01
  2799. if Debounces.CanAttack == true then
  2800. Debounces.CanAttack = false
  2801. Debounces.NoIdl = true
  2802. Debounces.on = true
  2803. for i = 1,20 do
  2804. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, .5, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
  2805. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, .5, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
  2806. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
  2807. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
  2808. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
  2809. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
  2810. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2811. if Debounces.on == false then break end
  2812. wait()
  2813. end
  2814. wait(1)
  2815. v = Instance.new("Sound")
  2816. v.SoundId = "rbxassetid://130792236" --181384451
  2817. v.Parent = char
  2818. v.Looped = false
  2819. v.Pitch = .76 --1.04
  2820. v.Volume = 1
  2821. wait(.01)
  2822. v:Play()
  2823.  
  2824. if Daytime == true then
  2825. Daytime = false
  2826. l.TimeOfDay = 24
  2827. else
  2828. Daytime = true
  2829. l.TimeOfDay = 12
  2830. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  2831. end
  2832.  
  2833. local Shockwave = function()
  2834. local rng1 = Instance.new("Part", char)
  2835. rng1.Anchored = true
  2836. rng1.BrickColor = BrickColor.new("Really black")
  2837. rng1.CanCollide = false
  2838. rng1.FormFactor = 3
  2839. rng1.Name = "Ring"
  2840. rng1.Size = Vector3.new(1, 1, 1)
  2841. rng1.Transparency = 0.35
  2842. rng1.TopSurface = 0
  2843. rng1.BottomSurface = 0
  2844. local rngm1 = Instance.new("SpecialMesh", rng)
  2845. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2846. rngm1.Scale = Vector3.new(10, 10, 1)
  2847. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  2848. local Wave = Instance.new("Part", game.Workspace--[[?]])
  2849. Wave.Name = "Shockwave"
  2850. Wave.BrickColor = BrickColor.new("Really black")
  2851. Wave.Size = Vector3.new(1, 1, 1)
  2852. Wave.Shape = "Ball"
  2853. Wave.CanCollide = false
  2854. Wave.Anchored = true
  2855. Wave.TopSurface = 0
  2856. Wave.BottomSurface = 0
  2857. Wave.Touched:connect(function(hit)
  2858. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  2859. local Occlude = true
  2860. local NotOccludes = {
  2861. char.Name;
  2862. "Wings";
  2863. "Scythe";
  2864. "Thingy";
  2865. "Thingy2"; -- put all of the names in a table pls
  2866. }
  2867. for i,v in pairs(NotOccludes) do
  2868. if hit.Parent.Name == v then
  2869. Occlude = false
  2870. end
  2871. end
  2872. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  2873. if Occlude then
  2874. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  2875. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  2876. end
  2877. end
  2878. end)
  2879.  
  2880. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  2881.  
  2882. coroutine.wrap(function()
  2883. for i = 1, 20, 0.2 do
  2884. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2885. rng1.Transparency = i/20
  2886. wait()
  2887. end
  2888. wait()
  2889. rng1:Destroy()
  2890. end)()
  2891.  
  2892. Delay(0, function()
  2893.  
  2894. if Daytime == false then
  2895. for i = 1, 50, 1 do
  2896. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2897. Wave.CFrame = char.Torso.CFrame
  2898. local t = i / 50
  2899. Wave.Transparency = t
  2900. wait()
  2901. end
  2902. else
  2903. for i = 1, 50, 1 do
  2904. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2905. Wave.CFrame = char.Torso.CFrame
  2906. local t = i / 50
  2907. Wave.Transparency = t
  2908. wait()
  2909. end
  2910. end
  2911. Wave:Destroy()
  2912. end)
  2913. Delay(0, function()
  2914. while wait() do
  2915. if Wave ~= nil then
  2916. Wave.CFrame = char.Torso.CFrame
  2917. else
  2918. break
  2919. end
  2920. end
  2921. end)
  2922. end
  2923. Shockwave()
  2924. for i = 1, 15 do
  2925. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2926. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2927. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2928. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2929. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2930. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2931. if Debounces.on == false then break end
  2932. wait()
  2933. end
  2934. for i = 1, 15 do
  2935. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2936. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2937. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2938. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2939. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2940. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2941. if Debounces.on == false then break end
  2942. wait()
  2943. end
  2944. for i = 1, 15 do
  2945. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2946. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2947. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2948. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2949. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2950. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2951. if Debounces.on == false then break end
  2952. wait()
  2953. end
  2954. for i = 1, 15 do
  2955. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2956. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2957. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2958. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2959. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2960. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2961. if Debounces.on == false then break end
  2962. wait()
  2963. end
  2964. for i = 1, 15 do
  2965. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2966. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2967. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2968. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2969. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2970. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2971. if Debounces.on == false then break end
  2972. wait()
  2973. end
  2974. for i = 1, 15 do
  2975. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2976. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2977. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2978. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2979. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2980. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2981. if Debounces.on == false then break end
  2982. wait()
  2983. end
  2984. wait(1.4)
  2985. Debounces.NoIdl = false
  2986. hum.WalkSpeed = 5
  2987. Debounces.on = false
  2988. wait()
  2989. if Debounces.CanAttack == false then
  2990. Debounces.CanAttack = true
  2991. v:Destroy()
  2992. end
  2993. end
  2994. end
  2995. end)
  2996. ----------------------------------------------------
  2997. mouse.KeyDown:connect(function(key)
  2998. if key == "m" then
  2999. hum.WalkSpeed = 0
  3000. if Debounces.CanAttack == true then
  3001. Debounces.CanAttack = false
  3002. Debounces.on = true
  3003. Debounces.NoIdl = true
  3004. --[[x = Instance.new("Sound",char)
  3005. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  3006. x.Looped = false
  3007. x.Pitch = 1.1
  3008. x.Volume = 1
  3009. x:Play()
  3010. x2 = Instance.new("Sound",char)
  3011. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  3012. x2.Looped = false
  3013. x2.Pitch = .7
  3014. x2.Volume = 1
  3015. wait(.1)
  3016. x:Play()
  3017. x2:Play()
  3018. for i = 1, 20 do
  3019. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.6,-.2) *CFrame.Angles (math.rad (45),math.rad(0),math.rad(32)), 0.2)
  3020. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1,0)*CFrame.Angles(math.rad (0),math.rad(0),math.rad(-20)), 0.2)
  3021. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad (- 8),math.rad(-40), math.rad(-8)),0.2)
  3022. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3.2, 0) * CFrame.Angles (math.rad (-50), math.rad(40), math.rad(0)), 0.2)
  3023. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, .4, -1.6) * CFrame.Angles (math.rad (30), 0, math.rad(20)), 0.2)
  3024. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.6, -2, 0) * CFrame.Angles (math.rad(- 10), math.rad(-40), math.rad(0)), 0.2)
  3025. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
  3026. if Debounces.on == false then break end
  3027. wait()
  3028. x:Destroy()
  3029. x2:Destroy()
  3030. end
  3031. wait(1)]]--
  3032. local rng = Instance.new("Part", char)
  3033. rng.Anchored = true
  3034. rng.BrickColor = BrickColor.new("Really black")
  3035. rng.CanCollide = false
  3036. rng.FormFactor = 3
  3037. rng.Name = "Ring"
  3038. rng.Size = Vector3.new(1, 1, 1)
  3039. rng.Transparency = 0.35
  3040. rng.TopSurface = 0
  3041. rng.BottomSurface = 0
  3042. rng.Position = torso.Position - Vector3.new(0,2,0)
  3043. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  3044. local rngm = Instance.new("SpecialMesh", rng)
  3045. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3046. rngm.Scale = Vector3.new(1, 1, 2)
  3047. x = Instance.new("Sound",char)
  3048. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3049. x.Looped = false
  3050. x.Pitch = .7
  3051. x.Volume = 1
  3052. x:Play()
  3053. coroutine.wrap(function()
  3054. for i = 1, 60, 2 do
  3055. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  3056. rng.Transparency = i/60
  3057. wait()
  3058. end
  3059. wait()
  3060. rng:Destroy()
  3061. end)()
  3062. hum.WalkSpeed = 50
  3063. BV = Instance.new("BodyVelocity", torso)
  3064. BV.maxForce = Vector3.new(0,200000,0)
  3065. BV.P = 100000
  3066. BV.velocity = Vector3.new(0,800,0)
  3067. for i = 1, 20 do
  3068. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.7)
  3069. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  3070. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  3071. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(20)), 0.7)
  3072. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  3073. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  3074. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3075. if Debounces.on == false then break end
  3076. wait()
  3077. end
  3078. x:Destroy()
  3079. BV:Destroy()
  3080. --[[for i = 1, 30 do
  3081. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  3082. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad (0), math.rad(0)), 0.3)
  3083. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  3084. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  3085. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  3086. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  3087. if Debounces.on == false then break end
  3088. wait()
  3089. end]]--
  3090. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  3091. for i = 1, 30 do
  3092. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  3093. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3094. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-90)), 0.3)
  3095. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  3096. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  3097. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  3098. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3099. if Debounces.on == false then break end
  3100. wait()
  3101. end
  3102. end
  3103. Debounces.on = false
  3104. Debounces.NoIdl = false
  3105. local ry,ht,ps=nil,nil,nil
  3106. while ht==nil do
  3107. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  3108. wait()
  3109. end
  3110. z = Instance.new("Sound",char)
  3111. z.SoundId = "rbxassetid://142070127"
  3112. z.Volume = 1
  3113. wait(.1)
  3114. z:Play()
  3115. Landing()
  3116. hum.WalkSpeed = 8
  3117. if Debounces.CanAttack == false then
  3118. Debounces.CanAttack = true
  3119. end
  3120. end
  3121. end
  3122. end)
  3123. ----------------------------------------------------
  3124. Grab = false
  3125. mouse.KeyDown:connect(function(key)
  3126. if key == "z" then
  3127. --larm.BrickColor = BrickColor.new("Bright red")
  3128. --rarm.BrickColor = BrickColor.new("Bright red")
  3129. Debounces.on = true
  3130. Debounces.NoIdl = true
  3131. if Grab == false then
  3132. gp = nil
  3133. con1=larm.Touched:connect(function(hit) -- this is grab
  3134. ht = hit.Parent
  3135. hum1=ht:FindFirstChild('Humanoid')
  3136. if hum1 ~= nil then
  3137. hum1.PlatformStand=true
  3138. gp = ht
  3139. Grab = true
  3140. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  3141. asd.Parent = larm
  3142. asd.Name = "asd"
  3143. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  3144. elseif hum1 == nil then
  3145. con1:disconnect()
  3146. wait() return
  3147. end
  3148. end)
  3149. for i = 1, 18 do
  3150. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(36)), 0.2)
  3151. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.65,.9,-.5)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  3152. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3153. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  3154. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  3155. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  3156. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  3157. if Debounces.on == false then break end
  3158. wait()
  3159. end
  3160. con1:disconnect()
  3161. Debounces.on = false
  3162. Debounces.NoIdl = false
  3163. elseif Grab == true then
  3164. Grab = false
  3165. for i = 1, 20 do
  3166. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.2)
  3167. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-20)), 0.1)
  3168. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3169. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3170. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3171. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3172. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3173. if Debounces.on == false then end
  3174. wait()
  3175. end
  3176. if gp ~= nil then
  3177. for i,v in pairs(larm:GetChildren()) do
  3178. if v.Name == "asd" and v:IsA("Weld") then
  3179. v:Remove()
  3180. end
  3181. end
  3182. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  3183. bv.maxForce = Vector3.new(400000, 400000, 400000)
  3184. bv.P = 125000
  3185. bv.velocity = char.Head.CFrame.lookVector * 200
  3186. for i = 1, 12 do
  3187. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.75)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(20)), 0.5)
  3188. if Debounces.on == false then end
  3189. wait()
  3190. end
  3191. ht=nil
  3192. Spawn(function()
  3193. wait(0.5)
  3194. bv:Destroy()
  3195. end)
  3196. Debounces.on = false
  3197. Debounces.NoIdl = false
  3198. elseif ht == nil then wait()
  3199. Grab = false
  3200. Debounces.on = false
  3201. Debounces.NoIdl = false
  3202. end
  3203. end
  3204. end
  3205. end)
  3206. ----------------------------------------------------
  3207. mouse.KeyDown:connect(function(key)
  3208. if string.byte(key) == 52 then
  3209. char.Humanoid.WalkSpeed = 21
  3210. end
  3211. end)
  3212. mouse.KeyUp:connect(function(key)
  3213. if string.byte(key) == 52 then
  3214. char.Humanoid.WalkSpeed = 5
  3215. end
  3216. end)
  3217. ----------------------------------------------------
  3218. local animpose = "Idle"
  3219. local lastanimpose = "Idle"
  3220. local sine = 0
  3221. local change = 1
  3222. local val = 0
  3223. local ffing = false
  3224. ----------------------------------------------------
  3225. --[[x = Instance.new("Sound", char)
  3226. x.SoundId = "http://www.roblox.com/asset/?id=187922823"
  3227. x.Looped = true
  3228. x.Volume = 1
  3229. x.Pitch = 1
  3230. local footsteps = false]]--
  3231. -------------------------------
  3232. game:GetService("RunService").RenderStepped:connect(function()
  3233. --[[if char.Humanoid.Jump == true then
  3234. jump = true
  3235. else
  3236. jump = false
  3237. end]]
  3238. char.Humanoid.FreeFalling:connect(function(f)
  3239. if f then
  3240. ffing = true
  3241. else
  3242. ffing = false
  3243. end
  3244. end)
  3245. sine = sine + change
  3246. if jumpn == true then
  3247. animpose = "Jumping"
  3248. elseif ffing == true then
  3249. animpose = "Freefalling"
  3250. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3251. animpose = "Idle"
  3252. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3253. animpose = "Walking"
  3254. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3255. animpose = "Running"
  3256. end
  3257. if animpose ~= lastanimpose then
  3258. sine = 0
  3259. if Debounces.NoIdl == false then
  3260. if animpose == "Idle" then
  3261. for i = 1, 2 do
  3262. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,.45,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2)
  3263. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,.45,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  3264. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3265. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3266. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3267. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3268. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3269. end
  3270. elseif animpose == "Walking" then
  3271. for i = 1, 2 do
  3272. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, .45, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(20)), 0.2)
  3273. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, .45, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  3274. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
  3275. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  3276. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.0) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3277. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.0) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3278. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3279. end
  3280. elseif animpose == "Running" then
  3281. for i = 1, 2 do
  3282. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.45, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  3283. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, .6, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2)
  3284. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  3285. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3286. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1-0.3*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  3287. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1+0.3*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  3288. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3289. end
  3290. wait()
  3291. end
  3292. else
  3293. end
  3294. end
  3295. lastanimpose = animpose
  3296. if Debounces.NoIdl == false then
  3297. if animpose == "Idle" then
  3298. if stanceToggle == "Normal" then
  3299. change = 0.5
  3300. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,.45,0)*CFrame.Angles(math.rad(0+0*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  3301. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,.45+0.05*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  3302. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  3303. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  3304. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3305. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3306. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3307. elseif stanceToggle == "Sitting" then
  3308. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2)
  3309. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2, .9, -1)*CFrame.Angles(math.rad(78+1*math.cos(sine/14)), math.rad(0), math.rad(50)), 0.2)
  3310. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2)
  3311. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  3312. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2)
  3313. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2)
  3314. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3315. end
  3316. elseif animpose == "Walking" then
  3317. if stanceToggle == "Normal" then
  3318. change = 1
  3319. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, .45+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(0+0*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
  3320. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, .60+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.2)
  3321. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2)
  3322. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2)
  3323. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/4.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/14)/1.15, 0, 0), .2)
  3324. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/4.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/14)/1.15, 0, 0), .2)
  3325. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3326. end
  3327. elseif animpose == "Running" then
  3328. change = 1
  3329. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.45, .5) * CFrame.Angles(math.rad(-10-20*math.cos(sine/4)/2), math.rad(-40+10*math.cos(sine/4)/2), math.rad(50-10*math.cos(sine/4)/2)), 0.2)
  3330. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.45, .5)*CFrame.Angles(math.rad(10+20*math.cos(sine/4)/2), math.rad(40-10*math.cos(sine/4)/2), math.rad(-50+10*math.cos(sine/4)/2)), 0.2)
  3331. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  3332. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3333. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1-0.3*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/4) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  3334. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1+0.3*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/4) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  3335. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3336. end
  3337. end
  3338. --[[if animpose == "Walking" then
  3339. if footsteps == false then
  3340. x:Play()
  3341. footsteps = true
  3342. end
  3343. x.Pitch = 1.1
  3344. elseif animpose == "Idle" then
  3345. x:Stop()
  3346. footsteps = false
  3347. elseif animpose == "Running" then
  3348. x.Pitch = 1.2
  3349. if footsteps == false then
  3350. x:Play()
  3351. footsteps = true
  3352. end
  3353. end]]--
  3354. end)
Add Comment
Please, Sign In to add comment