Ak47Studioz

Party titanius

May 19th, 2016
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 158.71 KB | None | 0 0
  1. game.Lighting.Ambient = Color3.new(170, 85, 255)
  2. wait(0.1)
  3. makaff = Instance.new("ForceField", game.Players.LocalPlayer.Character)
  4. makaff.Name = "Fakesss"
  5. game.Chat:Chat(game.Players.LocalPlayer.Character.Head,"YO WHAT UP FKERS U READY TO PARTY", "Blue")
  6. wait(1.6)
  7. game.Chat:Chat(game.Players.LocalPlayer.Character.Head,"BECAUSE DAMNNNNN PARTY TITANIUS COMING TO TOWN :3!", "Blue")
  8. wait(1.6)
  9. game.Lighting.Ambient = Color3.new(0,0,0)
  10. game.Chat:Chat(game.Players.LocalPlayer.Character.Head,"SO GET SOME WINE AND SOME HARD LIQUOR AND LETS GET THIS SHT DOWN!", "Blue")
  11. wait(1.2)
  12. game.Lighting.Ambient = Color3.new(0,0,0)
  13. local p = game.Players.LocalPlayer
  14. local char = p.Character
  15. local mouse = p:GetMouse()
  16. local larm = char["Left Arm"]
  17. local rarm = char["Right Arm"]
  18. local lleg = char["Left Leg"]
  19. local rleg = char["Right Leg"]
  20. local hed = char.Head
  21. local torso = char.Torso
  22. local hum = char.Humanoid
  23. local cam = game.Workspace.CurrentCamera
  24. local root = char.HumanoidRootPart
  25. local deb = false
  26. local shot = 0
  27. local l = game:GetService("Lighting")
  28. local rs = game:GetService("RunService").RenderStepped
  29. local stanceToggle = "Normal"
  30. math.randomseed(os.time())
  31. hum.WalkSpeed = 200
  32. char.Health:Destroy()
  33. hum.MaxHealth = 12600
  34. wait(0.1)
  35. hum.Health = 12600
  36. ----------------------------------------------------
  37. char.Shirt:Destroy()
  38. char.Pants:Destroy()
  39. shirt = Instance.new("Shirt", char)
  40. shirt.Name = "Shirt"
  41. pants = Instance.new("Pants", char)
  42. pants.Name = "Pants"
  43. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=241179382"
  44. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=241182513"
  45. ----------------------------------------------------
  46. Debounces = {
  47. on = false;
  48. ks = false;
  49. CanAttack = true;
  50. CanJoke = true;
  51. NoIdl = false;
  52. Slashing = false;
  53. Slashed = false;
  54. Grabbing = false;
  55. Grabbed = false;
  56. }
  57. local Touche = {char.Name, }
  58. ----------------------------------------------------
  59. function lerp(a, b, t) -- Linear interpolation
  60. return a + (b - a)*t
  61. end
  62.  
  63. function slerp(a, b, t) --Spherical interpolation
  64. dot = a:Dot(b)
  65. if dot > 0.99999 or dot < -0.99999 then
  66. return t <= 0.5 and a or b
  67. else
  68. r = math.acos(dot)
  69. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  70. end
  71. end
  72.  
  73. function matrixInterpolate(a, b, t)
  74. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  75. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  76. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  77. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  78. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  79. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  80. local t = v1:Dot(v2)
  81. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  82. return CFrame.new()
  83. end
  84. return CFrame.new(
  85. v0.x, v0.y, v0.z,
  86. v1.x, v1.y, v1.z,
  87. v2.x, v2.y, v2.z,
  88. v3.x, v3.y, v3.z)
  89. end
  90. ----------------------------------------------------
  91. function genWeld(a,b)
  92. local w = Instance.new("Weld",a)
  93. w.Part0 = a
  94. w.Part1 = b
  95. return w
  96. end
  97. function weld(a, b)
  98. local weld = Instance.new("Weld")
  99. weld.Name = "W"
  100. weld.Part0 = a
  101. weld.Part1 = b
  102. weld.C0 = a.CFrame:inverse() * b.CFrame
  103. weld.Parent = a
  104. return weld;
  105. end
  106. ----------------------------------------------------
  107. function Lerp(c1,c2,al)
  108. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  109. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  110. for i,v in pairs(com1) do
  111. com1[i] = v+(com2[i]-v)*al
  112. end
  113. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  114. end
  115. ----------------------------------------------------
  116. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  117. local wld = Instance.new("Weld", wp1)
  118. wld.Part0 = wp0
  119. wld.Part1 = wp1
  120. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  121. end
  122. ----------------------------------------------------
  123. for i,v in pairs(char:children()) do
  124. if v:IsA("Hat") then
  125. v:Destroy()
  126. end
  127. end
  128. for i,v in pairs(hed:children()) do
  129. if v:IsA("Sound") then
  130. v:Destroy()
  131. end
  132. end
  133. ----------------------------------------------------
  134. function HasntTouched(plrname)
  135. local ret = true
  136. for _, v in pairs(Touche) do
  137. if v == plrname then
  138. ret = false
  139. end
  140. end
  141. return ret
  142. end
  143. ----------------------------------------------------
  144. larm.Size = larm.Size * 2
  145. rarm.Size = rarm.Size * 2
  146. lleg.Size = lleg.Size * 2
  147. rleg.Size = rleg.Size * 2
  148. torso.Size = torso.Size * 2
  149. hed.Size = hed.Size * 2
  150. root.Size = root.Size * 2
  151. ----------------------------------------------------
  152. newWeld(torso, larm, -1.5, 0.5, 0)
  153. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  154. newWeld(torso, rarm, 1.5, 0.5, 0)
  155. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  156. newWeld(torso, hed, 0, 1.5, 0)
  157. newWeld(torso, lleg, -0.5, -1, 0)
  158. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  159. newWeld(torso, rleg, 0.5, -1, 0)
  160. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  161. newWeld(root, torso, 0, -1, 0)
  162. torso.Weld.C1 = CFrame.new(0, -1, 0)
  163. ----------------------------------------------------
  164. game:service'InsertService':LoadAsset(250395631):children()[1].Parent=char
  165. char.HoodedAssassin.Handle.Mesh.Scale = char.HoodedAssassin.Handle.Mesh.Scale * 1.8
  166. z=Instance.new('Decal',hed)
  167. z.Face = 'Front'
  168. z.Texture='rbxassetid://99174105'
  169. hed.BrickColor = BrickColor.new("Black")
  170. lite = Instance.new("PointLight", torso)
  171. lite.Brightness = 14
  172. lite.Range = 60
  173. lite.Color = Color3.new(255, 255, 0)
  174. --[[local hed2 = hed:Clone()
  175. hed2.CanCollide = false
  176. hed2.Parent = char
  177. hed2:ClearAllChildren()
  178. hed2.Transparency = 1
  179. hed2.Name = "DARP"
  180. local w = Instance.new("Weld",hed2)
  181. w.Part0 = hed
  182. w.Part1 = hed2
  183. w.C0 = CFrame.new(0,0,-0.175)
  184. z=Instance.new("SurfaceGui",hed2)
  185. z.Enabled = true
  186. z.Face = "Front"
  187. z.Adornee = hed2
  188. z.CanvasSize = Vector2.new(100,100)
  189. local face = Instance.new("ImageLabel",z)
  190. face.Size = UDim2.new(1,-30,1,0)
  191. face.Position = UDim2.new(0,15,0,0)
  192. face.BackgroundTransparency = 1
  193. face.Image='rbxassetid://46282671']]--
  194. ----------------------------------------------------
  195. z = Instance.new("Sound", char)
  196. z.SoundId = "rbxassetid://161923242"
  197. z.Looped = true
  198. z.Pitch = 1
  199. z.Volume = 1
  200. wait(.01)
  201. z:Play()
  202. ----------------------------------------------------
  203. local m = Instance.new("Model")
  204. m.Name = "Titanius"
  205. p1 = Instance.new("Part", m)
  206. p1.Material = "Neon"
  207. p1.BrickColor = BrickColor.new("Royal purple")
  208. p1.FormFactor = Enum.FormFactor.Custom
  209. p1.Material = "Neon"
  210. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  211. p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
  212. p1.CanCollide = false
  213. p1.Locked = true
  214. p1.Elasticity = 0
  215. p1.BottomSurface = Enum.SurfaceType.Smooth
  216. p1.TopSurface = Enum.SurfaceType.Smooth
  217. b1 = Instance.new("SpecialMesh", p1)
  218. b1.MeshType = Enum.MeshType.Wedge
  219. b1.Name = "Mesh"
  220. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  221. p2 = Instance.new("Part", m)
  222. p2.Material = "Neon"
  223. p2.BrickColor = BrickColor.new("Black")
  224. p2.FormFactor = Enum.FormFactor.Custom
  225. p2.Size = Vector3.new(1, 2.9000001, 1)
  226. p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
  227. p2.CanCollide = false
  228. p2.Locked = true
  229. p2.Elasticity = 0
  230. p2.BottomSurface = Enum.SurfaceType.Smooth
  231. p2.TopSurface = Enum.SurfaceType.Smooth
  232. b2 = Instance.new("BlockMesh", p2)
  233. b2.Name = "Mesh"
  234. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  235. p3 = Instance.new("Part", m)
  236. p3.Material = "Neon"
  237. p3.BrickColor = BrickColor.new("Royal purple")
  238. p3.Material = "Neon"
  239. p3.FormFactor = Enum.FormFactor.Custom
  240. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  241. p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
  242. p3.CanCollide = false
  243. p3.Locked = true
  244. p3.Elasticity = 0
  245. p3.BottomSurface = Enum.SurfaceType.Smooth
  246. p3.TopSurface = Enum.SurfaceType.Smooth
  247. b3 = Instance.new("SpecialMesh", p3)
  248. b3.MeshType = Enum.MeshType.Wedge
  249. b3.Name = "Mesh"
  250. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  251. p4 = Instance.new("Part", m)
  252. p4.Material = "Neon"
  253. p4.BrickColor = BrickColor.new("Royal purple")
  254. p4.Material = "Neon"
  255. p4.FormFactor = Enum.FormFactor.Custom
  256. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  257. p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
  258. p4.CanCollide = false
  259. p4.Locked = true
  260. p4.Elasticity = 0
  261. p4.BottomSurface = Enum.SurfaceType.Smooth
  262. p4.TopSurface = Enum.SurfaceType.Smooth
  263. b4 = Instance.new("SpecialMesh", p4)
  264. b4.MeshType = Enum.MeshType.Wedge
  265. b4.Name = "Mesh"
  266. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  267. p5 = Instance.new("Part", m)
  268. p5.BrickColor = BrickColor.new("Royal purple")
  269. p5.Material = "Neon"
  270. p5.FormFactor = Enum.FormFactor.Custom
  271. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  272. p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
  273. p5.CanCollide = false
  274. p5.Locked = true
  275. p5.Elasticity = 0
  276. p5.BottomSurface = Enum.SurfaceType.Smooth
  277. p5.TopSurface = Enum.SurfaceType.Smooth
  278. b5 = Instance.new("SpecialMesh", p5)
  279. b5.MeshType = Enum.MeshType.Wedge
  280. b5.Name = "Mesh"
  281. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  282. p6 = Instance.new("Part", m)
  283. p6.Material = "Neon"
  284. p6.Name = "Handle"
  285. p6.BrickColor = BrickColor.new("Black")
  286. p6.FormFactor = Enum.FormFactor.Custom
  287. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  288. p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
  289. p6.CanCollide = false
  290. p6.Locked = true
  291. p6.Elasticity = 0
  292. p6.BottomSurface = Enum.SurfaceType.Smooth
  293. p6.TopSurface = Enum.SurfaceType.Smooth
  294. b6 = Instance.new("BlockMesh", p6)
  295. b6.Name = "Mesh"
  296. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  297. p7 = Instance.new("Part", m)
  298. p7.Material = "Neon"
  299. p7.BrickColor = BrickColor.new("Royal purple")
  300. p7.FormFactor = Enum.FormFactor.Custom
  301. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  302. p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
  303. p7.CanCollide = false
  304. p7.Locked = true
  305. p7.Elasticity = 0
  306. p7.BottomSurface = Enum.SurfaceType.Smooth
  307. p7.TopSurface = Enum.SurfaceType.Smooth
  308. b7 = Instance.new("SpecialMesh", p7)
  309. b7.MeshType = Enum.MeshType.Wedge
  310. b7.Name = "Mesh"
  311. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  312. p8 = Instance.new("Part", m)
  313. p8.Material = "Neon"
  314. p8.BrickColor = BrickColor.new("Royal purple")
  315. p8.FormFactor = Enum.FormFactor.Custom
  316. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  317. p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
  318. p8.CanCollide = false
  319. p8.Locked = true
  320. p8.Elasticity = 0
  321. p8.BottomSurface = Enum.SurfaceType.Smooth
  322. p8.TopSurface = Enum.SurfaceType.Smooth
  323. b8 = Instance.new("SpecialMesh", p8)
  324. b8.MeshType = Enum.MeshType.Wedge
  325. b8.Name = "Mesh"
  326. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  327. p9 = Instance.new("Part", m)
  328. p9.Material = "Neon"
  329. p9.BrickColor = BrickColor.new("Black")
  330. p9.FormFactor = Enum.FormFactor.Custom
  331. p9.Size = Vector3.new(1, 1.07999957, 1)
  332. p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
  333. p9.CanCollide = false
  334. p9.Locked = true
  335. p9.Elasticity = 0
  336. p9.BottomSurface = Enum.SurfaceType.Smooth
  337. p9.TopSurface = Enum.SurfaceType.Smooth
  338. b9 = Instance.new("BlockMesh", p9)
  339. b9.Name = "Mesh"
  340. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  341. p10 = Instance.new("Part", m)
  342. p10.Material = "Neon"
  343. p10.BrickColor = BrickColor.new("Black")
  344. p10.FormFactor = Enum.FormFactor.Custom
  345. p10.Size = Vector3.new(1, 1.41999948, 1)
  346. p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
  347. p10.CanCollide = false
  348. p10.Locked = true
  349. p10.Elasticity = 0
  350. p10.BottomSurface = Enum.SurfaceType.Smooth
  351. p10.TopSurface = Enum.SurfaceType.Smooth
  352. b10 = Instance.new("BlockMesh", p10)
  353. b10.Name = "Mesh"
  354. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  355. p11 = Instance.new("Part", m)
  356. p11.Material = "Neon"
  357. p11.BrickColor = BrickColor.new("Black")
  358. p11.FormFactor = Enum.FormFactor.Custom
  359. p11.Size = Vector3.new(1, 1.50999951, 1)
  360. p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
  361. p11.CanCollide = false
  362. p11.Locked = true
  363. p11.Elasticity = 0
  364. p11.BottomSurface = Enum.SurfaceType.Smooth
  365. p11.TopSurface = Enum.SurfaceType.Smooth
  366. b11 = Instance.new("BlockMesh", p11)
  367. b11.Name = "Mesh"
  368. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  369. p12 = Instance.new("Part", m)
  370. p12.Material = "Neon"
  371. p12.Name = "BladeCenter"
  372. p12.BrickColor = BrickColor.new("Royal purple")
  373. p12.Material = "Neon"
  374. p12.FormFactor = Enum.FormFactor.Symmetric
  375. p12.Size = Vector3.new(1, 2, 2)
  376. p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
  377. p12.CanCollide = false
  378. p12.Locked = true
  379. p12.BottomSurface = Enum.SurfaceType.Smooth
  380. p12.TopSurface = Enum.SurfaceType.Smooth
  381. b12 = Instance.new("SpecialMesh", p12)
  382. b12.MeshType = Enum.MeshType.Brick
  383. b12.Name = "Mesh"
  384. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  385. p13 = Instance.new("Part", m)
  386. p13.Material = "Neon"
  387. p13.BrickColor = BrickColor.new("Black")
  388. p13.FormFactor = Enum.FormFactor.Custom
  389. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  390. p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
  391. p13.CanCollide = false
  392. p13.Locked = true
  393. p13.Elasticity = 0
  394. p13.BottomSurface = Enum.SurfaceType.Smooth
  395. p13.TopSurface = Enum.SurfaceType.Smooth
  396. b13 = Instance.new("BlockMesh", p13)
  397. b13.Name = "Mesh"
  398. b13.Scale = Vector3.new(1, 1, 0.400000006)
  399. p14 = Instance.new("Part", m)
  400. p14.Material = "Neon"
  401. p14.BrickColor = BrickColor.new("Black")
  402. p14.FormFactor = Enum.FormFactor.Custom
  403. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  404. p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
  405. p14.CanCollide = false
  406. p14.Locked = true
  407. p14.Elasticity = 0
  408. p14.BottomSurface = Enum.SurfaceType.Smooth
  409. p14.TopSurface = Enum.SurfaceType.Smooth
  410. b14 = Instance.new("BlockMesh", p14)
  411. b14.Name = "Mesh"
  412. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  413. p15 = Instance.new("Part", m)
  414. p15.BrickColor = BrickColor.new("Black")
  415. p15.Material = "Neon"
  416. p15.FormFactor = Enum.FormFactor.Custom
  417. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  418. p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
  419. p15.CanCollide = false
  420. p15.Locked = true
  421. p15.Elasticity = 0
  422. p15.BottomSurface = Enum.SurfaceType.Smooth
  423. p15.TopSurface = Enum.SurfaceType.Smooth
  424. b15 = Instance.new("BlockMesh", p15)
  425. b15.Name = "Mesh"
  426. b15.Scale = Vector3.new(1, 1, 0.400000006)
  427. p16 = Instance.new("Part", m)
  428. p16.BrickColor = BrickColor.new("Black")
  429. p16.Material = "Neon"
  430. p16.FormFactor = Enum.FormFactor.Custom
  431. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  432. p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
  433. p16.CanCollide = false
  434. p16.Locked = true
  435. p16.Elasticity = 0
  436. p16.BottomSurface = Enum.SurfaceType.Smooth
  437. p16.TopSurface = Enum.SurfaceType.Smooth
  438. b16 = Instance.new("BlockMesh", p16)
  439. b16.Name = "Mesh"
  440. b16.Scale = Vector3.new(1, 1, 0.400000006)
  441. p17 = Instance.new("Part", m)
  442. p17.BrickColor = BrickColor.new("Black")
  443. p17.Material = "Neon"
  444. p17.FormFactor = Enum.FormFactor.Custom
  445. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  446. p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
  447. p17.CanCollide = false
  448. p17.Locked = true
  449. p17.Elasticity = 0
  450. p17.BottomSurface = Enum.SurfaceType.Smooth
  451. p17.TopSurface = Enum.SurfaceType.Smooth
  452. b17 = Instance.new("BlockMesh", p17)
  453. b17.Name = "Mesh"
  454. b17.Scale = Vector3.new(1, 1, 0.400000006)
  455. p18 = Instance.new("WedgePart", m)
  456. p18.BrickColor = BrickColor.new("Royal purple")
  457. p18.Name = "BladePart1"
  458. p18.Material = "Neon"
  459. p18.Name = "Wedge"
  460. p18.FormFactor = Enum.FormFactor.Symmetric
  461. p18.Size = Vector3.new(1, 4, 2)
  462. p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
  463. p18.CanCollide = false
  464. p18.Locked = true
  465. p18.BottomSurface = Enum.SurfaceType.Smooth
  466. p18.TopSurface = Enum.SurfaceType.Smooth
  467. b18 = Instance.new("SpecialMesh", p18)
  468. b18.MeshType = Enum.MeshType.Wedge
  469. b18.Name = "Mesh"
  470. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  471. p19 = Instance.new("WedgePart", m)
  472. p19.BrickColor = BrickColor.new("Royal purple")
  473. p19.Name = "BladePart2"
  474. p19.Material = "Neon"
  475. p19.Name = "Wedge"
  476. p19.FormFactor = Enum.FormFactor.Symmetric
  477. p19.Size = Vector3.new(1, 4, 2)
  478. p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
  479. p19.CanCollide = false
  480. p19.Locked = true
  481. p19.BottomSurface = Enum.SurfaceType.Smooth
  482. p19.TopSurface = Enum.SurfaceType.Smooth
  483. b19 = Instance.new("SpecialMesh", p19)
  484. b19.MeshType = Enum.MeshType.Wedge
  485. b19.Name = "Mesh"
  486. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  487. p20 = Instance.new("Part", m)
  488. p20.BrickColor = BrickColor.new("Black")
  489. p20.Material = "Neon"
  490. p20.FormFactor = Enum.FormFactor.Custom
  491. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  492. p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
  493. p20.CanCollide = false
  494. p20.Locked = true
  495. p20.Elasticity = 0
  496. p20.BottomSurface = Enum.SurfaceType.Smooth
  497. p20.TopSurface = Enum.SurfaceType.Smooth
  498. b20 = Instance.new("BlockMesh", p20)
  499. b20.Name = "Mesh"
  500. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  501. p21 = Instance.new("Part", m)
  502. p21.BrickColor = BrickColor.new("Royal purple")
  503. p21.Material = "Neon"
  504. p21.FormFactor = Enum.FormFactor.Custom
  505. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  506. p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
  507. p21.CanCollide = false
  508. p21.Locked = true
  509. p21.Elasticity = 0
  510. p21.BottomSurface = Enum.SurfaceType.Smooth
  511. p21.TopSurface = Enum.SurfaceType.Smooth
  512. b21 = Instance.new("SpecialMesh", p21)
  513. b21.MeshType = Enum.MeshType.Wedge
  514. b21.Name = "Mesh"
  515. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  516. w1 = Instance.new("Weld", p1)
  517. w1.Name = "Part_Weld"
  518. w1.Part0 = p1
  519. w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  520. w1.Part1 = p2
  521. w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  522. w2 = Instance.new("Weld", p2)
  523. w2.Name = "Part_Weld"
  524. w2.Part0 = p2
  525. w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  526. w2.Part1 = p3
  527. w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  528. w3 = Instance.new("Weld", p3)
  529. w3.Name = "Part_Weld"
  530. w3.Part0 = p3
  531. w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  532. w3.Part1 = p4
  533. w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  534. w4 = Instance.new("Weld", p4)
  535. w4.Name = "Part_Weld"
  536. w4.Part0 = p4
  537. w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  538. w4.Part1 = p5
  539. w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  540. w5 = Instance.new("Weld", p5)
  541. w5.Name = "Part_Weld"
  542. w5.Part0 = p5
  543. w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  544. w5.Part1 = p6
  545. w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  546. w6 = Instance.new("Weld", p6)
  547. w6.Name = "Part_Weld"
  548. w6.Part0 = p6
  549. w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  550. w6.Part1 = p7
  551. w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  552. w7 = Instance.new("Weld", p7)
  553. w7.Name = "Part_Weld"
  554. w7.Part0 = p7
  555. w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  556. w7.Part1 = p8
  557. w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  558. w8 = Instance.new("Weld", p8)
  559. w8.Name = "Part_Weld"
  560. w8.Part0 = p8
  561. w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  562. w8.Part1 = p9
  563. w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  564. w9 = Instance.new("Weld", p9)
  565. w9.Name = "Part_Weld"
  566. w9.Part0 = p9
  567. w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  568. w9.Part1 = p10
  569. w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  570. w10 = Instance.new("Weld", p10)
  571. w10.Name = "Part_Weld"
  572. w10.Part0 = p10
  573. w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  574. w10.Part1 = p11
  575. w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  576. w11 = Instance.new("Weld", p11)
  577. w11.Name = "Part_Weld"
  578. w11.Part0 = p11
  579. w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  580. w11.Part1 = p12
  581. w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  582. w12 = Instance.new("Weld", p12)
  583. w12.Name = "Part_Weld"
  584. w12.Part0 = p12
  585. w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  586. w12.Part1 = p13
  587. w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  588. w13 = Instance.new("Weld", p13)
  589. w13.Name = "Part_Weld"
  590. w13.Part0 = p13
  591. w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  592. w13.Part1 = p14
  593. w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  594. w14 = Instance.new("Weld", p14)
  595. w14.Name = "Part_Weld"
  596. w14.Part0 = p14
  597. w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  598. w14.Part1 = p15
  599. w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  600. w15 = Instance.new("Weld", p15)
  601. w15.Name = "Part_Weld"
  602. w15.Part0 = p15
  603. w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  604. w15.Part1 = p16
  605. w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  606. w16 = Instance.new("Weld", p16)
  607. w16.Name = "Part_Weld"
  608. w16.Part0 = p16
  609. w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  610. w16.Part1 = p17
  611. w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  612. w17 = Instance.new("Weld", p17)
  613. w17.Name = "Wedge_Weld"
  614. w17.Part0 = p17
  615. w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  616. w17.Part1 = p18
  617. w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  618. w18 = Instance.new("Weld", p18)
  619. w18.Name = "Wedge_Weld"
  620. w18.Part0 = p18
  621. w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  622. w18.Part1 = p19
  623. w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  624. w19 = Instance.new("Weld", p19)
  625. w19.Name = "Part_Weld"
  626. w19.Part0 = p19
  627. w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  628. w19.Part1 = p20
  629. w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  630. w20 = Instance.new("Weld", p20)
  631. w20.Name = "Part_Weld"
  632. w20.Part0 = p20
  633. w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  634. w20.Part1 = p21
  635. w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  636. m.Parent = char
  637. m:MakeJoints()
  638. ----------------------------------------------------
  639. local cor = Instance.new("Part", char.Titanius)
  640. cor.Name = "Thingy"
  641. cor.Locked = true
  642. cor.BottomSurface = 0
  643. cor.CanCollide = false
  644. cor.Size = Vector3.new(1, 13, 1)
  645. cor.Transparency = 1
  646. cor.TopSurface = 0
  647. corw = Instance.new("Weld", cor)
  648. corw.Part0 = rarm
  649. corw.Part1 = cor
  650. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  651. corw.C1 = CFrame.new(0, 0, 0)
  652. weld1 = Instance.new("Weld", char.Titanius)
  653. weld1.Part0 = cor
  654. weld1.Part1 = p6
  655. weld1.C0 = CFrame.new(0, 0, 0)
  656. ----------------------------------------------------
  657. hitb = Instance.new("Part", char.Titanius)
  658. hitb.Name = "Thingy2"
  659. hitb.Locked = true
  660. hitb.BottomSurface = 0
  661. hitb.CanCollide = false
  662. hitb.Size = Vector3.new(0, 8, 6)
  663. hitb.Transparency = 1
  664. hitb.TopSurface = 0
  665. weld2 = Instance.new("Weld", char.Titanius)
  666. weld2.Part0 = hitb
  667. weld2.Part1 = p12
  668. weld2.C0 = CFrame.new(0, .6, 1)
  669. ----------------------------------------------------
  670. local m = Instance.new("Model")
  671. m.Name = "Claw"
  672. p1 = Instance.new("Part", m)
  673. p1.Material = "Neon"
  674. p1.BrickColor = BrickColor.new("Black")
  675. p1.FormFactor = Enum.FormFactor.Custom
  676. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  677. 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)
  678. p1.CanCollide = false
  679. p1.Locked = true
  680. p1.BottomSurface = Enum.SurfaceType.Smooth
  681. p1.TopSurface = Enum.SurfaceType.Smooth
  682. b1 = Instance.new("BlockMesh", p1)
  683. b1.Name = "Mesh"
  684. p2 = Instance.new("WedgePart", m)
  685. p2.Material = "Neon"
  686. p2.BrickColor = BrickColor.new("Black")
  687. p2.Name = "Wedge"
  688. p2.FormFactor = Enum.FormFactor.Custom
  689. p2.Size = Vector3.new(3, 1, 0.5)
  690. 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)
  691. p2.CanCollide = false
  692. p2.Locked = true
  693. p2.BottomSurface = Enum.SurfaceType.Smooth
  694. p2.TopSurface = Enum.SurfaceType.Smooth
  695. p3 = Instance.new("Part", m)
  696. p3.Material = "Neon"
  697. p3.BrickColor = BrickColor.new("Black")
  698. p3.FormFactor = Enum.FormFactor.Custom
  699. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  700. 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)
  701. p3.CanCollide = false
  702. p3.Locked = true
  703. p3.BottomSurface = Enum.SurfaceType.Smooth
  704. p3.TopSurface = Enum.SurfaceType.Smooth
  705. b2 = Instance.new("BlockMesh", p3)
  706. b2.Name = "Mesh"
  707. p4 = Instance.new("WedgePart", m)
  708. p4.Material = "Neon"
  709. p4.BrickColor = BrickColor.new("Black")
  710. p4.Name = "Wedge"
  711. p4.FormFactor = Enum.FormFactor.Custom
  712. p4.Size = Vector3.new(3, 1, 0.5)
  713. 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)
  714. p4.CanCollide = false
  715. p4.Locked = true
  716. p4.BottomSurface = Enum.SurfaceType.Smooth
  717. p4.TopSurface = Enum.SurfaceType.Smooth
  718. p5 = Instance.new("Part", m)
  719. p5.Material = "Neon"
  720. p5.BrickColor = BrickColor.new("Black")
  721. p5.FormFactor = Enum.FormFactor.Custom
  722. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  723. 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)
  724. p5.CanCollide = false
  725. p5.Locked = true
  726. p5.BottomSurface = Enum.SurfaceType.Smooth
  727. p5.TopSurface = Enum.SurfaceType.Smooth
  728. b3 = Instance.new("BlockMesh", p5)
  729. b3.Name = "Mesh"
  730. p6 = Instance.new("Part", m)
  731. p6.Material = "Neon"
  732. p6.BrickColor = BrickColor.new("Black")
  733. p6.FormFactor = Enum.FormFactor.Custom
  734. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  735. 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)
  736. p6.CanCollide = false
  737. p6.Locked = true
  738. p6.BottomSurface = Enum.SurfaceType.Smooth
  739. p6.TopSurface = Enum.SurfaceType.Smooth
  740. b4 = Instance.new("BlockMesh", p6)
  741. b4.Name = "Mesh"
  742. p7 = Instance.new("Part", m)
  743. p7.Material = "Neon"
  744. p7.BrickColor = BrickColor.new("Black")
  745. p7.FormFactor = Enum.FormFactor.Custom
  746. p7.Size = Vector3.new(3, 1, 1.20000005)
  747. 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)
  748. p7.CanCollide = false
  749. p7.Locked = true
  750. p7.BottomSurface = Enum.SurfaceType.Smooth
  751. p7.TopSurface = Enum.SurfaceType.Smooth
  752. b5 = Instance.new("BlockMesh", p7)
  753. b5.Name = "Mesh"
  754. p8 = Instance.new("Part", m)
  755. p8.Material = "Neon"
  756. p8.BrickColor = BrickColor.new("Black")
  757. p8.Material = "Neon"
  758. p8.FormFactor = Enum.FormFactor.Symmetric
  759. p8.Size = Vector3.new(1, 1, 1)
  760. 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)
  761. p8.CanCollide = false
  762. p8.Locked = true
  763. b6 = Instance.new("SpecialMesh", p8)
  764. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  765. b6.TextureId = ""
  766. b6.MeshType = Enum.MeshType.FileMesh
  767. b6.Name = "Mesh"
  768. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  769. p9 = Instance.new("Part", m)
  770. p9.Material = "Neon"
  771. p9.BrickColor = BrickColor.new("Black")
  772. p9.FormFactor = Enum.FormFactor.Custom
  773. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  774. 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)
  775. p9.CanCollide = false
  776. p9.Locked = true
  777. p9.BottomSurface = Enum.SurfaceType.Smooth
  778. p9.TopSurface = Enum.SurfaceType.Smooth
  779. b7 = Instance.new("BlockMesh", p9)
  780. b7.Name = "Mesh"
  781. p10 = Instance.new("Part", m)
  782. p10.Material = "Neon"
  783. p10.BrickColor = BrickColor.new("Royal purple")
  784. p10.Material = "Neon"
  785. p10.FormFactor = Enum.FormFactor.Symmetric
  786. p10.Size = Vector3.new(1, 1, 1)
  787. 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)
  788. p10.CanCollide = false
  789. p10.Locked = true
  790. b8 = Instance.new("SpecialMesh", p10)
  791. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  792. b8.TextureId = ""
  793. b8.MeshType = Enum.MeshType.FileMesh
  794. b8.Name = "Mesh"
  795. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  796. p11 = Instance.new("Part", m)
  797. p11.Material = "Neon"
  798. p11.BrickColor = BrickColor.new("Black")
  799. p11.FormFactor = Enum.FormFactor.Custom
  800. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  801. 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)
  802. p11.CanCollide = false
  803. p11.Locked = true
  804. p11.BottomSurface = Enum.SurfaceType.Smooth
  805. p11.TopSurface = Enum.SurfaceType.Smooth
  806. b9 = Instance.new("BlockMesh", p11)
  807. b9.Name = "Mesh"
  808. p12 = Instance.new("Part", m)
  809. p12.BrickColor = BrickColor.new("Black")
  810. p12.FormFactor = Enum.FormFactor.Custom
  811. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  812. 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)
  813. p12.CanCollide = false
  814. p12.Material = "Neon"
  815. p12.Locked = true
  816. p12.BottomSurface = Enum.SurfaceType.Smooth
  817. p12.TopSurface = Enum.SurfaceType.Smooth
  818. b10 = Instance.new("BlockMesh", p12)
  819. b10.Name = "Mesh"
  820. p13 = Instance.new("Part", m)
  821. p13.Material = "Neon"
  822. p13.BrickColor = BrickColor.new("Black")
  823. p13.FormFactor = Enum.FormFactor.Custom
  824. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  825. 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)
  826. p13.CanCollide = false
  827. p13.Locked = true
  828. p13.BottomSurface = Enum.SurfaceType.Smooth
  829. p13.TopSurface = Enum.SurfaceType.Smooth
  830. b11 = Instance.new("BlockMesh", p13)
  831. b11.Name = "Mesh"
  832. p14 = Instance.new("Part", m)
  833. p14.Material = "Neon"
  834. p14.BrickColor = BrickColor.new("Royal purple")
  835. p14.Material = "Neon"
  836. p14.FormFactor = Enum.FormFactor.Symmetric
  837. p14.Size = Vector3.new(1, 1, 1)
  838. 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)
  839. p14.CanCollide = false
  840. p14.Locked = true
  841. b12 = Instance.new("SpecialMesh", p14)
  842. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  843. b12.TextureId = ""
  844. b12.MeshType = Enum.MeshType.FileMesh
  845. b12.Name = "Mesh"
  846. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  847. p15 = Instance.new("Part", m)
  848. p15.Material = "Neon"
  849. p15.BrickColor = BrickColor.new("Medium stone grey")
  850. p15.Transparency = 1
  851. p15.Name = "ArmPart"
  852. p15.FormFactor = Enum.FormFactor.Custom
  853. p15.Size = Vector3.new(2, 1, 1)
  854. 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)
  855. p15.CanCollide = false
  856. p15.Locked = true
  857. p15.BottomSurface = Enum.SurfaceType.Smooth
  858. p15.TopSurface = Enum.SurfaceType.Smooth
  859. b13 = Instance.new("BlockMesh", p15)
  860. b13.Name = "Mesh"
  861. p16 = Instance.new("Part", m)
  862. p16.Material = "Neon"
  863. p16.BrickColor = BrickColor.new("Black")
  864. p16.FormFactor = Enum.FormFactor.Custom
  865. p16.Size = Vector3.new(3, 1, 2.4000001)
  866. 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)
  867. p16.CanCollide = false
  868. p16.Locked = true
  869. p16.BottomSurface = Enum.SurfaceType.Smooth
  870. p16.TopSurface = Enum.SurfaceType.Smooth
  871. b14 = Instance.new("BlockMesh", p16)
  872. b14.Name = "Mesh"
  873. p17 = Instance.new("Part", m)
  874. p17.Material = "Neon"
  875. p17.BrickColor = BrickColor.new("Black")
  876. p17.FormFactor = Enum.FormFactor.Custom
  877. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  878. 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)
  879. p17.CanCollide = false
  880. p17.Locked = true
  881. p17.BottomSurface = Enum.SurfaceType.Smooth
  882. p17.TopSurface = Enum.SurfaceType.Smooth
  883. b15 = Instance.new("BlockMesh", p17)
  884. b15.Name = "Mesh"
  885. p18 = Instance.new("Part", m)
  886. p18.Material = "Neon"
  887. p18.BrickColor = BrickColor.new("Royal purple")
  888. p18.Material = "Neon"
  889. p18.FormFactor = Enum.FormFactor.Symmetric
  890. p18.Size = Vector3.new(1, 1, 1)
  891. 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)
  892. p18.CanCollide = false
  893. p18.Locked = true
  894. b16 = Instance.new("SpecialMesh", p18)
  895. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  896. b16.TextureId = ""
  897. b16.MeshType = Enum.MeshType.FileMesh
  898. b16.Name = "Mesh"
  899. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  900. p19 = Instance.new("Part", m)
  901. p19.Material = "Neon"
  902. p19.BrickColor = BrickColor.new("Royal purple")
  903. p19.Material = "Neon"
  904. p19.FormFactor = Enum.FormFactor.Symmetric
  905. p19.Size = Vector3.new(1, 1, 1)
  906. 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)
  907. p19.CanCollide = false
  908. p19.Locked = true
  909. b17 = Instance.new("SpecialMesh", p19)
  910. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  911. b17.TextureId = ""
  912. b17.MeshType = Enum.MeshType.FileMesh
  913. b17.Name = "Mesh"
  914. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  915. p20 = Instance.new("Part", m)
  916. p20.Material = "Neon"
  917. p20.BrickColor = BrickColor.new("Black")
  918. p20.FormFactor = Enum.FormFactor.Custom
  919. p20.Size = Vector3.new(3, 1, 2.4000001)
  920. 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)
  921. p20.CanCollide = false
  922. p20.Locked = true
  923. p20.BottomSurface = Enum.SurfaceType.Smooth
  924. p20.TopSurface = Enum.SurfaceType.Smooth
  925. b18 = Instance.new("BlockMesh", p20)
  926. b18.Name = "Mesh"
  927. p21 = Instance.new("Part", m)
  928. p21.Material = "Neon"
  929. p21.BrickColor = BrickColor.new("Black")
  930. p21.FormFactor = Enum.FormFactor.Custom
  931. p21.Size = Vector3.new(3, 1, 1.19999993)
  932. 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)
  933. p21.CanCollide = false
  934. p21.Locked = true
  935. p21.BottomSurface = Enum.SurfaceType.Smooth
  936. p21.TopSurface = Enum.SurfaceType.Smooth
  937. b19 = Instance.new("BlockMesh", p21)
  938. b19.Name = "Mesh"
  939. p22 = Instance.new("WedgePart", m)
  940. p22.Material = "Neon"
  941. p22.BrickColor = BrickColor.new("Black")
  942. p22.Name = "Wedge"
  943. p22.FormFactor = Enum.FormFactor.Custom
  944. p22.Size = Vector3.new(3, 1, 0.5)
  945. 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)
  946. p22.CanCollide = false
  947. p22.Locked = true
  948. p22.BottomSurface = Enum.SurfaceType.Smooth
  949. p22.TopSurface = Enum.SurfaceType.Smooth
  950. p23 = Instance.new("Part", m)
  951. p23.Material = "Neon"
  952. p23.BrickColor = BrickColor.new("Black")
  953. p23.FormFactor = Enum.FormFactor.Custom
  954. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  955. 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)
  956. p23.CanCollide = false
  957. p23.Locked = true
  958. p23.BottomSurface = Enum.SurfaceType.Smooth
  959. p23.TopSurface = Enum.SurfaceType.Smooth
  960. b20 = Instance.new("BlockMesh", p23)
  961. b20.Name = "Mesh"
  962. p24 = Instance.new("WedgePart", m)
  963. p24.Material = "Neon"
  964. p24.BrickColor = BrickColor.new("Black")
  965. p24.Name = "Wedge"
  966. p24.FormFactor = Enum.FormFactor.Custom
  967. p24.Size = Vector3.new(3, 1, 0.5)
  968. 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)
  969. p24.CanCollide = false
  970. p24.Locked = true
  971. p24.BottomSurface = Enum.SurfaceType.Smooth
  972. p24.TopSurface = Enum.SurfaceType.Smooth
  973. p25 = Instance.new("Part", m)
  974. p25.Material = "Neon"
  975. p25.BrickColor = BrickColor.new("Royal purple")
  976. p25.Material = "Neon"
  977. particlep25 = Instance.new("ParticleEmitter")
  978. particlep25.Parent = p25
  979. particlep25.Enabled = true
  980. particlep25.LockedToPart = true
  981. particlep25.Texture = "rbxassetid://187983867"
  982. particlep25.EmissionDirection = "Right"
  983. particlep25.Size = NumberSequence.new(0.2)
  984. particlep25.Lifetime = NumberRange.new(15)
  985. particlep25.Color = ColorSequence.new(Color3.new(255,255,0), Color3.new(255,255,0))
  986. particlep25.Rate = 150
  987. p25.FormFactor = Enum.FormFactor.Symmetric
  988. p25.Size = Vector3.new(1, 1, 1)
  989. 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)
  990. p25.CanCollide = false
  991. p25.Locked = true
  992. p25.BottomSurface = Enum.SurfaceType.Smooth
  993. p25.TopSurface = Enum.SurfaceType.Smooth
  994. b21 = Instance.new("SpecialMesh", p25)
  995. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  996. b21.TextureId = ""
  997. b21.MeshType = Enum.MeshType.FileMesh
  998. b21.Name = "Mesh"
  999. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  1000. p26 = Instance.new("Part", m)
  1001. p26.Material = "Neon"
  1002. p26.BrickColor = BrickColor.new("Black")
  1003. p26.FormFactor = Enum.FormFactor.Symmetric
  1004. p26.Size = Vector3.new(1, 1, 1)
  1005. 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)
  1006. p26.CanCollide = false
  1007. p26.Locked = true
  1008. p26.BottomSurface = Enum.SurfaceType.Smooth
  1009. p26.TopSurface = Enum.SurfaceType.Smooth
  1010. b22 = Instance.new("SpecialMesh", p26)
  1011. b22.MeshType = Enum.MeshType.Brick
  1012. b22.Name = "Mesh"
  1013. w1 = Instance.new("Weld", p1)
  1014. w1.Name = "Wedge_Weld"
  1015. w1.Part0 = p1
  1016. 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)
  1017. w1.Part1 = p2
  1018. 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)
  1019. w2 = Instance.new("Weld", p2)
  1020. w2.Name = "Part_Weld"
  1021. w2.Part0 = p2
  1022. 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)
  1023. w2.Part1 = p3
  1024. 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)
  1025. w3 = Instance.new("Weld", p3)
  1026. w3.Name = "Wedge_Weld"
  1027. w3.Part0 = p3
  1028. 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)
  1029. w3.Part1 = p4
  1030. 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)
  1031. w4 = Instance.new("Weld", p4)
  1032. w4.Name = "Part_Weld"
  1033. w4.Part0 = p4
  1034. 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)
  1035. w4.Part1 = p5
  1036. 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)
  1037. w5 = Instance.new("Weld", p5)
  1038. w5.Name = "Part_Weld"
  1039. w5.Part0 = p5
  1040. 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)
  1041. w5.Part1 = p6
  1042. 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)
  1043. w6 = Instance.new("Weld", p6)
  1044. w6.Name = "Part_Weld"
  1045. w6.Part0 = p6
  1046. 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)
  1047. w6.Part1 = p7
  1048. 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)
  1049. w7 = Instance.new("Weld", p7)
  1050. w7.Name = "Part_Weld"
  1051. w7.Part0 = p7
  1052. 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)
  1053. w7.Part1 = p8
  1054. 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)
  1055. w8 = Instance.new("Weld", p8)
  1056. w8.Name = "Part_Weld"
  1057. w8.Part0 = p8
  1058. 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)
  1059. w8.Part1 = p9
  1060. 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)
  1061. w9 = Instance.new("Weld", p9)
  1062. w9.Name = "Part_Weld"
  1063. w9.Part0 = p9
  1064. 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)
  1065. w9.Part1 = p10
  1066. 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)
  1067. w10 = Instance.new("Weld", p10)
  1068. w10.Name = "Part_Weld"
  1069. w10.Part0 = p10
  1070. 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)
  1071. w10.Part1 = p11
  1072. 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)
  1073. w11 = Instance.new("Weld", p11)
  1074. w11.Name = "Part_Weld"
  1075. w11.Part0 = p11
  1076. 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)
  1077. w11.Part1 = p12
  1078. 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)
  1079. w12 = Instance.new("Weld", p12)
  1080. w12.Name = "Part_Weld"
  1081. w12.Part0 = p12
  1082. 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)
  1083. w12.Part1 = p13
  1084. 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)
  1085. w13 = Instance.new("Weld", p13)
  1086. w13.Name = "Part_Weld"
  1087. w13.Part0 = p13
  1088. 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)
  1089. w13.Part1 = p14
  1090. 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)
  1091. w14 = Instance.new("Weld", p14)
  1092. w14.Name = "ArmPart_Weld"
  1093. w14.Part0 = p14
  1094. 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)
  1095. w14.Part1 = p15
  1096. 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)
  1097. w15 = Instance.new("Weld", p15)
  1098. w15.Name = "Part_Weld"
  1099. w15.Part0 = p15
  1100. 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)
  1101. w15.Part1 = p16
  1102. 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)
  1103. w16 = Instance.new("Weld", p16)
  1104. w16.Name = "Part_Weld"
  1105. w16.Part0 = p16
  1106. 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)
  1107. w16.Part1 = p17
  1108. 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)
  1109. w17 = Instance.new("Weld", p17)
  1110. w17.Name = "Part_Weld"
  1111. w17.Part0 = p17
  1112. 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)
  1113. w17.Part1 = p18
  1114. 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)
  1115. w18 = Instance.new("Weld", p18)
  1116. w18.Name = "Part_Weld"
  1117. w18.Part0 = p18
  1118. 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)
  1119. w18.Part1 = p19
  1120. 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)
  1121. w19 = Instance.new("Weld", p19)
  1122. w19.Name = "Part_Weld"
  1123. w19.Part0 = p19
  1124. 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)
  1125. w19.Part1 = p20
  1126. 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)
  1127. w20 = Instance.new("Weld", p20)
  1128. w20.Name = "Part_Weld"
  1129. w20.Part0 = p20
  1130. 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)
  1131. w20.Part1 = p21
  1132. 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)
  1133. w21 = Instance.new("Weld", p21)
  1134. w21.Name = "Wedge_Weld"
  1135. w21.Part0 = p21
  1136. 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)
  1137. w21.Part1 = p22
  1138. 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)
  1139. w22 = Instance.new("Weld", p22)
  1140. w22.Name = "Part_Weld"
  1141. w22.Part0 = p22
  1142. 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)
  1143. w22.Part1 = p23
  1144. 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)
  1145. w23 = Instance.new("Weld", p23)
  1146. w23.Name = "Wedge_Weld"
  1147. w23.Part0 = p23
  1148. 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)
  1149. w23.Part1 = p24
  1150. 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)
  1151. w24 = Instance.new("Weld", p24)
  1152. w24.Name = "Part_Weld"
  1153. w24.Part0 = p24
  1154. 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)
  1155. w24.Part1 = p25
  1156. 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)
  1157. w25 = Instance.new("Weld", p25)
  1158. w25.Name = "Part_Weld"
  1159. w25.Part0 = p25
  1160. 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)
  1161. w25.Part1 = p26
  1162. 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)
  1163. m.Parent = char
  1164. m:MakeJoints()
  1165. ----------------------------------------------------
  1166. local cor2 = Instance.new("Part", char.Claw)
  1167. cor2.Name = "Thingy"
  1168. cor2.Locked = true
  1169. cor2.BottomSurface = 0
  1170. cor2.CanCollide = false
  1171. cor2.Size = Vector3.new(2, 1, 1)
  1172. cor2.Transparency = 1
  1173. cor2.TopSurface = 0
  1174. corw2 = Instance.new("Weld", cor2)
  1175. corw2.Part0 = larm
  1176. corw2.Part1 = cor2
  1177. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1178. corw2.C1 = CFrame.new(0, 0, 0)
  1179. weld2 = Instance.new("Weld", char.Claw)
  1180. weld2.Part0 = cor2
  1181. weld2.Part1 = char.Claw.ArmPart
  1182. weld2.C0 = CFrame.new(0, 0, 0)
  1183. ----------------------------------------------------
  1184. function weld5(part0, part1, c0, c1)
  1185. weeld=Instance.new("Weld", part0)
  1186. weeld.Part0=part0
  1187. weeld.Part1=part1
  1188. weeld.C0=c0
  1189. weeld.C1=c1
  1190. return weeld
  1191. end
  1192. ----------------------------------------------------
  1193. function newRay(start,face,range,wat)
  1194. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  1195. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  1196. return rey,hit,pos
  1197. end
  1198. ----------------------------------------------------
  1199. mod5 = Instance.new("Model",char)
  1200.  
  1201. function FindNearestTorso(Position,Distance,SinglePlayer)
  1202. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1203. local List = {}
  1204. for i,v in pairs(workspace:GetChildren())do
  1205. if v:IsA("Model")then
  1206. if v:findFirstChild("Torso")then
  1207. if v ~= char then
  1208. if(v.Torso.Position -Position).magnitude <= Distance then
  1209. table.insert(List,v)
  1210. end
  1211. end
  1212. end
  1213. end
  1214. end
  1215. return List
  1216. end
  1217.  
  1218. function Landing()
  1219. part=Instance.new('Part',mod5)
  1220. part.Material = "Neon"
  1221. part.Anchored=true
  1222. part.CanCollide=false
  1223. part.FormFactor='Custom'
  1224. part.Size=Vector3.new(.2,.2,.2)
  1225. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  1226. part.Transparency=.7
  1227. part.BrickColor=BrickColor.new('Black')
  1228. mesh=Instance.new('SpecialMesh',part)
  1229. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1230. mesh.Scale=Vector3.new(10,5,10)
  1231.  
  1232. for i,v in pairs(FindNearestTorso(torso.CFrame.p,40))do
  1233. if v:FindFirstChild('Humanoid') then
  1234. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  1235. v.Humanoid.PlatformStand = true
  1236. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1237. end
  1238. end
  1239.  
  1240. coroutine.resume(coroutine.create(function()
  1241. for i=0,3.8,0.05 do
  1242. wait()
  1243. part.CFrame=part.CFrame
  1244. part.Transparency=i
  1245. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  1246. end
  1247. part.Parent = nil
  1248. end))
  1249. end
  1250. ----------------------------------------------------
  1251. mod4 = Instance.new("Model",char)
  1252.  
  1253. ptez = {0.7, 0.8, 0.9, 1}
  1254.  
  1255. function FindNearestTorso(Position,Distance,SinglePlayer)
  1256. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1257. local List = {}
  1258. for i,v in pairs(workspace:GetChildren())do
  1259. if v:IsA("Model")then
  1260. if v:findFirstChild("Torso")then
  1261. if v ~= char then
  1262. if(v.Torso.Position -Position).magnitude <= Distance then
  1263. table.insert(List,v)
  1264. end
  1265. end
  1266. end
  1267. end
  1268. end
  1269. return List
  1270. end
  1271.  
  1272. function GroundPound()
  1273. part=Instance.new('Part',mod4)
  1274. part.Material = "Neon"
  1275. part.Anchored=true
  1276. part.CanCollide=false
  1277. part.FormFactor='Custom'
  1278. part.Size=Vector3.new(.2,.2,.2)
  1279. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  1280. part.Transparency=.7
  1281. part.BrickColor=BrickColor.new('Black')
  1282. mesh=Instance.new('SpecialMesh',part)
  1283. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1284. mesh.Scale=Vector3.new(3,3,3)
  1285. part2=Instance.new('Part',mod4)
  1286. part2.Material = "Neon"
  1287. part2.Anchored=true
  1288. part2.CanCollide=false
  1289. part2.FormFactor='Custom'
  1290. part2.Size=Vector3.new(.2,.2,.2)
  1291. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  1292. part2.Transparency=.7
  1293. part2.BrickColor=BrickColor.new('Black')
  1294. mesh2=Instance.new('SpecialMesh',part2)
  1295. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  1296. mesh2.Scale=Vector3.new(3,1.5,3)
  1297. x = Instance.new("Sound",char)
  1298. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  1299. x.Pitch = ptez[math.random(1,#ptez)]
  1300. x.Volume = 1
  1301. wait(.1)
  1302. x:Play()
  1303. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  1304. if v:FindFirstChild('Humanoid') then
  1305. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  1306. end
  1307. end
  1308. coroutine.resume(coroutine.create(function()
  1309. for i=0,0.62,0.13 do
  1310. wait()
  1311. part.CFrame=part.CFrame
  1312. part.Transparency=i
  1313. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  1314. part2.CFrame=part2.CFrame
  1315. part2.Transparency=i
  1316. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  1317. end
  1318. part.Parent=nil
  1319. part2.Parent=nil
  1320. x:Destroy()
  1321. end))
  1322. end
  1323. ----------------------------------------------------
  1324. mod=Instance.new('Model',char)
  1325.  
  1326. function charge()
  1327. hed.Velocity=hed.CFrame.lookVector*200
  1328. part=Instance.new('Part',mod)
  1329. part.Anchored=true
  1330. part.CanCollide=false
  1331. part.FormFactor='Custom'
  1332. part.Size=Vector3.new(.2,.2,.2)
  1333. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  1334. part.Transparency=.7
  1335. part.BrickColor=BrickColor.new('Black')
  1336. mesh=Instance.new('SpecialMesh',part)
  1337. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1338. mesh.Scale=Vector3.new(10,5,10)
  1339. part2=part:clone()
  1340. part2.Parent=mod
  1341. part2.BrickColor=BrickColor.new('Bright red')
  1342. mesh2=mesh:clone()
  1343. mesh2.Parent=part2
  1344. mesh2.Scale=Vector3.new(20,10,20)
  1345. part3=part2:clone()
  1346. part3.Parent = mod
  1347. part3.BrickColor=BrickColor.new('Black')
  1348. mesh3=mesh2:clone()
  1349. mesh2.Parent=part3
  1350. mesh3.Scale=Vector3.new(30,15,30)
  1351. coroutine.resume(coroutine.create(function()
  1352. for i=0,1,0.1 do
  1353. wait()
  1354. part.CFrame=part.CFrame
  1355. part.Transparency=i
  1356. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  1357. part2.CFrame=part2.CFrame
  1358. part2.Transparency=i
  1359. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1360. part3.CFrame=part3.CFrame
  1361. part3.Transparency=i
  1362. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  1363. end
  1364. part.Parent=nil
  1365. part2.Parent=nil
  1366. part3.Parent = nil
  1367. end))
  1368. end
  1369. ----------------------------------------------------
  1370. function FindNearestTorso(Position,Distance,SinglePlayer)
  1371. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1372. local List = {}
  1373. for i,v in pairs(workspace:GetChildren())do
  1374. if v:IsA("Model")then
  1375. if v:findFirstChild("Torso")then
  1376. if v ~= char then
  1377. if(v.Torso.Position -Position).magnitude <= Distance then
  1378. table.insert(List,v)
  1379. end
  1380. end
  1381. end
  1382. end
  1383. end
  1384. return List
  1385. end
  1386.  
  1387. mod3 = Instance.new("Model",rleg)
  1388.  
  1389. function Stomp()
  1390. part=Instance.new('Part',mod3)
  1391. part.Anchored=true
  1392. part.CanCollide=false
  1393. part.FormFactor='Custom'
  1394. part.Size=Vector3.new(.2,.2,.2)
  1395. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  1396. part.Transparency=.7
  1397. part.BrickColor=BrickColor.new('Black')
  1398. mesh=Instance.new('SpecialMesh',part)
  1399. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1400. mesh.Scale=Vector3.new(25,25,25)
  1401. part2=part:clone()
  1402. part2.Parent=mod3
  1403. part2.BrickColor=BrickColor.new('Black')
  1404. mesh2=mesh:clone()
  1405. mesh2.Parent=part2
  1406. mesh2.Scale=Vector3.new(15,15,15)
  1407. part3=part:clone()
  1408. part3.Parent=mod3
  1409. part3.TopSurface=0
  1410. part3.BottomSurface=0
  1411. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  1412. mesh3=Instance.new('SpecialMesh',part3)
  1413. mesh3.MeshType = 3
  1414. mesh3.Scale=Vector3.new(12,12,12)
  1415. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  1416. if v:FindFirstChild('Humanoid') then
  1417. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  1418. v.Humanoid.PlatformStand = true
  1419. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1420. end
  1421. end
  1422. coroutine.resume(coroutine.create(function()
  1423. for i=0,3.8,0.05 do
  1424. wait()
  1425. part.CFrame=part.CFrame
  1426. part.Transparency=i
  1427. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  1428. part2.CFrame=part2.CFrame
  1429. part2.Transparency=i
  1430. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1431. part3.CFrame=part3.CFrame
  1432. part3.Transparency=i
  1433. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  1434. end
  1435. end))
  1436. end
  1437. ----------------------------------------------------
  1438.  
  1439. local acos = math.acos
  1440. local sqrt = math.sqrt
  1441. local Vec3 = Vector3.new
  1442. local fromAxisAngle = CFrame.fromAxisAngle
  1443.  
  1444. local function toAxisAngle(CFr)
  1445. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1446. local Angle = math.acos((R00+R11+R22-1)/2)
  1447. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1448. A = A == 0 and 0.00001 or A
  1449. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1450. B = B == 0 and 0.00001 or B
  1451. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1452. C = C == 0 and 0.00001 or C
  1453. local x = (R21-R12)/sqrt(A)
  1454. local y = (R02-R20)/sqrt(B)
  1455. local z = (R10-R01)/sqrt(C)
  1456. return Vec3(x,y,z),Angle
  1457. end
  1458.  
  1459. function ApplyTrig(Num,Func)
  1460. local Min,Max = Func(0),Func(1)
  1461. local i = Func(Num)
  1462. return (i-Min)/(Max-Min)
  1463. --[[if Func == "sin" then
  1464. return (math.sin((1-Num)*math.pi)+1)/2
  1465. elseif Func == "cos" then
  1466. return (math.cos((1-Num)*math.pi)+1)/2
  1467. end]]
  1468. end
  1469.  
  1470. function LerpCFrame(CFrame1,CFrame2,Num)
  1471. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1472. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1473. end
  1474.  
  1475. function Crater(Torso,Radius)
  1476. Spawn(function()
  1477. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1478. local Ignore = {}
  1479. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1480. if v.Character ~= nil then
  1481. Ignore[#Ignore+1] = v.Character
  1482. end
  1483. end
  1484. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1485. if Hit == nil then return end
  1486. local Parts = {}
  1487. for i = 1,360,10 do
  1488. local P = Instance.new("Part",Torso.Parent)
  1489. P.Anchored = true
  1490. P.FormFactor = "Custom"
  1491. P.BrickColor = Hit.BrickColor
  1492. P.Material = Hit.Material
  1493. P.TopSurface = "Smooth"
  1494. P.BottomSurface = "Smooth"
  1495. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  1496. 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)))
  1497. 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}
  1498. if math.random(0,5) == 0 then -- rubble
  1499. local P = Instance.new("Part",Torso.Parent)
  1500. P.Anchored = true
  1501. P.FormFactor = "Custom"
  1502. P.BrickColor = Hit.BrickColor
  1503. P.Material = Hit.Material
  1504. P.TopSurface = "Smooth"
  1505. P.BottomSurface = "Smooth"
  1506. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  1507. 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)))
  1508. 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}
  1509. end
  1510. end
  1511. for i = 0,1,0.05 do
  1512. for i2,v in pairs(Parts) do
  1513. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1514. end
  1515. wait(0.02)
  1516. end
  1517. for i,v in pairs(Parts) do
  1518. if v[1].Size.X > 2.1 then
  1519. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1520. end
  1521. v[1].Anchored = false
  1522. end
  1523. for i = 0,1,0.05 do
  1524. for i2,v in pairs(Parts) do
  1525. v[1].Transparency = i
  1526. if i == 1 then
  1527. v[1]:Destroy()
  1528. elseif i >= 0.25 then
  1529. v[1].CanCollide = false
  1530. end
  1531. end
  1532. wait(0.02)
  1533. end
  1534. Parts = nil
  1535. end)
  1536. end
  1537.  
  1538. ----------------------------------------------------
  1539. mouse.KeyDown:connect(function(key)
  1540. if key == "r" then
  1541. larm.BrickColor = BrickColor.new("Bright red")
  1542. rarm.BrickColor = BrickColor.new("Bright red")
  1543. if Debounces.CanAttack == true then
  1544. Debounces.CanAttack = false
  1545. Debounces.on = true
  1546. Debounces.NoIdl = true
  1547. to = char.Titanius.Thingy2.Touched:connect(function(ht)
  1548. hit = ht.Parent
  1549. if ht and hit:IsA("Model") then
  1550. if hit:FindFirstChild("Humanoid") then
  1551. if hit.Name ~= p.Name then
  1552. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1553. Debounces.Slashed = true]]--
  1554. hit:FindFirstChild("Humanoid"):TakeDamage(19999999)
  1555. wait(1)
  1556. --Debounces.Slashed = false
  1557. --end
  1558. end
  1559. end
  1560. elseif ht and hit:IsA("Hat") then
  1561. if hit.Parent.Name ~= p.Name then
  1562. if hit.Parent:FindFirstChild("Humanoid") then
  1563. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1564. Debounces.Slashed = true]]--
  1565. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(109999999)
  1566. wait(1)
  1567. --Debounces.Slashed = false
  1568. end
  1569. end
  1570. end
  1571. end)
  1572. q = Instance.new("Sound",hed)
  1573. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1574. q.Pitch = 0.85
  1575. q.Looped = false
  1576. q1 = Instance.new("Sound",hed)
  1577. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1578. q1.Pitch = 0.85
  1579. q1.Looped = false
  1580. q:Play()
  1581. q1:Play()
  1582. for i = 1,20 do
  1583. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1584. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1585. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1586. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1587. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1588. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1589. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.5)
  1590. if Debounces.on == false then break end
  1591. wait()
  1592. end
  1593. n = Instance.new("Sound",hed)
  1594. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1595. n.Pitch = 0.94
  1596. n.Looped = false
  1597. n1 = Instance.new("Sound",hed)
  1598. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1599. n1.Pitch = 0.94
  1600. n1.Looped = false
  1601. n:Play()
  1602. n1:Play()
  1603. b = Instance.new("Sound",hed)
  1604. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1605. b.Pitch = 0.94
  1606. b.Looped = false
  1607. b1 = Instance.new("Sound",hed)
  1608. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1609. b1.Pitch = 0.94
  1610. b1.Looped = false
  1611. b:Play()
  1612. b1:Play()
  1613. for i = 1,26 do
  1614. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.5)
  1615. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.5)
  1616. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.5)
  1617. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.5)
  1618. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.5)
  1619. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.5)
  1620. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.5)
  1621. if Debounces.on == false then break end
  1622. wait()
  1623. end
  1624. wait(.5)
  1625. to:disconnect()
  1626. q:Destroy()
  1627. q1:Destroy()
  1628. n:Destroy()
  1629. n1:Destroy()
  1630. larm.BrickColor = BrickColor.new("Black")
  1631. rarm.BrickColor = BrickColor.new("Black")
  1632. if Debounces.CanAttack == false then
  1633. Debounces.CanAttack = true
  1634. Debounces.on = false
  1635. Debounces.NoIdl = false
  1636. end
  1637. end
  1638. end
  1639. end)
  1640. ----------------------------------------------------
  1641. mouse.KeyDown:connect(function(key)
  1642. if key == "q" then
  1643. larm.BrickColor = BrickColor.new("Bright red")
  1644. rarm.BrickColor = BrickColor.new("Bright red")
  1645. if Debounces.CanAttack == true then
  1646. Debounces.CanAttack = false
  1647. Debounces.on = true
  1648. Debounces.NoIdl = true
  1649. to = char.Titanius.Thingy2.Touched:connect(function(ht)
  1650. hit = ht.Parent
  1651. if ht and hit:IsA("Model") then
  1652. if hit:FindFirstChild("Humanoid") then
  1653. if hit.Name ~= p.Name then
  1654. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1655. Debounces.Slashed = true]]--
  1656. hit:FindFirstChild("Humanoid"):TakeDamage(499999999)
  1657. wait(1)
  1658. --Debounces.Slashed = false
  1659. --end
  1660. end
  1661. end
  1662. elseif ht and hit:IsA("Hat") then
  1663. if hit.Parent.Name ~= p.Name then
  1664. if hit.Parent:FindFirstChild("Humanoid") then
  1665. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1666. Debounces.Slashed = true]]--
  1667. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(499999999)
  1668. wait(1)
  1669. --Debounces.Slashed = false
  1670. end
  1671. end
  1672. end
  1673. end)
  1674. for i = 1, 20 do
  1675. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2)
  1676. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2)
  1677. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  1678. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  1679. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1680. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1681. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1682. if Debounces.on == false then break end
  1683. wait()
  1684. end
  1685. z = Instance.new("Sound",hed)
  1686. z.SoundId = "rbxassetid://160069154"
  1687. z.Looped = false
  1688. z.Pitch = .9
  1689. z1 = Instance.new("Sound",hed)
  1690. z1.SoundId = "rbxassetid://160069154"
  1691. z1.Looped = false
  1692. z1.Pitch = .9
  1693. wait(0.01)
  1694. z:Play()
  1695. z1:Play()
  1696. for i = 1, 12 do
  1697. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2)
  1698. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5)
  1699. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  1700. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5)
  1701. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  1702. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  1703. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1704. if Debounces.on == false then break end
  1705. wait()
  1706. end
  1707. for i = 1, 12 do
  1708. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4)
  1709. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4)
  1710. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  1711. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  1712. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1713. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1714. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1715. if Debounces.on == false then break end
  1716. wait()
  1717. end
  1718. z = Instance.new("Sound",hed)
  1719. z.SoundId = "rbxassetid://168586621"
  1720. z.Looped = false
  1721. z.Pitch = 1
  1722. z1 = Instance.new("Sound",hed)
  1723. z1.SoundId = "rbxassetid://168586621"
  1724. z1.Looped = false
  1725. z1.Pitch = 1
  1726. wait(0.01)
  1727. z:Play()
  1728. z1:Play()
  1729. for i = 1, 12 do
  1730. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5)
  1731. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4)
  1732. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  1733. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  1734. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  1735. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  1736. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1)
  1737. if Debounces.on == false then break end
  1738. wait()
  1739. end
  1740. to:disconnect()
  1741. larm.BrickColor = BrickColor.new("Black")
  1742. rarm.BrickColor = BrickColor.new("Black")
  1743. if Debounces.CanAttack == false then
  1744. Debounces.CanAttack = true
  1745. Debounces.on = false
  1746. Debounces.NoIdl = false
  1747. end
  1748. end
  1749. end
  1750. end)
  1751. ----------------------------------------------------
  1752. Sit = false
  1753. mouse.KeyDown:connect(function(key)
  1754. if key == "v" then
  1755. if Sit == false then
  1756. Sit = true
  1757. hum.WalkSpeed = 7
  1758. stanceToggle = "Sitting"
  1759. elseif Sit == true then
  1760. Sit = false
  1761. hum.WalkSpeed = 200
  1762. stanceToggle = "Normal"
  1763. end
  1764. end
  1765. end)
  1766. ----------------------------------------------------
  1767. mouse.KeyDown:connect(function(key)
  1768. if key == "t" then
  1769. if Debounces.CanAttack == true then
  1770. Debounces.CanAttack = false
  1771. Debounces.on = true
  1772. Debounces.NoIdl = true
  1773. for i = 1, 20 do
  1774. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1775. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1776. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1777. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1778. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
  1779. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
  1780. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  1781. if Debounces.on == false then break end
  1782. wait()
  1783. end
  1784. Spawn(function()
  1785. local Parts = {}
  1786. for Y = -5,5 do
  1787. local P = Instance.new("Part",char)
  1788. P.Anchored = true
  1789. P.FormFactor = "Custom"
  1790. P.CanCollide = false
  1791. P.Material = "Neon"
  1792. P.Size = Vector3.new(1,2,1)
  1793. P.TopSurface = "SmoothNoOutlines"
  1794. P.BottomSurface = "SmoothNoOutlines"
  1795. P.BrickColor = BrickColor.new("Royal purple")
  1796. P.Name = tostring(Y)
  1797. local i = (Y+5)/(10)
  1798. i = 1-math.cos(math.pi*i-(math.pi/2))
  1799. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  1800. --[[P.Touched:connect(function(ht)
  1801. local hit = ht.Parent
  1802. if hit:FindFirstChild("Humanoid") then
  1803. hit.Humanoid:TakeDamage(math.random(10000020,10000030))
  1804. end
  1805. end)]]--
  1806. s = Instance.new("Sound",P)
  1807. s.SoundId = "rbxassetid://228343271"
  1808. s.Volume = .7
  1809. s.Pitch = 0.9
  1810. s:Play()
  1811. P.Touched:connect(function(ht)
  1812. hit = ht.Parent
  1813. if ht and hit:IsA("Model") then
  1814. if hit:FindFirstChild("Humanoid") then
  1815. if hit.Name ~= p.Name then
  1816. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1817. Debounces.Slashed = true]]--
  1818. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(10000020,10000030))
  1819. hit:FindFirstChild("Humanoid").PlatformStand = true
  1820. wait(1)
  1821. --Debounces.Slashed = false
  1822. --end
  1823. end
  1824. end
  1825. elseif ht and hit:IsA("Hat") then
  1826. if hit.Parent.Name ~= p.Name then
  1827. if hit.Parent:FindFirstChild("Humanoid") then
  1828. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1829. Debounces.Slashed = true]]--
  1830. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (10000020,10000030))
  1831. hit:FindFirstChild("Humanoid").PlatformStand = true
  1832. wait(1)
  1833. --Debounces.Slashed = false
  1834. --end
  1835. end
  1836. end
  1837. end
  1838. end)
  1839. Parts[#Parts+1] = P
  1840. end
  1841. local BREAKIT = false
  1842. local CParts = {}
  1843. local Rocks = {}
  1844. local LastPos = nil
  1845. for i = 1,70 do
  1846. for i2,v in pairs(Parts) do
  1847. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  1848. local cf = v.CFrame
  1849. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  1850. v.CFrame = cf
  1851. v.Transparency = v.Transparency+0.02
  1852. if v.Transparency >= 0.975 then BREAKIT = true end
  1853. if v.Name == "0" then
  1854. local Ignore = {}
  1855. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1856. if v.Character ~= nil then
  1857. Ignore[#Ignore+1] = v.Character
  1858. end
  1859. end
  1860. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  1861. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  1862. if Hit ~= nil then
  1863. if #Rocks == 0 then
  1864. for i = 1,5 do
  1865. local P = Instance.new("Part",char)
  1866. Rocks[#Rocks+1] = P
  1867. P.Anchored = true
  1868. P.FormFactor = "Custom"
  1869. P.BrickColor = BrickColor.new("Black")
  1870. P.Material = "Neon"
  1871. P.TopSurface = "Smooth"
  1872. P.BottomSurface = "Smooth"
  1873. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  1874. end
  1875. end
  1876. for i,P in pairs(Rocks) do
  1877. P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  1878. end
  1879. local P = Instance.new("Part",char)
  1880. CParts[#CParts+1] = {P,tick()}
  1881. P.Anchored = true
  1882. P.FormFactor = "Custom"
  1883. P.BrickColor = BrickColor.new("Royal purple")
  1884. P.Material = "Neon"
  1885. P.TopSurface = "Smooth"
  1886. P.BottomSurface = "Smooth"
  1887. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  1888. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1889. Pos = Pos.p
  1890. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  1891. local P = P:Clone()
  1892. CParts[#CParts+1] = {P,tick()}
  1893. P.Parent = char
  1894. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  1895. Pos = Pos.p
  1896. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  1897. if LastPos ~= nil then
  1898. local P = P:Clone()
  1899. CParts[#CParts+1] = {P,tick()}
  1900. P.Parent = char
  1901. P.BrickColor = BrickColor.new("Royal purple")
  1902. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1903. Pos = Pos.p
  1904. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1905. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  1906. --P.Velocity = Vector3.new(0,-1000,0)
  1907. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  1908. end
  1909. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1910. end
  1911. end
  1912. end
  1913. if BREAKIT then break end
  1914. wait(0.002)
  1915. end
  1916. for i,v in pairs(Rocks) do
  1917. CParts[#CParts+1] = {v,tick()}
  1918. end
  1919. for i,v in pairs(Parts) do
  1920. v:Destroy()
  1921. end
  1922. Parts = nil
  1923. while true do
  1924. local t = tick()
  1925. local p = nil
  1926. for i,v in pairs(CParts) do
  1927. if t-v[2] > 4 then
  1928. v[1].Transparency = v[1].Transparency+0.05
  1929. if v[1].Transparency >= 1 then
  1930. v[1]:Destroy()
  1931. CParts[i] = nil
  1932. end
  1933. end
  1934. p = v
  1935. end
  1936. if p == nil then break end
  1937. wait(0.002)
  1938. end
  1939. for i,v in pairs(CParts) do
  1940. v:Destroy()
  1941. end
  1942. CParts = {}
  1943. end)
  1944. for i = 1, 20 do
  1945. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
  1946. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
  1947. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
  1948. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  1949. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  1950. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  1951. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  1952. if Debounces.on == false then break end
  1953. wait()
  1954. end
  1955. if Debounces.CanAttack == false then
  1956. Debounces.CanAttack = true
  1957. Debounces.on = false
  1958. Debounces.NoIdl = false
  1959. end
  1960. end
  1961. end
  1962. end)
  1963. ----------------------------------------------------
  1964. mouse.KeyDown:connect(function(key)
  1965. if key == "e" then
  1966. larm.BrickColor = BrickColor.new("Bright red")
  1967. rarm.BrickColor = BrickColor.new("Bright red")
  1968. if Debounces.CanAttack == true then
  1969. Debounces.CanAttack = false
  1970. Debounces.on = true
  1971. Debounces.NoIdl = true
  1972. for i = 1, 18 do
  1973. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
  1974. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  1975. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  1976. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  1977. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  1978. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  1979. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1980. if Debounces.on == false then break end
  1981. wait()
  1982. end
  1983. local HandCF = CFrame.new(char.Titanius.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1984. local rng = Instance.new("Part", char.Titanius.Handle)
  1985. rng.Anchored = true
  1986. rng.BrickColor = BrickColor.new("Black")
  1987. rng.CanCollide = true
  1988. rng.FormFactor = 3
  1989. rng.Name = "Ring"
  1990. rng.Size = Vector3.new(1, 1, 1)
  1991. rng.CanCollide = false
  1992. rng.Transparency = 0.35
  1993. rng.TopSurface = 0
  1994. rng.BottomSurface = 0
  1995. rng.CFrame = HandCF
  1996. local rngm = Instance.new("SpecialMesh", rng)
  1997. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1998. rngm.Scale = Vector3.new(1, 1, 2)
  1999. x = Instance.new("Sound", hed)
  2000. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2001. x.Looped = false
  2002. x.Pitch = .7
  2003. x.Volume = 1
  2004. x1 = Instance.new("Sound", hed)
  2005. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2006. x1.Looped = false
  2007. x1.Pitch = .7
  2008. x1.Volume = 1
  2009. x:Play()
  2010. x1:Play()
  2011. rngto = rng.Touched:connect(function(ht)
  2012. hit = ht.Parent
  2013. if ht and hit:IsA("Model") then
  2014. if hit:FindFirstChild("Humanoid") then
  2015. if hit.Name ~= p.Name then
  2016. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2017. Debounces.Slashed = true]]--
  2018. hit:FindFirstChild("Humanoid"):TakeDamage(1000000)
  2019. hit:FindFirstChild("Humanoid").PlatformStand = true
  2020. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  2021. --Debounces.Slashed = false
  2022. --end
  2023. end
  2024. end
  2025. elseif ht and hit:IsA("Hat") then
  2026. if hit.Parent.Name ~= p.Name then
  2027. if hit.Parent:FindFirstChild("Humanoid") then
  2028. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2029. Debounces.Slashed = true]]--
  2030. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(100000)
  2031. hit:FindFirstChild("Humanoid").PlatformStand = true
  2032. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  2033. --Debounces.Slashed = false
  2034. end
  2035. end
  2036. end
  2037. end)
  2038. coroutine.wrap(function()
  2039. for i = 1, 60, 2 do
  2040. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2041. rng.Size = rngm.Scale
  2042. rng.CFrame = HandCF
  2043. rng.Transparency = i/60
  2044. wait()
  2045. end
  2046. wait()
  2047. rng:Destroy()
  2048. end)()
  2049. for i = 1, 18 do
  2050. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
  2051. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  2052. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  2053. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  2054. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  2055. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  2056. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2057. if Debounces.on == false then break end
  2058. wait()
  2059. end
  2060. larm.BrickColor = BrickColor.new("Black")
  2061. rarm.BrickColor = BrickColor.new("Black")
  2062. x:Destroy()
  2063. x1:Destroy()
  2064. if Debounces.CanAttack == false then
  2065. Debounces.CanAttack = true
  2066. Debounces.on = false
  2067. Debounces.NoIdl = false
  2068. end
  2069. end
  2070. end
  2071. end)
  2072. ----------------------------------------------------
  2073. mouse.KeyDown:connect(function(key)
  2074. if key == "y" then
  2075. if Debounces.CanAttack == true then
  2076. Debounces.CanAttack = false
  2077. Debounces.on = true
  2078. Debounces.NoIdl = true
  2079. for i = 1, 15 do
  2080. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  2081. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.2)
  2082. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  2083. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  2084. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2085. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2086. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2087. if Debounces.on == false then break end
  2088. wait()
  2089. end
  2090. x = Instance.new("Sound",char)
  2091. x.SoundId = "rbxassetid://228343271"
  2092. x.Pitch = 1
  2093. x.Volume = .8
  2094. wait(.1)
  2095. x:Play()
  2096. Debounces.on = false
  2097. Debounces.Here = false
  2098. shot = shot + 1
  2099. local rng = Instance.new("Part", char)
  2100. rng.Anchored = true
  2101. rng.BrickColor = BrickColor.new("Black")
  2102. rng.CanCollide = false
  2103. rng.FormFactor = 3
  2104. rng.Name = "Ring"
  2105. rng.Size = Vector3.new(1, 1, 1)
  2106. rng.Transparency = 0.35
  2107. rng.TopSurface = 0
  2108. rng.BottomSurface = 0
  2109. rng2 = rng:clone()
  2110. rng3 = rng2:clone()
  2111. rng4 = rng2:clone()
  2112. local rngm = Instance.new("SpecialMesh", rng)
  2113. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2114. rngm.Scale = Vector3.new(10, 10, 1)
  2115. rngm2 = rngm:clone()
  2116. rngm2.Scale = Vector3.new(5, 5, 1)
  2117. rngm3=rngm2:clone()
  2118. rngm3.Parent = rng3
  2119. rngm3.Scale = Vector3.new(8, 8, 1)
  2120. rngm4 = rngm2:clone()
  2121. rngm4.Parent = rng4
  2122. rngm4.Scale = Vector3.new(6, 6, 1)
  2123. local bem = Instance.new("Part", char)
  2124. bem.Anchored = true
  2125. bem.BrickColor = BrickColor.new("Royal purple")
  2126. bem.CanCollide = false
  2127. bem.Material = "Neon"
  2128. bem.FormFactor = 3
  2129. bem.Name = "Beam" .. shot
  2130. bem.Size = Vector3.new(1, 1, 1)
  2131. bem.Transparency = 0.35
  2132. bem.TopSurface = 0
  2133. bem.BottomSurface = 0
  2134. local bemm = Instance.new("SpecialMesh", bem)
  2135. bemm.MeshType = 4
  2136. bemm.Scale = Vector3.new(1, 4, 4)
  2137. local out = Instance.new("Part", char)
  2138. out.Anchored = true
  2139. out.BrickColor = BrickColor.new("Black")
  2140. out.CanCollide = false
  2141. out.FormFactor = 3
  2142. out.Name = "Out"
  2143. out.Size = Vector3.new(4, 4, 4)
  2144. out.Transparency = 0.35
  2145. out.TopSurface = 0
  2146. out.BottomSurface = 0
  2147. local outm = Instance.new("SpecialMesh", out)
  2148. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2149. outm.Scale = Vector3.new(4, 4, 4)
  2150. local bnd = Instance.new("Part", char)
  2151. bnd.Anchored = true
  2152. bnd.Material = "Neon"
  2153. bnd.BrickColor = BrickColor.new("Royal purple")
  2154. bnd.CanCollide = false
  2155. bnd.FormFactor = 3
  2156. bnd.Name = "Bend"
  2157. bnd.Size = Vector3.new(1, 1, 1)
  2158. bnd.Transparency = 1
  2159. bnd.TopSurface = 0
  2160. bnd.BottomSurface = 0
  2161. local bndm = Instance.new("SpecialMesh", bnd)
  2162. bndm.MeshType = 3
  2163. bndm.Scale = Vector3.new(8, 8, 8)
  2164. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  2165. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  2166. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  2167. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  2168. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  2169. rng4.CFrame = rng3.CFrame * CFrame.new(0, -.5, 0)
  2170. Debounces.Shewt = true
  2171. coroutine.wrap(function()
  2172. for i = 1, 20, 0.2 do
  2173. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2174. rngm3.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2175. rngm4.Scale = Vector3.new(6 + i*2, 6 + i*2, 1)
  2176. rng.Transparency = i/20
  2177. rng3.Transparency = 1/16
  2178. rng4.Transparency = i/12
  2179. wait()
  2180. end
  2181. wait()
  2182. rng:Destroy()
  2183. end)()
  2184. if Debounces.Shewt == true then
  2185. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  2186. hit = ht.Parent
  2187. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  2188. if HasntTouched(hit.Name) == true and deb == false then
  2189. deb = true
  2190. coroutine.wrap(function()
  2191. hit:FindFirstChild("Humanoid").PlatformStand = true
  2192. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2193. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(10000020,10000030))
  2194. end)()
  2195. table.insert(Touche, hit.Name)
  2196. deb = false
  2197. end
  2198. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  2199. if HasntTouched(hit.Parent.Name) == true and deb == false then
  2200. deb = true
  2201. coroutine.wrap(function()
  2202. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  2203. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2204. wait(1)
  2205. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  2206. end)()
  2207. table.insert(Touche, hit.Parent.Name)
  2208. deb = false
  2209. for i, v in pairs(Touche) do
  2210. print(v)
  2211. end
  2212. end
  2213. end
  2214. end)
  2215. end
  2216. for i = 0, 260, 8 do
  2217. bem.Size = Vector3.new(i, 2, 2)
  2218. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  2219. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  2220. bnd.Size = Vector3.new(1,1,1)
  2221. bndm.Scale = Vector3.new(8,8,8)
  2222. if i % 10 == 0 then
  2223. local newRng = rng2:Clone()
  2224. newRng.Parent = char
  2225. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  2226. local newRngm = rngm2:clone()
  2227. newRngm.Parent=newRng
  2228. coroutine.wrap(function()
  2229. for i = 1, 10, 0.2 do
  2230. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2231. newRng.Transparency = i/10
  2232. wait()
  2233. end
  2234. wait()
  2235. newRng:Destroy()
  2236. end)()
  2237. end
  2238. wait()
  2239. end
  2240. wait()
  2241. Debounces.Shewt = false
  2242. bem:Destroy()
  2243. out:Destroy()
  2244. bnd:Destroy()
  2245. Debounces.Ready = false
  2246. for i, v in pairs(Touche) do
  2247. table.remove(Touche, i)
  2248. end
  2249. wait()
  2250. table.insert(Touche, char.Name)
  2251. Debounces.NoIdl = false
  2252. if Debounces.CanAttack == false then
  2253. Debounces.CanAttack = true
  2254. end
  2255. end
  2256. end
  2257. end)
  2258. ----------------------------------------------------
  2259. sidz = {"231917888", "231917845", "231917806"}
  2260. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  2261. mouse.KeyDown:connect(function(key)
  2262. if key == "f" then
  2263. larm.BrickColor = BrickColor.new("Bright red")
  2264. rarm.BrickColor = BrickColor.new("Bright red")
  2265. if Debounces.CanAttack == true then
  2266. Debounces.CanAttack = false
  2267. Debounces.on = true
  2268. Debounces.NoIdl = true
  2269. for i = 1, 10 do
  2270. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.4)
  2271. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.4)
  2272. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2273. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2274. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2275. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2276. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2277. if Debounces.on == false then break end
  2278. wait()
  2279. end
  2280. z = Instance.new("Sound",char)
  2281. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  2282. z.Pitch = ptz[math.random(1,#ptz)]
  2283. z.Volume = 1
  2284. z1 = Instance.new("Sound",char)
  2285. z1.SoundId = z.SoundId
  2286. z1.Pitch = z.Pitch
  2287. z1.Volume = 1
  2288. wait(1)
  2289. z:Play()
  2290. z1:Play()
  2291. Stomp()
  2292. for i = 1, 20 do
  2293. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.6)
  2294. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.6)
  2295. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2296. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.6)
  2297. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2298. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2299. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2300. if Debounces.on == false then break end
  2301. wait()
  2302. end
  2303. if Debounces.CanAttack == false then
  2304. Debounces.CanAttack = true
  2305. Debounces.on = false
  2306. Debounces.NoIdl = false
  2307. larm.BrickColor = BrickColor.new("Black")
  2308. rarm.BrickColor = BrickColor.new("Black")
  2309. end
  2310. end
  2311. end
  2312. end)
  2313. ----------------------------------------------------
  2314. mouse.KeyDown:connect(function(key)
  2315. if key == "g" then
  2316. larm.BrickColor = BrickColor.new("Bright red")
  2317. rarm.BrickColor = BrickColor.new("Bright red")
  2318. if Debounces.CanAttack == true then
  2319. Debounces.CanAttack = false
  2320. Debounces.on = true
  2321. Debounces.NoIdl = true
  2322. chrg = lleg.Touched:connect(function(ht)
  2323. hit = ht.Parent
  2324. if ht and hit:IsA("Model") then
  2325. if hit:FindFirstChild("Humanoid") then
  2326. if hit.Name ~= p.Name then
  2327. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2328. Debounces.Slashed = true]]--
  2329. hit:FindFirstChild("Humanoid"):TakeDamage(29999999)
  2330. hit:FindFirstChild("Humanoid").PlatformStand = true
  2331. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2332. --Debounces.Slashed = false
  2333. --end
  2334. end
  2335. end
  2336. elseif ht and hit:IsA("Hat") then
  2337. if hit.Parent.Name ~= p.Name then
  2338. if hit.Parent:FindFirstChild("Humanoid") then
  2339. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2340. Debounces.Slashed = true]]--
  2341. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2999999999)
  2342. hit:FindFirstChild("Humanoid").PlatformStand = true
  2343. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2344. --Debounces.Slashed = false
  2345. end
  2346. end
  2347. end
  2348. end)
  2349. for i = 1, 14 do
  2350. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.5)
  2351. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.5)
  2352. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.5)
  2353. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
  2354. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2355. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2356. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  2357. if Debounces.on == false then break end
  2358. wait()
  2359. end
  2360. charge()
  2361. z = Instance.new("Sound",char)
  2362. z.SoundId = "rbxassetid://200632875"
  2363. z.Volume = 1
  2364. z.Pitch = .8
  2365. z1 = Instance.new("Sound",char)
  2366. z1.SoundId = "rbxassetid://200632875"
  2367. z1.Volume = 1
  2368. z1.Pitch = .9
  2369. z:Play()
  2370. z1:Play()
  2371. wait(1)
  2372. z:Destroy()
  2373. z1:Destroy()
  2374. chrg:disconnect()
  2375. if Debounces.CanAttack == false then
  2376. Debounces.CanAttack = true
  2377. Debounces.on = false
  2378. Debounces.NoIdl = false
  2379. larm.BrickColor = BrickColor.new("Black")
  2380. rarm.BrickColor = BrickColor.new("Black")
  2381. end
  2382. end
  2383. end
  2384. end)
  2385. ----------------------------------------------------
  2386. pt = {0.7, 0.8, 0.9}
  2387. mouse.KeyDown:connect(function(key)
  2388. if key == "h" then
  2389. if Debounces.CanJoke == true then
  2390. Debounces.CanJoke = false
  2391. u = Instance.new("Sound")
  2392. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  2393. u.Parent = char
  2394. u.Looped = false
  2395. u.Pitch = pt[math.random(1,#pt)]
  2396. u.Volume = 1
  2397. u2 = Instance.new("Sound")
  2398. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  2399. u2.Parent = char
  2400. u2.Looped = false
  2401. u2.Pitch = u.Pitch
  2402. u2.Volume = 1
  2403. wait(.01)
  2404. u:Play()
  2405. u2:Play()
  2406. wait(6)
  2407. u:Destroy()
  2408. u2:Destroy()
  2409. if Debounces.CanJoke == false then
  2410. Debounces.CanJoke = true
  2411. end
  2412. end
  2413. end
  2414. end)
  2415. ----------------------------------------------------
  2416. --insert kill all here after patched--
  2417. ----------------------------------------------------
  2418. mouse.KeyDown:connect(function(key)
  2419. if key == "j" then
  2420. if Debounces.CanJoke == true then
  2421. Debounces.CanJoke = false
  2422. z = Instance.new("Sound",char)
  2423. z.SoundId = "rbxassetid://135017755"
  2424. z.Pitch = .76
  2425. z.Volume = 1
  2426. wait()
  2427. z:Play()
  2428. wait(6)
  2429. z:Destroy()
  2430. if Debounces.CanJoke == false then
  2431. Debounces.CanJoke = true
  2432. end
  2433. end
  2434. end
  2435. end)
  2436. ----------------------------------------------------
  2437. mouse.KeyDown:connect(function(key)
  2438. if key == "k" then
  2439. if Debounces.CanJoke == true then
  2440. Debounces.CanJoke = false
  2441. z = Instance.new("Sound",char)
  2442. z.SoundId = "rbxassetid://135017578"
  2443. z.Pitch = .76
  2444. z.Volume = 1
  2445. wait()
  2446. z:Play()
  2447. wait(4)
  2448. z:Destroy()
  2449. if Debounces.CanJoke == false then
  2450. Debounces.CanJoke = true
  2451. end
  2452. end
  2453. end
  2454. end)
  2455. ----------------------------------------------------
  2456. mouse.KeyDown:connect(function(key)
  2457. if key == "x" then
  2458. if Debounces.CanAttack == true then
  2459. Debounces.CanAttack = false
  2460. Debounces.NoIdl = true
  2461. Debounces.on = true
  2462. Debounces.ks = true
  2463. for i = 1, 10 do
  2464. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.6)
  2465. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.6)
  2466. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2467. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.6)
  2468. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.6)
  2469. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.6)
  2470. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2471. if Debounces.on == false then break end
  2472. wait()
  2473. end
  2474. z = Instance.new("Sound",hed)
  2475. z.SoundId = "rbxassetid://169445092"
  2476. z.Volume = 1
  2477. wait(0.1)
  2478. z:Play()
  2479. kik = rleg.Touched:connect(function(ht)
  2480. hit = ht.Parent
  2481. if ht and hit:IsA("Model") then
  2482. if hit:FindFirstChild("Humanoid") then
  2483. if hit.Name ~= p.Name then
  2484. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2485. Debounces.Slashed = true]]--
  2486. if Debounces.ks==true then
  2487. z = Instance.new("Sound",hed)
  2488. z.SoundId = "rbxassetid://169380525"
  2489. z.Volume = 1
  2490. z:Play()
  2491. Debounces.ks=false
  2492. end
  2493. hit:FindFirstChild("Humanoid"):TakeDamage(29999999)
  2494. hit:FindFirstChild("Humanoid").PlatformStand = true
  2495. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2496. --Debounces.Slashed = false
  2497. --end
  2498. end
  2499. end
  2500. elseif ht and hit:IsA("Hat") then
  2501. if hit.Parent.Name ~= p.Name then
  2502. if hit.Parent:FindFirstChild("Humanoid") then
  2503. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2504. Debounces.Slashed = true]]--
  2505. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2999999)
  2506. hit:FindFirstChild("Humanoid").PlatformStand = true
  2507. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2508. --Debounces.Slashed = false
  2509. --end
  2510. end
  2511. end
  2512. end
  2513. end)
  2514. for i = 1, 8 do
  2515. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2516. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.7)
  2517. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.7)
  2518. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.7)
  2519. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  2520. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.7)
  2521. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2522. if Debounces.on == false then break end
  2523. wait()
  2524. end
  2525. kik:disconnect()
  2526. if Debounces.CanAttack == false then
  2527. Debounces.CanAttack = true
  2528. Debounces.on = false
  2529. Debounces.NoIdl = false
  2530. end
  2531. end
  2532. end
  2533. end)
  2534. ----------------------------------------------------
  2535. mouse.KeyDown:connect(function(key)
  2536. if key == "c" then
  2537. if Debounces.CanAttack == true then
  2538. Debounces.CanAttack = false
  2539. Debounces.NoIdl = true
  2540. Debounces.on = true
  2541. SIDZ = {"231917744", "231917742"}
  2542. PTZ = {0.7, 0.8, 0.9, 1}
  2543. for i = 1, 20 do
  2544. wait()
  2545. for i,v in pairs(char.Titanius:children()) do
  2546. if v:IsA("Part") or v:IsA("WedgePart") then
  2547. v.Transparency = v.Transparency + 0.05
  2548. end
  2549. end
  2550. end
  2551. function FindNearestTorso(Position,Distance,SinglePlayer)
  2552. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2553. local List = {}
  2554. for i,v in pairs(workspace:GetChildren())do
  2555. if v:IsA("Model")then
  2556. if v:findFirstChild("Torso")then
  2557. if v ~= char then
  2558. if(v.Torso.Position -Position).magnitude <= Distance then
  2559. table.insert(List,v)
  2560. end
  2561. end
  2562. end
  2563. end
  2564. end
  2565. return List
  2566. end
  2567. GroundPound()
  2568. for i = 1, 5 do
  2569. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2570. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2571. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2572. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2573. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2574. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2575. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2576. if Debounces.on == false then break end
  2577. wait()
  2578. end
  2579. GroundPound()
  2580. for i = 1, 5 do
  2581. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2582. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2583. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2584. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2585. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2586. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2587. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2588. if Debounces.on == false then break end
  2589. wait()
  2590. end
  2591. GroundPound()
  2592. for i = 1, 5 do
  2593. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2594. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2595. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2596. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2597. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2598. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2599. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2600. if Debounces.on == false then break end
  2601. wait()
  2602. end
  2603. GroundPound()
  2604. for i = 1, 5 do
  2605. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2606. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2607. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2608. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2609. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2610. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2611. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2612. if Debounces.on == false then break end
  2613. wait()
  2614. end
  2615. GroundPound()
  2616. for i = 1, 5 do
  2617. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2618. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2619. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2620. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2621. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2622. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2623. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2624. if Debounces.on == false then break end
  2625. wait()
  2626. end
  2627. GroundPound()
  2628. for i = 1, 5 do
  2629. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2630. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2631. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2632. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2633. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2634. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2635. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2636. if Debounces.on == false then break end
  2637. wait()
  2638. end
  2639. for i = 1, 18 do
  2640. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.4)
  2641. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.4)
  2642. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2643. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2644. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2645. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2646. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2647. if Debounces.on == false then break end
  2648. wait()
  2649. end
  2650. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2651. if v:FindFirstChild('Humanoid') then
  2652. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  2653. v.Humanoid.PlatformStand = true
  2654. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2655. end
  2656. end
  2657. x = Instance.new("Sound",char)
  2658. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  2659. x.Pitch = PTZ[math.random(1,#PTZ)]
  2660. x.Volume = 1
  2661. wait(0.1)
  2662. x:Play()
  2663. Crater(hed,20)
  2664. for i = 1, 14 do
  2665. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(-10)), 0.6)
  2666. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(10)), 0.6)
  2667. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  2668. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  2669. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  2670. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  2671. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2672. if Debounces.on == false then break end
  2673. wait()
  2674. end
  2675. if Debounces.CanAttack == false then
  2676. Debounces.CanAttack = true
  2677. Debounces.on = false
  2678. Debounces.NoIdl = false
  2679. for i = 1, 20 do
  2680. wait()
  2681. for i,v in pairs(char.Titanius:children()) do
  2682. if v:IsA("Part") or v:IsA("WedgePart") then
  2683. v.Transparency = v.Transparency - 0.05
  2684. end
  2685. end
  2686. end
  2687. end
  2688. end
  2689. end
  2690. end)
  2691. ----------------------------------------------------176349813
  2692. mouse.KeyDown:connect(function(key)
  2693. if key == "b" then
  2694. hum.WalkSpeed = 200
  2695. if Debounces.CanAttack == true then
  2696. Debounces.CanAttack = false
  2697. Debounces.NoIdl = true
  2698. Debounces.on = true
  2699. for i = 1,20 do
  2700. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
  2701. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
  2702. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
  2703. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
  2704. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
  2705. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
  2706. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2707. if Debounces.on == false then break end
  2708. wait()
  2709. end
  2710. wait(1)
  2711. v = Instance.new("Sound")
  2712. v.SoundId = "rbxassetid://181384451"
  2713. v.Parent = char
  2714. v.Looped = false
  2715. v.Pitch = 1.04
  2716. v.Volume = 1
  2717. wait(.01)
  2718. v:Play()
  2719.  
  2720. if Daytime == true then
  2721. Daytime = false
  2722. l.TimeOfDay = 24
  2723. else
  2724. Daytime = true
  2725. l.TimeOfDay = 12
  2726. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  2727. end
  2728.  
  2729. local Shockwave = function()
  2730. local rng1 = Instance.new("Part", char)
  2731. rng1.Anchored = true
  2732. rng1.BrickColor = BrickColor.new("Black")
  2733. rng1.CanCollide = false
  2734. rng1.FormFactor = 3
  2735. rng1.Name = "Ring"
  2736. rng1.Size = Vector3.new(1, 1, 1)
  2737. rng1.Transparency = 0.35
  2738. rng1.TopSurface = 0
  2739. rng1.BottomSurface = 0
  2740. local rngm1 = Instance.new("SpecialMesh", rng)
  2741. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2742. rngm1.Scale = Vector3.new(10, 10, 1)
  2743. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  2744. local Wave = Instance.new("Part", game.Workspace--[[?]])
  2745. Wave.Name = "Shockwave"
  2746. Wave.BrickColor = BrickColor.new("Black")
  2747. Wave.Size = Vector3.new(1, 1, 1)
  2748. Wave.Shape = "Ball"
  2749. Wave.CanCollide = false
  2750. Wave.Anchored = true
  2751. Wave.TopSurface = 0
  2752. Wave.BottomSurface = 0
  2753. Wave.Touched:connect(function(hit)
  2754. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  2755. local Occlude = true
  2756. local NotOccludes = {
  2757. char.Name;
  2758. "Wings";
  2759. "Scythe";
  2760. "Thingy";
  2761. "Thingy2"; -- put all of the names in a table pls
  2762. }
  2763. for i,v in pairs(NotOccludes) do
  2764. if hit.Parent.Name == v then
  2765. Occlude = false
  2766. end
  2767. end
  2768. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  2769. if Occlude then
  2770. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  2771. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  2772. end
  2773. end
  2774. end)
  2775.  
  2776. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  2777.  
  2778. coroutine.wrap(function()
  2779. for i = 1, 20, 0.2 do
  2780. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2781. rng1.Transparency = i/20
  2782. wait()
  2783. end
  2784. wait()
  2785. rng1:Destroy()
  2786. end)()
  2787.  
  2788. Delay(0, function()
  2789.  
  2790. if Daytime == false then
  2791. for i = 1, 50, 1 do
  2792. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2793. Wave.CFrame = char.Torso.CFrame
  2794. local t = i / 50
  2795. Wave.Transparency = t
  2796. wait()
  2797. end
  2798. else
  2799. for i = 1, 50, 1 do
  2800. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2801. Wave.CFrame = char.Torso.CFrame
  2802. local t = i / 50
  2803. Wave.Transparency = t
  2804. wait()
  2805. end
  2806. end
  2807. Wave:Destroy()
  2808. end)
  2809. Delay(0, function()
  2810. while wait() do
  2811. if Wave ~= nil then
  2812. Wave.CFrame = char.Torso.CFrame
  2813. else
  2814. break
  2815. end
  2816. end
  2817. end)
  2818. end
  2819. Shockwave()
  2820. for i = 1, 15 do
  2821. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2822. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2823. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2824. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2825. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2826. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2827. if Debounces.on == false then break end
  2828. wait()
  2829. end
  2830. for i = 1, 15 do
  2831. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2832. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2833. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2834. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2835. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2836. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2837. if Debounces.on == false then break end
  2838. wait()
  2839. end
  2840. for i = 1, 15 do
  2841. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2842. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2843. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2844. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2845. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2846. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2847. if Debounces.on == false then break end
  2848. wait()
  2849. end
  2850. for i = 1, 15 do
  2851. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2852. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2853. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2854. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2855. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2856. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2857. if Debounces.on == false then break end
  2858. wait()
  2859. end
  2860. for i = 1, 15 do
  2861. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2862. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2863. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2864. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2865. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2866. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2867. if Debounces.on == false then break end
  2868. wait()
  2869. end
  2870. for i = 1, 15 do
  2871. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2872. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2873. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2874. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2875. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2876. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2877. if Debounces.on == false then break end
  2878. wait()
  2879. end
  2880. wait(1.4)
  2881. Debounces.NoIdl = false
  2882. hum.WalkSpeed = 200
  2883. Debounces.on = false
  2884. wait()
  2885. if Debounces.CanAttack == false then
  2886. Debounces.CanAttack = true
  2887. v:Destroy()
  2888. end
  2889. end
  2890. end
  2891. end)
  2892. ----------------------------------------------------
  2893. mouse.KeyDown:connect(function(key)
  2894. if key == "m" then
  2895. hum.WalkSpeed = 200
  2896. if Debounces.CanAttack == true then
  2897. Debounces.CanAttack = false
  2898. Debounces.on = true
  2899. Debounces.NoIdl = true
  2900. --[[x = Instance.new("Sound",char)
  2901. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  2902. x.Looped = false
  2903. x.Pitch = 1.1
  2904. x.Volume = 1
  2905. x:Play()
  2906. x2 = Instance.new("Sound",char)
  2907. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  2908. x2.Looped = false
  2909. x2.Pitch = .7
  2910. x2.Volume = 1
  2911. wait(.1)
  2912. x:Play()
  2913. x2:Play()
  2914. for i = 1, 20 do
  2915. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.6,-.2) *CFrame.Angles (math.rad (45),math.rad(0),math.rad(32)), 0.2)
  2916. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1,0)*CFrame.Angles(math.rad (0),math.rad(0),math.rad(-20)), 0.2)
  2917. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad (- 8),math.rad(-40), math.rad(-8)),0.2)
  2918. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3.2, 0) * CFrame.Angles (math.rad (-50), math.rad(40), math.rad(0)), 0.2)
  2919. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, .4, -1.6) * CFrame.Angles (math.rad (30), 0, math.rad(20)), 0.2)
  2920. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.6, -2, 0) * CFrame.Angles (math.rad(- 10), math.rad(-40), math.rad(0)), 0.2)
  2921. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
  2922. if Debounces.on == false then break end
  2923. wait()
  2924. x:Destroy()
  2925. x2:Destroy()
  2926. end
  2927. wait(1)]]--
  2928. local rng = Instance.new("Part", char)
  2929. rng.Anchored = true
  2930. rng.BrickColor = BrickColor.new("Black")
  2931. rng.CanCollide = false
  2932. rng.FormFactor = 3
  2933. rng.Name = "Ring"
  2934. rng.Size = Vector3.new(1, 1, 1)
  2935. rng.Transparency = 0.35
  2936. rng.TopSurface = 0
  2937. rng.BottomSurface = 0
  2938. rng.Position = torso.Position - Vector3.new(0,2,0)
  2939. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2940. local rngm = Instance.new("SpecialMesh", rng)
  2941. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2942. rngm.Scale = Vector3.new(1, 1, 2)
  2943. x = Instance.new("Sound",char)
  2944. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2945. x.Looped = false
  2946. x.Pitch = .7
  2947. x.Volume = 1
  2948. x:Play()
  2949. coroutine.wrap(function()
  2950. for i = 1, 60, 2 do
  2951. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2952. rng.Transparency = i/60
  2953. wait()
  2954. end
  2955. wait()
  2956. rng:Destroy()
  2957. end)()
  2958. hum.WalkSpeed = 200
  2959. BV = Instance.new("BodyVelocity", torso)
  2960. BV.maxForce = Vector3.new(0,200000,0)
  2961. BV.P = 100000
  2962. BV.velocity = Vector3.new(0,800,0)
  2963. for i = 1, 20 do
  2964. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.7)
  2965. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  2966. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  2967. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(20)), 0.7)
  2968. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  2969. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  2970. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2971. if Debounces.on == false then break end
  2972. wait()
  2973. end
  2974. x:Destroy()
  2975. BV:Destroy()
  2976. --[[for i = 1, 30 do
  2977. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  2978. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad (0), math.rad(0)), 0.3)
  2979. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  2980. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  2981. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  2982. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  2983. if Debounces.on == false then break end
  2984. wait()
  2985. end]]--
  2986. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  2987. for i = 1, 30 do
  2988. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  2989. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  2990. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-90)), 0.3)
  2991. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  2992. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  2993. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  2994. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2995. if Debounces.on == false then break end
  2996. wait()
  2997. end
  2998. end
  2999. Debounces.on = false
  3000. Debounces.NoIdl = false
  3001. local ry,ht,ps=nil,nil,nil
  3002. while ht==nil do
  3003. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  3004. wait()
  3005. end
  3006. z = Instance.new("Sound",char)
  3007. z.SoundId = "rbxassetid://142070127"
  3008. z.Volume = 1
  3009. wait(.1)
  3010. z:Play()
  3011. Landing()
  3012. hum.WalkSpeed = 200
  3013. if Debounces.CanAttack == false then
  3014. Debounces.CanAttack = true
  3015. end
  3016. end
  3017. end
  3018. end)
  3019. ---------------------------------------------------- --Kill All Fucntion
  3020.  
  3021. ----------------------------------------------------
  3022. Grab = false
  3023. mouse.KeyDown:connect(function(key)
  3024. if key == "z" then
  3025. larm.BrickColor = BrickColor.new("Black")
  3026. rarm.BrickColor = BrickColor.new("Black")
  3027. Debounces.on = true
  3028. Debounces.NoIdl = true
  3029. if Grab == false then
  3030. gp = nil
  3031. con1=larm.Touched:connect(function(hit) -- this is grab
  3032. ht = hit.Parent
  3033. hum1=ht:FindFirstChild('Humanoid')
  3034. if hum1 ~= nil then
  3035. hum1.PlatformStand=true
  3036. gp = ht
  3037. Grab = true
  3038. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  3039. asd.Parent = larm
  3040. asd.Name = "asd"
  3041. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  3042. elseif hum1 == nil then
  3043. con1:disconnect()
  3044. wait() return
  3045. end
  3046. end)
  3047. for i = 1, 18 do
  3048. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(36)), 0.2)
  3049. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.65,.9,-.5)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  3050. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3051. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  3052. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  3053. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  3054. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  3055. if Debounces.on == false then break end
  3056. wait()
  3057. end
  3058. con1:disconnect()
  3059. Debounces.on = false
  3060. Debounces.NoIdl = false
  3061. elseif Grab == true then
  3062. Grab = false
  3063. for i = 1, 20 do
  3064. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.2)
  3065. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-20)), 0.1)
  3066. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3067. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3068. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3069. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3070. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3071. if Debounces.on == false then end
  3072. wait()
  3073. end
  3074. if gp ~= nil then
  3075. for i,v in pairs(larm:GetChildren()) do
  3076. if v.Name == "asd" and v:IsA("Weld") then
  3077. v:Remove()
  3078. end
  3079. end
  3080. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  3081. bv.maxForce = Vector3.new(400000, 400000, 400000)
  3082. bv.P = 125000
  3083. bv.velocity = char.Head.CFrame.lookVector * 200
  3084. for i = 1, 12 do
  3085. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.75)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(20)), 0.5)
  3086. if Debounces.on == false then end
  3087. wait()
  3088. end
  3089. ht=nil
  3090. Spawn(function()
  3091. wait(0.5)
  3092. bv:Destroy()
  3093. end)
  3094. Debounces.on = false
  3095. Debounces.NoIdl = false
  3096. elseif ht == nil then wait()
  3097. Grab = false
  3098. Debounces.on = false
  3099. Debounces.NoIdl = false
  3100. end
  3101. end
  3102. end
  3103. end)
  3104. ---------------------------------------------------
  3105. mouse.KeyDown:connect(function(key)
  3106. if string.byte(key) == 52 then
  3107. char.Humanoid.WalkSpeed = 200
  3108. end
  3109. end)
  3110. mouse.KeyUp:connect(function(key)
  3111. if string.byte(key) == 52 then
  3112. char.Humanoid.WalkSpeed = 200
  3113. end
  3114. end)
  3115. ----------------------------------------------------
  3116.  
  3117. local animpose = "Idle"
  3118. local lastanimpose = "Idle"
  3119. local sine = 0
  3120. local change = 1
  3121. local val = 0
  3122. local ffing = false
  3123. ----------------------------------------------------
  3124. --[[x = Instance.new("Sound", char)
  3125. x.SoundId = "http://www.roblox.com/asset/?id=187922823"
  3126. x.Looped = true
  3127. x.Volume = 1
  3128. x.Pitch = 1
  3129. local footsteps = true]]--
  3130. -------------------------------
  3131. ------------------------------------------------------
  3132. game:GetService("RunService").RenderStepped:connect(function()
  3133. --[[if char.Humanoid.Jump == true then
  3134. jump = true
  3135. else
  3136. jump = false
  3137. end]]
  3138. char.Humanoid.FreeFalling:connect(function(f)
  3139. if f then
  3140. ffing = true
  3141. else
  3142. ffing = false
  3143. end
  3144. end)
  3145. sine = sine + change
  3146. if jumpn == true then
  3147. animpose = "Jumping"
  3148. elseif ffing == true then
  3149. animpose = "Freefalling"
  3150. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3151. animpose = "Idle"
  3152. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3153. animpose = "Walking"
  3154. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3155. animpose = "Running"
  3156. end
  3157. if animpose ~= lastanimpose then
  3158. sine = 0
  3159. if Debounces.NoIdl == false then
  3160. if animpose == "Idle" then
  3161. for i = 1, 2 do
  3162. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2)
  3163. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  3164. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3165. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3166. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3167. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3168. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3169. end
  3170. elseif animpose == "Walking" then
  3171. for i = 1, 2 do
  3172. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(20)), 0.2)
  3173. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  3174. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
  3175. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  3176. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3177. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3178. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3179. end
  3180. elseif animpose == "Running" then
  3181. for i = 1, 2 do
  3182. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  3183. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.2, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2)
  3184. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  3185. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3186. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  3187. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  3188. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3189. end
  3190. wait()
  3191. end
  3192. else
  3193. end
  3194. end
  3195. lastanimpose = animpose
  3196. if Debounces.NoIdl == false then
  3197. if animpose == "Idle" then
  3198. if stanceToggle == "Normal" then
  3199. change = 0.5
  3200. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  3201. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  3202. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  3203. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  3204. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3205. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3206. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3207. elseif stanceToggle == "Sitting" then
  3208. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2)
  3209. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2, .9, -1)*CFrame.Angles(math.rad(78+1*math.cos(sine/14)), math.rad(0), math.rad(50)), 0.2)
  3210. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2)
  3211. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  3212. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2)
  3213. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2)
  3214. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3215. end
  3216. elseif animpose == "Walking" then
  3217. if stanceToggle == "Normal" then
  3218. change = 1
  3219. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
  3220. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.2)
  3221. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2)
  3222. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2)
  3223. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .4)
  3224. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .4)
  3225. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3226. end
  3227. elseif animpose == "Running" then
  3228. change = 1
  3229. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10-20*math.cos(sine/4)/2), math.rad(-40+10*math.cos(sine/4)/2), math.rad(50-10*math.cos(sine/4)/2)), 0.2)
  3230. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .5)*CFrame.Angles(math.rad(10+20*math.cos(sine/4)/2), math.rad(40-10*math.cos(sine/4)/2), math.rad(-50+10*math.cos(sine/4)/2)), 0.2)
  3231. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  3232. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3233. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  3234. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  3235. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3236. end
  3237. end
  3238. --[[if animpose == "Walking" then
  3239. if footsteps == false then
  3240. x:Play()
  3241. footsteps = true
  3242. end
  3243. x.Pitch = 1.1
  3244. elseif animpose == "Idle" then
  3245. x:Stop()
  3246. footsteps = false
  3247. elseif animpose == "Running" then
  3248. x.Pitch = 1.2
  3249. if footsteps == false then
  3250. x:Play()
  3251. footsteps = true
  3252. end
  3253. end]]--
  3254. end)
Add Comment
Please, Sign In to add comment