Gokussjg

Untitled

Nov 15th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 198.84 KB | None | 0 0
  1. print("DSSJ4 Loading..")
  2. local p = game.Players.LocalPlayer
  3. local char = p.Character
  4. local Character = char
  5. local mouse = p:GetMouse()
  6. local larm = char["Left Arm"]
  7. local rarm = char["Right Arm"]
  8. local lleg = char["Left Leg"]
  9. local rleg = char["Right Leg"]
  10. local hed = char.Head
  11. local torso = char.Torso
  12. local hum = char.Humanoid
  13. local cam = game.Workspace.CurrentCamera
  14. local root = char.HumanoidRootPart
  15. local deb = false
  16. local shot = 0
  17. local debris=game:service"Debris"
  18. local l = game:GetService("Lighting")
  19. local rs = game:GetService("RunService").RenderStepped
  20. ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  21. local m = Instance.new("Model",Character)
  22. m.Name = "WeaponModel"
  23. math.randomseed(os.time())
  24. for i,v in pairs(char:children()) do
  25. if v:IsA("Hat") then
  26. v:Destroy()
  27. end
  28. end
  29. for i,v in pairs (hed:GetChildren()) do
  30. if v:IsA("Sound") then
  31. v:Destroy()
  32. end
  33. end
  34. ----------------------------------------------------
  35. Debounces = {
  36. CanAttack = true;
  37. NoIdl = false;
  38. Slashing = false;
  39. Slashed = false;
  40. RPunch = false;
  41. RPunched = false;
  42. LPunch = false;
  43. LPunched = false;
  44. }
  45. local Touche = {char.Name, }
  46. ----------------------------------------------------
  47. hed.face.Texture = "rbxassetid://34668268"
  48. char["Body Colors"].HeadColor = BrickColor.new("Pastel brown")
  49. char["Body Colors"].TorsoColor = BrickColor.new("Pastel brown")
  50. char["Body Colors"].LeftArmColor = BrickColor.new("Pastel brown")
  51. char["Body Colors"].RightArmColor = BrickColor.new("Pastel brown")
  52. ----------------------------------------------------
  53. ypcall(function()
  54. char.Shirt:Destroy()
  55. char.Pants:Destroy()
  56. shirt = Instance.new("Shirt", char)
  57. shirt.Name = "Shirt"
  58. pants = Instance.new("Pants", char)
  59. pants.Name = "Pants"
  60. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  61. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  62. end)
  63. ----------------------------------------------------
  64. function lerp(a, b, t) -- Linear interpolation
  65. return a + (b - a)*t
  66. end
  67.  
  68. function slerp(a, b, t) --Spherical interpolation
  69. dot = a:Dot(b)
  70. if dot > 0.99999 or dot < -0.99999 then
  71. return t <= 0.5 and a or b
  72. else
  73. r = math.acos(dot)
  74. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  75. end
  76. end
  77.  
  78. function matrixInterpolate(a, b, t)
  79. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  80. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  81. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  82. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  83. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  84. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  85. local t = v1:Dot(v2)
  86. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  87. return CFrame.new()
  88. end
  89. return CFrame.new(
  90. v0.x, v0.y, v0.z,
  91. v1.x, v1.y, v1.z,
  92. v2.x, v2.y, v2.z,
  93. v3.x, v3.y, v3.z)
  94. end
  95. ----------------------------------------------------
  96. function genWeld(a,b)
  97. local w = Instance.new("Weld",a)
  98. w.Part0 = a
  99. w.Part1 = b
  100. return w
  101. end
  102. function weld(a, b)
  103. local weld = Instance.new("Weld")
  104. weld.Name = "W"
  105. weld.Part0 = a
  106. weld.Part1 = b
  107. weld.C0 = a.CFrame:inverse() * b.CFrame
  108. weld.Parent = a
  109. return weld;
  110. end
  111. ----------------------------------------------------
  112. function Lerp(c1,c2,al)
  113. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  114. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  115. for i,v in pairs(com1) do
  116. com1[i] = v+(com2[i]-v)*al
  117. end
  118. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  119. end
  120. ----------------------------------------------------
  121. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  122. local wld = Instance.new("Weld", wp1)
  123. wld.Part0 = wp0
  124. wld.Part1 = wp1
  125. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  126. end
  127. ----------------------------------------------------
  128. function weld5(part0, part1, c0, c1)
  129. weeld=Instance.new("Weld", part0)
  130. weeld.Part0=part0
  131. weeld.Part1=part1
  132. weeld.C0=c0
  133. weeld.C1=c1
  134. return weeld
  135. end
  136. ----------------------------------------------------
  137. function HasntTouched(plrname)
  138. local ret = true
  139. for _, v in pairs(Touche) do
  140. if v == plrname then
  141. ret = false
  142. end
  143. end
  144. return ret
  145. end
  146. ----------------------------------------------------
  147. local RbxUtility = LoadLibrary("RbxUtility")
  148. local Create = RbxUtility.Create
  149.  
  150. function RemoveOutlines(part)
  151. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  152. end
  153.  
  154. function CreatePart(FormFactor, Parent, Material, Reflectance, Transparency, BC, Name, Size)
  155. local Part = Create("Part"){
  156. formFactor = FormFactor,
  157. Parent = Parent,
  158. Reflectance = Reflectance,
  159. Transparency = Transparency,
  160. CanCollide = false,
  161. Locked = true,
  162. BrickColor = BrickColor.new(tostring(BC)),
  163. Name = Name,
  164. Size = Size,
  165. Material = Material,
  166. }
  167. RemoveOutlines(Part)
  168. return Part
  169. end
  170.  
  171. function CreateMesh(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  172. local Msh = Create(Mesh){
  173. Parent = Part,
  174. Offset = OffSet,
  175. Scale = Scale,
  176. }
  177. if Mesh == "SpecialMesh" then
  178. Msh.MeshType = MeshType
  179. Msh.MeshId = MeshId
  180. end
  181. return Msh
  182. end
  183.  
  184. function CreateWeld(Parent, P0, P1, c0, c1)
  185. local W = Create("Weld"){
  186. Parent = Parent,
  187. Part0 = P0,
  188. Part1 = P1,
  189. C0 = c0,
  190. C1 = c1,
  191. }
  192. return W
  193. end
  194. ----------------------------------------------------
  195. newWeld(torso, larm, -1.5, 0.5, 0)
  196. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  197. newWeld(torso, rarm, 1.5, 0.5, 0)
  198. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  199. newWeld(torso, hed, 0, 1.5, 0)
  200. newWeld(torso, lleg, -0.5, -1, 0)
  201. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  202. newWeld(torso, rleg, 0.5, -1, 0)
  203. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  204. newWeld(root, torso, 0, -1, 0)
  205. torso.Weld.C1 = CFrame.new(0, -1, 0)
  206. ---------------------------------------------------- ARC
  207. Handle=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Crimson","Handle",Vector3.new(0.301632881, 2.05244946, 0.301632911))
  208. Handleweld=CreateWeld(m,Character["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))
  209. CreateMesh("CylinderMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  210. FakeHandle=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Crimson","FakeHandle",Vector3.new(0.301632881, 1.05244946, 0.301632911))
  211. 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))
  212. CreateMesh("CylinderMesh",FakeHandle,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  213. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.5,"Crimson","Part",Vector3.new(0.200000003, 0.904898763, 1.50816441))
  214. 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))
  215. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.123669446, 1, 1))
  216. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.452449292, 0.200000003, 0.301632941))
  217. 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))
  218. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904898703, 1))
  219. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 0.603265822, 1.05571508))
  220. 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))
  221. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 1))
  222. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 4.67530966, 0.200000003))
  223. 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))
  224. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 0.829490483))
  225. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.452449292, 0.200000003, 0.301632941))
  226. 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))
  227. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904898703, 1))
  228. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  229. 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))
  230. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  231. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 4.67530966, 0.200000003))
  232. 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))
  233. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.120653138, 1, 0.837031305))
  234. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.603265882, 0.200000003))
  235. 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))
  236. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 0.754082263))
  237. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 1.65898108, 0.200000003))
  238. 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))
  239. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 0.754082263))
  240. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  241. 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))
  242. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  243. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  244. 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))
  245. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  246. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.452449292, 0.200000003, 0.200000003))
  247. 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))
  248. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.942602754, 0.754082263))
  249. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.452449292, 0.200000003, 0.200000003))
  250. 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))
  251. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.942602754, 0.754082263))
  252. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.301632881, 4.67530966, 0.200000003))
  253. 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))
  254. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.754082263))
  255. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.452449292, 0.200000003, 0.200000003))
  256. 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))
  257. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.942602754, 0.754082263))
  258. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  259. 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))
  260. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  261. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  262. 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))
  263. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  264. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  265. 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))
  266. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  267. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.452449352, 0.301632941, 0.301632911))
  268. 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))
  269. 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))
  270. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.301632881, 0.452449381, 0.301632911))
  271. 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))
  272. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  273. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  274. 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))
  275. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  276. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  277. 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))
  278. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  279. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.301632881, 0.452449381, 0.301632911))
  280. 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))
  281. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  282. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","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.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))
  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,"Really black","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.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))
  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.200000003, 0.603265882, 0.200000003))
  289. 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))
  290. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 0.754082263))
  291. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 1.65898108, 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.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))
  293. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 0.754082263))
  294. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632822, 0.301632911, 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.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))
  296. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  297. 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))
  298. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  299. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  300. 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))
  301. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  302. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  303. 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))
  304. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  305. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  306. 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))
  307. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 0.754082263))
  308. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.452449292, 0.200000003, 0.301632941))
  309. 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))
  310. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904898703, 1))
  311. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.5,"Crimson","Part",Vector3.new(0.904898703, 4.67530966, 0.200000003))
  312. 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))
  313. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.0980306864))
  314. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.452449292, 0.200000003, 0.301632941))
  315. 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))
  316. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904898703, 1))
  317. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.301632911, 0.452449381))
  318. 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))
  319. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  320. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.301632911, 0.603265882))
  321. 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))
  322. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  323. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.452449381, 0.301632911))
  324. 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))
  325. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  326. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.200000003, 1.20653164))
  327. 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))
  328. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  329. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632822, 0.316714555, 0.301632941))
  330. 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))
  331. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  332. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.200000003, 1.20653164))
  333. 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))
  334. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  335. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.301632911))
  336. 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))
  337. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 0.754082263, 1))
  338. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 2.11143041, 0.200000003))
  339. 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))
  340. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 0.754082263))
  341. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.452449292, 0.200000003, 0.200000003))
  342. 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))
  343. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.942602754, 0.754082263))
  344. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  345. 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))
  346. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  347. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.301632822, 0.331796169, 0.200000003))
  348. 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))
  349. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.754082322))
  350. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  351. 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))
  352. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  353. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.5,0,"Light stone grey","Part",Vector3.new(0.200000003, 2.11143041, 0.200000003))
  354. 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))
  355. CreateMesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.754082203, 1, 0.754082263))
  356. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.301632881, 0.301632911, 0.200000003))
  357. 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))
  358. 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))
  359. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.200000003, 0.301632911))
  360. 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))
  361. CreateMesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.754082263, 1))
  362. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.301632881, 0.301632911, 0.452449381))
  363. 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))
  364. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  365. Hitbox=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,1,"Crimson","Hitbox",Vector3.new(0.904898703, 6.27530956, 0.200000003))
  366. 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))
  367. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.452449381))
  368. 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))
  369. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.791786313, 0.754082263, 1))
  370. Part=CreatePart(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  371. 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))
  372. CreateMesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.806038439, 0.102555193, 0.754082263))
  373. ----------------------------------------------------
  374. z = Instance.new("Sound", char)
  375. z.SoundId = "rbxassetid://303570180"
  376. z.Looped = true
  377. z.Pitch = 1
  378. z.Volume = 1
  379. wait(.1)
  380. z:Play()
  381. ----------------------------------------------------
  382. local m = Instance.new("Model")
  383. m.Name = "Hair"
  384. p1 = Instance.new("Part", m)
  385. p1.BrickColor = BrickColor.new("Really black")
  386. p1.FormFactor = Enum.FormFactor.Symmetric
  387. p1.Size = Vector3.new(1, 1, 1)
  388. p1.CFrame = CFrame.new(-2.49043155, 8.24595642, -3.40113306, -5.48362732e-006, -0.978699088, 0.205299795, 3.27825546e-007, -0.205299854, -0.978699148, 1, -5.28991222e-006, 1.48639083e-006)
  389. p1.CanCollide = false
  390. p1.Locked = true
  391. p1.BottomSurface = Enum.SurfaceType.Smooth
  392. p1.TopSurface = Enum.SurfaceType.Smooth
  393. b1 = Instance.new("SpecialMesh", p1)
  394. b1.MeshId = "http://www.roblox.com/asset/?id=12212520"
  395. b1.TextureId = ""
  396. b1.MeshType = Enum.MeshType.FileMesh
  397. b1.Name = "Mesh"
  398. b1.VertexColor = Vector3.new(0, 0, 0)
  399. b1.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  400. p2 = Instance.new("Part", m)
  401. p2.BrickColor = BrickColor.new("Pastel brown")
  402. p2.Transparency = 1
  403. p2.Name = "Head"
  404. p2.FormFactor = Enum.FormFactor.Symmetric
  405. p2.Size = Vector3.new(2, 1, 1)
  406. p2.CFrame = CFrame.new(-1.70008016, 8.14794922, -3.40013027, 4.24603923e-006, 7.4505806e-008, -1, -1.50268988e-007, 1, 1.49011612e-008, 1.00000012, 6.79109462e-008, 4.23316806e-006)
  407. p2.CanCollide = false
  408. p2.Locked = true
  409. p2.TopSurface = Enum.SurfaceType.Smooth
  410. b2 = Instance.new("SpecialMesh", p2)
  411. b2.MeshType = Enum.MeshType.Head
  412. b2.Name = "Mesh"
  413. b2.Scale = Vector3.new(1.25, 1.25, 1.25)
  414. p3 = Instance.new("Part", m)
  415. p3.BrickColor = BrickColor.new("Really black")
  416. p3.FormFactor = Enum.FormFactor.Symmetric
  417. p3.Size = Vector3.new(2, 2, 2)
  418. p3.CFrame = CFrame.new(-1.70003617, 8.71796131, -3.4000442, 2.57710985e-006, 6.95607483e-008, -1.00000012, -1.20466638e-007, 1, 9.95640903e-009, 1.00000024, 3.81086345e-008, 2.56423846e-006)
  419. p3.CanCollide = false
  420. p3.Locked = true
  421. p3.BottomSurface = Enum.SurfaceType.Smooth
  422. p3.TopSurface = Enum.SurfaceType.Smooth
  423. b3 = Instance.new("SpecialMesh", p3)
  424. b3.MeshId = "http://www.roblox.com/asset/?id=16627529"
  425. b3.TextureId = ""
  426. b3.MeshType = Enum.MeshType.FileMesh
  427. b3.Name = "Mesh"
  428. b3.VertexColor = Vector3.new(0, 0, 0)
  429. b3.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  430. p4 = Instance.new("Part", m)
  431. p4.BrickColor = BrickColor.new("Really black")
  432. p4.FormFactor = Enum.FormFactor.Symmetric
  433. p4.Size = Vector3.new(1, 1, 1)
  434. p4.CFrame = CFrame.new(-1.77981007, 8.84795475, -3.40016508, 5.79576135e-006, 7.9450956e-008, -1.00000012, -1.80071311e-007, 1, 1.98458743e-008, 1.00000024, 9.77132402e-008, 5.78289018e-006)
  435. p4.CanCollide = false
  436. p4.Locked = true
  437. p4.BottomSurface = Enum.SurfaceType.Smooth
  438. p4.TopSurface = Enum.SurfaceType.Smooth
  439. b4 = Instance.new("SpecialMesh", p4)
  440. b4.MeshId = "http://www.roblox.com/asset/?id=19326912"
  441. b4.TextureId = ""
  442. b4.MeshType = Enum.MeshType.FileMesh
  443. b4.Name = "Mesh"
  444. b4.VertexColor = Vector3.new(0, 0, 0)
  445. p5 = Instance.new("Part", m)
  446. p5.BrickColor = BrickColor.new("Really black")
  447. p5.FormFactor = Enum.FormFactor.Symmetric
  448. p5.Size = Vector3.new(1, 1, 1)
  449. p5.CFrame = CFrame.new(-1.70003772, 8.46796131, -3.40004301, -3.43517968e-007, 2.98088111e-007, -1, -1.00421907e-007, 1, 2.38484063e-007, 1.00000012, 1.80640072e-008, -3.56389592e-007)
  450. p5.CanCollide = false
  451. p5.Locked = true
  452. p5.BottomSurface = Enum.SurfaceType.Smooth
  453. p5.TopSurface = Enum.SurfaceType.Smooth
  454. b5 = Instance.new("SpecialMesh", p5)
  455. b5.MeshId = "http://www.roblox.com/asset/?id=45916884"
  456. b5.TextureId = ""
  457. b5.MeshType = Enum.MeshType.FileMesh
  458. b5.Name = "Mesh"
  459. b5.VertexColor = Vector3.new(0, 0, 0)
  460. b5.Scale = Vector3.new(1, 0.899999976, 1)
  461. p6 = Instance.new("Part", m)
  462. p6.BrickColor = BrickColor.new("Really black")
  463. p6.FormFactor = Enum.FormFactor.Symmetric
  464. p6.Size = Vector3.new(1, 1, 1)
  465. p6.CFrame = CFrame.new(-1.89967656, 8.58795834, -3.44990659, -5.81936433e-007, 5.36502284e-007, -0.99999994, -1.3998249e-007, 1, 4.76898265e-007, 1, 5.76247672e-008, -5.94808171e-007)
  466. p6.CanCollide = false
  467. p6.Locked = true
  468. p6.BottomSurface = Enum.SurfaceType.Smooth
  469. p6.TopSurface = Enum.SurfaceType.Smooth
  470. b6 = Instance.new("SpecialMesh", p6)
  471. b6.MeshId = "http://www.roblox.com/asset/?id=62246019"
  472. b6.TextureId = ""
  473. b6.MeshType = Enum.MeshType.FileMesh
  474. b6.Name = "Mesh"
  475. b6.VertexColor = Vector3.new(0, 0, 0)
  476. p7 = Instance.new("Part", m)
  477. p7.BrickColor = BrickColor.new("Really black")
  478. p7.FormFactor = Enum.FormFactor.Symmetric
  479. p7.Size = Vector3.new(1, 1, 1)
  480. p7.CFrame = CFrame.new(-1.89918542, 8.31796837, -3.50097537, -4.62727087e-007, 5.36502228e-007, -0.999999881, -1.39982518e-007, 1, 4.76898208e-007, 0.99999994, 5.76247459e-008, -4.75598938e-007)
  481. p7.CanCollide = false
  482. p7.Locked = true
  483. p7.BottomSurface = Enum.SurfaceType.Smooth
  484. p7.TopSurface = Enum.SurfaceType.Smooth
  485. b7 = Instance.new("SpecialMesh", p7)
  486. b7.MeshId = "http://www.roblox.com/asset/?id=76056263"
  487. b7.TextureId = ""
  488. b7.MeshType = Enum.MeshType.FileMesh
  489. b7.Name = "Mesh"
  490. b7.VertexColor = Vector3.new(0, 0, 0)
  491. p8 = Instance.new("Part", m)
  492. p8.BrickColor = BrickColor.new("Really black")
  493. p8.FormFactor = Enum.FormFactor.Symmetric
  494. p8.Size = Vector3.new(1, 1, 1)
  495. p8.CFrame = CFrame.new(-2.62433338, 7.66397905, -3.4010179, -1.17798254e-006, -0.805111349, 0.593123376, -2.5008859e-007, -0.593123615, -0.805111527, 0.999999881, -9.58229293e-007, 4.4941558e-007)
  496. p8.CanCollide = false
  497. p8.Locked = true
  498. p8.BottomSurface = Enum.SurfaceType.Smooth
  499. p8.TopSurface = Enum.SurfaceType.Smooth
  500. b8 = Instance.new("SpecialMesh", p8)
  501. b8.MeshId = "http://www.roblox.com/asset/?id=12212520"
  502. b8.TextureId = ""
  503. b8.MeshType = Enum.MeshType.FileMesh
  504. b8.Name = "Mesh"
  505. b8.VertexColor = Vector3.new(0, 0, 0)
  506. b8.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  507. p9 = Instance.new("Part", m)
  508. p9.BrickColor = BrickColor.new("Really black")
  509. p9.FormFactor = Enum.FormFactor.Symmetric
  510. p9.Size = Vector3.new(2, 1, 2)
  511. p9.CFrame = CFrame.new(-1.76505995, 8.56096649, -3.40065479, -9.73168881e-007, -0.0995008349, -0.995037436, -1.70322267e-007, 0.995037675, -0.0995009243, 1, 1.13823972e-007, -6.80968242e-007)
  512. p9.CanCollide = false
  513. p9.Locked = true
  514. p9.BottomSurface = Enum.SurfaceType.Smooth
  515. p9.TopSurface = Enum.SurfaceType.Smooth
  516. b9 = Instance.new("SpecialMesh", p9)
  517. b9.MeshId = "http://www.roblox.com/asset/?id=12259089"
  518. b9.TextureId = ""
  519. b9.MeshType = Enum.MeshType.FileMesh
  520. b9.Name = "Mesh"
  521. b9.VertexColor = Vector3.new(0, 0, 0)
  522. b9.Scale = Vector3.new(1.01999998, 1.04999995, 1.04999995)
  523. p10 = Instance.new("Part", m)
  524. p10.BrickColor = BrickColor.new("Really black")
  525. p10.FormFactor = Enum.FormFactor.Symmetric
  526. p10.Size = Vector3.new(1, 1, 1)
  527. p10.CFrame = CFrame.new(-2.0207715, 9.06097031, -3.39961624, -1.10652763e-006, -0.683569431, -0.729885519, -2.85231891e-007, 0.729885638, -0.68356967, 1.00000012, -3.22293062e-007, -8.40051371e-007)
  528. p10.CanCollide = false
  529. p10.Locked = true
  530. p10.BottomSurface = Enum.SurfaceType.Smooth
  531. p10.TopSurface = Enum.SurfaceType.Smooth
  532. b10 = Instance.new("SpecialMesh", p10)
  533. b10.MeshId = "http://www.roblox.com/asset/?id=12212520"
  534. b10.TextureId = ""
  535. b10.MeshType = Enum.MeshType.FileMesh
  536. b10.Name = "Mesh"
  537. b10.VertexColor = Vector3.new(0, 0, 0)
  538. b10.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  539. p11 = Instance.new("Part", m)
  540. p11.BrickColor = BrickColor.new("Really black")
  541. p11.FormFactor = Enum.FormFactor.Symmetric
  542. p11.Size = Vector3.new(1, 1, 1)
  543. p11.CFrame = CFrame.new(-2.16468835, 8.78595829, -3.40089417, -1.41617738e-006, -0.989475727, -0.144699216, -4.36450762e-007, 0.144699067, -0.989476085, 1.00000024, -9.47996682e-007, -7.38401468e-007)
  544. p11.CanCollide = false
  545. p11.Locked = true
  546. p11.BottomSurface = Enum.SurfaceType.Smooth
  547. p11.TopSurface = Enum.SurfaceType.Smooth
  548. b11 = Instance.new("SpecialMesh", p11)
  549. b11.MeshId = "http://www.roblox.com/asset/?id=12212520"
  550. b11.TextureId = ""
  551. b11.MeshType = Enum.MeshType.FileMesh
  552. b11.Name = "Mesh"
  553. b11.VertexColor = Vector3.new(0, 0, 0)
  554. b11.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  555. p12 = Instance.new("Part", m)
  556. p12.BrickColor = BrickColor.new("Really black")
  557. p12.FormFactor = Enum.FormFactor.Custom
  558. p12.Size = Vector3.new(1, 3.5, 1)
  559. p12.CFrame = CFrame.new(-3.74216318, 6.74288082, -3.40101933, -1.20476273e-006, -0.553697288, 0.832718134, -3.31002866e-007, -0.832718611, -0.553697169, 1.00000036, -8.7345768e-007, 3.69213154e-007)
  560. p12.CanCollide = false
  561. p12.Locked = true
  562. p12.BottomSurface = Enum.SurfaceType.Smooth
  563. p12.TopSurface = Enum.SurfaceType.Smooth
  564. b12 = Instance.new("SpecialMesh", p12)
  565. b12.MeshId = "http://www.roblox.com/asset/?id=12212520"
  566. b12.TextureId = ""
  567. b12.MeshType = Enum.MeshType.FileMesh
  568. b12.Name = "Mesh"
  569. b12.VertexColor = Vector3.new(0, 0, 0)
  570. b12.Scale = Vector3.new(1, 3, 1.29999995)
  571. p13 = Instance.new("Part", m)
  572. p13.BrickColor = BrickColor.new("Really black")
  573. p13.FormFactor = Enum.FormFactor.Custom
  574. p13.Size = Vector3.new(1, 2, 1)
  575. p13.CFrame = CFrame.new(-3.32689047, 6.86741829, -3.40101862, -9.81709945e-007, -0.319307148, 0.947651446, -5.6545997e-007, -0.947651923, -0.31930691, 1.00000048, -8.39551717e-007, 1.79318391e-007)
  576. p13.CanCollide = false
  577. p13.Locked = true
  578. p13.BottomSurface = Enum.SurfaceType.Smooth
  579. p13.TopSurface = Enum.SurfaceType.Smooth
  580. b13 = Instance.new("SpecialMesh", p13)
  581. b13.MeshId = "http://www.roblox.com/asset/?id=12212520"
  582. b13.TextureId = ""
  583. b13.MeshType = Enum.MeshType.FileMesh
  584. b13.Name = "Mesh"
  585. b13.VertexColor = Vector3.new(0, 0, 0)
  586. b13.Scale = Vector3.new(1, 3, 1.29999995)
  587. p14 = Instance.new("Part", m)
  588. p14.BrickColor = BrickColor.new("Really black")
  589. p14.FormFactor = Enum.FormFactor.Custom
  590. p14.Size = Vector3.new(1, 2, 1)
  591. p14.CFrame = CFrame.new(-3.02689028, 7.96740961, -3.40101862, -1.33478545e-006, -0.750354111, 0.661036491, -5.20037702e-008, -0.661037207, -0.750354171, 1.0000006, -6.31296757e-007, 2.01137496e-007)
  592. p14.CanCollide = false
  593. p14.Locked = true
  594. p14.BottomSurface = Enum.SurfaceType.Smooth
  595. p14.TopSurface = Enum.SurfaceType.Smooth
  596. b14 = Instance.new("SpecialMesh", p14)
  597. b14.MeshId = "http://www.roblox.com/asset/?id=12212520"
  598. b14.TextureId = ""
  599. b14.MeshType = Enum.MeshType.FileMesh
  600. b14.Name = "Mesh"
  601. b14.VertexColor = Vector3.new(0, 0, 0)
  602. b14.Scale = Vector3.new(1, 3, 1.29999995)
  603. p15 = Instance.new("Part", m)
  604. p15.BrickColor = BrickColor.new("Really black")
  605. p15.FormFactor = Enum.FormFactor.Custom
  606. p15.Size = Vector3.new(1, 2.5, 1)
  607. p15.CFrame = CFrame.new(-2.96531463, 7.75924349, -2.90101862, 0.342019022, -0.520305753, 0.782499552, -1.1920929e-007, -0.832718909, -0.553697407, 0.939693451, 0.189374983, -0.284806281)
  608. p15.CanCollide = false
  609. p15.Locked = true
  610. p15.BottomSurface = Enum.SurfaceType.Smooth
  611. p15.TopSurface = Enum.SurfaceType.Smooth
  612. b15 = Instance.new("SpecialMesh", p15)
  613. b15.MeshId = "http://www.roblox.com/asset/?id=12212520"
  614. b15.TextureId = ""
  615. b15.MeshType = Enum.MeshType.FileMesh
  616. b15.Name = "Mesh"
  617. b15.VertexColor = Vector3.new(0, 0, 0)
  618. b15.Scale = Vector3.new(1, 3, 1.29999995)
  619. p16 = Instance.new("Part", m)
  620. p16.BrickColor = BrickColor.new("Really black")
  621. p16.FormFactor = Enum.FormFactor.Custom
  622. p16.Size = Vector3.new(1, 2.5, 1)
  623. p16.CFrame = CFrame.new(-2.96531439, 7.75924349, -3.80101967, -0.258820295, -0.534830391, 0.804343879, -1.78813934e-007, -0.832718968, -0.553697228, 0.96592629, -0.143308073, 0.215523779)
  624. p16.CanCollide = false
  625. p16.Locked = true
  626. p16.BottomSurface = Enum.SurfaceType.Smooth
  627. p16.TopSurface = Enum.SurfaceType.Smooth
  628. b16 = Instance.new("SpecialMesh", p16)
  629. b16.MeshId = "http://www.roblox.com/asset/?id=12212520"
  630. b16.TextureId = ""
  631. b16.MeshType = Enum.MeshType.FileMesh
  632. b16.Name = "Mesh"
  633. b16.VertexColor = Vector3.new(0, 0, 0)
  634. b16.Scale = Vector3.new(1, 3, 1.29999995)
  635. p17 = Instance.new("Part", m)
  636. p17.BrickColor = BrickColor.new("Really black")
  637. p17.FormFactor = Enum.FormFactor.Custom
  638. p17.Size = Vector3.new(1, 2.4000001, 1)
  639. p17.CFrame = CFrame.new(-2.69075108, 7.07788849, -3.40101933, -1.13248825e-006, -0.319307148, 0.947651625, -1.1920929e-006, -0.947652161, -0.319306791, 1.0000006, -1.54972076e-006, 1.04308128e-007)
  640. p17.CanCollide = false
  641. p17.Locked = true
  642. p17.BottomSurface = Enum.SurfaceType.Smooth
  643. p17.TopSurface = Enum.SurfaceType.Smooth
  644. b17 = Instance.new("SpecialMesh", p17)
  645. b17.MeshId = "http://www.roblox.com/asset/?id=12212520"
  646. b17.TextureId = ""
  647. b17.MeshType = Enum.MeshType.FileMesh
  648. b17.Name = "Mesh"
  649. b17.VertexColor = Vector3.new(0, 0, 0)
  650. b17.Scale = Vector3.new(1, 3, 1.29999995)
  651. p18 = Instance.new("Part", m)
  652. p18.BrickColor = BrickColor.new("Really black")
  653. p18.FormFactor = Enum.FormFactor.Custom
  654. p18.Size = Vector3.new(2, 2, 2)
  655. p18.CFrame = CFrame.new(-1.70003319, 8.71796608, -3.40004444, -2.37434961e-006, 1.78813934e-007, 1.00000036, -2.35242567e-007, 1.00000072, 3.27825546e-007, -1.0000006, 7.95440158e-009, -2.91315405e-006)
  656. p18.CanCollide = false
  657. p18.Locked = true
  658. p18.BottomSurface = Enum.SurfaceType.Smooth
  659. p18.TopSurface = Enum.SurfaceType.Smooth
  660. b18 = Instance.new("SpecialMesh", p18)
  661. b18.MeshId = "http://www.roblox.com/asset/?id=16627529"
  662. b18.TextureId = ""
  663. b18.MeshType = Enum.MeshType.FileMesh
  664. b18.Name = "Mesh"
  665. b18.VertexColor = Vector3.new(0, 0, 0)
  666. b18.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  667. w1 = Instance.new("Weld", p1)
  668. w1.Name = "Head_Weld"
  669. w1.Part0 = p1
  670. w1.C0 = CFrame.new(3.40111661, -0.744508088, 8.58160019, -5.48362732e-006, 3.27825546e-007, 1, -0.978699088, -0.205299854, -5.30481339e-006, 0.205299824, -0.978699148, 1.49011612e-006)
  671. w1.Part1 = p2
  672. w1.C1 = CFrame.new(3.40013766, -8.14794827, -1.70006609, 4.23192978e-006, -1.08796726e-007, 1.00000012, 2.9664772e-008, 1, 1.08796598e-007, -1.00000012, 2.96642924e-008, 4.23192978e-006)
  673. w2 = Instance.new("Weld", p2)
  674. w2.Name = "Part_Weld"
  675. w2.Part0 = p2
  676. w2.C0 = CFrame.new(3.40013766, -8.14794827, -1.70006609, 4.23192978e-006, -1.08796726e-007, 1.00000012, 2.9664772e-008, 1, 1.08796598e-007, -1.00000012, 2.96642924e-008, 4.23192978e-006)
  677. w2.Part1 = p3
  678. w2.C1 = CFrame.new(3.40004802, -8.71796036, -1.70002759, 2.56299973e-006, -7.89943471e-008, 1, 2.47196947e-008, 1, 7.89942831e-008, -1, 2.47194887e-008, 2.56299973e-006)
  679. w3 = Instance.new("Weld", p3)
  680. w3.Name = "Part_Weld"
  681. w3.Part0 = p3
  682. w3.C0 = CFrame.new(3.40004802, -8.71796036, -1.70002759, 2.56299973e-006, -7.89943471e-008, 1, 2.47196947e-008, 1, 7.89942831e-008, -1, 2.47194887e-008, 2.56299973e-006)
  683. w3.Part1 = p4
  684. w3.C1 = CFrame.new(3.40017533, -8.8479538, -1.77979064, 5.78165054e-006, -1.38599077e-007, 1, 3.46098972e-008, 1, 1.38598878e-007, -1, 3.46090907e-008, 5.78165054e-006)
  685. w4 = Instance.new("Weld", p4)
  686. w4.Name = "Part_Weld"
  687. w4.Part0 = p4
  688. w4.C0 = CFrame.new(3.40017533, -8.8479538, -1.77979064, 5.78165054e-006, -1.38599077e-007, 1, 3.46098972e-008, 1, 1.38598878e-007, -1, 3.46090907e-008, 5.78165054e-006)
  689. w4.Part1 = p5
  690. w4.C1 = CFrame.new(3.40004182, -8.46796036, -1.70004117, -3.57627869e-007, -5.89495883e-008, 0.99999994, 2.53247009e-007, 1, 5.89496665e-008, -0.99999994, 2.53247009e-007, -3.57627869e-007)
  691. w5 = Instance.new("Weld", p5)
  692. w5.Name = "Part_Weld"
  693. w5.Part0 = p5
  694. w5.C0 = CFrame.new(3.40004182, -8.46796036, -1.70004117, -3.57627869e-007, -5.89495883e-008, 0.99999994, 2.53247009e-007, 1, 5.89496665e-008, -0.99999994, 2.53247009e-007, -3.57627869e-007)
  695. w5.Part1 = p6
  696. w5.C1 = CFrame.new(3.44990563, -8.58795738, -1.89968324, -5.96046448e-007, -9.85101565e-008, 1, 4.91661183e-007, 1, 9.85104407e-008, -1, 4.9166124e-007, -5.96046448e-007)
  697. w6 = Instance.new("Weld", p6)
  698. w6.Name = "Part_Weld"
  699. w6.Part0 = p6
  700. w6.C0 = CFrame.new(3.44990563, -8.58795738, -1.89968324, -5.96046448e-007, -9.85101565e-008, 1, 4.91661183e-007, 1, 9.85104407e-008, -1, 4.9166124e-007, -5.96046448e-007)
  701. w6.Part1 = p7
  702. w6.C1 = CFrame.new(3.50097466, -8.31796741, -1.89919162, -4.76837158e-007, -9.85101849e-008, 0.99999994, 4.91661126e-007, 1, 9.85104265e-008, -0.99999994, 4.91661183e-007, -4.76837158e-007)
  703. w7 = Instance.new("Weld", p7)
  704. w7.Name = "Part_Weld"
  705. w7.Part0 = p7
  706. w7.C0 = CFrame.new(3.50097466, -8.31796741, -1.89919162, -4.76837158e-007, -9.85101849e-008, 0.99999994, 4.91661126e-007, 1, 9.85104265e-008, -0.99999994, 4.91661183e-007, -4.76837158e-007)
  707. w7.Part1 = p8
  708. w7.C1 = CFrame.new(3.40101647, 2.43280101, 7.72691393, -1.1920929e-006, -2.08616257e-007, 1, -0.805111527, -0.593123555, -9.83476639e-007, 0.593123496, -0.805111527, 4.17232513e-007)
  709. w8 = Instance.new("Weld", p8)
  710. w8.Name = "Part_Weld"
  711. w8.Part0 = p8
  712. w8.C0 = CFrame.new(3.40101647, 2.43280101, 7.72691393, -1.1920929e-006, -2.08616257e-007, 1, -0.805111527, -0.593123555, -9.83476639e-007, 0.593123496, -0.805111527, 4.17232513e-007)
  713. w8.Part1 = p9
  714. w8.C1 = CFrame.new(3.40065455, -8.6941061, -0.904481649, -8.34465027e-007, -1.67638063e-007, 1.00000012, -0.0995008498, 0.995037496, 1.00582838e-007, -0.995037615, -0.0995008498, -8.34465027e-007)
  715. w9 = Instance.new("Weld", p9)
  716. w9.Name = "Part_Weld"
  717. w9.Part0 = p9
  718. w9.C0 = CFrame.new(3.40065455, -8.6941061, -0.904481649, -8.34465027e-007, -1.67638063e-007, 1.00000012, -0.0995008498, 0.995037496, 1.00582838e-007, -0.995037615, -0.0995008498, -8.34465027e-007)
  719. w9.Part1 = p10
  720. w9.C1 = CFrame.new(3.39961672, -7.99480963, 4.71886492, -9.53674316e-007, -2.98023224e-007, 1, -0.683569372, 0.729885519, -4.47034836e-007, -0.729885459, -0.683569431, -9.53674316e-007)
  721. w10 = Instance.new("Weld", p10)
  722. w10.Name = "Part_Weld"
  723. w10.Part0 = p10
  724. w10.C0 = CFrame.new(3.39961672, -7.99480963, 4.71886492, -9.53674316e-007, -2.98023224e-007, 1, -0.683569372, 0.729885519, -4.47034836e-007, -0.729885459, -0.683569431, -9.53674316e-007)
  725. w10.Part1 = p11
  726. w10.C1 = CFrame.new(3.40089583, -3.41323304, 8.38025856, -1.31130219e-006, -4.76837158e-007, 1.00000012, -0.989475787, 0.144699097, -1.07288361e-006, -0.144699246, -0.989475787, -7.15255737e-007)
  727. w11 = Instance.new("Weld", p11)
  728. w11.Name = "Part_Weld"
  729. w11.Part0 = p11
  730. w11.C0 = CFrame.new(3.40089583, -3.41323304, 8.38025856, -1.31130219e-006, -4.76837158e-007, 1.00000012, -0.989475787, 0.144699097, -1.07288361e-006, -0.144699246, -0.989475787, -7.15255737e-007)
  731. w11.Part1 = p12
  732. w11.C1 = CFrame.new(3.40101814, 3.54288888, 6.84968376, -9.53674316e-007, -4.47034836e-007, 1, -0.553697109, -0.832718134, -9.23871994e-007, 0.832718134, -0.553697109, 6.55651093e-007)
  733. w12 = Instance.new("Weld", p12)
  734. w12.Name = "Part_Weld"
  735. w12.Part0 = p12
  736. w12.C0 = CFrame.new(3.40101814, 3.54288888, 6.84968376, -9.53674316e-007, -4.47034836e-007, 1, -0.553697109, -0.832718134, -9.23871994e-007, 0.832718134, -0.553697109, 6.55651093e-007)
  737. w12.Part1 = p13
  738. w12.C1 = CFrame.new(3.40102005, 5.44561195, 5.34554911, -8.34465027e-007, -6.40749931e-007, 1.00000012, -0.319307029, -0.947651505, -8.19563866e-007, 0.947651386, -0.319307029, 3.57627869e-007)
  739. w13 = Instance.new("Weld", p13)
  740. w13.Name = "Part_Weld"
  741. w13.Part0 = p13
  742. w13.C0 = CFrame.new(3.40102005, 5.44561195, 5.34554911, -8.34465027e-007, -6.40749931e-007, 1.00000012, -0.319307029, -0.947651505, -8.19563866e-007, 0.947651386, -0.319307029, 3.57627869e-007)
  743. w13.Part1 = p14
  744. w13.C1 = CFrame.new(3.40101624, 2.99550176, 7.97925997, -9.53674316e-007, -1.49011612e-007, 1, -0.750353813, -0.661036491, -8.64267349e-007, 0.661036491, -0.750353813, 5.36441803e-007)
  745. w14 = Instance.new("Weld", p14)
  746. w14.Name = "Part_Weld"
  747. w14.Part0 = p14
  748. w14.C0 = CFrame.new(3.40101624, 2.99550176, 7.97925997, -9.53674316e-007, -1.49011612e-007, 1, -0.750353813, -0.661036491, -8.64267349e-007, 0.661036491, -0.750353813, 5.36441803e-007)
  749. w14.Part1 = p15
  750. w14.C1 = CFrame.new(3.74026394, 5.46776819, 5.79039907, 0.34201923, -3.27825546e-007, 0.939692974, -0.520305395, -0.832718134, 0.189374775, 0.782499313, -0.553697109, -0.284805775)
  751. w15 = Instance.new("Weld", p15)
  752. w15.Name = "Part_Weld"
  753. w15.Part0 = p15
  754. w15.C0 = CFrame.new(3.74026394, 5.46776819, 5.79039907, 0.34201923, -3.27825546e-007, 0.939692974, -0.520305395, -0.832718134, 0.189374775, 0.782499313, -0.553697109, -0.284805775)
  755. w15.Part1 = p16
  756. w15.C1 = CFrame.new(2.90401983, 4.33060169, 7.50061178, -0.258819938, -2.68220901e-007, 0.965925574, -0.534830093, -0.832718134, -0.143308043, 0.80434382, -0.55369705, 0.215523928)
  757. w16 = Instance.new("Weld", p16)
  758. w16.Name = "Part_Weld"
  759. w16.Part0 = p16
  760. w16.C0 = CFrame.new(2.90401983, 4.33060169, 7.50061178, -0.258819938, -2.68220901e-007, 0.965925574, -0.534830093, -0.832718134, -0.143308043, 0.80434382, -0.55369705, 0.215523928)
  761. w16.Part1 = p17
  762. w16.C1 = CFrame.new(3.4010253, 5.84818506, 4.80991411, -8.56413749e-007, -1.3483392e-006, 1, -0.31930685, -0.947651386, -1.55121427e-006, 0.947651386, -0.31930685, 3.81047698e-007)
  763. w17 = Instance.new("Weld", p17)
  764. w17.Name = "Part_Weld"
  765. w17.Part0 = p17
  766. w17.C0 = CFrame.new(3.4010253, 5.84818506, 4.80991411, -8.56413749e-007, -1.3483392e-006, 1, -0.31930685, -0.947651386, -1.55121427e-006, 0.947651386, -0.31930685, 3.81047698e-007)
  767. w17.Part1 = p18
  768. w17.C1 = CFrame.new(-3.40004683, -8.71796036, 1.70002675, -2.6504224e-006, -7.89943471e-008, -1, -2.47197018e-008, 1, -7.89942831e-008, 1, 2.47194887e-008, -2.6504224e-006)
  769. m.Parent = char
  770. m:MakeJoints()
  771. ----------------------------------------------------
  772. local cor = Instance.new("Part", char.Hair)
  773. cor.Name = "Link"
  774. cor.Locked = true
  775. cor.BottomSurface = 0
  776. cor.CanCollide = false
  777. cor.Size = Vector3.new(1, 9, 1)
  778. cor.Transparency = 1
  779. cor.TopSurface = 0
  780. corw = Instance.new("Weld", cor)
  781. corw.Part0 = hed
  782. corw.Part1 = cor
  783. corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  784. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  785. weld1 = Instance.new("Weld", char.Hair)
  786. weld1.Part0 = cor
  787. weld1.Part1 = char.Hair.Head
  788. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  789. print("Success")
  790. --------------------------------------------------
  791. local m = Instance.new("Model")
  792. m.Name = "Claw"
  793. p1 = Instance.new("Part", m)
  794. p1.BrickColor = BrickColor.new("Really black")
  795. p1.FormFactor = Enum.FormFactor.Custom
  796. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  797. 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)
  798. p1.CanCollide = false
  799. p1.Locked = true
  800. p1.BottomSurface = Enum.SurfaceType.Smooth
  801. p1.TopSurface = Enum.SurfaceType.Smooth
  802. b1 = Instance.new("BlockMesh", p1)
  803. b1.Name = "Mesh"
  804. p2 = Instance.new("WedgePart", m)
  805. p2.BrickColor = BrickColor.new("Really black")
  806. p2.Name = "Wedge"
  807. p2.FormFactor = Enum.FormFactor.Custom
  808. p2.Size = Vector3.new(3, 1, 0.5)
  809. 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)
  810. p2.CanCollide = false
  811. p2.Locked = true
  812. p2.BottomSurface = Enum.SurfaceType.Smooth
  813. p2.TopSurface = Enum.SurfaceType.Smooth
  814. p3 = Instance.new("Part", m)
  815. p3.BrickColor = BrickColor.new("Really black")
  816. p3.FormFactor = Enum.FormFactor.Custom
  817. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  818. 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)
  819. p3.CanCollide = false
  820. p3.Locked = true
  821. p3.BottomSurface = Enum.SurfaceType.Smooth
  822. p3.TopSurface = Enum.SurfaceType.Smooth
  823. b2 = Instance.new("BlockMesh", p3)
  824. b2.Name = "Mesh"
  825. p4 = Instance.new("WedgePart", m)
  826. p4.BrickColor = BrickColor.new("Really black")
  827. p4.Name = "Wedge"
  828. p4.FormFactor = Enum.FormFactor.Custom
  829. p4.Size = Vector3.new(3, 1, 0.5)
  830. 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)
  831. p4.CanCollide = false
  832. p4.Locked = true
  833. p4.BottomSurface = Enum.SurfaceType.Smooth
  834. p4.TopSurface = Enum.SurfaceType.Smooth
  835. p5 = Instance.new("Part", m)
  836. p5.BrickColor = BrickColor.new("Really black")
  837. p5.FormFactor = Enum.FormFactor.Custom
  838. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  839. 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)
  840. p5.CanCollide = false
  841. p5.Locked = true
  842. p5.BottomSurface = Enum.SurfaceType.Smooth
  843. p5.TopSurface = Enum.SurfaceType.Smooth
  844. b3 = Instance.new("BlockMesh", p5)
  845. b3.Name = "Mesh"
  846. p6 = Instance.new("Part", m)
  847. p6.BrickColor = BrickColor.new("Really black")
  848. p6.FormFactor = Enum.FormFactor.Custom
  849. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  850. 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)
  851. p6.CanCollide = false
  852. p6.Locked = true
  853. p6.BottomSurface = Enum.SurfaceType.Smooth
  854. p6.TopSurface = Enum.SurfaceType.Smooth
  855. b4 = Instance.new("BlockMesh", p6)
  856. b4.Name = "Mesh"
  857. p7 = Instance.new("Part", m)
  858. p7.BrickColor = BrickColor.new("Really black")
  859. p7.FormFactor = Enum.FormFactor.Custom
  860. p7.Size = Vector3.new(3, 1, 1.20000005)
  861. 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)
  862. p7.CanCollide = false
  863. p7.Locked = true
  864. p7.BottomSurface = Enum.SurfaceType.Smooth
  865. p7.TopSurface = Enum.SurfaceType.Smooth
  866. b5 = Instance.new("BlockMesh", p7)
  867. b5.Name = "Mesh"
  868. p8 = Instance.new("Part", m)
  869. p8.BrickColor = BrickColor.new("Bright blue")
  870. p8.FormFactor = Enum.FormFactor.Symmetric
  871. p8.Size = Vector3.new(1, 1, 1)
  872. 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)
  873. p8.CanCollide = false
  874. p8.Locked = true
  875. b6 = Instance.new("SpecialMesh", p8)
  876. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  877. b6.TextureId = ""
  878. b6.MeshType = Enum.MeshType.FileMesh
  879. b6.Name = "Mesh"
  880. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  881. p9 = Instance.new("Part", m)
  882. p9.BrickColor = BrickColor.new("Really black")
  883. p9.FormFactor = Enum.FormFactor.Custom
  884. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  885. 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)
  886. p9.CanCollide = false
  887. p9.Locked = true
  888. p9.BottomSurface = Enum.SurfaceType.Smooth
  889. p9.TopSurface = Enum.SurfaceType.Smooth
  890. b7 = Instance.new("BlockMesh", p9)
  891. b7.Name = "Mesh"
  892. p10 = Instance.new("Part", m)
  893. p10.BrickColor = BrickColor.new("Bright blue")
  894. p10.FormFactor = Enum.FormFactor.Symmetric
  895. p10.Size = Vector3.new(1, 1, 1)
  896. 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)
  897. p10.CanCollide = false
  898. p10.Locked = true
  899. b8 = Instance.new("SpecialMesh", p10)
  900. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  901. b8.TextureId = ""
  902. b8.MeshType = Enum.MeshType.FileMesh
  903. b8.Name = "Mesh"
  904. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  905. p11 = Instance.new("Part", m)
  906. p11.BrickColor = BrickColor.new("Really black")
  907. p11.FormFactor = Enum.FormFactor.Custom
  908. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  909. 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)
  910. p11.CanCollide = false
  911. p11.Locked = true
  912. p11.BottomSurface = Enum.SurfaceType.Smooth
  913. p11.TopSurface = Enum.SurfaceType.Smooth
  914. b9 = Instance.new("BlockMesh", p11)
  915. b9.Name = "Mesh"
  916. p12 = Instance.new("Part", m)
  917. p12.BrickColor = BrickColor.new("Really black")
  918. p12.FormFactor = Enum.FormFactor.Custom
  919. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  920. 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)
  921. p12.CanCollide = false
  922. p12.Locked = true
  923. p12.BottomSurface = Enum.SurfaceType.Smooth
  924. p12.TopSurface = Enum.SurfaceType.Smooth
  925. b10 = Instance.new("BlockMesh", p12)
  926. b10.Name = "Mesh"
  927. p13 = Instance.new("Part", m)
  928. p13.BrickColor = BrickColor.new("Really black")
  929. p13.FormFactor = Enum.FormFactor.Custom
  930. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  931. 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)
  932. p13.CanCollide = false
  933. p13.Locked = true
  934. p13.BottomSurface = Enum.SurfaceType.Smooth
  935. p13.TopSurface = Enum.SurfaceType.Smooth
  936. b11 = Instance.new("BlockMesh", p13)
  937. b11.Name = "Mesh"
  938. p14 = Instance.new("Part", m)
  939. p14.BrickColor = BrickColor.new("Bright blue")
  940. p14.FormFactor = Enum.FormFactor.Symmetric
  941. p14.Size = Vector3.new(1, 1, 1)
  942. 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)
  943. p14.CanCollide = false
  944. p14.Locked = true
  945. b12 = Instance.new("SpecialMesh", p14)
  946. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  947. b12.TextureId = ""
  948. b12.MeshType = Enum.MeshType.FileMesh
  949. b12.Name = "Mesh"
  950. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  951. p15 = Instance.new("Part", m)
  952. p15.BrickColor = BrickColor.new("Medium stone grey")
  953. p15.Transparency = 1
  954. p15.Name = "ArmPart"
  955. p15.FormFactor = Enum.FormFactor.Custom
  956. p15.Size = Vector3.new(2, 1, 1)
  957. 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)
  958. p15.CanCollide = false
  959. p15.Locked = true
  960. p15.BottomSurface = Enum.SurfaceType.Smooth
  961. p15.TopSurface = Enum.SurfaceType.Smooth
  962. b13 = Instance.new("BlockMesh", p15)
  963. b13.Name = "Mesh"
  964. p16 = Instance.new("Part", m)
  965. p16.BrickColor = BrickColor.new("Really black")
  966. p16.FormFactor = Enum.FormFactor.Custom
  967. p16.Size = Vector3.new(3, 1, 2.4000001)
  968. 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)
  969. p16.CanCollide = false
  970. p16.Locked = true
  971. p16.BottomSurface = Enum.SurfaceType.Smooth
  972. p16.TopSurface = Enum.SurfaceType.Smooth
  973. b14 = Instance.new("BlockMesh", p16)
  974. b14.Name = "Mesh"
  975. p17 = Instance.new("Part", m)
  976. p17.BrickColor = BrickColor.new("Really black")
  977. p17.FormFactor = Enum.FormFactor.Custom
  978. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  979. 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)
  980. p17.CanCollide = false
  981. p17.Locked = true
  982. p17.BottomSurface = Enum.SurfaceType.Smooth
  983. p17.TopSurface = Enum.SurfaceType.Smooth
  984. b15 = Instance.new("BlockMesh", p17)
  985. b15.Name = "Mesh"
  986. p18 = Instance.new("Part", m)
  987. p18.BrickColor = BrickColor.new("Bright blue")
  988. p18.FormFactor = Enum.FormFactor.Symmetric
  989. p18.Size = Vector3.new(1, 1, 1)
  990. 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)
  991. p18.CanCollide = false
  992. p18.Locked = true
  993. b16 = Instance.new("SpecialMesh", p18)
  994. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  995. b16.TextureId = ""
  996. b16.MeshType = Enum.MeshType.FileMesh
  997. b16.Name = "Mesh"
  998. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  999. p19 = Instance.new("Part", m)
  1000. p19.BrickColor = BrickColor.new("Bright blue")
  1001. p19.FormFactor = Enum.FormFactor.Symmetric
  1002. p19.Size = Vector3.new(1, 1, 1)
  1003. 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)
  1004. p19.CanCollide = false
  1005. p19.Locked = true
  1006. b17 = Instance.new("SpecialMesh", p19)
  1007. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1008. b17.TextureId = ""
  1009. b17.MeshType = Enum.MeshType.FileMesh
  1010. b17.Name = "Mesh"
  1011. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1012. p20 = Instance.new("Part", m)
  1013. p20.BrickColor = BrickColor.new("Really black")
  1014. p20.FormFactor = Enum.FormFactor.Custom
  1015. p20.Size = Vector3.new(3, 1, 2.4000001)
  1016. 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)
  1017. p20.CanCollide = false
  1018. p20.Locked = true
  1019. p20.BottomSurface = Enum.SurfaceType.Smooth
  1020. p20.TopSurface = Enum.SurfaceType.Smooth
  1021. b18 = Instance.new("BlockMesh", p20)
  1022. b18.Name = "Mesh"
  1023. p21 = Instance.new("Part", m)
  1024. p21.BrickColor = BrickColor.new("Really black")
  1025. p21.FormFactor = Enum.FormFactor.Custom
  1026. p21.Size = Vector3.new(3, 1, 1.19999993)
  1027. 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)
  1028. p21.CanCollide = false
  1029. p21.Locked = true
  1030. p21.BottomSurface = Enum.SurfaceType.Smooth
  1031. p21.TopSurface = Enum.SurfaceType.Smooth
  1032. b19 = Instance.new("BlockMesh", p21)
  1033. b19.Name = "Mesh"
  1034. p22 = Instance.new("WedgePart", m)
  1035. p22.BrickColor = BrickColor.new("Really black")
  1036. p22.Name = "Wedge"
  1037. p22.FormFactor = Enum.FormFactor.Custom
  1038. p22.Size = Vector3.new(3, 1, 0.5)
  1039. 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)
  1040. p22.CanCollide = false
  1041. p22.Locked = true
  1042. p22.BottomSurface = Enum.SurfaceType.Smooth
  1043. p22.TopSurface = Enum.SurfaceType.Smooth
  1044. p23 = Instance.new("Part", m)
  1045. p23.BrickColor = BrickColor.new("Really black")
  1046. p23.FormFactor = Enum.FormFactor.Custom
  1047. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  1048. 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)
  1049. p23.CanCollide = false
  1050. p23.Locked = true
  1051. p23.BottomSurface = Enum.SurfaceType.Smooth
  1052. p23.TopSurface = Enum.SurfaceType.Smooth
  1053. b20 = Instance.new("BlockMesh", p23)
  1054. b20.Name = "Mesh"
  1055. p24 = Instance.new("WedgePart", m)
  1056. p24.BrickColor = BrickColor.new("Really black")
  1057. p24.Name = "Wedge"
  1058. p24.FormFactor = Enum.FormFactor.Custom
  1059. p24.Size = Vector3.new(3, 1, 0.5)
  1060. 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)
  1061. p24.CanCollide = false
  1062. p24.Locked = true
  1063. p24.BottomSurface = Enum.SurfaceType.Smooth
  1064. p24.TopSurface = Enum.SurfaceType.Smooth
  1065. p25 = Instance.new("Part", m)
  1066. p25.BrickColor = BrickColor.new("Bright blue")
  1067. p25.FormFactor = Enum.FormFactor.Symmetric
  1068. p25.Size = Vector3.new(1, 1, 1)
  1069. 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)
  1070. p25.CanCollide = false
  1071. p25.Locked = true
  1072. p25.BottomSurface = Enum.SurfaceType.Smooth
  1073. p25.TopSurface = Enum.SurfaceType.Smooth
  1074. b21 = Instance.new("SpecialMesh", p25)
  1075. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1076. b21.TextureId = ""
  1077. b21.MeshType = Enum.MeshType.FileMesh
  1078. b21.Name = "Mesh"
  1079. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  1080. p26 = Instance.new("Part", m)
  1081. p26.BrickColor = BrickColor.new("Really black")
  1082. p26.FormFactor = Enum.FormFactor.Symmetric
  1083. p26.Size = Vector3.new(1, 1, 1)
  1084. 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)
  1085. p26.CanCollide = false
  1086. p26.Locked = true
  1087. p26.BottomSurface = Enum.SurfaceType.Smooth
  1088. p26.TopSurface = Enum.SurfaceType.Smooth
  1089. b22 = Instance.new("SpecialMesh", p26)
  1090. b22.MeshType = Enum.MeshType.Brick
  1091. b22.Name = "Mesh"
  1092. w1 = Instance.new("Weld", p1)
  1093. w1.Name = "Wedge_Weld"
  1094. w1.Part0 = p1
  1095. 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)
  1096. w1.Part1 = p2
  1097. 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)
  1098. w2 = Instance.new("Weld", p2)
  1099. w2.Name = "Part_Weld"
  1100. w2.Part0 = p2
  1101. 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)
  1102. w2.Part1 = p3
  1103. 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)
  1104. w3 = Instance.new("Weld", p3)
  1105. w3.Name = "Wedge_Weld"
  1106. w3.Part0 = p3
  1107. 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)
  1108. w3.Part1 = p4
  1109. 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)
  1110. w4 = Instance.new("Weld", p4)
  1111. w4.Name = "Part_Weld"
  1112. w4.Part0 = p4
  1113. 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)
  1114. w4.Part1 = p5
  1115. 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)
  1116. w5 = Instance.new("Weld", p5)
  1117. w5.Name = "Part_Weld"
  1118. w5.Part0 = p5
  1119. 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)
  1120. w5.Part1 = p6
  1121. 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)
  1122. w6 = Instance.new("Weld", p6)
  1123. w6.Name = "Part_Weld"
  1124. w6.Part0 = p6
  1125. 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)
  1126. w6.Part1 = p7
  1127. 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)
  1128. w7 = Instance.new("Weld", p7)
  1129. w7.Name = "Part_Weld"
  1130. w7.Part0 = p7
  1131. 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)
  1132. w7.Part1 = p8
  1133. 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)
  1134. w8 = Instance.new("Weld", p8)
  1135. w8.Name = "Part_Weld"
  1136. w8.Part0 = p8
  1137. 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)
  1138. w8.Part1 = p9
  1139. 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)
  1140. w9 = Instance.new("Weld", p9)
  1141. w9.Name = "Part_Weld"
  1142. w9.Part0 = p9
  1143. 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)
  1144. w9.Part1 = p10
  1145. 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)
  1146. w10 = Instance.new("Weld", p10)
  1147. w10.Name = "Part_Weld"
  1148. w10.Part0 = p10
  1149. 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)
  1150. w10.Part1 = p11
  1151. 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)
  1152. w11 = Instance.new("Weld", p11)
  1153. w11.Name = "Part_Weld"
  1154. w11.Part0 = p11
  1155. 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)
  1156. w11.Part1 = p12
  1157. 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)
  1158. w12 = Instance.new("Weld", p12)
  1159. w12.Name = "Part_Weld"
  1160. w12.Part0 = p12
  1161. 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)
  1162. w12.Part1 = p13
  1163. 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)
  1164. w13 = Instance.new("Weld", p13)
  1165. w13.Name = "Part_Weld"
  1166. w13.Part0 = p13
  1167. 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)
  1168. w13.Part1 = p14
  1169. 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)
  1170. w14 = Instance.new("Weld", p14)
  1171. w14.Name = "ArmPart_Weld"
  1172. w14.Part0 = p14
  1173. 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)
  1174. w14.Part1 = p15
  1175. 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)
  1176. w15 = Instance.new("Weld", p15)
  1177. w15.Name = "Part_Weld"
  1178. w15.Part0 = p15
  1179. 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)
  1180. w15.Part1 = p16
  1181. 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)
  1182. w16 = Instance.new("Weld", p16)
  1183. w16.Name = "Part_Weld"
  1184. w16.Part0 = p16
  1185. 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)
  1186. w16.Part1 = p17
  1187. 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)
  1188. w17 = Instance.new("Weld", p17)
  1189. w17.Name = "Part_Weld"
  1190. w17.Part0 = p17
  1191. 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)
  1192. w17.Part1 = p18
  1193. 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)
  1194. w18 = Instance.new("Weld", p18)
  1195. w18.Name = "Part_Weld"
  1196. w18.Part0 = p18
  1197. 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)
  1198. w18.Part1 = p19
  1199. 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)
  1200. w19 = Instance.new("Weld", p19)
  1201. w19.Name = "Part_Weld"
  1202. w19.Part0 = p19
  1203. 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)
  1204. w19.Part1 = p20
  1205. 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)
  1206. w20 = Instance.new("Weld", p20)
  1207. w20.Name = "Part_Weld"
  1208. w20.Part0 = p20
  1209. 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)
  1210. w20.Part1 = p21
  1211. 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)
  1212. w21 = Instance.new("Weld", p21)
  1213. w21.Name = "Wedge_Weld"
  1214. w21.Part0 = p21
  1215. 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)
  1216. w21.Part1 = p22
  1217. 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)
  1218. w22 = Instance.new("Weld", p22)
  1219. w22.Name = "Part_Weld"
  1220. w22.Part0 = p22
  1221. 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)
  1222. w22.Part1 = p23
  1223. 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)
  1224. w23 = Instance.new("Weld", p23)
  1225. w23.Name = "Wedge_Weld"
  1226. w23.Part0 = p23
  1227. 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)
  1228. w23.Part1 = p24
  1229. 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)
  1230. w24 = Instance.new("Weld", p24)
  1231. w24.Name = "Part_Weld"
  1232. w24.Part0 = p24
  1233. 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)
  1234. w24.Part1 = p25
  1235. 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)
  1236. w25 = Instance.new("Weld", p25)
  1237. w25.Name = "Part_Weld"
  1238. w25.Part0 = p25
  1239. 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)
  1240. w25.Part1 = p26
  1241. 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)
  1242. m.Parent = char
  1243. m:MakeJoints()
  1244. ----------------------------------------------------
  1245. local cor2 = Instance.new("Part", char.Claw)
  1246. cor2.Name = "Thingy"
  1247. cor2.Locked = true
  1248. cor2.BottomSurface = 0
  1249. cor2.CanCollide = false
  1250. cor2.Size = Vector3.new(2, 1, 1)
  1251. cor2.Transparency = 1
  1252. cor2.TopSurface = 0
  1253. corw2 = Instance.new("Weld", cor2)
  1254. corw2.Part0 = larm
  1255. corw2.Part1 = cor2
  1256. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1257. corw2.C1 = CFrame.new(0, 0, 0)
  1258. weld2 = Instance.new("Weld", char.Claw)
  1259. weld2.Part0 = cor2
  1260. weld2.Part1 = char.Claw.ArmPart
  1261. weld2.C0 = CFrame.new(0, 0, 0)
  1262. ----------------------------------------------------
  1263. for i,v in pairs (char.Claw:GetChildren()) do
  1264. if v:IsA("Part") then
  1265. v.Transparency=1
  1266. end
  1267. end
  1268. for i,v in pairs (char.Claw:GetChildren()) do
  1269. if v:IsA("WedgePart") then
  1270. v.Transparency=1
  1271. end
  1272. end
  1273. ----------------------------------------------------
  1274. Blast = function()
  1275. local Colors = {"Really red", "Really black"}
  1276. local wave = Instance.new("Part", torso)
  1277. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1278. wave.Anchored = true
  1279. wave.CanCollide = false
  1280. wave.Locked = true
  1281. wave.Size = Vector3.new(1, 1, 1)
  1282. wave.TopSurface = "Smooth"
  1283. wave.BottomSurface = "Smooth"
  1284. wave.Transparency = 0.35
  1285. wave.CFrame = rarm.CFrame
  1286. wm = Instance.new("SpecialMesh", wave)
  1287. wm.MeshType = "Sphere"
  1288. wm.Scale = Vector3.new(1,1,1)
  1289. z = Instance.new("Sound",wave)
  1290. z.SoundId = "rbxassetid://237035051"
  1291. z.Volume = 1
  1292. z.Pitch = .9
  1293. z:Play()
  1294. coroutine.wrap(function()
  1295. for i = 1, 30, 1 do
  1296. wave.Size = Vector3.new(1 + i*4, 1 + i*4, 1 + i*4)
  1297. --wave.Size = wm.Scale
  1298. wave.CFrame = rarm.CFrame
  1299. wave.Transparency = (1/14)
  1300. rs:wait()
  1301. end
  1302. rs:wait()
  1303. wave:Destroy()
  1304. z:Destroy()
  1305. end)()
  1306. end
  1307. ----------------------------------------------------
  1308. rarm.Touched:connect(function(ht)
  1309. hit = ht.Parent
  1310. if ht and hit:IsA("Model") then
  1311. if hit:FindFirstChild("Humanoid") then
  1312. if hit.Name ~= p.Name then
  1313. if Debounces.RPunch == true and Debounces.RPunched == false then
  1314. Debounces.RPunched = true
  1315. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  1316. if Debounces.ks==true then
  1317. z = Instance.new("Sound",hed)
  1318. z.SoundId = "rbxassetid://169380525"
  1319. z.Pitch = ptz[math.random(1,#ptz)]
  1320. z.Volume = 1
  1321. z:Play()
  1322. end
  1323. wait(.2)
  1324. Debounces.RPunched = false
  1325. end
  1326. end
  1327. end
  1328. elseif ht and hit:IsA("Hat") then
  1329. if hit.Parent.Name ~= p.Name then
  1330. if hit.Parent:FindFirstChild("Humanoid") then
  1331. if Debounces.RPunch == true and Debounces.RPunched == false then
  1332. Debounces.RPunched = true
  1333. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  1334. if Debounces.ks==true then
  1335. z = Instance.new("Sound",hed)
  1336. z.SoundId = "rbxassetid://169380525"
  1337. z.Pitch = ptz[math.random(1,#ptz)]
  1338. z.Volume = 1
  1339. z:Play()
  1340. end
  1341. wait(.2)
  1342. Debounces.RPunched = false
  1343. end
  1344. end
  1345. end
  1346. end
  1347. end)
  1348. larm.Touched:connect(function(ht)
  1349. hit = ht.Parent
  1350. if ht and hit:IsA("Model") then
  1351. if hit:FindFirstChild("Humanoid") then
  1352. if hit.Name ~= p.Name then
  1353. if Debounces.LPunch == true and Debounces.LPunched == false then
  1354. Debounces.LPunched = true
  1355. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  1356. if Debounces.ks2==true then
  1357. z = Instance.new("Sound",hed)
  1358. z.SoundId = "rbxassetid://169380525"
  1359. z.Pitch = ptz[math.random(1,#ptz)]
  1360. z.Volume = 1
  1361. z:Play()
  1362. end
  1363. wait(.2)
  1364. Debounces.LPunched = false
  1365. end
  1366. end
  1367. end
  1368. elseif ht and hit:IsA("Hat") then
  1369. if hit.Parent.Name ~= p.Name then
  1370. if hit.Parent:FindFirstChild("Humanoid") then
  1371. if Debounces.LPunch == true and Debounces.LPunched == false then
  1372. Debounces.LPunched = true
  1373. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  1374. if Debounces.ks2==true then
  1375. z = Instance.new("Sound",hed)
  1376. z.SoundId = "rbxassetid://169380525"
  1377. z.Pitch = ptz[math.random(1,#ptz)]
  1378. z.Volume = 1
  1379. z:Play()
  1380. end
  1381. wait(.2)
  1382. Debounces.LPunched = false
  1383. end
  1384. end
  1385. end
  1386. end
  1387. end)
  1388. ----------------------------------------------------
  1389. mod4 = Instance.new("Model",char)
  1390.  
  1391. ptez = {0.7, 0.8, 0.9, 1}
  1392.  
  1393. function FindNearestTorso(Position,Distance,SinglePlayer)
  1394. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1395. local List = {}
  1396. for i,v in pairs(workspace:GetChildren())do
  1397. if v:IsA("Model")then
  1398. if v:findFirstChild("Torso")then
  1399. if v ~= char then
  1400. if(v.Torso.Position -Position).magnitude <= Distance then
  1401. table.insert(List,v)
  1402. end
  1403. end
  1404. end
  1405. end
  1406. end
  1407. return List
  1408. end
  1409.  
  1410. function Punch()
  1411. part=Instance.new('Part',mod4)
  1412. part.Anchored=true
  1413. part.CanCollide=false
  1414. part.FormFactor='Custom'
  1415. part.Size=Vector3.new(.2,.2,.2)
  1416. part.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(0),0,0)
  1417. part.Transparency=.7
  1418. part.BrickColor=BrickColor.new('Really black')
  1419. mesh=Instance.new('SpecialMesh',part)
  1420. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1421. mesh.Scale=Vector3.new(3,3,3)
  1422. part2=Instance.new('Part',mod4)
  1423. part2.Anchored=true
  1424. part2.CanCollide=false
  1425. part2.FormFactor='Custom'
  1426. part2.Size=Vector3.new(.2,.2,.2)
  1427. part2.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(90),0,0)
  1428. part2.Transparency=.7
  1429. part2.BrickColor=BrickColor.new('Really red')
  1430. mesh2=Instance.new('SpecialMesh',part2)
  1431. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  1432. mesh2.Scale=Vector3.new(3,1.5,3)
  1433. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  1434. if v:FindFirstChild('Humanoid') then
  1435. v.Humanoid:TakeDamage(math.random(2,6))
  1436. end
  1437. end
  1438. coroutine.resume(coroutine.create(function()
  1439. for i=0,0.62,0.4 do
  1440. wait()
  1441. part.CFrame=part.CFrame
  1442. part.Transparency=i
  1443. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  1444. part2.CFrame=part2.CFrame
  1445. part2.Transparency=i
  1446. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  1447. end
  1448. part.Parent=nil
  1449. part2.Parent=nil
  1450. end))
  1451. end
  1452. ----------------------------------------------------
  1453. rarm.Touched:connect(function(ht)
  1454. hit = ht.Parent
  1455. if ht and hit:IsA("Model") then
  1456. if hit:FindFirstChild("Humanoid") then
  1457. if hit.Name ~= p.Name then
  1458. if Debounces.RPunch == true and Debounces.RPunched == false then
  1459. Debounces.RPunched = true
  1460. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  1461. if Debounces.ks==true then
  1462. z = Instance.new("Sound",hed)
  1463. z.SoundId = "rbxassetid://169380525"
  1464. z.Pitch = ptz[math.random(1,#ptz)]
  1465. z.Volume = 1
  1466. z:Play()
  1467. end
  1468. wait(.2)
  1469. Debounces.RPunched = false
  1470. end
  1471. end
  1472. end
  1473. elseif ht and hit:IsA("Hat") then
  1474. if hit.Parent.Name ~= p.Name then
  1475. if hit.Parent:FindFirstChild("Humanoid") then
  1476. if Debounces.RPunch == true and Debounces.RPunched == false then
  1477. Debounces.RPunched = true
  1478. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  1479. if Debounces.ks==true then
  1480. z = Instance.new("Sound",hed)
  1481. z.SoundId = "rbxassetid://169380525"
  1482. z.Pitch = ptz[math.random(1,#ptz)]
  1483. z.Volume = 1
  1484. z:Play()
  1485. end
  1486. wait(.2)
  1487. Debounces.RPunched = false
  1488. end
  1489. end
  1490. end
  1491. end
  1492. end)
  1493. larm.Touched:connect(function(ht)
  1494. hit = ht.Parent
  1495. if ht and hit:IsA("Model") then
  1496. if hit:FindFirstChild("Humanoid") then
  1497. if hit.Name ~= p.Name then
  1498. if Debounces.LPunch == true and Debounces.LPunched == false then
  1499. Debounces.LPunched = true
  1500. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  1501. if Debounces.ks2==true then
  1502. z = Instance.new("Sound",hed)
  1503. z.SoundId = "rbxassetid://169380525"
  1504. z.Pitch = ptz[math.random(1,#ptz)]
  1505. z.Volume = 1
  1506. z:Play()
  1507. end
  1508. wait(.2)
  1509. Debounces.LPunched = false
  1510. end
  1511. end
  1512. end
  1513. elseif ht and hit:IsA("Hat") then
  1514. if hit.Parent.Name ~= p.Name then
  1515. if hit.Parent:FindFirstChild("Humanoid") then
  1516. if Debounces.LPunch == true and Debounces.LPunched == false then
  1517. Debounces.LPunched = true
  1518. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  1519. if Debounces.ks2==true then
  1520. z = Instance.new("Sound",hed)
  1521. z.SoundId = "rbxassetid://169380525"
  1522. z.Pitch = ptz[math.random(1,#ptz)]
  1523. z.Volume = 1
  1524. z:Play()
  1525. end
  1526. wait(.2)
  1527. Debounces.LPunched = false
  1528. end
  1529. end
  1530. end
  1531. end
  1532. end)
  1533. ----------------------------------------------------
  1534. local player = game.Players.LocalPlayer
  1535. local pchar = player.Character
  1536. local mouse = player:GetMouse()
  1537. local cam = workspace.CurrentCamera
  1538.  
  1539. local rad = math.rad
  1540.  
  1541. local keysDown = {}
  1542. local flySpeed = 0
  1543. local MAX_FLY_SPEED = 150
  1544.  
  1545. local canFly = false
  1546. local flyToggled = false
  1547.  
  1548. local forward, side = 0, 0
  1549. local lastForward, lastSide = 0, 0
  1550.  
  1551. local floatBP = Instance.new("BodyPosition")
  1552. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  1553. local flyBV = Instance.new("BodyVelocity")
  1554. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  1555. local turnBG = Instance.new("BodyGyro")
  1556. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1557.  
  1558. mouse.KeyDown:connect(function(key)
  1559. keysDown[key] = true
  1560.  
  1561. if key == "f" then
  1562. flyToggled = not flyToggled
  1563.  
  1564. if not flyToggled then
  1565. stanceToggle = "Normal"
  1566. floatBP.Parent = nil
  1567. flyBV.Parent = nil
  1568. turnBG.Parent = nil
  1569. root.Velocity = Vector3.new()
  1570. pchar.Humanoid.PlatformStand = false
  1571. end
  1572. end
  1573.  
  1574. end)
  1575. mouse.KeyUp:connect(function(key)
  1576. keysDown[key] = nil
  1577. end)
  1578.  
  1579. local function updateFly()
  1580.  
  1581. if not flyToggled then return end
  1582.  
  1583. lastForward = forward
  1584. lastSide = side
  1585.  
  1586. forward = 0
  1587. side = 0
  1588.  
  1589. if keysDown.w then
  1590. forward = forward + 1
  1591. end
  1592. if keysDown.s then
  1593. forward = forward - 1
  1594. end
  1595. if keysDown.a then
  1596. side = side - 1
  1597. end
  1598. if keysDown.d then
  1599. side = side + 1
  1600. end
  1601.  
  1602. canFly = (forward ~= 0 or side ~= 0)
  1603.  
  1604. if canFly then
  1605. stanceToggle = "Floating"
  1606. turnBG.Parent = root
  1607. floatBP.Parent = nil
  1608. flyBV.Parent = root
  1609.  
  1610. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  1611. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  1612. else
  1613. floatBP.position = root.Position
  1614. floatBP.Parent = root
  1615.  
  1616. flySpeed = flySpeed - 1
  1617. if flySpeed < 0 then flySpeed = 0 end
  1618. end
  1619.  
  1620. local camCF = cam.CoordinateFrame
  1621. local in_forward = canFly and forward or lastForward
  1622. local in_side = canFly and side or lastSide
  1623.  
  1624. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  1625. in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  1626.  
  1627. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  1628. 0)
  1629. end
  1630.  
  1631. game:service'RunService'.RenderStepped:connect(function()
  1632. if flyToggled then
  1633. pchar.Humanoid.PlatformStand = true
  1634. end
  1635. updateFly()
  1636. end)
  1637. -------------------------------
  1638. mouse.KeyDown:connect(function(key)
  1639. if key == "q" then
  1640. if Debounces.CanAttack == true then
  1641. Debounces.CanAttack = false
  1642. Debounces.NoIdl = true
  1643. Debounces.on = true
  1644. function FindNearestTorso(Position,Distance,SinglePlayer)
  1645. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1646. local List = {}
  1647. for i,v in pairs(workspace:GetChildren())do
  1648. if v:IsA("Model")then
  1649. if v:findFirstChild("Torso")then
  1650. if v ~= char then
  1651. if(v.Torso.Position -Position).magnitude <= Distance then
  1652. table.insert(List,v)
  1653. end
  1654. end
  1655. end
  1656. end
  1657. end
  1658. return List
  1659. end
  1660. z = Instance.new("Sound",hed)
  1661. z.SoundId = "rbxassetid://232213955"
  1662. z.Pitch = 1
  1663. z.Volume = 1
  1664. wait(0.2)
  1665. z:Play()
  1666. sp = Instance.new("Part",rarm)
  1667. sp.Anchored = true
  1668. sp.CanCollide = false
  1669. sp.Locked = true
  1670. sp.Transparency = 0
  1671. sp.Material = "Neon"
  1672. sp.Size = Vector3.new(1,1,1)
  1673. sp.TopSurface = "SmoothNoOutlines"
  1674. sp.BottomSurface = "SmoothNoOutlines"
  1675. sp.BrickColor = BrickColor.new("Royal purple")
  1676. spm = Instance.new("SpecialMesh",sp)
  1677. spm.MeshType = "Sphere"
  1678. spm.Scale = Vector3.new(21,21,21)
  1679. sp2 = Instance.new("Part", rarm)
  1680. sp2.Name = "Energy"
  1681. sp2.BrickColor = BrickColor.new("Royal purple")
  1682. sp2.Size = Vector3.new(1, 1, 1)
  1683. sp2.Shape = "Ball"
  1684. sp2.CanCollide = false
  1685. sp2.Anchored = true
  1686. sp2.Locked = true
  1687. sp2.TopSurface = 0
  1688. sp2.BottomSurface = 0
  1689. sp2.Transparency = 1
  1690. spm2 = Instance.new("SpecialMesh",sp2)
  1691. spm2.MeshId = "rbxassetid://9982590"
  1692. spm2.Scale = Vector3.new(2,2,2)
  1693. for i = 1, 20 do
  1694. spm.Scale = spm.Scale - Vector3.new(1,1,1)
  1695. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  1696. 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)
  1697. 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)
  1698. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  1699. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  1700. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  1701. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  1702. if Debounces.on == false then break end
  1703. rs:wait()
  1704. end
  1705. for i = 1, 100, 20 do rs:wait()
  1706. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  1707. end
  1708. for i = 1, 20 do
  1709. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  1710. 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)
  1711. 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)
  1712. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(10),math.rad(-30),0), 0.4)
  1713. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), math.rad(0)), 0.4)
  1714. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  1715. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  1716. if Debounces.on == false then break end
  1717. rs:wait()
  1718. end
  1719. sp.Transparency = 1
  1720. for i = 1, 20 do
  1721. 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)
  1722. 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)
  1723. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.4)
  1724. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-50), math.rad(0)), 0.4)
  1725. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  1726. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  1727. if Debounces.on == false then break end
  1728. rs:wait()
  1729. end
  1730. wait(1)
  1731. sp.Transparency = 0
  1732. sp2.Transparency = 0.84
  1733. for i = 1, 20 do
  1734. --spm.Scale = spm.Scale - Vector3.new(1,1,1)
  1735. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  1736. sp2.CFrame = sp.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  1737. 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)
  1738. 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)
  1739. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(30),0), 0.2)
  1740. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.3)
  1741. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-14)), 0.2)
  1742. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-16), 0, math.rad(8)), 0.2)
  1743. if Debounces.on == false then break end
  1744. rs:wait()
  1745. end
  1746. for i = 1, 2880, 50 do
  1747. rs:wait()
  1748. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  1749. sp2.CFrame = rarm.CFrame * CFrame.new(0,-1,0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  1750. rs:wait()
  1751. end
  1752. sp:Destroy()
  1753. sp2:Destroy()
  1754. local X = Instance.new("Part",char)
  1755. local O = Instance.new("ObjectValue",X)
  1756. O.Name = "creator"
  1757. X.Locked = true
  1758. X.Name = "Shell"
  1759. X.Anchored = false
  1760. X.CanCollide = false
  1761. X.Transparency = 0
  1762. X.Reflectance = 0
  1763. X.BottomSurface = 0
  1764. X.TopSurface = 0
  1765. X.Shape = 0
  1766. local V = Instance.new("ObjectValue",X)
  1767. V.Value = char
  1768. V.Name = "creator"
  1769. X.BrickColor = BrickColor.new("Royal purple")
  1770. X.Size = Vector3.new(2,2,2)
  1771. X.Material = "Neon"
  1772. local Z = Instance.new("SpecialMesh",X)
  1773. Z.MeshType = "Sphere"
  1774. Z.Scale = Vector3.new(0.5,0.5,1)
  1775. X.CFrame = rarm.CFrame*CFrame.new(-3,0,0)
  1776. local bv = Instance.new("BodyVelocity",X)
  1777. bv.maxForce = Vector3.new(99999,99999,99999)
  1778. X.CFrame = CFrame.new(X.Position,mouse.Hit.p)
  1779. bv.velocity = X.CFrame.lookVector*65
  1780.  
  1781. Explode = X.Touched:connect(function(hit)
  1782. if hit ~= char and hit.Name ~= "Shell" then
  1783. local cf = X.CFrame
  1784. bv:Destroy()
  1785. X.Anchored = true
  1786. Z:Remove()
  1787. Explode:disconnect()
  1788. X.Size = Vector3.new(3,3,3)
  1789. X.Touched:connect(function(hit) end)
  1790. X.CanCollide = false
  1791. local part3 = Instance.new("Part", rarm)
  1792. part3.Anchored=true
  1793. part3.CanCollide=false
  1794. part3.Locked = true
  1795. part3.TopSurface = "SmoothNoOutlines"
  1796. part3.BottomSurface = "SmoothNoOutlines"
  1797. part3.FormFactor='Custom'
  1798. part3.Size=Vector3.new(1,1, 1)
  1799. part3.CFrame=X.CFrame
  1800. part3.Transparency=0
  1801. part3.BrickColor=BrickColor.new("Royal purple")
  1802. local mesh3 = Instance.new("SpecialMesh",part3)
  1803. mesh3.MeshType = "Sphere"
  1804. mesh3.Scale = Vector3.new(1,1,1)
  1805. --debris:AddItem(X,8)
  1806. local part4 = Instance.new("Part", rarm)
  1807. part4.Material = "Neon"
  1808. part4.Anchored=true
  1809. part4.CanCollide=false
  1810. part4.Locked = true
  1811. part4.TopSurface = "SmoothNoOutlines"
  1812. part4.BottomSurface = "SmoothNoOutlines"
  1813. part4.FormFactor='Custom'
  1814. part4.Size=Vector3.new(1,1, 1)
  1815. part4.CFrame=X.CFrame
  1816. part4.Transparency=0
  1817. part4.BrickColor=BrickColor.new("Hot pink")
  1818. local mesh4 = Instance.new("SpecialMesh",part4)
  1819. mesh4.MeshType = "Sphere"
  1820. mesh4.Scale = Vector3.new(.5,.5,.5)
  1821. local part7 = Instance.new("Part", rarm)
  1822. part7.Material = "Neon"
  1823. part7.Anchored=true
  1824. part7.CanCollide=false
  1825. part7.Locked = true
  1826. part7.TopSurface = "SmoothNoOutlines"
  1827. part7.BottomSurface = "SmoothNoOutlines"
  1828. part7.FormFactor='Custom'
  1829. part7.Size=Vector3.new(1,1, 1)
  1830. part7.CFrame=X.CFrame
  1831. part7.Transparency=0
  1832. part7.BrickColor=BrickColor.new("Really black")
  1833. local mesh7 = Instance.new("SpecialMesh",part7)
  1834. mesh7.MeshType = "Sphere"
  1835. mesh7.Scale = Vector3.new(0.1, 0.1, 0.1)
  1836. --[[X.Touched:connect(function(ht)
  1837. hit = ht.Parent
  1838. if ht and hit:IsA("Model") then
  1839. if hit:FindFirstChild("Humanoid") then
  1840. if hit.Name ~= p.Name then
  1841. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  1842. wait(.3)
  1843. end
  1844. end
  1845. elseif ht and hit:IsA("Hat") then
  1846. if hit.Parent.Name ~= p.Name then
  1847. if hit.Parent:FindFirstChild("Humanoid") then
  1848. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  1849. wait(.3)
  1850. end
  1851. end
  1852. end
  1853. end)
  1854. part3.Touched:connect(function(ht)
  1855. hit = ht.Parent
  1856. if ht and hit:IsA("Model") then
  1857. if hit:FindFirstChild("Humanoid") then
  1858. if hit.Name ~= p.Name then
  1859. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  1860. wait(.3)
  1861. end
  1862. end
  1863. elseif ht and hit:IsA("Hat") then
  1864. if hit.Parent.Name ~= p.Name then
  1865. if hit.Parent:FindFirstChild("Humanoid") then
  1866. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  1867. wait(.3)
  1868. end
  1869. end
  1870. end
  1871. end)]]--
  1872. for i,v in pairs(FindNearestTorso(X.CFrame.p,140))do
  1873. if v:FindFirstChild('Humanoid') then
  1874. v.Humanoid:TakeDamage(math.random(60,90))
  1875. v.Humanoid.PlatformStand = true
  1876. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1877. end
  1878. end
  1879.  
  1880. local acos = math.acos
  1881. local sqrt = math.sqrt
  1882. local Vec3 = Vector3.new
  1883. local fromAxisAngle = CFrame.fromAxisAngle
  1884.  
  1885. local function toAxisAngle(CFr)
  1886. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1887. local Angle = math.acos((R00+R11+R22-1)/2)
  1888. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1889. A = A == 0 and 0.00001 or A
  1890. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1891. B = B == 0 and 0.00001 or B
  1892. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1893. C = C == 0 and 0.00001 or C
  1894. local x = (R21-R12)/sqrt(A)
  1895. local y = (R02-R20)/sqrt(B)
  1896. local z = (R10-R01)/sqrt(C)
  1897. return Vec3(x,y,z),Angle
  1898. end
  1899.  
  1900. function ApplyTrig(Num,Func)
  1901. local Min,Max = Func(0),Func(1)
  1902. local i = Func(Num)
  1903. return (i-Min)/(Max-Min)
  1904. end
  1905.  
  1906. function LerpCFrame(CFrame1,CFrame2,Num)
  1907. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1908. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1909. end
  1910.  
  1911. function Crater(Torso,Radius)
  1912. Spawn(function()
  1913. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1914. local Ignore = {}
  1915. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1916. if v.Character ~= nil then
  1917. Ignore[#Ignore+1] = v.Character
  1918. end
  1919. end
  1920. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1921. if Hit == nil then return end
  1922. local Parts = {}
  1923. for i = 1,360,10 do
  1924. local P = Instance.new("Part",Torso.Parent)
  1925. P.Anchored = true
  1926. P.FormFactor = "Custom"
  1927. P.BrickColor = Hit.BrickColor
  1928. P.Material = Hit.Material
  1929. P.TopSurface = "Smooth"
  1930. P.BottomSurface = "Smooth"
  1931. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  1932. 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)))
  1933. 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}
  1934. if math.random(0,5) == 0 then -- rubble
  1935. local P = Instance.new("Part",Torso.Parent)
  1936. P.Anchored = true
  1937. P.FormFactor = "Custom"
  1938. P.BrickColor = Hit.BrickColor
  1939. P.Material = Hit.Material
  1940. P.TopSurface = "Smooth"
  1941. P.BottomSurface = "Smooth"
  1942. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  1943. 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)))
  1944. 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}
  1945. end
  1946. end
  1947. for i = 0,1,0.05 do
  1948. for i2,v in pairs(Parts) do
  1949. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1950. end
  1951. wait(0.02)
  1952. end
  1953. for i,v in pairs(Parts) do
  1954. if v[1].Size.X > 2.1 then
  1955. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1956. end
  1957. v[1].Anchored = false
  1958. end
  1959. for i = 0,1,0.05 do
  1960. for i2,v in pairs(Parts) do
  1961. v[1].Transparency = i
  1962. if i == 1 then
  1963. v[1]:Destroy()
  1964. elseif i >= 0.25 then
  1965. v[1].CanCollide = false
  1966. end
  1967. end
  1968. wait(0.02)
  1969. end
  1970. Parts = nil
  1971. end)
  1972. end
  1973.  
  1974. ROW = function(out, trans, s, wt, t, ang, plus)
  1975. for i = 1, 360, 360/t do
  1976. local c = Instance.new("Part", game.Workspace)
  1977. c.FormFactor = 3
  1978. c.TopSurface = 0
  1979. c.BottomSurface = 0
  1980. c.Size = s
  1981. c.Anchored = true
  1982. c.CanCollide = wt
  1983. c.Material=workspace.Base.Material
  1984. c.Transparency = trans
  1985. c.BrickColor = workspace.Base.BrickColor
  1986. c.CFrame = CFrame.new(X.CFrame.x,0,X.CFrame.z) * CFrame.Angles(0, math.rad(i + plus), 0) * CFrame.new(0, 0, out) * ang
  1987. c.Locked=true
  1988. game.Debris:AddItem(c,15)
  1989. end
  1990. end
  1991.  
  1992. Part = function(x,y,z,color,tr,cc,an,parent)
  1993. local p = Instance.new('Part',parent or Weapon)
  1994. p.formFactor = 'Custom'
  1995. p.Size = Vector3.new(x,y,z)
  1996. p.BrickColor = BrickColor.new(color)
  1997. p.CanCollide = cc
  1998. p.Transparency = tr
  1999. p.Anchored = an
  2000. p.TopSurface,p.BottomSurface = 0,0
  2001. p.Locked=true
  2002. p:BreakJoints()
  2003. return p end
  2004.  
  2005. Mesh = function(par,num,x,y,z)
  2006. local msh = _
  2007. if num == 1 then msh = Instance.new("CylinderMesh",par)
  2008. elseif num == 2 then msh = Instance.new("SpecialMesh",par) msh.MeshType = 3
  2009. elseif num == 3 then msh = Instance.new("BlockMesh",par)
  2010. elseif num == 4 then msh = Instance.new("SpecialMesh",par) msh.MeshType = "Torso"
  2011. elseif type(num) == 'string' then msh = Instance.new("SpecialMesh",par) msh.MeshId = num
  2012. end msh.Scale = Vector3.new(x,y,z)
  2013. return msh end
  2014.  
  2015. function explosion(col1,col2,cfr,sz,rng,dmg)
  2016. local a= Part(1,1,1,col1,.5,false,true,workspace)
  2017. local a2= Part(1,1,1,col2,.5,false,true,workspace)
  2018. local a3= Part(1,1,1,col2,.5,false,true,workspace)
  2019. v1,v2,v3=sz.x,sz.y,sz.z
  2020. local m= Mesh(a,'http://www.roblox.com/asset/?id=1185246',v1,v2,v3)
  2021. local m2= Mesh(a2,3,v1/3,v2/3,v3/3)
  2022. local m3= Mesh(a3,3,v1/3,v2/3,v3/3)
  2023. a.CFrame=cfr
  2024. a2.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  2025. a3.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  2026.  
  2027. Spawn(function()
  2028. while wait() do
  2029. if a.Transparency >= 1 then a:Destroy() a2:Destroy() a3:Destroy() break end
  2030. m.Scale=m.Scale+Vector3.new(.1,0.1,0.1)
  2031. m2.Scale=m2.Scale+Vector3.new(.1,0.1,0.1)
  2032. m3.Scale=m3.Scale+Vector3.new(.1,0.1,0.1)
  2033. a.Transparency=a.Transparency+0.05
  2034. a2.Transparency=a2.Transparency+0.05
  2035. a3.Transparency=a3.Transparency+0.05
  2036. end
  2037. end)
  2038. end
  2039.  
  2040. Crater(X,20)
  2041. ROW(12, 0, Vector3.new(34.5, 30, 3), true, 8, CFrame.Angles(math.rad(math.random (30,60)), 0, math.rad (math.random(-30,30))), 0)
  2042. z = Instance.new("Sound",X)
  2043. z.SoundId = "rbxassetid://231917744"
  2044. z.Pitch = .5
  2045. z.Volume = 10
  2046. z1 = Instance.new("Sound",X)
  2047. z1.SoundId = "rbxassetid://231917744"
  2048. z1.Pitch = .5
  2049. z1.Volume = 10
  2050. z2 = Instance.new("Sound",X)
  2051. z2.SoundId = "rbxassetid://231917744"
  2052. z2.Pitch = .5
  2053. z2.Volume = 10
  2054. z3 = Instance.new("Sound",X)
  2055. z3.SoundId = "rbxassetid://245537790"
  2056. z3.Pitch = .7
  2057. z3.Volume = 1
  2058. z4 = Instance.new("Sound",X)
  2059. z4.SoundId = "rbxassetid://245537790"
  2060. z4.Pitch = .7
  2061. z4.Volume = 1
  2062. wait(0.1)
  2063. z:Play()
  2064. z1:Play()
  2065. z2:Play()
  2066. z3:Play()
  2067. z4:Play()
  2068.  
  2069. local part=Instance.new('Part',rarm)
  2070. part.Anchored=true
  2071. part.CanCollide=false
  2072. part.Locked = true
  2073. part.FormFactor='Custom'
  2074. part.Size=Vector3.new(1,1,1)
  2075. part.CFrame=X.CFrame*CFrame.new(0,0,0)
  2076. part.Transparency=0
  2077. part.BrickColor=BrickColor.new('Really black')
  2078. local mesh=Instance.new('SpecialMesh',part)
  2079. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  2080. mesh.Scale=Vector3.new(2,2,2)
  2081. local part2=part:clone()
  2082. part2.Parent = rarm
  2083. part2.BrickColor=BrickColor.new("Royal purple")
  2084. local part5=part:clone()
  2085. part5.Parent = rarm
  2086. part5.BrickColor=BrickColor.new("Magenta")
  2087. local part6=part:clone()
  2088. part6.Parent = rarm
  2089. part6.BrickColor=BrickColor.new("Black")
  2090. local mesh2=mesh:clone()
  2091. mesh2.Parent=part2
  2092. mesh2.Scale=Vector3.new(3, 3, 3)
  2093. local mesh5=mesh:clone()
  2094. mesh5.Parent=part5
  2095. mesh5.Scale=Vector3.new(3, 3, 3)
  2096. local mesh6=mesh:clone()
  2097. mesh6.Parent=part6
  2098. mesh6.Scale=Vector3.new(3, 3, 3)
  2099. local blast = Instance.new("Part", rarm)
  2100. blast.BrickColor = BrickColor.new("Really black")
  2101. blast.Anchored = true
  2102. blast.CanCollide = false
  2103. blast.Locked = true
  2104. blast.Size = Vector3.new(1, 1, 1)
  2105. blast.TopSurface = "Smooth"
  2106. blast.BottomSurface = "Smooth"
  2107. blast.Transparency = 0
  2108. blast.CFrame = HandCF
  2109. local bm = Instance.new("SpecialMesh", blast)
  2110. bm.Scale = Vector3.new(5,1,5)
  2111. bm.MeshId = "rbxassetid://3270017"
  2112. local blast2 = Instance.new("Part", rarm)
  2113. blast2.BrickColor = BrickColor.new("Really black")
  2114. blast2.Anchored = true
  2115. blast2.CanCollide = false
  2116. blast2.Locked = true
  2117. blast2.Size = Vector3.new(1, 1, 1)
  2118. blast2.TopSurface = "Smooth"
  2119. blast2.BottomSurface = "Smooth"
  2120. blast2.Transparency = 0
  2121. blast2.CFrame = HandCF
  2122. local bm2 = Instance.new("SpecialMesh", blast2)
  2123. bm2.Scale = Vector3.new(3,1,3)
  2124. bm2.MeshId = "rbxassetid://3270017"
  2125. local blast3 = Instance.new("Part", rarm)
  2126. blast3.BrickColor = BrickColor.new("Really black")
  2127. blast3.Anchored = true
  2128. blast3.CanCollide = false
  2129. blast3.Locked = true
  2130. blast3.Size = Vector3.new(1, 1, 1)
  2131. blast3.TopSurface = "Smooth"
  2132. blast3.BottomSurface = "Smooth"
  2133. blast3.Transparency = 0
  2134. blast3.CFrame = HandCF
  2135. local bm3 = Instance.new("SpecialMesh", blast3)
  2136. bm3.Scale = Vector3.new(3,1,3)
  2137. bm3.MeshId = "rbxassetid://3270017"
  2138. for i = 1,120 do rs:wait()
  2139. X.Transparency = X.Transparency + (1/120)
  2140. part.Transparency = part.Transparency + (1/120)
  2141. part2.Transparency = part2.Transparency + (1/120)
  2142. part3.Transparency = part3.Transparency + (1/120)
  2143. part4.Transparency = part4.Transparency + (1/120)
  2144. part5.Transparency = part5.Transparency + (1/120)
  2145. part6.Transparency = part6.Transparency + (1/120)
  2146. part7.Transparency = part7.Transparency + (1/120)
  2147. blast.Transparency = blast.Transparency + (1/120)
  2148. blast2.Transparency = blast2.Transparency + (1/120)
  2149. blast3.Transparency = blast3.Transparency + (1/120)
  2150. X.Size = X.Size + Vector3.new(.8,.8,.8)
  2151. --part3.Size = part3.Size + Vector3.new(3,3,3)
  2152. mesh.Scale = mesh.Scale + Vector3.new(1,.2,1)
  2153. mesh2.Scale = mesh2.Scale + Vector3.new(1.1,.2,1.1)
  2154. mesh3.Scale = mesh3.Scale + Vector3.new(3,3,3)
  2155. mesh4.Scale = mesh4.Scale + Vector3.new(1.7,1.7,1.7)
  2156. mesh5.Scale = mesh5.Scale + Vector3.new(1.6,.2,1.6)
  2157. mesh6.Scale = mesh6.Scale + Vector3.new(2,.2,2)
  2158. mesh7.Scale = mesh7.Scale + Vector3.new(4,4,4)
  2159. bm.Scale = bm.Scale + Vector3.new(6,6,.2)
  2160. bm2.Scale = bm2.Scale + Vector3.new(4,4,.2)
  2161. bm3.Scale = bm3.Scale + Vector3.new(4,4,.2)
  2162. X.CFrame = cf
  2163. part.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2),0)
  2164. part2.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2),0)
  2165. part3.CFrame=X.CFrame
  2166. part4.CFrame=X.CFrame
  2167. part7.CFrame=X.CFrame
  2168. part5.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2.6),0)
  2169. part6.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2.4),0)
  2170. blast.CFrame=X.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2171. blast2.CFrame=X.CFrame * CFrame.Angles(math.rad(-i*4), math.rad(i*4), math.rad(0))
  2172. blast3.CFrame=X.CFrame * CFrame.Angles(math.rad(180+i*4), math.rad(90-i*4), math.rad(0))
  2173. rs:wait()
  2174. end
  2175. X:Destroy()
  2176. part:Destroy()
  2177. part2:Destroy()
  2178. part3:Destroy()
  2179. part4:Destroy()
  2180. part5:Destroy()
  2181. part6:Destroy()
  2182. blast:Destroy()
  2183. blast2:Destroy()
  2184. blast3:Destroy()
  2185. z:Destroy()
  2186. z1:Destroy()
  2187. z2:Destroy()
  2188. z3:Destroy()
  2189. z4:Destroy()
  2190. end
  2191. end)
  2192. for i = 1, 20 do
  2193. 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)
  2194. 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)
  2195. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  2196. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)), 0.4)
  2197. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-8)), 0.2)
  2198. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-6), 0, math.rad(8)), 0.2)
  2199. if Debounces.on == false then break end
  2200. rs:wait()
  2201. end
  2202. if Debounces.CanAttack == false then
  2203. Debounces.CanAttack = true
  2204. Debounces.NoIdl = false
  2205. Debounces.on = false
  2206. end
  2207. end
  2208. end
  2209. end)
  2210. ----------------------------------------------------
  2211. mouse.KeyDown:connect(function(key)
  2212. if key == "e" then
  2213. if Debounces.CanAttack == true then
  2214. Debounces.CanAttack = false
  2215. Debounces.on = true
  2216. Debounces.NoIdl = true
  2217. pt = {1, 1.1, 1.2, 1.3, 1.4, 1.5}
  2218. z = Instance.new("Sound", rarm)
  2219. z.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  2220. z.Volume = .6
  2221. z.Pitch = pt[math.random(1,#pt)]
  2222. z.Looped = false
  2223. z:Play()
  2224. Debounces.RPunch = true
  2225. Debounces.LPunch = true
  2226. Debounces.ks = true
  2227. Debounces.ks2 = true
  2228. for i = 1, 3 do
  2229. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  2230. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  2231. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  2232. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  2233. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  2234. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  2235. if Debounces.on == false then break end
  2236. wait()
  2237. end
  2238. z2 = Instance.new("Sound", larm)
  2239. z2.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2240. z2.Volume = .6
  2241. z2.Pitch = pt[math.random(1,#pt)]
  2242. z2.Looped = false
  2243. z2:Play()
  2244. for i = 1, 3 do
  2245. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2246. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  2247. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2248. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2249. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2250. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2251. if Debounces.on == false then break end
  2252. wait()
  2253. end
  2254. z3 = Instance.new("Sound", rarm)
  2255. z3.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2256. z3.Volume = 0.6
  2257. z3.Pitch = pt[math.random(1,#pt)]
  2258. z3.Looped = false
  2259. z3:Play()
  2260. for i = 1, 3 do
  2261. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  2262. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  2263. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  2264. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  2265. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  2266. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  2267. if Debounces.on == false then break end
  2268. wait()
  2269. end
  2270. z4 = Instance.new("Sound", larm)
  2271. z4.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2272. z4.Volume = .6
  2273. z4.Pitch = pt[math.random(1,#pt)]
  2274. z4.Looped = false
  2275. z4:Play()
  2276. for i = 1, 3 do
  2277. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2278. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  2279. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2280. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2281. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2282. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2283. if Debounces.on == false then break end
  2284. wait()
  2285. end
  2286. z5 = Instance.new("Sound", rarm)
  2287. z5.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2288. z5.Volume = .6
  2289. z5.Pitch = pt[math.random(1,#pt)]
  2290. z5.Looped = false
  2291. z5:Play()
  2292. for i = 1, 3 do
  2293. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  2294. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  2295. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  2296. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  2297. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  2298. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  2299. if Debounces.on == false then break end
  2300. wait()
  2301. end
  2302. z6 = Instance.new("Sound", larm)
  2303. z6.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2304. z6.Volume = .6
  2305. z6.Pitch = pt[math.random(1,#pt)]
  2306. z6.Looped = false
  2307. z6:Play()
  2308. for i = 1, 3 do
  2309. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2310. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  2311. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2312. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2313. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2314. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2315. if Debounces.on == false then break end
  2316. wait()
  2317. end
  2318. z7 = Instance.new("Sound", rarm)
  2319. z7.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  2320. z7.Volume = .6
  2321. z7.Pitch = pt[math.random(1,#pt)]
  2322. z7.Looped = false
  2323. z7:Play()
  2324. for i = 1, 3 do
  2325. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  2326. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  2327. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  2328. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  2329. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  2330. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  2331. if Debounces.on == false then break end
  2332. wait()
  2333. end
  2334. z8 = Instance.new("Sound", larm)
  2335. z8.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2336. z8.Volume = .6
  2337. z8.Pitch = pt[math.random(1,#pt)]
  2338. z8.Looped = false
  2339. z8:Play()
  2340. for i = 1, 3 do
  2341. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2342. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  2343. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2344. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2345. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2346. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2347. if Debounces.on == false then break end
  2348. wait()
  2349. end
  2350. z9 = Instance.new("Sound", rarm)
  2351. z9.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2352. z9.Volume = 0.6
  2353. z9.Pitch = pt[math.random(1,#pt)]
  2354. z9.Looped = false
  2355. z9:Play()
  2356. for i = 1, 3 do
  2357. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  2358. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  2359. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  2360. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  2361. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  2362. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  2363. if Debounces.on == false then break end
  2364. wait()
  2365. end
  2366. z10 = Instance.new("Sound", larm)
  2367. z10.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2368. z10.Volume = .6
  2369. z10.Pitch = pt[math.random(1,#pt)]
  2370. z10.Looped = false
  2371. z10:Play()
  2372. for i = 1, 3 do
  2373. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2374. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  2375. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2376. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2377. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2378. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2379. if Debounces.on == false then break end
  2380. wait()
  2381. end
  2382. z11 = Instance.new("Sound", rarm)
  2383. z11.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2384. z11.Volume = .6
  2385. z11.Pitch = pt[math.random(1,#pt)]
  2386. z11.Looped = false
  2387. z11:Play()
  2388. for i = 1, 3 do
  2389. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  2390. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  2391. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  2392. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  2393. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  2394. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  2395. if Debounces.on == false then break end
  2396. wait()
  2397. end
  2398. z12 = Instance.new("Sound", larm)
  2399. z12.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2400. z12.Volume = .6
  2401. z12.Pitch = pt[math.random(1,#pt)]
  2402. z12.Looped = false
  2403. z12:Play()
  2404. for i = 1, 3 do
  2405. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2406. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  2407. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2408. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2409. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2410. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2411. if Debounces.on == false then break end
  2412. wait()
  2413. end
  2414. z13 = Instance.new("Sound", rarm)
  2415. z13.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2416. z13.Volume = 0.6
  2417. z13.Pitch = pt[math.random(1,#pt)]
  2418. z13.Looped = false
  2419. z13:Play()
  2420. for i = 1, 3 do
  2421. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  2422. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  2423. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  2424. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  2425. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  2426. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  2427. if Debounces.on == false then break end
  2428. wait()
  2429. end
  2430. z14 = Instance.new("Sound", larm)
  2431. z14.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2432. z14.Volume = .6
  2433. z14.Pitch = pt[math.random(1,#pt)]
  2434. z14.Looped = false
  2435. z14:Play()
  2436. for i = 1, 3 do
  2437. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2438. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  2439. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2440. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2441. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2442. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2443. if Debounces.on == false then break end
  2444. wait()
  2445. end
  2446. z15 = Instance.new("Sound", rarm)
  2447. z15.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2448. z15.Volume = .6
  2449. z15.Pitch = pt[math.random(1,#pt)]
  2450. z15.Looped = false
  2451. z15:Play()
  2452. for i = 1, 3 do
  2453. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  2454. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  2455. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  2456. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  2457. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  2458. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  2459. if Debounces.on == false then break end
  2460. wait()
  2461. end
  2462. z16 = Instance.new("Sound", larm)
  2463. z16.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2464. z16.Volume = .6
  2465. z16.Pitch = pt[math.random(1,#pt)]
  2466. z16.Looped = false
  2467. z16:Play()
  2468. for i = 1, 3 do
  2469. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2470. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  2471. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2472. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2473. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2474. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2475. if Debounces.on == false then break end
  2476. wait()
  2477. end
  2478. z17 = Instance.new("Sound", rarm)
  2479. z17.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  2480. z17.Volume = .6
  2481. z17.Pitch = pt[math.random(1,#pt)]
  2482. z17.Looped = false
  2483. z17:Play()
  2484. for i = 1, 3 do
  2485. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  2486. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  2487. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  2488. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  2489. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  2490. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  2491. if Debounces.on == false then break end
  2492. wait()
  2493. end
  2494. z18 = Instance.new("Sound", larm)
  2495. z18.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2496. z18.Volume = .6
  2497. z18.Pitch = pt[math.random(1,#pt)]
  2498. z18.Looped = false
  2499. z18:Play()
  2500. for i = 1, 3 do
  2501. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2502. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  2503. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2504. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2505. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2506. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2507. if Debounces.on == false then break end
  2508. wait()
  2509. end
  2510. z19 = Instance.new("Sound", rarm)
  2511. z19.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2512. z19.Volume = 0.6
  2513. z19.Pitch = pt[math.random(1,#pt)]
  2514. z19.Looped = false
  2515. z19:Play()
  2516. for i = 1, 3 do
  2517. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  2518. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  2519. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  2520. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  2521. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  2522. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  2523. if Debounces.on == false then break end
  2524. wait()
  2525. end
  2526. z20 = Instance.new("Sound", larm)
  2527. z20.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2528. z20.Volume = .6
  2529. z20.Pitch = pt[math.random(1,#pt)]
  2530. z20.Looped = false
  2531. z20:Play()
  2532. for i = 1, 3 do
  2533. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2534. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  2535. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2536. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2537. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2538. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2539. if Debounces.on == false then break end
  2540. wait()
  2541. end
  2542. z:Destroy()
  2543. z2:Destroy()
  2544. z3:Destroy()
  2545. z4:Destroy()
  2546. z5:Destroy()
  2547. z6:Destroy()
  2548. z7:Destroy()
  2549. z8:Destroy()
  2550. z9:Destroy()
  2551. z10:Destroy()
  2552. z11:Destroy()
  2553. z12:Destroy()
  2554. z13:Destroy()
  2555. z14:Destroy()
  2556. z15:Destroy()
  2557. z16:Destroy()
  2558. z17:Destroy()
  2559. z18:Destroy()
  2560. z19:Destroy()
  2561. z20:Destroy()
  2562. Debounces.LPunch = false
  2563. Debounces.RPunch = false
  2564. Debounces.ks = false
  2565. Debounces.ks2 = false
  2566. if Debounces.CanAttack == false then
  2567. Debounces.CanAttack = true
  2568. Debounces.on = false
  2569. Debounces.NoIdl = false
  2570. end
  2571. end
  2572. end
  2573. end)
  2574. -------------------------------
  2575. mouse.KeyDown:connect(function(key)
  2576. if key == "t" then
  2577. if Debounces.CanAttack == true then
  2578. Debounces.CanAttack = false
  2579. Debounces.NoIdl = true
  2580. Debounces.on = true
  2581. Debounces.ks = true
  2582. kik = rleg.Touched:connect(function(ht)
  2583. hit = ht.Parent
  2584. if ht and hit:IsA("Model") then
  2585. if hit:FindFirstChild("Humanoid") then
  2586. if hit.Name ~= p.Name then
  2587. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2588. Debounces.Slashed = true]]--
  2589. if Debounces.ks==true then
  2590. z = Instance.new("Sound",hed)
  2591. z.SoundId = "rbxassetid://169380525"
  2592. z.Volume = 1
  2593. z:Play()
  2594. Debounces.ks=false
  2595. end
  2596. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2597. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -300
  2598. --Debounces.Slashed = false
  2599. --end
  2600. end
  2601. end
  2602. elseif ht and hit:IsA("Hat") then
  2603. if hit.Parent.Name ~= p.Name then
  2604. if hit.Parent:FindFirstChild("Humanoid") then
  2605. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2606. Debounces.Slashed = true]]--
  2607. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2608. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -300
  2609. --Debounces.Slashed = false
  2610. --end
  2611. end
  2612. end
  2613. end
  2614. end)
  2615. for i = 1,20 do
  2616. 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)
  2617. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.4)
  2618. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2619. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(90), math.rad(90)), 0.4)
  2620. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-90)), 0.4)
  2621. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  2622. if Debounces.on == false then break end
  2623. rs:wait()
  2624. end
  2625. kik:disconnect()
  2626. if Debounces.CanAttack == false then
  2627. Debounces.CanAttack = true
  2628. Debounces.NoIdl = false
  2629. Debounces.on = false
  2630. end
  2631. end
  2632. end
  2633. end)
  2634. ----------------------------------------------------
  2635. mouse.KeyDown:connect(function(key)
  2636. if key == "y" then
  2637. if Debounces.CanAttack == true then
  2638. Debounces.CanAttack = false
  2639. Debounces.on = true
  2640. Debounces.NoIdl = true
  2641. for i,v in pairs (char.Claw:GetChildren()) do
  2642. if v:IsA("Part") then
  2643. v.Transparency=0
  2644. end
  2645. end
  2646. for i,v in pairs (char.Claw:GetChildren()) do
  2647. if v:IsA("WedgePart") then
  2648. v.Transparency=0
  2649. end
  2650. end
  2651. for i = 1, 15 do
  2652. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  2653. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6)
  2654. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  2655. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.4)
  2656. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2657. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2658. if Debounces.on == false then break end
  2659. rs:wait(2.7)
  2660. end
  2661. x = Instance.new("Sound",char)
  2662. x.SoundId = "rbxassetid://228343271"
  2663. x.Pitch = 1
  2664. x.Volume = .8
  2665. wait(.1)
  2666. x:Play()
  2667. Debounces.on = false
  2668. Debounces.Here = false
  2669. shot = shot + 1
  2670. local rng = Instance.new("Part", larm)
  2671. rng.Anchored = true
  2672. rng.BrickColor = BrickColor.new("Royal purple")
  2673. rng.CanCollide = false
  2674. rng.FormFactor = 3
  2675. rng.Name = "Ring"
  2676. rng.Size = Vector3.new(1, 1, 1)
  2677. rng.Transparency = 0.35
  2678. rng.TopSurface = 0
  2679. rng.BottomSurface = 0
  2680. rng2 = rng:clone()
  2681. rng3 = rng2:clone()
  2682. rng4 = rng2:clone()
  2683. local rngm = Instance.new("SpecialMesh", rng)
  2684. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2685. rngm.Scale = Vector3.new(10, 10, 1)
  2686. rngm2 = rngm:clone()
  2687. rngm2.Scale = Vector3.new(5, 5, 3)
  2688. rngm3=rngm2:clone()
  2689. rngm3.Parent = rng3
  2690. rngm3.Scale = Vector3.new(8, 8, 1)
  2691. rngm4 = rngm2:clone()
  2692. rngm4.Parent = rng4
  2693. rngm4.Scale = Vector3.new(6, 6, 1)
  2694. local bem = Instance.new("Part", larm)
  2695. bem.Anchored = true
  2696. bem.BrickColor = BrickColor.new("Really black")
  2697. bem.CanCollide = false
  2698. bem.FormFactor = 3
  2699. bem.Name = "Beam" .. shot
  2700. bem.Size = Vector3.new(1, 1, 1)
  2701. bem.Transparency = 0.35
  2702. bem.TopSurface = 0
  2703. bem.BottomSurface = 0
  2704. local bemm = Instance.new("SpecialMesh", bem)
  2705. bemm.MeshType = 4
  2706. bemm.Scale = Vector3.new(1, 4, 4)
  2707. local out = Instance.new("Part", larm)
  2708. out.Anchored = true
  2709. out.BrickColor = BrickColor.new("Really black")
  2710. out.CanCollide = false
  2711. out.FormFactor = 3
  2712. out.Name = "Out"
  2713. out.Size = Vector3.new(4, 4, 4)
  2714. out.Transparency = 0.35
  2715. out.TopSurface = 0
  2716. out.BottomSurface = 0
  2717. local outm = Instance.new("SpecialMesh", out)
  2718. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2719. outm.Scale = Vector3.new(6, 4, 6)
  2720. local bnd = Instance.new("Part", larm)
  2721. bnd.Anchored = true
  2722. bnd.BrickColor = BrickColor.new("Really red")
  2723. bnd.CanCollide = false
  2724. bnd.FormFactor = 3
  2725. bnd.Name = "Bend"
  2726. bnd.Size = Vector3.new(1, 1, 1)
  2727. bnd.Transparency = 1
  2728. bnd.TopSurface = 0
  2729. bnd.BottomSurface = 0
  2730. local bndm = Instance.new("SpecialMesh", bnd)
  2731. bndm.MeshType = 3
  2732. bndm.Scale = Vector3.new(8, 8, 8)
  2733. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  2734. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  2735. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  2736. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  2737. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  2738. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  2739. Debounces.Shewt = true
  2740. coroutine.wrap(function()
  2741. for i = 1, 20, 0.2 do
  2742. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2743. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  2744. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  2745. rng.Transparency = i/20
  2746. rng3.Transparency = 1/24
  2747. rng4.Transparency = i/26
  2748. wait()
  2749. end
  2750. wait()
  2751. rng:Destroy()
  2752. end)()
  2753. if Debounces.Shewt == true then
  2754. larm:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  2755. hit = ht.Parent
  2756. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  2757. if HasntTouched(hit.Name) == true and deb == false then
  2758. deb = true
  2759. coroutine.wrap(function()
  2760. hit:FindFirstChild("Humanoid").PlatformStand = true
  2761. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2762. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  2763. end)()
  2764. table.insert(Touche, hit.Name)
  2765. deb = false
  2766. end
  2767. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  2768. if HasntTouched(hit.Parent.Name) == true and deb == false then
  2769. deb = true
  2770. coroutine.wrap(function()
  2771. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  2772. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2773. wait(1)
  2774. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  2775. end)()
  2776. table.insert(Touche, hit.Parent.Name)
  2777. deb = false
  2778. for i, v in pairs(Touche) do
  2779. print(v)
  2780. end
  2781. end
  2782. end
  2783. end)
  2784. end
  2785. for i = 0, 260, 8 do
  2786. bem.Size = Vector3.new(i, 3, 3)
  2787. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  2788. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  2789. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  2790. bnd.Size = Vector3.new(1,1,1)
  2791. bndm.Scale = Vector3.new(8,8,8)
  2792. if i % 10 == 0 then
  2793. local newRng = rng2:Clone()
  2794. newRng.Parent = larm
  2795. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  2796. local newRngm = rngm2:clone()
  2797. newRngm.Parent=newRng
  2798. coroutine.wrap(function()
  2799. for i = 1, 10, 0.2 do
  2800. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  2801. newRng.Transparency = i/10
  2802. wait()
  2803. end
  2804. wait()
  2805. newRng:Destroy()
  2806. end)()
  2807. end
  2808. wait()
  2809. end
  2810. wait()
  2811. Debounces.Shewt = false
  2812. bem:Destroy()
  2813. out:Destroy()
  2814. bnd:Destroy()
  2815. Debounces.Ready = false
  2816. for i, v in pairs(Touche) do
  2817. table.remove(Touche, i)
  2818. end
  2819. wait()
  2820. for i,v in pairs (char.Claw:GetChildren()) do
  2821. if v:IsA("Part") then
  2822. v.Transparency=1
  2823. end
  2824. end
  2825. for i,v in pairs (char.Claw:GetChildren()) do
  2826. if v:IsA("WedgePart") then
  2827. v.Transparency=1
  2828. end
  2829. end
  2830. table.insert(Touche, char.Name)
  2831. Debounces.NoIdl = false
  2832. if Debounces.CanAttack == false then
  2833. Debounces.CanAttack = true
  2834. end
  2835. end
  2836. end
  2837. end)
  2838. ----------------------------------------------------
  2839. --[[mouse.KeyDown:connect(function(key)
  2840. if key == "y" then
  2841. if Debounces.CanAttack == true then
  2842. Debounces.CanAttack = false
  2843. Debounces.NoIdl = true
  2844. Debounces.on = true
  2845. local shell = Instance.new("Part",torso)
  2846. shell.BrickColor = BrickColor.new("Royal purple")
  2847. shell.Anchored = false
  2848. shell.CanCollide = false
  2849. shell.Locked = true
  2850. shell.TopSurface = "SmoothNoOutlines"
  2851. shell.BottomSurface = "SmoothNoOutlines"
  2852. shell.Size = Vector3.new(1.2,1.2,1.2)
  2853. shell.FormFactor = 3
  2854. local shellm = Instance.new("SpecialMesh",shell)
  2855. shellm.MeshType = "Sphere"
  2856. shellm.Scale = Vector3.new(1.2,1.2,1.2)
  2857. Omega = function()
  2858. local X = Instance.new("Part",char)
  2859. local O = Instance.new("ObjectValue",X)
  2860. O.Name = "creator"
  2861. X.Locked = true
  2862. X.Name = "Shell"
  2863. X.Anchored = false
  2864. X.CanCollide = false
  2865. X.Transparency = 0.5
  2866. X.Reflectance = 0
  2867. X.BottomSurface = 0
  2868. X.TopSurface = 0
  2869. X.Shape = 0
  2870. local V = Instance.new("ObjectValue",X)
  2871. V.Value = char
  2872. V.Name = "creator"
  2873. X.BrickColor = BrickColor.new("Royal purple")
  2874. X.Size = Vector3.new(40,40,40)
  2875. --X.Material = "Neon"
  2876. local Z = Instance.new("SpecialMesh",X)
  2877. Z.MeshType = "Sphere"
  2878. Z.Scale = Vector3.new(0.2,0.2,0.2)
  2879. X.CFrame = rarm.CFrame*CFrame.new(0,-6,0)
  2880. local bv = Instance.new("BodyVelocity",X)
  2881. bv.maxForce = Vector3.new(99999,99999,99999)
  2882. X.CFrame = CFrame.new(X.Position,root.CFrame.lookVector*10)
  2883. bv.velocity = root.CFrame.lookVector*10
  2884. Explode = X.Touched:connect(function(hit)
  2885. if hit ~= char and hit.Name ~= "Shell" and hit ~= X and hit:IsA("Part") or hit:IsA("BasePart}") then
  2886. local cf = X.CFrame
  2887. bv:Destroy()
  2888. X.Anchored = true
  2889. Z:Remove()
  2890. Explode:disconnect()
  2891. X.Size = Vector3.new(3,3,3)
  2892. X.Touched:connect(function(hit) end)
  2893. X.CanCollide = false
  2894. for i,v in pairs(FindNearestTorso(X.CFrame.p,200))do
  2895. if v:FindFirstChild('Humanoid') then
  2896. v.Humanoid:TakeDamage(math.random(80,120))
  2897. end
  2898. end
  2899. for i = 1, (40) do rs:wait()
  2900. X.Transparency = X.Transparency + (1/40)
  2901. X.Size = X.Size + Vector3.new(1,1,1)
  2902. X.CFrame = root.CFrame * CFrame.new(0,0,-10)
  2903. end
  2904. X:Destroy()
  2905. end
  2906. end)
  2907. end
  2908. for i = 1,200 do
  2909. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2910. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(170)), 0.03)
  2911. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)
  2912. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2913. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2914. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2915. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2916. if Debounces.on == false then break end
  2917. rs:wait()
  2918. end
  2919. for i = 1,30 do
  2920. shell.CFrame = torso.CFrame * CFrame.new(0,8,0)
  2921. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(170)), 0.4)
  2922. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-170)), 0.4)
  2923. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2924. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2925. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2926. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2927. if Debounces.on == false then break end
  2928. rs:wait()
  2929. end
  2930. for i = 1,40 do
  2931. shell.CFrame = torso.CFrame * CFrame.new(0,20,0)
  2932. shell.Size = shell.Size + Vector3.new(1,1,1)
  2933. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(100)), 0.4)
  2934. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-100)), 0.4)
  2935. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2936. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2937. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2938. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2939. if Debounces.on == false then break end
  2940. rs:wait()
  2941. end
  2942. for i = 1,40 do
  2943. shell.CFrame = torso.CFrame * CFrame.new(0,0,-30)
  2944. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.6,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(20)), 0.4)
  2945. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.6,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.4)
  2946. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2947. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2948. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2949. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2950. if Debounces.on == false then break end
  2951. rs:wait()
  2952. end
  2953. for i = 1,60 do
  2954. shell.CFrame = torso.CFrame * CFrame.new(0,0,-60)
  2955. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.64,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-30)), 0.4)
  2956. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.64,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.4)
  2957. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2958. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2959. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2960. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2961. if Debounces.on == false then break end
  2962. rs:wait()
  2963. end
  2964. for i = 1,60 do
  2965. shell.CFrame = torso.CFrame * CFrame.new(0,0,-60)
  2966. shell.Size = shell.Size + Vector3.new(1,1,1)
  2967. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.64,0)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(120)), 0.4)
  2968. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.64,0)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(-120)), 0.4)
  2969. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2970. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2971. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2972. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2973. if Debounces.on == false then break end
  2974. rs:wait()
  2975. end
  2976. if Debounces.CanAttack == false then
  2977. Debounces.CanAttack = true
  2978. Debounces.NoIdl = false
  2979. Debounces.on = false
  2980. end
  2981. end
  2982. end
  2983. end)]]--
  2984. ----------------------------------------------------
  2985. Charging = false
  2986. mouse.KeyDown:connect(function(key)
  2987. if key == "r" then
  2988. if Charging == false then
  2989. Charging = true
  2990. if Debounces.CanAttack == true then
  2991. Debounces.CanAttack = false
  2992. Debounces.NoIdl = true
  2993. Debounces.on = true
  2994. for i = 1,20 do
  2995. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-40)), 0.2)
  2996. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(40)), 0.2)
  2997. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  2998. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  2999. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  3000. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  3001. if Debounces.on == false then break end
  3002. rs:wait()
  3003. end
  3004. --[[for i = 1,20 do
  3005. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(-20),math.rad(50)), 0.4)
  3006. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(20),math.rad(-50)), 0.4)
  3007. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(34),math.rad(0),0), 0.4)
  3008. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(0)), 0.4)
  3009. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(-10)), 0.4)
  3010. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(10)), 0.4)
  3011. if Debounces.on == false then break end
  3012. rs:wait()
  3013. end]]--
  3014. pt=Instance.new('Part',torso)
  3015. pt.Anchored=true
  3016. pt.CanCollide=false
  3017. pt.Locked = true
  3018. pt.FormFactor='Custom'
  3019. pt.Size=Vector3.new(1,1,1)
  3020. pt.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3021. pt.Transparency=.6
  3022. pt.BrickColor=BrickColor.new('Really black')
  3023. msh=Instance.new('SpecialMesh',pt)
  3024. msh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3025. msh.Scale=Vector3.new(8,4,8)
  3026. pt2=pt:clone()
  3027. pt2.Parent = torso
  3028. pt2.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3029. pt2.BrickColor=BrickColor.new("Royal purple")
  3030. msh2=msh:clone()
  3031. msh2.Parent=pt2
  3032. msh2.Scale=Vector3.new(10,5,10)
  3033.  
  3034. custommath={25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,-25,-26,-27,-28,-29,-30,-31,-32,-33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93,-94,-95,-96,-97,-98,-99,-100}
  3035.  
  3036. bl = Instance.new("Part", char)
  3037. bl.Locked = true
  3038. bl.Name = "Shell"
  3039. bl.BrickColor = BrickColor.new("Really black")
  3040. bl.Anchored = true
  3041. bl.CanCollide = false
  3042. bl.Transparency = 0
  3043. bl.Reflectance = 0
  3044. bl.BottomSurface = 0
  3045. bl.TopSurface = 0
  3046. bl.Shape = 0
  3047. blm = Instance.new("SpecialMesh",bl)
  3048. blm.MeshType = "Sphere"
  3049. blm.Scale = Vector3.new(1,1,1)
  3050. blm.MeshId = "rbxassetid://9982590"
  3051.  
  3052. coroutine.resume(coroutine.create(function()
  3053. for i=1, math.huge, 4 do
  3054. if Charging == true then
  3055. rs:wait()
  3056. bl.CFrame = root.CFrame * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  3057. blm.Scale = blm.Scale + Vector3.new(0.1, 0.1, 0.1)
  3058. bl.Transparency = bl.Transparency + 0.005
  3059. pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2),0)
  3060. pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2),0)
  3061. msh.Scale = msh.Scale + Vector3.new(0.05,0,0.05)
  3062. msh2.Scale = msh2.Scale + Vector3.new(0.05,0,0.05)
  3063. elseif Charging == false then break
  3064. end
  3065. end
  3066. end))
  3067.  
  3068. repeat
  3069. local p = Instance.new('Part',torso)
  3070. p.formFactor = 'Custom'
  3071. p.Size = Vector3.new(1,1,1)
  3072. p.BrickColor = workspace.Base.BrickColor
  3073. p.CanCollide = false
  3074. p.Transparency = 0
  3075. p.Anchored = true
  3076. p.Locked=true
  3077. p.Material = workspace.Base.Material
  3078. s = math.random(1,40)/10
  3079. local m = Instance.new("BlockMesh",p)
  3080. m.Scale = Vector3.new(s,s,s)
  3081. p.CFrame = torso.CFrame*CFrame.new(custommath[math.random(1,#custommath)]/10,-math.random(5,7),custommath[math.random(1,#custommath)]/10)*CFrame.Angles(math.random(),math.random(),math.random())
  3082. --[[coroutine.wrap(function()
  3083. wait(2)
  3084. while Charging == true do
  3085. wait(2)
  3086. GroundWave1()
  3087. wait(2)
  3088. end
  3089. end)()]]--
  3090. Spawn(function()
  3091. while rs:wait() do
  3092. if Charging == true then
  3093. rarm.Weld.C0 = CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(-30,-20)),math.rad(math.random(30,50)))
  3094. larm.Weld.C0 = CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(20,30)),math.rad(math.random(-50,-30)))
  3095. hed.Weld.C0 = CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(math.random(26,34)),math.rad(math.random(-5,5)),math.rad(0))
  3096. torso.Weld.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(10), math.rad(math.random(-4,4)), math.rad(0))
  3097. lleg.Weld.C0 = CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(10,20)), math.rad(math.random(-20,-10)))
  3098. rleg.Weld.C0 = CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(-20,-10)), math.rad(math.random(10,20)))
  3099. elseif Charging == false then break
  3100. end
  3101. end
  3102. end)
  3103. Spawn(function()
  3104. while rs:wait() do
  3105. if p.Transparency >= 1 then p:Destroy() break end
  3106. p.CFrame = p.CFrame*CFrame.Angles(math.rad(2),math.rad(2),math.rad(2))+Vector3.new(0,0.2,0)
  3107. p.Transparency = p.Transparency+0.01
  3108. end
  3109. end)
  3110. wait(.3)
  3111. until Charging == false
  3112. end
  3113. end
  3114. end
  3115. end)
  3116. ----------------------------------------------------
  3117. mouse.KeyUp:connect(function(key)
  3118. if key == "r" then
  3119. if Charging == true then
  3120. Charging = false
  3121. pt:Destroy()
  3122. pt2:Destroy()
  3123. bl:Destroy()
  3124. if Debounces.CanAttack == false then
  3125. Debounces.CanAttack = true
  3126. Debounces.NoIdl = false
  3127. Debounces.on = false
  3128. end
  3129. end
  3130. end
  3131. end)
  3132. ----------------------------------------------------
  3133. mouse.KeyDown:connect(function(key)
  3134. if key == "g" then
  3135. if Debounces.CanAttack == true then
  3136. Debounces.CanAttack = false
  3137. Debounces.NoIdl = true
  3138. Debounces.on = true
  3139. local shell = Instance.new("Part",torso)
  3140. shell.BrickColor = BrickColor.new("Royal purple")
  3141. shell.Anchored = true
  3142. shell.CanCollide = false
  3143. shell.Locked = true
  3144. shell.TopSurface = "SmoothNoOutlines"
  3145. shell.BottomSurface = "SmoothNoOutlines"
  3146. shell.Size = Vector3.new(1,1,1)
  3147. shellm = Instance.new("SpecialMesh",shell)
  3148. shellm.MeshType = "Sphere"
  3149. shellm.Scale = Vector3.new(1,1,1)
  3150. local shell2 = Instance.new("Part",torso)
  3151. shell2.BrickColor = BrickColor.new("Royal purple")
  3152. shell2.Anchored = true
  3153. shell2.CanCollide = false
  3154. shell2.Locked = true
  3155. shell2.TopSurface = "SmoothNoOutlines"
  3156. shell2.BottomSurface = "SmoothNoOutlines"
  3157. shell2.Size = Vector3.new(1,1,1)
  3158. shellm2 = Instance.new("SpecialMesh",shell2)
  3159. shellm2.MeshType = "Sphere"
  3160. shellm2.Scale = Vector3.new(1,1,1)
  3161.  
  3162. function FindNearestTorso(Position,Distance,SinglePlayer)
  3163. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3164. local List = {}
  3165. for i,v in pairs(workspace:GetChildren())do
  3166. if v:IsA("Model")then
  3167. if v:findFirstChild("Torso")then
  3168. if v ~= char then
  3169. if(v.Torso.Position -Position).magnitude <= Distance then
  3170. table.insert(List,v)
  3171. end
  3172. end
  3173. end
  3174. end
  3175. end
  3176. return List
  3177. end
  3178.  
  3179. Shell = function()
  3180. local X = Instance.new("Part",char)
  3181. local O = Instance.new("ObjectValue",X)
  3182. O.Name = "creator"
  3183. X.Locked = true
  3184. X.Name = "Shell"
  3185. X.Anchored = false
  3186. X.CanCollide = false
  3187. X.Transparency = 0
  3188. X.Reflectance = 0
  3189. X.BottomSurface = 0
  3190. X.TopSurface = 0
  3191. X.Shape = 0
  3192. local V = Instance.new("ObjectValue",X)
  3193. V.Value = char
  3194. V.Name = "creator"
  3195. X.BrickColor = BrickColor.new("Royal purple")
  3196. X.Size = Vector3.new(1,1,1)
  3197. --X.Material = "Neon"
  3198. local Z = Instance.new("SpecialMesh",X)
  3199. Z.MeshType = "Sphere"
  3200. Z.Scale = Vector3.new(1,1,1)
  3201. X.CFrame = rarm.CFrame*CFrame.new(0,-6,0)
  3202. local bv = Instance.new("BodyVelocity",X)
  3203. bv.maxForce = Vector3.new(99999,99999,99999)
  3204. X.CFrame = CFrame.new(X.Position,root.CFrame.lookVector*10)
  3205. bv.velocity = root.CFrame.lookVector*65
  3206. Explode = X.Touched:connect(function(hit)
  3207. if hit ~= char and hit.Name ~= "Shell" and hit:IsA("Part") or hit:IsA("BasePart}") then
  3208. local cf = X.CFrame
  3209. bv:Destroy()
  3210. X.Anchored = true
  3211. Z:Remove()
  3212. Explode:disconnect()
  3213. X.Size = Vector3.new(3,3,3)
  3214. X.Touched:connect(function(hit) end)
  3215. X.CanCollide = false
  3216. for i,v in pairs(FindNearestTorso(X.CFrame.p,40))do
  3217. if v:FindFirstChild('Humanoid') then
  3218. v.Humanoid:TakeDamage(math.random(6,12))
  3219. end
  3220. end
  3221. for i = 1, (40) do rs:wait()
  3222. X.Transparency = X.Transparency + (1/40)
  3223. X.Size = X.Size + Vector3.new(1,1,1)
  3224. X.CFrame = cf
  3225. end
  3226. X:Destroy()
  3227. end
  3228. end)
  3229. end
  3230. Shell()
  3231. for i = 1, 10 do
  3232. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3233. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3234. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  3235. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  3236. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.7)
  3237. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.7)
  3238. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-20)), 0.7)
  3239. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(20)), 0.7)
  3240. if Debounces.on == false then break end
  3241. rs:wait()
  3242. end
  3243. Shell()
  3244. shell.Transparency = 1
  3245. for i = 1, 10 do
  3246. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3247. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3248. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  3249. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  3250. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  3251. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  3252. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  3253. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  3254. if Debounces.on == false then break end
  3255. rs:wait()
  3256. end
  3257. Shell()
  3258. shell.Transparency = 0
  3259. shell2.Transparency = 1
  3260. for i = 1, 10 do
  3261. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3262. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3263. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  3264. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  3265. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  3266. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  3267. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  3268. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  3269. if Debounces.on == false then break end
  3270. rs:wait()
  3271. end
  3272. Shell()
  3273. shell2.Transparency = 0
  3274. shell.Transparency = 1
  3275. for i = 1, 10 do
  3276. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3277. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3278. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  3279. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  3280. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  3281. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  3282. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  3283. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  3284. if Debounces.on == false then break end
  3285. rs:wait()
  3286. end
  3287. Shell()
  3288. shell.Transparency = 0
  3289. shell2.Transparency = 1
  3290. for i = 1, 10 do
  3291. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3292. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3293. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  3294. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  3295. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  3296. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  3297. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  3298. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  3299. if Debounces.on == false then break end
  3300. rs:wait()
  3301. end
  3302. Shell()
  3303. shell2.Transparency = 0
  3304. shell.Transparency = 1
  3305. for i = 1, 10 do
  3306. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3307. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3308. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  3309. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  3310. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  3311. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  3312. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  3313. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  3314. if Debounces.on == false then break end
  3315. rs:wait()
  3316. end
  3317. Shell()
  3318. shell.Transparency = 0
  3319. shell2.Transparency = 1
  3320. for i = 1, 10 do
  3321. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3322. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3323. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  3324. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.5)
  3325. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  3326. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  3327. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  3328. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  3329. if Debounces.on == false then break end
  3330. rs:wait()
  3331. end
  3332. Shell()
  3333. shell2.Transparency = 0
  3334. shell.Transparency = 1
  3335. for i = 1, 10 do
  3336. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3337. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3338. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  3339. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  3340. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  3341. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  3342. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  3343. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  3344. if Debounces.on == false then break end
  3345. rs:wait()
  3346. end
  3347. Shell()
  3348. shell.Transparency = 0
  3349. shell2.Transparency = 1
  3350. for i = 1, 10 do
  3351. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3352. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3353. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  3354. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  3355. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  3356. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  3357. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  3358. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  3359. if Debounces.on == false then break end
  3360. rs:wait()
  3361. end
  3362. Shell()
  3363. shell2.Transparency = 0
  3364. shell.Transparency = 1
  3365. for i = 1, 10 do
  3366. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3367. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3368. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  3369. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  3370. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  3371. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  3372. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  3373. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  3374. if Debounces.on == false then break end
  3375. rs:wait()
  3376. end
  3377. Shell()
  3378. shell.Transparency = 0
  3379. shell2.Transparency = 1
  3380. for i = 1, 10 do
  3381. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3382. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3383. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  3384. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  3385. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  3386. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  3387. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  3388. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  3389. if Debounces.on == false then break end
  3390. rs:wait()
  3391. end
  3392. Shell()
  3393. shell2.Transparency = 0
  3394. shell.Transparency = 1
  3395. for i = 1, 10 do
  3396. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3397. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3398. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  3399. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  3400. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  3401. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  3402. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  3403. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  3404. if Debounces.on == false then break end
  3405. rs:wait()
  3406. end
  3407. Shell()
  3408. shell.Transparency = 0
  3409. shell2.Transparency = 1
  3410. for i = 1, 10 do
  3411. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3412. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3413. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  3414. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  3415. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  3416. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  3417. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  3418. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  3419. if Debounces.on == false then break end
  3420. rs:wait()
  3421. end
  3422. shell.Transparency = 1
  3423. if Debounces.CanAttack == false then
  3424. Debounces.CanAttack = true
  3425. Debounces.NoIdl = false
  3426. Debounces.on = false
  3427. end
  3428. end
  3429. end
  3430. end)
  3431. ----------------------------------------------------
  3432. Search = false
  3433. mouse.KeyDown:connect(function(key)
  3434. if key == "n" then
  3435. if Search == false then
  3436. Search = true
  3437. for i,v in pairs(game.Players:getPlayers()) do
  3438. if v.Name~=char.Name then
  3439. for j,k in pairs(v.Character:GetChildren()) do
  3440. if k:IsA("BasePart") and k.Transparency >= 1 then
  3441. bawx=Instance.new("SelectionBox",cam)
  3442. bawx.Color = BrickColor.new("Bright red")
  3443. bawx.Transparency = .5
  3444. bawx.Adornee = k
  3445. end
  3446. end
  3447. end
  3448. end
  3449. elseif Search == true then
  3450. Search = false
  3451. for i, v in pairs(cam:GetChildren()) do
  3452. if v:IsA("SelectionBox") then
  3453. v:Destroy()
  3454. end
  3455. end
  3456. end
  3457. end
  3458. end)
  3459. ----------------------------------------------------
  3460. Grab = false
  3461. mouse.KeyDown:connect(function(key)
  3462. if key == "z" then
  3463. Debounces.on = true
  3464. Debounces.NoIdl = true
  3465. Debounces.ks = true
  3466. if Grab == false then
  3467. gp = nil
  3468. for i = 1, 20 do
  3469. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.2)
  3470. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.2)
  3471. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  3472. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3473. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(30), math.rad(-20)), 0.2)
  3474. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-15), math.rad(20)), 0.2)
  3475. if Debounces.on == false then break end
  3476. rs:wait()
  3477. end
  3478. con1=larm.Touched:connect(function(hit) -- this is grab
  3479. ht = hit.Parent
  3480. hum1=ht:FindFirstChild('Humanoid')
  3481. if hum1 ~= nil then
  3482. if Debounces.ks==true then
  3483. z = Instance.new("Sound",hed)
  3484. z.SoundId = "rbxassetid://169380525"
  3485. z.Volume = 1
  3486. z:Play()
  3487. Debounces.ks=false
  3488. end
  3489. hum1.PlatformStand=true
  3490. gp = ht
  3491. Grab = true
  3492. asd=weld5(root,ht:FindFirstChild("Torso"),CFrame.new(0,0,-2.4),CFrame.new(0,0,0))
  3493. asd.Parent = larm
  3494. asd.Name = "asd"
  3495. asd.C0=asd.C0*CFrame.Angles(math.rad(0),math.rad(180),0)
  3496. --[[elseif hum1 == nil then
  3497. con1:disconnect()
  3498. wait() return]]--
  3499. end
  3500. end)
  3501. for i = 1, 20 do
  3502. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.2)
  3503. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.2)
  3504. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  3505. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3506. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2)
  3507. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.2)
  3508. if Debounces.on == false then break end
  3509. rs:wait()
  3510. end
  3511. if hum1 == nil then
  3512. Debounces.on = false
  3513. Debounces.NoIdl = false
  3514. end
  3515. con1:disconnect()
  3516. elseif Grab == true then
  3517. Grab = false
  3518. Punch()
  3519. z = Instance.new("Sound",hed)
  3520. z.SoundId = "rbxassetid://169380525"
  3521. z.Pitch = ptz[math.random(1,#ptz)]
  3522. z.Volume = 1
  3523. z:Play()
  3524. for i = 1, 10 do
  3525. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  3526. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  3527. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  3528. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  3529. 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)
  3530. 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)
  3531. if Debounces.on == false then break end
  3532. rs:wait()
  3533. end
  3534. Punch()
  3535. z = Instance.new("Sound",hed)
  3536. z.SoundId = "rbxassetid://169380525"
  3537. z.Pitch = ptz[math.random(1,#ptz)]
  3538. z.Volume = 1
  3539. z:Play()
  3540. for i = 1, 10 do
  3541. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  3542. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  3543. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  3544. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  3545. 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)
  3546. 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)
  3547. if Debounces.on == false then break end
  3548. rs:wait()
  3549. end
  3550. Punch()
  3551. z = Instance.new("Sound",hed)
  3552. z.SoundId = "rbxassetid://169380525"
  3553. z.Pitch = ptz[math.random(1,#ptz)]
  3554. z.Volume = 1
  3555. z:Play()
  3556. for i = 1, 10 do
  3557. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  3558. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  3559. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  3560. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  3561. 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)
  3562. 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)
  3563. if Debounces.on == false then break end
  3564. rs:wait()
  3565. end
  3566. Punch()
  3567. z = Instance.new("Sound",hed)
  3568. z.SoundId = "rbxassetid://169380525"
  3569. z.Pitch = ptz[math.random(1,#ptz)]
  3570. z.Volume = 1
  3571. z:Play()
  3572. for i = 1, 10 do
  3573. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  3574. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  3575. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  3576. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  3577. 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)
  3578. 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)
  3579. if Debounces.on == false then break end
  3580. rs:wait()
  3581. end
  3582. Punch()
  3583. z = Instance.new("Sound",hed)
  3584. z.SoundId = "rbxassetid://169380525"
  3585. z.Pitch = ptz[math.random(1,#ptz)]
  3586. z.Volume = 1
  3587. z:Play()
  3588. for i = 1, 10 do
  3589. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  3590. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  3591. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  3592. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  3593. 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)
  3594. 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)
  3595. if Debounces.on == false then break end
  3596. rs:wait()
  3597. end
  3598. Punch()
  3599. z = Instance.new("Sound",hed)
  3600. z.SoundId = "rbxassetid://169380525"
  3601. z.Pitch = ptz[math.random(1,#ptz)]
  3602. z.Volume = 1
  3603. z:Play()
  3604. for i = 1, 10 do
  3605. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  3606. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  3607. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  3608. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  3609. 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)
  3610. 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)
  3611. if Debounces.on == false then break end
  3612. rs:wait()
  3613. end
  3614. Punch()
  3615. z = Instance.new("Sound",hed)
  3616. z.SoundId = "rbxassetid://169380525"
  3617. z.Pitch = ptz[math.random(1,#ptz)]
  3618. z.Volume = 1
  3619. z:Play()
  3620. for i = 1, 10 do
  3621. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  3622. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  3623. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  3624. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  3625. 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)
  3626. 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)
  3627. if Debounces.on == false then break end
  3628. rs:wait()
  3629. end
  3630. Punch()
  3631. z = Instance.new("Sound",hed)
  3632. z.SoundId = "rbxassetid://169380525"
  3633. z.Pitch = ptz[math.random(1,#ptz)]
  3634. z.Volume = 1
  3635. z:Play()
  3636. for i = 1, 10 do
  3637. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  3638. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  3639. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  3640. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  3641. 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)
  3642. 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)
  3643. if Debounces.on == false then break end
  3644. rs:wait()
  3645. end
  3646. Punch()
  3647. z = Instance.new("Sound",hed)
  3648. z.SoundId = "rbxassetid://169380525"
  3649. z.Pitch = ptz[math.random(1,#ptz)]
  3650. z.Volume = 1
  3651. z:Play()
  3652. for i = 1, 10 do
  3653. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  3654. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  3655. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  3656. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  3657. 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)
  3658. 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)
  3659. if Debounces.on == false then break end
  3660. rs:wait()
  3661. end
  3662. Punch()
  3663. z = Instance.new("Sound",hed)
  3664. z.SoundId = "rbxassetid://169380525"
  3665. z.Pitch = ptz[math.random(1,#ptz)]
  3666. z.Volume = 1
  3667. z:Play()
  3668. for i = 1, 10 do
  3669. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  3670. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  3671. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  3672. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  3673. 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)
  3674. 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)
  3675. if Debounces.on == false then break end
  3676. rs:wait()
  3677. end
  3678. Punch()
  3679. z = Instance.new("Sound",hed)
  3680. z.SoundId = "rbxassetid://169380525"
  3681. z.Pitch = ptz[math.random(1,#ptz)]
  3682. z.Volume = 1
  3683. z:Play()
  3684. for i = 1, 10 do
  3685. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  3686. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  3687. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  3688. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  3689. 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)
  3690. 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)
  3691. if Debounces.on == false then break end
  3692. rs:wait()
  3693. end
  3694. Punch()
  3695. z = Instance.new("Sound",hed)
  3696. z.SoundId = "rbxassetid://169380525"
  3697. z.Pitch = ptz[math.random(1,#ptz)]
  3698. z.Volume = 1
  3699. z:Play()
  3700. for i = 1, 10 do
  3701. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  3702. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  3703. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  3704. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  3705. 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)
  3706. 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)
  3707. if Debounces.on == false then break end
  3708. rs:wait()
  3709. end
  3710. con1:disconnect()
  3711. Debounces.on = false
  3712. Debounces.NoIdl = false
  3713. if gp ~= nil then
  3714. gp:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 140
  3715. for i,v in pairs(larm:GetChildren()) do
  3716. if v.Name == "asd" and v:IsA("Weld") then
  3717. v:Remove()
  3718. end
  3719. end
  3720. --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  3721. bv.maxForce = Vector3.new(400000, 400000, 400000)
  3722. bv.P = 125000
  3723. bv.velocity = char.Head.CFrame.lookVector * 200]]--
  3724. hum1=nil
  3725. ht=nil
  3726. Debounces.on = false
  3727. Debounces.NoIdl = false
  3728. elseif ht == nil then wait()
  3729. Grab = false
  3730. Debounces.on = false
  3731. Debounces.NoIdl = false
  3732. end
  3733. end
  3734. end
  3735. end)
  3736. ----------------------------------------------------
  3737. mouse.KeyDown:connect(function(key)
  3738. if string.byte(key) == 52 then
  3739. char.Humanoid.WalkSpeed = 60
  3740. end
  3741. end)
  3742. mouse.KeyUp:connect(function(key)
  3743. if string.byte(key) == 52 then
  3744. char.Humanoid.WalkSpeed = 8
  3745. end
  3746. end)
  3747. -------------------------------
  3748. local animpose = "Idle"
  3749. local lastanimpose = "Idle"
  3750. local sine = 0
  3751. local change = 1
  3752. local val = 0
  3753. local ffing = false
  3754. -------------------------------
  3755. game:GetService("RunService").RenderStepped:connect(function()
  3756. --[[if char.Humanoid.Jump == true then
  3757. jump = true
  3758. else
  3759. jump = false
  3760. end]]
  3761. char.Humanoid.FreeFalling:connect(function(f)
  3762. if f then
  3763. ffing = true
  3764. else
  3765. ffing = false
  3766. end
  3767. end)
  3768. sine = sine + change
  3769. if jumpn == true then
  3770. animpose = "Jumping"
  3771. elseif ffing == true then
  3772. animpose = "Freefalling"
  3773. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3774. animpose = "Idle"
  3775. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3776. animpose = "Walking"
  3777. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3778. animpose = "Running"
  3779. end
  3780. if animpose ~= lastanimpose then
  3781. sine = 0
  3782. if Debounces.NoIdl == false then
  3783. if animpose == "Idle" then
  3784. for i = 1, 2 do
  3785. 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)
  3786. 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)
  3787. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3788. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  3789. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  3790. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  3791. end
  3792. elseif animpose == "Walking" then
  3793. for i = 1, 2 do
  3794. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3795. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3796. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  3797. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  3798. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  3799. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  3800. end
  3801. elseif animpose == "Running" then
  3802. for i = 1, 2 do
  3803. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(-14),math.rad(8+2*math.cos(sine/14))), 0.2)
  3804. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(14),math.rad(-8-2*math.cos(sine/14))), 0.2)
  3805. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10),0,0), 0.4)
  3806. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20),0, math.rad(0)), 0.4)
  3807. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(-7)), 0.4)
  3808. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(7)), 0.4)
  3809. wait()
  3810. end
  3811. end
  3812. else
  3813. end
  3814. end
  3815. lastanimpose = animpose
  3816. if Debounces.NoIdl == false then
  3817. if animpose == "Idle" then
  3818. change = 0.5
  3819. --rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8+2*math.cos(sine/14))), 0.4)
  3820. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,.45,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(180),math.rad(20)), 0.2)
  3821. 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)
  3822. --larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8-2*math.cos(sine/14))), 0.4)
  3823. 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)
  3824. --torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  3825. --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(0),0), 0.2)
  3826. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05)
  3827. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4)
  3828. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4)
  3829. elseif animpose == "Walking" then
  3830. change = 1
  3831. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3832. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3833. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  3834. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  3835. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  3836. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  3837. elseif animpose == "Running" then
  3838. change = 1
  3839. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.35,.4)*CFrame.Angles(math.rad(-30),math.rad(14),math.rad(-30+2*math.cos(sine/14))), 0.2)
  3840. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.55,-.4)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(40-2*math.cos(sine/14))), 0.2)
  3841. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(20),math.rad(10),0), 0.4)
  3842. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-40),math.rad(-10), math.rad(0)), 0.2)
  3843. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1.2) * CFrame.Angles(math.rad(-20), math.rad(10), math.rad(0)), 0.4)
  3844. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), math.rad(10), math.rad(0)), 0.4)
  3845. end
  3846. end
  3847. end)
  3848.  
  3849. hum.MaxHealth = 9001
  3850. wait(3)
  3851. hum.Health = 9001
  3852.  
  3853. name = game.Players.LocalPlayer.Character
  3854. line = function(pos1, pos2)
  3855. local b = Instance.new("Part")
  3856. b.Parent = name.Torso
  3857. b.Name = "Blast"
  3858. b.Anchored = true
  3859. b.BrickColor = BrickColor.new("Really red")
  3860. b.CFrame = CFrame.new((pos1 + pos2) / 2, pos2) * CFrame.Angles(math.rad(90), 0, 0)
  3861. b.CanCollide = false
  3862. local y = Instance.new("BlockMesh")
  3863. y.Parent = b
  3864. y.Scale = Vector3.new(0.02, (pos2 - pos1).magnitude, 0.02)
  3865. game:GetService("Debris"):AddItem(b, 1)
  3866. end
  3867.  
  3868. random = function()
  3869. return Vector3.new(math.random(-1, 1), math.random(-1, 1), math.random(-1, 1))
  3870. end
  3871.  
  3872. while wait(1) do
  3873. for i = 1, 4 do
  3874. p1 = name.Torso.Position + random() * 2
  3875. p2 = p1 + random()
  3876. line(p1, p2)
  3877. p1 = p2
  3878. p2 = p1 + random()
  3879. line(p1, p2)
  3880. end
  3881. end
Add Comment
Please, Sign In to add comment