Advertisement
Guest User

Untitled

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