Advertisement
mlgrobloxscripter12

roblox.com scripts 14

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